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) \
360 /* Get the number of HOST_WIDE_INTs needed to represent the precision
364 get_full_len (const wide_int
&op
)
366 return ((op
.get_precision () + HOST_BITS_PER_WIDE_INT
- 1)
367 / HOST_BITS_PER_WIDE_INT
);
371 should_emit_struct_debug (tree type
, enum debug_info_usage usage
)
373 enum debug_struct_file criterion
;
375 bool generic
= lang_hooks
.types
.generic_p (type
);
378 criterion
= debug_struct_generic
[usage
];
380 criterion
= debug_struct_ordinary
[usage
];
382 if (criterion
== DINFO_STRUCT_FILE_NONE
)
383 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, false, false);
384 if (criterion
== DINFO_STRUCT_FILE_ANY
)
385 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, false, true);
387 type_decl
= TYPE_STUB_DECL (TYPE_MAIN_VARIANT (type
));
389 if (type_decl
!= NULL
)
391 if (criterion
== DINFO_STRUCT_FILE_SYS
&& DECL_IN_SYSTEM_HEADER (type_decl
))
392 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, false, true);
394 if (matches_main_base (DECL_SOURCE_FILE (type_decl
)))
395 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, true, true);
398 return DUMP_GSTRUCT (type
, usage
, criterion
, generic
, false, false);
401 /* Return a pointer to a copy of the section string name S with all
402 attributes stripped off, and an asterisk prepended (for assemble_name). */
405 stripattributes (const char *s
)
407 char *stripped
= XNEWVEC (char, strlen (s
) + 2);
412 while (*s
&& *s
!= ',')
419 /* Switch [BACK] to eh_frame_section. If we don't have an eh_frame_section,
420 switch to the data section instead, and write out a synthetic start label
421 for collect2 the first time around. */
424 switch_to_eh_frame_section (bool back
)
428 #ifdef EH_FRAME_SECTION_NAME
429 if (eh_frame_section
== 0)
433 if (EH_TABLES_CAN_BE_READ_ONLY
)
439 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
441 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
443 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
446 || ((fde_encoding
& 0x70) != DW_EH_PE_absptr
447 && (fde_encoding
& 0x70) != DW_EH_PE_aligned
448 && (per_encoding
& 0x70) != DW_EH_PE_absptr
449 && (per_encoding
& 0x70) != DW_EH_PE_aligned
450 && (lsda_encoding
& 0x70) != DW_EH_PE_absptr
451 && (lsda_encoding
& 0x70) != DW_EH_PE_aligned
))
452 ? 0 : SECTION_WRITE
);
455 flags
= SECTION_WRITE
;
456 eh_frame_section
= get_section (EH_FRAME_SECTION_NAME
, flags
, NULL
);
458 #endif /* EH_FRAME_SECTION_NAME */
460 if (eh_frame_section
)
461 switch_to_section (eh_frame_section
);
464 /* We have no special eh_frame section. Put the information in
465 the data section and emit special labels to guide collect2. */
466 switch_to_section (data_section
);
470 label
= get_file_function_name ("F");
471 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
472 targetm
.asm_out
.globalize_label (asm_out_file
,
473 IDENTIFIER_POINTER (label
));
474 ASM_OUTPUT_LABEL (asm_out_file
, IDENTIFIER_POINTER (label
));
479 /* Switch [BACK] to the eh or debug frame table section, depending on
483 switch_to_frame_table_section (int for_eh
, bool back
)
486 switch_to_eh_frame_section (back
);
489 if (!debug_frame_section
)
490 debug_frame_section
= get_section (DEBUG_FRAME_SECTION
,
491 SECTION_DEBUG
, NULL
);
492 switch_to_section (debug_frame_section
);
496 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
498 enum dw_cfi_oprnd_type
499 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi
)
504 case DW_CFA_GNU_window_save
:
505 case DW_CFA_remember_state
:
506 case DW_CFA_restore_state
:
507 return dw_cfi_oprnd_unused
;
510 case DW_CFA_advance_loc1
:
511 case DW_CFA_advance_loc2
:
512 case DW_CFA_advance_loc4
:
513 case DW_CFA_MIPS_advance_loc8
:
514 return dw_cfi_oprnd_addr
;
517 case DW_CFA_offset_extended
:
519 case DW_CFA_offset_extended_sf
:
520 case DW_CFA_def_cfa_sf
:
522 case DW_CFA_restore_extended
:
523 case DW_CFA_undefined
:
524 case DW_CFA_same_value
:
525 case DW_CFA_def_cfa_register
:
526 case DW_CFA_register
:
527 case DW_CFA_expression
:
528 return dw_cfi_oprnd_reg_num
;
530 case DW_CFA_def_cfa_offset
:
531 case DW_CFA_GNU_args_size
:
532 case DW_CFA_def_cfa_offset_sf
:
533 return dw_cfi_oprnd_offset
;
535 case DW_CFA_def_cfa_expression
:
536 return dw_cfi_oprnd_loc
;
543 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
545 enum dw_cfi_oprnd_type
546 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi
)
551 case DW_CFA_def_cfa_sf
:
553 case DW_CFA_offset_extended_sf
:
554 case DW_CFA_offset_extended
:
555 return dw_cfi_oprnd_offset
;
557 case DW_CFA_register
:
558 return dw_cfi_oprnd_reg_num
;
560 case DW_CFA_expression
:
561 return dw_cfi_oprnd_loc
;
564 return dw_cfi_oprnd_unused
;
568 /* Output one FDE. */
571 output_fde (dw_fde_ref fde
, bool for_eh
, bool second
,
572 char *section_start_label
, int fde_encoding
, char *augmentation
,
573 bool any_lsda_needed
, int lsda_encoding
)
575 const char *begin
, *end
;
576 static unsigned int j
;
579 targetm
.asm_out
.emit_unwind_label (asm_out_file
, fde
->decl
, for_eh
,
581 targetm
.asm_out
.internal_label (asm_out_file
, FDE_LABEL
,
583 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_AFTER_SIZE_LABEL
, for_eh
+ j
);
584 ASM_GENERATE_INTERNAL_LABEL (l2
, FDE_END_LABEL
, for_eh
+ j
);
585 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4 && !for_eh
)
586 dw2_asm_output_data (4, 0xffffffff, "Initial length escape value"
587 " indicating 64-bit DWARF extension");
588 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
590 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
593 dw2_asm_output_delta (4, l1
, section_start_label
, "FDE CIE offset");
595 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, section_start_label
,
596 debug_frame_section
, "FDE CIE offset");
598 begin
= second
? fde
->dw_fde_second_begin
: fde
->dw_fde_begin
;
599 end
= second
? fde
->dw_fde_second_end
: fde
->dw_fde_end
;
603 rtx sym_ref
= gen_rtx_SYMBOL_REF (Pmode
, begin
);
604 SYMBOL_REF_FLAGS (sym_ref
) |= SYMBOL_FLAG_LOCAL
;
605 dw2_asm_output_encoded_addr_rtx (fde_encoding
, sym_ref
, false,
606 "FDE initial location");
607 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
608 end
, begin
, "FDE address range");
612 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, begin
, "FDE initial location");
613 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, end
, begin
, "FDE address range");
620 int size
= size_of_encoded_value (lsda_encoding
);
622 if (lsda_encoding
== DW_EH_PE_aligned
)
624 int offset
= ( 4 /* Length */
626 + 2 * size_of_encoded_value (fde_encoding
)
627 + 1 /* Augmentation size */ );
628 int pad
= -offset
& (PTR_SIZE
- 1);
631 gcc_assert (size_of_uleb128 (size
) == 1);
634 dw2_asm_output_data_uleb128 (size
, "Augmentation size");
636 if (fde
->uses_eh_lsda
)
638 ASM_GENERATE_INTERNAL_LABEL (l1
, second
? "LLSDAC" : "LLSDA",
639 fde
->funcdef_number
);
640 dw2_asm_output_encoded_addr_rtx (lsda_encoding
,
641 gen_rtx_SYMBOL_REF (Pmode
, l1
),
643 "Language Specific Data Area");
647 if (lsda_encoding
== DW_EH_PE_aligned
)
648 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
649 dw2_asm_output_data (size_of_encoded_value (lsda_encoding
), 0,
650 "Language Specific Data Area (none)");
654 dw2_asm_output_data_uleb128 (0, "Augmentation size");
657 /* Loop through the Call Frame Instructions associated with this FDE. */
658 fde
->dw_fde_current_label
= begin
;
660 size_t from
, until
, i
;
663 until
= vec_safe_length (fde
->dw_fde_cfi
);
665 if (fde
->dw_fde_second_begin
== NULL
)
668 until
= fde
->dw_fde_switch_cfi_index
;
670 from
= fde
->dw_fde_switch_cfi_index
;
672 for (i
= from
; i
< until
; i
++)
673 output_cfi ((*fde
->dw_fde_cfi
)[i
], fde
, for_eh
);
676 /* If we are to emit a ref/link from function bodies to their frame tables,
677 do it now. This is typically performed to make sure that tables
678 associated with functions are dragged with them and not discarded in
679 garbage collecting links. We need to do this on a per function basis to
680 cope with -ffunction-sections. */
682 #ifdef ASM_OUTPUT_DWARF_TABLE_REF
683 /* Switch to the function section, emit the ref to the tables, and
684 switch *back* into the table section. */
685 switch_to_section (function_section (fde
->decl
));
686 ASM_OUTPUT_DWARF_TABLE_REF (section_start_label
);
687 switch_to_frame_table_section (for_eh
, true);
690 /* Pad the FDE out to an address sized boundary. */
691 ASM_OUTPUT_ALIGN (asm_out_file
,
692 floor_log2 ((for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
)));
693 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
698 /* Return true if frame description entry FDE is needed for EH. */
701 fde_needed_for_eh_p (dw_fde_ref fde
)
703 if (flag_asynchronous_unwind_tables
)
706 if (TARGET_USES_WEAK_UNWIND_INFO
&& DECL_WEAK (fde
->decl
))
709 if (fde
->uses_eh_lsda
)
712 /* If exceptions are enabled, we have collected nothrow info. */
713 if (flag_exceptions
&& (fde
->all_throwers_are_sibcalls
|| fde
->nothrow
))
719 /* Output the call frame information used to record information
720 that relates to calculating the frame pointer, and records the
721 location of saved registers. */
724 output_call_frame_info (int for_eh
)
729 char l1
[20], l2
[20], section_start_label
[20];
730 bool any_lsda_needed
= false;
731 char augmentation
[6];
732 int augmentation_size
;
733 int fde_encoding
= DW_EH_PE_absptr
;
734 int per_encoding
= DW_EH_PE_absptr
;
735 int lsda_encoding
= DW_EH_PE_absptr
;
737 rtx personality
= NULL
;
740 /* Don't emit a CIE if there won't be any FDEs. */
744 /* Nothing to do if the assembler's doing it all. */
745 if (dwarf2out_do_cfi_asm ())
748 /* If we don't have any functions we'll want to unwind out of, don't emit
749 any EH unwind information. If we make FDEs linkonce, we may have to
750 emit an empty label for an FDE that wouldn't otherwise be emitted. We
751 want to avoid having an FDE kept around when the function it refers to
752 is discarded. Example where this matters: a primary function template
753 in C++ requires EH information, an explicit specialization doesn't. */
756 bool any_eh_needed
= false;
758 FOR_EACH_VEC_ELT (*fde_vec
, i
, fde
)
760 if (fde
->uses_eh_lsda
)
761 any_eh_needed
= any_lsda_needed
= true;
762 else if (fde_needed_for_eh_p (fde
))
763 any_eh_needed
= true;
764 else if (TARGET_USES_WEAK_UNWIND_INFO
)
765 targetm
.asm_out
.emit_unwind_label (asm_out_file
, fde
->decl
, 1, 1);
772 /* We're going to be generating comments, so turn on app. */
776 /* Switch to the proper frame section, first time. */
777 switch_to_frame_table_section (for_eh
, false);
779 ASM_GENERATE_INTERNAL_LABEL (section_start_label
, FRAME_BEGIN_LABEL
, for_eh
);
780 ASM_OUTPUT_LABEL (asm_out_file
, section_start_label
);
782 /* Output the CIE. */
783 ASM_GENERATE_INTERNAL_LABEL (l1
, CIE_AFTER_SIZE_LABEL
, for_eh
);
784 ASM_GENERATE_INTERNAL_LABEL (l2
, CIE_END_LABEL
, for_eh
);
785 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4 && !for_eh
)
786 dw2_asm_output_data (4, 0xffffffff,
787 "Initial length escape value indicating 64-bit DWARF extension");
788 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
789 "Length of Common Information Entry");
790 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
792 /* Now that the CIE pointer is PC-relative for EH,
793 use 0 to identify the CIE. */
794 dw2_asm_output_data ((for_eh
? 4 : DWARF_OFFSET_SIZE
),
795 (for_eh
? 0 : DWARF_CIE_ID
),
796 "CIE Identifier Tag");
798 /* Use the CIE version 3 for DWARF3; allow DWARF2 to continue to
799 use CIE version 1, unless that would produce incorrect results
800 due to overflowing the return register column. */
801 return_reg
= DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN
, for_eh
);
803 if (return_reg
>= 256 || dwarf_version
> 2)
805 dw2_asm_output_data (1, dw_cie_version
, "CIE Version");
808 augmentation_size
= 0;
810 personality
= current_unit_personality
;
816 z Indicates that a uleb128 is present to size the
817 augmentation section.
818 L Indicates the encoding (and thus presence) of
819 an LSDA pointer in the FDE augmentation.
820 R Indicates a non-default pointer encoding for
822 P Indicates the presence of an encoding + language
823 personality routine in the CIE augmentation. */
825 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
826 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
827 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
829 p
= augmentation
+ 1;
833 augmentation_size
+= 1 + size_of_encoded_value (per_encoding
);
834 assemble_external_libcall (personality
);
839 augmentation_size
+= 1;
841 if (fde_encoding
!= DW_EH_PE_absptr
)
844 augmentation_size
+= 1;
846 if (p
> augmentation
+ 1)
848 augmentation
[0] = 'z';
852 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
853 if (personality
&& per_encoding
== DW_EH_PE_aligned
)
855 int offset
= ( 4 /* Length */
857 + 1 /* CIE version */
858 + strlen (augmentation
) + 1 /* Augmentation */
859 + size_of_uleb128 (1) /* Code alignment */
860 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT
)
862 + 1 /* Augmentation size */
863 + 1 /* Personality encoding */ );
864 int pad
= -offset
& (PTR_SIZE
- 1);
866 augmentation_size
+= pad
;
868 /* Augmentations should be small, so there's scarce need to
869 iterate for a solution. Die if we exceed one uleb128 byte. */
870 gcc_assert (size_of_uleb128 (augmentation_size
) == 1);
874 dw2_asm_output_nstring (augmentation
, -1, "CIE Augmentation");
875 if (dw_cie_version
>= 4)
877 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "CIE Address Size");
878 dw2_asm_output_data (1, 0, "CIE Segment Size");
880 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
881 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT
,
882 "CIE Data Alignment Factor");
884 if (dw_cie_version
== 1)
885 dw2_asm_output_data (1, return_reg
, "CIE RA Column");
887 dw2_asm_output_data_uleb128 (return_reg
, "CIE RA Column");
891 dw2_asm_output_data_uleb128 (augmentation_size
, "Augmentation size");
894 dw2_asm_output_data (1, per_encoding
, "Personality (%s)",
895 eh_data_format_name (per_encoding
));
896 dw2_asm_output_encoded_addr_rtx (per_encoding
,
902 dw2_asm_output_data (1, lsda_encoding
, "LSDA Encoding (%s)",
903 eh_data_format_name (lsda_encoding
));
905 if (fde_encoding
!= DW_EH_PE_absptr
)
906 dw2_asm_output_data (1, fde_encoding
, "FDE Encoding (%s)",
907 eh_data_format_name (fde_encoding
));
910 FOR_EACH_VEC_ELT (*cie_cfi_vec
, i
, cfi
)
911 output_cfi (cfi
, NULL
, for_eh
);
913 /* Pad the CIE out to an address sized boundary. */
914 ASM_OUTPUT_ALIGN (asm_out_file
,
915 floor_log2 (for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
));
916 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
918 /* Loop through all of the FDE's. */
919 FOR_EACH_VEC_ELT (*fde_vec
, i
, fde
)
923 /* Don't emit EH unwind info for leaf functions that don't need it. */
924 if (for_eh
&& !fde_needed_for_eh_p (fde
))
927 for (k
= 0; k
< (fde
->dw_fde_second_begin
? 2 : 1); k
++)
928 output_fde (fde
, for_eh
, k
, section_start_label
, fde_encoding
,
929 augmentation
, any_lsda_needed
, lsda_encoding
);
932 if (for_eh
&& targetm
.terminate_dw2_eh_frame_info
)
933 dw2_asm_output_data (4, 0, "End of Table");
935 /* Turn off app to make assembly quicker. */
940 /* Emit .cfi_startproc and .cfi_personality/.cfi_lsda if needed. */
943 dwarf2out_do_cfi_startproc (bool second
)
947 rtx personality
= get_personality_function (current_function_decl
);
949 fprintf (asm_out_file
, "\t.cfi_startproc\n");
953 enc
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
956 /* ??? The GAS support isn't entirely consistent. We have to
957 handle indirect support ourselves, but PC-relative is done
958 in the assembler. Further, the assembler can't handle any
959 of the weirder relocation types. */
960 if (enc
& DW_EH_PE_indirect
)
961 ref
= dw2_force_const_mem (ref
, true);
963 fprintf (asm_out_file
, "\t.cfi_personality %#x,", enc
);
964 output_addr_const (asm_out_file
, ref
);
965 fputc ('\n', asm_out_file
);
968 if (crtl
->uses_eh_lsda
)
972 enc
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
973 ASM_GENERATE_INTERNAL_LABEL (lab
, second
? "LLSDAC" : "LLSDA",
974 current_function_funcdef_no
);
975 ref
= gen_rtx_SYMBOL_REF (Pmode
, lab
);
976 SYMBOL_REF_FLAGS (ref
) = SYMBOL_FLAG_LOCAL
;
978 if (enc
& DW_EH_PE_indirect
)
979 ref
= dw2_force_const_mem (ref
, true);
981 fprintf (asm_out_file
, "\t.cfi_lsda %#x,", enc
);
982 output_addr_const (asm_out_file
, ref
);
983 fputc ('\n', asm_out_file
);
987 /* Allocate CURRENT_FDE. Immediately initialize all we can, noting that
988 this allocation may be done before pass_final. */
991 dwarf2out_alloc_current_fde (void)
995 fde
= ggc_cleared_alloc
<dw_fde_node
> ();
996 fde
->decl
= current_function_decl
;
997 fde
->funcdef_number
= current_function_funcdef_no
;
998 fde
->fde_index
= vec_safe_length (fde_vec
);
999 fde
->all_throwers_are_sibcalls
= crtl
->all_throwers_are_sibcalls
;
1000 fde
->uses_eh_lsda
= crtl
->uses_eh_lsda
;
1001 fde
->nothrow
= crtl
->nothrow
;
1002 fde
->drap_reg
= INVALID_REGNUM
;
1003 fde
->vdrap_reg
= INVALID_REGNUM
;
1005 /* Record the FDE associated with this function. */
1007 vec_safe_push (fde_vec
, fde
);
1012 /* Output a marker (i.e. a label) for the beginning of a function, before
1016 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED
,
1017 const char *file ATTRIBUTE_UNUSED
)
1019 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1025 current_function_func_begin_label
= NULL
;
1027 do_frame
= dwarf2out_do_frame ();
1029 /* ??? current_function_func_begin_label is also used by except.c for
1030 call-site information. We must emit this label if it might be used. */
1032 && (!flag_exceptions
1033 || targetm_common
.except_unwind_info (&global_options
) == UI_SJLJ
))
1036 fnsec
= function_section (current_function_decl
);
1037 switch_to_section (fnsec
);
1038 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_BEGIN_LABEL
,
1039 current_function_funcdef_no
);
1040 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, FUNC_BEGIN_LABEL
,
1041 current_function_funcdef_no
);
1042 dup_label
= xstrdup (label
);
1043 current_function_func_begin_label
= dup_label
;
1045 /* We can elide the fde allocation if we're not emitting debug info. */
1049 /* Cater to the various TARGET_ASM_OUTPUT_MI_THUNK implementations that
1050 emit insns as rtx but bypass the bulk of rest_of_compilation, which
1051 would include pass_dwarf2_frame. If we've not created the FDE yet,
1055 fde
= dwarf2out_alloc_current_fde ();
1057 /* Initialize the bits of CURRENT_FDE that were not available earlier. */
1058 fde
->dw_fde_begin
= dup_label
;
1059 fde
->dw_fde_current_label
= dup_label
;
1060 fde
->in_std_section
= (fnsec
== text_section
1061 || (cold_text_section
&& fnsec
== cold_text_section
));
1063 /* We only want to output line number information for the genuine dwarf2
1064 prologue case, not the eh frame case. */
1065 #ifdef DWARF2_DEBUGGING_INFO
1067 dwarf2out_source_line (line
, file
, 0, true);
1070 if (dwarf2out_do_cfi_asm ())
1071 dwarf2out_do_cfi_startproc (false);
1074 rtx personality
= get_personality_function (current_function_decl
);
1075 if (!current_unit_personality
)
1076 current_unit_personality
= personality
;
1078 /* We cannot keep a current personality per function as without CFI
1079 asm, at the point where we emit the CFI data, there is no current
1080 function anymore. */
1081 if (personality
&& current_unit_personality
!= personality
)
1082 sorry ("multiple EH personalities are supported only with assemblers "
1083 "supporting .cfi_personality directive");
1087 /* Output a marker (i.e. a label) for the end of the generated code
1088 for a function prologue. This gets called *after* the prologue code has
1092 dwarf2out_vms_end_prologue (unsigned int line ATTRIBUTE_UNUSED
,
1093 const char *file ATTRIBUTE_UNUSED
)
1095 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1097 /* Output a label to mark the endpoint of the code generated for this
1099 ASM_GENERATE_INTERNAL_LABEL (label
, PROLOGUE_END_LABEL
,
1100 current_function_funcdef_no
);
1101 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, PROLOGUE_END_LABEL
,
1102 current_function_funcdef_no
);
1103 cfun
->fde
->dw_fde_vms_end_prologue
= xstrdup (label
);
1106 /* Output a marker (i.e. a label) for the beginning of the generated code
1107 for a function epilogue. This gets called *before* the prologue code has
1111 dwarf2out_vms_begin_epilogue (unsigned int line ATTRIBUTE_UNUSED
,
1112 const char *file ATTRIBUTE_UNUSED
)
1114 dw_fde_ref fde
= cfun
->fde
;
1115 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1117 if (fde
->dw_fde_vms_begin_epilogue
)
1120 /* Output a label to mark the endpoint of the code generated for this
1122 ASM_GENERATE_INTERNAL_LABEL (label
, EPILOGUE_BEGIN_LABEL
,
1123 current_function_funcdef_no
);
1124 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, EPILOGUE_BEGIN_LABEL
,
1125 current_function_funcdef_no
);
1126 fde
->dw_fde_vms_begin_epilogue
= xstrdup (label
);
1129 /* Output a marker (i.e. a label) for the absolute end of the generated code
1130 for a function definition. This gets called *after* the epilogue code has
1134 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED
,
1135 const char *file ATTRIBUTE_UNUSED
)
1138 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
1140 last_var_location_insn
= NULL_RTX
;
1141 cached_next_real_insn
= NULL_RTX
;
1143 if (dwarf2out_do_cfi_asm ())
1144 fprintf (asm_out_file
, "\t.cfi_endproc\n");
1146 /* Output a label to mark the endpoint of the code generated for this
1148 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_END_LABEL
,
1149 current_function_funcdef_no
);
1150 ASM_OUTPUT_LABEL (asm_out_file
, label
);
1152 gcc_assert (fde
!= NULL
);
1153 if (fde
->dw_fde_second_begin
== NULL
)
1154 fde
->dw_fde_end
= xstrdup (label
);
1158 dwarf2out_frame_finish (void)
1160 /* Output call frame information. */
1161 if (targetm
.debug_unwind_info () == UI_DWARF2
)
1162 output_call_frame_info (0);
1164 /* Output another copy for the unwinder. */
1165 if ((flag_unwind_tables
|| flag_exceptions
)
1166 && targetm_common
.except_unwind_info (&global_options
) == UI_DWARF2
)
1167 output_call_frame_info (1);
1170 /* Note that the current function section is being used for code. */
1173 dwarf2out_note_section_used (void)
1175 section
*sec
= current_function_section ();
1176 if (sec
== text_section
)
1177 text_section_used
= true;
1178 else if (sec
== cold_text_section
)
1179 cold_text_section_used
= true;
1182 static void var_location_switch_text_section (void);
1183 static void set_cur_line_info_table (section
*);
1186 dwarf2out_switch_text_section (void)
1189 dw_fde_ref fde
= cfun
->fde
;
1191 gcc_assert (cfun
&& fde
&& fde
->dw_fde_second_begin
== NULL
);
1193 if (!in_cold_section_p
)
1195 fde
->dw_fde_end
= crtl
->subsections
.cold_section_end_label
;
1196 fde
->dw_fde_second_begin
= crtl
->subsections
.hot_section_label
;
1197 fde
->dw_fde_second_end
= crtl
->subsections
.hot_section_end_label
;
1201 fde
->dw_fde_end
= crtl
->subsections
.hot_section_end_label
;
1202 fde
->dw_fde_second_begin
= crtl
->subsections
.cold_section_label
;
1203 fde
->dw_fde_second_end
= crtl
->subsections
.cold_section_end_label
;
1205 have_multiple_function_sections
= true;
1207 /* There is no need to mark used sections when not debugging. */
1208 if (cold_text_section
!= NULL
)
1209 dwarf2out_note_section_used ();
1211 if (dwarf2out_do_cfi_asm ())
1212 fprintf (asm_out_file
, "\t.cfi_endproc\n");
1214 /* Now do the real section switch. */
1215 sect
= current_function_section ();
1216 switch_to_section (sect
);
1218 fde
->second_in_std_section
1219 = (sect
== text_section
1220 || (cold_text_section
&& sect
== cold_text_section
));
1222 if (dwarf2out_do_cfi_asm ())
1223 dwarf2out_do_cfi_startproc (true);
1225 var_location_switch_text_section ();
1227 if (cold_text_section
!= NULL
)
1228 set_cur_line_info_table (sect
);
1231 /* And now, the subset of the debugging information support code necessary
1232 for emitting location expressions. */
1234 /* Data about a single source file. */
1235 struct GTY(()) dwarf_file_data
{
1236 const char * filename
;
1240 typedef struct GTY(()) deferred_locations_struct
1244 } deferred_locations
;
1247 static GTY(()) vec
<deferred_locations
, va_gc
> *deferred_locations_list
;
1250 /* Describe an entry into the .debug_addr section. */
1254 ate_kind_rtx_dtprel
,
1258 typedef struct GTY(()) addr_table_entry_struct
{
1260 unsigned int refcount
;
1262 union addr_table_entry_struct_union
1264 rtx
GTY ((tag ("0"))) rtl
;
1265 char * GTY ((tag ("1"))) label
;
1267 GTY ((desc ("%1.kind"))) addr
;
1271 /* Location lists are ranges + location descriptions for that range,
1272 so you can track variables that are in different places over
1273 their entire life. */
1274 typedef struct GTY(()) dw_loc_list_struct
{
1275 dw_loc_list_ref dw_loc_next
;
1276 const char *begin
; /* Label and addr_entry for start of range */
1277 addr_table_entry
*begin_entry
;
1278 const char *end
; /* Label for end of range */
1279 char *ll_symbol
; /* Label for beginning of location list.
1280 Only on head of list */
1281 const char *section
; /* Section this loclist is relative to */
1282 dw_loc_descr_ref expr
;
1284 /* True if all addresses in this and subsequent lists are known to be
1287 /* True if this list has been replaced by dw_loc_next. */
1290 /* True if the range should be emitted even if begin and end
1295 static dw_loc_descr_ref
int_loc_descriptor (HOST_WIDE_INT
);
1297 /* Convert a DWARF stack opcode into its string name. */
1300 dwarf_stack_op_name (unsigned int op
)
1302 const char *name
= get_DW_OP_name (op
);
1307 return "OP_<unknown>";
1310 /* Return a pointer to a newly allocated location description. Location
1311 descriptions are simple expression terms that can be strung
1312 together to form more complicated location (address) descriptions. */
1314 static inline dw_loc_descr_ref
1315 new_loc_descr (enum dwarf_location_atom op
, unsigned HOST_WIDE_INT oprnd1
,
1316 unsigned HOST_WIDE_INT oprnd2
)
1318 dw_loc_descr_ref descr
= ggc_cleared_alloc
<dw_loc_descr_node
> ();
1320 descr
->dw_loc_opc
= op
;
1321 descr
->dw_loc_oprnd1
.val_class
= dw_val_class_unsigned_const
;
1322 descr
->dw_loc_oprnd1
.val_entry
= NULL
;
1323 descr
->dw_loc_oprnd1
.v
.val_unsigned
= oprnd1
;
1324 descr
->dw_loc_oprnd2
.val_class
= dw_val_class_unsigned_const
;
1325 descr
->dw_loc_oprnd2
.val_entry
= NULL
;
1326 descr
->dw_loc_oprnd2
.v
.val_unsigned
= oprnd2
;
1331 /* Return a pointer to a newly allocated location description for
1334 static inline dw_loc_descr_ref
1335 new_reg_loc_descr (unsigned int reg
, unsigned HOST_WIDE_INT offset
)
1338 return new_loc_descr ((enum dwarf_location_atom
) (DW_OP_breg0
+ reg
),
1341 return new_loc_descr (DW_OP_bregx
, reg
, offset
);
1344 /* Add a location description term to a location description expression. */
1347 add_loc_descr (dw_loc_descr_ref
*list_head
, dw_loc_descr_ref descr
)
1349 dw_loc_descr_ref
*d
;
1351 /* Find the end of the chain. */
1352 for (d
= list_head
; (*d
) != NULL
; d
= &(*d
)->dw_loc_next
)
1358 /* Compare two location operands for exact equality. */
1361 dw_val_equal_p (dw_val_node
*a
, dw_val_node
*b
)
1363 if (a
->val_class
!= b
->val_class
)
1365 switch (a
->val_class
)
1367 case dw_val_class_none
:
1369 case dw_val_class_addr
:
1370 return rtx_equal_p (a
->v
.val_addr
, b
->v
.val_addr
);
1372 case dw_val_class_offset
:
1373 case dw_val_class_unsigned_const
:
1374 case dw_val_class_const
:
1375 case dw_val_class_range_list
:
1376 case dw_val_class_lineptr
:
1377 case dw_val_class_macptr
:
1378 /* These are all HOST_WIDE_INT, signed or unsigned. */
1379 return a
->v
.val_unsigned
== b
->v
.val_unsigned
;
1381 case dw_val_class_loc
:
1382 return a
->v
.val_loc
== b
->v
.val_loc
;
1383 case dw_val_class_loc_list
:
1384 return a
->v
.val_loc_list
== b
->v
.val_loc_list
;
1385 case dw_val_class_die_ref
:
1386 return a
->v
.val_die_ref
.die
== b
->v
.val_die_ref
.die
;
1387 case dw_val_class_fde_ref
:
1388 return a
->v
.val_fde_index
== b
->v
.val_fde_index
;
1389 case dw_val_class_lbl_id
:
1390 case dw_val_class_high_pc
:
1391 return strcmp (a
->v
.val_lbl_id
, b
->v
.val_lbl_id
) == 0;
1392 case dw_val_class_str
:
1393 return a
->v
.val_str
== b
->v
.val_str
;
1394 case dw_val_class_flag
:
1395 return a
->v
.val_flag
== b
->v
.val_flag
;
1396 case dw_val_class_file
:
1397 return a
->v
.val_file
== b
->v
.val_file
;
1398 case dw_val_class_decl_ref
:
1399 return a
->v
.val_decl_ref
== b
->v
.val_decl_ref
;
1401 case dw_val_class_const_double
:
1402 return (a
->v
.val_double
.high
== b
->v
.val_double
.high
1403 && a
->v
.val_double
.low
== b
->v
.val_double
.low
);
1405 case dw_val_class_wide_int
:
1406 return *a
->v
.val_wide
== *b
->v
.val_wide
;
1408 case dw_val_class_vec
:
1410 size_t a_len
= a
->v
.val_vec
.elt_size
* a
->v
.val_vec
.length
;
1411 size_t b_len
= b
->v
.val_vec
.elt_size
* b
->v
.val_vec
.length
;
1413 return (a_len
== b_len
1414 && !memcmp (a
->v
.val_vec
.array
, b
->v
.val_vec
.array
, a_len
));
1417 case dw_val_class_data8
:
1418 return memcmp (a
->v
.val_data8
, b
->v
.val_data8
, 8) == 0;
1420 case dw_val_class_vms_delta
:
1421 return (!strcmp (a
->v
.val_vms_delta
.lbl1
, b
->v
.val_vms_delta
.lbl1
)
1422 && !strcmp (a
->v
.val_vms_delta
.lbl1
, b
->v
.val_vms_delta
.lbl1
));
1427 /* Compare two location atoms for exact equality. */
1430 loc_descr_equal_p_1 (dw_loc_descr_ref a
, dw_loc_descr_ref b
)
1432 if (a
->dw_loc_opc
!= b
->dw_loc_opc
)
1435 /* ??? This is only ever set for DW_OP_constNu, for N equal to the
1436 address size, but since we always allocate cleared storage it
1437 should be zero for other types of locations. */
1438 if (a
->dtprel
!= b
->dtprel
)
1441 return (dw_val_equal_p (&a
->dw_loc_oprnd1
, &b
->dw_loc_oprnd1
)
1442 && dw_val_equal_p (&a
->dw_loc_oprnd2
, &b
->dw_loc_oprnd2
));
1445 /* Compare two complete location expressions for exact equality. */
1448 loc_descr_equal_p (dw_loc_descr_ref a
, dw_loc_descr_ref b
)
1454 if (a
== NULL
|| b
== NULL
)
1456 if (!loc_descr_equal_p_1 (a
, b
))
1465 /* Add a constant OFFSET to a location expression. */
1468 loc_descr_plus_const (dw_loc_descr_ref
*list_head
, HOST_WIDE_INT offset
)
1470 dw_loc_descr_ref loc
;
1473 gcc_assert (*list_head
!= NULL
);
1478 /* Find the end of the chain. */
1479 for (loc
= *list_head
; loc
->dw_loc_next
!= NULL
; loc
= loc
->dw_loc_next
)
1483 if (loc
->dw_loc_opc
== DW_OP_fbreg
1484 || (loc
->dw_loc_opc
>= DW_OP_breg0
&& loc
->dw_loc_opc
<= DW_OP_breg31
))
1485 p
= &loc
->dw_loc_oprnd1
.v
.val_int
;
1486 else if (loc
->dw_loc_opc
== DW_OP_bregx
)
1487 p
= &loc
->dw_loc_oprnd2
.v
.val_int
;
1489 /* If the last operation is fbreg, breg{0..31,x}, optimize by adjusting its
1490 offset. Don't optimize if an signed integer overflow would happen. */
1492 && ((offset
> 0 && *p
<= INTTYPE_MAXIMUM (HOST_WIDE_INT
) - offset
)
1493 || (offset
< 0 && *p
>= INTTYPE_MINIMUM (HOST_WIDE_INT
) - offset
)))
1496 else if (offset
> 0)
1497 loc
->dw_loc_next
= new_loc_descr (DW_OP_plus_uconst
, offset
, 0);
1501 loc
->dw_loc_next
= int_loc_descriptor (-offset
);
1502 add_loc_descr (&loc
->dw_loc_next
, new_loc_descr (DW_OP_minus
, 0, 0));
1506 /* Add a constant OFFSET to a location list. */
1509 loc_list_plus_const (dw_loc_list_ref list_head
, HOST_WIDE_INT offset
)
1512 for (d
= list_head
; d
!= NULL
; d
= d
->dw_loc_next
)
1513 loc_descr_plus_const (&d
->expr
, offset
);
1516 #define DWARF_REF_SIZE \
1517 (dwarf_version == 2 ? DWARF2_ADDR_SIZE : DWARF_OFFSET_SIZE)
1519 static unsigned long int get_base_type_offset (dw_die_ref
);
1521 /* Return the size of a location descriptor. */
1523 static unsigned long
1524 size_of_loc_descr (dw_loc_descr_ref loc
)
1526 unsigned long size
= 1;
1528 switch (loc
->dw_loc_opc
)
1531 size
+= DWARF2_ADDR_SIZE
;
1533 case DW_OP_GNU_addr_index
:
1534 case DW_OP_GNU_const_index
:
1535 gcc_assert (loc
->dw_loc_oprnd1
.val_entry
->index
!= NO_INDEX_ASSIGNED
);
1536 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.val_entry
->index
);
1555 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1558 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
1563 case DW_OP_plus_uconst
:
1564 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1602 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
1605 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1608 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
1611 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1612 size
+= size_of_sleb128 (loc
->dw_loc_oprnd2
.v
.val_int
);
1615 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1617 case DW_OP_bit_piece
:
1618 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1619 size
+= size_of_uleb128 (loc
->dw_loc_oprnd2
.v
.val_unsigned
);
1621 case DW_OP_deref_size
:
1622 case DW_OP_xderef_size
:
1631 case DW_OP_call_ref
:
1632 size
+= DWARF_REF_SIZE
;
1634 case DW_OP_implicit_value
:
1635 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
)
1636 + loc
->dw_loc_oprnd1
.v
.val_unsigned
;
1638 case DW_OP_GNU_implicit_pointer
:
1639 size
+= DWARF_REF_SIZE
+ size_of_sleb128 (loc
->dw_loc_oprnd2
.v
.val_int
);
1641 case DW_OP_GNU_entry_value
:
1643 unsigned long op_size
= size_of_locs (loc
->dw_loc_oprnd1
.v
.val_loc
);
1644 size
+= size_of_uleb128 (op_size
) + op_size
;
1647 case DW_OP_GNU_const_type
:
1650 = get_base_type_offset (loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
);
1651 size
+= size_of_uleb128 (o
) + 1;
1652 switch (loc
->dw_loc_oprnd2
.val_class
)
1654 case dw_val_class_vec
:
1655 size
+= loc
->dw_loc_oprnd2
.v
.val_vec
.length
1656 * loc
->dw_loc_oprnd2
.v
.val_vec
.elt_size
;
1658 case dw_val_class_const
:
1659 size
+= HOST_BITS_PER_WIDE_INT
/ BITS_PER_UNIT
;
1661 case dw_val_class_const_double
:
1662 size
+= HOST_BITS_PER_DOUBLE_INT
/ BITS_PER_UNIT
;
1664 case dw_val_class_wide_int
:
1665 size
+= (get_full_len (*loc
->dw_loc_oprnd2
.v
.val_wide
)
1666 * HOST_BITS_PER_WIDE_INT
/ BITS_PER_UNIT
);
1673 case DW_OP_GNU_regval_type
:
1676 = get_base_type_offset (loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
);
1677 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
)
1678 + size_of_uleb128 (o
);
1681 case DW_OP_GNU_deref_type
:
1684 = get_base_type_offset (loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
);
1685 size
+= 1 + size_of_uleb128 (o
);
1688 case DW_OP_GNU_convert
:
1689 case DW_OP_GNU_reinterpret
:
1690 if (loc
->dw_loc_oprnd1
.val_class
== dw_val_class_unsigned_const
)
1691 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
1695 = get_base_type_offset (loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
);
1696 size
+= size_of_uleb128 (o
);
1699 case DW_OP_GNU_parameter_ref
:
1709 /* Return the size of a series of location descriptors. */
1712 size_of_locs (dw_loc_descr_ref loc
)
1717 /* If there are no skip or bra opcodes, don't fill in the dw_loc_addr
1718 field, to avoid writing to a PCH file. */
1719 for (size
= 0, l
= loc
; l
!= NULL
; l
= l
->dw_loc_next
)
1721 if (l
->dw_loc_opc
== DW_OP_skip
|| l
->dw_loc_opc
== DW_OP_bra
)
1723 size
+= size_of_loc_descr (l
);
1728 for (size
= 0, l
= loc
; l
!= NULL
; l
= l
->dw_loc_next
)
1730 l
->dw_loc_addr
= size
;
1731 size
+= size_of_loc_descr (l
);
1737 static HOST_WIDE_INT
extract_int (const unsigned char *, unsigned);
1738 static void get_ref_die_offset_label (char *, dw_die_ref
);
1739 static unsigned long int get_ref_die_offset (dw_die_ref
);
1741 /* Output location description stack opcode's operands (if any).
1742 The for_eh_or_skip parameter controls whether register numbers are
1743 converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
1744 hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
1745 info). This should be suppressed for the cases that have not been converted
1746 (i.e. symbolic debug info), by setting the parameter < 0. See PR47324. */
1749 output_loc_operands (dw_loc_descr_ref loc
, int for_eh_or_skip
)
1751 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
1752 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
1754 switch (loc
->dw_loc_opc
)
1756 #ifdef DWARF2_DEBUGGING_INFO
1759 dw2_asm_output_data (2, val1
->v
.val_int
, NULL
);
1764 gcc_assert (targetm
.asm_out
.output_dwarf_dtprel
);
1765 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
, 4,
1767 fputc ('\n', asm_out_file
);
1772 dw2_asm_output_data (4, val1
->v
.val_int
, NULL
);
1777 gcc_assert (targetm
.asm_out
.output_dwarf_dtprel
);
1778 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
, 8,
1780 fputc ('\n', asm_out_file
);
1785 gcc_assert (HOST_BITS_PER_WIDE_INT
>= 64);
1786 dw2_asm_output_data (8, val1
->v
.val_int
, NULL
);
1793 gcc_assert (val1
->val_class
== dw_val_class_loc
);
1794 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
1796 dw2_asm_output_data (2, offset
, NULL
);
1799 case DW_OP_implicit_value
:
1800 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1801 switch (val2
->val_class
)
1803 case dw_val_class_const
:
1804 dw2_asm_output_data (val1
->v
.val_unsigned
, val2
->v
.val_int
, NULL
);
1806 case dw_val_class_vec
:
1808 unsigned int elt_size
= val2
->v
.val_vec
.elt_size
;
1809 unsigned int len
= val2
->v
.val_vec
.length
;
1813 if (elt_size
> sizeof (HOST_WIDE_INT
))
1818 for (i
= 0, p
= val2
->v
.val_vec
.array
;
1821 dw2_asm_output_data (elt_size
, extract_int (p
, elt_size
),
1822 "fp or vector constant word %u", i
);
1825 case dw_val_class_const_double
:
1827 unsigned HOST_WIDE_INT first
, second
;
1829 if (WORDS_BIG_ENDIAN
)
1831 first
= val2
->v
.val_double
.high
;
1832 second
= val2
->v
.val_double
.low
;
1836 first
= val2
->v
.val_double
.low
;
1837 second
= val2
->v
.val_double
.high
;
1839 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
1841 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
1845 case dw_val_class_wide_int
:
1848 int len
= get_full_len (*val2
->v
.val_wide
);
1849 if (WORDS_BIG_ENDIAN
)
1850 for (i
= len
- 1; i
>= 0; --i
)
1851 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
1852 val2
->v
.val_wide
->elt (i
), NULL
);
1854 for (i
= 0; i
< len
; ++i
)
1855 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
1856 val2
->v
.val_wide
->elt (i
), NULL
);
1859 case dw_val_class_addr
:
1860 gcc_assert (val1
->v
.val_unsigned
== DWARF2_ADDR_SIZE
);
1861 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, val2
->v
.val_addr
, NULL
);
1876 case DW_OP_implicit_value
:
1877 /* We currently don't make any attempt to make sure these are
1878 aligned properly like we do for the main unwind info, so
1879 don't support emitting things larger than a byte if we're
1880 only doing unwinding. */
1885 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
1888 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1891 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
1894 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
1896 case DW_OP_plus_uconst
:
1897 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1931 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
1935 unsigned r
= val1
->v
.val_unsigned
;
1936 if (for_eh_or_skip
>= 0)
1937 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
1938 gcc_assert (size_of_uleb128 (r
)
1939 == size_of_uleb128 (val1
->v
.val_unsigned
));
1940 dw2_asm_output_data_uleb128 (r
, NULL
);
1944 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
1948 unsigned r
= val1
->v
.val_unsigned
;
1949 if (for_eh_or_skip
>= 0)
1950 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
1951 gcc_assert (size_of_uleb128 (r
)
1952 == size_of_uleb128 (val1
->v
.val_unsigned
));
1953 dw2_asm_output_data_uleb128 (r
, NULL
);
1954 dw2_asm_output_data_sleb128 (val2
->v
.val_int
, NULL
);
1958 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1960 case DW_OP_bit_piece
:
1961 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
1962 dw2_asm_output_data_uleb128 (val2
->v
.val_unsigned
, NULL
);
1964 case DW_OP_deref_size
:
1965 case DW_OP_xderef_size
:
1966 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
1972 if (targetm
.asm_out
.output_dwarf_dtprel
)
1974 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
,
1977 fputc ('\n', asm_out_file
);
1984 #ifdef DWARF2_DEBUGGING_INFO
1985 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, val1
->v
.val_addr
, NULL
);
1992 case DW_OP_GNU_addr_index
:
1993 case DW_OP_GNU_const_index
:
1994 gcc_assert (loc
->dw_loc_oprnd1
.val_entry
->index
!= NO_INDEX_ASSIGNED
);
1995 dw2_asm_output_data_uleb128 (loc
->dw_loc_oprnd1
.val_entry
->index
,
1996 "(index into .debug_addr)");
1999 case DW_OP_GNU_implicit_pointer
:
2001 char label
[MAX_ARTIFICIAL_LABEL_BYTES
2002 + HOST_BITS_PER_WIDE_INT
/ 2 + 2];
2003 gcc_assert (val1
->val_class
== dw_val_class_die_ref
);
2004 get_ref_die_offset_label (label
, val1
->v
.val_die_ref
.die
);
2005 dw2_asm_output_offset (DWARF_REF_SIZE
, label
, debug_info_section
, NULL
);
2006 dw2_asm_output_data_sleb128 (val2
->v
.val_int
, NULL
);
2010 case DW_OP_GNU_entry_value
:
2011 dw2_asm_output_data_uleb128 (size_of_locs (val1
->v
.val_loc
), NULL
);
2012 output_loc_sequence (val1
->v
.val_loc
, for_eh_or_skip
);
2015 case DW_OP_GNU_const_type
:
2017 unsigned long o
= get_base_type_offset (val1
->v
.val_die_ref
.die
), l
;
2019 dw2_asm_output_data_uleb128 (o
, NULL
);
2020 switch (val2
->val_class
)
2022 case dw_val_class_const
:
2023 l
= HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
;
2024 dw2_asm_output_data (1, l
, NULL
);
2025 dw2_asm_output_data (l
, val2
->v
.val_int
, NULL
);
2027 case dw_val_class_vec
:
2029 unsigned int elt_size
= val2
->v
.val_vec
.elt_size
;
2030 unsigned int len
= val2
->v
.val_vec
.length
;
2035 dw2_asm_output_data (1, l
, NULL
);
2036 if (elt_size
> sizeof (HOST_WIDE_INT
))
2041 for (i
= 0, p
= val2
->v
.val_vec
.array
;
2044 dw2_asm_output_data (elt_size
, extract_int (p
, elt_size
),
2045 "fp or vector constant word %u", i
);
2048 case dw_val_class_const_double
:
2050 unsigned HOST_WIDE_INT first
, second
;
2051 l
= HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
;
2053 dw2_asm_output_data (1, 2 * l
, NULL
);
2054 if (WORDS_BIG_ENDIAN
)
2056 first
= val2
->v
.val_double
.high
;
2057 second
= val2
->v
.val_double
.low
;
2061 first
= val2
->v
.val_double
.low
;
2062 second
= val2
->v
.val_double
.high
;
2064 dw2_asm_output_data (l
, first
, NULL
);
2065 dw2_asm_output_data (l
, second
, NULL
);
2068 case dw_val_class_wide_int
:
2071 int len
= get_full_len (*val2
->v
.val_wide
);
2072 l
= HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
;
2074 dw2_asm_output_data (1, len
* l
, NULL
);
2075 if (WORDS_BIG_ENDIAN
)
2076 for (i
= len
- 1; i
>= 0; --i
)
2077 dw2_asm_output_data (l
, val2
->v
.val_wide
->elt (i
), NULL
);
2079 for (i
= 0; i
< len
; ++i
)
2080 dw2_asm_output_data (l
, val2
->v
.val_wide
->elt (i
), NULL
);
2088 case DW_OP_GNU_regval_type
:
2090 unsigned r
= val1
->v
.val_unsigned
;
2091 unsigned long o
= get_base_type_offset (val2
->v
.val_die_ref
.die
);
2093 if (for_eh_or_skip
>= 0)
2095 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
2096 gcc_assert (size_of_uleb128 (r
)
2097 == size_of_uleb128 (val1
->v
.val_unsigned
));
2099 dw2_asm_output_data_uleb128 (r
, NULL
);
2100 dw2_asm_output_data_uleb128 (o
, NULL
);
2103 case DW_OP_GNU_deref_type
:
2105 unsigned long o
= get_base_type_offset (val2
->v
.val_die_ref
.die
);
2107 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
2108 dw2_asm_output_data_uleb128 (o
, NULL
);
2111 case DW_OP_GNU_convert
:
2112 case DW_OP_GNU_reinterpret
:
2113 if (loc
->dw_loc_oprnd1
.val_class
== dw_val_class_unsigned_const
)
2114 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
2117 unsigned long o
= get_base_type_offset (val1
->v
.val_die_ref
.die
);
2119 dw2_asm_output_data_uleb128 (o
, NULL
);
2123 case DW_OP_GNU_parameter_ref
:
2126 gcc_assert (val1
->val_class
== dw_val_class_die_ref
);
2127 o
= get_ref_die_offset (val1
->v
.val_die_ref
.die
);
2128 dw2_asm_output_data (4, o
, NULL
);
2133 /* Other codes have no operands. */
2138 /* Output a sequence of location operations.
2139 The for_eh_or_skip parameter controls whether register numbers are
2140 converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
2141 hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
2142 info). This should be suppressed for the cases that have not been converted
2143 (i.e. symbolic debug info), by setting the parameter < 0. See PR47324. */
2146 output_loc_sequence (dw_loc_descr_ref loc
, int for_eh_or_skip
)
2148 for (; loc
!= NULL
; loc
= loc
->dw_loc_next
)
2150 enum dwarf_location_atom opc
= loc
->dw_loc_opc
;
2151 /* Output the opcode. */
2152 if (for_eh_or_skip
>= 0
2153 && opc
>= DW_OP_breg0
&& opc
<= DW_OP_breg31
)
2155 unsigned r
= (opc
- DW_OP_breg0
);
2156 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
2157 gcc_assert (r
<= 31);
2158 opc
= (enum dwarf_location_atom
) (DW_OP_breg0
+ r
);
2160 else if (for_eh_or_skip
>= 0
2161 && opc
>= DW_OP_reg0
&& opc
<= DW_OP_reg31
)
2163 unsigned r
= (opc
- DW_OP_reg0
);
2164 r
= DWARF2_FRAME_REG_OUT (r
, for_eh_or_skip
);
2165 gcc_assert (r
<= 31);
2166 opc
= (enum dwarf_location_atom
) (DW_OP_reg0
+ r
);
2169 dw2_asm_output_data (1, opc
,
2170 "%s", dwarf_stack_op_name (opc
));
2172 /* Output the operand(s) (if any). */
2173 output_loc_operands (loc
, for_eh_or_skip
);
2177 /* Output location description stack opcode's operands (if any).
2178 The output is single bytes on a line, suitable for .cfi_escape. */
2181 output_loc_operands_raw (dw_loc_descr_ref loc
)
2183 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
2184 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
2186 switch (loc
->dw_loc_opc
)
2189 case DW_OP_GNU_addr_index
:
2190 case DW_OP_GNU_const_index
:
2191 case DW_OP_implicit_value
:
2192 /* We cannot output addresses in .cfi_escape, only bytes. */
2198 case DW_OP_deref_size
:
2199 case DW_OP_xderef_size
:
2200 fputc (',', asm_out_file
);
2201 dw2_asm_output_data_raw (1, val1
->v
.val_int
);
2206 fputc (',', asm_out_file
);
2207 dw2_asm_output_data_raw (2, val1
->v
.val_int
);
2212 fputc (',', asm_out_file
);
2213 dw2_asm_output_data_raw (4, val1
->v
.val_int
);
2218 gcc_assert (HOST_BITS_PER_WIDE_INT
>= 64);
2219 fputc (',', asm_out_file
);
2220 dw2_asm_output_data_raw (8, val1
->v
.val_int
);
2228 gcc_assert (val1
->val_class
== dw_val_class_loc
);
2229 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
2231 fputc (',', asm_out_file
);
2232 dw2_asm_output_data_raw (2, offset
);
2238 unsigned r
= DWARF2_FRAME_REG_OUT (val1
->v
.val_unsigned
, 1);
2239 gcc_assert (size_of_uleb128 (r
)
2240 == size_of_uleb128 (val1
->v
.val_unsigned
));
2241 fputc (',', asm_out_file
);
2242 dw2_asm_output_data_uleb128_raw (r
);
2247 case DW_OP_plus_uconst
:
2249 fputc (',', asm_out_file
);
2250 dw2_asm_output_data_uleb128_raw (val1
->v
.val_unsigned
);
2253 case DW_OP_bit_piece
:
2254 fputc (',', asm_out_file
);
2255 dw2_asm_output_data_uleb128_raw (val1
->v
.val_unsigned
);
2256 dw2_asm_output_data_uleb128_raw (val2
->v
.val_unsigned
);
2293 fputc (',', asm_out_file
);
2294 dw2_asm_output_data_sleb128_raw (val1
->v
.val_int
);
2299 unsigned r
= DWARF2_FRAME_REG_OUT (val1
->v
.val_unsigned
, 1);
2300 gcc_assert (size_of_uleb128 (r
)
2301 == size_of_uleb128 (val1
->v
.val_unsigned
));
2302 fputc (',', asm_out_file
);
2303 dw2_asm_output_data_uleb128_raw (r
);
2304 fputc (',', asm_out_file
);
2305 dw2_asm_output_data_sleb128_raw (val2
->v
.val_int
);
2309 case DW_OP_GNU_implicit_pointer
:
2310 case DW_OP_GNU_entry_value
:
2311 case DW_OP_GNU_const_type
:
2312 case DW_OP_GNU_regval_type
:
2313 case DW_OP_GNU_deref_type
:
2314 case DW_OP_GNU_convert
:
2315 case DW_OP_GNU_reinterpret
:
2316 case DW_OP_GNU_parameter_ref
:
2321 /* Other codes have no operands. */
2327 output_loc_sequence_raw (dw_loc_descr_ref loc
)
2331 enum dwarf_location_atom opc
= loc
->dw_loc_opc
;
2332 /* Output the opcode. */
2333 if (opc
>= DW_OP_breg0
&& opc
<= DW_OP_breg31
)
2335 unsigned r
= (opc
- DW_OP_breg0
);
2336 r
= DWARF2_FRAME_REG_OUT (r
, 1);
2337 gcc_assert (r
<= 31);
2338 opc
= (enum dwarf_location_atom
) (DW_OP_breg0
+ r
);
2340 else if (opc
>= DW_OP_reg0
&& opc
<= DW_OP_reg31
)
2342 unsigned r
= (opc
- DW_OP_reg0
);
2343 r
= DWARF2_FRAME_REG_OUT (r
, 1);
2344 gcc_assert (r
<= 31);
2345 opc
= (enum dwarf_location_atom
) (DW_OP_reg0
+ r
);
2347 /* Output the opcode. */
2348 fprintf (asm_out_file
, "%#x", opc
);
2349 output_loc_operands_raw (loc
);
2351 if (!loc
->dw_loc_next
)
2353 loc
= loc
->dw_loc_next
;
2355 fputc (',', asm_out_file
);
2359 /* This function builds a dwarf location descriptor sequence from a
2360 dw_cfa_location, adding the given OFFSET to the result of the
2363 struct dw_loc_descr_node
*
2364 build_cfa_loc (dw_cfa_location
*cfa
, HOST_WIDE_INT offset
)
2366 struct dw_loc_descr_node
*head
, *tmp
;
2368 offset
+= cfa
->offset
;
2372 head
= new_reg_loc_descr (cfa
->reg
, cfa
->base_offset
);
2373 head
->dw_loc_oprnd1
.val_class
= dw_val_class_const
;
2374 head
->dw_loc_oprnd1
.val_entry
= NULL
;
2375 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
2376 add_loc_descr (&head
, tmp
);
2379 tmp
= new_loc_descr (DW_OP_plus_uconst
, offset
, 0);
2380 add_loc_descr (&head
, tmp
);
2384 head
= new_reg_loc_descr (cfa
->reg
, offset
);
2389 /* This function builds a dwarf location descriptor sequence for
2390 the address at OFFSET from the CFA when stack is aligned to
2393 struct dw_loc_descr_node
*
2394 build_cfa_aligned_loc (dw_cfa_location
*cfa
,
2395 HOST_WIDE_INT offset
, HOST_WIDE_INT alignment
)
2397 struct dw_loc_descr_node
*head
;
2398 unsigned int dwarf_fp
2399 = DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM
);
2401 /* When CFA is defined as FP+OFFSET, emulate stack alignment. */
2402 if (cfa
->reg
== HARD_FRAME_POINTER_REGNUM
&& cfa
->indirect
== 0)
2404 head
= new_reg_loc_descr (dwarf_fp
, 0);
2405 add_loc_descr (&head
, int_loc_descriptor (alignment
));
2406 add_loc_descr (&head
, new_loc_descr (DW_OP_and
, 0, 0));
2407 loc_descr_plus_const (&head
, offset
);
2410 head
= new_reg_loc_descr (dwarf_fp
, offset
);
2414 /* And now, the support for symbolic debugging information. */
2416 /* .debug_str support. */
2417 static int output_indirect_string (void **, void *);
2419 static void dwarf2out_init (const char *);
2420 static void dwarf2out_finish (const char *);
2421 static void dwarf2out_assembly_start (void);
2422 static void dwarf2out_define (unsigned int, const char *);
2423 static void dwarf2out_undef (unsigned int, const char *);
2424 static void dwarf2out_start_source_file (unsigned, const char *);
2425 static void dwarf2out_end_source_file (unsigned);
2426 static void dwarf2out_function_decl (tree
);
2427 static void dwarf2out_begin_block (unsigned, unsigned);
2428 static void dwarf2out_end_block (unsigned, unsigned);
2429 static bool dwarf2out_ignore_block (const_tree
);
2430 static void dwarf2out_global_decl (tree
);
2431 static void dwarf2out_type_decl (tree
, int);
2432 static void dwarf2out_imported_module_or_decl (tree
, tree
, tree
, bool);
2433 static void dwarf2out_imported_module_or_decl_1 (tree
, tree
, tree
,
2435 static void dwarf2out_abstract_function (tree
);
2436 static void dwarf2out_var_location (rtx
);
2437 static void dwarf2out_begin_function (tree
);
2438 static void dwarf2out_end_function (unsigned int);
2439 static void dwarf2out_set_name (tree
, tree
);
2441 /* The debug hooks structure. */
2443 const struct gcc_debug_hooks dwarf2_debug_hooks
=
2447 dwarf2out_assembly_start
,
2450 dwarf2out_start_source_file
,
2451 dwarf2out_end_source_file
,
2452 dwarf2out_begin_block
,
2453 dwarf2out_end_block
,
2454 dwarf2out_ignore_block
,
2455 dwarf2out_source_line
,
2456 dwarf2out_begin_prologue
,
2457 #if VMS_DEBUGGING_INFO
2458 dwarf2out_vms_end_prologue
,
2459 dwarf2out_vms_begin_epilogue
,
2461 debug_nothing_int_charstar
,
2462 debug_nothing_int_charstar
,
2464 dwarf2out_end_epilogue
,
2465 dwarf2out_begin_function
,
2466 dwarf2out_end_function
, /* end_function */
2467 dwarf2out_function_decl
, /* function_decl */
2468 dwarf2out_global_decl
,
2469 dwarf2out_type_decl
, /* type_decl */
2470 dwarf2out_imported_module_or_decl
,
2471 debug_nothing_tree
, /* deferred_inline_function */
2472 /* The DWARF 2 backend tries to reduce debugging bloat by not
2473 emitting the abstract description of inline functions until
2474 something tries to reference them. */
2475 dwarf2out_abstract_function
, /* outlining_inline_function */
2476 debug_nothing_rtx
, /* label */
2477 debug_nothing_int
, /* handle_pch */
2478 dwarf2out_var_location
,
2479 dwarf2out_switch_text_section
,
2481 1, /* start_end_main_source_file */
2482 TYPE_SYMTAB_IS_DIE
/* tree_type_symtab_field */
2485 /* NOTE: In the comments in this file, many references are made to
2486 "Debugging Information Entries". This term is abbreviated as `DIE'
2487 throughout the remainder of this file. */
2489 /* An internal representation of the DWARF output is built, and then
2490 walked to generate the DWARF debugging info. The walk of the internal
2491 representation is done after the entire program has been compiled.
2492 The types below are used to describe the internal representation. */
2494 /* Whether to put type DIEs into their own section .debug_types instead
2495 of making them part of the .debug_info section. Only supported for
2496 Dwarf V4 or higher and the user didn't disable them through
2497 -fno-debug-types-section. It is more efficient to put them in a
2498 separate comdat sections since the linker will then be able to
2499 remove duplicates. But not all tools support .debug_types sections
2502 #define use_debug_types (dwarf_version >= 4 && flag_debug_types_section)
2504 /* Various DIE's use offsets relative to the beginning of the
2505 .debug_info section to refer to each other. */
2507 typedef long int dw_offset
;
2509 /* Define typedefs here to avoid circular dependencies. */
2511 typedef struct dw_attr_struct
*dw_attr_ref
;
2512 typedef struct dw_line_info_struct
*dw_line_info_ref
;
2513 typedef struct pubname_struct
*pubname_ref
;
2514 typedef struct dw_ranges_struct
*dw_ranges_ref
;
2515 typedef struct dw_ranges_by_label_struct
*dw_ranges_by_label_ref
;
2516 typedef struct comdat_type_struct
*comdat_type_node_ref
;
2518 /* The entries in the line_info table more-or-less mirror the opcodes
2519 that are used in the real dwarf line table. Arrays of these entries
2520 are collected per section when DWARF2_ASM_LINE_DEBUG_INFO is not
2523 enum dw_line_info_opcode
{
2524 /* Emit DW_LNE_set_address; the operand is the label index. */
2527 /* Emit a row to the matrix with the given line. This may be done
2528 via any combination of DW_LNS_copy, DW_LNS_advance_line, and
2532 /* Emit a DW_LNS_set_file. */
2535 /* Emit a DW_LNS_set_column. */
2538 /* Emit a DW_LNS_negate_stmt; the operand is ignored. */
2541 /* Emit a DW_LNS_set_prologue_end/epilogue_begin; the operand is ignored. */
2542 LI_set_prologue_end
,
2543 LI_set_epilogue_begin
,
2545 /* Emit a DW_LNE_set_discriminator. */
2546 LI_set_discriminator
2549 typedef struct GTY(()) dw_line_info_struct
{
2550 enum dw_line_info_opcode opcode
;
2552 } dw_line_info_entry
;
2555 typedef struct GTY(()) dw_line_info_table_struct
{
2556 /* The label that marks the end of this section. */
2557 const char *end_label
;
2559 /* The values for the last row of the matrix, as collected in the table.
2560 These are used to minimize the changes to the next row. */
2561 unsigned int file_num
;
2562 unsigned int line_num
;
2563 unsigned int column_num
;
2568 vec
<dw_line_info_entry
, va_gc
> *entries
;
2569 } dw_line_info_table
;
2571 typedef dw_line_info_table
*dw_line_info_table_p
;
2574 /* Each DIE attribute has a field specifying the attribute kind,
2575 a link to the next attribute in the chain, and an attribute value.
2576 Attributes are typically linked below the DIE they modify. */
2578 typedef struct GTY(()) dw_attr_struct
{
2579 enum dwarf_attribute dw_attr
;
2580 dw_val_node dw_attr_val
;
2585 /* The Debugging Information Entry (DIE) structure. DIEs form a tree.
2586 The children of each node form a circular list linked by
2587 die_sib. die_child points to the node *before* the "first" child node. */
2589 typedef struct GTY((chain_circular ("%h.die_sib"))) die_struct
{
2590 union die_symbol_or_type_node
2592 const char * GTY ((tag ("0"))) die_symbol
;
2593 comdat_type_node_ref
GTY ((tag ("1"))) die_type_node
;
2595 GTY ((desc ("%0.comdat_type_p"))) die_id
;
2596 vec
<dw_attr_node
, va_gc
> *die_attr
;
2597 dw_die_ref die_parent
;
2598 dw_die_ref die_child
;
2600 dw_die_ref die_definition
; /* ref from a specification to its definition */
2601 dw_offset die_offset
;
2602 unsigned long die_abbrev
;
2604 unsigned int decl_id
;
2605 enum dwarf_tag die_tag
;
2606 /* Die is used and must not be pruned as unused. */
2607 BOOL_BITFIELD die_perennial_p
: 1;
2608 BOOL_BITFIELD comdat_type_p
: 1; /* DIE has a type signature */
2609 /* Lots of spare bits. */
2613 /* Evaluate 'expr' while 'c' is set to each child of DIE in order. */
2614 #define FOR_EACH_CHILD(die, c, expr) do { \
2615 c = die->die_child; \
2619 } while (c != die->die_child); \
2622 /* The pubname structure */
2624 typedef struct GTY(()) pubname_struct
{
2631 struct GTY(()) dw_ranges_struct
{
2632 /* If this is positive, it's a block number, otherwise it's a
2633 bitwise-negated index into dw_ranges_by_label. */
2637 /* A structure to hold a macinfo entry. */
2639 typedef struct GTY(()) macinfo_struct
{
2641 unsigned HOST_WIDE_INT lineno
;
2647 struct GTY(()) dw_ranges_by_label_struct
{
2652 /* The comdat type node structure. */
2653 typedef struct GTY(()) comdat_type_struct
2655 dw_die_ref root_die
;
2656 dw_die_ref type_die
;
2657 dw_die_ref skeleton_die
;
2658 char signature
[DWARF_TYPE_SIGNATURE_SIZE
];
2659 struct comdat_type_struct
*next
;
2663 /* The limbo die list structure. */
2664 typedef struct GTY(()) limbo_die_struct
{
2667 struct limbo_die_struct
*next
;
2671 typedef struct skeleton_chain_struct
2675 struct skeleton_chain_struct
*parent
;
2677 skeleton_chain_node
;
2679 /* Define a macro which returns nonzero for a TYPE_DECL which was
2680 implicitly generated for a type.
2682 Note that, unlike the C front-end (which generates a NULL named
2683 TYPE_DECL node for each complete tagged type, each array type,
2684 and each function type node created) the C++ front-end generates
2685 a _named_ TYPE_DECL node for each tagged type node created.
2686 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
2687 generate a DW_TAG_typedef DIE for them. Likewise with the Ada
2688 front-end, but for each type, tagged or not. */
2690 #define TYPE_DECL_IS_STUB(decl) \
2691 (DECL_NAME (decl) == NULL_TREE \
2692 || (DECL_ARTIFICIAL (decl) \
2693 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
2694 /* This is necessary for stub decls that \
2695 appear in nested inline functions. */ \
2696 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
2697 && (decl_ultimate_origin (decl) \
2698 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
2700 /* Information concerning the compilation unit's programming
2701 language, and compiler version. */
2703 /* Fixed size portion of the DWARF compilation unit header. */
2704 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
2705 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
2707 /* Fixed size portion of the DWARF comdat type unit header. */
2708 #define DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE \
2709 (DWARF_COMPILE_UNIT_HEADER_SIZE + DWARF_TYPE_SIGNATURE_SIZE \
2710 + DWARF_OFFSET_SIZE)
2712 /* Fixed size portion of public names info. */
2713 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
2715 /* Fixed size portion of the address range info. */
2716 #define DWARF_ARANGES_HEADER_SIZE \
2717 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
2718 DWARF2_ADDR_SIZE * 2) \
2719 - DWARF_INITIAL_LENGTH_SIZE)
2721 /* Size of padding portion in the address range info. It must be
2722 aligned to twice the pointer size. */
2723 #define DWARF_ARANGES_PAD_SIZE \
2724 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
2725 DWARF2_ADDR_SIZE * 2) \
2726 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
2728 /* Use assembler line directives if available. */
2729 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
2730 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
2731 #define DWARF2_ASM_LINE_DEBUG_INFO 1
2733 #define DWARF2_ASM_LINE_DEBUG_INFO 0
2737 /* Minimum line offset in a special line info. opcode.
2738 This value was chosen to give a reasonable range of values. */
2739 #define DWARF_LINE_BASE -10
2741 /* First special line opcode - leave room for the standard opcodes. */
2742 #define DWARF_LINE_OPCODE_BASE ((int)DW_LNS_set_isa + 1)
2744 /* Range of line offsets in a special line info. opcode. */
2745 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
2747 /* Flag that indicates the initial value of the is_stmt_start flag.
2748 In the present implementation, we do not mark any lines as
2749 the beginning of a source statement, because that information
2750 is not made available by the GCC front-end. */
2751 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
2753 /* Maximum number of operations per instruction bundle. */
2754 #ifndef DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
2755 #define DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN 1
2758 /* This location is used by calc_die_sizes() to keep track
2759 the offset of each DIE within the .debug_info section. */
2760 static unsigned long next_die_offset
;
2762 /* Record the root of the DIE's built for the current compilation unit. */
2763 static GTY(()) dw_die_ref single_comp_unit_die
;
2765 /* A list of type DIEs that have been separated into comdat sections. */
2766 static GTY(()) comdat_type_node
*comdat_type_list
;
2768 /* A list of DIEs with a NULL parent waiting to be relocated. */
2769 static GTY(()) limbo_die_node
*limbo_die_list
;
2771 /* A list of DIEs for which we may have to generate
2772 DW_AT_{,MIPS_}linkage_name once their DECL_ASSEMBLER_NAMEs are set. */
2773 static GTY(()) limbo_die_node
*deferred_asm_name
;
2775 /* Filenames referenced by this compilation unit. */
2776 static GTY((param_is (struct dwarf_file_data
))) htab_t file_table
;
2778 /* A hash table of references to DIE's that describe declarations.
2779 The key is a DECL_UID() which is a unique number identifying each decl. */
2780 static GTY ((param_is (struct die_struct
))) htab_t decl_die_table
;
2782 /* A hash table of references to DIE's that describe COMMON blocks.
2783 The key is DECL_UID() ^ die_parent. */
2784 static GTY ((param_is (struct die_struct
))) htab_t common_block_die_table
;
2786 typedef struct GTY(()) die_arg_entry_struct
{
2792 /* Node of the variable location list. */
2793 struct GTY ((chain_next ("%h.next"))) var_loc_node
{
2794 /* Either NOTE_INSN_VAR_LOCATION, or, for SRA optimized variables,
2795 EXPR_LIST chain. For small bitsizes, bitsize is encoded
2796 in mode of the EXPR_LIST node and first EXPR_LIST operand
2797 is either NOTE_INSN_VAR_LOCATION for a piece with a known
2798 location or NULL for padding. For larger bitsizes,
2799 mode is 0 and first operand is a CONCAT with bitsize
2800 as first CONCAT operand and NOTE_INSN_VAR_LOCATION resp.
2801 NULL as second operand. */
2803 const char * GTY (()) label
;
2804 struct var_loc_node
* GTY (()) next
;
2807 /* Variable location list. */
2808 struct GTY (()) var_loc_list_def
{
2809 struct var_loc_node
* GTY (()) first
;
2811 /* Pointer to the last but one or last element of the
2812 chained list. If the list is empty, both first and
2813 last are NULL, if the list contains just one node
2814 or the last node certainly is not redundant, it points
2815 to the last node, otherwise points to the last but one.
2816 Do not mark it for GC because it is marked through the chain. */
2817 struct var_loc_node
* GTY ((skip ("%h"))) last
;
2819 /* Pointer to the last element before section switch,
2820 if NULL, either sections weren't switched or first
2821 is after section switch. */
2822 struct var_loc_node
* GTY ((skip ("%h"))) last_before_switch
;
2824 /* DECL_UID of the variable decl. */
2825 unsigned int decl_id
;
2827 typedef struct var_loc_list_def var_loc_list
;
2829 /* Call argument location list. */
2830 struct GTY ((chain_next ("%h.next"))) call_arg_loc_node
{
2831 rtx
GTY (()) call_arg_loc_note
;
2832 const char * GTY (()) label
;
2833 tree
GTY (()) block
;
2835 rtx
GTY (()) symbol_ref
;
2836 struct call_arg_loc_node
* GTY (()) next
;
2840 /* Table of decl location linked lists. */
2841 static GTY ((param_is (var_loc_list
))) htab_t decl_loc_table
;
2843 /* Head and tail of call_arg_loc chain. */
2844 static GTY (()) struct call_arg_loc_node
*call_arg_locations
;
2845 static struct call_arg_loc_node
*call_arg_loc_last
;
2847 /* Number of call sites in the current function. */
2848 static int call_site_count
= -1;
2849 /* Number of tail call sites in the current function. */
2850 static int tail_call_site_count
= -1;
2852 /* Vector mapping block numbers to DW_TAG_{lexical_block,inlined_subroutine}
2854 static vec
<dw_die_ref
> block_map
;
2856 /* A cached location list. */
2857 struct GTY (()) cached_dw_loc_list_def
{
2858 /* The DECL_UID of the decl that this entry describes. */
2859 unsigned int decl_id
;
2861 /* The cached location list. */
2862 dw_loc_list_ref loc_list
;
2864 typedef struct cached_dw_loc_list_def cached_dw_loc_list
;
2866 /* Table of cached location lists. */
2867 static GTY ((param_is (cached_dw_loc_list
))) htab_t cached_dw_loc_list_table
;
2869 /* A pointer to the base of a list of references to DIE's that
2870 are uniquely identified by their tag, presence/absence of
2871 children DIE's, and list of attribute/value pairs. */
2872 static GTY((length ("abbrev_die_table_allocated")))
2873 dw_die_ref
*abbrev_die_table
;
2875 /* Number of elements currently allocated for abbrev_die_table. */
2876 static GTY(()) unsigned abbrev_die_table_allocated
;
2878 /* Number of elements in type_die_table currently in use. */
2879 static GTY(()) unsigned abbrev_die_table_in_use
;
2881 /* Size (in elements) of increments by which we may expand the
2882 abbrev_die_table. */
2883 #define ABBREV_DIE_TABLE_INCREMENT 256
2885 /* A global counter for generating labels for line number data. */
2886 static unsigned int line_info_label_num
;
2888 /* The current table to which we should emit line number information
2889 for the current function. This will be set up at the beginning of
2890 assembly for the function. */
2891 static dw_line_info_table
*cur_line_info_table
;
2893 /* The two default tables of line number info. */
2894 static GTY(()) dw_line_info_table
*text_section_line_info
;
2895 static GTY(()) dw_line_info_table
*cold_text_section_line_info
;
2897 /* The set of all non-default tables of line number info. */
2898 static GTY(()) vec
<dw_line_info_table_p
, va_gc
> *separate_line_info
;
2900 /* A flag to tell pubnames/types export if there is an info section to
2902 static bool info_section_emitted
;
2904 /* A pointer to the base of a table that contains a list of publicly
2905 accessible names. */
2906 static GTY (()) vec
<pubname_entry
, va_gc
> *pubname_table
;
2908 /* A pointer to the base of a table that contains a list of publicly
2909 accessible types. */
2910 static GTY (()) vec
<pubname_entry
, va_gc
> *pubtype_table
;
2912 /* A pointer to the base of a table that contains a list of macro
2913 defines/undefines (and file start/end markers). */
2914 static GTY (()) vec
<macinfo_entry
, va_gc
> *macinfo_table
;
2916 /* True if .debug_macinfo or .debug_macros section is going to be
2918 #define have_macinfo \
2919 (debug_info_level >= DINFO_LEVEL_VERBOSE \
2920 && !macinfo_table->is_empty ())
2922 /* Array of dies for which we should generate .debug_ranges info. */
2923 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table
;
2925 /* Number of elements currently allocated for ranges_table. */
2926 static GTY(()) unsigned ranges_table_allocated
;
2928 /* Number of elements in ranges_table currently in use. */
2929 static GTY(()) unsigned ranges_table_in_use
;
2931 /* Array of pairs of labels referenced in ranges_table. */
2932 static GTY ((length ("ranges_by_label_allocated")))
2933 dw_ranges_by_label_ref ranges_by_label
;
2935 /* Number of elements currently allocated for ranges_by_label. */
2936 static GTY(()) unsigned ranges_by_label_allocated
;
2938 /* Number of elements in ranges_by_label currently in use. */
2939 static GTY(()) unsigned ranges_by_label_in_use
;
2941 /* Size (in elements) of increments by which we may expand the
2943 #define RANGES_TABLE_INCREMENT 64
2945 /* Whether we have location lists that need outputting */
2946 static GTY(()) bool have_location_lists
;
2948 /* Unique label counter. */
2949 static GTY(()) unsigned int loclabel_num
;
2951 /* Unique label counter for point-of-call tables. */
2952 static GTY(()) unsigned int poc_label_num
;
2954 /* Record whether the function being analyzed contains inlined functions. */
2955 static int current_function_has_inlines
;
2957 /* The last file entry emitted by maybe_emit_file(). */
2958 static GTY(()) struct dwarf_file_data
* last_emitted_file
;
2960 /* Number of internal labels generated by gen_internal_sym(). */
2961 static GTY(()) int label_num
;
2963 /* Cached result of previous call to lookup_filename. */
2964 static GTY(()) struct dwarf_file_data
* file_table_last_lookup
;
2966 static GTY(()) vec
<die_arg_entry
, va_gc
> *tmpl_value_parm_die_table
;
2968 /* Instances of generic types for which we need to generate debug
2969 info that describe their generic parameters and arguments. That
2970 generation needs to happen once all types are properly laid out so
2971 we do it at the end of compilation. */
2972 static GTY(()) vec
<tree
, va_gc
> *generic_type_instances
;
2974 /* Offset from the "steady-state frame pointer" to the frame base,
2975 within the current function. */
2976 static HOST_WIDE_INT frame_pointer_fb_offset
;
2977 static bool frame_pointer_fb_offset_valid
;
2979 static vec
<dw_die_ref
> base_types
;
2981 /* Forward declarations for functions defined in this file. */
2983 static int is_pseudo_reg (const_rtx
);
2984 static tree
type_main_variant (tree
);
2985 static int is_tagged_type (const_tree
);
2986 static const char *dwarf_tag_name (unsigned);
2987 static const char *dwarf_attr_name (unsigned);
2988 static const char *dwarf_form_name (unsigned);
2989 static tree
decl_ultimate_origin (const_tree
);
2990 static tree
decl_class_context (tree
);
2991 static void add_dwarf_attr (dw_die_ref
, dw_attr_ref
);
2992 static inline enum dw_val_class
AT_class (dw_attr_ref
);
2993 static inline unsigned int AT_index (dw_attr_ref
);
2994 static void add_AT_flag (dw_die_ref
, enum dwarf_attribute
, unsigned);
2995 static inline unsigned AT_flag (dw_attr_ref
);
2996 static void add_AT_int (dw_die_ref
, enum dwarf_attribute
, HOST_WIDE_INT
);
2997 static inline HOST_WIDE_INT
AT_int (dw_attr_ref
);
2998 static void add_AT_unsigned (dw_die_ref
, enum dwarf_attribute
, unsigned HOST_WIDE_INT
);
2999 static inline unsigned HOST_WIDE_INT
AT_unsigned (dw_attr_ref
);
3000 static void add_AT_double (dw_die_ref
, enum dwarf_attribute
,
3001 HOST_WIDE_INT
, unsigned HOST_WIDE_INT
);
3002 static inline void add_AT_vec (dw_die_ref
, enum dwarf_attribute
, unsigned int,
3003 unsigned int, unsigned char *);
3004 static void add_AT_data8 (dw_die_ref
, enum dwarf_attribute
, unsigned char *);
3005 static hashval_t
debug_str_do_hash (const void *);
3006 static int debug_str_eq (const void *, const void *);
3007 static void add_AT_string (dw_die_ref
, enum dwarf_attribute
, const char *);
3008 static inline const char *AT_string (dw_attr_ref
);
3009 static enum dwarf_form
AT_string_form (dw_attr_ref
);
3010 static void add_AT_die_ref (dw_die_ref
, enum dwarf_attribute
, dw_die_ref
);
3011 static void add_AT_specification (dw_die_ref
, dw_die_ref
);
3012 static inline dw_die_ref
AT_ref (dw_attr_ref
);
3013 static inline int AT_ref_external (dw_attr_ref
);
3014 static inline void set_AT_ref_external (dw_attr_ref
, int);
3015 static void add_AT_fde_ref (dw_die_ref
, enum dwarf_attribute
, unsigned);
3016 static void add_AT_loc (dw_die_ref
, enum dwarf_attribute
, dw_loc_descr_ref
);
3017 static inline dw_loc_descr_ref
AT_loc (dw_attr_ref
);
3018 static void add_AT_loc_list (dw_die_ref
, enum dwarf_attribute
,
3020 static inline dw_loc_list_ref
AT_loc_list (dw_attr_ref
);
3021 static addr_table_entry
*add_addr_table_entry (void *, enum ate_kind
);
3022 static void remove_addr_table_entry (addr_table_entry
*);
3023 static void add_AT_addr (dw_die_ref
, enum dwarf_attribute
, rtx
, bool);
3024 static inline rtx
AT_addr (dw_attr_ref
);
3025 static void add_AT_lbl_id (dw_die_ref
, enum dwarf_attribute
, const char *);
3026 static void add_AT_lineptr (dw_die_ref
, enum dwarf_attribute
, const char *);
3027 static void add_AT_macptr (dw_die_ref
, enum dwarf_attribute
, const char *);
3028 static void add_AT_offset (dw_die_ref
, enum dwarf_attribute
,
3029 unsigned HOST_WIDE_INT
);
3030 static void add_AT_range_list (dw_die_ref
, enum dwarf_attribute
,
3031 unsigned long, bool);
3032 static inline const char *AT_lbl (dw_attr_ref
);
3033 static dw_attr_ref
get_AT (dw_die_ref
, enum dwarf_attribute
);
3034 static const char *get_AT_low_pc (dw_die_ref
);
3035 static const char *get_AT_hi_pc (dw_die_ref
);
3036 static const char *get_AT_string (dw_die_ref
, enum dwarf_attribute
);
3037 static int get_AT_flag (dw_die_ref
, enum dwarf_attribute
);
3038 static unsigned get_AT_unsigned (dw_die_ref
, enum dwarf_attribute
);
3039 static inline dw_die_ref
get_AT_ref (dw_die_ref
, enum dwarf_attribute
);
3040 static bool is_cxx (void);
3041 static bool is_fortran (void);
3042 static bool is_ada (void);
3043 static void remove_AT (dw_die_ref
, enum dwarf_attribute
);
3044 static void remove_child_TAG (dw_die_ref
, enum dwarf_tag
);
3045 static void add_child_die (dw_die_ref
, dw_die_ref
);
3046 static dw_die_ref
new_die (enum dwarf_tag
, dw_die_ref
, tree
);
3047 static dw_die_ref
lookup_type_die (tree
);
3048 static dw_die_ref
strip_naming_typedef (tree
, dw_die_ref
);
3049 static dw_die_ref
lookup_type_die_strip_naming_typedef (tree
);
3050 static void equate_type_number_to_die (tree
, dw_die_ref
);
3051 static hashval_t
decl_die_table_hash (const void *);
3052 static int decl_die_table_eq (const void *, const void *);
3053 static dw_die_ref
lookup_decl_die (tree
);
3054 static hashval_t
common_block_die_table_hash (const void *);
3055 static int common_block_die_table_eq (const void *, const void *);
3056 static hashval_t
decl_loc_table_hash (const void *);
3057 static int decl_loc_table_eq (const void *, const void *);
3058 static var_loc_list
*lookup_decl_loc (const_tree
);
3059 static void equate_decl_number_to_die (tree
, dw_die_ref
);
3060 static struct var_loc_node
*add_var_loc_to_decl (tree
, rtx
, const char *);
3061 static void print_spaces (FILE *);
3062 static void print_die (dw_die_ref
, FILE *);
3063 static dw_die_ref
push_new_compile_unit (dw_die_ref
, dw_die_ref
);
3064 static dw_die_ref
pop_compile_unit (dw_die_ref
);
3065 static void loc_checksum (dw_loc_descr_ref
, struct md5_ctx
*);
3066 static void attr_checksum (dw_attr_ref
, struct md5_ctx
*, int *);
3067 static void die_checksum (dw_die_ref
, struct md5_ctx
*, int *);
3068 static void checksum_sleb128 (HOST_WIDE_INT
, struct md5_ctx
*);
3069 static void checksum_uleb128 (unsigned HOST_WIDE_INT
, struct md5_ctx
*);
3070 static void loc_checksum_ordered (dw_loc_descr_ref
, struct md5_ctx
*);
3071 static void attr_checksum_ordered (enum dwarf_tag
, dw_attr_ref
,
3072 struct md5_ctx
*, int *);
3073 struct checksum_attributes
;
3074 static void collect_checksum_attributes (struct checksum_attributes
*, dw_die_ref
);
3075 static void die_checksum_ordered (dw_die_ref
, struct md5_ctx
*, int *);
3076 static void checksum_die_context (dw_die_ref
, struct md5_ctx
*);
3077 static void generate_type_signature (dw_die_ref
, comdat_type_node
*);
3078 static int same_loc_p (dw_loc_descr_ref
, dw_loc_descr_ref
, int *);
3079 static int same_dw_val_p (const dw_val_node
*, const dw_val_node
*, int *);
3080 static int same_attr_p (dw_attr_ref
, dw_attr_ref
, int *);
3081 static int same_die_p (dw_die_ref
, dw_die_ref
, int *);
3082 static int same_die_p_wrap (dw_die_ref
, dw_die_ref
);
3083 static void compute_section_prefix (dw_die_ref
);
3084 static int is_type_die (dw_die_ref
);
3085 static int is_comdat_die (dw_die_ref
);
3086 static int is_symbol_die (dw_die_ref
);
3087 static inline bool is_template_instantiation (dw_die_ref
);
3088 static void assign_symbol_names (dw_die_ref
);
3089 static void break_out_includes (dw_die_ref
);
3090 static int is_declaration_die (dw_die_ref
);
3091 static int should_move_die_to_comdat (dw_die_ref
);
3092 static dw_die_ref
clone_as_declaration (dw_die_ref
);
3093 static dw_die_ref
clone_die (dw_die_ref
);
3094 static dw_die_ref
clone_tree (dw_die_ref
);
3095 static dw_die_ref
copy_declaration_context (dw_die_ref
, dw_die_ref
);
3096 static void generate_skeleton_ancestor_tree (skeleton_chain_node
*);
3097 static void generate_skeleton_bottom_up (skeleton_chain_node
*);
3098 static dw_die_ref
generate_skeleton (dw_die_ref
);
3099 static dw_die_ref
remove_child_or_replace_with_skeleton (dw_die_ref
,
3102 static void break_out_comdat_types (dw_die_ref
);
3103 static void copy_decls_for_unworthy_types (dw_die_ref
);
3105 static void add_sibling_attributes (dw_die_ref
);
3106 static void output_location_lists (dw_die_ref
);
3107 static int constant_size (unsigned HOST_WIDE_INT
);
3108 static unsigned long size_of_die (dw_die_ref
);
3109 static void calc_die_sizes (dw_die_ref
);
3110 static void calc_base_type_die_sizes (void);
3111 static void mark_dies (dw_die_ref
);
3112 static void unmark_dies (dw_die_ref
);
3113 static void unmark_all_dies (dw_die_ref
);
3114 static unsigned long size_of_pubnames (vec
<pubname_entry
, va_gc
> *);
3115 static unsigned long size_of_aranges (void);
3116 static enum dwarf_form
value_format (dw_attr_ref
);
3117 static void output_value_format (dw_attr_ref
);
3118 static void output_abbrev_section (void);
3119 static void output_die_abbrevs (unsigned long, dw_die_ref
);
3120 static void output_die_symbol (dw_die_ref
);
3121 static void output_die (dw_die_ref
);
3122 static void output_compilation_unit_header (void);
3123 static void output_comp_unit (dw_die_ref
, int);
3124 static void output_comdat_type_unit (comdat_type_node
*);
3125 static const char *dwarf2_name (tree
, int);
3126 static void add_pubname (tree
, dw_die_ref
);
3127 static void add_enumerator_pubname (const char *, dw_die_ref
);
3128 static void add_pubname_string (const char *, dw_die_ref
);
3129 static void add_pubtype (tree
, dw_die_ref
);
3130 static void output_pubnames (vec
<pubname_entry
, va_gc
> *);
3131 static void output_aranges (unsigned long);
3132 static unsigned int add_ranges_num (int);
3133 static unsigned int add_ranges (const_tree
);
3134 static void add_ranges_by_labels (dw_die_ref
, const char *, const char *,
3136 static void output_ranges (void);
3137 static dw_line_info_table
*new_line_info_table (void);
3138 static void output_line_info (bool);
3139 static void output_file_names (void);
3140 static dw_die_ref
base_type_die (tree
);
3141 static int is_base_type (tree
);
3142 static dw_die_ref
subrange_type_die (tree
, tree
, tree
, dw_die_ref
);
3143 static dw_die_ref
modified_type_die (tree
, int, int, dw_die_ref
);
3144 static dw_die_ref
generic_parameter_die (tree
, tree
, bool, dw_die_ref
);
3145 static dw_die_ref
template_parameter_pack_die (tree
, tree
, dw_die_ref
);
3146 static int type_is_enum (const_tree
);
3147 static unsigned int dbx_reg_number (const_rtx
);
3148 static void add_loc_descr_op_piece (dw_loc_descr_ref
*, int);
3149 static dw_loc_descr_ref
reg_loc_descriptor (rtx
, enum var_init_status
);
3150 static dw_loc_descr_ref
one_reg_loc_descriptor (unsigned int,
3151 enum var_init_status
);
3152 static dw_loc_descr_ref
multiple_reg_loc_descriptor (rtx
, rtx
,
3153 enum var_init_status
);
3154 static dw_loc_descr_ref
based_loc_descr (rtx
, HOST_WIDE_INT
,
3155 enum var_init_status
);
3156 static int is_based_loc (const_rtx
);
3157 static int resolve_one_addr (rtx
*, void *);
3158 static dw_loc_descr_ref
concat_loc_descriptor (rtx
, rtx
,
3159 enum var_init_status
);
3160 static dw_loc_descr_ref
loc_descriptor (rtx
, enum machine_mode mode
,
3161 enum var_init_status
);
3162 static dw_loc_list_ref
loc_list_from_tree (tree
, int);
3163 static dw_loc_descr_ref
loc_descriptor_from_tree (tree
, int);
3164 static HOST_WIDE_INT
ceiling (HOST_WIDE_INT
, unsigned int);
3165 static tree
field_type (const_tree
);
3166 static unsigned int simple_type_align_in_bits (const_tree
);
3167 static unsigned int simple_decl_align_in_bits (const_tree
);
3168 static unsigned HOST_WIDE_INT
simple_type_size_in_bits (const_tree
);
3169 static HOST_WIDE_INT
field_byte_offset (const_tree
);
3170 static void add_AT_location_description (dw_die_ref
, enum dwarf_attribute
,
3172 static void add_data_member_location_attribute (dw_die_ref
, tree
);
3173 static bool add_const_value_attribute (dw_die_ref
, rtx
);
3174 static void insert_int (HOST_WIDE_INT
, unsigned, unsigned char *);
3175 static void insert_wide_int (const wide_int
&, unsigned char *, int);
3176 static void insert_float (const_rtx
, unsigned char *);
3177 static rtx
rtl_for_decl_location (tree
);
3178 static bool add_location_or_const_value_attribute (dw_die_ref
, tree
, bool,
3179 enum dwarf_attribute
);
3180 static bool tree_add_const_value_attribute (dw_die_ref
, tree
);
3181 static bool tree_add_const_value_attribute_for_decl (dw_die_ref
, tree
);
3182 static void add_name_attribute (dw_die_ref
, const char *);
3183 static void add_gnat_descriptive_type_attribute (dw_die_ref
, tree
, dw_die_ref
);
3184 static void add_comp_dir_attribute (dw_die_ref
);
3185 static void add_bound_info (dw_die_ref
, enum dwarf_attribute
, tree
);
3186 static void add_subscript_info (dw_die_ref
, tree
, bool);
3187 static void add_byte_size_attribute (dw_die_ref
, tree
);
3188 static void add_bit_offset_attribute (dw_die_ref
, tree
);
3189 static void add_bit_size_attribute (dw_die_ref
, tree
);
3190 static void add_prototyped_attribute (dw_die_ref
, tree
);
3191 static dw_die_ref
add_abstract_origin_attribute (dw_die_ref
, tree
);
3192 static void add_pure_or_virtual_attribute (dw_die_ref
, tree
);
3193 static void add_src_coords_attributes (dw_die_ref
, tree
);
3194 static void add_name_and_src_coords_attributes (dw_die_ref
, tree
);
3195 static void push_decl_scope (tree
);
3196 static void pop_decl_scope (void);
3197 static dw_die_ref
scope_die_for (tree
, dw_die_ref
);
3198 static inline int local_scope_p (dw_die_ref
);
3199 static inline int class_scope_p (dw_die_ref
);
3200 static inline int class_or_namespace_scope_p (dw_die_ref
);
3201 static void add_type_attribute (dw_die_ref
, tree
, int, int, dw_die_ref
);
3202 static void add_calling_convention_attribute (dw_die_ref
, tree
);
3203 static const char *type_tag (const_tree
);
3204 static tree
member_declared_type (const_tree
);
3206 static const char *decl_start_label (tree
);
3208 static void gen_array_type_die (tree
, dw_die_ref
);
3209 static void gen_descr_array_type_die (tree
, struct array_descr_info
*, dw_die_ref
);
3211 static void gen_entry_point_die (tree
, dw_die_ref
);
3213 static dw_die_ref
gen_enumeration_type_die (tree
, dw_die_ref
);
3214 static dw_die_ref
gen_formal_parameter_die (tree
, tree
, bool, dw_die_ref
);
3215 static dw_die_ref
gen_formal_parameter_pack_die (tree
, tree
, dw_die_ref
, tree
*);
3216 static void gen_unspecified_parameters_die (tree
, dw_die_ref
);
3217 static void gen_formal_types_die (tree
, dw_die_ref
);
3218 static void gen_subprogram_die (tree
, dw_die_ref
);
3219 static void gen_variable_die (tree
, tree
, dw_die_ref
);
3220 static void gen_const_die (tree
, dw_die_ref
);
3221 static void gen_label_die (tree
, dw_die_ref
);
3222 static void gen_lexical_block_die (tree
, dw_die_ref
, int);
3223 static void gen_inlined_subroutine_die (tree
, dw_die_ref
, int);
3224 static void gen_field_die (tree
, dw_die_ref
);
3225 static void gen_ptr_to_mbr_type_die (tree
, dw_die_ref
);
3226 static dw_die_ref
gen_compile_unit_die (const char *);
3227 static void gen_inheritance_die (tree
, tree
, dw_die_ref
);
3228 static void gen_member_die (tree
, dw_die_ref
);
3229 static void gen_struct_or_union_type_die (tree
, dw_die_ref
,
3230 enum debug_info_usage
);
3231 static void gen_subroutine_type_die (tree
, dw_die_ref
);
3232 static void gen_typedef_die (tree
, dw_die_ref
);
3233 static void gen_type_die (tree
, dw_die_ref
);
3234 static void gen_block_die (tree
, dw_die_ref
, int);
3235 static void decls_for_scope (tree
, dw_die_ref
, int);
3236 static inline int is_redundant_typedef (const_tree
);
3237 static bool is_naming_typedef_decl (const_tree
);
3238 static inline dw_die_ref
get_context_die (tree
);
3239 static void gen_namespace_die (tree
, dw_die_ref
);
3240 static dw_die_ref
gen_namelist_decl (tree
, dw_die_ref
, tree
);
3241 static dw_die_ref
gen_decl_die (tree
, tree
, dw_die_ref
);
3242 static dw_die_ref
force_decl_die (tree
);
3243 static dw_die_ref
force_type_die (tree
);
3244 static dw_die_ref
setup_namespace_context (tree
, dw_die_ref
);
3245 static dw_die_ref
declare_in_namespace (tree
, dw_die_ref
);
3246 static struct dwarf_file_data
* lookup_filename (const char *);
3247 static void retry_incomplete_types (void);
3248 static void gen_type_die_for_member (tree
, tree
, dw_die_ref
);
3249 static void gen_generic_params_dies (tree
);
3250 static void gen_tagged_type_die (tree
, dw_die_ref
, enum debug_info_usage
);
3251 static void gen_type_die_with_usage (tree
, dw_die_ref
, enum debug_info_usage
);
3252 static void splice_child_die (dw_die_ref
, dw_die_ref
);
3253 static int file_info_cmp (const void *, const void *);
3254 static dw_loc_list_ref
new_loc_list (dw_loc_descr_ref
, const char *,
3255 const char *, const char *);
3256 static void output_loc_list (dw_loc_list_ref
);
3257 static char *gen_internal_sym (const char *);
3258 static bool want_pubnames (void);
3260 static void prune_unmark_dies (dw_die_ref
);
3261 static void prune_unused_types_mark_generic_parms_dies (dw_die_ref
);
3262 static void prune_unused_types_mark (dw_die_ref
, int);
3263 static void prune_unused_types_walk (dw_die_ref
);
3264 static void prune_unused_types_walk_attribs (dw_die_ref
);
3265 static void prune_unused_types_prune (dw_die_ref
);
3266 static void prune_unused_types (void);
3267 static int maybe_emit_file (struct dwarf_file_data
*fd
);
3268 static inline const char *AT_vms_delta1 (dw_attr_ref
);
3269 static inline const char *AT_vms_delta2 (dw_attr_ref
);
3270 static inline void add_AT_vms_delta (dw_die_ref
, enum dwarf_attribute
,
3271 const char *, const char *);
3272 static void append_entry_to_tmpl_value_parm_die_table (dw_die_ref
, tree
);
3273 static void gen_remaining_tmpl_value_param_die_attribute (void);
3274 static bool generic_type_p (tree
);
3275 static void schedule_generic_params_dies_gen (tree t
);
3276 static void gen_scheduled_generic_parms_dies (void);
3278 static const char *comp_dir_string (void);
3280 static hashval_t
hash_loc_operands (dw_loc_descr_ref
, hashval_t
);
3282 /* enum for tracking thread-local variables whose address is really an offset
3283 relative to the TLS pointer, which will need link-time relocation, but will
3284 not need relocation by the DWARF consumer. */
3292 /* Return the operator to use for an address of a variable. For dtprel_true, we
3293 use DW_OP_const*. For regular variables, which need both link-time
3294 relocation and consumer-level relocation (e.g., to account for shared objects
3295 loaded at a random address), we use DW_OP_addr*. */
3297 static inline enum dwarf_location_atom
3298 dw_addr_op (enum dtprel_bool dtprel
)
3300 if (dtprel
== dtprel_true
)
3301 return (dwarf_split_debug_info
? DW_OP_GNU_const_index
3302 : (DWARF2_ADDR_SIZE
== 4 ? DW_OP_const4u
: DW_OP_const8u
));
3304 return dwarf_split_debug_info
? DW_OP_GNU_addr_index
: DW_OP_addr
;
3307 /* Return a pointer to a newly allocated address location description. If
3308 dwarf_split_debug_info is true, then record the address with the appropriate
3310 static inline dw_loc_descr_ref
3311 new_addr_loc_descr (rtx addr
, enum dtprel_bool dtprel
)
3313 dw_loc_descr_ref ref
= new_loc_descr (dw_addr_op (dtprel
), 0, 0);
3315 ref
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
3316 ref
->dw_loc_oprnd1
.v
.val_addr
= addr
;
3317 ref
->dtprel
= dtprel
;
3318 if (dwarf_split_debug_info
)
3319 ref
->dw_loc_oprnd1
.val_entry
3320 = add_addr_table_entry (addr
,
3321 dtprel
? ate_kind_rtx_dtprel
: ate_kind_rtx
);
3323 ref
->dw_loc_oprnd1
.val_entry
= NULL
;
3328 /* Section names used to hold DWARF debugging information. */
3330 #ifndef DEBUG_INFO_SECTION
3331 #define DEBUG_INFO_SECTION ".debug_info"
3333 #ifndef DEBUG_DWO_INFO_SECTION
3334 #define DEBUG_DWO_INFO_SECTION ".debug_info.dwo"
3336 #ifndef DEBUG_ABBREV_SECTION
3337 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
3339 #ifndef DEBUG_DWO_ABBREV_SECTION
3340 #define DEBUG_DWO_ABBREV_SECTION ".debug_abbrev.dwo"
3342 #ifndef DEBUG_ARANGES_SECTION
3343 #define DEBUG_ARANGES_SECTION ".debug_aranges"
3345 #ifndef DEBUG_ADDR_SECTION
3346 #define DEBUG_ADDR_SECTION ".debug_addr"
3348 #ifndef DEBUG_NORM_MACINFO_SECTION
3349 #define DEBUG_NORM_MACINFO_SECTION ".debug_macinfo"
3351 #ifndef DEBUG_DWO_MACINFO_SECTION
3352 #define DEBUG_DWO_MACINFO_SECTION ".debug_macinfo.dwo"
3354 #ifndef DEBUG_MACINFO_SECTION
3355 #define DEBUG_MACINFO_SECTION \
3356 (!dwarf_split_debug_info \
3357 ? (DEBUG_NORM_MACINFO_SECTION) : (DEBUG_DWO_MACINFO_SECTION))
3359 #ifndef DEBUG_NORM_MACRO_SECTION
3360 #define DEBUG_NORM_MACRO_SECTION ".debug_macro"
3362 #ifndef DEBUG_DWO_MACRO_SECTION
3363 #define DEBUG_DWO_MACRO_SECTION ".debug_macro.dwo"
3365 #ifndef DEBUG_MACRO_SECTION
3366 #define DEBUG_MACRO_SECTION \
3367 (!dwarf_split_debug_info \
3368 ? (DEBUG_NORM_MACRO_SECTION) : (DEBUG_DWO_MACRO_SECTION))
3370 #ifndef DEBUG_LINE_SECTION
3371 #define DEBUG_LINE_SECTION ".debug_line"
3373 #ifndef DEBUG_DWO_LINE_SECTION
3374 #define DEBUG_DWO_LINE_SECTION ".debug_line.dwo"
3376 #ifndef DEBUG_LOC_SECTION
3377 #define DEBUG_LOC_SECTION ".debug_loc"
3379 #ifndef DEBUG_DWO_LOC_SECTION
3380 #define DEBUG_DWO_LOC_SECTION ".debug_loc.dwo"
3382 #ifndef DEBUG_PUBNAMES_SECTION
3383 #define DEBUG_PUBNAMES_SECTION \
3384 ((debug_generate_pub_sections == 2) \
3385 ? ".debug_gnu_pubnames" : ".debug_pubnames")
3387 #ifndef DEBUG_PUBTYPES_SECTION
3388 #define DEBUG_PUBTYPES_SECTION \
3389 ((debug_generate_pub_sections == 2) \
3390 ? ".debug_gnu_pubtypes" : ".debug_pubtypes")
3392 #define DEBUG_NORM_STR_OFFSETS_SECTION ".debug_str_offsets"
3393 #define DEBUG_DWO_STR_OFFSETS_SECTION ".debug_str_offsets.dwo"
3394 #ifndef DEBUG_STR_OFFSETS_SECTION
3395 #define DEBUG_STR_OFFSETS_SECTION \
3396 (!dwarf_split_debug_info \
3397 ? (DEBUG_NORM_STR_OFFSETS_SECTION) : (DEBUG_DWO_STR_OFFSETS_SECTION))
3399 #ifndef DEBUG_STR_DWO_SECTION
3400 #define DEBUG_STR_DWO_SECTION ".debug_str.dwo"
3402 #ifndef DEBUG_STR_SECTION
3403 #define DEBUG_STR_SECTION ".debug_str"
3405 #ifndef DEBUG_RANGES_SECTION
3406 #define DEBUG_RANGES_SECTION ".debug_ranges"
3409 /* Standard ELF section names for compiled code and data. */
3410 #ifndef TEXT_SECTION_NAME
3411 #define TEXT_SECTION_NAME ".text"
3414 /* Section flags for .debug_macinfo/.debug_macro section. */
3415 #define DEBUG_MACRO_SECTION_FLAGS \
3416 (dwarf_split_debug_info ? SECTION_DEBUG | SECTION_EXCLUDE : SECTION_DEBUG)
3418 /* Section flags for .debug_str section. */
3419 #define DEBUG_STR_SECTION_FLAGS \
3420 (HAVE_GAS_SHF_MERGE && flag_merge_debug_strings \
3421 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
3424 /* Section flags for .debug_str.dwo section. */
3425 #define DEBUG_STR_DWO_SECTION_FLAGS (SECTION_DEBUG | SECTION_EXCLUDE)
3427 /* Labels we insert at beginning sections we can reference instead of
3428 the section names themselves. */
3430 #ifndef TEXT_SECTION_LABEL
3431 #define TEXT_SECTION_LABEL "Ltext"
3433 #ifndef COLD_TEXT_SECTION_LABEL
3434 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
3436 #ifndef DEBUG_LINE_SECTION_LABEL
3437 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
3439 #ifndef DEBUG_SKELETON_LINE_SECTION_LABEL
3440 #define DEBUG_SKELETON_LINE_SECTION_LABEL "Lskeleton_debug_line"
3442 #ifndef DEBUG_INFO_SECTION_LABEL
3443 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
3445 #ifndef DEBUG_SKELETON_INFO_SECTION_LABEL
3446 #define DEBUG_SKELETON_INFO_SECTION_LABEL "Lskeleton_debug_info"
3448 #ifndef DEBUG_ABBREV_SECTION_LABEL
3449 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
3451 #ifndef DEBUG_SKELETON_ABBREV_SECTION_LABEL
3452 #define DEBUG_SKELETON_ABBREV_SECTION_LABEL "Lskeleton_debug_abbrev"
3454 #ifndef DEBUG_ADDR_SECTION_LABEL
3455 #define DEBUG_ADDR_SECTION_LABEL "Ldebug_addr"
3457 #ifndef DEBUG_LOC_SECTION_LABEL
3458 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
3460 #ifndef DEBUG_RANGES_SECTION_LABEL
3461 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
3463 #ifndef DEBUG_MACINFO_SECTION_LABEL
3464 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
3466 #ifndef DEBUG_MACRO_SECTION_LABEL
3467 #define DEBUG_MACRO_SECTION_LABEL "Ldebug_macro"
3469 #define SKELETON_COMP_DIE_ABBREV 1
3470 #define SKELETON_TYPE_DIE_ABBREV 2
3472 /* Definitions of defaults for formats and names of various special
3473 (artificial) labels which may be generated within this file (when the -g
3474 options is used and DWARF2_DEBUGGING_INFO is in effect.
3475 If necessary, these may be overridden from within the tm.h file, but
3476 typically, overriding these defaults is unnecessary. */
3478 static char text_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3479 static char text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3480 static char cold_text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3481 static char cold_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3482 static char abbrev_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3483 static char debug_info_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3484 static char debug_skeleton_info_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3485 static char debug_skeleton_abbrev_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3486 static char debug_line_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3487 static char debug_addr_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3488 static char debug_skeleton_line_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3489 static char macinfo_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3490 static char loc_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3491 static char ranges_section_label
[2 * MAX_ARTIFICIAL_LABEL_BYTES
];
3493 #ifndef TEXT_END_LABEL
3494 #define TEXT_END_LABEL "Letext"
3496 #ifndef COLD_END_LABEL
3497 #define COLD_END_LABEL "Letext_cold"
3499 #ifndef BLOCK_BEGIN_LABEL
3500 #define BLOCK_BEGIN_LABEL "LBB"
3502 #ifndef BLOCK_END_LABEL
3503 #define BLOCK_END_LABEL "LBE"
3505 #ifndef LINE_CODE_LABEL
3506 #define LINE_CODE_LABEL "LM"
3510 /* Return the root of the DIE's built for the current compilation unit. */
3512 comp_unit_die (void)
3514 if (!single_comp_unit_die
)
3515 single_comp_unit_die
= gen_compile_unit_die (NULL
);
3516 return single_comp_unit_die
;
3519 /* We allow a language front-end to designate a function that is to be
3520 called to "demangle" any name before it is put into a DIE. */
3522 static const char *(*demangle_name_func
) (const char *);
3525 dwarf2out_set_demangle_name_func (const char *(*func
) (const char *))
3527 demangle_name_func
= func
;
3530 /* Test if rtl node points to a pseudo register. */
3533 is_pseudo_reg (const_rtx rtl
)
3535 return ((REG_P (rtl
) && REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
3536 || (GET_CODE (rtl
) == SUBREG
3537 && REGNO (SUBREG_REG (rtl
)) >= FIRST_PSEUDO_REGISTER
));
3540 /* Return a reference to a type, with its const and volatile qualifiers
3544 type_main_variant (tree type
)
3546 type
= TYPE_MAIN_VARIANT (type
);
3548 /* ??? There really should be only one main variant among any group of
3549 variants of a given type (and all of the MAIN_VARIANT values for all
3550 members of the group should point to that one type) but sometimes the C
3551 front-end messes this up for array types, so we work around that bug
3553 if (TREE_CODE (type
) == ARRAY_TYPE
)
3554 while (type
!= TYPE_MAIN_VARIANT (type
))
3555 type
= TYPE_MAIN_VARIANT (type
);
3560 /* Return nonzero if the given type node represents a tagged type. */
3563 is_tagged_type (const_tree type
)
3565 enum tree_code code
= TREE_CODE (type
);
3567 return (code
== RECORD_TYPE
|| code
== UNION_TYPE
3568 || code
== QUAL_UNION_TYPE
|| code
== ENUMERAL_TYPE
);
3571 /* Set label to debug_info_section_label + die_offset of a DIE reference. */
3574 get_ref_die_offset_label (char *label
, dw_die_ref ref
)
3576 sprintf (label
, "%s+%ld", debug_info_section_label
, ref
->die_offset
);
3579 /* Return die_offset of a DIE reference to a base type. */
3581 static unsigned long int
3582 get_base_type_offset (dw_die_ref ref
)
3584 if (ref
->die_offset
)
3585 return ref
->die_offset
;
3586 if (comp_unit_die ()->die_abbrev
)
3588 calc_base_type_die_sizes ();
3589 gcc_assert (ref
->die_offset
);
3591 return ref
->die_offset
;
3594 /* Return die_offset of a DIE reference other than base type. */
3596 static unsigned long int
3597 get_ref_die_offset (dw_die_ref ref
)
3599 gcc_assert (ref
->die_offset
);
3600 return ref
->die_offset
;
3603 /* Convert a DIE tag into its string name. */
3606 dwarf_tag_name (unsigned int tag
)
3608 const char *name
= get_DW_TAG_name (tag
);
3613 return "DW_TAG_<unknown>";
3616 /* Convert a DWARF attribute code into its string name. */
3619 dwarf_attr_name (unsigned int attr
)
3625 #if VMS_DEBUGGING_INFO
3626 case DW_AT_HP_prologue
:
3627 return "DW_AT_HP_prologue";
3629 case DW_AT_MIPS_loop_unroll_factor
:
3630 return "DW_AT_MIPS_loop_unroll_factor";
3633 #if VMS_DEBUGGING_INFO
3634 case DW_AT_HP_epilogue
:
3635 return "DW_AT_HP_epilogue";
3637 case DW_AT_MIPS_stride
:
3638 return "DW_AT_MIPS_stride";
3642 name
= get_DW_AT_name (attr
);
3647 return "DW_AT_<unknown>";
3650 /* Convert a DWARF value form code into its string name. */
3653 dwarf_form_name (unsigned int form
)
3655 const char *name
= get_DW_FORM_name (form
);
3660 return "DW_FORM_<unknown>";
3663 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
3664 instance of an inlined instance of a decl which is local to an inline
3665 function, so we have to trace all of the way back through the origin chain
3666 to find out what sort of node actually served as the original seed for the
3670 decl_ultimate_origin (const_tree decl
)
3672 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl
), TS_DECL_COMMON
))
3675 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
3676 nodes in the function to point to themselves; ignore that if
3677 we're trying to output the abstract instance of this function. */
3678 if (DECL_ABSTRACT (decl
) && DECL_ABSTRACT_ORIGIN (decl
) == decl
)
3681 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
3682 most distant ancestor, this should never happen. */
3683 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl
)));
3685 return DECL_ABSTRACT_ORIGIN (decl
);
3688 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
3689 of a virtual function may refer to a base class, so we check the 'this'
3693 decl_class_context (tree decl
)
3695 tree context
= NULL_TREE
;
3697 if (TREE_CODE (decl
) != FUNCTION_DECL
|| ! DECL_VINDEX (decl
))
3698 context
= DECL_CONTEXT (decl
);
3700 context
= TYPE_MAIN_VARIANT
3701 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
3703 if (context
&& !TYPE_P (context
))
3704 context
= NULL_TREE
;
3709 /* Add an attribute/value pair to a DIE. */
3712 add_dwarf_attr (dw_die_ref die
, dw_attr_ref attr
)
3714 /* Maybe this should be an assert? */
3718 vec_safe_reserve (die
->die_attr
, 1);
3719 vec_safe_push (die
->die_attr
, *attr
);
3722 static inline enum dw_val_class
3723 AT_class (dw_attr_ref a
)
3725 return a
->dw_attr_val
.val_class
;
3728 /* Return the index for any attribute that will be referenced with a
3729 DW_FORM_GNU_addr_index or DW_FORM_GNU_str_index. String indices
3730 are stored in dw_attr_val.v.val_str for reference counting
3733 static inline unsigned int
3734 AT_index (dw_attr_ref a
)
3736 if (AT_class (a
) == dw_val_class_str
)
3737 return a
->dw_attr_val
.v
.val_str
->index
;
3738 else if (a
->dw_attr_val
.val_entry
!= NULL
)
3739 return a
->dw_attr_val
.val_entry
->index
;
3743 /* Add a flag value attribute to a DIE. */
3746 add_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int flag
)
3750 attr
.dw_attr
= attr_kind
;
3751 attr
.dw_attr_val
.val_class
= dw_val_class_flag
;
3752 attr
.dw_attr_val
.val_entry
= NULL
;
3753 attr
.dw_attr_val
.v
.val_flag
= flag
;
3754 add_dwarf_attr (die
, &attr
);
3757 static inline unsigned
3758 AT_flag (dw_attr_ref a
)
3760 gcc_assert (a
&& AT_class (a
) == dw_val_class_flag
);
3761 return a
->dw_attr_val
.v
.val_flag
;
3764 /* Add a signed integer attribute value to a DIE. */
3767 add_AT_int (dw_die_ref die
, enum dwarf_attribute attr_kind
, HOST_WIDE_INT int_val
)
3771 attr
.dw_attr
= attr_kind
;
3772 attr
.dw_attr_val
.val_class
= dw_val_class_const
;
3773 attr
.dw_attr_val
.val_entry
= NULL
;
3774 attr
.dw_attr_val
.v
.val_int
= int_val
;
3775 add_dwarf_attr (die
, &attr
);
3778 static inline HOST_WIDE_INT
3779 AT_int (dw_attr_ref a
)
3781 gcc_assert (a
&& AT_class (a
) == dw_val_class_const
);
3782 return a
->dw_attr_val
.v
.val_int
;
3785 /* Add an unsigned integer attribute value to a DIE. */
3788 add_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
,
3789 unsigned HOST_WIDE_INT unsigned_val
)
3793 attr
.dw_attr
= attr_kind
;
3794 attr
.dw_attr_val
.val_class
= dw_val_class_unsigned_const
;
3795 attr
.dw_attr_val
.val_entry
= NULL
;
3796 attr
.dw_attr_val
.v
.val_unsigned
= unsigned_val
;
3797 add_dwarf_attr (die
, &attr
);
3800 static inline unsigned HOST_WIDE_INT
3801 AT_unsigned (dw_attr_ref a
)
3803 gcc_assert (a
&& AT_class (a
) == dw_val_class_unsigned_const
);
3804 return a
->dw_attr_val
.v
.val_unsigned
;
3807 /* Add an unsigned wide integer attribute value to a DIE. */
3810 add_AT_wide (dw_die_ref die
, enum dwarf_attribute attr_kind
,
3815 attr
.dw_attr
= attr_kind
;
3816 attr
.dw_attr_val
.val_class
= dw_val_class_wide_int
;
3817 attr
.dw_attr_val
.v
.val_wide
= ggc_cleared_alloc
<wide_int
> ();
3818 *attr
.dw_attr_val
.v
.val_wide
= w
;
3819 add_dwarf_attr (die
, &attr
);
3822 /* Add an unsigned double integer attribute value to a DIE. */
3825 add_AT_double (dw_die_ref die
, enum dwarf_attribute attr_kind
,
3826 HOST_WIDE_INT high
, unsigned HOST_WIDE_INT low
)
3830 attr
.dw_attr
= attr_kind
;
3831 attr
.dw_attr_val
.val_class
= dw_val_class_const_double
;
3832 attr
.dw_attr_val
.val_entry
= NULL
;
3833 attr
.dw_attr_val
.v
.val_double
.high
= high
;
3834 attr
.dw_attr_val
.v
.val_double
.low
= low
;
3835 add_dwarf_attr (die
, &attr
);
3838 /* Add a floating point attribute value to a DIE and return it. */
3841 add_AT_vec (dw_die_ref die
, enum dwarf_attribute attr_kind
,
3842 unsigned int length
, unsigned int elt_size
, unsigned char *array
)
3846 attr
.dw_attr
= attr_kind
;
3847 attr
.dw_attr_val
.val_class
= dw_val_class_vec
;
3848 attr
.dw_attr_val
.val_entry
= NULL
;
3849 attr
.dw_attr_val
.v
.val_vec
.length
= length
;
3850 attr
.dw_attr_val
.v
.val_vec
.elt_size
= elt_size
;
3851 attr
.dw_attr_val
.v
.val_vec
.array
= array
;
3852 add_dwarf_attr (die
, &attr
);
3855 /* Add an 8-byte data attribute value to a DIE. */
3858 add_AT_data8 (dw_die_ref die
, enum dwarf_attribute attr_kind
,
3859 unsigned char data8
[8])
3863 attr
.dw_attr
= attr_kind
;
3864 attr
.dw_attr_val
.val_class
= dw_val_class_data8
;
3865 attr
.dw_attr_val
.val_entry
= NULL
;
3866 memcpy (attr
.dw_attr_val
.v
.val_data8
, data8
, 8);
3867 add_dwarf_attr (die
, &attr
);
3870 /* Add DW_AT_low_pc and DW_AT_high_pc to a DIE. When using
3871 dwarf_split_debug_info, address attributes in dies destined for the
3872 final executable have force_direct set to avoid using indexed
3876 add_AT_low_high_pc (dw_die_ref die
, const char *lbl_low
, const char *lbl_high
,
3882 lbl_id
= xstrdup (lbl_low
);
3883 attr
.dw_attr
= DW_AT_low_pc
;
3884 attr
.dw_attr_val
.val_class
= dw_val_class_lbl_id
;
3885 attr
.dw_attr_val
.v
.val_lbl_id
= lbl_id
;
3886 if (dwarf_split_debug_info
&& !force_direct
)
3887 attr
.dw_attr_val
.val_entry
3888 = add_addr_table_entry (lbl_id
, ate_kind_label
);
3890 attr
.dw_attr_val
.val_entry
= NULL
;
3891 add_dwarf_attr (die
, &attr
);
3893 attr
.dw_attr
= DW_AT_high_pc
;
3894 if (dwarf_version
< 4)
3895 attr
.dw_attr_val
.val_class
= dw_val_class_lbl_id
;
3897 attr
.dw_attr_val
.val_class
= dw_val_class_high_pc
;
3898 lbl_id
= xstrdup (lbl_high
);
3899 attr
.dw_attr_val
.v
.val_lbl_id
= lbl_id
;
3900 if (attr
.dw_attr_val
.val_class
== dw_val_class_lbl_id
3901 && dwarf_split_debug_info
&& !force_direct
)
3902 attr
.dw_attr_val
.val_entry
3903 = add_addr_table_entry (lbl_id
, ate_kind_label
);
3905 attr
.dw_attr_val
.val_entry
= NULL
;
3906 add_dwarf_attr (die
, &attr
);
3909 /* Hash and equality functions for debug_str_hash. */
3912 debug_str_do_hash (const void *x
)
3914 return htab_hash_string (((const struct indirect_string_node
*)x
)->str
);
3918 debug_str_eq (const void *x1
, const void *x2
)
3920 return strcmp ((((const struct indirect_string_node
*)x1
)->str
),
3921 (const char *)x2
) == 0;
3924 /* Add STR to the given string hash table. */
3926 static struct indirect_string_node
*
3927 find_AT_string_in_table (const char *str
, htab_t table
)
3929 struct indirect_string_node
*node
;
3932 slot
= htab_find_slot_with_hash (table
, str
,
3933 htab_hash_string (str
), INSERT
);
3936 node
= ggc_cleared_alloc
<indirect_string_node
> ();
3937 node
->str
= ggc_strdup (str
);
3941 node
= (struct indirect_string_node
*) *slot
;
3947 /* Add STR to the indirect string hash table. */
3949 static struct indirect_string_node
*
3950 find_AT_string (const char *str
)
3952 if (! debug_str_hash
)
3953 debug_str_hash
= htab_create_ggc (10, debug_str_do_hash
,
3954 debug_str_eq
, NULL
);
3956 return find_AT_string_in_table (str
, debug_str_hash
);
3959 /* Add a string attribute value to a DIE. */
3962 add_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *str
)
3965 struct indirect_string_node
*node
;
3967 node
= find_AT_string (str
);
3969 attr
.dw_attr
= attr_kind
;
3970 attr
.dw_attr_val
.val_class
= dw_val_class_str
;
3971 attr
.dw_attr_val
.val_entry
= NULL
;
3972 attr
.dw_attr_val
.v
.val_str
= node
;
3973 add_dwarf_attr (die
, &attr
);
3976 static inline const char *
3977 AT_string (dw_attr_ref a
)
3979 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
3980 return a
->dw_attr_val
.v
.val_str
->str
;
3983 /* Call this function directly to bypass AT_string_form's logic to put
3984 the string inline in the die. */
3987 set_indirect_string (struct indirect_string_node
*node
)
3990 /* Already indirect is a no op. */
3991 if (node
->form
== DW_FORM_strp
|| node
->form
== DW_FORM_GNU_str_index
)
3993 gcc_assert (node
->label
);
3996 ASM_GENERATE_INTERNAL_LABEL (label
, "LASF", dw2_string_counter
);
3997 ++dw2_string_counter
;
3998 node
->label
= xstrdup (label
);
4000 if (!dwarf_split_debug_info
)
4002 node
->form
= DW_FORM_strp
;
4003 node
->index
= NOT_INDEXED
;
4007 node
->form
= DW_FORM_GNU_str_index
;
4008 node
->index
= NO_INDEX_ASSIGNED
;
4012 /* Find out whether a string should be output inline in DIE
4013 or out-of-line in .debug_str section. */
4015 static enum dwarf_form
4016 find_string_form (struct indirect_string_node
*node
)
4023 len
= strlen (node
->str
) + 1;
4025 /* If the string is shorter or equal to the size of the reference, it is
4026 always better to put it inline. */
4027 if (len
<= DWARF_OFFSET_SIZE
|| node
->refcount
== 0)
4028 return node
->form
= DW_FORM_string
;
4030 /* If we cannot expect the linker to merge strings in .debug_str
4031 section, only put it into .debug_str if it is worth even in this
4033 if (DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
4034 || ((debug_str_section
->common
.flags
& SECTION_MERGE
) == 0
4035 && (len
- DWARF_OFFSET_SIZE
) * node
->refcount
<= len
))
4036 return node
->form
= DW_FORM_string
;
4038 set_indirect_string (node
);
4043 /* Find out whether the string referenced from the attribute should be
4044 output inline in DIE or out-of-line in .debug_str section. */
4046 static enum dwarf_form
4047 AT_string_form (dw_attr_ref a
)
4049 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
4050 return find_string_form (a
->dw_attr_val
.v
.val_str
);
4053 /* Add a DIE reference attribute value to a DIE. */
4056 add_AT_die_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_die_ref targ_die
)
4060 #ifdef ENABLE_CHECKING
4061 gcc_assert (targ_die
!= NULL
);
4063 /* With LTO we can end up trying to reference something we didn't create
4064 a DIE for. Avoid crashing later on a NULL referenced DIE. */
4065 if (targ_die
== NULL
)
4069 attr
.dw_attr
= attr_kind
;
4070 attr
.dw_attr_val
.val_class
= dw_val_class_die_ref
;
4071 attr
.dw_attr_val
.val_entry
= NULL
;
4072 attr
.dw_attr_val
.v
.val_die_ref
.die
= targ_die
;
4073 attr
.dw_attr_val
.v
.val_die_ref
.external
= 0;
4074 add_dwarf_attr (die
, &attr
);
4077 /* Change DIE reference REF to point to NEW_DIE instead. */
4080 change_AT_die_ref (dw_attr_ref ref
, dw_die_ref new_die
)
4082 gcc_assert (ref
->dw_attr_val
.val_class
== dw_val_class_die_ref
);
4083 ref
->dw_attr_val
.v
.val_die_ref
.die
= new_die
;
4084 ref
->dw_attr_val
.v
.val_die_ref
.external
= 0;
4087 /* Add an AT_specification attribute to a DIE, and also make the back
4088 pointer from the specification to the definition. */
4091 add_AT_specification (dw_die_ref die
, dw_die_ref targ_die
)
4093 add_AT_die_ref (die
, DW_AT_specification
, targ_die
);
4094 gcc_assert (!targ_die
->die_definition
);
4095 targ_die
->die_definition
= die
;
4098 static inline dw_die_ref
4099 AT_ref (dw_attr_ref a
)
4101 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
4102 return a
->dw_attr_val
.v
.val_die_ref
.die
;
4106 AT_ref_external (dw_attr_ref a
)
4108 if (a
&& AT_class (a
) == dw_val_class_die_ref
)
4109 return a
->dw_attr_val
.v
.val_die_ref
.external
;
4115 set_AT_ref_external (dw_attr_ref a
, int i
)
4117 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
4118 a
->dw_attr_val
.v
.val_die_ref
.external
= i
;
4121 /* Add an FDE reference attribute value to a DIE. */
4124 add_AT_fde_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int targ_fde
)
4128 attr
.dw_attr
= attr_kind
;
4129 attr
.dw_attr_val
.val_class
= dw_val_class_fde_ref
;
4130 attr
.dw_attr_val
.val_entry
= NULL
;
4131 attr
.dw_attr_val
.v
.val_fde_index
= targ_fde
;
4132 add_dwarf_attr (die
, &attr
);
4135 /* Add a location description attribute value to a DIE. */
4138 add_AT_loc (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_descr_ref loc
)
4142 attr
.dw_attr
= attr_kind
;
4143 attr
.dw_attr_val
.val_class
= dw_val_class_loc
;
4144 attr
.dw_attr_val
.val_entry
= NULL
;
4145 attr
.dw_attr_val
.v
.val_loc
= loc
;
4146 add_dwarf_attr (die
, &attr
);
4149 static inline dw_loc_descr_ref
4150 AT_loc (dw_attr_ref a
)
4152 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc
);
4153 return a
->dw_attr_val
.v
.val_loc
;
4157 add_AT_loc_list (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_list_ref loc_list
)
4161 attr
.dw_attr
= attr_kind
;
4162 attr
.dw_attr_val
.val_class
= dw_val_class_loc_list
;
4163 attr
.dw_attr_val
.val_entry
= NULL
;
4164 attr
.dw_attr_val
.v
.val_loc_list
= loc_list
;
4165 add_dwarf_attr (die
, &attr
);
4166 have_location_lists
= true;
4169 static inline dw_loc_list_ref
4170 AT_loc_list (dw_attr_ref a
)
4172 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc_list
);
4173 return a
->dw_attr_val
.v
.val_loc_list
;
4176 static inline dw_loc_list_ref
*
4177 AT_loc_list_ptr (dw_attr_ref a
)
4179 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc_list
);
4180 return &a
->dw_attr_val
.v
.val_loc_list
;
4183 /* Table of entries into the .debug_addr section. */
4185 static GTY ((param_is (addr_table_entry
))) htab_t addr_index_table
;
4187 /* Hash an address_table_entry. */
4190 addr_table_entry_do_hash (const void *x
)
4192 const addr_table_entry
*a
= (const addr_table_entry
*) x
;
4196 return iterative_hash_rtx (a
->addr
.rtl
, 0);
4197 case ate_kind_rtx_dtprel
:
4198 return iterative_hash_rtx (a
->addr
.rtl
, 1);
4199 case ate_kind_label
:
4200 return htab_hash_string (a
->addr
.label
);
4206 /* Determine equality for two address_table_entries. */
4209 addr_table_entry_eq (const void *x1
, const void *x2
)
4211 const addr_table_entry
*a1
= (const addr_table_entry
*) x1
;
4212 const addr_table_entry
*a2
= (const addr_table_entry
*) x2
;
4214 if (a1
->kind
!= a2
->kind
)
4219 case ate_kind_rtx_dtprel
:
4220 return rtx_equal_p (a1
->addr
.rtl
, a2
->addr
.rtl
);
4221 case ate_kind_label
:
4222 return strcmp (a1
->addr
.label
, a2
->addr
.label
) == 0;
4228 /* Initialize an addr_table_entry. */
4231 init_addr_table_entry (addr_table_entry
*e
, enum ate_kind kind
, void *addr
)
4237 case ate_kind_rtx_dtprel
:
4238 e
->addr
.rtl
= (rtx
) addr
;
4240 case ate_kind_label
:
4241 e
->addr
.label
= (char *) addr
;
4245 e
->index
= NO_INDEX_ASSIGNED
;
4248 /* Add attr to the address table entry to the table. Defer setting an
4249 index until output time. */
4251 static addr_table_entry
*
4252 add_addr_table_entry (void *addr
, enum ate_kind kind
)
4254 addr_table_entry
*node
;
4255 addr_table_entry finder
;
4258 gcc_assert (dwarf_split_debug_info
);
4259 if (! addr_index_table
)
4260 addr_index_table
= htab_create_ggc (10, addr_table_entry_do_hash
,
4261 addr_table_entry_eq
, NULL
);
4262 init_addr_table_entry (&finder
, kind
, addr
);
4263 slot
= htab_find_slot (addr_index_table
, &finder
, INSERT
);
4265 if (*slot
== HTAB_EMPTY_ENTRY
)
4267 node
= ggc_cleared_alloc
<addr_table_entry
> ();
4268 init_addr_table_entry (node
, kind
, addr
);
4272 node
= (addr_table_entry
*) *slot
;
4278 /* Remove an entry from the addr table by decrementing its refcount.
4279 Strictly, decrementing the refcount would be enough, but the
4280 assertion that the entry is actually in the table has found
4284 remove_addr_table_entry (addr_table_entry
*entry
)
4286 addr_table_entry
*node
;
4288 gcc_assert (dwarf_split_debug_info
&& addr_index_table
);
4289 node
= (addr_table_entry
*) htab_find (addr_index_table
, entry
);
4290 /* After an index is assigned, the table is frozen. */
4291 gcc_assert (node
->refcount
> 0 && node
->index
== NO_INDEX_ASSIGNED
);
4295 /* Given a location list, remove all addresses it refers to from the
4299 remove_loc_list_addr_table_entries (dw_loc_descr_ref descr
)
4301 for (; descr
; descr
= descr
->dw_loc_next
)
4302 if (descr
->dw_loc_oprnd1
.val_entry
!= NULL
)
4304 gcc_assert (descr
->dw_loc_oprnd1
.val_entry
->index
== NO_INDEX_ASSIGNED
);
4305 remove_addr_table_entry (descr
->dw_loc_oprnd1
.val_entry
);
4309 /* A helper function for dwarf2out_finish called through
4310 htab_traverse. Assign an addr_table_entry its index. All entries
4311 must be collected into the table when this function is called,
4312 because the indexing code relies on htab_traverse to traverse nodes
4313 in the same order for each run. */
4316 index_addr_table_entry (void **h
, void *v
)
4318 addr_table_entry
*node
= (addr_table_entry
*) *h
;
4319 unsigned int *index
= (unsigned int *) v
;
4321 /* Don't index unreferenced nodes. */
4322 if (node
->refcount
== 0)
4325 gcc_assert (node
->index
== NO_INDEX_ASSIGNED
);
4326 node
->index
= *index
;
4332 /* Add an address constant attribute value to a DIE. When using
4333 dwarf_split_debug_info, address attributes in dies destined for the
4334 final executable should be direct references--setting the parameter
4335 force_direct ensures this behavior. */
4338 add_AT_addr (dw_die_ref die
, enum dwarf_attribute attr_kind
, rtx addr
,
4343 attr
.dw_attr
= attr_kind
;
4344 attr
.dw_attr_val
.val_class
= dw_val_class_addr
;
4345 attr
.dw_attr_val
.v
.val_addr
= addr
;
4346 if (dwarf_split_debug_info
&& !force_direct
)
4347 attr
.dw_attr_val
.val_entry
= add_addr_table_entry (addr
, ate_kind_rtx
);
4349 attr
.dw_attr_val
.val_entry
= NULL
;
4350 add_dwarf_attr (die
, &attr
);
4353 /* Get the RTX from to an address DIE attribute. */
4356 AT_addr (dw_attr_ref a
)
4358 gcc_assert (a
&& AT_class (a
) == dw_val_class_addr
);
4359 return a
->dw_attr_val
.v
.val_addr
;
4362 /* Add a file attribute value to a DIE. */
4365 add_AT_file (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4366 struct dwarf_file_data
*fd
)
4370 attr
.dw_attr
= attr_kind
;
4371 attr
.dw_attr_val
.val_class
= dw_val_class_file
;
4372 attr
.dw_attr_val
.val_entry
= NULL
;
4373 attr
.dw_attr_val
.v
.val_file
= fd
;
4374 add_dwarf_attr (die
, &attr
);
4377 /* Get the dwarf_file_data from a file DIE attribute. */
4379 static inline struct dwarf_file_data
*
4380 AT_file (dw_attr_ref a
)
4382 gcc_assert (a
&& AT_class (a
) == dw_val_class_file
);
4383 return a
->dw_attr_val
.v
.val_file
;
4386 /* Add a vms delta attribute value to a DIE. */
4389 add_AT_vms_delta (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4390 const char *lbl1
, const char *lbl2
)
4394 attr
.dw_attr
= attr_kind
;
4395 attr
.dw_attr_val
.val_class
= dw_val_class_vms_delta
;
4396 attr
.dw_attr_val
.val_entry
= NULL
;
4397 attr
.dw_attr_val
.v
.val_vms_delta
.lbl1
= xstrdup (lbl1
);
4398 attr
.dw_attr_val
.v
.val_vms_delta
.lbl2
= xstrdup (lbl2
);
4399 add_dwarf_attr (die
, &attr
);
4402 /* Add a label identifier attribute value to a DIE. */
4405 add_AT_lbl_id (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4410 attr
.dw_attr
= attr_kind
;
4411 attr
.dw_attr_val
.val_class
= dw_val_class_lbl_id
;
4412 attr
.dw_attr_val
.val_entry
= NULL
;
4413 attr
.dw_attr_val
.v
.val_lbl_id
= xstrdup (lbl_id
);
4414 if (dwarf_split_debug_info
)
4415 attr
.dw_attr_val
.val_entry
4416 = add_addr_table_entry (attr
.dw_attr_val
.v
.val_lbl_id
,
4418 add_dwarf_attr (die
, &attr
);
4421 /* Add a section offset attribute value to a DIE, an offset into the
4422 debug_line section. */
4425 add_AT_lineptr (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4430 attr
.dw_attr
= attr_kind
;
4431 attr
.dw_attr_val
.val_class
= dw_val_class_lineptr
;
4432 attr
.dw_attr_val
.val_entry
= NULL
;
4433 attr
.dw_attr_val
.v
.val_lbl_id
= xstrdup (label
);
4434 add_dwarf_attr (die
, &attr
);
4437 /* Add a section offset attribute value to a DIE, an offset into the
4438 debug_macinfo section. */
4441 add_AT_macptr (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4446 attr
.dw_attr
= attr_kind
;
4447 attr
.dw_attr_val
.val_class
= dw_val_class_macptr
;
4448 attr
.dw_attr_val
.val_entry
= NULL
;
4449 attr
.dw_attr_val
.v
.val_lbl_id
= xstrdup (label
);
4450 add_dwarf_attr (die
, &attr
);
4453 /* Add an offset attribute value to a DIE. */
4456 add_AT_offset (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4457 unsigned HOST_WIDE_INT offset
)
4461 attr
.dw_attr
= attr_kind
;
4462 attr
.dw_attr_val
.val_class
= dw_val_class_offset
;
4463 attr
.dw_attr_val
.val_entry
= NULL
;
4464 attr
.dw_attr_val
.v
.val_offset
= offset
;
4465 add_dwarf_attr (die
, &attr
);
4468 /* Add a range_list attribute value to a DIE. When using
4469 dwarf_split_debug_info, address attributes in dies destined for the
4470 final executable should be direct references--setting the parameter
4471 force_direct ensures this behavior. */
4473 #define UNRELOCATED_OFFSET ((addr_table_entry *) 1)
4474 #define RELOCATED_OFFSET (NULL)
4477 add_AT_range_list (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4478 long unsigned int offset
, bool force_direct
)
4482 attr
.dw_attr
= attr_kind
;
4483 attr
.dw_attr_val
.val_class
= dw_val_class_range_list
;
4484 /* For the range_list attribute, use val_entry to store whether the
4485 offset should follow split-debug-info or normal semantics. This
4486 value is read in output_range_list_offset. */
4487 if (dwarf_split_debug_info
&& !force_direct
)
4488 attr
.dw_attr_val
.val_entry
= UNRELOCATED_OFFSET
;
4490 attr
.dw_attr_val
.val_entry
= RELOCATED_OFFSET
;
4491 attr
.dw_attr_val
.v
.val_offset
= offset
;
4492 add_dwarf_attr (die
, &attr
);
4495 /* Return the start label of a delta attribute. */
4497 static inline const char *
4498 AT_vms_delta1 (dw_attr_ref a
)
4500 gcc_assert (a
&& (AT_class (a
) == dw_val_class_vms_delta
));
4501 return a
->dw_attr_val
.v
.val_vms_delta
.lbl1
;
4504 /* Return the end label of a delta attribute. */
4506 static inline const char *
4507 AT_vms_delta2 (dw_attr_ref a
)
4509 gcc_assert (a
&& (AT_class (a
) == dw_val_class_vms_delta
));
4510 return a
->dw_attr_val
.v
.val_vms_delta
.lbl2
;
4513 static inline const char *
4514 AT_lbl (dw_attr_ref a
)
4516 gcc_assert (a
&& (AT_class (a
) == dw_val_class_lbl_id
4517 || AT_class (a
) == dw_val_class_lineptr
4518 || AT_class (a
) == dw_val_class_macptr
4519 || AT_class (a
) == dw_val_class_high_pc
));
4520 return a
->dw_attr_val
.v
.val_lbl_id
;
4523 /* Get the attribute of type attr_kind. */
4526 get_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4530 dw_die_ref spec
= NULL
;
4535 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
4536 if (a
->dw_attr
== attr_kind
)
4538 else if (a
->dw_attr
== DW_AT_specification
4539 || a
->dw_attr
== DW_AT_abstract_origin
)
4543 return get_AT (spec
, attr_kind
);
4548 /* Returns the parent of the declaration of DIE. */
4551 get_die_parent (dw_die_ref die
)
4558 if ((t
= get_AT_ref (die
, DW_AT_abstract_origin
))
4559 || (t
= get_AT_ref (die
, DW_AT_specification
)))
4562 return die
->die_parent
;
4565 /* Return the "low pc" attribute value, typically associated with a subprogram
4566 DIE. Return null if the "low pc" attribute is either not present, or if it
4567 cannot be represented as an assembler label identifier. */
4569 static inline const char *
4570 get_AT_low_pc (dw_die_ref die
)
4572 dw_attr_ref a
= get_AT (die
, DW_AT_low_pc
);
4574 return a
? AT_lbl (a
) : NULL
;
4577 /* Return the "high pc" attribute value, typically associated with a subprogram
4578 DIE. Return null if the "high pc" attribute is either not present, or if it
4579 cannot be represented as an assembler label identifier. */
4581 static inline const char *
4582 get_AT_hi_pc (dw_die_ref die
)
4584 dw_attr_ref a
= get_AT (die
, DW_AT_high_pc
);
4586 return a
? AT_lbl (a
) : NULL
;
4589 /* Return the value of the string attribute designated by ATTR_KIND, or
4590 NULL if it is not present. */
4592 static inline const char *
4593 get_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4595 dw_attr_ref a
= get_AT (die
, attr_kind
);
4597 return a
? AT_string (a
) : NULL
;
4600 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
4601 if it is not present. */
4604 get_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4606 dw_attr_ref a
= get_AT (die
, attr_kind
);
4608 return a
? AT_flag (a
) : 0;
4611 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
4612 if it is not present. */
4614 static inline unsigned
4615 get_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4617 dw_attr_ref a
= get_AT (die
, attr_kind
);
4619 return a
? AT_unsigned (a
) : 0;
4622 static inline dw_die_ref
4623 get_AT_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4625 dw_attr_ref a
= get_AT (die
, attr_kind
);
4627 return a
? AT_ref (a
) : NULL
;
4630 static inline struct dwarf_file_data
*
4631 get_AT_file (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4633 dw_attr_ref a
= get_AT (die
, attr_kind
);
4635 return a
? AT_file (a
) : NULL
;
4638 /* Return TRUE if the language is C++. */
4643 unsigned int lang
= get_AT_unsigned (comp_unit_die (), DW_AT_language
);
4645 return lang
== DW_LANG_C_plus_plus
|| lang
== DW_LANG_ObjC_plus_plus
;
4648 /* Return TRUE if the language is Java. */
4653 unsigned int lang
= get_AT_unsigned (comp_unit_die (), DW_AT_language
);
4655 return lang
== DW_LANG_Java
;
4658 /* Return TRUE if the language is Fortran. */
4663 unsigned int lang
= get_AT_unsigned (comp_unit_die (), DW_AT_language
);
4665 return (lang
== DW_LANG_Fortran77
4666 || lang
== DW_LANG_Fortran90
4667 || lang
== DW_LANG_Fortran95
);
4670 /* Return TRUE if the language is Ada. */
4675 unsigned int lang
= get_AT_unsigned (comp_unit_die (), DW_AT_language
);
4677 return lang
== DW_LANG_Ada95
|| lang
== DW_LANG_Ada83
;
4680 /* Remove the specified attribute if present. */
4683 remove_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
4691 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
4692 if (a
->dw_attr
== attr_kind
)
4694 if (AT_class (a
) == dw_val_class_str
)
4695 if (a
->dw_attr_val
.v
.val_str
->refcount
)
4696 a
->dw_attr_val
.v
.val_str
->refcount
--;
4698 /* vec::ordered_remove should help reduce the number of abbrevs
4700 die
->die_attr
->ordered_remove (ix
);
4705 /* Remove CHILD from its parent. PREV must have the property that
4706 PREV->DIE_SIB == CHILD. Does not alter CHILD. */
4709 remove_child_with_prev (dw_die_ref child
, dw_die_ref prev
)
4711 gcc_assert (child
->die_parent
== prev
->die_parent
);
4712 gcc_assert (prev
->die_sib
== child
);
4715 gcc_assert (child
->die_parent
->die_child
== child
);
4719 prev
->die_sib
= child
->die_sib
;
4720 if (child
->die_parent
->die_child
== child
)
4721 child
->die_parent
->die_child
= prev
;
4724 /* Replace OLD_CHILD with NEW_CHILD. PREV must have the property that
4725 PREV->DIE_SIB == OLD_CHILD. Does not alter OLD_CHILD. */
4728 replace_child (dw_die_ref old_child
, dw_die_ref new_child
, dw_die_ref prev
)
4730 dw_die_ref parent
= old_child
->die_parent
;
4732 gcc_assert (parent
== prev
->die_parent
);
4733 gcc_assert (prev
->die_sib
== old_child
);
4735 new_child
->die_parent
= parent
;
4736 if (prev
== old_child
)
4738 gcc_assert (parent
->die_child
== old_child
);
4739 new_child
->die_sib
= new_child
;
4743 prev
->die_sib
= new_child
;
4744 new_child
->die_sib
= old_child
->die_sib
;
4746 if (old_child
->die_parent
->die_child
== old_child
)
4747 old_child
->die_parent
->die_child
= new_child
;
4750 /* Move all children from OLD_PARENT to NEW_PARENT. */
4753 move_all_children (dw_die_ref old_parent
, dw_die_ref new_parent
)
4756 new_parent
->die_child
= old_parent
->die_child
;
4757 old_parent
->die_child
= NULL
;
4758 FOR_EACH_CHILD (new_parent
, c
, c
->die_parent
= new_parent
);
4761 /* Remove child DIE whose die_tag is TAG. Do nothing if no child
4765 remove_child_TAG (dw_die_ref die
, enum dwarf_tag tag
)
4771 dw_die_ref prev
= c
;
4773 while (c
->die_tag
== tag
)
4775 remove_child_with_prev (c
, prev
);
4776 /* Might have removed every child. */
4777 if (c
== c
->die_sib
)
4781 } while (c
!= die
->die_child
);
4784 /* Add a CHILD_DIE as the last child of DIE. */
4787 add_child_die (dw_die_ref die
, dw_die_ref child_die
)
4789 /* FIXME this should probably be an assert. */
4790 if (! die
|| ! child_die
)
4792 gcc_assert (die
!= child_die
);
4794 child_die
->die_parent
= die
;
4797 child_die
->die_sib
= die
->die_child
->die_sib
;
4798 die
->die_child
->die_sib
= child_die
;
4801 child_die
->die_sib
= child_die
;
4802 die
->die_child
= child_die
;
4805 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
4806 is the specification, to the end of PARENT's list of children.
4807 This is done by removing and re-adding it. */
4810 splice_child_die (dw_die_ref parent
, dw_die_ref child
)
4814 /* We want the declaration DIE from inside the class, not the
4815 specification DIE at toplevel. */
4816 if (child
->die_parent
!= parent
)
4818 dw_die_ref tmp
= get_AT_ref (child
, DW_AT_specification
);
4824 gcc_assert (child
->die_parent
== parent
4825 || (child
->die_parent
4826 == get_AT_ref (parent
, DW_AT_specification
)));
4828 for (p
= child
->die_parent
->die_child
; ; p
= p
->die_sib
)
4829 if (p
->die_sib
== child
)
4831 remove_child_with_prev (child
, p
);
4835 add_child_die (parent
, child
);
4838 /* Return a pointer to a newly created DIE node. */
4840 static inline dw_die_ref
4841 new_die (enum dwarf_tag tag_value
, dw_die_ref parent_die
, tree t
)
4843 dw_die_ref die
= ggc_cleared_alloc
<die_node
> ();
4845 die
->die_tag
= tag_value
;
4847 if (parent_die
!= NULL
)
4848 add_child_die (parent_die
, die
);
4851 limbo_die_node
*limbo_node
;
4853 limbo_node
= ggc_cleared_alloc
<limbo_die_node
> ();
4854 limbo_node
->die
= die
;
4855 limbo_node
->created_for
= t
;
4856 limbo_node
->next
= limbo_die_list
;
4857 limbo_die_list
= limbo_node
;
4863 /* Return the DIE associated with the given type specifier. */
4865 static inline dw_die_ref
4866 lookup_type_die (tree type
)
4868 return TYPE_SYMTAB_DIE (type
);
4871 /* Given a TYPE_DIE representing the type TYPE, if TYPE is an
4872 anonymous type named by the typedef TYPE_DIE, return the DIE of the
4873 anonymous type instead the one of the naming typedef. */
4875 static inline dw_die_ref
4876 strip_naming_typedef (tree type
, dw_die_ref type_die
)
4879 && TREE_CODE (type
) == RECORD_TYPE
4881 && type_die
->die_tag
== DW_TAG_typedef
4882 && is_naming_typedef_decl (TYPE_NAME (type
)))
4883 type_die
= get_AT_ref (type_die
, DW_AT_type
);
4887 /* Like lookup_type_die, but if type is an anonymous type named by a
4888 typedef[1], return the DIE of the anonymous type instead the one of
4889 the naming typedef. This is because in gen_typedef_die, we did
4890 equate the anonymous struct named by the typedef with the DIE of
4891 the naming typedef. So by default, lookup_type_die on an anonymous
4892 struct yields the DIE of the naming typedef.
4894 [1]: Read the comment of is_naming_typedef_decl to learn about what
4895 a naming typedef is. */
4897 static inline dw_die_ref
4898 lookup_type_die_strip_naming_typedef (tree type
)
4900 dw_die_ref die
= lookup_type_die (type
);
4901 return strip_naming_typedef (type
, die
);
4904 /* Equate a DIE to a given type specifier. */
4907 equate_type_number_to_die (tree type
, dw_die_ref type_die
)
4909 TYPE_SYMTAB_DIE (type
) = type_die
;
4912 /* Returns a hash value for X (which really is a die_struct). */
4915 decl_die_table_hash (const void *x
)
4917 return (hashval_t
) ((const_dw_die_ref
) x
)->decl_id
;
4920 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
4923 decl_die_table_eq (const void *x
, const void *y
)
4925 return (((const_dw_die_ref
) x
)->decl_id
== DECL_UID ((const_tree
) y
));
4928 /* Return the DIE associated with a given declaration. */
4930 static inline dw_die_ref
4931 lookup_decl_die (tree decl
)
4933 return (dw_die_ref
) htab_find_with_hash (decl_die_table
, decl
, DECL_UID (decl
));
4936 /* Returns a hash value for X (which really is a var_loc_list). */
4939 decl_loc_table_hash (const void *x
)
4941 return (hashval_t
) ((const var_loc_list
*) x
)->decl_id
;
4944 /* Return nonzero if decl_id of var_loc_list X is the same as
4948 decl_loc_table_eq (const void *x
, const void *y
)
4950 return (((const var_loc_list
*) x
)->decl_id
== DECL_UID ((const_tree
) y
));
4953 /* Return the var_loc list associated with a given declaration. */
4955 static inline var_loc_list
*
4956 lookup_decl_loc (const_tree decl
)
4958 if (!decl_loc_table
)
4960 return (var_loc_list
*)
4961 htab_find_with_hash (decl_loc_table
, decl
, DECL_UID (decl
));
4964 /* Returns a hash value for X (which really is a cached_dw_loc_list_list). */
4967 cached_dw_loc_list_table_hash (const void *x
)
4969 return (hashval_t
) ((const cached_dw_loc_list
*) x
)->decl_id
;
4972 /* Return nonzero if decl_id of cached_dw_loc_list X is the same as
4976 cached_dw_loc_list_table_eq (const void *x
, const void *y
)
4978 return (((const cached_dw_loc_list
*) x
)->decl_id
4979 == DECL_UID ((const_tree
) y
));
4982 /* Equate a DIE to a particular declaration. */
4985 equate_decl_number_to_die (tree decl
, dw_die_ref decl_die
)
4987 unsigned int decl_id
= DECL_UID (decl
);
4990 slot
= htab_find_slot_with_hash (decl_die_table
, decl
, decl_id
, INSERT
);
4992 decl_die
->decl_id
= decl_id
;
4995 /* Return how many bits covers PIECE EXPR_LIST. */
4998 decl_piece_bitsize (rtx piece
)
5000 int ret
= (int) GET_MODE (piece
);
5003 gcc_assert (GET_CODE (XEXP (piece
, 0)) == CONCAT
5004 && CONST_INT_P (XEXP (XEXP (piece
, 0), 0)));
5005 return INTVAL (XEXP (XEXP (piece
, 0), 0));
5008 /* Return pointer to the location of location note in PIECE EXPR_LIST. */
5011 decl_piece_varloc_ptr (rtx piece
)
5013 if ((int) GET_MODE (piece
))
5014 return &XEXP (piece
, 0);
5016 return &XEXP (XEXP (piece
, 0), 1);
5019 /* Create an EXPR_LIST for location note LOC_NOTE covering BITSIZE bits.
5020 Next is the chain of following piece nodes. */
5023 decl_piece_node (rtx loc_note
, HOST_WIDE_INT bitsize
, rtx next
)
5025 if (bitsize
<= (int) MAX_MACHINE_MODE
)
5026 return alloc_EXPR_LIST (bitsize
, loc_note
, next
);
5028 return alloc_EXPR_LIST (0, gen_rtx_CONCAT (VOIDmode
,
5033 /* Return rtx that should be stored into loc field for
5034 LOC_NOTE and BITPOS/BITSIZE. */
5037 construct_piece_list (rtx loc_note
, HOST_WIDE_INT bitpos
,
5038 HOST_WIDE_INT bitsize
)
5042 loc_note
= decl_piece_node (loc_note
, bitsize
, NULL_RTX
);
5044 loc_note
= decl_piece_node (NULL_RTX
, bitpos
, loc_note
);
5049 /* This function either modifies location piece list *DEST in
5050 place (if SRC and INNER is NULL), or copies location piece list
5051 *SRC to *DEST while modifying it. Location BITPOS is modified
5052 to contain LOC_NOTE, any pieces overlapping it are removed resp.
5053 not copied and if needed some padding around it is added.
5054 When modifying in place, DEST should point to EXPR_LIST where
5055 earlier pieces cover PIECE_BITPOS bits, when copying SRC points
5056 to the start of the whole list and INNER points to the EXPR_LIST
5057 where earlier pieces cover PIECE_BITPOS bits. */
5060 adjust_piece_list (rtx
*dest
, rtx
*src
, rtx
*inner
,
5061 HOST_WIDE_INT bitpos
, HOST_WIDE_INT piece_bitpos
,
5062 HOST_WIDE_INT bitsize
, rtx loc_note
)
5065 bool copy
= inner
!= NULL
;
5069 /* First copy all nodes preceding the current bitpos. */
5070 while (src
!= inner
)
5072 *dest
= decl_piece_node (*decl_piece_varloc_ptr (*src
),
5073 decl_piece_bitsize (*src
), NULL_RTX
);
5074 dest
= &XEXP (*dest
, 1);
5075 src
= &XEXP (*src
, 1);
5078 /* Add padding if needed. */
5079 if (bitpos
!= piece_bitpos
)
5081 *dest
= decl_piece_node (NULL_RTX
, bitpos
- piece_bitpos
,
5082 copy
? NULL_RTX
: *dest
);
5083 dest
= &XEXP (*dest
, 1);
5085 else if (*dest
&& decl_piece_bitsize (*dest
) == bitsize
)
5088 /* A piece with correct bitpos and bitsize already exist,
5089 just update the location for it and return. */
5090 *decl_piece_varloc_ptr (*dest
) = loc_note
;
5093 /* Add the piece that changed. */
5094 *dest
= decl_piece_node (loc_note
, bitsize
, copy
? NULL_RTX
: *dest
);
5095 dest
= &XEXP (*dest
, 1);
5096 /* Skip over pieces that overlap it. */
5097 diff
= bitpos
- piece_bitpos
+ bitsize
;
5100 while (diff
> 0 && *src
)
5103 diff
-= decl_piece_bitsize (piece
);
5105 src
= &XEXP (piece
, 1);
5108 *src
= XEXP (piece
, 1);
5109 free_EXPR_LIST_node (piece
);
5112 /* Add padding if needed. */
5113 if (diff
< 0 && *src
)
5117 *dest
= decl_piece_node (NULL_RTX
, -diff
, copy
? NULL_RTX
: *dest
);
5118 dest
= &XEXP (*dest
, 1);
5122 /* Finally copy all nodes following it. */
5125 *dest
= decl_piece_node (*decl_piece_varloc_ptr (*src
),
5126 decl_piece_bitsize (*src
), NULL_RTX
);
5127 dest
= &XEXP (*dest
, 1);
5128 src
= &XEXP (*src
, 1);
5132 /* Add a variable location node to the linked list for DECL. */
5134 static struct var_loc_node
*
5135 add_var_loc_to_decl (tree decl
, rtx loc_note
, const char *label
)
5137 unsigned int decl_id
;
5140 struct var_loc_node
*loc
= NULL
;
5141 HOST_WIDE_INT bitsize
= -1, bitpos
= -1;
5143 if (TREE_CODE (decl
) == VAR_DECL
5144 && DECL_HAS_DEBUG_EXPR_P (decl
))
5146 tree realdecl
= DECL_DEBUG_EXPR (decl
);
5147 if (handled_component_p (realdecl
)
5148 || (TREE_CODE (realdecl
) == MEM_REF
5149 && TREE_CODE (TREE_OPERAND (realdecl
, 0)) == ADDR_EXPR
))
5151 HOST_WIDE_INT maxsize
;
5154 = get_ref_base_and_extent (realdecl
, &bitpos
, &bitsize
, &maxsize
);
5155 if (!DECL_P (innerdecl
)
5156 || DECL_IGNORED_P (innerdecl
)
5157 || TREE_STATIC (innerdecl
)
5159 || bitpos
+ bitsize
> 256
5160 || bitsize
!= maxsize
)
5166 decl_id
= DECL_UID (decl
);
5167 slot
= htab_find_slot_with_hash (decl_loc_table
, decl
, decl_id
, INSERT
);
5170 temp
= ggc_cleared_alloc
<var_loc_list
> ();
5171 temp
->decl_id
= decl_id
;
5175 temp
= (var_loc_list
*) *slot
;
5177 /* For PARM_DECLs try to keep around the original incoming value,
5178 even if that means we'll emit a zero-range .debug_loc entry. */
5180 && temp
->first
== temp
->last
5181 && TREE_CODE (decl
) == PARM_DECL
5182 && NOTE_P (temp
->first
->loc
)
5183 && NOTE_VAR_LOCATION_DECL (temp
->first
->loc
) == decl
5184 && DECL_INCOMING_RTL (decl
)
5185 && NOTE_VAR_LOCATION_LOC (temp
->first
->loc
)
5186 && GET_CODE (NOTE_VAR_LOCATION_LOC (temp
->first
->loc
))
5187 == GET_CODE (DECL_INCOMING_RTL (decl
))
5188 && prev_real_insn (temp
->first
->loc
) == NULL_RTX
5190 || !rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp
->first
->loc
),
5191 NOTE_VAR_LOCATION_LOC (loc_note
))
5192 || (NOTE_VAR_LOCATION_STATUS (temp
->first
->loc
)
5193 != NOTE_VAR_LOCATION_STATUS (loc_note
))))
5195 loc
= ggc_cleared_alloc
<var_loc_node
> ();
5196 temp
->first
->next
= loc
;
5198 loc
->loc
= construct_piece_list (loc_note
, bitpos
, bitsize
);
5200 else if (temp
->last
)
5202 struct var_loc_node
*last
= temp
->last
, *unused
= NULL
;
5203 rtx
*piece_loc
= NULL
, last_loc_note
;
5204 int piece_bitpos
= 0;
5208 gcc_assert (last
->next
== NULL
);
5210 if (bitsize
!= -1 && GET_CODE (last
->loc
) == EXPR_LIST
)
5212 piece_loc
= &last
->loc
;
5215 int cur_bitsize
= decl_piece_bitsize (*piece_loc
);
5216 if (piece_bitpos
+ cur_bitsize
> bitpos
)
5218 piece_bitpos
+= cur_bitsize
;
5219 piece_loc
= &XEXP (*piece_loc
, 1);
5223 /* TEMP->LAST here is either pointer to the last but one or
5224 last element in the chained list, LAST is pointer to the
5226 if (label
&& strcmp (last
->label
, label
) == 0)
5228 /* For SRA optimized variables if there weren't any real
5229 insns since last note, just modify the last node. */
5230 if (piece_loc
!= NULL
)
5232 adjust_piece_list (piece_loc
, NULL
, NULL
,
5233 bitpos
, piece_bitpos
, bitsize
, loc_note
);
5236 /* If the last note doesn't cover any instructions, remove it. */
5237 if (temp
->last
!= last
)
5239 temp
->last
->next
= NULL
;
5242 gcc_assert (strcmp (last
->label
, label
) != 0);
5246 gcc_assert (temp
->first
== temp
->last
5247 || (temp
->first
->next
== temp
->last
5248 && TREE_CODE (decl
) == PARM_DECL
));
5249 memset (temp
->last
, '\0', sizeof (*temp
->last
));
5250 temp
->last
->loc
= construct_piece_list (loc_note
, bitpos
, bitsize
);
5254 if (bitsize
== -1 && NOTE_P (last
->loc
))
5255 last_loc_note
= last
->loc
;
5256 else if (piece_loc
!= NULL
5257 && *piece_loc
!= NULL_RTX
5258 && piece_bitpos
== bitpos
5259 && decl_piece_bitsize (*piece_loc
) == bitsize
)
5260 last_loc_note
= *decl_piece_varloc_ptr (*piece_loc
);
5262 last_loc_note
= NULL_RTX
;
5263 /* If the current location is the same as the end of the list,
5264 and either both or neither of the locations is uninitialized,
5265 we have nothing to do. */
5266 if (last_loc_note
== NULL_RTX
5267 || (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (last_loc_note
),
5268 NOTE_VAR_LOCATION_LOC (loc_note
)))
5269 || ((NOTE_VAR_LOCATION_STATUS (last_loc_note
)
5270 != NOTE_VAR_LOCATION_STATUS (loc_note
))
5271 && ((NOTE_VAR_LOCATION_STATUS (last_loc_note
)
5272 == VAR_INIT_STATUS_UNINITIALIZED
)
5273 || (NOTE_VAR_LOCATION_STATUS (loc_note
)
5274 == VAR_INIT_STATUS_UNINITIALIZED
))))
5276 /* Add LOC to the end of list and update LAST. If the last
5277 element of the list has been removed above, reuse its
5278 memory for the new node, otherwise allocate a new one. */
5282 memset (loc
, '\0', sizeof (*loc
));
5285 loc
= ggc_cleared_alloc
<var_loc_node
> ();
5286 if (bitsize
== -1 || piece_loc
== NULL
)
5287 loc
->loc
= construct_piece_list (loc_note
, bitpos
, bitsize
);
5289 adjust_piece_list (&loc
->loc
, &last
->loc
, piece_loc
,
5290 bitpos
, piece_bitpos
, bitsize
, loc_note
);
5292 /* Ensure TEMP->LAST will point either to the new last but one
5293 element of the chain, or to the last element in it. */
5294 if (last
!= temp
->last
)
5302 loc
= ggc_cleared_alloc
<var_loc_node
> ();
5305 loc
->loc
= construct_piece_list (loc_note
, bitpos
, bitsize
);
5310 /* Keep track of the number of spaces used to indent the
5311 output of the debugging routines that print the structure of
5312 the DIE internal representation. */
5313 static int print_indent
;
5315 /* Indent the line the number of spaces given by print_indent. */
5318 print_spaces (FILE *outfile
)
5320 fprintf (outfile
, "%*s", print_indent
, "");
5323 /* Print a type signature in hex. */
5326 print_signature (FILE *outfile
, char *sig
)
5330 for (i
= 0; i
< DWARF_TYPE_SIGNATURE_SIZE
; i
++)
5331 fprintf (outfile
, "%02x", sig
[i
] & 0xff);
5334 /* Print the information associated with a given DIE, and its children.
5335 This routine is a debugging aid only. */
5338 print_die (dw_die_ref die
, FILE *outfile
)
5344 print_spaces (outfile
);
5345 fprintf (outfile
, "DIE %4ld: %s (%p)\n",
5346 die
->die_offset
, dwarf_tag_name (die
->die_tag
),
5348 print_spaces (outfile
);
5349 fprintf (outfile
, " abbrev id: %lu", die
->die_abbrev
);
5350 fprintf (outfile
, " offset: %ld", die
->die_offset
);
5351 fprintf (outfile
, " mark: %d\n", die
->die_mark
);
5353 if (die
->comdat_type_p
)
5355 print_spaces (outfile
);
5356 fprintf (outfile
, " signature: ");
5357 print_signature (outfile
, die
->die_id
.die_type_node
->signature
);
5358 fprintf (outfile
, "\n");
5361 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
5363 print_spaces (outfile
);
5364 fprintf (outfile
, " %s: ", dwarf_attr_name (a
->dw_attr
));
5366 switch (AT_class (a
))
5368 case dw_val_class_addr
:
5369 fprintf (outfile
, "address");
5371 case dw_val_class_offset
:
5372 fprintf (outfile
, "offset");
5374 case dw_val_class_loc
:
5375 fprintf (outfile
, "location descriptor");
5377 case dw_val_class_loc_list
:
5378 fprintf (outfile
, "location list -> label:%s",
5379 AT_loc_list (a
)->ll_symbol
);
5381 case dw_val_class_range_list
:
5382 fprintf (outfile
, "range list");
5384 case dw_val_class_const
:
5385 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, AT_int (a
));
5387 case dw_val_class_unsigned_const
:
5388 fprintf (outfile
, HOST_WIDE_INT_PRINT_UNSIGNED
, AT_unsigned (a
));
5390 case dw_val_class_const_double
:
5391 fprintf (outfile
, "constant ("HOST_WIDE_INT_PRINT_DEC
","\
5392 HOST_WIDE_INT_PRINT_UNSIGNED
")",
5393 a
->dw_attr_val
.v
.val_double
.high
,
5394 a
->dw_attr_val
.v
.val_double
.low
);
5396 case dw_val_class_wide_int
:
5398 int i
= a
->dw_attr_val
.v
.val_wide
->get_len ();
5399 fprintf (outfile
, "constant (");
5401 if (a
->dw_attr_val
.v
.val_wide
->elt (i
- 1) == 0)
5402 fprintf (outfile
, "0x");
5403 fprintf (outfile
, HOST_WIDE_INT_PRINT_HEX
,
5404 a
->dw_attr_val
.v
.val_wide
->elt (--i
));
5406 fprintf (outfile
, HOST_WIDE_INT_PRINT_PADDED_HEX
,
5407 a
->dw_attr_val
.v
.val_wide
->elt (i
));
5408 fprintf (outfile
, ")");
5411 case dw_val_class_vec
:
5412 fprintf (outfile
, "floating-point or vector constant");
5414 case dw_val_class_flag
:
5415 fprintf (outfile
, "%u", AT_flag (a
));
5417 case dw_val_class_die_ref
:
5418 if (AT_ref (a
) != NULL
)
5420 if (AT_ref (a
)->comdat_type_p
)
5422 fprintf (outfile
, "die -> signature: ");
5423 print_signature (outfile
,
5424 AT_ref (a
)->die_id
.die_type_node
->signature
);
5426 else if (AT_ref (a
)->die_id
.die_symbol
)
5427 fprintf (outfile
, "die -> label: %s",
5428 AT_ref (a
)->die_id
.die_symbol
);
5430 fprintf (outfile
, "die -> %ld", AT_ref (a
)->die_offset
);
5431 fprintf (outfile
, " (%p)", (void *) AT_ref (a
));
5434 fprintf (outfile
, "die -> <null>");
5436 case dw_val_class_vms_delta
:
5437 fprintf (outfile
, "delta: @slotcount(%s-%s)",
5438 AT_vms_delta2 (a
), AT_vms_delta1 (a
));
5440 case dw_val_class_lbl_id
:
5441 case dw_val_class_lineptr
:
5442 case dw_val_class_macptr
:
5443 case dw_val_class_high_pc
:
5444 fprintf (outfile
, "label: %s", AT_lbl (a
));
5446 case dw_val_class_str
:
5447 if (AT_string (a
) != NULL
)
5448 fprintf (outfile
, "\"%s\"", AT_string (a
));
5450 fprintf (outfile
, "<null>");
5452 case dw_val_class_file
:
5453 fprintf (outfile
, "\"%s\" (%d)", AT_file (a
)->filename
,
5454 AT_file (a
)->emitted_number
);
5456 case dw_val_class_data8
:
5460 for (i
= 0; i
< 8; i
++)
5461 fprintf (outfile
, "%02x", a
->dw_attr_val
.v
.val_data8
[i
]);
5468 fprintf (outfile
, "\n");
5471 if (die
->die_child
!= NULL
)
5474 FOR_EACH_CHILD (die
, c
, print_die (c
, outfile
));
5477 if (print_indent
== 0)
5478 fprintf (outfile
, "\n");
5481 /* Print the information collected for a given DIE. */
5484 debug_dwarf_die (dw_die_ref die
)
5486 print_die (die
, stderr
);
5490 debug (die_struct
&ref
)
5492 print_die (&ref
, stderr
);
5496 debug (die_struct
*ptr
)
5501 fprintf (stderr
, "<nil>\n");
5505 /* Print all DWARF information collected for the compilation unit.
5506 This routine is a debugging aid only. */
5512 print_die (comp_unit_die (), stderr
);
5515 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
5516 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
5517 DIE that marks the start of the DIEs for this include file. */
5520 push_new_compile_unit (dw_die_ref old_unit
, dw_die_ref bincl_die
)
5522 const char *filename
= get_AT_string (bincl_die
, DW_AT_name
);
5523 dw_die_ref new_unit
= gen_compile_unit_die (filename
);
5525 new_unit
->die_sib
= old_unit
;
5529 /* Close an include-file CU and reopen the enclosing one. */
5532 pop_compile_unit (dw_die_ref old_unit
)
5534 dw_die_ref new_unit
= old_unit
->die_sib
;
5536 old_unit
->die_sib
= NULL
;
5540 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5541 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
5542 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5544 /* Calculate the checksum of a location expression. */
5547 loc_checksum (dw_loc_descr_ref loc
, struct md5_ctx
*ctx
)
5552 tem
= (loc
->dtprel
<< 8) | ((unsigned int) loc
->dw_loc_opc
);
5554 hash
= hash_loc_operands (loc
, hash
);
5558 /* Calculate the checksum of an attribute. */
5561 attr_checksum (dw_attr_ref at
, struct md5_ctx
*ctx
, int *mark
)
5563 dw_loc_descr_ref loc
;
5566 CHECKSUM (at
->dw_attr
);
5568 /* We don't care that this was compiled with a different compiler
5569 snapshot; if the output is the same, that's what matters. */
5570 if (at
->dw_attr
== DW_AT_producer
)
5573 switch (AT_class (at
))
5575 case dw_val_class_const
:
5576 CHECKSUM (at
->dw_attr_val
.v
.val_int
);
5578 case dw_val_class_unsigned_const
:
5579 CHECKSUM (at
->dw_attr_val
.v
.val_unsigned
);
5581 case dw_val_class_const_double
:
5582 CHECKSUM (at
->dw_attr_val
.v
.val_double
);
5584 case dw_val_class_wide_int
:
5585 CHECKSUM (*at
->dw_attr_val
.v
.val_wide
);
5587 case dw_val_class_vec
:
5588 CHECKSUM_BLOCK (at
->dw_attr_val
.v
.val_vec
.array
,
5589 (at
->dw_attr_val
.v
.val_vec
.length
5590 * at
->dw_attr_val
.v
.val_vec
.elt_size
));
5592 case dw_val_class_flag
:
5593 CHECKSUM (at
->dw_attr_val
.v
.val_flag
);
5595 case dw_val_class_str
:
5596 CHECKSUM_STRING (AT_string (at
));
5599 case dw_val_class_addr
:
5601 gcc_assert (GET_CODE (r
) == SYMBOL_REF
);
5602 CHECKSUM_STRING (XSTR (r
, 0));
5605 case dw_val_class_offset
:
5606 CHECKSUM (at
->dw_attr_val
.v
.val_offset
);
5609 case dw_val_class_loc
:
5610 for (loc
= AT_loc (at
); loc
; loc
= loc
->dw_loc_next
)
5611 loc_checksum (loc
, ctx
);
5614 case dw_val_class_die_ref
:
5615 die_checksum (AT_ref (at
), ctx
, mark
);
5618 case dw_val_class_fde_ref
:
5619 case dw_val_class_vms_delta
:
5620 case dw_val_class_lbl_id
:
5621 case dw_val_class_lineptr
:
5622 case dw_val_class_macptr
:
5623 case dw_val_class_high_pc
:
5626 case dw_val_class_file
:
5627 CHECKSUM_STRING (AT_file (at
)->filename
);
5630 case dw_val_class_data8
:
5631 CHECKSUM (at
->dw_attr_val
.v
.val_data8
);
5639 /* Calculate the checksum of a DIE. */
5642 die_checksum (dw_die_ref die
, struct md5_ctx
*ctx
, int *mark
)
5648 /* To avoid infinite recursion. */
5651 CHECKSUM (die
->die_mark
);
5654 die
->die_mark
= ++(*mark
);
5656 CHECKSUM (die
->die_tag
);
5658 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
5659 attr_checksum (a
, ctx
, mark
);
5661 FOR_EACH_CHILD (die
, c
, die_checksum (c
, ctx
, mark
));
5665 #undef CHECKSUM_BLOCK
5666 #undef CHECKSUM_STRING
5668 /* For DWARF-4 types, include the trailing NULL when checksumming strings. */
5669 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5670 #define CHECKSUM_BLOCK(FOO, SIZE) md5_process_bytes ((FOO), (SIZE), ctx)
5671 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO) + 1, ctx)
5672 #define CHECKSUM_SLEB128(FOO) checksum_sleb128 ((FOO), ctx)
5673 #define CHECKSUM_ULEB128(FOO) checksum_uleb128 ((FOO), ctx)
5674 #define CHECKSUM_ATTR(FOO) \
5675 if (FOO) attr_checksum_ordered (die->die_tag, (FOO), ctx, mark)
5677 /* Calculate the checksum of a number in signed LEB128 format. */
5680 checksum_sleb128 (HOST_WIDE_INT value
, struct md5_ctx
*ctx
)
5687 byte
= (value
& 0x7f);
5689 more
= !((value
== 0 && (byte
& 0x40) == 0)
5690 || (value
== -1 && (byte
& 0x40) != 0));
5699 /* Calculate the checksum of a number in unsigned LEB128 format. */
5702 checksum_uleb128 (unsigned HOST_WIDE_INT value
, struct md5_ctx
*ctx
)
5706 unsigned char byte
= (value
& 0x7f);
5709 /* More bytes to follow. */
5717 /* Checksum the context of the DIE. This adds the names of any
5718 surrounding namespaces or structures to the checksum. */
5721 checksum_die_context (dw_die_ref die
, struct md5_ctx
*ctx
)
5725 int tag
= die
->die_tag
;
5727 if (tag
!= DW_TAG_namespace
5728 && tag
!= DW_TAG_structure_type
5729 && tag
!= DW_TAG_class_type
)
5732 name
= get_AT_string (die
, DW_AT_name
);
5734 spec
= get_AT_ref (die
, DW_AT_specification
);
5738 if (die
->die_parent
!= NULL
)
5739 checksum_die_context (die
->die_parent
, ctx
);
5741 CHECKSUM_ULEB128 ('C');
5742 CHECKSUM_ULEB128 (tag
);
5744 CHECKSUM_STRING (name
);
5747 /* Calculate the checksum of a location expression. */
5750 loc_checksum_ordered (dw_loc_descr_ref loc
, struct md5_ctx
*ctx
)
5752 /* Special case for lone DW_OP_plus_uconst: checksum as if the location
5753 were emitted as a DW_FORM_sdata instead of a location expression. */
5754 if (loc
->dw_loc_opc
== DW_OP_plus_uconst
&& loc
->dw_loc_next
== NULL
)
5756 CHECKSUM_ULEB128 (DW_FORM_sdata
);
5757 CHECKSUM_SLEB128 ((HOST_WIDE_INT
) loc
->dw_loc_oprnd1
.v
.val_unsigned
);
5761 /* Otherwise, just checksum the raw location expression. */
5766 CHECKSUM_ULEB128 (loc
->dtprel
);
5767 CHECKSUM_ULEB128 (loc
->dw_loc_opc
);
5768 hash
= hash_loc_operands (loc
, hash
);
5770 loc
= loc
->dw_loc_next
;
5774 /* Calculate the checksum of an attribute. */
5777 attr_checksum_ordered (enum dwarf_tag tag
, dw_attr_ref at
,
5778 struct md5_ctx
*ctx
, int *mark
)
5780 dw_loc_descr_ref loc
;
5783 if (AT_class (at
) == dw_val_class_die_ref
)
5785 dw_die_ref target_die
= AT_ref (at
);
5787 /* For pointer and reference types, we checksum only the (qualified)
5788 name of the target type (if there is a name). For friend entries,
5789 we checksum only the (qualified) name of the target type or function.
5790 This allows the checksum to remain the same whether the target type
5791 is complete or not. */
5792 if ((at
->dw_attr
== DW_AT_type
5793 && (tag
== DW_TAG_pointer_type
5794 || tag
== DW_TAG_reference_type
5795 || tag
== DW_TAG_rvalue_reference_type
5796 || tag
== DW_TAG_ptr_to_member_type
))
5797 || (at
->dw_attr
== DW_AT_friend
5798 && tag
== DW_TAG_friend
))
5800 dw_attr_ref name_attr
= get_AT (target_die
, DW_AT_name
);
5802 if (name_attr
!= NULL
)
5804 dw_die_ref decl
= get_AT_ref (target_die
, DW_AT_specification
);
5808 CHECKSUM_ULEB128 ('N');
5809 CHECKSUM_ULEB128 (at
->dw_attr
);
5810 if (decl
->die_parent
!= NULL
)
5811 checksum_die_context (decl
->die_parent
, ctx
);
5812 CHECKSUM_ULEB128 ('E');
5813 CHECKSUM_STRING (AT_string (name_attr
));
5818 /* For all other references to another DIE, we check to see if the
5819 target DIE has already been visited. If it has, we emit a
5820 backward reference; if not, we descend recursively. */
5821 if (target_die
->die_mark
> 0)
5823 CHECKSUM_ULEB128 ('R');
5824 CHECKSUM_ULEB128 (at
->dw_attr
);
5825 CHECKSUM_ULEB128 (target_die
->die_mark
);
5829 dw_die_ref decl
= get_AT_ref (target_die
, DW_AT_specification
);
5833 target_die
->die_mark
= ++(*mark
);
5834 CHECKSUM_ULEB128 ('T');
5835 CHECKSUM_ULEB128 (at
->dw_attr
);
5836 if (decl
->die_parent
!= NULL
)
5837 checksum_die_context (decl
->die_parent
, ctx
);
5838 die_checksum_ordered (target_die
, ctx
, mark
);
5843 CHECKSUM_ULEB128 ('A');
5844 CHECKSUM_ULEB128 (at
->dw_attr
);
5846 switch (AT_class (at
))
5848 case dw_val_class_const
:
5849 CHECKSUM_ULEB128 (DW_FORM_sdata
);
5850 CHECKSUM_SLEB128 (at
->dw_attr_val
.v
.val_int
);
5853 case dw_val_class_unsigned_const
:
5854 CHECKSUM_ULEB128 (DW_FORM_sdata
);
5855 CHECKSUM_SLEB128 ((int) at
->dw_attr_val
.v
.val_unsigned
);
5858 case dw_val_class_const_double
:
5859 CHECKSUM_ULEB128 (DW_FORM_block
);
5860 CHECKSUM_ULEB128 (sizeof (at
->dw_attr_val
.v
.val_double
));
5861 CHECKSUM (at
->dw_attr_val
.v
.val_double
);
5864 case dw_val_class_wide_int
:
5865 CHECKSUM_ULEB128 (DW_FORM_block
);
5866 CHECKSUM_ULEB128 (sizeof (*at
->dw_attr_val
.v
.val_wide
));
5867 CHECKSUM (*at
->dw_attr_val
.v
.val_wide
);
5870 case dw_val_class_vec
:
5871 CHECKSUM_ULEB128 (DW_FORM_block
);
5872 CHECKSUM_ULEB128 (at
->dw_attr_val
.v
.val_vec
.length
5873 * at
->dw_attr_val
.v
.val_vec
.elt_size
);
5874 CHECKSUM_BLOCK (at
->dw_attr_val
.v
.val_vec
.array
,
5875 (at
->dw_attr_val
.v
.val_vec
.length
5876 * at
->dw_attr_val
.v
.val_vec
.elt_size
));
5879 case dw_val_class_flag
:
5880 CHECKSUM_ULEB128 (DW_FORM_flag
);
5881 CHECKSUM_ULEB128 (at
->dw_attr_val
.v
.val_flag
? 1 : 0);
5884 case dw_val_class_str
:
5885 CHECKSUM_ULEB128 (DW_FORM_string
);
5886 CHECKSUM_STRING (AT_string (at
));
5889 case dw_val_class_addr
:
5891 gcc_assert (GET_CODE (r
) == SYMBOL_REF
);
5892 CHECKSUM_ULEB128 (DW_FORM_string
);
5893 CHECKSUM_STRING (XSTR (r
, 0));
5896 case dw_val_class_offset
:
5897 CHECKSUM_ULEB128 (DW_FORM_sdata
);
5898 CHECKSUM_ULEB128 (at
->dw_attr_val
.v
.val_offset
);
5901 case dw_val_class_loc
:
5902 for (loc
= AT_loc (at
); loc
; loc
= loc
->dw_loc_next
)
5903 loc_checksum_ordered (loc
, ctx
);
5906 case dw_val_class_fde_ref
:
5907 case dw_val_class_lbl_id
:
5908 case dw_val_class_lineptr
:
5909 case dw_val_class_macptr
:
5910 case dw_val_class_high_pc
:
5913 case dw_val_class_file
:
5914 CHECKSUM_ULEB128 (DW_FORM_string
);
5915 CHECKSUM_STRING (AT_file (at
)->filename
);
5918 case dw_val_class_data8
:
5919 CHECKSUM (at
->dw_attr_val
.v
.val_data8
);
5927 struct checksum_attributes
5929 dw_attr_ref at_name
;
5930 dw_attr_ref at_type
;
5931 dw_attr_ref at_friend
;
5932 dw_attr_ref at_accessibility
;
5933 dw_attr_ref at_address_class
;
5934 dw_attr_ref at_allocated
;
5935 dw_attr_ref at_artificial
;
5936 dw_attr_ref at_associated
;
5937 dw_attr_ref at_binary_scale
;
5938 dw_attr_ref at_bit_offset
;
5939 dw_attr_ref at_bit_size
;
5940 dw_attr_ref at_bit_stride
;
5941 dw_attr_ref at_byte_size
;
5942 dw_attr_ref at_byte_stride
;
5943 dw_attr_ref at_const_value
;
5944 dw_attr_ref at_containing_type
;
5945 dw_attr_ref at_count
;
5946 dw_attr_ref at_data_location
;
5947 dw_attr_ref at_data_member_location
;
5948 dw_attr_ref at_decimal_scale
;
5949 dw_attr_ref at_decimal_sign
;
5950 dw_attr_ref at_default_value
;
5951 dw_attr_ref at_digit_count
;
5952 dw_attr_ref at_discr
;
5953 dw_attr_ref at_discr_list
;
5954 dw_attr_ref at_discr_value
;
5955 dw_attr_ref at_encoding
;
5956 dw_attr_ref at_endianity
;
5957 dw_attr_ref at_explicit
;
5958 dw_attr_ref at_is_optional
;
5959 dw_attr_ref at_location
;
5960 dw_attr_ref at_lower_bound
;
5961 dw_attr_ref at_mutable
;
5962 dw_attr_ref at_ordering
;
5963 dw_attr_ref at_picture_string
;
5964 dw_attr_ref at_prototyped
;
5965 dw_attr_ref at_small
;
5966 dw_attr_ref at_segment
;
5967 dw_attr_ref at_string_length
;
5968 dw_attr_ref at_threads_scaled
;
5969 dw_attr_ref at_upper_bound
;
5970 dw_attr_ref at_use_location
;
5971 dw_attr_ref at_use_UTF8
;
5972 dw_attr_ref at_variable_parameter
;
5973 dw_attr_ref at_virtuality
;
5974 dw_attr_ref at_visibility
;
5975 dw_attr_ref at_vtable_elem_location
;
5978 /* Collect the attributes that we will want to use for the checksum. */
5981 collect_checksum_attributes (struct checksum_attributes
*attrs
, dw_die_ref die
)
5986 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
5997 attrs
->at_friend
= a
;
5999 case DW_AT_accessibility
:
6000 attrs
->at_accessibility
= a
;
6002 case DW_AT_address_class
:
6003 attrs
->at_address_class
= a
;
6005 case DW_AT_allocated
:
6006 attrs
->at_allocated
= a
;
6008 case DW_AT_artificial
:
6009 attrs
->at_artificial
= a
;
6011 case DW_AT_associated
:
6012 attrs
->at_associated
= a
;
6014 case DW_AT_binary_scale
:
6015 attrs
->at_binary_scale
= a
;
6017 case DW_AT_bit_offset
:
6018 attrs
->at_bit_offset
= a
;
6020 case DW_AT_bit_size
:
6021 attrs
->at_bit_size
= a
;
6023 case DW_AT_bit_stride
:
6024 attrs
->at_bit_stride
= a
;
6026 case DW_AT_byte_size
:
6027 attrs
->at_byte_size
= a
;
6029 case DW_AT_byte_stride
:
6030 attrs
->at_byte_stride
= a
;
6032 case DW_AT_const_value
:
6033 attrs
->at_const_value
= a
;
6035 case DW_AT_containing_type
:
6036 attrs
->at_containing_type
= a
;
6039 attrs
->at_count
= a
;
6041 case DW_AT_data_location
:
6042 attrs
->at_data_location
= a
;
6044 case DW_AT_data_member_location
:
6045 attrs
->at_data_member_location
= a
;
6047 case DW_AT_decimal_scale
:
6048 attrs
->at_decimal_scale
= a
;
6050 case DW_AT_decimal_sign
:
6051 attrs
->at_decimal_sign
= a
;
6053 case DW_AT_default_value
:
6054 attrs
->at_default_value
= a
;
6056 case DW_AT_digit_count
:
6057 attrs
->at_digit_count
= a
;
6060 attrs
->at_discr
= a
;
6062 case DW_AT_discr_list
:
6063 attrs
->at_discr_list
= a
;
6065 case DW_AT_discr_value
:
6066 attrs
->at_discr_value
= a
;
6068 case DW_AT_encoding
:
6069 attrs
->at_encoding
= a
;
6071 case DW_AT_endianity
:
6072 attrs
->at_endianity
= a
;
6074 case DW_AT_explicit
:
6075 attrs
->at_explicit
= a
;
6077 case DW_AT_is_optional
:
6078 attrs
->at_is_optional
= a
;
6080 case DW_AT_location
:
6081 attrs
->at_location
= a
;
6083 case DW_AT_lower_bound
:
6084 attrs
->at_lower_bound
= a
;
6087 attrs
->at_mutable
= a
;
6089 case DW_AT_ordering
:
6090 attrs
->at_ordering
= a
;
6092 case DW_AT_picture_string
:
6093 attrs
->at_picture_string
= a
;
6095 case DW_AT_prototyped
:
6096 attrs
->at_prototyped
= a
;
6099 attrs
->at_small
= a
;
6102 attrs
->at_segment
= a
;
6104 case DW_AT_string_length
:
6105 attrs
->at_string_length
= a
;
6107 case DW_AT_threads_scaled
:
6108 attrs
->at_threads_scaled
= a
;
6110 case DW_AT_upper_bound
:
6111 attrs
->at_upper_bound
= a
;
6113 case DW_AT_use_location
:
6114 attrs
->at_use_location
= a
;
6116 case DW_AT_use_UTF8
:
6117 attrs
->at_use_UTF8
= a
;
6119 case DW_AT_variable_parameter
:
6120 attrs
->at_variable_parameter
= a
;
6122 case DW_AT_virtuality
:
6123 attrs
->at_virtuality
= a
;
6125 case DW_AT_visibility
:
6126 attrs
->at_visibility
= a
;
6128 case DW_AT_vtable_elem_location
:
6129 attrs
->at_vtable_elem_location
= a
;
6137 /* Calculate the checksum of a DIE, using an ordered subset of attributes. */
6140 die_checksum_ordered (dw_die_ref die
, struct md5_ctx
*ctx
, int *mark
)
6144 struct checksum_attributes attrs
;
6146 CHECKSUM_ULEB128 ('D');
6147 CHECKSUM_ULEB128 (die
->die_tag
);
6149 memset (&attrs
, 0, sizeof (attrs
));
6151 decl
= get_AT_ref (die
, DW_AT_specification
);
6153 collect_checksum_attributes (&attrs
, decl
);
6154 collect_checksum_attributes (&attrs
, die
);
6156 CHECKSUM_ATTR (attrs
.at_name
);
6157 CHECKSUM_ATTR (attrs
.at_accessibility
);
6158 CHECKSUM_ATTR (attrs
.at_address_class
);
6159 CHECKSUM_ATTR (attrs
.at_allocated
);
6160 CHECKSUM_ATTR (attrs
.at_artificial
);
6161 CHECKSUM_ATTR (attrs
.at_associated
);
6162 CHECKSUM_ATTR (attrs
.at_binary_scale
);
6163 CHECKSUM_ATTR (attrs
.at_bit_offset
);
6164 CHECKSUM_ATTR (attrs
.at_bit_size
);
6165 CHECKSUM_ATTR (attrs
.at_bit_stride
);
6166 CHECKSUM_ATTR (attrs
.at_byte_size
);
6167 CHECKSUM_ATTR (attrs
.at_byte_stride
);
6168 CHECKSUM_ATTR (attrs
.at_const_value
);
6169 CHECKSUM_ATTR (attrs
.at_containing_type
);
6170 CHECKSUM_ATTR (attrs
.at_count
);
6171 CHECKSUM_ATTR (attrs
.at_data_location
);
6172 CHECKSUM_ATTR (attrs
.at_data_member_location
);
6173 CHECKSUM_ATTR (attrs
.at_decimal_scale
);
6174 CHECKSUM_ATTR (attrs
.at_decimal_sign
);
6175 CHECKSUM_ATTR (attrs
.at_default_value
);
6176 CHECKSUM_ATTR (attrs
.at_digit_count
);
6177 CHECKSUM_ATTR (attrs
.at_discr
);
6178 CHECKSUM_ATTR (attrs
.at_discr_list
);
6179 CHECKSUM_ATTR (attrs
.at_discr_value
);
6180 CHECKSUM_ATTR (attrs
.at_encoding
);
6181 CHECKSUM_ATTR (attrs
.at_endianity
);
6182 CHECKSUM_ATTR (attrs
.at_explicit
);
6183 CHECKSUM_ATTR (attrs
.at_is_optional
);
6184 CHECKSUM_ATTR (attrs
.at_location
);
6185 CHECKSUM_ATTR (attrs
.at_lower_bound
);
6186 CHECKSUM_ATTR (attrs
.at_mutable
);
6187 CHECKSUM_ATTR (attrs
.at_ordering
);
6188 CHECKSUM_ATTR (attrs
.at_picture_string
);
6189 CHECKSUM_ATTR (attrs
.at_prototyped
);
6190 CHECKSUM_ATTR (attrs
.at_small
);
6191 CHECKSUM_ATTR (attrs
.at_segment
);
6192 CHECKSUM_ATTR (attrs
.at_string_length
);
6193 CHECKSUM_ATTR (attrs
.at_threads_scaled
);
6194 CHECKSUM_ATTR (attrs
.at_upper_bound
);
6195 CHECKSUM_ATTR (attrs
.at_use_location
);
6196 CHECKSUM_ATTR (attrs
.at_use_UTF8
);
6197 CHECKSUM_ATTR (attrs
.at_variable_parameter
);
6198 CHECKSUM_ATTR (attrs
.at_virtuality
);
6199 CHECKSUM_ATTR (attrs
.at_visibility
);
6200 CHECKSUM_ATTR (attrs
.at_vtable_elem_location
);
6201 CHECKSUM_ATTR (attrs
.at_type
);
6202 CHECKSUM_ATTR (attrs
.at_friend
);
6204 /* Checksum the child DIEs. */
6207 dw_attr_ref name_attr
;
6210 name_attr
= get_AT (c
, DW_AT_name
);
6211 if (is_template_instantiation (c
))
6213 /* Ignore instantiations of member type and function templates. */
6215 else if (name_attr
!= NULL
6216 && (is_type_die (c
) || c
->die_tag
== DW_TAG_subprogram
))
6218 /* Use a shallow checksum for named nested types and member
6220 CHECKSUM_ULEB128 ('S');
6221 CHECKSUM_ULEB128 (c
->die_tag
);
6222 CHECKSUM_STRING (AT_string (name_attr
));
6226 /* Use a deep checksum for other children. */
6227 /* Mark this DIE so it gets processed when unmarking. */
6228 if (c
->die_mark
== 0)
6230 die_checksum_ordered (c
, ctx
, mark
);
6232 } while (c
!= die
->die_child
);
6234 CHECKSUM_ULEB128 (0);
6237 /* Add a type name and tag to a hash. */
6239 die_odr_checksum (int tag
, const char *name
, md5_ctx
*ctx
)
6241 CHECKSUM_ULEB128 (tag
);
6242 CHECKSUM_STRING (name
);
6246 #undef CHECKSUM_STRING
6247 #undef CHECKSUM_ATTR
6248 #undef CHECKSUM_LEB128
6249 #undef CHECKSUM_ULEB128
6251 /* Generate the type signature for DIE. This is computed by generating an
6252 MD5 checksum over the DIE's tag, its relevant attributes, and its
6253 children. Attributes that are references to other DIEs are processed
6254 by recursion, using the MARK field to prevent infinite recursion.
6255 If the DIE is nested inside a namespace or another type, we also
6256 need to include that context in the signature. The lower 64 bits
6257 of the resulting MD5 checksum comprise the signature. */
6260 generate_type_signature (dw_die_ref die
, comdat_type_node
*type_node
)
6264 unsigned char checksum
[16];
6269 name
= get_AT_string (die
, DW_AT_name
);
6270 decl
= get_AT_ref (die
, DW_AT_specification
);
6271 parent
= get_die_parent (die
);
6273 /* First, compute a signature for just the type name (and its surrounding
6274 context, if any. This is stored in the type unit DIE for link-time
6275 ODR (one-definition rule) checking. */
6277 if (is_cxx () && name
!= NULL
)
6279 md5_init_ctx (&ctx
);
6281 /* Checksum the names of surrounding namespaces and structures. */
6283 checksum_die_context (parent
, &ctx
);
6285 /* Checksum the current DIE. */
6286 die_odr_checksum (die
->die_tag
, name
, &ctx
);
6287 md5_finish_ctx (&ctx
, checksum
);
6289 add_AT_data8 (type_node
->root_die
, DW_AT_GNU_odr_signature
, &checksum
[8]);
6292 /* Next, compute the complete type signature. */
6294 md5_init_ctx (&ctx
);
6296 die
->die_mark
= mark
;
6298 /* Checksum the names of surrounding namespaces and structures. */
6300 checksum_die_context (parent
, &ctx
);
6302 /* Checksum the DIE and its children. */
6303 die_checksum_ordered (die
, &ctx
, &mark
);
6304 unmark_all_dies (die
);
6305 md5_finish_ctx (&ctx
, checksum
);
6307 /* Store the signature in the type node and link the type DIE and the
6308 type node together. */
6309 memcpy (type_node
->signature
, &checksum
[16 - DWARF_TYPE_SIGNATURE_SIZE
],
6310 DWARF_TYPE_SIGNATURE_SIZE
);
6311 die
->comdat_type_p
= true;
6312 die
->die_id
.die_type_node
= type_node
;
6313 type_node
->type_die
= die
;
6315 /* If the DIE is a specification, link its declaration to the type node
6319 decl
->comdat_type_p
= true;
6320 decl
->die_id
.die_type_node
= type_node
;
6324 /* Do the location expressions look same? */
6326 same_loc_p (dw_loc_descr_ref loc1
, dw_loc_descr_ref loc2
, int *mark
)
6328 return loc1
->dw_loc_opc
== loc2
->dw_loc_opc
6329 && same_dw_val_p (&loc1
->dw_loc_oprnd1
, &loc2
->dw_loc_oprnd1
, mark
)
6330 && same_dw_val_p (&loc1
->dw_loc_oprnd2
, &loc2
->dw_loc_oprnd2
, mark
);
6333 /* Do the values look the same? */
6335 same_dw_val_p (const dw_val_node
*v1
, const dw_val_node
*v2
, int *mark
)
6337 dw_loc_descr_ref loc1
, loc2
;
6340 if (v1
->val_class
!= v2
->val_class
)
6343 switch (v1
->val_class
)
6345 case dw_val_class_const
:
6346 return v1
->v
.val_int
== v2
->v
.val_int
;
6347 case dw_val_class_unsigned_const
:
6348 return v1
->v
.val_unsigned
== v2
->v
.val_unsigned
;
6349 case dw_val_class_const_double
:
6350 return v1
->v
.val_double
.high
== v2
->v
.val_double
.high
6351 && v1
->v
.val_double
.low
== v2
->v
.val_double
.low
;
6352 case dw_val_class_wide_int
:
6353 return *v1
->v
.val_wide
== *v2
->v
.val_wide
;
6354 case dw_val_class_vec
:
6355 if (v1
->v
.val_vec
.length
!= v2
->v
.val_vec
.length
6356 || v1
->v
.val_vec
.elt_size
!= v2
->v
.val_vec
.elt_size
)
6358 if (memcmp (v1
->v
.val_vec
.array
, v2
->v
.val_vec
.array
,
6359 v1
->v
.val_vec
.length
* v1
->v
.val_vec
.elt_size
))
6362 case dw_val_class_flag
:
6363 return v1
->v
.val_flag
== v2
->v
.val_flag
;
6364 case dw_val_class_str
:
6365 return !strcmp (v1
->v
.val_str
->str
, v2
->v
.val_str
->str
);
6367 case dw_val_class_addr
:
6368 r1
= v1
->v
.val_addr
;
6369 r2
= v2
->v
.val_addr
;
6370 if (GET_CODE (r1
) != GET_CODE (r2
))
6372 return !rtx_equal_p (r1
, r2
);
6374 case dw_val_class_offset
:
6375 return v1
->v
.val_offset
== v2
->v
.val_offset
;
6377 case dw_val_class_loc
:
6378 for (loc1
= v1
->v
.val_loc
, loc2
= v2
->v
.val_loc
;
6380 loc1
= loc1
->dw_loc_next
, loc2
= loc2
->dw_loc_next
)
6381 if (!same_loc_p (loc1
, loc2
, mark
))
6383 return !loc1
&& !loc2
;
6385 case dw_val_class_die_ref
:
6386 return same_die_p (v1
->v
.val_die_ref
.die
, v2
->v
.val_die_ref
.die
, mark
);
6388 case dw_val_class_fde_ref
:
6389 case dw_val_class_vms_delta
:
6390 case dw_val_class_lbl_id
:
6391 case dw_val_class_lineptr
:
6392 case dw_val_class_macptr
:
6393 case dw_val_class_high_pc
:
6396 case dw_val_class_file
:
6397 return v1
->v
.val_file
== v2
->v
.val_file
;
6399 case dw_val_class_data8
:
6400 return !memcmp (v1
->v
.val_data8
, v2
->v
.val_data8
, 8);
6407 /* Do the attributes look the same? */
6410 same_attr_p (dw_attr_ref at1
, dw_attr_ref at2
, int *mark
)
6412 if (at1
->dw_attr
!= at2
->dw_attr
)
6415 /* We don't care that this was compiled with a different compiler
6416 snapshot; if the output is the same, that's what matters. */
6417 if (at1
->dw_attr
== DW_AT_producer
)
6420 return same_dw_val_p (&at1
->dw_attr_val
, &at2
->dw_attr_val
, mark
);
6423 /* Do the dies look the same? */
6426 same_die_p (dw_die_ref die1
, dw_die_ref die2
, int *mark
)
6432 /* To avoid infinite recursion. */
6434 return die1
->die_mark
== die2
->die_mark
;
6435 die1
->die_mark
= die2
->die_mark
= ++(*mark
);
6437 if (die1
->die_tag
!= die2
->die_tag
)
6440 if (vec_safe_length (die1
->die_attr
) != vec_safe_length (die2
->die_attr
))
6443 FOR_EACH_VEC_SAFE_ELT (die1
->die_attr
, ix
, a1
)
6444 if (!same_attr_p (a1
, &(*die2
->die_attr
)[ix
], mark
))
6447 c1
= die1
->die_child
;
6448 c2
= die2
->die_child
;
6457 if (!same_die_p (c1
, c2
, mark
))
6461 if (c1
== die1
->die_child
)
6463 if (c2
== die2
->die_child
)
6473 /* Do the dies look the same? Wrapper around same_die_p. */
6476 same_die_p_wrap (dw_die_ref die1
, dw_die_ref die2
)
6479 int ret
= same_die_p (die1
, die2
, &mark
);
6481 unmark_all_dies (die1
);
6482 unmark_all_dies (die2
);
6487 /* The prefix to attach to symbols on DIEs in the current comdat debug
6489 static const char *comdat_symbol_id
;
6491 /* The index of the current symbol within the current comdat CU. */
6492 static unsigned int comdat_symbol_number
;
6494 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
6495 children, and set comdat_symbol_id accordingly. */
6498 compute_section_prefix (dw_die_ref unit_die
)
6500 const char *die_name
= get_AT_string (unit_die
, DW_AT_name
);
6501 const char *base
= die_name
? lbasename (die_name
) : "anonymous";
6502 char *name
= XALLOCAVEC (char, strlen (base
) + 64);
6505 unsigned char checksum
[16];
6508 /* Compute the checksum of the DIE, then append part of it as hex digits to
6509 the name filename of the unit. */
6511 md5_init_ctx (&ctx
);
6513 die_checksum (unit_die
, &ctx
, &mark
);
6514 unmark_all_dies (unit_die
);
6515 md5_finish_ctx (&ctx
, checksum
);
6517 sprintf (name
, "%s.", base
);
6518 clean_symbol_name (name
);
6520 p
= name
+ strlen (name
);
6521 for (i
= 0; i
< 4; i
++)
6523 sprintf (p
, "%.2x", checksum
[i
]);
6527 comdat_symbol_id
= unit_die
->die_id
.die_symbol
= xstrdup (name
);
6528 comdat_symbol_number
= 0;
6531 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
6534 is_type_die (dw_die_ref die
)
6536 switch (die
->die_tag
)
6538 case DW_TAG_array_type
:
6539 case DW_TAG_class_type
:
6540 case DW_TAG_interface_type
:
6541 case DW_TAG_enumeration_type
:
6542 case DW_TAG_pointer_type
:
6543 case DW_TAG_reference_type
:
6544 case DW_TAG_rvalue_reference_type
:
6545 case DW_TAG_string_type
:
6546 case DW_TAG_structure_type
:
6547 case DW_TAG_subroutine_type
:
6548 case DW_TAG_union_type
:
6549 case DW_TAG_ptr_to_member_type
:
6550 case DW_TAG_set_type
:
6551 case DW_TAG_subrange_type
:
6552 case DW_TAG_base_type
:
6553 case DW_TAG_const_type
:
6554 case DW_TAG_file_type
:
6555 case DW_TAG_packed_type
:
6556 case DW_TAG_volatile_type
:
6557 case DW_TAG_typedef
:
6564 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
6565 Basically, we want to choose the bits that are likely to be shared between
6566 compilations (types) and leave out the bits that are specific to individual
6567 compilations (functions). */
6570 is_comdat_die (dw_die_ref c
)
6572 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
6573 we do for stabs. The advantage is a greater likelihood of sharing between
6574 objects that don't include headers in the same order (and therefore would
6575 put the base types in a different comdat). jason 8/28/00 */
6577 if (c
->die_tag
== DW_TAG_base_type
)
6580 if (c
->die_tag
== DW_TAG_pointer_type
6581 || c
->die_tag
== DW_TAG_reference_type
6582 || c
->die_tag
== DW_TAG_rvalue_reference_type
6583 || c
->die_tag
== DW_TAG_const_type
6584 || c
->die_tag
== DW_TAG_volatile_type
)
6586 dw_die_ref t
= get_AT_ref (c
, DW_AT_type
);
6588 return t
? is_comdat_die (t
) : 0;
6591 return is_type_die (c
);
6594 /* Returns 1 iff C is the sort of DIE that might be referred to from another
6595 compilation unit. */
6598 is_symbol_die (dw_die_ref c
)
6600 return (is_type_die (c
)
6601 || is_declaration_die (c
)
6602 || c
->die_tag
== DW_TAG_namespace
6603 || c
->die_tag
== DW_TAG_module
);
6606 /* Returns true iff C is a compile-unit DIE. */
6609 is_cu_die (dw_die_ref c
)
6611 return c
&& c
->die_tag
== DW_TAG_compile_unit
;
6614 /* Returns true iff C is a unit DIE of some sort. */
6617 is_unit_die (dw_die_ref c
)
6619 return c
&& (c
->die_tag
== DW_TAG_compile_unit
6620 || c
->die_tag
== DW_TAG_partial_unit
6621 || c
->die_tag
== DW_TAG_type_unit
);
6624 /* Returns true iff C is a namespace DIE. */
6627 is_namespace_die (dw_die_ref c
)
6629 return c
&& c
->die_tag
== DW_TAG_namespace
;
6632 /* Returns true iff C is a class or structure DIE. */
6635 is_class_die (dw_die_ref c
)
6637 return c
&& (c
->die_tag
== DW_TAG_class_type
6638 || c
->die_tag
== DW_TAG_structure_type
);
6641 /* Return non-zero if this DIE is a template parameter. */
6644 is_template_parameter (dw_die_ref die
)
6646 switch (die
->die_tag
)
6648 case DW_TAG_template_type_param
:
6649 case DW_TAG_template_value_param
:
6650 case DW_TAG_GNU_template_template_param
:
6651 case DW_TAG_GNU_template_parameter_pack
:
6658 /* Return non-zero if this DIE represents a template instantiation. */
6661 is_template_instantiation (dw_die_ref die
)
6665 if (!is_type_die (die
) && die
->die_tag
!= DW_TAG_subprogram
)
6667 FOR_EACH_CHILD (die
, c
, if (is_template_parameter (c
)) return true);
6672 gen_internal_sym (const char *prefix
)
6676 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, label_num
++);
6677 return xstrdup (buf
);
6680 /* Assign symbols to all worthy DIEs under DIE. */
6683 assign_symbol_names (dw_die_ref die
)
6687 if (is_symbol_die (die
) && !die
->comdat_type_p
)
6689 if (comdat_symbol_id
)
6691 char *p
= XALLOCAVEC (char, strlen (comdat_symbol_id
) + 64);
6693 sprintf (p
, "%s.%s.%x", DIE_LABEL_PREFIX
,
6694 comdat_symbol_id
, comdat_symbol_number
++);
6695 die
->die_id
.die_symbol
= xstrdup (p
);
6698 die
->die_id
.die_symbol
= gen_internal_sym ("LDIE");
6701 FOR_EACH_CHILD (die
, c
, assign_symbol_names (c
));
6704 struct cu_hash_table_entry
6707 unsigned min_comdat_num
, max_comdat_num
;
6708 struct cu_hash_table_entry
*next
;
6711 /* Helpers to manipulate hash table of CUs. */
6713 struct cu_hash_table_entry_hasher
6715 typedef cu_hash_table_entry value_type
;
6716 typedef die_struct compare_type
;
6717 static inline hashval_t
hash (const value_type
*);
6718 static inline bool equal (const value_type
*, const compare_type
*);
6719 static inline void remove (value_type
*);
6723 cu_hash_table_entry_hasher::hash (const value_type
*entry
)
6725 return htab_hash_string (entry
->cu
->die_id
.die_symbol
);
6729 cu_hash_table_entry_hasher::equal (const value_type
*entry1
,
6730 const compare_type
*entry2
)
6732 return !strcmp (entry1
->cu
->die_id
.die_symbol
, entry2
->die_id
.die_symbol
);
6736 cu_hash_table_entry_hasher::remove (value_type
*entry
)
6738 struct cu_hash_table_entry
*next
;
6748 typedef hash_table
<cu_hash_table_entry_hasher
> cu_hash_type
;
6750 /* Check whether we have already seen this CU and set up SYM_NUM
6753 check_duplicate_cu (dw_die_ref cu
, cu_hash_type htable
, unsigned int *sym_num
)
6755 struct cu_hash_table_entry dummy
;
6756 struct cu_hash_table_entry
**slot
, *entry
, *last
= &dummy
;
6758 dummy
.max_comdat_num
= 0;
6760 slot
= htable
.find_slot_with_hash (cu
,
6761 htab_hash_string (cu
->die_id
.die_symbol
),
6765 for (; entry
; last
= entry
, entry
= entry
->next
)
6767 if (same_die_p_wrap (cu
, entry
->cu
))
6773 *sym_num
= entry
->min_comdat_num
;
6777 entry
= XCNEW (struct cu_hash_table_entry
);
6779 entry
->min_comdat_num
= *sym_num
= last
->max_comdat_num
;
6780 entry
->next
= *slot
;
6786 /* Record SYM_NUM to record of CU in HTABLE. */
6788 record_comdat_symbol_number (dw_die_ref cu
, cu_hash_type htable
,
6789 unsigned int sym_num
)
6791 struct cu_hash_table_entry
**slot
, *entry
;
6793 slot
= htable
.find_slot_with_hash (cu
,
6794 htab_hash_string (cu
->die_id
.die_symbol
),
6798 entry
->max_comdat_num
= sym_num
;
6801 /* Traverse the DIE (which is always comp_unit_die), and set up
6802 additional compilation units for each of the include files we see
6803 bracketed by BINCL/EINCL. */
6806 break_out_includes (dw_die_ref die
)
6809 dw_die_ref unit
= NULL
;
6810 limbo_die_node
*node
, **pnode
;
6811 cu_hash_type cu_hash_table
;
6815 dw_die_ref prev
= c
;
6817 while (c
->die_tag
== DW_TAG_GNU_BINCL
|| c
->die_tag
== DW_TAG_GNU_EINCL
6818 || (unit
&& is_comdat_die (c
)))
6820 dw_die_ref next
= c
->die_sib
;
6822 /* This DIE is for a secondary CU; remove it from the main one. */
6823 remove_child_with_prev (c
, prev
);
6825 if (c
->die_tag
== DW_TAG_GNU_BINCL
)
6826 unit
= push_new_compile_unit (unit
, c
);
6827 else if (c
->die_tag
== DW_TAG_GNU_EINCL
)
6828 unit
= pop_compile_unit (unit
);
6830 add_child_die (unit
, c
);
6832 if (c
== die
->die_child
)
6835 } while (c
!= die
->die_child
);
6838 /* We can only use this in debugging, since the frontend doesn't check
6839 to make sure that we leave every include file we enter. */
6843 assign_symbol_names (die
);
6844 cu_hash_table
.create (10);
6845 for (node
= limbo_die_list
, pnode
= &limbo_die_list
;
6851 compute_section_prefix (node
->die
);
6852 is_dupl
= check_duplicate_cu (node
->die
, cu_hash_table
,
6853 &comdat_symbol_number
);
6854 assign_symbol_names (node
->die
);
6856 *pnode
= node
->next
;
6859 pnode
= &node
->next
;
6860 record_comdat_symbol_number (node
->die
, cu_hash_table
,
6861 comdat_symbol_number
);
6864 cu_hash_table
.dispose ();
6867 /* Return non-zero if this DIE is a declaration. */
6870 is_declaration_die (dw_die_ref die
)
6875 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
6876 if (a
->dw_attr
== DW_AT_declaration
)
6882 /* Return non-zero if this DIE is nested inside a subprogram. */
6885 is_nested_in_subprogram (dw_die_ref die
)
6887 dw_die_ref decl
= get_AT_ref (die
, DW_AT_specification
);
6891 return local_scope_p (decl
);
6894 /* Return non-zero if this DIE contains a defining declaration of a
6898 contains_subprogram_definition (dw_die_ref die
)
6902 if (die
->die_tag
== DW_TAG_subprogram
&& ! is_declaration_die (die
))
6904 FOR_EACH_CHILD (die
, c
, if (contains_subprogram_definition (c
)) return 1);
6908 /* Return non-zero if this is a type DIE that should be moved to a
6909 COMDAT .debug_types section. */
6912 should_move_die_to_comdat (dw_die_ref die
)
6914 switch (die
->die_tag
)
6916 case DW_TAG_class_type
:
6917 case DW_TAG_structure_type
:
6918 case DW_TAG_enumeration_type
:
6919 case DW_TAG_union_type
:
6920 /* Don't move declarations, inlined instances, types nested in a
6921 subprogram, or types that contain subprogram definitions. */
6922 if (is_declaration_die (die
)
6923 || get_AT (die
, DW_AT_abstract_origin
)
6924 || is_nested_in_subprogram (die
)
6925 || contains_subprogram_definition (die
))
6928 case DW_TAG_array_type
:
6929 case DW_TAG_interface_type
:
6930 case DW_TAG_pointer_type
:
6931 case DW_TAG_reference_type
:
6932 case DW_TAG_rvalue_reference_type
:
6933 case DW_TAG_string_type
:
6934 case DW_TAG_subroutine_type
:
6935 case DW_TAG_ptr_to_member_type
:
6936 case DW_TAG_set_type
:
6937 case DW_TAG_subrange_type
:
6938 case DW_TAG_base_type
:
6939 case DW_TAG_const_type
:
6940 case DW_TAG_file_type
:
6941 case DW_TAG_packed_type
:
6942 case DW_TAG_volatile_type
:
6943 case DW_TAG_typedef
:
6949 /* Make a clone of DIE. */
6952 clone_die (dw_die_ref die
)
6958 clone
= ggc_cleared_alloc
<die_node
> ();
6959 clone
->die_tag
= die
->die_tag
;
6961 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
6962 add_dwarf_attr (clone
, a
);
6967 /* Make a clone of the tree rooted at DIE. */
6970 clone_tree (dw_die_ref die
)
6973 dw_die_ref clone
= clone_die (die
);
6975 FOR_EACH_CHILD (die
, c
, add_child_die (clone
, clone_tree (c
)));
6980 /* Make a clone of DIE as a declaration. */
6983 clone_as_declaration (dw_die_ref die
)
6990 /* If the DIE is already a declaration, just clone it. */
6991 if (is_declaration_die (die
))
6992 return clone_die (die
);
6994 /* If the DIE is a specification, just clone its declaration DIE. */
6995 decl
= get_AT_ref (die
, DW_AT_specification
);
6998 clone
= clone_die (decl
);
6999 if (die
->comdat_type_p
)
7000 add_AT_die_ref (clone
, DW_AT_signature
, die
);
7004 clone
= ggc_cleared_alloc
<die_node
> ();
7005 clone
->die_tag
= die
->die_tag
;
7007 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7009 /* We don't want to copy over all attributes.
7010 For example we don't want DW_AT_byte_size because otherwise we will no
7011 longer have a declaration and GDB will treat it as a definition. */
7015 case DW_AT_abstract_origin
:
7016 case DW_AT_artificial
:
7017 case DW_AT_containing_type
:
7018 case DW_AT_external
:
7021 case DW_AT_virtuality
:
7022 case DW_AT_linkage_name
:
7023 case DW_AT_MIPS_linkage_name
:
7024 add_dwarf_attr (clone
, a
);
7026 case DW_AT_byte_size
:
7032 if (die
->comdat_type_p
)
7033 add_AT_die_ref (clone
, DW_AT_signature
, die
);
7035 add_AT_flag (clone
, DW_AT_declaration
, 1);
7040 /* Structure to map a DIE in one CU to its copy in a comdat type unit. */
7042 struct decl_table_entry
7048 /* Helpers to manipulate hash table of copied declarations. */
7050 /* Hashtable helpers. */
7052 struct decl_table_entry_hasher
: typed_free_remove
<decl_table_entry
>
7054 typedef decl_table_entry value_type
;
7055 typedef die_struct compare_type
;
7056 static inline hashval_t
hash (const value_type
*);
7057 static inline bool equal (const value_type
*, const compare_type
*);
7061 decl_table_entry_hasher::hash (const value_type
*entry
)
7063 return htab_hash_pointer (entry
->orig
);
7067 decl_table_entry_hasher::equal (const value_type
*entry1
,
7068 const compare_type
*entry2
)
7070 return entry1
->orig
== entry2
;
7073 typedef hash_table
<decl_table_entry_hasher
> decl_hash_type
;
7075 /* Copy DIE and its ancestors, up to, but not including, the compile unit
7076 or type unit entry, to a new tree. Adds the new tree to UNIT and returns
7077 a pointer to the copy of DIE. If DECL_TABLE is provided, it is used
7078 to check if the ancestor has already been copied into UNIT. */
7081 copy_ancestor_tree (dw_die_ref unit
, dw_die_ref die
, decl_hash_type decl_table
)
7083 dw_die_ref parent
= die
->die_parent
;
7084 dw_die_ref new_parent
= unit
;
7086 decl_table_entry
**slot
= NULL
;
7087 struct decl_table_entry
*entry
= NULL
;
7089 if (decl_table
.is_created ())
7091 /* Check if the entry has already been copied to UNIT. */
7092 slot
= decl_table
.find_slot_with_hash (die
, htab_hash_pointer (die
),
7094 if (*slot
!= HTAB_EMPTY_ENTRY
)
7100 /* Record in DECL_TABLE that DIE has been copied to UNIT. */
7101 entry
= XCNEW (struct decl_table_entry
);
7109 dw_die_ref spec
= get_AT_ref (parent
, DW_AT_specification
);
7112 if (!is_unit_die (parent
))
7113 new_parent
= copy_ancestor_tree (unit
, parent
, decl_table
);
7116 copy
= clone_as_declaration (die
);
7117 add_child_die (new_parent
, copy
);
7119 if (decl_table
.is_created ())
7121 /* Record the pointer to the copy. */
7127 /* Copy the declaration context to the new type unit DIE. This includes
7128 any surrounding namespace or type declarations. If the DIE has an
7129 AT_specification attribute, it also includes attributes and children
7130 attached to the specification, and returns a pointer to the original
7131 parent of the declaration DIE. Returns NULL otherwise. */
7134 copy_declaration_context (dw_die_ref unit
, dw_die_ref die
)
7137 dw_die_ref new_decl
;
7138 dw_die_ref orig_parent
= NULL
;
7140 decl
= get_AT_ref (die
, DW_AT_specification
);
7149 /* The original DIE will be changed to a declaration, and must
7150 be moved to be a child of the original declaration DIE. */
7151 orig_parent
= decl
->die_parent
;
7153 /* Copy the type node pointer from the new DIE to the original
7154 declaration DIE so we can forward references later. */
7155 decl
->comdat_type_p
= true;
7156 decl
->die_id
.die_type_node
= die
->die_id
.die_type_node
;
7158 remove_AT (die
, DW_AT_specification
);
7160 FOR_EACH_VEC_SAFE_ELT (decl
->die_attr
, ix
, a
)
7162 if (a
->dw_attr
!= DW_AT_name
7163 && a
->dw_attr
!= DW_AT_declaration
7164 && a
->dw_attr
!= DW_AT_external
)
7165 add_dwarf_attr (die
, a
);
7168 FOR_EACH_CHILD (decl
, c
, add_child_die (die
, clone_tree (c
)));
7171 if (decl
->die_parent
!= NULL
7172 && !is_unit_die (decl
->die_parent
))
7174 new_decl
= copy_ancestor_tree (unit
, decl
, decl_hash_type ());
7175 if (new_decl
!= NULL
)
7177 remove_AT (new_decl
, DW_AT_signature
);
7178 add_AT_specification (die
, new_decl
);
7185 /* Generate the skeleton ancestor tree for the given NODE, then clone
7186 the DIE and add the clone into the tree. */
7189 generate_skeleton_ancestor_tree (skeleton_chain_node
*node
)
7191 if (node
->new_die
!= NULL
)
7194 node
->new_die
= clone_as_declaration (node
->old_die
);
7196 if (node
->parent
!= NULL
)
7198 generate_skeleton_ancestor_tree (node
->parent
);
7199 add_child_die (node
->parent
->new_die
, node
->new_die
);
7203 /* Generate a skeleton tree of DIEs containing any declarations that are
7204 found in the original tree. We traverse the tree looking for declaration
7205 DIEs, and construct the skeleton from the bottom up whenever we find one. */
7208 generate_skeleton_bottom_up (skeleton_chain_node
*parent
)
7210 skeleton_chain_node node
;
7213 dw_die_ref prev
= NULL
;
7214 dw_die_ref next
= NULL
;
7216 node
.parent
= parent
;
7218 first
= c
= parent
->old_die
->die_child
;
7222 if (prev
== NULL
|| prev
->die_sib
== c
)
7225 next
= (c
== first
? NULL
: c
->die_sib
);
7227 node
.new_die
= NULL
;
7228 if (is_declaration_die (c
))
7230 if (is_template_instantiation (c
))
7232 /* Instantiated templates do not need to be cloned into the
7233 type unit. Just move the DIE and its children back to
7234 the skeleton tree (in the main CU). */
7235 remove_child_with_prev (c
, prev
);
7236 add_child_die (parent
->new_die
, c
);
7241 /* Clone the existing DIE, move the original to the skeleton
7242 tree (which is in the main CU), and put the clone, with
7243 all the original's children, where the original came from
7244 (which is about to be moved to the type unit). */
7245 dw_die_ref clone
= clone_die (c
);
7246 move_all_children (c
, clone
);
7248 /* If the original has a DW_AT_object_pointer attribute,
7249 it would now point to a child DIE just moved to the
7250 cloned tree, so we need to remove that attribute from
7252 remove_AT (c
, DW_AT_object_pointer
);
7254 replace_child (c
, clone
, prev
);
7255 generate_skeleton_ancestor_tree (parent
);
7256 add_child_die (parent
->new_die
, c
);
7261 generate_skeleton_bottom_up (&node
);
7262 } while (next
!= NULL
);
7265 /* Wrapper function for generate_skeleton_bottom_up. */
7268 generate_skeleton (dw_die_ref die
)
7270 skeleton_chain_node node
;
7273 node
.new_die
= NULL
;
7276 /* If this type definition is nested inside another type,
7277 and is not an instantiation of a template, always leave
7278 at least a declaration in its place. */
7279 if (die
->die_parent
!= NULL
7280 && is_type_die (die
->die_parent
)
7281 && !is_template_instantiation (die
))
7282 node
.new_die
= clone_as_declaration (die
);
7284 generate_skeleton_bottom_up (&node
);
7285 return node
.new_die
;
7288 /* Remove the CHILD DIE from its parent, possibly replacing it with a cloned
7289 declaration. The original DIE is moved to a new compile unit so that
7290 existing references to it follow it to the new location. If any of the
7291 original DIE's descendants is a declaration, we need to replace the
7292 original DIE with a skeleton tree and move the declarations back into the
7296 remove_child_or_replace_with_skeleton (dw_die_ref unit
, dw_die_ref child
,
7299 dw_die_ref skeleton
, orig_parent
;
7301 /* Copy the declaration context to the type unit DIE. If the returned
7302 ORIG_PARENT is not NULL, the skeleton needs to be added as a child of
7304 orig_parent
= copy_declaration_context (unit
, child
);
7306 skeleton
= generate_skeleton (child
);
7307 if (skeleton
== NULL
)
7308 remove_child_with_prev (child
, prev
);
7311 skeleton
->comdat_type_p
= true;
7312 skeleton
->die_id
.die_type_node
= child
->die_id
.die_type_node
;
7314 /* If the original DIE was a specification, we need to put
7315 the skeleton under the parent DIE of the declaration.
7316 This leaves the original declaration in the tree, but
7317 it will be pruned later since there are no longer any
7318 references to it. */
7319 if (orig_parent
!= NULL
)
7321 remove_child_with_prev (child
, prev
);
7322 add_child_die (orig_parent
, skeleton
);
7325 replace_child (child
, skeleton
, prev
);
7331 /* Traverse the DIE and set up additional .debug_types sections for each
7332 type worthy of being placed in a COMDAT section. */
7335 break_out_comdat_types (dw_die_ref die
)
7339 dw_die_ref prev
= NULL
;
7340 dw_die_ref next
= NULL
;
7341 dw_die_ref unit
= NULL
;
7343 first
= c
= die
->die_child
;
7347 if (prev
== NULL
|| prev
->die_sib
== c
)
7350 next
= (c
== first
? NULL
: c
->die_sib
);
7351 if (should_move_die_to_comdat (c
))
7353 dw_die_ref replacement
;
7354 comdat_type_node_ref type_node
;
7356 /* Break out nested types into their own type units. */
7357 break_out_comdat_types (c
);
7359 /* Create a new type unit DIE as the root for the new tree, and
7360 add it to the list of comdat types. */
7361 unit
= new_die (DW_TAG_type_unit
, NULL
, NULL
);
7362 add_AT_unsigned (unit
, DW_AT_language
,
7363 get_AT_unsigned (comp_unit_die (), DW_AT_language
));
7364 type_node
= ggc_cleared_alloc
<comdat_type_node
> ();
7365 type_node
->root_die
= unit
;
7366 type_node
->next
= comdat_type_list
;
7367 comdat_type_list
= type_node
;
7369 /* Generate the type signature. */
7370 generate_type_signature (c
, type_node
);
7372 /* Copy the declaration context, attributes, and children of the
7373 declaration into the new type unit DIE, then remove this DIE
7374 from the main CU (or replace it with a skeleton if necessary). */
7375 replacement
= remove_child_or_replace_with_skeleton (unit
, c
, prev
);
7376 type_node
->skeleton_die
= replacement
;
7378 /* Add the DIE to the new compunit. */
7379 add_child_die (unit
, c
);
7381 if (replacement
!= NULL
)
7384 else if (c
->die_tag
== DW_TAG_namespace
7385 || c
->die_tag
== DW_TAG_class_type
7386 || c
->die_tag
== DW_TAG_structure_type
7387 || c
->die_tag
== DW_TAG_union_type
)
7389 /* Look for nested types that can be broken out. */
7390 break_out_comdat_types (c
);
7392 } while (next
!= NULL
);
7395 /* Like clone_tree, but copy DW_TAG_subprogram DIEs as declarations.
7396 Enter all the cloned children into the hash table decl_table. */
7399 clone_tree_partial (dw_die_ref die
, decl_hash_type decl_table
)
7403 struct decl_table_entry
*entry
;
7404 decl_table_entry
**slot
;
7406 if (die
->die_tag
== DW_TAG_subprogram
)
7407 clone
= clone_as_declaration (die
);
7409 clone
= clone_die (die
);
7411 slot
= decl_table
.find_slot_with_hash (die
,
7412 htab_hash_pointer (die
), INSERT
);
7414 /* Assert that DIE isn't in the hash table yet. If it would be there
7415 before, the ancestors would be necessarily there as well, therefore
7416 clone_tree_partial wouldn't be called. */
7417 gcc_assert (*slot
== HTAB_EMPTY_ENTRY
);
7419 entry
= XCNEW (struct decl_table_entry
);
7421 entry
->copy
= clone
;
7424 if (die
->die_tag
!= DW_TAG_subprogram
)
7425 FOR_EACH_CHILD (die
, c
,
7426 add_child_die (clone
, clone_tree_partial (c
, decl_table
)));
7431 /* Walk the DIE and its children, looking for references to incomplete
7432 or trivial types that are unmarked (i.e., that are not in the current
7436 copy_decls_walk (dw_die_ref unit
, dw_die_ref die
, decl_hash_type decl_table
)
7442 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7444 if (AT_class (a
) == dw_val_class_die_ref
)
7446 dw_die_ref targ
= AT_ref (a
);
7447 decl_table_entry
**slot
;
7448 struct decl_table_entry
*entry
;
7450 if (targ
->die_mark
!= 0 || targ
->comdat_type_p
)
7453 slot
= decl_table
.find_slot_with_hash (targ
, htab_hash_pointer (targ
),
7456 if (*slot
!= HTAB_EMPTY_ENTRY
)
7458 /* TARG has already been copied, so we just need to
7459 modify the reference to point to the copy. */
7461 a
->dw_attr_val
.v
.val_die_ref
.die
= entry
->copy
;
7465 dw_die_ref parent
= unit
;
7466 dw_die_ref copy
= clone_die (targ
);
7468 /* Record in DECL_TABLE that TARG has been copied.
7469 Need to do this now, before the recursive call,
7470 because DECL_TABLE may be expanded and SLOT
7471 would no longer be a valid pointer. */
7472 entry
= XCNEW (struct decl_table_entry
);
7477 /* If TARG is not a declaration DIE, we need to copy its
7479 if (!is_declaration_die (targ
))
7483 add_child_die (copy
,
7484 clone_tree_partial (c
, decl_table
)));
7487 /* Make sure the cloned tree is marked as part of the
7491 /* If TARG has surrounding context, copy its ancestor tree
7492 into the new type unit. */
7493 if (targ
->die_parent
!= NULL
7494 && !is_unit_die (targ
->die_parent
))
7495 parent
= copy_ancestor_tree (unit
, targ
->die_parent
,
7498 add_child_die (parent
, copy
);
7499 a
->dw_attr_val
.v
.val_die_ref
.die
= copy
;
7501 /* Make sure the newly-copied DIE is walked. If it was
7502 installed in a previously-added context, it won't
7503 get visited otherwise. */
7506 /* Find the highest point of the newly-added tree,
7507 mark each node along the way, and walk from there. */
7508 parent
->die_mark
= 1;
7509 while (parent
->die_parent
7510 && parent
->die_parent
->die_mark
== 0)
7512 parent
= parent
->die_parent
;
7513 parent
->die_mark
= 1;
7515 copy_decls_walk (unit
, parent
, decl_table
);
7521 FOR_EACH_CHILD (die
, c
, copy_decls_walk (unit
, c
, decl_table
));
7524 /* Copy declarations for "unworthy" types into the new comdat section.
7525 Incomplete types, modified types, and certain other types aren't broken
7526 out into comdat sections of their own, so they don't have a signature,
7527 and we need to copy the declaration into the same section so that we
7528 don't have an external reference. */
7531 copy_decls_for_unworthy_types (dw_die_ref unit
)
7533 decl_hash_type decl_table
;
7536 decl_table
.create (10);
7537 copy_decls_walk (unit
, unit
, decl_table
);
7538 decl_table
.dispose ();
7542 /* Traverse the DIE and add a sibling attribute if it may have the
7543 effect of speeding up access to siblings. To save some space,
7544 avoid generating sibling attributes for DIE's without children. */
7547 add_sibling_attributes (dw_die_ref die
)
7551 if (! die
->die_child
)
7554 if (die
->die_parent
&& die
!= die
->die_parent
->die_child
)
7555 add_AT_die_ref (die
, DW_AT_sibling
, die
->die_sib
);
7557 FOR_EACH_CHILD (die
, c
, add_sibling_attributes (c
));
7560 /* Output all location lists for the DIE and its children. */
7563 output_location_lists (dw_die_ref die
)
7569 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7570 if (AT_class (a
) == dw_val_class_loc_list
)
7571 output_loc_list (AT_loc_list (a
));
7573 FOR_EACH_CHILD (die
, c
, output_location_lists (c
));
7576 /* We want to limit the number of external references, because they are
7577 larger than local references: a relocation takes multiple words, and
7578 even a sig8 reference is always eight bytes, whereas a local reference
7579 can be as small as one byte (though DW_FORM_ref is usually 4 in GCC).
7580 So if we encounter multiple external references to the same type DIE, we
7581 make a local typedef stub for it and redirect all references there.
7583 This is the element of the hash table for keeping track of these
7593 /* Hashtable helpers. */
7595 struct external_ref_hasher
: typed_free_remove
<external_ref
>
7597 typedef external_ref value_type
;
7598 typedef external_ref compare_type
;
7599 static inline hashval_t
hash (const value_type
*);
7600 static inline bool equal (const value_type
*, const compare_type
*);
7604 external_ref_hasher::hash (const value_type
*r
)
7606 dw_die_ref die
= r
->type
;
7609 /* We can't use the address of the DIE for hashing, because
7610 that will make the order of the stub DIEs non-deterministic. */
7611 if (! die
->comdat_type_p
)
7612 /* We have a symbol; use it to compute a hash. */
7613 h
= htab_hash_string (die
->die_id
.die_symbol
);
7616 /* We have a type signature; use a subset of the bits as the hash.
7617 The 8-byte signature is at least as large as hashval_t. */
7618 comdat_type_node_ref type_node
= die
->die_id
.die_type_node
;
7619 memcpy (&h
, type_node
->signature
, sizeof (h
));
7625 external_ref_hasher::equal (const value_type
*r1
, const compare_type
*r2
)
7627 return r1
->type
== r2
->type
;
7630 typedef hash_table
<external_ref_hasher
> external_ref_hash_type
;
7632 /* Return a pointer to the external_ref for references to DIE. */
7634 static struct external_ref
*
7635 lookup_external_ref (external_ref_hash_type map
, dw_die_ref die
)
7637 struct external_ref ref
, *ref_p
;
7638 external_ref
**slot
;
7641 slot
= map
.find_slot (&ref
, INSERT
);
7642 if (*slot
!= HTAB_EMPTY_ENTRY
)
7645 ref_p
= XCNEW (struct external_ref
);
7651 /* Subroutine of optimize_external_refs, below.
7653 If we see a type skeleton, record it as our stub. If we see external
7654 references, remember how many we've seen. */
7657 optimize_external_refs_1 (dw_die_ref die
, external_ref_hash_type map
)
7662 struct external_ref
*ref_p
;
7664 if (is_type_die (die
)
7665 && (c
= get_AT_ref (die
, DW_AT_signature
)))
7667 /* This is a local skeleton; use it for local references. */
7668 ref_p
= lookup_external_ref (map
, c
);
7672 /* Scan the DIE references, and remember any that refer to DIEs from
7673 other CUs (i.e. those which are not marked). */
7674 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7675 if (AT_class (a
) == dw_val_class_die_ref
7676 && (c
= AT_ref (a
))->die_mark
== 0
7679 ref_p
= lookup_external_ref (map
, c
);
7683 FOR_EACH_CHILD (die
, c
, optimize_external_refs_1 (c
, map
));
7686 /* htab_traverse callback function for optimize_external_refs, below. SLOT
7687 points to an external_ref, DATA is the CU we're processing. If we don't
7688 already have a local stub, and we have multiple refs, build a stub. */
7691 dwarf2_build_local_stub (external_ref
**slot
, dw_die_ref data
)
7693 struct external_ref
*ref_p
= *slot
;
7695 if (ref_p
->stub
== NULL
&& ref_p
->n_refs
> 1 && !dwarf_strict
)
7697 /* We have multiple references to this type, so build a small stub.
7698 Both of these forms are a bit dodgy from the perspective of the
7699 DWARF standard, since technically they should have names. */
7700 dw_die_ref cu
= data
;
7701 dw_die_ref type
= ref_p
->type
;
7702 dw_die_ref stub
= NULL
;
7704 if (type
->comdat_type_p
)
7706 /* If we refer to this type via sig8, use AT_signature. */
7707 stub
= new_die (type
->die_tag
, cu
, NULL_TREE
);
7708 add_AT_die_ref (stub
, DW_AT_signature
, type
);
7712 /* Otherwise, use a typedef with no name. */
7713 stub
= new_die (DW_TAG_typedef
, cu
, NULL_TREE
);
7714 add_AT_die_ref (stub
, DW_AT_type
, type
);
7723 /* DIE is a unit; look through all the DIE references to see if there are
7724 any external references to types, and if so, create local stubs for
7725 them which will be applied in build_abbrev_table. This is useful because
7726 references to local DIEs are smaller. */
7728 static external_ref_hash_type
7729 optimize_external_refs (dw_die_ref die
)
7731 external_ref_hash_type map
;
7733 optimize_external_refs_1 (die
, map
);
7734 map
.traverse
<dw_die_ref
, dwarf2_build_local_stub
> (die
);
7738 /* The format of each DIE (and its attribute value pairs) is encoded in an
7739 abbreviation table. This routine builds the abbreviation table and assigns
7740 a unique abbreviation id for each abbreviation entry. The children of each
7741 die are visited recursively. */
7744 build_abbrev_table (dw_die_ref die
, external_ref_hash_type extern_map
)
7746 unsigned long abbrev_id
;
7747 unsigned int n_alloc
;
7752 /* Scan the DIE references, and replace any that refer to
7753 DIEs from other CUs (i.e. those which are not marked) with
7754 the local stubs we built in optimize_external_refs. */
7755 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7756 if (AT_class (a
) == dw_val_class_die_ref
7757 && (c
= AT_ref (a
))->die_mark
== 0)
7759 struct external_ref
*ref_p
;
7760 gcc_assert (AT_ref (a
)->comdat_type_p
|| AT_ref (a
)->die_id
.die_symbol
);
7762 ref_p
= lookup_external_ref (extern_map
, c
);
7763 if (ref_p
->stub
&& ref_p
->stub
!= die
)
7764 change_AT_die_ref (a
, ref_p
->stub
);
7766 /* We aren't changing this reference, so mark it external. */
7767 set_AT_ref_external (a
, 1);
7770 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
7772 dw_die_ref abbrev
= abbrev_die_table
[abbrev_id
];
7773 dw_attr_ref die_a
, abbrev_a
;
7777 if (abbrev
->die_tag
!= die
->die_tag
)
7779 if ((abbrev
->die_child
!= NULL
) != (die
->die_child
!= NULL
))
7782 if (vec_safe_length (abbrev
->die_attr
) != vec_safe_length (die
->die_attr
))
7785 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, die_a
)
7787 abbrev_a
= &(*abbrev
->die_attr
)[ix
];
7788 if ((abbrev_a
->dw_attr
!= die_a
->dw_attr
)
7789 || (value_format (abbrev_a
) != value_format (die_a
)))
7799 if (abbrev_id
>= abbrev_die_table_in_use
)
7801 if (abbrev_die_table_in_use
>= abbrev_die_table_allocated
)
7803 n_alloc
= abbrev_die_table_allocated
+ ABBREV_DIE_TABLE_INCREMENT
;
7804 abbrev_die_table
= GGC_RESIZEVEC (dw_die_ref
, abbrev_die_table
,
7807 memset (&abbrev_die_table
[abbrev_die_table_allocated
], 0,
7808 (n_alloc
- abbrev_die_table_allocated
) * sizeof (dw_die_ref
));
7809 abbrev_die_table_allocated
= n_alloc
;
7812 ++abbrev_die_table_in_use
;
7813 abbrev_die_table
[abbrev_id
] = die
;
7816 die
->die_abbrev
= abbrev_id
;
7817 FOR_EACH_CHILD (die
, c
, build_abbrev_table (c
, extern_map
));
7820 /* Return the power-of-two number of bytes necessary to represent VALUE. */
7823 constant_size (unsigned HOST_WIDE_INT value
)
7830 log
= floor_log2 (value
);
7833 log
= 1 << (floor_log2 (log
) + 1);
7838 /* Return the size of a DIE as it is represented in the
7839 .debug_info section. */
7841 static unsigned long
7842 size_of_die (dw_die_ref die
)
7844 unsigned long size
= 0;
7847 enum dwarf_form form
;
7849 size
+= size_of_uleb128 (die
->die_abbrev
);
7850 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
7852 switch (AT_class (a
))
7854 case dw_val_class_addr
:
7855 if (dwarf_split_debug_info
&& AT_index (a
) != NOT_INDEXED
)
7857 gcc_assert (AT_index (a
) != NO_INDEX_ASSIGNED
);
7858 size
+= size_of_uleb128 (AT_index (a
));
7861 size
+= DWARF2_ADDR_SIZE
;
7863 case dw_val_class_offset
:
7864 size
+= DWARF_OFFSET_SIZE
;
7866 case dw_val_class_loc
:
7868 unsigned long lsize
= size_of_locs (AT_loc (a
));
7871 if (dwarf_version
>= 4)
7872 size
+= size_of_uleb128 (lsize
);
7874 size
+= constant_size (lsize
);
7878 case dw_val_class_loc_list
:
7879 if (dwarf_split_debug_info
&& AT_index (a
) != NOT_INDEXED
)
7881 gcc_assert (AT_index (a
) != NO_INDEX_ASSIGNED
);
7882 size
+= size_of_uleb128 (AT_index (a
));
7885 size
+= DWARF_OFFSET_SIZE
;
7887 case dw_val_class_range_list
:
7888 size
+= DWARF_OFFSET_SIZE
;
7890 case dw_val_class_const
:
7891 size
+= size_of_sleb128 (AT_int (a
));
7893 case dw_val_class_unsigned_const
:
7895 int csize
= constant_size (AT_unsigned (a
));
7896 if (dwarf_version
== 3
7897 && a
->dw_attr
== DW_AT_data_member_location
7899 size
+= size_of_uleb128 (AT_unsigned (a
));
7904 case dw_val_class_const_double
:
7905 size
+= HOST_BITS_PER_DOUBLE_INT
/ HOST_BITS_PER_CHAR
;
7906 if (HOST_BITS_PER_WIDE_INT
>= 64)
7909 case dw_val_class_wide_int
:
7910 size
+= (get_full_len (*a
->dw_attr_val
.v
.val_wide
)
7911 * HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
);
7912 if (get_full_len (*a
->dw_attr_val
.v
.val_wide
) * HOST_BITS_PER_WIDE_INT
7916 case dw_val_class_vec
:
7917 size
+= constant_size (a
->dw_attr_val
.v
.val_vec
.length
7918 * a
->dw_attr_val
.v
.val_vec
.elt_size
)
7919 + a
->dw_attr_val
.v
.val_vec
.length
7920 * a
->dw_attr_val
.v
.val_vec
.elt_size
; /* block */
7922 case dw_val_class_flag
:
7923 if (dwarf_version
>= 4)
7924 /* Currently all add_AT_flag calls pass in 1 as last argument,
7925 so DW_FORM_flag_present can be used. If that ever changes,
7926 we'll need to use DW_FORM_flag and have some optimization
7927 in build_abbrev_table that will change those to
7928 DW_FORM_flag_present if it is set to 1 in all DIEs using
7929 the same abbrev entry. */
7930 gcc_assert (a
->dw_attr_val
.v
.val_flag
== 1);
7934 case dw_val_class_die_ref
:
7935 if (AT_ref_external (a
))
7937 /* In DWARF4, we use DW_FORM_ref_sig8; for earlier versions
7938 we use DW_FORM_ref_addr. In DWARF2, DW_FORM_ref_addr
7939 is sized by target address length, whereas in DWARF3
7940 it's always sized as an offset. */
7941 if (use_debug_types
)
7942 size
+= DWARF_TYPE_SIGNATURE_SIZE
;
7943 else if (dwarf_version
== 2)
7944 size
+= DWARF2_ADDR_SIZE
;
7946 size
+= DWARF_OFFSET_SIZE
;
7949 size
+= DWARF_OFFSET_SIZE
;
7951 case dw_val_class_fde_ref
:
7952 size
+= DWARF_OFFSET_SIZE
;
7954 case dw_val_class_lbl_id
:
7955 if (dwarf_split_debug_info
&& AT_index (a
) != NOT_INDEXED
)
7957 gcc_assert (AT_index (a
) != NO_INDEX_ASSIGNED
);
7958 size
+= size_of_uleb128 (AT_index (a
));
7961 size
+= DWARF2_ADDR_SIZE
;
7963 case dw_val_class_lineptr
:
7964 case dw_val_class_macptr
:
7965 size
+= DWARF_OFFSET_SIZE
;
7967 case dw_val_class_str
:
7968 form
= AT_string_form (a
);
7969 if (form
== DW_FORM_strp
)
7970 size
+= DWARF_OFFSET_SIZE
;
7971 else if (form
== DW_FORM_GNU_str_index
)
7972 size
+= size_of_uleb128 (AT_index (a
));
7974 size
+= strlen (a
->dw_attr_val
.v
.val_str
->str
) + 1;
7976 case dw_val_class_file
:
7977 size
+= constant_size (maybe_emit_file (a
->dw_attr_val
.v
.val_file
));
7979 case dw_val_class_data8
:
7982 case dw_val_class_vms_delta
:
7983 size
+= DWARF_OFFSET_SIZE
;
7985 case dw_val_class_high_pc
:
7986 size
+= DWARF2_ADDR_SIZE
;
7996 /* Size the debugging information associated with a given DIE. Visits the
7997 DIE's children recursively. Updates the global variable next_die_offset, on
7998 each time through. Uses the current value of next_die_offset to update the
7999 die_offset field in each DIE. */
8002 calc_die_sizes (dw_die_ref die
)
8006 gcc_assert (die
->die_offset
== 0
8007 || (unsigned long int) die
->die_offset
== next_die_offset
);
8008 die
->die_offset
= next_die_offset
;
8009 next_die_offset
+= size_of_die (die
);
8011 FOR_EACH_CHILD (die
, c
, calc_die_sizes (c
));
8013 if (die
->die_child
!= NULL
)
8014 /* Count the null byte used to terminate sibling lists. */
8015 next_die_offset
+= 1;
8018 /* Size just the base type children at the start of the CU.
8019 This is needed because build_abbrev needs to size locs
8020 and sizing of type based stack ops needs to know die_offset
8021 values for the base types. */
8024 calc_base_type_die_sizes (void)
8026 unsigned long die_offset
= DWARF_COMPILE_UNIT_HEADER_SIZE
;
8028 dw_die_ref base_type
;
8029 #if ENABLE_ASSERT_CHECKING
8030 dw_die_ref prev
= comp_unit_die ()->die_child
;
8033 die_offset
+= size_of_die (comp_unit_die ());
8034 for (i
= 0; base_types
.iterate (i
, &base_type
); i
++)
8036 #if ENABLE_ASSERT_CHECKING
8037 gcc_assert (base_type
->die_offset
== 0
8038 && prev
->die_sib
== base_type
8039 && base_type
->die_child
== NULL
8040 && base_type
->die_abbrev
);
8043 base_type
->die_offset
= die_offset
;
8044 die_offset
+= size_of_die (base_type
);
8048 /* Set the marks for a die and its children. We do this so
8049 that we know whether or not a reference needs to use FORM_ref_addr; only
8050 DIEs in the same CU will be marked. We used to clear out the offset
8051 and use that as the flag, but ran into ordering problems. */
8054 mark_dies (dw_die_ref die
)
8058 gcc_assert (!die
->die_mark
);
8061 FOR_EACH_CHILD (die
, c
, mark_dies (c
));
8064 /* Clear the marks for a die and its children. */
8067 unmark_dies (dw_die_ref die
)
8071 if (! use_debug_types
)
8072 gcc_assert (die
->die_mark
);
8075 FOR_EACH_CHILD (die
, c
, unmark_dies (c
));
8078 /* Clear the marks for a die, its children and referred dies. */
8081 unmark_all_dies (dw_die_ref die
)
8091 FOR_EACH_CHILD (die
, c
, unmark_all_dies (c
));
8093 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
8094 if (AT_class (a
) == dw_val_class_die_ref
)
8095 unmark_all_dies (AT_ref (a
));
8098 /* Calculate if the entry should appear in the final output file. It may be
8099 from a pruned a type. */
8102 include_pubname_in_output (vec
<pubname_entry
, va_gc
> *table
, pubname_entry
*p
)
8104 /* By limiting gnu pubnames to definitions only, gold can generate a
8105 gdb index without entries for declarations, which don't include
8106 enough information to be useful. */
8107 if (debug_generate_pub_sections
== 2 && is_declaration_die (p
->die
))
8110 if (table
== pubname_table
)
8112 /* Enumerator names are part of the pubname table, but the
8113 parent DW_TAG_enumeration_type die may have been pruned.
8114 Don't output them if that is the case. */
8115 if (p
->die
->die_tag
== DW_TAG_enumerator
&&
8116 (p
->die
->die_parent
== NULL
8117 || !p
->die
->die_parent
->die_perennial_p
))
8120 /* Everything else in the pubname table is included. */
8124 /* The pubtypes table shouldn't include types that have been
8126 return (p
->die
->die_offset
!= 0
8127 || !flag_eliminate_unused_debug_types
);
8130 /* Return the size of the .debug_pubnames or .debug_pubtypes table
8131 generated for the compilation unit. */
8133 static unsigned long
8134 size_of_pubnames (vec
<pubname_entry
, va_gc
> *names
)
8139 int space_for_flags
= (debug_generate_pub_sections
== 2) ? 1 : 0;
8141 size
= DWARF_PUBNAMES_HEADER_SIZE
;
8142 FOR_EACH_VEC_ELT (*names
, i
, p
)
8143 if (include_pubname_in_output (names
, p
))
8144 size
+= strlen (p
->name
) + DWARF_OFFSET_SIZE
+ 1 + space_for_flags
;
8146 size
+= DWARF_OFFSET_SIZE
;
8150 /* Return the size of the information in the .debug_aranges section. */
8152 static unsigned long
8153 size_of_aranges (void)
8157 size
= DWARF_ARANGES_HEADER_SIZE
;
8159 /* Count the address/length pair for this compilation unit. */
8160 if (text_section_used
)
8161 size
+= 2 * DWARF2_ADDR_SIZE
;
8162 if (cold_text_section_used
)
8163 size
+= 2 * DWARF2_ADDR_SIZE
;
8164 if (have_multiple_function_sections
)
8169 FOR_EACH_VEC_ELT (*fde_vec
, fde_idx
, fde
)
8171 if (DECL_IGNORED_P (fde
->decl
))
8173 if (!fde
->in_std_section
)
8174 size
+= 2 * DWARF2_ADDR_SIZE
;
8175 if (fde
->dw_fde_second_begin
&& !fde
->second_in_std_section
)
8176 size
+= 2 * DWARF2_ADDR_SIZE
;
8180 /* Count the two zero words used to terminated the address range table. */
8181 size
+= 2 * DWARF2_ADDR_SIZE
;
8185 /* Select the encoding of an attribute value. */
8187 static enum dwarf_form
8188 value_format (dw_attr_ref a
)
8190 switch (AT_class (a
))
8192 case dw_val_class_addr
:
8193 /* Only very few attributes allow DW_FORM_addr. */
8198 case DW_AT_entry_pc
:
8199 case DW_AT_trampoline
:
8200 return (AT_index (a
) == NOT_INDEXED
8201 ? DW_FORM_addr
: DW_FORM_GNU_addr_index
);
8205 switch (DWARF2_ADDR_SIZE
)
8208 return DW_FORM_data1
;
8210 return DW_FORM_data2
;
8212 return DW_FORM_data4
;
8214 return DW_FORM_data8
;
8218 case dw_val_class_range_list
:
8219 case dw_val_class_loc_list
:
8220 if (dwarf_version
>= 4)
8221 return DW_FORM_sec_offset
;
8223 case dw_val_class_vms_delta
:
8224 case dw_val_class_offset
:
8225 switch (DWARF_OFFSET_SIZE
)
8228 return DW_FORM_data4
;
8230 return DW_FORM_data8
;
8234 case dw_val_class_loc
:
8235 if (dwarf_version
>= 4)
8236 return DW_FORM_exprloc
;
8237 switch (constant_size (size_of_locs (AT_loc (a
))))
8240 return DW_FORM_block1
;
8242 return DW_FORM_block2
;
8244 return DW_FORM_block4
;
8248 case dw_val_class_const
:
8249 return DW_FORM_sdata
;
8250 case dw_val_class_unsigned_const
:
8251 switch (constant_size (AT_unsigned (a
)))
8254 return DW_FORM_data1
;
8256 return DW_FORM_data2
;
8258 /* In DWARF3 DW_AT_data_member_location with
8259 DW_FORM_data4 or DW_FORM_data8 is a loclistptr, not
8260 constant, so we need to use DW_FORM_udata if we need
8261 a large constant. */
8262 if (dwarf_version
== 3 && a
->dw_attr
== DW_AT_data_member_location
)
8263 return DW_FORM_udata
;
8264 return DW_FORM_data4
;
8266 if (dwarf_version
== 3 && a
->dw_attr
== DW_AT_data_member_location
)
8267 return DW_FORM_udata
;
8268 return DW_FORM_data8
;
8272 case dw_val_class_const_double
:
8273 switch (HOST_BITS_PER_WIDE_INT
)
8276 return DW_FORM_data2
;
8278 return DW_FORM_data4
;
8280 return DW_FORM_data8
;
8283 return DW_FORM_block1
;
8285 case dw_val_class_wide_int
:
8286 switch (get_full_len (*a
->dw_attr_val
.v
.val_wide
) * HOST_BITS_PER_WIDE_INT
)
8289 return DW_FORM_data1
;
8291 return DW_FORM_data2
;
8293 return DW_FORM_data4
;
8295 return DW_FORM_data8
;
8297 return DW_FORM_block1
;
8299 case dw_val_class_vec
:
8300 switch (constant_size (a
->dw_attr_val
.v
.val_vec
.length
8301 * a
->dw_attr_val
.v
.val_vec
.elt_size
))
8304 return DW_FORM_block1
;
8306 return DW_FORM_block2
;
8308 return DW_FORM_block4
;
8312 case dw_val_class_flag
:
8313 if (dwarf_version
>= 4)
8315 /* Currently all add_AT_flag calls pass in 1 as last argument,
8316 so DW_FORM_flag_present can be used. If that ever changes,
8317 we'll need to use DW_FORM_flag and have some optimization
8318 in build_abbrev_table that will change those to
8319 DW_FORM_flag_present if it is set to 1 in all DIEs using
8320 the same abbrev entry. */
8321 gcc_assert (a
->dw_attr_val
.v
.val_flag
== 1);
8322 return DW_FORM_flag_present
;
8324 return DW_FORM_flag
;
8325 case dw_val_class_die_ref
:
8326 if (AT_ref_external (a
))
8327 return use_debug_types
? DW_FORM_ref_sig8
: DW_FORM_ref_addr
;
8330 case dw_val_class_fde_ref
:
8331 return DW_FORM_data
;
8332 case dw_val_class_lbl_id
:
8333 return (AT_index (a
) == NOT_INDEXED
8334 ? DW_FORM_addr
: DW_FORM_GNU_addr_index
);
8335 case dw_val_class_lineptr
:
8336 case dw_val_class_macptr
:
8337 return dwarf_version
>= 4 ? DW_FORM_sec_offset
: DW_FORM_data
;
8338 case dw_val_class_str
:
8339 return AT_string_form (a
);
8340 case dw_val_class_file
:
8341 switch (constant_size (maybe_emit_file (a
->dw_attr_val
.v
.val_file
)))
8344 return DW_FORM_data1
;
8346 return DW_FORM_data2
;
8348 return DW_FORM_data4
;
8353 case dw_val_class_data8
:
8354 return DW_FORM_data8
;
8356 case dw_val_class_high_pc
:
8357 switch (DWARF2_ADDR_SIZE
)
8360 return DW_FORM_data1
;
8362 return DW_FORM_data2
;
8364 return DW_FORM_data4
;
8366 return DW_FORM_data8
;
8376 /* Output the encoding of an attribute value. */
8379 output_value_format (dw_attr_ref a
)
8381 enum dwarf_form form
= value_format (a
);
8383 dw2_asm_output_data_uleb128 (form
, "(%s)", dwarf_form_name (form
));
8386 /* Given a die and id, produce the appropriate abbreviations. */
8389 output_die_abbrevs (unsigned long abbrev_id
, dw_die_ref abbrev
)
8394 dw2_asm_output_data_uleb128 (abbrev_id
, "(abbrev code)");
8395 dw2_asm_output_data_uleb128 (abbrev
->die_tag
, "(TAG: %s)",
8396 dwarf_tag_name (abbrev
->die_tag
));
8398 if (abbrev
->die_child
!= NULL
)
8399 dw2_asm_output_data (1, DW_children_yes
, "DW_children_yes");
8401 dw2_asm_output_data (1, DW_children_no
, "DW_children_no");
8403 for (ix
= 0; vec_safe_iterate (abbrev
->die_attr
, ix
, &a_attr
); ix
++)
8405 dw2_asm_output_data_uleb128 (a_attr
->dw_attr
, "(%s)",
8406 dwarf_attr_name (a_attr
->dw_attr
));
8407 output_value_format (a_attr
);
8410 dw2_asm_output_data (1, 0, NULL
);
8411 dw2_asm_output_data (1, 0, NULL
);
8415 /* Output the .debug_abbrev section which defines the DIE abbreviation
8419 output_abbrev_section (void)
8421 unsigned long abbrev_id
;
8423 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
8424 output_die_abbrevs (abbrev_id
, abbrev_die_table
[abbrev_id
]);
8426 /* Terminate the table. */
8427 dw2_asm_output_data (1, 0, NULL
);
8430 /* Output a symbol we can use to refer to this DIE from another CU. */
8433 output_die_symbol (dw_die_ref die
)
8435 const char *sym
= die
->die_id
.die_symbol
;
8437 gcc_assert (!die
->comdat_type_p
);
8442 if (strncmp (sym
, DIE_LABEL_PREFIX
, sizeof (DIE_LABEL_PREFIX
) - 1) == 0)
8443 /* We make these global, not weak; if the target doesn't support
8444 .linkonce, it doesn't support combining the sections, so debugging
8446 targetm
.asm_out
.globalize_label (asm_out_file
, sym
);
8448 ASM_OUTPUT_LABEL (asm_out_file
, sym
);
8451 /* Return a new location list, given the begin and end range, and the
8454 static inline dw_loc_list_ref
8455 new_loc_list (dw_loc_descr_ref expr
, const char *begin
, const char *end
,
8456 const char *section
)
8458 dw_loc_list_ref retlist
= ggc_cleared_alloc
<dw_loc_list_node
> ();
8460 retlist
->begin
= begin
;
8461 retlist
->begin_entry
= NULL
;
8463 retlist
->expr
= expr
;
8464 retlist
->section
= section
;
8469 /* Generate a new internal symbol for this location list node, if it
8470 hasn't got one yet. */
8473 gen_llsym (dw_loc_list_ref list
)
8475 gcc_assert (!list
->ll_symbol
);
8476 list
->ll_symbol
= gen_internal_sym ("LLST");
8479 /* Output the location list given to us. */
8482 output_loc_list (dw_loc_list_ref list_head
)
8484 dw_loc_list_ref curr
= list_head
;
8486 if (list_head
->emitted
)
8488 list_head
->emitted
= true;
8490 ASM_OUTPUT_LABEL (asm_out_file
, list_head
->ll_symbol
);
8492 /* Walk the location list, and output each range + expression. */
8493 for (curr
= list_head
; curr
!= NULL
; curr
= curr
->dw_loc_next
)
8496 /* Don't output an entry that starts and ends at the same address. */
8497 if (strcmp (curr
->begin
, curr
->end
) == 0 && !curr
->force
)
8499 size
= size_of_locs (curr
->expr
);
8500 /* If the expression is too large, drop it on the floor. We could
8501 perhaps put it into DW_TAG_dwarf_procedure and refer to that
8502 in the expression, but >= 64KB expressions for a single value
8503 in a single range are unlikely very useful. */
8506 if (dwarf_split_debug_info
)
8508 dw2_asm_output_data (1, DW_LLE_GNU_start_length_entry
,
8509 "Location list start/length entry (%s)",
8510 list_head
->ll_symbol
);
8511 dw2_asm_output_data_uleb128 (curr
->begin_entry
->index
,
8512 "Location list range start index (%s)",
8514 /* The length field is 4 bytes. If we ever need to support
8515 an 8-byte length, we can add a new DW_LLE code or fall back
8516 to DW_LLE_GNU_start_end_entry. */
8517 dw2_asm_output_delta (4, curr
->end
, curr
->begin
,
8518 "Location list range length (%s)",
8519 list_head
->ll_symbol
);
8521 else if (!have_multiple_function_sections
)
8523 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->begin
, curr
->section
,
8524 "Location list begin address (%s)",
8525 list_head
->ll_symbol
);
8526 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->end
, curr
->section
,
8527 "Location list end address (%s)",
8528 list_head
->ll_symbol
);
8532 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->begin
,
8533 "Location list begin address (%s)",
8534 list_head
->ll_symbol
);
8535 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->end
,
8536 "Location list end address (%s)",
8537 list_head
->ll_symbol
);
8540 /* Output the block length for this list of location operations. */
8541 gcc_assert (size
<= 0xffff);
8542 dw2_asm_output_data (2, size
, "%s", "Location expression size");
8544 output_loc_sequence (curr
->expr
, -1);
8547 if (dwarf_split_debug_info
)
8548 dw2_asm_output_data (1, DW_LLE_GNU_end_of_list_entry
,
8549 "Location list terminator (%s)",
8550 list_head
->ll_symbol
);
8553 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
8554 "Location list terminator begin (%s)",
8555 list_head
->ll_symbol
);
8556 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
8557 "Location list terminator end (%s)",
8558 list_head
->ll_symbol
);
8562 /* Output a range_list offset into the debug_range section. Emit a
8563 relocated reference if val_entry is NULL, otherwise, emit an
8564 indirect reference. */
8567 output_range_list_offset (dw_attr_ref a
)
8569 const char *name
= dwarf_attr_name (a
->dw_attr
);
8571 if (a
->dw_attr_val
.val_entry
== RELOCATED_OFFSET
)
8573 char *p
= strchr (ranges_section_label
, '\0');
8574 sprintf (p
, "+" HOST_WIDE_INT_PRINT_HEX
, a
->dw_attr_val
.v
.val_offset
);
8575 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, ranges_section_label
,
8576 debug_ranges_section
, "%s", name
);
8580 dw2_asm_output_data (DWARF_OFFSET_SIZE
, a
->dw_attr_val
.v
.val_offset
,
8581 "%s (offset from %s)", name
, ranges_section_label
);
8584 /* Output the offset into the debug_loc section. */
8587 output_loc_list_offset (dw_attr_ref a
)
8589 char *sym
= AT_loc_list (a
)->ll_symbol
;
8592 if (dwarf_split_debug_info
)
8593 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, sym
, loc_section_label
,
8594 "%s", dwarf_attr_name (a
->dw_attr
));
8596 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, sym
, debug_loc_section
,
8597 "%s", dwarf_attr_name (a
->dw_attr
));
8600 /* Output an attribute's index or value appropriately. */
8603 output_attr_index_or_value (dw_attr_ref a
)
8605 const char *name
= dwarf_attr_name (a
->dw_attr
);
8607 if (dwarf_split_debug_info
&& AT_index (a
) != NOT_INDEXED
)
8609 dw2_asm_output_data_uleb128 (AT_index (a
), "%s", name
);
8612 switch (AT_class (a
))
8614 case dw_val_class_addr
:
8615 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, AT_addr (a
), "%s", name
);
8617 case dw_val_class_high_pc
:
8618 case dw_val_class_lbl_id
:
8619 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, AT_lbl (a
), "%s", name
);
8621 case dw_val_class_loc_list
:
8622 output_loc_list_offset (a
);
8629 /* Output a type signature. */
8632 output_signature (const char *sig
, const char *name
)
8636 for (i
= 0; i
< DWARF_TYPE_SIGNATURE_SIZE
; i
++)
8637 dw2_asm_output_data (1, sig
[i
], i
== 0 ? "%s" : NULL
, name
);
8640 /* Output the DIE and its attributes. Called recursively to generate
8641 the definitions of each child DIE. */
8644 output_die (dw_die_ref die
)
8651 /* If someone in another CU might refer to us, set up a symbol for
8652 them to point to. */
8653 if (! die
->comdat_type_p
&& die
->die_id
.die_symbol
)
8654 output_die_symbol (die
);
8656 dw2_asm_output_data_uleb128 (die
->die_abbrev
, "(DIE (%#lx) %s)",
8657 (unsigned long)die
->die_offset
,
8658 dwarf_tag_name (die
->die_tag
));
8660 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
8662 const char *name
= dwarf_attr_name (a
->dw_attr
);
8664 switch (AT_class (a
))
8666 case dw_val_class_addr
:
8667 output_attr_index_or_value (a
);
8670 case dw_val_class_offset
:
8671 dw2_asm_output_data (DWARF_OFFSET_SIZE
, a
->dw_attr_val
.v
.val_offset
,
8675 case dw_val_class_range_list
:
8676 output_range_list_offset (a
);
8679 case dw_val_class_loc
:
8680 size
= size_of_locs (AT_loc (a
));
8682 /* Output the block length for this list of location operations. */
8683 if (dwarf_version
>= 4)
8684 dw2_asm_output_data_uleb128 (size
, "%s", name
);
8686 dw2_asm_output_data (constant_size (size
), size
, "%s", name
);
8688 output_loc_sequence (AT_loc (a
), -1);
8691 case dw_val_class_const
:
8692 /* ??? It would be slightly more efficient to use a scheme like is
8693 used for unsigned constants below, but gdb 4.x does not sign
8694 extend. Gdb 5.x does sign extend. */
8695 dw2_asm_output_data_sleb128 (AT_int (a
), "%s", name
);
8698 case dw_val_class_unsigned_const
:
8700 int csize
= constant_size (AT_unsigned (a
));
8701 if (dwarf_version
== 3
8702 && a
->dw_attr
== DW_AT_data_member_location
8704 dw2_asm_output_data_uleb128 (AT_unsigned (a
), "%s", name
);
8706 dw2_asm_output_data (csize
, AT_unsigned (a
), "%s", name
);
8710 case dw_val_class_const_double
:
8712 unsigned HOST_WIDE_INT first
, second
;
8714 if (HOST_BITS_PER_WIDE_INT
>= 64)
8715 dw2_asm_output_data (1,
8716 HOST_BITS_PER_DOUBLE_INT
8717 / HOST_BITS_PER_CHAR
,
8720 if (WORDS_BIG_ENDIAN
)
8722 first
= a
->dw_attr_val
.v
.val_double
.high
;
8723 second
= a
->dw_attr_val
.v
.val_double
.low
;
8727 first
= a
->dw_attr_val
.v
.val_double
.low
;
8728 second
= a
->dw_attr_val
.v
.val_double
.high
;
8731 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
8733 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
,
8738 case dw_val_class_wide_int
:
8741 int len
= get_full_len (*a
->dw_attr_val
.v
.val_wide
);
8742 int l
= HOST_BITS_PER_WIDE_INT
/ HOST_BITS_PER_CHAR
;
8743 if (len
* HOST_BITS_PER_WIDE_INT
> 64)
8744 dw2_asm_output_data (1, get_full_len (*a
->dw_attr_val
.v
.val_wide
) * l
,
8747 if (WORDS_BIG_ENDIAN
)
8748 for (i
= len
- 1; i
>= 0; --i
)
8750 dw2_asm_output_data (l
, a
->dw_attr_val
.v
.val_wide
->elt (i
),
8755 for (i
= 0; i
< len
; ++i
)
8757 dw2_asm_output_data (l
, a
->dw_attr_val
.v
.val_wide
->elt (i
),
8764 case dw_val_class_vec
:
8766 unsigned int elt_size
= a
->dw_attr_val
.v
.val_vec
.elt_size
;
8767 unsigned int len
= a
->dw_attr_val
.v
.val_vec
.length
;
8771 dw2_asm_output_data (constant_size (len
* elt_size
),
8772 len
* elt_size
, "%s", name
);
8773 if (elt_size
> sizeof (HOST_WIDE_INT
))
8778 for (i
= 0, p
= a
->dw_attr_val
.v
.val_vec
.array
;
8781 dw2_asm_output_data (elt_size
, extract_int (p
, elt_size
),
8782 "fp or vector constant word %u", i
);
8786 case dw_val_class_flag
:
8787 if (dwarf_version
>= 4)
8789 /* Currently all add_AT_flag calls pass in 1 as last argument,
8790 so DW_FORM_flag_present can be used. If that ever changes,
8791 we'll need to use DW_FORM_flag and have some optimization
8792 in build_abbrev_table that will change those to
8793 DW_FORM_flag_present if it is set to 1 in all DIEs using
8794 the same abbrev entry. */
8795 gcc_assert (AT_flag (a
) == 1);
8797 fprintf (asm_out_file
, "\t\t\t%s %s\n",
8798 ASM_COMMENT_START
, name
);
8801 dw2_asm_output_data (1, AT_flag (a
), "%s", name
);
8804 case dw_val_class_loc_list
:
8805 output_attr_index_or_value (a
);
8808 case dw_val_class_die_ref
:
8809 if (AT_ref_external (a
))
8811 if (AT_ref (a
)->comdat_type_p
)
8813 comdat_type_node_ref type_node
=
8814 AT_ref (a
)->die_id
.die_type_node
;
8816 gcc_assert (type_node
);
8817 output_signature (type_node
->signature
, name
);
8821 const char *sym
= AT_ref (a
)->die_id
.die_symbol
;
8825 /* In DWARF2, DW_FORM_ref_addr is sized by target address
8826 length, whereas in DWARF3 it's always sized as an
8828 if (dwarf_version
== 2)
8829 size
= DWARF2_ADDR_SIZE
;
8831 size
= DWARF_OFFSET_SIZE
;
8832 dw2_asm_output_offset (size
, sym
, debug_info_section
, "%s",
8838 gcc_assert (AT_ref (a
)->die_offset
);
8839 dw2_asm_output_data (DWARF_OFFSET_SIZE
, AT_ref (a
)->die_offset
,
8844 case dw_val_class_fde_ref
:
8848 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_LABEL
,
8849 a
->dw_attr_val
.v
.val_fde_index
* 2);
8850 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, l1
, debug_frame_section
,
8855 case dw_val_class_vms_delta
:
8856 dw2_asm_output_vms_delta (DWARF_OFFSET_SIZE
,
8857 AT_vms_delta2 (a
), AT_vms_delta1 (a
),
8861 case dw_val_class_lbl_id
:
8862 output_attr_index_or_value (a
);
8865 case dw_val_class_lineptr
:
8866 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, AT_lbl (a
),
8867 debug_line_section
, "%s", name
);
8870 case dw_val_class_macptr
:
8871 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, AT_lbl (a
),
8872 debug_macinfo_section
, "%s", name
);
8875 case dw_val_class_str
:
8876 if (a
->dw_attr_val
.v
.val_str
->form
== DW_FORM_strp
)
8877 dw2_asm_output_offset (DWARF_OFFSET_SIZE
,
8878 a
->dw_attr_val
.v
.val_str
->label
,
8880 "%s: \"%s\"", name
, AT_string (a
));
8881 else if (a
->dw_attr_val
.v
.val_str
->form
== DW_FORM_GNU_str_index
)
8882 dw2_asm_output_data_uleb128 (AT_index (a
),
8883 "%s: \"%s\"", name
, AT_string (a
));
8885 dw2_asm_output_nstring (AT_string (a
), -1, "%s", name
);
8888 case dw_val_class_file
:
8890 int f
= maybe_emit_file (a
->dw_attr_val
.v
.val_file
);
8892 dw2_asm_output_data (constant_size (f
), f
, "%s (%s)", name
,
8893 a
->dw_attr_val
.v
.val_file
->filename
);
8897 case dw_val_class_data8
:
8901 for (i
= 0; i
< 8; i
++)
8902 dw2_asm_output_data (1, a
->dw_attr_val
.v
.val_data8
[i
],
8903 i
== 0 ? "%s" : NULL
, name
);
8907 case dw_val_class_high_pc
:
8908 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, AT_lbl (a
),
8909 get_AT_low_pc (die
), "DW_AT_high_pc");
8917 FOR_EACH_CHILD (die
, c
, output_die (c
));
8919 /* Add null byte to terminate sibling list. */
8920 if (die
->die_child
!= NULL
)
8921 dw2_asm_output_data (1, 0, "end of children of DIE %#lx",
8922 (unsigned long) die
->die_offset
);
8925 /* Output the compilation unit that appears at the beginning of the
8926 .debug_info section, and precedes the DIE descriptions. */
8929 output_compilation_unit_header (void)
8931 int ver
= dwarf_version
;
8933 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
8934 dw2_asm_output_data (4, 0xffffffff,
8935 "Initial length escape value indicating 64-bit DWARF extension");
8936 dw2_asm_output_data (DWARF_OFFSET_SIZE
,
8937 next_die_offset
- DWARF_INITIAL_LENGTH_SIZE
,
8938 "Length of Compilation Unit Info");
8939 dw2_asm_output_data (2, ver
, "DWARF version number");
8940 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, abbrev_section_label
,
8941 debug_abbrev_section
,
8942 "Offset Into Abbrev. Section");
8943 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Pointer Size (in bytes)");
8946 /* Output the compilation unit DIE and its children. */
8949 output_comp_unit (dw_die_ref die
, int output_if_empty
)
8951 const char *secname
, *oldsym
;
8953 external_ref_hash_type extern_map
;
8955 /* Unless we are outputting main CU, we may throw away empty ones. */
8956 if (!output_if_empty
&& die
->die_child
== NULL
)
8959 /* Even if there are no children of this DIE, we must output the information
8960 about the compilation unit. Otherwise, on an empty translation unit, we
8961 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
8962 will then complain when examining the file. First mark all the DIEs in
8963 this CU so we know which get local refs. */
8966 extern_map
= optimize_external_refs (die
);
8968 build_abbrev_table (die
, extern_map
);
8970 extern_map
.dispose ();
8972 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
8973 next_die_offset
= DWARF_COMPILE_UNIT_HEADER_SIZE
;
8974 calc_die_sizes (die
);
8976 oldsym
= die
->die_id
.die_symbol
;
8979 tmp
= XALLOCAVEC (char, strlen (oldsym
) + 24);
8981 sprintf (tmp
, ".gnu.linkonce.wi.%s", oldsym
);
8983 die
->die_id
.die_symbol
= NULL
;
8984 switch_to_section (get_section (secname
, SECTION_DEBUG
, NULL
));
8988 switch_to_section (debug_info_section
);
8989 ASM_OUTPUT_LABEL (asm_out_file
, debug_info_section_label
);
8990 info_section_emitted
= true;
8993 /* Output debugging information. */
8994 output_compilation_unit_header ();
8997 /* Leave the marks on the main CU, so we can check them in
9002 die
->die_id
.die_symbol
= oldsym
;
9006 /* Whether to generate the DWARF accelerator tables in .debug_pubnames
9007 and .debug_pubtypes. This is configured per-target, but can be
9008 overridden by the -gpubnames or -gno-pubnames options. */
9011 want_pubnames (void)
9013 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
9015 if (debug_generate_pub_sections
!= -1)
9016 return debug_generate_pub_sections
;
9017 return targetm
.want_debug_pub_sections
;
9020 /* Add the DW_AT_GNU_pubnames and DW_AT_GNU_pubtypes attributes. */
9023 add_AT_pubnames (dw_die_ref die
)
9025 if (want_pubnames ())
9026 add_AT_flag (die
, DW_AT_GNU_pubnames
, 1);
9029 /* Add a string attribute value to a skeleton DIE. */
9032 add_skeleton_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
,
9036 struct indirect_string_node
*node
;
9038 if (! skeleton_debug_str_hash
)
9039 skeleton_debug_str_hash
= htab_create_ggc (10, debug_str_do_hash
,
9040 debug_str_eq
, NULL
);
9042 node
= find_AT_string_in_table (str
, skeleton_debug_str_hash
);
9043 find_string_form (node
);
9044 if (node
->form
== DW_FORM_GNU_str_index
)
9045 node
->form
= DW_FORM_strp
;
9047 attr
.dw_attr
= attr_kind
;
9048 attr
.dw_attr_val
.val_class
= dw_val_class_str
;
9049 attr
.dw_attr_val
.val_entry
= NULL
;
9050 attr
.dw_attr_val
.v
.val_str
= node
;
9051 add_dwarf_attr (die
, &attr
);
9054 /* Helper function to generate top-level dies for skeleton debug_info and
9058 add_top_level_skeleton_die_attrs (dw_die_ref die
)
9060 const char *dwo_file_name
= concat (aux_base_name
, ".dwo", NULL
);
9061 const char *comp_dir
= comp_dir_string ();
9063 add_skeleton_AT_string (die
, DW_AT_GNU_dwo_name
, dwo_file_name
);
9064 if (comp_dir
!= NULL
)
9065 add_skeleton_AT_string (die
, DW_AT_comp_dir
, comp_dir
);
9066 add_AT_pubnames (die
);
9067 add_AT_lineptr (die
, DW_AT_GNU_addr_base
, debug_addr_section_label
);
9070 /* Return the single type-unit die for skeleton type units. */
9073 get_skeleton_type_unit (void)
9075 /* For dwarf_split_debug_sections with use_type info, all type units in the
9076 skeleton sections have identical dies (but different headers). This
9077 single die will be output many times. */
9079 static dw_die_ref skeleton_type_unit
= NULL
;
9081 if (skeleton_type_unit
== NULL
)
9083 skeleton_type_unit
= new_die (DW_TAG_type_unit
, NULL
, NULL
);
9084 add_top_level_skeleton_die_attrs (skeleton_type_unit
);
9085 skeleton_type_unit
->die_abbrev
= SKELETON_TYPE_DIE_ABBREV
;
9087 return skeleton_type_unit
;
9090 /* Output skeleton debug sections that point to the dwo file. */
9093 output_skeleton_debug_sections (dw_die_ref comp_unit
)
9095 /* These attributes will be found in the full debug_info section. */
9096 remove_AT (comp_unit
, DW_AT_producer
);
9097 remove_AT (comp_unit
, DW_AT_language
);
9099 switch_to_section (debug_skeleton_info_section
);
9100 ASM_OUTPUT_LABEL (asm_out_file
, debug_skeleton_info_section_label
);
9102 /* Produce the skeleton compilation-unit header. This one differs enough from
9103 a normal CU header that it's better not to call output_compilation_unit
9105 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
9106 dw2_asm_output_data (4, 0xffffffff,
9107 "Initial length escape value indicating 64-bit DWARF extension");
9109 dw2_asm_output_data (DWARF_OFFSET_SIZE
,
9110 DWARF_COMPILE_UNIT_HEADER_SIZE
9111 - DWARF_INITIAL_LENGTH_SIZE
9112 + size_of_die (comp_unit
),
9113 "Length of Compilation Unit Info");
9114 dw2_asm_output_data (2, dwarf_version
, "DWARF version number");
9115 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_skeleton_abbrev_section_label
,
9116 debug_abbrev_section
,
9117 "Offset Into Abbrev. Section");
9118 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Pointer Size (in bytes)");
9120 comp_unit
->die_abbrev
= SKELETON_COMP_DIE_ABBREV
;
9121 output_die (comp_unit
);
9123 /* Build the skeleton debug_abbrev section. */
9124 switch_to_section (debug_skeleton_abbrev_section
);
9125 ASM_OUTPUT_LABEL (asm_out_file
, debug_skeleton_abbrev_section_label
);
9127 output_die_abbrevs (SKELETON_COMP_DIE_ABBREV
, comp_unit
);
9128 if (use_debug_types
)
9129 output_die_abbrevs (SKELETON_TYPE_DIE_ABBREV
, get_skeleton_type_unit ());
9131 dw2_asm_output_data (1, 0, "end of skeleton .debug_abbrev");
9134 /* Output a comdat type unit DIE and its children. */
9137 output_comdat_type_unit (comdat_type_node
*node
)
9139 const char *secname
;
9142 #if defined (OBJECT_FORMAT_ELF)
9145 external_ref_hash_type extern_map
;
9147 /* First mark all the DIEs in this CU so we know which get local refs. */
9148 mark_dies (node
->root_die
);
9150 extern_map
= optimize_external_refs (node
->root_die
);
9152 build_abbrev_table (node
->root_die
, extern_map
);
9154 extern_map
.dispose ();
9156 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
9157 next_die_offset
= DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE
;
9158 calc_die_sizes (node
->root_die
);
9160 #if defined (OBJECT_FORMAT_ELF)
9161 if (!dwarf_split_debug_info
)
9162 secname
= ".debug_types";
9164 secname
= ".debug_types.dwo";
9166 tmp
= XALLOCAVEC (char, 4 + DWARF_TYPE_SIGNATURE_SIZE
* 2);
9167 sprintf (tmp
, "wt.");
9168 for (i
= 0; i
< DWARF_TYPE_SIGNATURE_SIZE
; i
++)
9169 sprintf (tmp
+ 3 + i
* 2, "%02x", node
->signature
[i
] & 0xff);
9170 comdat_key
= get_identifier (tmp
);
9171 targetm
.asm_out
.named_section (secname
,
9172 SECTION_DEBUG
| SECTION_LINKONCE
,
9175 tmp
= XALLOCAVEC (char, 18 + DWARF_TYPE_SIGNATURE_SIZE
* 2);
9176 sprintf (tmp
, ".gnu.linkonce.wt.");
9177 for (i
= 0; i
< DWARF_TYPE_SIGNATURE_SIZE
; i
++)
9178 sprintf (tmp
+ 17 + i
* 2, "%02x", node
->signature
[i
] & 0xff);
9180 switch_to_section (get_section (secname
, SECTION_DEBUG
, NULL
));
9183 /* Output debugging information. */
9184 output_compilation_unit_header ();
9185 output_signature (node
->signature
, "Type Signature");
9186 dw2_asm_output_data (DWARF_OFFSET_SIZE
, node
->type_die
->die_offset
,
9187 "Offset to Type DIE");
9188 output_die (node
->root_die
);
9190 unmark_dies (node
->root_die
);
9192 #if defined (OBJECT_FORMAT_ELF)
9193 if (dwarf_split_debug_info
)
9195 /* Produce the skeleton type-unit header. */
9196 const char *secname
= ".debug_types";
9198 targetm
.asm_out
.named_section (secname
,
9199 SECTION_DEBUG
| SECTION_LINKONCE
,
9201 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
9202 dw2_asm_output_data (4, 0xffffffff,
9203 "Initial length escape value indicating 64-bit DWARF extension");
9205 dw2_asm_output_data (DWARF_OFFSET_SIZE
,
9206 DWARF_COMPILE_UNIT_HEADER_SIZE
9207 - DWARF_INITIAL_LENGTH_SIZE
9208 + size_of_die (get_skeleton_type_unit ())
9209 + DWARF_TYPE_SIGNATURE_SIZE
+ DWARF_OFFSET_SIZE
,
9210 "Length of Type Unit Info");
9211 dw2_asm_output_data (2, dwarf_version
, "DWARF version number");
9212 dw2_asm_output_offset (DWARF_OFFSET_SIZE
,
9213 debug_skeleton_abbrev_section_label
,
9214 debug_abbrev_section
,
9215 "Offset Into Abbrev. Section");
9216 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Pointer Size (in bytes)");
9217 output_signature (node
->signature
, "Type Signature");
9218 dw2_asm_output_data (DWARF_OFFSET_SIZE
, 0, "Offset to Type DIE");
9220 output_die (get_skeleton_type_unit ());
9225 /* Return the DWARF2/3 pubname associated with a decl. */
9228 dwarf2_name (tree decl
, int scope
)
9230 if (DECL_NAMELESS (decl
))
9232 return lang_hooks
.dwarf_name (decl
, scope
? 1 : 0);
9235 /* Add a new entry to .debug_pubnames if appropriate. */
9238 add_pubname_string (const char *str
, dw_die_ref die
)
9243 e
.name
= xstrdup (str
);
9244 vec_safe_push (pubname_table
, e
);
9248 add_pubname (tree decl
, dw_die_ref die
)
9250 if (!want_pubnames ())
9253 /* Don't add items to the table when we expect that the consumer will have
9254 just read the enclosing die. For example, if the consumer is looking at a
9255 class_member, it will either be inside the class already, or will have just
9256 looked up the class to find the member. Either way, searching the class is
9257 faster than searching the index. */
9258 if ((TREE_PUBLIC (decl
) && !class_scope_p (die
->die_parent
))
9259 || is_cu_die (die
->die_parent
) || is_namespace_die (die
->die_parent
))
9261 const char *name
= dwarf2_name (decl
, 1);
9264 add_pubname_string (name
, die
);
9268 /* Add an enumerator to the pubnames section. */
9271 add_enumerator_pubname (const char *scope_name
, dw_die_ref die
)
9275 gcc_assert (scope_name
);
9276 e
.name
= concat (scope_name
, get_AT_string (die
, DW_AT_name
), NULL
);
9278 vec_safe_push (pubname_table
, e
);
9281 /* Add a new entry to .debug_pubtypes if appropriate. */
9284 add_pubtype (tree decl
, dw_die_ref die
)
9288 if (!want_pubnames ())
9291 if ((TREE_PUBLIC (decl
)
9292 || is_cu_die (die
->die_parent
) || is_namespace_die (die
->die_parent
))
9293 && (die
->die_tag
== DW_TAG_typedef
|| COMPLETE_TYPE_P (decl
)))
9296 const char *scope_name
= "";
9297 const char *sep
= is_cxx () ? "::" : ".";
9300 scope
= TYPE_P (decl
) ? TYPE_CONTEXT (decl
) : NULL
;
9301 if (scope
&& TREE_CODE (scope
) == NAMESPACE_DECL
)
9303 scope_name
= lang_hooks
.dwarf_name (scope
, 1);
9304 if (scope_name
!= NULL
&& scope_name
[0] != '\0')
9305 scope_name
= concat (scope_name
, sep
, NULL
);
9311 name
= type_tag (decl
);
9313 name
= lang_hooks
.dwarf_name (decl
, 1);
9315 /* If we don't have a name for the type, there's no point in adding
9317 if (name
!= NULL
&& name
[0] != '\0')
9320 e
.name
= concat (scope_name
, name
, NULL
);
9321 vec_safe_push (pubtype_table
, e
);
9324 /* Although it might be more consistent to add the pubinfo for the
9325 enumerators as their dies are created, they should only be added if the
9326 enum type meets the criteria above. So rather than re-check the parent
9327 enum type whenever an enumerator die is created, just output them all
9328 here. This isn't protected by the name conditional because anonymous
9329 enums don't have names. */
9330 if (die
->die_tag
== DW_TAG_enumeration_type
)
9334 FOR_EACH_CHILD (die
, c
, add_enumerator_pubname (scope_name
, c
));
9339 /* Output a single entry in the pubnames table. */
9342 output_pubname (dw_offset die_offset
, pubname_entry
*entry
)
9344 dw_die_ref die
= entry
->die
;
9345 int is_static
= get_AT_flag (die
, DW_AT_external
) ? 0 : 1;
9347 dw2_asm_output_data (DWARF_OFFSET_SIZE
, die_offset
, "DIE offset");
9349 if (debug_generate_pub_sections
== 2)
9351 /* This logic follows gdb's method for determining the value of the flag
9353 uint32_t flags
= GDB_INDEX_SYMBOL_KIND_NONE
;
9354 switch (die
->die_tag
)
9356 case DW_TAG_typedef
:
9357 case DW_TAG_base_type
:
9358 case DW_TAG_subrange_type
:
9359 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
, GDB_INDEX_SYMBOL_KIND_TYPE
);
9360 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, 1);
9362 case DW_TAG_enumerator
:
9363 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
,
9364 GDB_INDEX_SYMBOL_KIND_VARIABLE
);
9365 if (!is_cxx () && !is_java ())
9366 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, 1);
9368 case DW_TAG_subprogram
:
9369 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
,
9370 GDB_INDEX_SYMBOL_KIND_FUNCTION
);
9372 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, is_static
);
9374 case DW_TAG_constant
:
9375 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
,
9376 GDB_INDEX_SYMBOL_KIND_VARIABLE
);
9377 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, is_static
);
9379 case DW_TAG_variable
:
9380 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
,
9381 GDB_INDEX_SYMBOL_KIND_VARIABLE
);
9382 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, is_static
);
9384 case DW_TAG_namespace
:
9385 case DW_TAG_imported_declaration
:
9386 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
, GDB_INDEX_SYMBOL_KIND_TYPE
);
9388 case DW_TAG_class_type
:
9389 case DW_TAG_interface_type
:
9390 case DW_TAG_structure_type
:
9391 case DW_TAG_union_type
:
9392 case DW_TAG_enumeration_type
:
9393 GDB_INDEX_SYMBOL_KIND_SET_VALUE(flags
, GDB_INDEX_SYMBOL_KIND_TYPE
);
9394 if (!is_cxx () && !is_java ())
9395 GDB_INDEX_SYMBOL_STATIC_SET_VALUE(flags
, 1);
9398 /* An unusual tag. Leave the flag-byte empty. */
9401 dw2_asm_output_data (1, flags
>> GDB_INDEX_CU_BITSIZE
,
9405 dw2_asm_output_nstring (entry
->name
, -1, "external name");
9409 /* Output the public names table used to speed up access to externally
9410 visible names; or the public types table used to find type definitions. */
9413 output_pubnames (vec
<pubname_entry
, va_gc
> *names
)
9416 unsigned long pubnames_length
= size_of_pubnames (names
);
9419 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
9420 dw2_asm_output_data (4, 0xffffffff,
9421 "Initial length escape value indicating 64-bit DWARF extension");
9422 dw2_asm_output_data (DWARF_OFFSET_SIZE
, pubnames_length
, "Pub Info Length");
9424 /* Version number for pubnames/pubtypes is independent of dwarf version. */
9425 dw2_asm_output_data (2, 2, "DWARF Version");
9427 if (dwarf_split_debug_info
)
9428 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_skeleton_info_section_label
,
9429 debug_skeleton_info_section
,
9430 "Offset of Compilation Unit Info");
9432 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
9434 "Offset of Compilation Unit Info");
9435 dw2_asm_output_data (DWARF_OFFSET_SIZE
, next_die_offset
,
9436 "Compilation Unit Length");
9438 FOR_EACH_VEC_ELT (*names
, i
, pub
)
9440 if (include_pubname_in_output (names
, pub
))
9442 dw_offset die_offset
= pub
->die
->die_offset
;
9444 /* We shouldn't see pubnames for DIEs outside of the main CU. */
9445 if (names
== pubname_table
&& pub
->die
->die_tag
!= DW_TAG_enumerator
)
9446 gcc_assert (pub
->die
->die_mark
);
9448 /* If we're putting types in their own .debug_types sections,
9449 the .debug_pubtypes table will still point to the compile
9450 unit (not the type unit), so we want to use the offset of
9451 the skeleton DIE (if there is one). */
9452 if (pub
->die
->comdat_type_p
&& names
== pubtype_table
)
9454 comdat_type_node_ref type_node
= pub
->die
->die_id
.die_type_node
;
9456 if (type_node
!= NULL
)
9457 die_offset
= (type_node
->skeleton_die
!= NULL
9458 ? type_node
->skeleton_die
->die_offset
9459 : comp_unit_die ()->die_offset
);
9462 output_pubname (die_offset
, pub
);
9466 dw2_asm_output_data (DWARF_OFFSET_SIZE
, 0, NULL
);
9469 /* Output public names and types tables if necessary. */
9472 output_pubtables (void)
9474 if (!want_pubnames () || !info_section_emitted
)
9477 switch_to_section (debug_pubnames_section
);
9478 output_pubnames (pubname_table
);
9479 /* ??? Only defined by DWARF3, but emitted by Darwin for DWARF2.
9480 It shouldn't hurt to emit it always, since pure DWARF2 consumers
9481 simply won't look for the section. */
9482 switch_to_section (debug_pubtypes_section
);
9483 output_pubnames (pubtype_table
);
9487 /* Output the information that goes into the .debug_aranges table.
9488 Namely, define the beginning and ending address range of the
9489 text section generated for this compilation unit. */
9492 output_aranges (unsigned long aranges_length
)
9496 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
9497 dw2_asm_output_data (4, 0xffffffff,
9498 "Initial length escape value indicating 64-bit DWARF extension");
9499 dw2_asm_output_data (DWARF_OFFSET_SIZE
, aranges_length
,
9500 "Length of Address Ranges Info");
9501 /* Version number for aranges is still 2, even in DWARF3. */
9502 dw2_asm_output_data (2, 2, "DWARF Version");
9503 if (dwarf_split_debug_info
)
9504 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_skeleton_info_section_label
,
9505 debug_skeleton_info_section
,
9506 "Offset of Compilation Unit Info");
9508 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
9510 "Offset of Compilation Unit Info");
9511 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Size of Address");
9512 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
9514 /* We need to align to twice the pointer size here. */
9515 if (DWARF_ARANGES_PAD_SIZE
)
9517 /* Pad using a 2 byte words so that padding is correct for any
9519 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
9520 2 * DWARF2_ADDR_SIZE
);
9521 for (i
= 2; i
< (unsigned) DWARF_ARANGES_PAD_SIZE
; i
+= 2)
9522 dw2_asm_output_data (2, 0, NULL
);
9525 /* It is necessary not to output these entries if the sections were
9526 not used; if the sections were not used, the length will be 0 and
9527 the address may end up as 0 if the section is discarded by ld
9528 --gc-sections, leaving an invalid (0, 0) entry that can be
9529 confused with the terminator. */
9530 if (text_section_used
)
9532 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, text_section_label
, "Address");
9533 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, text_end_label
,
9534 text_section_label
, "Length");
9536 if (cold_text_section_used
)
9538 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, cold_text_section_label
,
9540 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, cold_end_label
,
9541 cold_text_section_label
, "Length");
9544 if (have_multiple_function_sections
)
9549 FOR_EACH_VEC_ELT (*fde_vec
, fde_idx
, fde
)
9551 if (DECL_IGNORED_P (fde
->decl
))
9553 if (!fde
->in_std_section
)
9555 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, fde
->dw_fde_begin
,
9557 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, fde
->dw_fde_end
,
9558 fde
->dw_fde_begin
, "Length");
9560 if (fde
->dw_fde_second_begin
&& !fde
->second_in_std_section
)
9562 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, fde
->dw_fde_second_begin
,
9564 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, fde
->dw_fde_second_end
,
9565 fde
->dw_fde_second_begin
, "Length");
9570 /* Output the terminator words. */
9571 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
9572 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
9575 /* Add a new entry to .debug_ranges. Return the offset at which it
9579 add_ranges_num (int num
)
9581 unsigned int in_use
= ranges_table_in_use
;
9583 if (in_use
== ranges_table_allocated
)
9585 ranges_table_allocated
+= RANGES_TABLE_INCREMENT
;
9586 ranges_table
= GGC_RESIZEVEC (struct dw_ranges_struct
, ranges_table
,
9587 ranges_table_allocated
);
9588 memset (ranges_table
+ ranges_table_in_use
, 0,
9589 RANGES_TABLE_INCREMENT
* sizeof (struct dw_ranges_struct
));
9592 ranges_table
[in_use
].num
= num
;
9593 ranges_table_in_use
= in_use
+ 1;
9595 return in_use
* 2 * DWARF2_ADDR_SIZE
;
9598 /* Add a new entry to .debug_ranges corresponding to a block, or a
9599 range terminator if BLOCK is NULL. */
9602 add_ranges (const_tree block
)
9604 return add_ranges_num (block
? BLOCK_NUMBER (block
) : 0);
9607 /* Add a new entry to .debug_ranges corresponding to a pair of labels.
9608 When using dwarf_split_debug_info, address attributes in dies destined
9609 for the final executable should be direct references--setting the
9610 parameter force_direct ensures this behavior. */
9613 add_ranges_by_labels (dw_die_ref die
, const char *begin
, const char *end
,
9614 bool *added
, bool force_direct
)
9616 unsigned int in_use
= ranges_by_label_in_use
;
9617 unsigned int offset
;
9619 if (in_use
== ranges_by_label_allocated
)
9621 ranges_by_label_allocated
+= RANGES_TABLE_INCREMENT
;
9622 ranges_by_label
= GGC_RESIZEVEC (struct dw_ranges_by_label_struct
,
9624 ranges_by_label_allocated
);
9625 memset (ranges_by_label
+ ranges_by_label_in_use
, 0,
9626 RANGES_TABLE_INCREMENT
9627 * sizeof (struct dw_ranges_by_label_struct
));
9630 ranges_by_label
[in_use
].begin
= begin
;
9631 ranges_by_label
[in_use
].end
= end
;
9632 ranges_by_label_in_use
= in_use
+ 1;
9634 offset
= add_ranges_num (-(int)in_use
- 1);
9637 add_AT_range_list (die
, DW_AT_ranges
, offset
, force_direct
);
9643 output_ranges (void)
9646 static const char *const start_fmt
= "Offset %#x";
9647 const char *fmt
= start_fmt
;
9649 for (i
= 0; i
< ranges_table_in_use
; i
++)
9651 int block_num
= ranges_table
[i
].num
;
9655 char blabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
9656 char elabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
9658 ASM_GENERATE_INTERNAL_LABEL (blabel
, BLOCK_BEGIN_LABEL
, block_num
);
9659 ASM_GENERATE_INTERNAL_LABEL (elabel
, BLOCK_END_LABEL
, block_num
);
9661 /* If all code is in the text section, then the compilation
9662 unit base address defaults to DW_AT_low_pc, which is the
9663 base of the text section. */
9664 if (!have_multiple_function_sections
)
9666 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, blabel
,
9668 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
9669 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, elabel
,
9670 text_section_label
, NULL
);
9673 /* Otherwise, the compilation unit base address is zero,
9674 which allows us to use absolute addresses, and not worry
9675 about whether the target supports cross-section
9679 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, blabel
,
9680 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
9681 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, elabel
, NULL
);
9687 /* Negative block_num stands for an index into ranges_by_label. */
9688 else if (block_num
< 0)
9690 int lab_idx
= - block_num
- 1;
9692 if (!have_multiple_function_sections
)
9696 /* If we ever use add_ranges_by_labels () for a single
9697 function section, all we have to do is to take out
9699 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
9700 ranges_by_label
[lab_idx
].begin
,
9702 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
9703 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
9704 ranges_by_label
[lab_idx
].end
,
9705 text_section_label
, NULL
);
9710 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
9711 ranges_by_label
[lab_idx
].begin
,
9712 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
9713 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
9714 ranges_by_label
[lab_idx
].end
,
9720 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
9721 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
9727 /* Data structure containing information about input files. */
9730 const char *path
; /* Complete file name. */
9731 const char *fname
; /* File name part. */
9732 int length
; /* Length of entire string. */
9733 struct dwarf_file_data
* file_idx
; /* Index in input file table. */
9734 int dir_idx
; /* Index in directory table. */
9737 /* Data structure containing information about directories with source
9741 const char *path
; /* Path including directory name. */
9742 int length
; /* Path length. */
9743 int prefix
; /* Index of directory entry which is a prefix. */
9744 int count
; /* Number of files in this directory. */
9745 int dir_idx
; /* Index of directory used as base. */
9748 /* Callback function for file_info comparison. We sort by looking at
9749 the directories in the path. */
9752 file_info_cmp (const void *p1
, const void *p2
)
9754 const struct file_info
*const s1
= (const struct file_info
*) p1
;
9755 const struct file_info
*const s2
= (const struct file_info
*) p2
;
9756 const unsigned char *cp1
;
9757 const unsigned char *cp2
;
9759 /* Take care of file names without directories. We need to make sure that
9760 we return consistent values to qsort since some will get confused if
9761 we return the same value when identical operands are passed in opposite
9762 orders. So if neither has a directory, return 0 and otherwise return
9763 1 or -1 depending on which one has the directory. */
9764 if ((s1
->path
== s1
->fname
|| s2
->path
== s2
->fname
))
9765 return (s2
->path
== s2
->fname
) - (s1
->path
== s1
->fname
);
9767 cp1
= (const unsigned char *) s1
->path
;
9768 cp2
= (const unsigned char *) s2
->path
;
9774 /* Reached the end of the first path? If so, handle like above. */
9775 if ((cp1
== (const unsigned char *) s1
->fname
)
9776 || (cp2
== (const unsigned char *) s2
->fname
))
9777 return ((cp2
== (const unsigned char *) s2
->fname
)
9778 - (cp1
== (const unsigned char *) s1
->fname
));
9780 /* Character of current path component the same? */
9781 else if (*cp1
!= *cp2
)
9786 struct file_name_acquire_data
9788 struct file_info
*files
;
9793 /* Traversal function for the hash table. */
9796 file_name_acquire (void ** slot
, void *data
)
9798 struct file_name_acquire_data
*fnad
= (struct file_name_acquire_data
*) data
;
9799 struct dwarf_file_data
*d
= (struct dwarf_file_data
*) *slot
;
9800 struct file_info
*fi
;
9803 gcc_assert (fnad
->max_files
>= d
->emitted_number
);
9805 if (! d
->emitted_number
)
9808 gcc_assert (fnad
->max_files
!= fnad
->used_files
);
9810 fi
= fnad
->files
+ fnad
->used_files
++;
9812 /* Skip all leading "./". */
9814 while (f
[0] == '.' && IS_DIR_SEPARATOR (f
[1]))
9817 /* Create a new array entry. */
9819 fi
->length
= strlen (f
);
9822 /* Search for the file name part. */
9823 f
= strrchr (f
, DIR_SEPARATOR
);
9824 #if defined (DIR_SEPARATOR_2)
9826 char *g
= strrchr (fi
->path
, DIR_SEPARATOR_2
);
9830 if (f
== NULL
|| f
< g
)
9836 fi
->fname
= f
== NULL
? fi
->path
: f
+ 1;
9840 /* Output the directory table and the file name table. We try to minimize
9841 the total amount of memory needed. A heuristic is used to avoid large
9842 slowdowns with many input files. */
9845 output_file_names (void)
9847 struct file_name_acquire_data fnad
;
9849 struct file_info
*files
;
9850 struct dir_info
*dirs
;
9858 if (!last_emitted_file
)
9860 dw2_asm_output_data (1, 0, "End directory table");
9861 dw2_asm_output_data (1, 0, "End file name table");
9865 numfiles
= last_emitted_file
->emitted_number
;
9867 /* Allocate the various arrays we need. */
9868 files
= XALLOCAVEC (struct file_info
, numfiles
);
9869 dirs
= XALLOCAVEC (struct dir_info
, numfiles
);
9872 fnad
.used_files
= 0;
9873 fnad
.max_files
= numfiles
;
9874 htab_traverse (file_table
, file_name_acquire
, &fnad
);
9875 gcc_assert (fnad
.used_files
== fnad
.max_files
);
9877 qsort (files
, numfiles
, sizeof (files
[0]), file_info_cmp
);
9879 /* Find all the different directories used. */
9880 dirs
[0].path
= files
[0].path
;
9881 dirs
[0].length
= files
[0].fname
- files
[0].path
;
9882 dirs
[0].prefix
= -1;
9884 dirs
[0].dir_idx
= 0;
9885 files
[0].dir_idx
= 0;
9888 for (i
= 1; i
< numfiles
; i
++)
9889 if (files
[i
].fname
- files
[i
].path
== dirs
[ndirs
- 1].length
9890 && memcmp (dirs
[ndirs
- 1].path
, files
[i
].path
,
9891 dirs
[ndirs
- 1].length
) == 0)
9893 /* Same directory as last entry. */
9894 files
[i
].dir_idx
= ndirs
- 1;
9895 ++dirs
[ndirs
- 1].count
;
9901 /* This is a new directory. */
9902 dirs
[ndirs
].path
= files
[i
].path
;
9903 dirs
[ndirs
].length
= files
[i
].fname
- files
[i
].path
;
9904 dirs
[ndirs
].count
= 1;
9905 dirs
[ndirs
].dir_idx
= ndirs
;
9906 files
[i
].dir_idx
= ndirs
;
9908 /* Search for a prefix. */
9909 dirs
[ndirs
].prefix
= -1;
9910 for (j
= 0; j
< ndirs
; j
++)
9911 if (dirs
[j
].length
< dirs
[ndirs
].length
9912 && dirs
[j
].length
> 1
9913 && (dirs
[ndirs
].prefix
== -1
9914 || dirs
[j
].length
> dirs
[dirs
[ndirs
].prefix
].length
)
9915 && memcmp (dirs
[j
].path
, dirs
[ndirs
].path
, dirs
[j
].length
) == 0)
9916 dirs
[ndirs
].prefix
= j
;
9921 /* Now to the actual work. We have to find a subset of the directories which
9922 allow expressing the file name using references to the directory table
9923 with the least amount of characters. We do not do an exhaustive search
9924 where we would have to check out every combination of every single
9925 possible prefix. Instead we use a heuristic which provides nearly optimal
9926 results in most cases and never is much off. */
9927 saved
= XALLOCAVEC (int, ndirs
);
9928 savehere
= XALLOCAVEC (int, ndirs
);
9930 memset (saved
, '\0', ndirs
* sizeof (saved
[0]));
9931 for (i
= 0; i
< ndirs
; i
++)
9936 /* We can always save some space for the current directory. But this
9937 does not mean it will be enough to justify adding the directory. */
9938 savehere
[i
] = dirs
[i
].length
;
9939 total
= (savehere
[i
] - saved
[i
]) * dirs
[i
].count
;
9941 for (j
= i
+ 1; j
< ndirs
; j
++)
9944 if (saved
[j
] < dirs
[i
].length
)
9946 /* Determine whether the dirs[i] path is a prefix of the
9951 while (k
!= -1 && k
!= (int) i
)
9956 /* Yes it is. We can possibly save some memory by
9957 writing the filenames in dirs[j] relative to
9959 savehere
[j
] = dirs
[i
].length
;
9960 total
+= (savehere
[j
] - saved
[j
]) * dirs
[j
].count
;
9965 /* Check whether we can save enough to justify adding the dirs[i]
9967 if (total
> dirs
[i
].length
+ 1)
9969 /* It's worthwhile adding. */
9970 for (j
= i
; j
< ndirs
; j
++)
9971 if (savehere
[j
] > 0)
9973 /* Remember how much we saved for this directory so far. */
9974 saved
[j
] = savehere
[j
];
9976 /* Remember the prefix directory. */
9977 dirs
[j
].dir_idx
= i
;
9982 /* Emit the directory name table. */
9983 idx_offset
= dirs
[0].length
> 0 ? 1 : 0;
9984 for (i
= 1 - idx_offset
; i
< ndirs
; i
++)
9985 dw2_asm_output_nstring (dirs
[i
].path
,
9987 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR
,
9988 "Directory Entry: %#x", i
+ idx_offset
);
9990 dw2_asm_output_data (1, 0, "End directory table");
9992 /* We have to emit them in the order of emitted_number since that's
9993 used in the debug info generation. To do this efficiently we
9994 generate a back-mapping of the indices first. */
9995 backmap
= XALLOCAVEC (int, numfiles
);
9996 for (i
= 0; i
< numfiles
; i
++)
9997 backmap
[files
[i
].file_idx
->emitted_number
- 1] = i
;
9999 /* Now write all the file names. */
10000 for (i
= 0; i
< numfiles
; i
++)
10002 int file_idx
= backmap
[i
];
10003 int dir_idx
= dirs
[files
[file_idx
].dir_idx
].dir_idx
;
10005 #ifdef VMS_DEBUGGING_INFO
10006 #define MAX_VMS_VERSION_LEN 6 /* ";32768" */
10008 /* Setting these fields can lead to debugger miscomparisons,
10009 but VMS Debug requires them to be set correctly. */
10014 int maxfilelen
= strlen (files
[file_idx
].path
)
10015 + dirs
[dir_idx
].length
10016 + MAX_VMS_VERSION_LEN
+ 1;
10017 char *filebuf
= XALLOCAVEC (char, maxfilelen
);
10019 vms_file_stats_name (files
[file_idx
].path
, 0, 0, 0, &ver
);
10020 snprintf (filebuf
, maxfilelen
, "%s;%d",
10021 files
[file_idx
].path
+ dirs
[dir_idx
].length
, ver
);
10023 dw2_asm_output_nstring
10024 (filebuf
, -1, "File Entry: %#x", (unsigned) i
+ 1);
10026 /* Include directory index. */
10027 dw2_asm_output_data_uleb128 (dir_idx
+ idx_offset
, NULL
);
10029 /* Modification time. */
10030 dw2_asm_output_data_uleb128
10031 ((vms_file_stats_name (files
[file_idx
].path
, &cdt
, 0, 0, 0) == 0)
10035 /* File length in bytes. */
10036 dw2_asm_output_data_uleb128
10037 ((vms_file_stats_name (files
[file_idx
].path
, 0, &siz
, 0, 0) == 0)
10041 dw2_asm_output_nstring (files
[file_idx
].path
+ dirs
[dir_idx
].length
, -1,
10042 "File Entry: %#x", (unsigned) i
+ 1);
10044 /* Include directory index. */
10045 dw2_asm_output_data_uleb128 (dir_idx
+ idx_offset
, NULL
);
10047 /* Modification time. */
10048 dw2_asm_output_data_uleb128 (0, NULL
);
10050 /* File length in bytes. */
10051 dw2_asm_output_data_uleb128 (0, NULL
);
10052 #endif /* VMS_DEBUGGING_INFO */
10055 dw2_asm_output_data (1, 0, "End file name table");
10059 /* Output one line number table into the .debug_line section. */
10062 output_one_line_info_table (dw_line_info_table
*table
)
10064 char line_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
10065 unsigned int current_line
= 1;
10066 bool current_is_stmt
= DWARF_LINE_DEFAULT_IS_STMT_START
;
10067 dw_line_info_entry
*ent
;
10070 FOR_EACH_VEC_SAFE_ELT (table
->entries
, i
, ent
)
10072 switch (ent
->opcode
)
10074 case LI_set_address
:
10075 /* ??? Unfortunately, we have little choice here currently, and
10076 must always use the most general form. GCC does not know the
10077 address delta itself, so we can't use DW_LNS_advance_pc. Many
10078 ports do have length attributes which will give an upper bound
10079 on the address range. We could perhaps use length attributes
10080 to determine when it is safe to use DW_LNS_fixed_advance_pc. */
10081 ASM_GENERATE_INTERNAL_LABEL (line_label
, LINE_CODE_LABEL
, ent
->val
);
10083 /* This can handle any delta. This takes
10084 4+DWARF2_ADDR_SIZE bytes. */
10085 dw2_asm_output_data (1, 0, "set address %s", line_label
);
10086 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
10087 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
10088 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
10092 if (ent
->val
== current_line
)
10094 /* We still need to start a new row, so output a copy insn. */
10095 dw2_asm_output_data (1, DW_LNS_copy
,
10096 "copy line %u", current_line
);
10100 int line_offset
= ent
->val
- current_line
;
10101 int line_delta
= line_offset
- DWARF_LINE_BASE
;
10103 current_line
= ent
->val
;
10104 if (line_delta
>= 0 && line_delta
< (DWARF_LINE_RANGE
- 1))
10106 /* This can handle deltas from -10 to 234, using the current
10107 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE.
10108 This takes 1 byte. */
10109 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
+ line_delta
,
10110 "line %u", current_line
);
10114 /* This can handle any delta. This takes at least 4 bytes,
10115 depending on the value being encoded. */
10116 dw2_asm_output_data (1, DW_LNS_advance_line
,
10117 "advance to line %u", current_line
);
10118 dw2_asm_output_data_sleb128 (line_offset
, NULL
);
10119 dw2_asm_output_data (1, DW_LNS_copy
, NULL
);
10125 dw2_asm_output_data (1, DW_LNS_set_file
, "set file %u", ent
->val
);
10126 dw2_asm_output_data_uleb128 (ent
->val
, "%u", ent
->val
);
10129 case LI_set_column
:
10130 dw2_asm_output_data (1, DW_LNS_set_column
, "column %u", ent
->val
);
10131 dw2_asm_output_data_uleb128 (ent
->val
, "%u", ent
->val
);
10134 case LI_negate_stmt
:
10135 current_is_stmt
= !current_is_stmt
;
10136 dw2_asm_output_data (1, DW_LNS_negate_stmt
,
10137 "is_stmt %d", current_is_stmt
);
10140 case LI_set_prologue_end
:
10141 dw2_asm_output_data (1, DW_LNS_set_prologue_end
,
10142 "set prologue end");
10145 case LI_set_epilogue_begin
:
10146 dw2_asm_output_data (1, DW_LNS_set_epilogue_begin
,
10147 "set epilogue begin");
10150 case LI_set_discriminator
:
10151 dw2_asm_output_data (1, 0, "discriminator %u", ent
->val
);
10152 dw2_asm_output_data_uleb128 (1 + size_of_uleb128 (ent
->val
), NULL
);
10153 dw2_asm_output_data (1, DW_LNE_set_discriminator
, NULL
);
10154 dw2_asm_output_data_uleb128 (ent
->val
, NULL
);
10159 /* Emit debug info for the address of the end of the table. */
10160 dw2_asm_output_data (1, 0, "set address %s", table
->end_label
);
10161 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
10162 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
10163 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, table
->end_label
, NULL
);
10165 dw2_asm_output_data (1, 0, "end sequence");
10166 dw2_asm_output_data_uleb128 (1, NULL
);
10167 dw2_asm_output_data (1, DW_LNE_end_sequence
, NULL
);
10170 /* Output the source line number correspondence information. This
10171 information goes into the .debug_line section. */
10174 output_line_info (bool prologue_only
)
10176 char l1
[20], l2
[20], p1
[20], p2
[20];
10177 int ver
= dwarf_version
;
10178 bool saw_one
= false;
10181 ASM_GENERATE_INTERNAL_LABEL (l1
, LINE_NUMBER_BEGIN_LABEL
, 0);
10182 ASM_GENERATE_INTERNAL_LABEL (l2
, LINE_NUMBER_END_LABEL
, 0);
10183 ASM_GENERATE_INTERNAL_LABEL (p1
, LN_PROLOG_AS_LABEL
, 0);
10184 ASM_GENERATE_INTERNAL_LABEL (p2
, LN_PROLOG_END_LABEL
, 0);
10186 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
10187 dw2_asm_output_data (4, 0xffffffff,
10188 "Initial length escape value indicating 64-bit DWARF extension");
10189 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, l2
, l1
,
10190 "Length of Source Line Info");
10191 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
10193 dw2_asm_output_data (2, ver
, "DWARF Version");
10194 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, p2
, p1
, "Prolog Length");
10195 ASM_OUTPUT_LABEL (asm_out_file
, p1
);
10197 /* Define the architecture-dependent minimum instruction length (in bytes).
10198 In this implementation of DWARF, this field is used for information
10199 purposes only. Since GCC generates assembly language, we have no
10200 a priori knowledge of how many instruction bytes are generated for each
10201 source line, and therefore can use only the DW_LNE_set_address and
10202 DW_LNS_fixed_advance_pc line information commands. Accordingly, we fix
10203 this as '1', which is "correct enough" for all architectures,
10204 and don't let the target override. */
10205 dw2_asm_output_data (1, 1, "Minimum Instruction Length");
10208 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
,
10209 "Maximum Operations Per Instruction");
10210 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START
,
10211 "Default is_stmt_start flag");
10212 dw2_asm_output_data (1, DWARF_LINE_BASE
,
10213 "Line Base Value (Special Opcodes)");
10214 dw2_asm_output_data (1, DWARF_LINE_RANGE
,
10215 "Line Range Value (Special Opcodes)");
10216 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
,
10217 "Special Opcode Base");
10219 for (opc
= 1; opc
< DWARF_LINE_OPCODE_BASE
; opc
++)
10224 case DW_LNS_advance_pc
:
10225 case DW_LNS_advance_line
:
10226 case DW_LNS_set_file
:
10227 case DW_LNS_set_column
:
10228 case DW_LNS_fixed_advance_pc
:
10229 case DW_LNS_set_isa
:
10237 dw2_asm_output_data (1, n_op_args
, "opcode: %#x has %d args",
10241 /* Write out the information about the files we use. */
10242 output_file_names ();
10243 ASM_OUTPUT_LABEL (asm_out_file
, p2
);
10246 /* Output the marker for the end of the line number info. */
10247 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
10251 if (separate_line_info
)
10253 dw_line_info_table
*table
;
10256 FOR_EACH_VEC_ELT (*separate_line_info
, i
, table
)
10259 output_one_line_info_table (table
);
10263 if (cold_text_section_line_info
&& cold_text_section_line_info
->in_use
)
10265 output_one_line_info_table (cold_text_section_line_info
);
10269 /* ??? Some Darwin linkers crash on a .debug_line section with no
10270 sequences. Further, merely a DW_LNE_end_sequence entry is not
10271 sufficient -- the address column must also be initialized.
10272 Make sure to output at least one set_address/end_sequence pair,
10273 choosing .text since that section is always present. */
10274 if (text_section_line_info
->in_use
|| !saw_one
)
10275 output_one_line_info_table (text_section_line_info
);
10277 /* Output the marker for the end of the line number info. */
10278 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
10281 /* Given a pointer to a tree node for some base type, return a pointer to
10282 a DIE that describes the given type.
10284 This routine must only be called for GCC type nodes that correspond to
10285 Dwarf base (fundamental) types. */
10288 base_type_die (tree type
)
10290 dw_die_ref base_type_result
;
10291 enum dwarf_type encoding
;
10293 if (TREE_CODE (type
) == ERROR_MARK
|| TREE_CODE (type
) == VOID_TYPE
)
10296 /* If this is a subtype that should not be emitted as a subrange type,
10297 use the base type. See subrange_type_for_debug_p. */
10298 if (TREE_CODE (type
) == INTEGER_TYPE
&& TREE_TYPE (type
) != NULL_TREE
)
10299 type
= TREE_TYPE (type
);
10301 switch (TREE_CODE (type
))
10304 if ((dwarf_version
>= 4 || !dwarf_strict
)
10305 && TYPE_NAME (type
)
10306 && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
10307 && DECL_IS_BUILTIN (TYPE_NAME (type
))
10308 && DECL_NAME (TYPE_NAME (type
)))
10310 const char *name
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type
)));
10311 if (strcmp (name
, "char16_t") == 0
10312 || strcmp (name
, "char32_t") == 0)
10314 encoding
= DW_ATE_UTF
;
10318 if (TYPE_STRING_FLAG (type
))
10320 if (TYPE_UNSIGNED (type
))
10321 encoding
= DW_ATE_unsigned_char
;
10323 encoding
= DW_ATE_signed_char
;
10325 else if (TYPE_UNSIGNED (type
))
10326 encoding
= DW_ATE_unsigned
;
10328 encoding
= DW_ATE_signed
;
10332 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type
)))
10334 if (dwarf_version
>= 3 || !dwarf_strict
)
10335 encoding
= DW_ATE_decimal_float
;
10337 encoding
= DW_ATE_lo_user
;
10340 encoding
= DW_ATE_float
;
10343 case FIXED_POINT_TYPE
:
10344 if (!(dwarf_version
>= 3 || !dwarf_strict
))
10345 encoding
= DW_ATE_lo_user
;
10346 else if (TYPE_UNSIGNED (type
))
10347 encoding
= DW_ATE_unsigned_fixed
;
10349 encoding
= DW_ATE_signed_fixed
;
10352 /* Dwarf2 doesn't know anything about complex ints, so use
10353 a user defined type for it. */
10355 if (TREE_CODE (TREE_TYPE (type
)) == REAL_TYPE
)
10356 encoding
= DW_ATE_complex_float
;
10358 encoding
= DW_ATE_lo_user
;
10362 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
10363 encoding
= DW_ATE_boolean
;
10367 /* No other TREE_CODEs are Dwarf fundamental types. */
10368 gcc_unreachable ();
10371 base_type_result
= new_die (DW_TAG_base_type
, comp_unit_die (), type
);
10373 add_AT_unsigned (base_type_result
, DW_AT_byte_size
,
10374 int_size_in_bytes (type
));
10375 add_AT_unsigned (base_type_result
, DW_AT_encoding
, encoding
);
10376 add_pubtype (type
, base_type_result
);
10378 return base_type_result
;
10381 /* A C++ function with deduced return type can have a TEMPLATE_TYPE_PARM
10382 named 'auto' in its type: return true for it, false otherwise. */
10385 is_cxx_auto (tree type
)
10389 tree name
= TYPE_IDENTIFIER (type
);
10390 if (name
== get_identifier ("auto")
10391 || name
== get_identifier ("decltype(auto)"))
10397 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
10398 given input type is a Dwarf "fundamental" type. Otherwise return null. */
10401 is_base_type (tree type
)
10403 switch (TREE_CODE (type
))
10409 case FIXED_POINT_TYPE
:
10417 case QUAL_UNION_TYPE
:
10418 case ENUMERAL_TYPE
:
10419 case FUNCTION_TYPE
:
10422 case REFERENCE_TYPE
:
10430 if (is_cxx_auto (type
))
10432 gcc_unreachable ();
10438 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
10439 node, return the size in bits for the type if it is a constant, or else
10440 return the alignment for the type if the type's size is not constant, or
10441 else return BITS_PER_WORD if the type actually turns out to be an
10442 ERROR_MARK node. */
10444 static inline unsigned HOST_WIDE_INT
10445 simple_type_size_in_bits (const_tree type
)
10447 if (TREE_CODE (type
) == ERROR_MARK
)
10448 return BITS_PER_WORD
;
10449 else if (TYPE_SIZE (type
) == NULL_TREE
)
10451 else if (tree_fits_uhwi_p (TYPE_SIZE (type
)))
10452 return tree_to_uhwi (TYPE_SIZE (type
));
10454 return TYPE_ALIGN (type
);
10457 /* Similarly, but return an offset_int instead of UHWI. */
10459 static inline offset_int
10460 offset_int_type_size_in_bits (const_tree type
)
10462 if (TREE_CODE (type
) == ERROR_MARK
)
10463 return BITS_PER_WORD
;
10464 else if (TYPE_SIZE (type
) == NULL_TREE
)
10466 else if (TREE_CODE (TYPE_SIZE (type
)) == INTEGER_CST
)
10467 return wi::to_offset (TYPE_SIZE (type
));
10469 return TYPE_ALIGN (type
);
10472 /* Given a pointer to a tree node for a subrange type, return a pointer
10473 to a DIE that describes the given type. */
10476 subrange_type_die (tree type
, tree low
, tree high
, dw_die_ref context_die
)
10478 dw_die_ref subrange_die
;
10479 const HOST_WIDE_INT size_in_bytes
= int_size_in_bytes (type
);
10481 if (context_die
== NULL
)
10482 context_die
= comp_unit_die ();
10484 subrange_die
= new_die (DW_TAG_subrange_type
, context_die
, type
);
10486 if (int_size_in_bytes (TREE_TYPE (type
)) != size_in_bytes
)
10488 /* The size of the subrange type and its base type do not match,
10489 so we need to generate a size attribute for the subrange type. */
10490 add_AT_unsigned (subrange_die
, DW_AT_byte_size
, size_in_bytes
);
10494 add_bound_info (subrange_die
, DW_AT_lower_bound
, low
);
10496 add_bound_info (subrange_die
, DW_AT_upper_bound
, high
);
10498 return subrange_die
;
10501 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
10502 entry that chains various modifiers in front of the given type. */
10505 modified_type_die (tree type
, int is_const_type
, int is_volatile_type
,
10506 dw_die_ref context_die
)
10508 enum tree_code code
= TREE_CODE (type
);
10509 dw_die_ref mod_type_die
;
10510 dw_die_ref sub_die
= NULL
;
10511 tree item_type
= NULL
;
10512 tree qualified_type
;
10513 tree name
, low
, high
;
10514 dw_die_ref mod_scope
;
10516 if (code
== ERROR_MARK
)
10519 /* See if we already have the appropriately qualified variant of
10522 = get_qualified_type (type
,
10523 ((is_const_type
? TYPE_QUAL_CONST
: 0)
10524 | (is_volatile_type
? TYPE_QUAL_VOLATILE
: 0)));
10526 if (qualified_type
== sizetype
10527 && TYPE_NAME (qualified_type
)
10528 && TREE_CODE (TYPE_NAME (qualified_type
)) == TYPE_DECL
)
10530 tree t
= TREE_TYPE (TYPE_NAME (qualified_type
));
10532 gcc_checking_assert (TREE_CODE (t
) == INTEGER_TYPE
10533 && TYPE_PRECISION (t
)
10534 == TYPE_PRECISION (qualified_type
)
10535 && TYPE_UNSIGNED (t
)
10536 == TYPE_UNSIGNED (qualified_type
));
10537 qualified_type
= t
;
10540 /* If we do, then we can just use its DIE, if it exists. */
10541 if (qualified_type
)
10543 mod_type_die
= lookup_type_die (qualified_type
);
10545 return mod_type_die
;
10548 name
= qualified_type
? TYPE_NAME (qualified_type
) : NULL
;
10550 /* Handle C typedef types. */
10551 if (name
&& TREE_CODE (name
) == TYPE_DECL
&& DECL_ORIGINAL_TYPE (name
)
10552 && !DECL_ARTIFICIAL (name
))
10554 tree dtype
= TREE_TYPE (name
);
10556 if (qualified_type
== dtype
)
10558 /* For a named type, use the typedef. */
10559 gen_type_die (qualified_type
, context_die
);
10560 return lookup_type_die (qualified_type
);
10562 else if (is_const_type
< TYPE_READONLY (dtype
)
10563 || is_volatile_type
< TYPE_VOLATILE (dtype
)
10564 || (is_const_type
<= TYPE_READONLY (dtype
)
10565 && is_volatile_type
<= TYPE_VOLATILE (dtype
)
10566 && DECL_ORIGINAL_TYPE (name
) != type
))
10567 /* cv-unqualified version of named type. Just use the unnamed
10568 type to which it refers. */
10569 return modified_type_die (DECL_ORIGINAL_TYPE (name
),
10570 is_const_type
, is_volatile_type
,
10572 /* Else cv-qualified version of named type; fall through. */
10575 mod_scope
= scope_die_for (type
, context_die
);
10578 /* If both is_const_type and is_volatile_type, prefer the path
10579 which leads to a qualified type. */
10580 && (!is_volatile_type
10581 || get_qualified_type (type
, TYPE_QUAL_CONST
) == NULL_TREE
10582 || get_qualified_type (type
, TYPE_QUAL_VOLATILE
) != NULL_TREE
))
10584 mod_type_die
= new_die (DW_TAG_const_type
, mod_scope
, type
);
10585 sub_die
= modified_type_die (type
, 0, is_volatile_type
, context_die
);
10587 else if (is_volatile_type
)
10589 mod_type_die
= new_die (DW_TAG_volatile_type
, mod_scope
, type
);
10590 sub_die
= modified_type_die (type
, is_const_type
, 0, context_die
);
10592 else if (code
== POINTER_TYPE
)
10594 mod_type_die
= new_die (DW_TAG_pointer_type
, mod_scope
, type
);
10595 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
10596 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
10597 item_type
= TREE_TYPE (type
);
10598 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type
)))
10599 add_AT_unsigned (mod_type_die
, DW_AT_address_class
,
10600 TYPE_ADDR_SPACE (item_type
));
10602 else if (code
== REFERENCE_TYPE
)
10604 if (TYPE_REF_IS_RVALUE (type
) && dwarf_version
>= 4)
10605 mod_type_die
= new_die (DW_TAG_rvalue_reference_type
, mod_scope
,
10608 mod_type_die
= new_die (DW_TAG_reference_type
, mod_scope
, type
);
10609 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
10610 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
10611 item_type
= TREE_TYPE (type
);
10612 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type
)))
10613 add_AT_unsigned (mod_type_die
, DW_AT_address_class
,
10614 TYPE_ADDR_SPACE (item_type
));
10616 else if (code
== INTEGER_TYPE
10617 && TREE_TYPE (type
) != NULL_TREE
10618 && subrange_type_for_debug_p (type
, &low
, &high
))
10620 mod_type_die
= subrange_type_die (type
, low
, high
, context_die
);
10621 item_type
= TREE_TYPE (type
);
10623 else if (is_base_type (type
))
10624 mod_type_die
= base_type_die (type
);
10627 gen_type_die (type
, context_die
);
10629 /* We have to get the type_main_variant here (and pass that to the
10630 `lookup_type_die' routine) because the ..._TYPE node we have
10631 might simply be a *copy* of some original type node (where the
10632 copy was created to help us keep track of typedef names) and
10633 that copy might have a different TYPE_UID from the original
10635 if (TREE_CODE (type
) != VECTOR_TYPE
)
10636 return lookup_type_die (type_main_variant (type
));
10638 /* Vectors have the debugging information in the type,
10639 not the main variant. */
10640 return lookup_type_die (type
);
10643 /* Builtin types don't have a DECL_ORIGINAL_TYPE. For those,
10644 don't output a DW_TAG_typedef, since there isn't one in the
10645 user's program; just attach a DW_AT_name to the type.
10646 Don't attach a DW_AT_name to DW_TAG_const_type or DW_TAG_volatile_type
10647 if the base type already has the same name. */
10649 && ((TREE_CODE (name
) != TYPE_DECL
10650 && (qualified_type
== TYPE_MAIN_VARIANT (type
)
10651 || (!is_const_type
&& !is_volatile_type
)))
10652 || (TREE_CODE (name
) == TYPE_DECL
10653 && TREE_TYPE (name
) == qualified_type
10654 && DECL_NAME (name
))))
10656 if (TREE_CODE (name
) == TYPE_DECL
)
10657 /* Could just call add_name_and_src_coords_attributes here,
10658 but since this is a builtin type it doesn't have any
10659 useful source coordinates anyway. */
10660 name
= DECL_NAME (name
);
10661 add_name_attribute (mod_type_die
, IDENTIFIER_POINTER (name
));
10663 /* This probably indicates a bug. */
10664 else if (mod_type_die
&& mod_type_die
->die_tag
== DW_TAG_base_type
)
10666 name
= TYPE_IDENTIFIER (type
);
10667 add_name_attribute (mod_type_die
,
10668 name
? IDENTIFIER_POINTER (name
) : "__unknown__");
10671 if (qualified_type
)
10672 equate_type_number_to_die (qualified_type
, mod_type_die
);
10675 /* We must do this after the equate_type_number_to_die call, in case
10676 this is a recursive type. This ensures that the modified_type_die
10677 recursion will terminate even if the type is recursive. Recursive
10678 types are possible in Ada. */
10679 sub_die
= modified_type_die (item_type
,
10680 TYPE_READONLY (item_type
),
10681 TYPE_VOLATILE (item_type
),
10684 if (sub_die
!= NULL
)
10685 add_AT_die_ref (mod_type_die
, DW_AT_type
, sub_die
);
10687 add_gnat_descriptive_type_attribute (mod_type_die
, type
, context_die
);
10688 if (TYPE_ARTIFICIAL (type
))
10689 add_AT_flag (mod_type_die
, DW_AT_artificial
, 1);
10691 return mod_type_die
;
10694 /* Generate DIEs for the generic parameters of T.
10695 T must be either a generic type or a generic function.
10696 See http://gcc.gnu.org/wiki/TemplateParmsDwarf for more. */
10699 gen_generic_params_dies (tree t
)
10703 dw_die_ref die
= NULL
;
10706 if (!t
|| (TYPE_P (t
) && !COMPLETE_TYPE_P (t
)))
10710 die
= lookup_type_die (t
);
10711 else if (DECL_P (t
))
10712 die
= lookup_decl_die (t
);
10716 parms
= lang_hooks
.get_innermost_generic_parms (t
);
10718 /* T has no generic parameter. It means T is neither a generic type
10719 or function. End of story. */
10722 parms_num
= TREE_VEC_LENGTH (parms
);
10723 args
= lang_hooks
.get_innermost_generic_args (t
);
10724 if (TREE_CHAIN (args
) && TREE_CODE (TREE_CHAIN (args
)) == INTEGER_CST
)
10725 non_default
= int_cst_value (TREE_CHAIN (args
));
10727 non_default
= TREE_VEC_LENGTH (args
);
10728 for (i
= 0; i
< parms_num
; i
++)
10730 tree parm
, arg
, arg_pack_elems
;
10731 dw_die_ref parm_die
;
10733 parm
= TREE_VEC_ELT (parms
, i
);
10734 arg
= TREE_VEC_ELT (args
, i
);
10735 arg_pack_elems
= lang_hooks
.types
.get_argument_pack_elems (arg
);
10736 gcc_assert (parm
&& TREE_VALUE (parm
) && arg
);
10738 if (parm
&& TREE_VALUE (parm
) && arg
)
10740 /* If PARM represents a template parameter pack,
10741 emit a DW_TAG_GNU_template_parameter_pack DIE, followed
10742 by DW_TAG_template_*_parameter DIEs for the argument
10743 pack elements of ARG. Note that ARG would then be
10744 an argument pack. */
10745 if (arg_pack_elems
)
10746 parm_die
= template_parameter_pack_die (TREE_VALUE (parm
),
10750 parm_die
= generic_parameter_die (TREE_VALUE (parm
), arg
,
10751 true /* emit name */, die
);
10752 if (i
>= non_default
)
10753 add_AT_flag (parm_die
, DW_AT_default_value
, 1);
10758 /* Create and return a DIE for PARM which should be
10759 the representation of a generic type parameter.
10760 For instance, in the C++ front end, PARM would be a template parameter.
10761 ARG is the argument to PARM.
10762 EMIT_NAME_P if tree, the DIE will have DW_AT_name attribute set to the
10764 PARENT_DIE is the parent DIE which the new created DIE should be added to,
10765 as a child node. */
10768 generic_parameter_die (tree parm
, tree arg
,
10770 dw_die_ref parent_die
)
10772 dw_die_ref tmpl_die
= NULL
;
10773 const char *name
= NULL
;
10775 if (!parm
|| !DECL_NAME (parm
) || !arg
)
10778 /* We support non-type generic parameters and arguments,
10779 type generic parameters and arguments, as well as
10780 generic generic parameters (a.k.a. template template parameters in C++)
10782 if (TREE_CODE (parm
) == PARM_DECL
)
10783 /* PARM is a nontype generic parameter */
10784 tmpl_die
= new_die (DW_TAG_template_value_param
, parent_die
, parm
);
10785 else if (TREE_CODE (parm
) == TYPE_DECL
)
10786 /* PARM is a type generic parameter. */
10787 tmpl_die
= new_die (DW_TAG_template_type_param
, parent_die
, parm
);
10788 else if (lang_hooks
.decls
.generic_generic_parameter_decl_p (parm
))
10789 /* PARM is a generic generic parameter.
10790 Its DIE is a GNU extension. It shall have a
10791 DW_AT_name attribute to represent the name of the template template
10792 parameter, and a DW_AT_GNU_template_name attribute to represent the
10793 name of the template template argument. */
10794 tmpl_die
= new_die (DW_TAG_GNU_template_template_param
,
10797 gcc_unreachable ();
10803 /* If PARM is a generic parameter pack, it means we are
10804 emitting debug info for a template argument pack element.
10805 In other terms, ARG is a template argument pack element.
10806 In that case, we don't emit any DW_AT_name attribute for
10810 name
= IDENTIFIER_POINTER (DECL_NAME (parm
));
10812 add_AT_string (tmpl_die
, DW_AT_name
, name
);
10815 if (!lang_hooks
.decls
.generic_generic_parameter_decl_p (parm
))
10817 /* DWARF3, 5.6.8 says if PARM is a non-type generic parameter
10818 TMPL_DIE should have a child DW_AT_type attribute that is set
10819 to the type of the argument to PARM, which is ARG.
10820 If PARM is a type generic parameter, TMPL_DIE should have a
10821 child DW_AT_type that is set to ARG. */
10822 tmpl_type
= TYPE_P (arg
) ? arg
: TREE_TYPE (arg
);
10823 add_type_attribute (tmpl_die
, tmpl_type
, 0,
10824 TREE_THIS_VOLATILE (tmpl_type
),
10829 /* So TMPL_DIE is a DIE representing a
10830 a generic generic template parameter, a.k.a template template
10831 parameter in C++ and arg is a template. */
10833 /* The DW_AT_GNU_template_name attribute of the DIE must be set
10834 to the name of the argument. */
10835 name
= dwarf2_name (TYPE_P (arg
) ? TYPE_NAME (arg
) : arg
, 1);
10837 add_AT_string (tmpl_die
, DW_AT_GNU_template_name
, name
);
10840 if (TREE_CODE (parm
) == PARM_DECL
)
10841 /* So PARM is a non-type generic parameter.
10842 DWARF3 5.6.8 says we must set a DW_AT_const_value child
10843 attribute of TMPL_DIE which value represents the value
10845 We must be careful here:
10846 The value of ARG might reference some function decls.
10847 We might currently be emitting debug info for a generic
10848 type and types are emitted before function decls, we don't
10849 know if the function decls referenced by ARG will actually be
10850 emitted after cgraph computations.
10851 So must defer the generation of the DW_AT_const_value to
10852 after cgraph is ready. */
10853 append_entry_to_tmpl_value_parm_die_table (tmpl_die
, arg
);
10859 /* Generate and return a DW_TAG_GNU_template_parameter_pack DIE representing.
10860 PARM_PACK must be a template parameter pack. The returned DIE
10861 will be child DIE of PARENT_DIE. */
10864 template_parameter_pack_die (tree parm_pack
,
10865 tree parm_pack_args
,
10866 dw_die_ref parent_die
)
10871 gcc_assert (parent_die
&& parm_pack
);
10873 die
= new_die (DW_TAG_GNU_template_parameter_pack
, parent_die
, parm_pack
);
10874 add_name_and_src_coords_attributes (die
, parm_pack
);
10875 for (j
= 0; j
< TREE_VEC_LENGTH (parm_pack_args
); j
++)
10876 generic_parameter_die (parm_pack
,
10877 TREE_VEC_ELT (parm_pack_args
, j
),
10878 false /* Don't emit DW_AT_name */,
10883 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
10884 an enumerated type. */
10887 type_is_enum (const_tree type
)
10889 return TREE_CODE (type
) == ENUMERAL_TYPE
;
10892 /* Return the DBX register number described by a given RTL node. */
10894 static unsigned int
10895 dbx_reg_number (const_rtx rtl
)
10897 unsigned regno
= REGNO (rtl
);
10899 gcc_assert (regno
< FIRST_PSEUDO_REGISTER
);
10901 #ifdef LEAF_REG_REMAP
10902 if (crtl
->uses_only_leaf_regs
)
10904 int leaf_reg
= LEAF_REG_REMAP (regno
);
10905 if (leaf_reg
!= -1)
10906 regno
= (unsigned) leaf_reg
;
10910 regno
= DBX_REGISTER_NUMBER (regno
);
10911 gcc_assert (regno
!= INVALID_REGNUM
);
10915 /* Optionally add a DW_OP_piece term to a location description expression.
10916 DW_OP_piece is only added if the location description expression already
10917 doesn't end with DW_OP_piece. */
10920 add_loc_descr_op_piece (dw_loc_descr_ref
*list_head
, int size
)
10922 dw_loc_descr_ref loc
;
10924 if (*list_head
!= NULL
)
10926 /* Find the end of the chain. */
10927 for (loc
= *list_head
; loc
->dw_loc_next
!= NULL
; loc
= loc
->dw_loc_next
)
10930 if (loc
->dw_loc_opc
!= DW_OP_piece
)
10931 loc
->dw_loc_next
= new_loc_descr (DW_OP_piece
, size
, 0);
10935 /* Return a location descriptor that designates a machine register or
10936 zero if there is none. */
10938 static dw_loc_descr_ref
10939 reg_loc_descriptor (rtx rtl
, enum var_init_status initialized
)
10943 if (REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
10946 /* We only use "frame base" when we're sure we're talking about the
10947 post-prologue local stack frame. We do this by *not* running
10948 register elimination until this point, and recognizing the special
10949 argument pointer and soft frame pointer rtx's.
10950 Use DW_OP_fbreg offset DW_OP_stack_value in this case. */
10951 if ((rtl
== arg_pointer_rtx
|| rtl
== frame_pointer_rtx
)
10952 && eliminate_regs (rtl
, VOIDmode
, NULL_RTX
) != rtl
)
10954 dw_loc_descr_ref result
= NULL
;
10956 if (dwarf_version
>= 4 || !dwarf_strict
)
10958 result
= mem_loc_descriptor (rtl
, GET_MODE (rtl
), VOIDmode
,
10961 add_loc_descr (&result
,
10962 new_loc_descr (DW_OP_stack_value
, 0, 0));
10967 regs
= targetm
.dwarf_register_span (rtl
);
10969 if (hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)] > 1 || regs
)
10970 return multiple_reg_loc_descriptor (rtl
, regs
, initialized
);
10973 unsigned int dbx_regnum
= dbx_reg_number (rtl
);
10974 if (dbx_regnum
== IGNORED_DWARF_REGNUM
)
10976 return one_reg_loc_descriptor (dbx_regnum
, initialized
);
10980 /* Return a location descriptor that designates a machine register for
10981 a given hard register number. */
10983 static dw_loc_descr_ref
10984 one_reg_loc_descriptor (unsigned int regno
, enum var_init_status initialized
)
10986 dw_loc_descr_ref reg_loc_descr
;
10990 = new_loc_descr ((enum dwarf_location_atom
) (DW_OP_reg0
+ regno
), 0, 0);
10992 reg_loc_descr
= new_loc_descr (DW_OP_regx
, regno
, 0);
10994 if (initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
10995 add_loc_descr (®_loc_descr
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
10997 return reg_loc_descr
;
11000 /* Given an RTL of a register, return a location descriptor that
11001 designates a value that spans more than one register. */
11003 static dw_loc_descr_ref
11004 multiple_reg_loc_descriptor (rtx rtl
, rtx regs
,
11005 enum var_init_status initialized
)
11008 dw_loc_descr_ref loc_result
= NULL
;
11010 /* Simple, contiguous registers. */
11011 if (regs
== NULL_RTX
)
11013 unsigned reg
= REGNO (rtl
);
11016 #ifdef LEAF_REG_REMAP
11017 if (crtl
->uses_only_leaf_regs
)
11019 int leaf_reg
= LEAF_REG_REMAP (reg
);
11020 if (leaf_reg
!= -1)
11021 reg
= (unsigned) leaf_reg
;
11025 gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg
) == dbx_reg_number (rtl
));
11026 nregs
= hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)];
11028 size
= GET_MODE_SIZE (GET_MODE (rtl
)) / nregs
;
11033 dw_loc_descr_ref t
;
11035 t
= one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg
),
11036 VAR_INIT_STATUS_INITIALIZED
);
11037 add_loc_descr (&loc_result
, t
);
11038 add_loc_descr_op_piece (&loc_result
, size
);
11044 /* Now onto stupid register sets in non contiguous locations. */
11046 gcc_assert (GET_CODE (regs
) == PARALLEL
);
11048 size
= GET_MODE_SIZE (GET_MODE (XVECEXP (regs
, 0, 0)));
11051 for (i
= 0; i
< XVECLEN (regs
, 0); ++i
)
11053 dw_loc_descr_ref t
;
11055 t
= one_reg_loc_descriptor (dbx_reg_number (XVECEXP (regs
, 0, i
)),
11056 VAR_INIT_STATUS_INITIALIZED
);
11057 add_loc_descr (&loc_result
, t
);
11058 add_loc_descr_op_piece (&loc_result
, size
);
11061 if (loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
11062 add_loc_descr (&loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
11066 static unsigned long size_of_int_loc_descriptor (HOST_WIDE_INT
);
11068 /* Return a location descriptor that designates a constant i,
11069 as a compound operation from constant (i >> shift), constant shift
11072 static dw_loc_descr_ref
11073 int_shift_loc_descriptor (HOST_WIDE_INT i
, int shift
)
11075 dw_loc_descr_ref ret
= int_loc_descriptor (i
>> shift
);
11076 add_loc_descr (&ret
, int_loc_descriptor (shift
));
11077 add_loc_descr (&ret
, new_loc_descr (DW_OP_shl
, 0, 0));
11081 /* Return a location descriptor that designates a constant. */
11083 static dw_loc_descr_ref
11084 int_loc_descriptor (HOST_WIDE_INT i
)
11086 enum dwarf_location_atom op
;
11088 /* Pick the smallest representation of a constant, rather than just
11089 defaulting to the LEB encoding. */
11092 int clz
= clz_hwi (i
);
11093 int ctz
= ctz_hwi (i
);
11095 op
= (enum dwarf_location_atom
) (DW_OP_lit0
+ i
);
11096 else if (i
<= 0xff)
11097 op
= DW_OP_const1u
;
11098 else if (i
<= 0xffff)
11099 op
= DW_OP_const2u
;
11100 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 5
11101 && clz
+ 5 + 255 >= HOST_BITS_PER_WIDE_INT
)
11102 /* DW_OP_litX DW_OP_litY DW_OP_shl takes just 3 bytes and
11103 DW_OP_litX DW_OP_const1u Y DW_OP_shl takes just 4 bytes,
11104 while DW_OP_const4u is 5 bytes. */
11105 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 5);
11106 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 8
11107 && clz
+ 8 + 31 >= HOST_BITS_PER_WIDE_INT
)
11108 /* DW_OP_const1u X DW_OP_litY DW_OP_shl takes just 4 bytes,
11109 while DW_OP_const4u is 5 bytes. */
11110 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 8);
11111 else if (HOST_BITS_PER_WIDE_INT
== 32 || i
<= 0xffffffff)
11112 op
= DW_OP_const4u
;
11113 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 8
11114 && clz
+ 8 + 255 >= HOST_BITS_PER_WIDE_INT
)
11115 /* DW_OP_const1u X DW_OP_const1u Y DW_OP_shl takes just 5 bytes,
11116 while DW_OP_constu of constant >= 0x100000000 takes at least
11118 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 8);
11119 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 16
11120 && clz
+ 16 + (size_of_uleb128 (i
) > 5 ? 255 : 31)
11121 >= HOST_BITS_PER_WIDE_INT
)
11122 /* DW_OP_const2u X DW_OP_litY DW_OP_shl takes just 5 bytes,
11123 DW_OP_const2u X DW_OP_const1u Y DW_OP_shl takes 6 bytes,
11124 while DW_OP_constu takes in this case at least 6 bytes. */
11125 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 16);
11126 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 32
11127 && clz
+ 32 + 31 >= HOST_BITS_PER_WIDE_INT
11128 && size_of_uleb128 (i
) > 6)
11129 /* DW_OP_const4u X DW_OP_litY DW_OP_shl takes just 7 bytes. */
11130 return int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
- clz
- 32);
11137 op
= DW_OP_const1s
;
11138 else if (i
>= -0x8000)
11139 op
= DW_OP_const2s
;
11140 else if (HOST_BITS_PER_WIDE_INT
== 32 || i
>= -0x80000000)
11142 if (size_of_int_loc_descriptor (i
) < 5)
11144 dw_loc_descr_ref ret
= int_loc_descriptor (-i
);
11145 add_loc_descr (&ret
, new_loc_descr (DW_OP_neg
, 0, 0));
11148 op
= DW_OP_const4s
;
11152 if (size_of_int_loc_descriptor (i
)
11153 < (unsigned long) 1 + size_of_sleb128 (i
))
11155 dw_loc_descr_ref ret
= int_loc_descriptor (-i
);
11156 add_loc_descr (&ret
, new_loc_descr (DW_OP_neg
, 0, 0));
11163 return new_loc_descr (op
, i
, 0);
11166 /* Return size_of_locs (int_shift_loc_descriptor (i, shift))
11167 without actually allocating it. */
11169 static unsigned long
11170 size_of_int_shift_loc_descriptor (HOST_WIDE_INT i
, int shift
)
11172 return size_of_int_loc_descriptor (i
>> shift
)
11173 + size_of_int_loc_descriptor (shift
)
11177 /* Return size_of_locs (int_loc_descriptor (i)) without
11178 actually allocating it. */
11180 static unsigned long
11181 size_of_int_loc_descriptor (HOST_WIDE_INT i
)
11190 else if (i
<= 0xff)
11192 else if (i
<= 0xffff)
11196 if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 5
11197 && clz
+ 5 + 255 >= HOST_BITS_PER_WIDE_INT
)
11198 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11200 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 8
11201 && clz
+ 8 + 31 >= HOST_BITS_PER_WIDE_INT
)
11202 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11204 else if (HOST_BITS_PER_WIDE_INT
== 32 || i
<= 0xffffffff)
11206 s
= size_of_uleb128 ((unsigned HOST_WIDE_INT
) i
);
11207 if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 8
11208 && clz
+ 8 + 255 >= HOST_BITS_PER_WIDE_INT
)
11209 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11211 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 16
11212 && clz
+ 16 + (s
> 5 ? 255 : 31) >= HOST_BITS_PER_WIDE_INT
)
11213 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11215 else if (clz
+ ctz
>= HOST_BITS_PER_WIDE_INT
- 32
11216 && clz
+ 32 + 31 >= HOST_BITS_PER_WIDE_INT
11218 return size_of_int_shift_loc_descriptor (i
, HOST_BITS_PER_WIDE_INT
11227 else if (i
>= -0x8000)
11229 else if (HOST_BITS_PER_WIDE_INT
== 32 || i
>= -0x80000000)
11231 if (-(unsigned HOST_WIDE_INT
) i
!= (unsigned HOST_WIDE_INT
) i
)
11233 s
= size_of_int_loc_descriptor (-i
) + 1;
11241 unsigned long r
= 1 + size_of_sleb128 (i
);
11242 if (-(unsigned HOST_WIDE_INT
) i
!= (unsigned HOST_WIDE_INT
) i
)
11244 s
= size_of_int_loc_descriptor (-i
) + 1;
11253 /* Return loc description representing "address" of integer value.
11254 This can appear only as toplevel expression. */
11256 static dw_loc_descr_ref
11257 address_of_int_loc_descriptor (int size
, HOST_WIDE_INT i
)
11260 dw_loc_descr_ref loc_result
= NULL
;
11262 if (!(dwarf_version
>= 4 || !dwarf_strict
))
11265 litsize
= size_of_int_loc_descriptor (i
);
11266 /* Determine if DW_OP_stack_value or DW_OP_implicit_value
11267 is more compact. For DW_OP_stack_value we need:
11268 litsize + 1 (DW_OP_stack_value)
11269 and for DW_OP_implicit_value:
11270 1 (DW_OP_implicit_value) + 1 (length) + size. */
11271 if ((int) DWARF2_ADDR_SIZE
>= size
&& litsize
+ 1 <= 1 + 1 + size
)
11273 loc_result
= int_loc_descriptor (i
);
11274 add_loc_descr (&loc_result
,
11275 new_loc_descr (DW_OP_stack_value
, 0, 0));
11279 loc_result
= new_loc_descr (DW_OP_implicit_value
,
11281 loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_const
;
11282 loc_result
->dw_loc_oprnd2
.v
.val_int
= i
;
11286 /* Return a location descriptor that designates a base+offset location. */
11288 static dw_loc_descr_ref
11289 based_loc_descr (rtx reg
, HOST_WIDE_INT offset
,
11290 enum var_init_status initialized
)
11292 unsigned int regno
;
11293 dw_loc_descr_ref result
;
11294 dw_fde_ref fde
= cfun
->fde
;
11296 /* We only use "frame base" when we're sure we're talking about the
11297 post-prologue local stack frame. We do this by *not* running
11298 register elimination until this point, and recognizing the special
11299 argument pointer and soft frame pointer rtx's. */
11300 if (reg
== arg_pointer_rtx
|| reg
== frame_pointer_rtx
)
11302 rtx elim
= (ira_use_lra_p
11303 ? lra_eliminate_regs (reg
, VOIDmode
, NULL_RTX
)
11304 : eliminate_regs (reg
, VOIDmode
, NULL_RTX
));
11308 if (GET_CODE (elim
) == PLUS
)
11310 offset
+= INTVAL (XEXP (elim
, 1));
11311 elim
= XEXP (elim
, 0);
11313 gcc_assert ((SUPPORTS_STACK_ALIGNMENT
11314 && (elim
== hard_frame_pointer_rtx
11315 || elim
== stack_pointer_rtx
))
11316 || elim
== (frame_pointer_needed
11317 ? hard_frame_pointer_rtx
11318 : stack_pointer_rtx
));
11320 /* If drap register is used to align stack, use frame
11321 pointer + offset to access stack variables. If stack
11322 is aligned without drap, use stack pointer + offset to
11323 access stack variables. */
11324 if (crtl
->stack_realign_tried
11325 && reg
== frame_pointer_rtx
)
11328 = DWARF_FRAME_REGNUM ((fde
&& fde
->drap_reg
!= INVALID_REGNUM
)
11329 ? HARD_FRAME_POINTER_REGNUM
11331 return new_reg_loc_descr (base_reg
, offset
);
11334 gcc_assert (frame_pointer_fb_offset_valid
);
11335 offset
+= frame_pointer_fb_offset
;
11336 return new_loc_descr (DW_OP_fbreg
, offset
, 0);
11340 regno
= REGNO (reg
);
11341 #ifdef LEAF_REG_REMAP
11342 if (crtl
->uses_only_leaf_regs
)
11344 int leaf_reg
= LEAF_REG_REMAP (regno
);
11345 if (leaf_reg
!= -1)
11346 regno
= (unsigned) leaf_reg
;
11349 regno
= DWARF_FRAME_REGNUM (regno
);
11351 if (!optimize
&& fde
11352 && (fde
->drap_reg
== regno
|| fde
->vdrap_reg
== regno
))
11354 /* Use cfa+offset to represent the location of arguments passed
11355 on the stack when drap is used to align stack.
11356 Only do this when not optimizing, for optimized code var-tracking
11357 is supposed to track where the arguments live and the register
11358 used as vdrap or drap in some spot might be used for something
11359 else in other part of the routine. */
11360 return new_loc_descr (DW_OP_fbreg
, offset
, 0);
11364 result
= new_loc_descr ((enum dwarf_location_atom
) (DW_OP_breg0
+ regno
),
11367 result
= new_loc_descr (DW_OP_bregx
, regno
, offset
);
11369 if (initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
11370 add_loc_descr (&result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
11375 /* Return true if this RTL expression describes a base+offset calculation. */
11378 is_based_loc (const_rtx rtl
)
11380 return (GET_CODE (rtl
) == PLUS
11381 && ((REG_P (XEXP (rtl
, 0))
11382 && REGNO (XEXP (rtl
, 0)) < FIRST_PSEUDO_REGISTER
11383 && CONST_INT_P (XEXP (rtl
, 1)))));
11386 /* Try to handle TLS MEMs, for which mem_loc_descriptor on XEXP (mem, 0)
11389 static dw_loc_descr_ref
11390 tls_mem_loc_descriptor (rtx mem
)
11393 dw_loc_descr_ref loc_result
;
11395 if (MEM_EXPR (mem
) == NULL_TREE
|| !MEM_OFFSET_KNOWN_P (mem
))
11398 base
= get_base_address (MEM_EXPR (mem
));
11400 || TREE_CODE (base
) != VAR_DECL
11401 || !DECL_THREAD_LOCAL_P (base
))
11404 loc_result
= loc_descriptor_from_tree (MEM_EXPR (mem
), 1);
11405 if (loc_result
== NULL
)
11408 if (MEM_OFFSET (mem
))
11409 loc_descr_plus_const (&loc_result
, MEM_OFFSET (mem
));
11414 /* Output debug info about reason why we failed to expand expression as dwarf
11418 expansion_failed (tree expr
, rtx rtl
, char const *reason
)
11420 if (dump_file
&& (dump_flags
& TDF_DETAILS
))
11422 fprintf (dump_file
, "Failed to expand as dwarf: ");
11424 print_generic_expr (dump_file
, expr
, dump_flags
);
11427 fprintf (dump_file
, "\n");
11428 print_rtl (dump_file
, rtl
);
11430 fprintf (dump_file
, "\nReason: %s\n", reason
);
11434 /* Helper function for const_ok_for_output, called either directly
11435 or via for_each_rtx. */
11438 const_ok_for_output_1 (rtx
*rtlp
, void *data ATTRIBUTE_UNUSED
)
11442 if (GET_CODE (rtl
) == UNSPEC
)
11444 /* If delegitimize_address couldn't do anything with the UNSPEC, assume
11445 we can't express it in the debug info. */
11446 #ifdef ENABLE_CHECKING
11447 /* Don't complain about TLS UNSPECs, those are just too hard to
11448 delegitimize. Note this could be a non-decl SYMBOL_REF such as
11449 one in a constant pool entry, so testing SYMBOL_REF_TLS_MODEL
11450 rather than DECL_THREAD_LOCAL_P is not just an optimization. */
11451 if (XVECLEN (rtl
, 0) == 0
11452 || GET_CODE (XVECEXP (rtl
, 0, 0)) != SYMBOL_REF
11453 || SYMBOL_REF_TLS_MODEL (XVECEXP (rtl
, 0, 0)) == TLS_MODEL_NONE
)
11454 inform (current_function_decl
11455 ? DECL_SOURCE_LOCATION (current_function_decl
)
11456 : UNKNOWN_LOCATION
,
11457 #if NUM_UNSPEC_VALUES > 0
11458 "non-delegitimized UNSPEC %s (%d) found in variable location",
11459 ((XINT (rtl
, 1) >= 0 && XINT (rtl
, 1) < NUM_UNSPEC_VALUES
)
11460 ? unspec_strings
[XINT (rtl
, 1)] : "unknown"),
11463 "non-delegitimized UNSPEC %d found in variable location",
11467 expansion_failed (NULL_TREE
, rtl
,
11468 "UNSPEC hasn't been delegitimized.\n");
11472 if (targetm
.const_not_ok_for_debug_p (rtl
))
11474 expansion_failed (NULL_TREE
, rtl
,
11475 "Expression rejected for debug by the backend.\n");
11479 /* FIXME: Refer to PR60655. It is possible for simplification
11480 of rtl expressions in var tracking to produce such expressions.
11481 We should really identify / validate expressions
11482 enclosed in CONST that can be handled by assemblers on various
11483 targets and only handle legitimate cases here. */
11484 if (GET_CODE (rtl
) != SYMBOL_REF
)
11486 if (GET_CODE (rtl
) == NOT
)
11492 if (CONSTANT_POOL_ADDRESS_P (rtl
))
11495 get_pool_constant_mark (rtl
, &marked
);
11496 /* If all references to this pool constant were optimized away,
11497 it was not output and thus we can't represent it. */
11500 expansion_failed (NULL_TREE
, rtl
,
11501 "Constant was removed from constant pool.\n");
11506 if (SYMBOL_REF_TLS_MODEL (rtl
) != TLS_MODEL_NONE
)
11509 /* Avoid references to external symbols in debug info, on several targets
11510 the linker might even refuse to link when linking a shared library,
11511 and in many other cases the relocations for .debug_info/.debug_loc are
11512 dropped, so the address becomes zero anyway. Hidden symbols, guaranteed
11513 to be defined within the same shared library or executable are fine. */
11514 if (SYMBOL_REF_EXTERNAL_P (rtl
))
11516 tree decl
= SYMBOL_REF_DECL (rtl
);
11518 if (decl
== NULL
|| !targetm
.binds_local_p (decl
))
11520 expansion_failed (NULL_TREE
, rtl
,
11521 "Symbol not defined in current TU.\n");
11529 /* Return true if constant RTL can be emitted in DW_OP_addr or
11530 DW_AT_const_value. TLS SYMBOL_REFs, external SYMBOL_REFs or
11531 non-marked constant pool SYMBOL_REFs can't be referenced in it. */
11534 const_ok_for_output (rtx rtl
)
11536 if (GET_CODE (rtl
) == SYMBOL_REF
)
11537 return const_ok_for_output_1 (&rtl
, NULL
) == 0;
11539 if (GET_CODE (rtl
) == CONST
)
11540 return for_each_rtx (&XEXP (rtl
, 0), const_ok_for_output_1
, NULL
) == 0;
11545 /* Return a reference to DW_TAG_base_type corresponding to MODE and UNSIGNEDP
11546 if possible, NULL otherwise. */
11549 base_type_for_mode (enum machine_mode mode
, bool unsignedp
)
11551 dw_die_ref type_die
;
11552 tree type
= lang_hooks
.types
.type_for_mode (mode
, unsignedp
);
11556 switch (TREE_CODE (type
))
11564 type_die
= lookup_type_die (type
);
11566 type_die
= modified_type_die (type
, false, false, comp_unit_die ());
11567 if (type_die
== NULL
|| type_die
->die_tag
!= DW_TAG_base_type
)
11572 /* For OP descriptor assumed to be in unsigned MODE, convert it to a unsigned
11573 type matching MODE, or, if MODE is narrower than or as wide as
11574 DWARF2_ADDR_SIZE, untyped. Return NULL if the conversion is not
11577 static dw_loc_descr_ref
11578 convert_descriptor_to_mode (enum machine_mode mode
, dw_loc_descr_ref op
)
11580 enum machine_mode outer_mode
= mode
;
11581 dw_die_ref type_die
;
11582 dw_loc_descr_ref cvt
;
11584 if (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
)
11586 add_loc_descr (&op
, new_loc_descr (DW_OP_GNU_convert
, 0, 0));
11589 type_die
= base_type_for_mode (outer_mode
, 1);
11590 if (type_die
== NULL
)
11592 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11593 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11594 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11595 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11596 add_loc_descr (&op
, cvt
);
11600 /* Return location descriptor for comparison OP with operands OP0 and OP1. */
11602 static dw_loc_descr_ref
11603 compare_loc_descriptor (enum dwarf_location_atom op
, dw_loc_descr_ref op0
,
11604 dw_loc_descr_ref op1
)
11606 dw_loc_descr_ref ret
= op0
;
11607 add_loc_descr (&ret
, op1
);
11608 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
11609 if (STORE_FLAG_VALUE
!= 1)
11611 add_loc_descr (&ret
, int_loc_descriptor (STORE_FLAG_VALUE
));
11612 add_loc_descr (&ret
, new_loc_descr (DW_OP_mul
, 0, 0));
11617 /* Return location descriptor for signed comparison OP RTL. */
11619 static dw_loc_descr_ref
11620 scompare_loc_descriptor (enum dwarf_location_atom op
, rtx rtl
,
11621 enum machine_mode mem_mode
)
11623 enum machine_mode op_mode
= GET_MODE (XEXP (rtl
, 0));
11624 dw_loc_descr_ref op0
, op1
;
11627 if (op_mode
== VOIDmode
)
11628 op_mode
= GET_MODE (XEXP (rtl
, 1));
11629 if (op_mode
== VOIDmode
)
11633 && (GET_MODE_CLASS (op_mode
) != MODE_INT
11634 || GET_MODE_SIZE (op_mode
) > DWARF2_ADDR_SIZE
))
11637 op0
= mem_loc_descriptor (XEXP (rtl
, 0), op_mode
, mem_mode
,
11638 VAR_INIT_STATUS_INITIALIZED
);
11639 op1
= mem_loc_descriptor (XEXP (rtl
, 1), op_mode
, mem_mode
,
11640 VAR_INIT_STATUS_INITIALIZED
);
11642 if (op0
== NULL
|| op1
== NULL
)
11645 if (GET_MODE_CLASS (op_mode
) != MODE_INT
11646 || GET_MODE_SIZE (op_mode
) == DWARF2_ADDR_SIZE
)
11647 return compare_loc_descriptor (op
, op0
, op1
);
11649 if (GET_MODE_SIZE (op_mode
) > DWARF2_ADDR_SIZE
)
11651 dw_die_ref type_die
= base_type_for_mode (op_mode
, 0);
11652 dw_loc_descr_ref cvt
;
11654 if (type_die
== NULL
)
11656 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11657 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11658 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11659 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11660 add_loc_descr (&op0
, cvt
);
11661 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11662 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11663 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11664 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11665 add_loc_descr (&op1
, cvt
);
11666 return compare_loc_descriptor (op
, op0
, op1
);
11669 shift
= (DWARF2_ADDR_SIZE
- GET_MODE_SIZE (op_mode
)) * BITS_PER_UNIT
;
11670 /* For eq/ne, if the operands are known to be zero-extended,
11671 there is no need to do the fancy shifting up. */
11672 if (op
== DW_OP_eq
|| op
== DW_OP_ne
)
11674 dw_loc_descr_ref last0
, last1
;
11675 for (last0
= op0
; last0
->dw_loc_next
!= NULL
; last0
= last0
->dw_loc_next
)
11677 for (last1
= op1
; last1
->dw_loc_next
!= NULL
; last1
= last1
->dw_loc_next
)
11679 /* deref_size zero extends, and for constants we can check
11680 whether they are zero extended or not. */
11681 if (((last0
->dw_loc_opc
== DW_OP_deref_size
11682 && last0
->dw_loc_oprnd1
.v
.val_int
<= GET_MODE_SIZE (op_mode
))
11683 || (CONST_INT_P (XEXP (rtl
, 0))
11684 && (unsigned HOST_WIDE_INT
) INTVAL (XEXP (rtl
, 0))
11685 == (INTVAL (XEXP (rtl
, 0)) & GET_MODE_MASK (op_mode
))))
11686 && ((last1
->dw_loc_opc
== DW_OP_deref_size
11687 && last1
->dw_loc_oprnd1
.v
.val_int
<= GET_MODE_SIZE (op_mode
))
11688 || (CONST_INT_P (XEXP (rtl
, 1))
11689 && (unsigned HOST_WIDE_INT
) INTVAL (XEXP (rtl
, 1))
11690 == (INTVAL (XEXP (rtl
, 1)) & GET_MODE_MASK (op_mode
)))))
11691 return compare_loc_descriptor (op
, op0
, op1
);
11693 /* EQ/NE comparison against constant in narrower type than
11694 DWARF2_ADDR_SIZE can be performed either as
11695 DW_OP_const1u <shift> DW_OP_shl DW_OP_const* <cst << shift>
11698 DW_OP_const*u <mode_mask> DW_OP_and DW_OP_const* <cst & mode_mask>
11699 DW_OP_{eq,ne}. Pick whatever is shorter. */
11700 if (CONST_INT_P (XEXP (rtl
, 1))
11701 && GET_MODE_BITSIZE (op_mode
) < HOST_BITS_PER_WIDE_INT
11702 && (size_of_int_loc_descriptor (shift
) + 1
11703 + size_of_int_loc_descriptor (INTVAL (XEXP (rtl
, 1)) << shift
)
11704 >= size_of_int_loc_descriptor (GET_MODE_MASK (op_mode
)) + 1
11705 + size_of_int_loc_descriptor (INTVAL (XEXP (rtl
, 1))
11706 & GET_MODE_MASK (op_mode
))))
11708 add_loc_descr (&op0
, int_loc_descriptor (GET_MODE_MASK (op_mode
)));
11709 add_loc_descr (&op0
, new_loc_descr (DW_OP_and
, 0, 0));
11710 op1
= int_loc_descriptor (INTVAL (XEXP (rtl
, 1))
11711 & GET_MODE_MASK (op_mode
));
11712 return compare_loc_descriptor (op
, op0
, op1
);
11715 add_loc_descr (&op0
, int_loc_descriptor (shift
));
11716 add_loc_descr (&op0
, new_loc_descr (DW_OP_shl
, 0, 0));
11717 if (CONST_INT_P (XEXP (rtl
, 1)))
11718 op1
= int_loc_descriptor (INTVAL (XEXP (rtl
, 1)) << shift
);
11721 add_loc_descr (&op1
, int_loc_descriptor (shift
));
11722 add_loc_descr (&op1
, new_loc_descr (DW_OP_shl
, 0, 0));
11724 return compare_loc_descriptor (op
, op0
, op1
);
11727 /* Return location descriptor for unsigned comparison OP RTL. */
11729 static dw_loc_descr_ref
11730 ucompare_loc_descriptor (enum dwarf_location_atom op
, rtx rtl
,
11731 enum machine_mode mem_mode
)
11733 enum machine_mode op_mode
= GET_MODE (XEXP (rtl
, 0));
11734 dw_loc_descr_ref op0
, op1
;
11736 if (op_mode
== VOIDmode
)
11737 op_mode
= GET_MODE (XEXP (rtl
, 1));
11738 if (op_mode
== VOIDmode
)
11740 if (GET_MODE_CLASS (op_mode
) != MODE_INT
)
11743 if (dwarf_strict
&& GET_MODE_SIZE (op_mode
) > DWARF2_ADDR_SIZE
)
11746 op0
= mem_loc_descriptor (XEXP (rtl
, 0), op_mode
, mem_mode
,
11747 VAR_INIT_STATUS_INITIALIZED
);
11748 op1
= mem_loc_descriptor (XEXP (rtl
, 1), op_mode
, mem_mode
,
11749 VAR_INIT_STATUS_INITIALIZED
);
11751 if (op0
== NULL
|| op1
== NULL
)
11754 if (GET_MODE_SIZE (op_mode
) < DWARF2_ADDR_SIZE
)
11756 HOST_WIDE_INT mask
= GET_MODE_MASK (op_mode
);
11757 dw_loc_descr_ref last0
, last1
;
11758 for (last0
= op0
; last0
->dw_loc_next
!= NULL
; last0
= last0
->dw_loc_next
)
11760 for (last1
= op1
; last1
->dw_loc_next
!= NULL
; last1
= last1
->dw_loc_next
)
11762 if (CONST_INT_P (XEXP (rtl
, 0)))
11763 op0
= int_loc_descriptor (INTVAL (XEXP (rtl
, 0)) & mask
);
11764 /* deref_size zero extends, so no need to mask it again. */
11765 else if (last0
->dw_loc_opc
!= DW_OP_deref_size
11766 || last0
->dw_loc_oprnd1
.v
.val_int
> GET_MODE_SIZE (op_mode
))
11768 add_loc_descr (&op0
, int_loc_descriptor (mask
));
11769 add_loc_descr (&op0
, new_loc_descr (DW_OP_and
, 0, 0));
11771 if (CONST_INT_P (XEXP (rtl
, 1)))
11772 op1
= int_loc_descriptor (INTVAL (XEXP (rtl
, 1)) & mask
);
11773 /* deref_size zero extends, so no need to mask it again. */
11774 else if (last1
->dw_loc_opc
!= DW_OP_deref_size
11775 || last1
->dw_loc_oprnd1
.v
.val_int
> GET_MODE_SIZE (op_mode
))
11777 add_loc_descr (&op1
, int_loc_descriptor (mask
));
11778 add_loc_descr (&op1
, new_loc_descr (DW_OP_and
, 0, 0));
11781 else if (GET_MODE_SIZE (op_mode
) == DWARF2_ADDR_SIZE
)
11783 HOST_WIDE_INT bias
= 1;
11784 bias
<<= (DWARF2_ADDR_SIZE
* BITS_PER_UNIT
- 1);
11785 add_loc_descr (&op0
, new_loc_descr (DW_OP_plus_uconst
, bias
, 0));
11786 if (CONST_INT_P (XEXP (rtl
, 1)))
11787 op1
= int_loc_descriptor ((unsigned HOST_WIDE_INT
) bias
11788 + INTVAL (XEXP (rtl
, 1)));
11790 add_loc_descr (&op1
, new_loc_descr (DW_OP_plus_uconst
,
11793 return compare_loc_descriptor (op
, op0
, op1
);
11796 /* Return location descriptor for {U,S}{MIN,MAX}. */
11798 static dw_loc_descr_ref
11799 minmax_loc_descriptor (rtx rtl
, enum machine_mode mode
,
11800 enum machine_mode mem_mode
)
11802 enum dwarf_location_atom op
;
11803 dw_loc_descr_ref op0
, op1
, ret
;
11804 dw_loc_descr_ref bra_node
, drop_node
;
11807 && (GET_MODE_CLASS (mode
) != MODE_INT
11808 || GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
))
11811 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
11812 VAR_INIT_STATUS_INITIALIZED
);
11813 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
11814 VAR_INIT_STATUS_INITIALIZED
);
11816 if (op0
== NULL
|| op1
== NULL
)
11819 add_loc_descr (&op0
, new_loc_descr (DW_OP_dup
, 0, 0));
11820 add_loc_descr (&op1
, new_loc_descr (DW_OP_swap
, 0, 0));
11821 add_loc_descr (&op1
, new_loc_descr (DW_OP_over
, 0, 0));
11822 if (GET_CODE (rtl
) == UMIN
|| GET_CODE (rtl
) == UMAX
)
11824 if (GET_MODE_SIZE (mode
) < DWARF2_ADDR_SIZE
)
11826 HOST_WIDE_INT mask
= GET_MODE_MASK (mode
);
11827 add_loc_descr (&op0
, int_loc_descriptor (mask
));
11828 add_loc_descr (&op0
, new_loc_descr (DW_OP_and
, 0, 0));
11829 add_loc_descr (&op1
, int_loc_descriptor (mask
));
11830 add_loc_descr (&op1
, new_loc_descr (DW_OP_and
, 0, 0));
11832 else if (GET_MODE_SIZE (mode
) == DWARF2_ADDR_SIZE
)
11834 HOST_WIDE_INT bias
= 1;
11835 bias
<<= (DWARF2_ADDR_SIZE
* BITS_PER_UNIT
- 1);
11836 add_loc_descr (&op0
, new_loc_descr (DW_OP_plus_uconst
, bias
, 0));
11837 add_loc_descr (&op1
, new_loc_descr (DW_OP_plus_uconst
, bias
, 0));
11840 else if (GET_MODE_CLASS (mode
) == MODE_INT
11841 && GET_MODE_SIZE (mode
) < DWARF2_ADDR_SIZE
)
11843 int shift
= (DWARF2_ADDR_SIZE
- GET_MODE_SIZE (mode
)) * BITS_PER_UNIT
;
11844 add_loc_descr (&op0
, int_loc_descriptor (shift
));
11845 add_loc_descr (&op0
, new_loc_descr (DW_OP_shl
, 0, 0));
11846 add_loc_descr (&op1
, int_loc_descriptor (shift
));
11847 add_loc_descr (&op1
, new_loc_descr (DW_OP_shl
, 0, 0));
11849 else if (GET_MODE_CLASS (mode
) == MODE_INT
11850 && GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
)
11852 dw_die_ref type_die
= base_type_for_mode (mode
, 0);
11853 dw_loc_descr_ref cvt
;
11854 if (type_die
== NULL
)
11856 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11857 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11858 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11859 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11860 add_loc_descr (&op0
, cvt
);
11861 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11862 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11863 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11864 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11865 add_loc_descr (&op1
, cvt
);
11868 if (GET_CODE (rtl
) == SMIN
|| GET_CODE (rtl
) == UMIN
)
11873 add_loc_descr (&ret
, op1
);
11874 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
11875 bra_node
= new_loc_descr (DW_OP_bra
, 0, 0);
11876 add_loc_descr (&ret
, bra_node
);
11877 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
11878 drop_node
= new_loc_descr (DW_OP_drop
, 0, 0);
11879 add_loc_descr (&ret
, drop_node
);
11880 bra_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
11881 bra_node
->dw_loc_oprnd1
.v
.val_loc
= drop_node
;
11882 if ((GET_CODE (rtl
) == SMIN
|| GET_CODE (rtl
) == SMAX
)
11883 && GET_MODE_CLASS (mode
) == MODE_INT
11884 && GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
)
11885 ret
= convert_descriptor_to_mode (mode
, ret
);
11889 /* Helper function for mem_loc_descriptor. Perform OP binary op,
11890 but after converting arguments to type_die, afterwards
11891 convert back to unsigned. */
11893 static dw_loc_descr_ref
11894 typed_binop (enum dwarf_location_atom op
, rtx rtl
, dw_die_ref type_die
,
11895 enum machine_mode mode
, enum machine_mode mem_mode
)
11897 dw_loc_descr_ref cvt
, op0
, op1
;
11899 if (type_die
== NULL
)
11901 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
11902 VAR_INIT_STATUS_INITIALIZED
);
11903 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
11904 VAR_INIT_STATUS_INITIALIZED
);
11905 if (op0
== NULL
|| op1
== NULL
)
11907 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11908 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11909 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11910 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11911 add_loc_descr (&op0
, cvt
);
11912 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
11913 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
11914 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
11915 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
11916 add_loc_descr (&op1
, cvt
);
11917 add_loc_descr (&op0
, op1
);
11918 add_loc_descr (&op0
, new_loc_descr (op
, 0, 0));
11919 return convert_descriptor_to_mode (mode
, op0
);
11922 /* CLZ (where constV is CLZ_DEFINED_VALUE_AT_ZERO computed value,
11923 const0 is DW_OP_lit0 or corresponding typed constant,
11924 const1 is DW_OP_lit1 or corresponding typed constant
11925 and constMSB is constant with just the MSB bit set
11927 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
11928 L1: const0 DW_OP_swap
11929 L2: DW_OP_dup constMSB DW_OP_and DW_OP_bra <L3> const1 DW_OP_shl
11930 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
11935 DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
11936 L1: const0 DW_OP_swap
11937 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
11938 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
11943 DW_OP_dup DW_OP_bra <L1> DW_OP_drop const0 DW_OP_skip <L4>
11944 L1: const1 DW_OP_swap
11945 L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
11946 DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
11950 static dw_loc_descr_ref
11951 clz_loc_descriptor (rtx rtl
, enum machine_mode mode
,
11952 enum machine_mode mem_mode
)
11954 dw_loc_descr_ref op0
, ret
, tmp
;
11955 HOST_WIDE_INT valv
;
11956 dw_loc_descr_ref l1jump
, l1label
;
11957 dw_loc_descr_ref l2jump
, l2label
;
11958 dw_loc_descr_ref l3jump
, l3label
;
11959 dw_loc_descr_ref l4jump
, l4label
;
11962 if (GET_MODE_CLASS (mode
) != MODE_INT
11963 || GET_MODE (XEXP (rtl
, 0)) != mode
)
11966 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
11967 VAR_INIT_STATUS_INITIALIZED
);
11971 if (GET_CODE (rtl
) == CLZ
)
11973 if (!CLZ_DEFINED_VALUE_AT_ZERO (mode
, valv
))
11974 valv
= GET_MODE_BITSIZE (mode
);
11976 else if (GET_CODE (rtl
) == FFS
)
11978 else if (!CTZ_DEFINED_VALUE_AT_ZERO (mode
, valv
))
11979 valv
= GET_MODE_BITSIZE (mode
);
11980 add_loc_descr (&ret
, new_loc_descr (DW_OP_dup
, 0, 0));
11981 l1jump
= new_loc_descr (DW_OP_bra
, 0, 0);
11982 add_loc_descr (&ret
, l1jump
);
11983 add_loc_descr (&ret
, new_loc_descr (DW_OP_drop
, 0, 0));
11984 tmp
= mem_loc_descriptor (GEN_INT (valv
), mode
, mem_mode
,
11985 VAR_INIT_STATUS_INITIALIZED
);
11988 add_loc_descr (&ret
, tmp
);
11989 l4jump
= new_loc_descr (DW_OP_skip
, 0, 0);
11990 add_loc_descr (&ret
, l4jump
);
11991 l1label
= mem_loc_descriptor (GET_CODE (rtl
) == FFS
11992 ? const1_rtx
: const0_rtx
,
11994 VAR_INIT_STATUS_INITIALIZED
);
11995 if (l1label
== NULL
)
11997 add_loc_descr (&ret
, l1label
);
11998 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
11999 l2label
= new_loc_descr (DW_OP_dup
, 0, 0);
12000 add_loc_descr (&ret
, l2label
);
12001 if (GET_CODE (rtl
) != CLZ
)
12003 else if (GET_MODE_BITSIZE (mode
) <= HOST_BITS_PER_WIDE_INT
)
12004 msb
= GEN_INT ((unsigned HOST_WIDE_INT
) 1
12005 << (GET_MODE_BITSIZE (mode
) - 1));
12007 msb
= immed_wide_int_const
12008 (wi::set_bit_in_zero (GET_MODE_PRECISION (mode
) - 1,
12009 GET_MODE_PRECISION (mode
)), mode
);
12010 if (GET_CODE (msb
) == CONST_INT
&& INTVAL (msb
) < 0)
12011 tmp
= new_loc_descr (HOST_BITS_PER_WIDE_INT
== 32
12012 ? DW_OP_const4u
: HOST_BITS_PER_WIDE_INT
== 64
12013 ? DW_OP_const8u
: DW_OP_constu
, INTVAL (msb
), 0);
12015 tmp
= mem_loc_descriptor (msb
, mode
, mem_mode
,
12016 VAR_INIT_STATUS_INITIALIZED
);
12019 add_loc_descr (&ret
, tmp
);
12020 add_loc_descr (&ret
, new_loc_descr (DW_OP_and
, 0, 0));
12021 l3jump
= new_loc_descr (DW_OP_bra
, 0, 0);
12022 add_loc_descr (&ret
, l3jump
);
12023 tmp
= mem_loc_descriptor (const1_rtx
, mode
, mem_mode
,
12024 VAR_INIT_STATUS_INITIALIZED
);
12027 add_loc_descr (&ret
, tmp
);
12028 add_loc_descr (&ret
, new_loc_descr (GET_CODE (rtl
) == CLZ
12029 ? DW_OP_shl
: DW_OP_shr
, 0, 0));
12030 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12031 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus_uconst
, 1, 0));
12032 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12033 l2jump
= new_loc_descr (DW_OP_skip
, 0, 0);
12034 add_loc_descr (&ret
, l2jump
);
12035 l3label
= new_loc_descr (DW_OP_drop
, 0, 0);
12036 add_loc_descr (&ret
, l3label
);
12037 l4label
= new_loc_descr (DW_OP_nop
, 0, 0);
12038 add_loc_descr (&ret
, l4label
);
12039 l1jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12040 l1jump
->dw_loc_oprnd1
.v
.val_loc
= l1label
;
12041 l2jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12042 l2jump
->dw_loc_oprnd1
.v
.val_loc
= l2label
;
12043 l3jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12044 l3jump
->dw_loc_oprnd1
.v
.val_loc
= l3label
;
12045 l4jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12046 l4jump
->dw_loc_oprnd1
.v
.val_loc
= l4label
;
12050 /* POPCOUNT (const0 is DW_OP_lit0 or corresponding typed constant,
12051 const1 is DW_OP_lit1 or corresponding typed constant):
12053 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
12054 DW_OP_plus DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
12058 L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
12059 DW_OP_xor DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
12062 static dw_loc_descr_ref
12063 popcount_loc_descriptor (rtx rtl
, enum machine_mode mode
,
12064 enum machine_mode mem_mode
)
12066 dw_loc_descr_ref op0
, ret
, tmp
;
12067 dw_loc_descr_ref l1jump
, l1label
;
12068 dw_loc_descr_ref l2jump
, l2label
;
12070 if (GET_MODE_CLASS (mode
) != MODE_INT
12071 || GET_MODE (XEXP (rtl
, 0)) != mode
)
12074 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12075 VAR_INIT_STATUS_INITIALIZED
);
12079 tmp
= mem_loc_descriptor (const0_rtx
, mode
, mem_mode
,
12080 VAR_INIT_STATUS_INITIALIZED
);
12083 add_loc_descr (&ret
, tmp
);
12084 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12085 l1label
= new_loc_descr (DW_OP_dup
, 0, 0);
12086 add_loc_descr (&ret
, l1label
);
12087 l2jump
= new_loc_descr (DW_OP_bra
, 0, 0);
12088 add_loc_descr (&ret
, l2jump
);
12089 add_loc_descr (&ret
, new_loc_descr (DW_OP_dup
, 0, 0));
12090 add_loc_descr (&ret
, new_loc_descr (DW_OP_rot
, 0, 0));
12091 tmp
= mem_loc_descriptor (const1_rtx
, mode
, mem_mode
,
12092 VAR_INIT_STATUS_INITIALIZED
);
12095 add_loc_descr (&ret
, tmp
);
12096 add_loc_descr (&ret
, new_loc_descr (DW_OP_and
, 0, 0));
12097 add_loc_descr (&ret
, new_loc_descr (GET_CODE (rtl
) == POPCOUNT
12098 ? DW_OP_plus
: DW_OP_xor
, 0, 0));
12099 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12100 tmp
= mem_loc_descriptor (const1_rtx
, mode
, mem_mode
,
12101 VAR_INIT_STATUS_INITIALIZED
);
12102 add_loc_descr (&ret
, tmp
);
12103 add_loc_descr (&ret
, new_loc_descr (DW_OP_shr
, 0, 0));
12104 l1jump
= new_loc_descr (DW_OP_skip
, 0, 0);
12105 add_loc_descr (&ret
, l1jump
);
12106 l2label
= new_loc_descr (DW_OP_drop
, 0, 0);
12107 add_loc_descr (&ret
, l2label
);
12108 l1jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12109 l1jump
->dw_loc_oprnd1
.v
.val_loc
= l1label
;
12110 l2jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12111 l2jump
->dw_loc_oprnd1
.v
.val_loc
= l2label
;
12115 /* BSWAP (constS is initial shift count, either 56 or 24):
12117 L1: DW_OP_pick <2> constS DW_OP_pick <3> DW_OP_minus DW_OP_shr
12118 const255 DW_OP_and DW_OP_pick <2> DW_OP_shl DW_OP_or
12119 DW_OP_swap DW_OP_dup const0 DW_OP_eq DW_OP_bra <L2> const8
12120 DW_OP_minus DW_OP_swap DW_OP_skip <L1>
12121 L2: DW_OP_drop DW_OP_swap DW_OP_drop */
12123 static dw_loc_descr_ref
12124 bswap_loc_descriptor (rtx rtl
, enum machine_mode mode
,
12125 enum machine_mode mem_mode
)
12127 dw_loc_descr_ref op0
, ret
, tmp
;
12128 dw_loc_descr_ref l1jump
, l1label
;
12129 dw_loc_descr_ref l2jump
, l2label
;
12131 if (GET_MODE_CLASS (mode
) != MODE_INT
12132 || BITS_PER_UNIT
!= 8
12133 || (GET_MODE_BITSIZE (mode
) != 32
12134 && GET_MODE_BITSIZE (mode
) != 64))
12137 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12138 VAR_INIT_STATUS_INITIALIZED
);
12143 tmp
= mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode
) - 8),
12145 VAR_INIT_STATUS_INITIALIZED
);
12148 add_loc_descr (&ret
, tmp
);
12149 tmp
= mem_loc_descriptor (const0_rtx
, mode
, mem_mode
,
12150 VAR_INIT_STATUS_INITIALIZED
);
12153 add_loc_descr (&ret
, tmp
);
12154 l1label
= new_loc_descr (DW_OP_pick
, 2, 0);
12155 add_loc_descr (&ret
, l1label
);
12156 tmp
= mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode
) - 8),
12158 VAR_INIT_STATUS_INITIALIZED
);
12159 add_loc_descr (&ret
, tmp
);
12160 add_loc_descr (&ret
, new_loc_descr (DW_OP_pick
, 3, 0));
12161 add_loc_descr (&ret
, new_loc_descr (DW_OP_minus
, 0, 0));
12162 add_loc_descr (&ret
, new_loc_descr (DW_OP_shr
, 0, 0));
12163 tmp
= mem_loc_descriptor (GEN_INT (255), mode
, mem_mode
,
12164 VAR_INIT_STATUS_INITIALIZED
);
12167 add_loc_descr (&ret
, tmp
);
12168 add_loc_descr (&ret
, new_loc_descr (DW_OP_and
, 0, 0));
12169 add_loc_descr (&ret
, new_loc_descr (DW_OP_pick
, 2, 0));
12170 add_loc_descr (&ret
, new_loc_descr (DW_OP_shl
, 0, 0));
12171 add_loc_descr (&ret
, new_loc_descr (DW_OP_or
, 0, 0));
12172 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12173 add_loc_descr (&ret
, new_loc_descr (DW_OP_dup
, 0, 0));
12174 tmp
= mem_loc_descriptor (const0_rtx
, mode
, mem_mode
,
12175 VAR_INIT_STATUS_INITIALIZED
);
12176 add_loc_descr (&ret
, tmp
);
12177 add_loc_descr (&ret
, new_loc_descr (DW_OP_eq
, 0, 0));
12178 l2jump
= new_loc_descr (DW_OP_bra
, 0, 0);
12179 add_loc_descr (&ret
, l2jump
);
12180 tmp
= mem_loc_descriptor (GEN_INT (8), mode
, mem_mode
,
12181 VAR_INIT_STATUS_INITIALIZED
);
12182 add_loc_descr (&ret
, tmp
);
12183 add_loc_descr (&ret
, new_loc_descr (DW_OP_minus
, 0, 0));
12184 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12185 l1jump
= new_loc_descr (DW_OP_skip
, 0, 0);
12186 add_loc_descr (&ret
, l1jump
);
12187 l2label
= new_loc_descr (DW_OP_drop
, 0, 0);
12188 add_loc_descr (&ret
, l2label
);
12189 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12190 add_loc_descr (&ret
, new_loc_descr (DW_OP_drop
, 0, 0));
12191 l1jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12192 l1jump
->dw_loc_oprnd1
.v
.val_loc
= l1label
;
12193 l2jump
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12194 l2jump
->dw_loc_oprnd1
.v
.val_loc
= l2label
;
12198 /* ROTATE (constMASK is mode mask, BITSIZE is bitsize of mode):
12199 DW_OP_over DW_OP_over DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
12200 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_neg
12201 DW_OP_plus_uconst <BITSIZE> DW_OP_shr DW_OP_or
12203 ROTATERT is similar:
12204 DW_OP_over DW_OP_over DW_OP_neg DW_OP_plus_uconst <BITSIZE>
12205 DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
12206 [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_shr DW_OP_or */
12208 static dw_loc_descr_ref
12209 rotate_loc_descriptor (rtx rtl
, enum machine_mode mode
,
12210 enum machine_mode mem_mode
)
12212 rtx rtlop1
= XEXP (rtl
, 1);
12213 dw_loc_descr_ref op0
, op1
, ret
, mask
[2] = { NULL
, NULL
};
12216 if (GET_MODE_CLASS (mode
) != MODE_INT
)
12219 if (GET_MODE (rtlop1
) != VOIDmode
12220 && GET_MODE_BITSIZE (GET_MODE (rtlop1
)) < GET_MODE_BITSIZE (mode
))
12221 rtlop1
= gen_rtx_ZERO_EXTEND (mode
, rtlop1
);
12222 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12223 VAR_INIT_STATUS_INITIALIZED
);
12224 op1
= mem_loc_descriptor (rtlop1
, mode
, mem_mode
,
12225 VAR_INIT_STATUS_INITIALIZED
);
12226 if (op0
== NULL
|| op1
== NULL
)
12228 if (GET_MODE_SIZE (mode
) < DWARF2_ADDR_SIZE
)
12229 for (i
= 0; i
< 2; i
++)
12231 if (GET_MODE_BITSIZE (mode
) < HOST_BITS_PER_WIDE_INT
)
12232 mask
[i
] = mem_loc_descriptor (GEN_INT (GET_MODE_MASK (mode
)),
12234 VAR_INIT_STATUS_INITIALIZED
);
12235 else if (GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_WIDE_INT
)
12236 mask
[i
] = new_loc_descr (HOST_BITS_PER_WIDE_INT
== 32
12238 : HOST_BITS_PER_WIDE_INT
== 64
12239 ? DW_OP_const8u
: DW_OP_constu
,
12240 GET_MODE_MASK (mode
), 0);
12243 if (mask
[i
] == NULL
)
12245 add_loc_descr (&mask
[i
], new_loc_descr (DW_OP_and
, 0, 0));
12248 add_loc_descr (&ret
, op1
);
12249 add_loc_descr (&ret
, new_loc_descr (DW_OP_over
, 0, 0));
12250 add_loc_descr (&ret
, new_loc_descr (DW_OP_over
, 0, 0));
12251 if (GET_CODE (rtl
) == ROTATERT
)
12253 add_loc_descr (&ret
, new_loc_descr (DW_OP_neg
, 0, 0));
12254 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus_uconst
,
12255 GET_MODE_BITSIZE (mode
), 0));
12257 add_loc_descr (&ret
, new_loc_descr (DW_OP_shl
, 0, 0));
12258 if (mask
[0] != NULL
)
12259 add_loc_descr (&ret
, mask
[0]);
12260 add_loc_descr (&ret
, new_loc_descr (DW_OP_rot
, 0, 0));
12261 if (mask
[1] != NULL
)
12263 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12264 add_loc_descr (&ret
, mask
[1]);
12265 add_loc_descr (&ret
, new_loc_descr (DW_OP_swap
, 0, 0));
12267 if (GET_CODE (rtl
) == ROTATE
)
12269 add_loc_descr (&ret
, new_loc_descr (DW_OP_neg
, 0, 0));
12270 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus_uconst
,
12271 GET_MODE_BITSIZE (mode
), 0));
12273 add_loc_descr (&ret
, new_loc_descr (DW_OP_shr
, 0, 0));
12274 add_loc_descr (&ret
, new_loc_descr (DW_OP_or
, 0, 0));
12278 /* Helper function for mem_loc_descriptor. Return DW_OP_GNU_parameter_ref
12279 for DEBUG_PARAMETER_REF RTL. */
12281 static dw_loc_descr_ref
12282 parameter_ref_descriptor (rtx rtl
)
12284 dw_loc_descr_ref ret
;
12289 gcc_assert (TREE_CODE (DEBUG_PARAMETER_REF_DECL (rtl
)) == PARM_DECL
);
12290 ref
= lookup_decl_die (DEBUG_PARAMETER_REF_DECL (rtl
));
12291 ret
= new_loc_descr (DW_OP_GNU_parameter_ref
, 0, 0);
12294 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12295 ret
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
12296 ret
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12300 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_decl_ref
;
12301 ret
->dw_loc_oprnd1
.v
.val_decl_ref
= DEBUG_PARAMETER_REF_DECL (rtl
);
12306 /* The following routine converts the RTL for a variable or parameter
12307 (resident in memory) into an equivalent Dwarf representation of a
12308 mechanism for getting the address of that same variable onto the top of a
12309 hypothetical "address evaluation" stack.
12311 When creating memory location descriptors, we are effectively transforming
12312 the RTL for a memory-resident object into its Dwarf postfix expression
12313 equivalent. This routine recursively descends an RTL tree, turning
12314 it into Dwarf postfix code as it goes.
12316 MODE is the mode that should be assumed for the rtl if it is VOIDmode.
12318 MEM_MODE is the mode of the memory reference, needed to handle some
12319 autoincrement addressing modes.
12321 Return 0 if we can't represent the location. */
12324 mem_loc_descriptor (rtx rtl
, enum machine_mode mode
,
12325 enum machine_mode mem_mode
,
12326 enum var_init_status initialized
)
12328 dw_loc_descr_ref mem_loc_result
= NULL
;
12329 enum dwarf_location_atom op
;
12330 dw_loc_descr_ref op0
, op1
;
12331 rtx inner
= NULL_RTX
;
12333 if (mode
== VOIDmode
)
12334 mode
= GET_MODE (rtl
);
12336 /* Note that for a dynamically sized array, the location we will generate a
12337 description of here will be the lowest numbered location which is
12338 actually within the array. That's *not* necessarily the same as the
12339 zeroth element of the array. */
12341 rtl
= targetm
.delegitimize_address (rtl
);
12343 if (mode
!= GET_MODE (rtl
) && GET_MODE (rtl
) != VOIDmode
)
12346 switch (GET_CODE (rtl
))
12351 return mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
, initialized
);
12354 /* The case of a subreg may arise when we have a local (register)
12355 variable or a formal (register) parameter which doesn't quite fill
12356 up an entire register. For now, just assume that it is
12357 legitimate to make the Dwarf info refer to the whole register which
12358 contains the given subreg. */
12359 if (!subreg_lowpart_p (rtl
))
12361 inner
= SUBREG_REG (rtl
);
12363 if (inner
== NULL_RTX
)
12364 inner
= XEXP (rtl
, 0);
12365 if (GET_MODE_CLASS (mode
) == MODE_INT
12366 && GET_MODE_CLASS (GET_MODE (inner
)) == MODE_INT
12367 && (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
12368 #ifdef POINTERS_EXTEND_UNSIGNED
12369 || (mode
== Pmode
&& mem_mode
!= VOIDmode
)
12372 && GET_MODE_SIZE (GET_MODE (inner
)) <= DWARF2_ADDR_SIZE
)
12374 mem_loc_result
= mem_loc_descriptor (inner
,
12376 mem_mode
, initialized
);
12381 if (GET_MODE_SIZE (mode
) > GET_MODE_SIZE (GET_MODE (inner
)))
12383 if (GET_MODE_SIZE (mode
) != GET_MODE_SIZE (GET_MODE (inner
))
12384 && (GET_MODE_CLASS (mode
) != MODE_INT
12385 || GET_MODE_CLASS (GET_MODE (inner
)) != MODE_INT
))
12389 dw_die_ref type_die
;
12390 dw_loc_descr_ref cvt
;
12392 mem_loc_result
= mem_loc_descriptor (inner
,
12394 mem_mode
, initialized
);
12395 if (mem_loc_result
== NULL
)
12397 type_die
= base_type_for_mode (mode
,
12398 GET_MODE_CLASS (mode
) == MODE_INT
);
12399 if (type_die
== NULL
)
12401 mem_loc_result
= NULL
;
12404 if (GET_MODE_SIZE (mode
)
12405 != GET_MODE_SIZE (GET_MODE (inner
)))
12406 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12408 cvt
= new_loc_descr (DW_OP_GNU_reinterpret
, 0, 0);
12409 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12410 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12411 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12412 add_loc_descr (&mem_loc_result
, cvt
);
12417 if (GET_MODE_CLASS (mode
) != MODE_INT
12418 || (GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
12419 && rtl
!= arg_pointer_rtx
12420 && rtl
!= frame_pointer_rtx
12421 #ifdef POINTERS_EXTEND_UNSIGNED
12422 && (mode
!= Pmode
|| mem_mode
== VOIDmode
)
12426 dw_die_ref type_die
;
12427 unsigned int dbx_regnum
;
12431 if (REGNO (rtl
) > FIRST_PSEUDO_REGISTER
)
12433 type_die
= base_type_for_mode (mode
,
12434 GET_MODE_CLASS (mode
) == MODE_INT
);
12435 if (type_die
== NULL
)
12438 dbx_regnum
= dbx_reg_number (rtl
);
12439 if (dbx_regnum
== IGNORED_DWARF_REGNUM
)
12441 mem_loc_result
= new_loc_descr (DW_OP_GNU_regval_type
,
12443 mem_loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_die_ref
;
12444 mem_loc_result
->dw_loc_oprnd2
.v
.val_die_ref
.die
= type_die
;
12445 mem_loc_result
->dw_loc_oprnd2
.v
.val_die_ref
.external
= 0;
12448 /* Whenever a register number forms a part of the description of the
12449 method for calculating the (dynamic) address of a memory resident
12450 object, DWARF rules require the register number be referred to as
12451 a "base register". This distinction is not based in any way upon
12452 what category of register the hardware believes the given register
12453 belongs to. This is strictly DWARF terminology we're dealing with
12454 here. Note that in cases where the location of a memory-resident
12455 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
12456 OP_CONST (0)) the actual DWARF location descriptor that we generate
12457 may just be OP_BASEREG (basereg). This may look deceptively like
12458 the object in question was allocated to a register (rather than in
12459 memory) so DWARF consumers need to be aware of the subtle
12460 distinction between OP_REG and OP_BASEREG. */
12461 if (REGNO (rtl
) < FIRST_PSEUDO_REGISTER
)
12462 mem_loc_result
= based_loc_descr (rtl
, 0, VAR_INIT_STATUS_INITIALIZED
);
12463 else if (stack_realign_drap
12465 && crtl
->args
.internal_arg_pointer
== rtl
12466 && REGNO (crtl
->drap_reg
) < FIRST_PSEUDO_REGISTER
)
12468 /* If RTL is internal_arg_pointer, which has been optimized
12469 out, use DRAP instead. */
12470 mem_loc_result
= based_loc_descr (crtl
->drap_reg
, 0,
12471 VAR_INIT_STATUS_INITIALIZED
);
12477 if (GET_MODE_CLASS (mode
) != MODE_INT
)
12479 op0
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (XEXP (rtl
, 0)),
12480 mem_mode
, VAR_INIT_STATUS_INITIALIZED
);
12483 else if (GET_CODE (rtl
) == ZERO_EXTEND
12484 && GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
12485 && GET_MODE_BITSIZE (GET_MODE (XEXP (rtl
, 0)))
12486 < HOST_BITS_PER_WIDE_INT
12487 /* If DW_OP_const{1,2,4}u won't be used, it is shorter
12488 to expand zero extend as two shifts instead of
12490 && GET_MODE_SIZE (GET_MODE (XEXP (rtl
, 0))) <= 4)
12492 enum machine_mode imode
= GET_MODE (XEXP (rtl
, 0));
12493 mem_loc_result
= op0
;
12494 add_loc_descr (&mem_loc_result
,
12495 int_loc_descriptor (GET_MODE_MASK (imode
)));
12496 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_and
, 0, 0));
12498 else if (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
)
12500 int shift
= DWARF2_ADDR_SIZE
12501 - GET_MODE_SIZE (GET_MODE (XEXP (rtl
, 0)));
12502 shift
*= BITS_PER_UNIT
;
12503 if (GET_CODE (rtl
) == SIGN_EXTEND
)
12507 mem_loc_result
= op0
;
12508 add_loc_descr (&mem_loc_result
, int_loc_descriptor (shift
));
12509 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_shl
, 0, 0));
12510 add_loc_descr (&mem_loc_result
, int_loc_descriptor (shift
));
12511 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
12513 else if (!dwarf_strict
)
12515 dw_die_ref type_die1
, type_die2
;
12516 dw_loc_descr_ref cvt
;
12518 type_die1
= base_type_for_mode (GET_MODE (XEXP (rtl
, 0)),
12519 GET_CODE (rtl
) == ZERO_EXTEND
);
12520 if (type_die1
== NULL
)
12522 type_die2
= base_type_for_mode (mode
, 1);
12523 if (type_die2
== NULL
)
12525 mem_loc_result
= op0
;
12526 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12527 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12528 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die1
;
12529 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12530 add_loc_descr (&mem_loc_result
, cvt
);
12531 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12532 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12533 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die2
;
12534 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12535 add_loc_descr (&mem_loc_result
, cvt
);
12541 rtx new_rtl
= avoid_constant_pool_reference (rtl
);
12542 if (new_rtl
!= rtl
)
12544 mem_loc_result
= mem_loc_descriptor (new_rtl
, mode
, mem_mode
,
12546 if (mem_loc_result
!= NULL
)
12547 return mem_loc_result
;
12550 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0),
12551 get_address_mode (rtl
), mode
,
12552 VAR_INIT_STATUS_INITIALIZED
);
12553 if (mem_loc_result
== NULL
)
12554 mem_loc_result
= tls_mem_loc_descriptor (rtl
);
12555 if (mem_loc_result
!= NULL
)
12557 if (GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
12558 || GET_MODE_CLASS (mode
) != MODE_INT
)
12560 dw_die_ref type_die
;
12561 dw_loc_descr_ref deref
;
12566 = base_type_for_mode (mode
, GET_MODE_CLASS (mode
) == MODE_INT
);
12567 if (type_die
== NULL
)
12569 deref
= new_loc_descr (DW_OP_GNU_deref_type
,
12570 GET_MODE_SIZE (mode
), 0);
12571 deref
->dw_loc_oprnd2
.val_class
= dw_val_class_die_ref
;
12572 deref
->dw_loc_oprnd2
.v
.val_die_ref
.die
= type_die
;
12573 deref
->dw_loc_oprnd2
.v
.val_die_ref
.external
= 0;
12574 add_loc_descr (&mem_loc_result
, deref
);
12576 else if (GET_MODE_SIZE (mode
) == DWARF2_ADDR_SIZE
)
12577 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_deref
, 0, 0));
12579 add_loc_descr (&mem_loc_result
,
12580 new_loc_descr (DW_OP_deref_size
,
12581 GET_MODE_SIZE (mode
), 0));
12586 return mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
, initialized
);
12589 /* Some ports can transform a symbol ref into a label ref, because
12590 the symbol ref is too far away and has to be dumped into a constant
12594 if (GET_MODE_CLASS (mode
) != MODE_INT
12595 || (GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
12596 #ifdef POINTERS_EXTEND_UNSIGNED
12597 && (mode
!= Pmode
|| mem_mode
== VOIDmode
)
12601 if (GET_CODE (rtl
) == SYMBOL_REF
12602 && SYMBOL_REF_TLS_MODEL (rtl
) != TLS_MODEL_NONE
)
12604 dw_loc_descr_ref temp
;
12606 /* If this is not defined, we have no way to emit the data. */
12607 if (!targetm
.have_tls
|| !targetm
.asm_out
.output_dwarf_dtprel
)
12610 temp
= new_addr_loc_descr (rtl
, dtprel_true
);
12612 mem_loc_result
= new_loc_descr (DW_OP_GNU_push_tls_address
, 0, 0);
12613 add_loc_descr (&mem_loc_result
, temp
);
12618 if (!const_ok_for_output (rtl
))
12622 mem_loc_result
= new_addr_loc_descr (rtl
, dtprel_false
);
12623 vec_safe_push (used_rtx_array
, rtl
);
12629 case DEBUG_IMPLICIT_PTR
:
12630 expansion_failed (NULL_TREE
, rtl
,
12631 "CONCAT/CONCATN/VAR_LOCATION is handled only by loc_descriptor");
12637 if (REG_P (ENTRY_VALUE_EXP (rtl
)))
12639 if (GET_MODE_CLASS (mode
) != MODE_INT
12640 || GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
)
12641 op0
= mem_loc_descriptor (ENTRY_VALUE_EXP (rtl
), mode
,
12642 VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
12645 unsigned int dbx_regnum
= dbx_reg_number (ENTRY_VALUE_EXP (rtl
));
12646 if (dbx_regnum
== IGNORED_DWARF_REGNUM
)
12648 op0
= one_reg_loc_descriptor (dbx_regnum
,
12649 VAR_INIT_STATUS_INITIALIZED
);
12652 else if (MEM_P (ENTRY_VALUE_EXP (rtl
))
12653 && REG_P (XEXP (ENTRY_VALUE_EXP (rtl
), 0)))
12655 op0
= mem_loc_descriptor (ENTRY_VALUE_EXP (rtl
), mode
,
12656 VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
12657 if (op0
&& op0
->dw_loc_opc
== DW_OP_fbreg
)
12661 gcc_unreachable ();
12664 mem_loc_result
= new_loc_descr (DW_OP_GNU_entry_value
, 0, 0);
12665 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
12666 mem_loc_result
->dw_loc_oprnd1
.v
.val_loc
= op0
;
12669 case DEBUG_PARAMETER_REF
:
12670 mem_loc_result
= parameter_ref_descriptor (rtl
);
12674 /* Extract the PLUS expression nested inside and fall into
12675 PLUS code below. */
12676 rtl
= XEXP (rtl
, 1);
12681 /* Turn these into a PLUS expression and fall into the PLUS code
12683 rtl
= gen_rtx_PLUS (mode
, XEXP (rtl
, 0),
12684 gen_int_mode (GET_CODE (rtl
) == PRE_INC
12685 ? GET_MODE_UNIT_SIZE (mem_mode
)
12686 : -GET_MODE_UNIT_SIZE (mem_mode
),
12689 /* ... fall through ... */
12693 if (is_based_loc (rtl
)
12694 && (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
12695 || XEXP (rtl
, 0) == arg_pointer_rtx
12696 || XEXP (rtl
, 0) == frame_pointer_rtx
)
12697 && GET_MODE_CLASS (mode
) == MODE_INT
)
12698 mem_loc_result
= based_loc_descr (XEXP (rtl
, 0),
12699 INTVAL (XEXP (rtl
, 1)),
12700 VAR_INIT_STATUS_INITIALIZED
);
12703 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12704 VAR_INIT_STATUS_INITIALIZED
);
12705 if (mem_loc_result
== 0)
12708 if (CONST_INT_P (XEXP (rtl
, 1))
12709 && GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
)
12710 loc_descr_plus_const (&mem_loc_result
, INTVAL (XEXP (rtl
, 1)));
12713 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
12714 VAR_INIT_STATUS_INITIALIZED
);
12717 add_loc_descr (&mem_loc_result
, op1
);
12718 add_loc_descr (&mem_loc_result
,
12719 new_loc_descr (DW_OP_plus
, 0, 0));
12724 /* If a pseudo-reg is optimized away, it is possible for it to
12725 be replaced with a MEM containing a multiply or shift. */
12736 && GET_MODE_CLASS (mode
) == MODE_INT
12737 && GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
)
12739 mem_loc_result
= typed_binop (DW_OP_div
, rtl
,
12740 base_type_for_mode (mode
, 0),
12764 if (GET_MODE_CLASS (mode
) != MODE_INT
)
12766 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12767 VAR_INIT_STATUS_INITIALIZED
);
12769 rtx rtlop1
= XEXP (rtl
, 1);
12770 if (GET_MODE (rtlop1
) != VOIDmode
12771 && GET_MODE_BITSIZE (GET_MODE (rtlop1
))
12772 < GET_MODE_BITSIZE (mode
))
12773 rtlop1
= gen_rtx_ZERO_EXTEND (mode
, rtlop1
);
12774 op1
= mem_loc_descriptor (rtlop1
, mode
, mem_mode
,
12775 VAR_INIT_STATUS_INITIALIZED
);
12778 if (op0
== 0 || op1
== 0)
12781 mem_loc_result
= op0
;
12782 add_loc_descr (&mem_loc_result
, op1
);
12783 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
12799 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12800 VAR_INIT_STATUS_INITIALIZED
);
12801 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
12802 VAR_INIT_STATUS_INITIALIZED
);
12804 if (op0
== 0 || op1
== 0)
12807 mem_loc_result
= op0
;
12808 add_loc_descr (&mem_loc_result
, op1
);
12809 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
12813 if (GET_MODE_SIZE (mode
) > DWARF2_ADDR_SIZE
&& !dwarf_strict
)
12815 mem_loc_result
= typed_binop (DW_OP_mod
, rtl
,
12816 base_type_for_mode (mode
, 0),
12821 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12822 VAR_INIT_STATUS_INITIALIZED
);
12823 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
12824 VAR_INIT_STATUS_INITIALIZED
);
12826 if (op0
== 0 || op1
== 0)
12829 mem_loc_result
= op0
;
12830 add_loc_descr (&mem_loc_result
, op1
);
12831 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_over
, 0, 0));
12832 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_over
, 0, 0));
12833 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_div
, 0, 0));
12834 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_mul
, 0, 0));
12835 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_minus
, 0, 0));
12839 if (!dwarf_strict
&& GET_MODE_CLASS (mode
) == MODE_INT
)
12841 if (GET_MODE_CLASS (mode
) > DWARF2_ADDR_SIZE
)
12846 mem_loc_result
= typed_binop (DW_OP_div
, rtl
,
12847 base_type_for_mode (mode
, 1),
12865 op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
, mem_mode
,
12866 VAR_INIT_STATUS_INITIALIZED
);
12871 mem_loc_result
= op0
;
12872 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
12876 if (GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
12877 #ifdef POINTERS_EXTEND_UNSIGNED
12879 && mem_mode
!= VOIDmode
12880 && trunc_int_for_mode (INTVAL (rtl
), ptr_mode
) == INTVAL (rtl
))
12884 mem_loc_result
= int_loc_descriptor (INTVAL (rtl
));
12888 && (GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_WIDE_INT
12889 || GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_DOUBLE_INT
))
12891 dw_die_ref type_die
= base_type_for_mode (mode
, 1);
12892 enum machine_mode amode
;
12893 if (type_die
== NULL
)
12895 amode
= mode_for_size (DWARF2_ADDR_SIZE
* BITS_PER_UNIT
,
12897 if (INTVAL (rtl
) >= 0
12898 && amode
!= BLKmode
12899 && trunc_int_for_mode (INTVAL (rtl
), amode
) == INTVAL (rtl
)
12900 /* const DW_OP_GNU_convert <XXX> vs.
12901 DW_OP_GNU_const_type <XXX, 1, const>. */
12902 && size_of_int_loc_descriptor (INTVAL (rtl
)) + 1 + 1
12903 < (unsigned long) 1 + 1 + 1 + GET_MODE_SIZE (mode
))
12905 mem_loc_result
= int_loc_descriptor (INTVAL (rtl
));
12906 op0
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
12907 op0
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12908 op0
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12909 op0
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12910 add_loc_descr (&mem_loc_result
, op0
);
12911 return mem_loc_result
;
12913 mem_loc_result
= new_loc_descr (DW_OP_GNU_const_type
, 0,
12915 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12916 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12917 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12918 if (GET_MODE_BITSIZE (mode
) == HOST_BITS_PER_WIDE_INT
)
12919 mem_loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_const
;
12922 mem_loc_result
->dw_loc_oprnd2
.val_class
12923 = dw_val_class_const_double
;
12924 mem_loc_result
->dw_loc_oprnd2
.v
.val_double
12925 = double_int::from_shwi (INTVAL (rtl
));
12933 dw_die_ref type_die
;
12935 /* Note that if TARGET_SUPPORTS_WIDE_INT == 0, a
12936 CONST_DOUBLE rtx could represent either a large integer
12937 or a floating-point constant. If TARGET_SUPPORTS_WIDE_INT != 0,
12938 the value is always a floating point constant.
12940 When it is an integer, a CONST_DOUBLE is used whenever
12941 the constant requires 2 HWIs to be adequately represented.
12942 We output CONST_DOUBLEs as blocks. */
12943 if (mode
== VOIDmode
12944 || (GET_MODE (rtl
) == VOIDmode
12945 && GET_MODE_BITSIZE (mode
) != HOST_BITS_PER_DOUBLE_INT
))
12947 type_die
= base_type_for_mode (mode
,
12948 GET_MODE_CLASS (mode
) == MODE_INT
);
12949 if (type_die
== NULL
)
12951 mem_loc_result
= new_loc_descr (DW_OP_GNU_const_type
, 0, 0);
12952 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12953 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12954 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12955 #if TARGET_SUPPORTS_WIDE_INT == 0
12956 if (!SCALAR_FLOAT_MODE_P (mode
))
12958 mem_loc_result
->dw_loc_oprnd2
.val_class
12959 = dw_val_class_const_double
;
12960 mem_loc_result
->dw_loc_oprnd2
.v
.val_double
12961 = rtx_to_double_int (rtl
);
12966 unsigned int length
= GET_MODE_SIZE (mode
);
12967 unsigned char *array
= ggc_vec_alloc
<unsigned char> (length
);
12969 insert_float (rtl
, array
);
12970 mem_loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_vec
;
12971 mem_loc_result
->dw_loc_oprnd2
.v
.val_vec
.length
= length
/ 4;
12972 mem_loc_result
->dw_loc_oprnd2
.v
.val_vec
.elt_size
= 4;
12973 mem_loc_result
->dw_loc_oprnd2
.v
.val_vec
.array
= array
;
12978 case CONST_WIDE_INT
:
12981 dw_die_ref type_die
;
12983 type_die
= base_type_for_mode (mode
,
12984 GET_MODE_CLASS (mode
) == MODE_INT
);
12985 if (type_die
== NULL
)
12987 mem_loc_result
= new_loc_descr (DW_OP_GNU_const_type
, 0, 0);
12988 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
12989 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
12990 mem_loc_result
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
12991 mem_loc_result
->dw_loc_oprnd2
.val_class
12992 = dw_val_class_wide_int
;
12993 mem_loc_result
->dw_loc_oprnd2
.v
.val_wide
= ggc_cleared_alloc
<wide_int
> ();
12994 *mem_loc_result
->dw_loc_oprnd2
.v
.val_wide
= std::make_pair (rtl
, mode
);
12999 mem_loc_result
= scompare_loc_descriptor (DW_OP_eq
, rtl
, mem_mode
);
13003 mem_loc_result
= scompare_loc_descriptor (DW_OP_ge
, rtl
, mem_mode
);
13007 mem_loc_result
= scompare_loc_descriptor (DW_OP_gt
, rtl
, mem_mode
);
13011 mem_loc_result
= scompare_loc_descriptor (DW_OP_le
, rtl
, mem_mode
);
13015 mem_loc_result
= scompare_loc_descriptor (DW_OP_lt
, rtl
, mem_mode
);
13019 mem_loc_result
= scompare_loc_descriptor (DW_OP_ne
, rtl
, mem_mode
);
13023 mem_loc_result
= ucompare_loc_descriptor (DW_OP_ge
, rtl
, mem_mode
);
13027 mem_loc_result
= ucompare_loc_descriptor (DW_OP_gt
, rtl
, mem_mode
);
13031 mem_loc_result
= ucompare_loc_descriptor (DW_OP_le
, rtl
, mem_mode
);
13035 mem_loc_result
= ucompare_loc_descriptor (DW_OP_lt
, rtl
, mem_mode
);
13040 if (GET_MODE_CLASS (mode
) != MODE_INT
)
13045 mem_loc_result
= minmax_loc_descriptor (rtl
, mode
, mem_mode
);
13050 if (CONST_INT_P (XEXP (rtl
, 1))
13051 && CONST_INT_P (XEXP (rtl
, 2))
13052 && ((unsigned) INTVAL (XEXP (rtl
, 1))
13053 + (unsigned) INTVAL (XEXP (rtl
, 2))
13054 <= GET_MODE_BITSIZE (mode
))
13055 && GET_MODE_CLASS (mode
) == MODE_INT
13056 && GET_MODE_SIZE (mode
) <= DWARF2_ADDR_SIZE
13057 && GET_MODE_SIZE (GET_MODE (XEXP (rtl
, 0))) <= DWARF2_ADDR_SIZE
)
13060 op0
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (XEXP (rtl
, 0)),
13061 mem_mode
, VAR_INIT_STATUS_INITIALIZED
);
13064 if (GET_CODE (rtl
) == SIGN_EXTRACT
)
13068 mem_loc_result
= op0
;
13069 size
= INTVAL (XEXP (rtl
, 1));
13070 shift
= INTVAL (XEXP (rtl
, 2));
13071 if (BITS_BIG_ENDIAN
)
13072 shift
= GET_MODE_BITSIZE (GET_MODE (XEXP (rtl
, 0)))
13074 if (shift
+ size
!= (int) DWARF2_ADDR_SIZE
)
13076 add_loc_descr (&mem_loc_result
,
13077 int_loc_descriptor (DWARF2_ADDR_SIZE
13079 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_shl
, 0, 0));
13081 if (size
!= (int) DWARF2_ADDR_SIZE
)
13083 add_loc_descr (&mem_loc_result
,
13084 int_loc_descriptor (DWARF2_ADDR_SIZE
- size
));
13085 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
13092 dw_loc_descr_ref op2
, bra_node
, drop_node
;
13093 op0
= mem_loc_descriptor (XEXP (rtl
, 0),
13094 GET_MODE (XEXP (rtl
, 0)) == VOIDmode
13095 ? word_mode
: GET_MODE (XEXP (rtl
, 0)),
13096 mem_mode
, VAR_INIT_STATUS_INITIALIZED
);
13097 op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
, mem_mode
,
13098 VAR_INIT_STATUS_INITIALIZED
);
13099 op2
= mem_loc_descriptor (XEXP (rtl
, 2), mode
, mem_mode
,
13100 VAR_INIT_STATUS_INITIALIZED
);
13101 if (op0
== NULL
|| op1
== NULL
|| op2
== NULL
)
13104 mem_loc_result
= op1
;
13105 add_loc_descr (&mem_loc_result
, op2
);
13106 add_loc_descr (&mem_loc_result
, op0
);
13107 bra_node
= new_loc_descr (DW_OP_bra
, 0, 0);
13108 add_loc_descr (&mem_loc_result
, bra_node
);
13109 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_swap
, 0, 0));
13110 drop_node
= new_loc_descr (DW_OP_drop
, 0, 0);
13111 add_loc_descr (&mem_loc_result
, drop_node
);
13112 bra_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
13113 bra_node
->dw_loc_oprnd1
.v
.val_loc
= drop_node
;
13118 case FLOAT_TRUNCATE
:
13120 case UNSIGNED_FLOAT
:
13125 dw_die_ref type_die
;
13126 dw_loc_descr_ref cvt
;
13128 op0
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (XEXP (rtl
, 0)),
13129 mem_mode
, VAR_INIT_STATUS_INITIALIZED
);
13132 if (GET_MODE_CLASS (GET_MODE (XEXP (rtl
, 0))) == MODE_INT
13133 && (GET_CODE (rtl
) == FLOAT
13134 || GET_MODE_SIZE (GET_MODE (XEXP (rtl
, 0)))
13135 <= DWARF2_ADDR_SIZE
))
13137 type_die
= base_type_for_mode (GET_MODE (XEXP (rtl
, 0)),
13138 GET_CODE (rtl
) == UNSIGNED_FLOAT
);
13139 if (type_die
== NULL
)
13141 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
13142 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
13143 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
13144 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
13145 add_loc_descr (&op0
, cvt
);
13147 type_die
= base_type_for_mode (mode
, GET_CODE (rtl
) == UNSIGNED_FIX
);
13148 if (type_die
== NULL
)
13150 cvt
= new_loc_descr (DW_OP_GNU_convert
, 0, 0);
13151 cvt
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
13152 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.die
= type_die
;
13153 cvt
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
13154 add_loc_descr (&op0
, cvt
);
13155 if (GET_MODE_CLASS (mode
) == MODE_INT
13156 && (GET_CODE (rtl
) == FIX
13157 || GET_MODE_SIZE (mode
) < DWARF2_ADDR_SIZE
))
13159 op0
= convert_descriptor_to_mode (mode
, op0
);
13163 mem_loc_result
= op0
;
13170 mem_loc_result
= clz_loc_descriptor (rtl
, mode
, mem_mode
);
13175 mem_loc_result
= popcount_loc_descriptor (rtl
, mode
, mem_mode
);
13179 mem_loc_result
= bswap_loc_descriptor (rtl
, mode
, mem_mode
);
13184 mem_loc_result
= rotate_loc_descriptor (rtl
, mode
, mem_mode
);
13188 /* In theory, we could implement the above. */
13189 /* DWARF cannot represent the unsigned compare operations
13214 case FRACT_CONVERT
:
13215 case UNSIGNED_FRACT_CONVERT
:
13217 case UNSIGNED_SAT_FRACT
:
13223 case VEC_DUPLICATE
:
13227 case STRICT_LOW_PART
:
13232 /* If delegitimize_address couldn't do anything with the UNSPEC, we
13233 can't express it in the debug info. This can happen e.g. with some
13238 resolve_one_addr (&rtl
, NULL
);
13242 #ifdef ENABLE_CHECKING
13243 print_rtl (stderr
, rtl
);
13244 gcc_unreachable ();
13250 if (mem_loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
13251 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
13253 return mem_loc_result
;
13256 /* Return a descriptor that describes the concatenation of two locations.
13257 This is typically a complex variable. */
13259 static dw_loc_descr_ref
13260 concat_loc_descriptor (rtx x0
, rtx x1
, enum var_init_status initialized
)
13262 dw_loc_descr_ref cc_loc_result
= NULL
;
13263 dw_loc_descr_ref x0_ref
13264 = loc_descriptor (x0
, VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
13265 dw_loc_descr_ref x1_ref
13266 = loc_descriptor (x1
, VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
13268 if (x0_ref
== 0 || x1_ref
== 0)
13271 cc_loc_result
= x0_ref
;
13272 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x0
)));
13274 add_loc_descr (&cc_loc_result
, x1_ref
);
13275 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x1
)));
13277 if (initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
13278 add_loc_descr (&cc_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
13280 return cc_loc_result
;
13283 /* Return a descriptor that describes the concatenation of N
13286 static dw_loc_descr_ref
13287 concatn_loc_descriptor (rtx concatn
, enum var_init_status initialized
)
13290 dw_loc_descr_ref cc_loc_result
= NULL
;
13291 unsigned int n
= XVECLEN (concatn
, 0);
13293 for (i
= 0; i
< n
; ++i
)
13295 dw_loc_descr_ref ref
;
13296 rtx x
= XVECEXP (concatn
, 0, i
);
13298 ref
= loc_descriptor (x
, VOIDmode
, VAR_INIT_STATUS_INITIALIZED
);
13302 add_loc_descr (&cc_loc_result
, ref
);
13303 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x
)));
13306 if (cc_loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
13307 add_loc_descr (&cc_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
13309 return cc_loc_result
;
13312 /* Helper function for loc_descriptor. Return DW_OP_GNU_implicit_pointer
13313 for DEBUG_IMPLICIT_PTR RTL. */
13315 static dw_loc_descr_ref
13316 implicit_ptr_descriptor (rtx rtl
, HOST_WIDE_INT offset
)
13318 dw_loc_descr_ref ret
;
13323 gcc_assert (TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl
)) == VAR_DECL
13324 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl
)) == PARM_DECL
13325 || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl
)) == RESULT_DECL
);
13326 ref
= lookup_decl_die (DEBUG_IMPLICIT_PTR_DECL (rtl
));
13327 ret
= new_loc_descr (DW_OP_GNU_implicit_pointer
, 0, offset
);
13328 ret
->dw_loc_oprnd2
.val_class
= dw_val_class_const
;
13331 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
13332 ret
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
13333 ret
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
13337 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_decl_ref
;
13338 ret
->dw_loc_oprnd1
.v
.val_decl_ref
= DEBUG_IMPLICIT_PTR_DECL (rtl
);
13343 /* Output a proper Dwarf location descriptor for a variable or parameter
13344 which is either allocated in a register or in a memory location. For a
13345 register, we just generate an OP_REG and the register number. For a
13346 memory location we provide a Dwarf postfix expression describing how to
13347 generate the (dynamic) address of the object onto the address stack.
13349 MODE is mode of the decl if this loc_descriptor is going to be used in
13350 .debug_loc section where DW_OP_stack_value and DW_OP_implicit_value are
13351 allowed, VOIDmode otherwise.
13353 If we don't know how to describe it, return 0. */
13355 static dw_loc_descr_ref
13356 loc_descriptor (rtx rtl
, enum machine_mode mode
,
13357 enum var_init_status initialized
)
13359 dw_loc_descr_ref loc_result
= NULL
;
13361 switch (GET_CODE (rtl
))
13364 /* The case of a subreg may arise when we have a local (register)
13365 variable or a formal (register) parameter which doesn't quite fill
13366 up an entire register. For now, just assume that it is
13367 legitimate to make the Dwarf info refer to the whole register which
13368 contains the given subreg. */
13369 if (REG_P (SUBREG_REG (rtl
)) && subreg_lowpart_p (rtl
))
13370 loc_result
= loc_descriptor (SUBREG_REG (rtl
),
13371 GET_MODE (SUBREG_REG (rtl
)), initialized
);
13377 loc_result
= reg_loc_descriptor (rtl
, initialized
);
13381 loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), get_address_mode (rtl
),
13382 GET_MODE (rtl
), initialized
);
13383 if (loc_result
== NULL
)
13384 loc_result
= tls_mem_loc_descriptor (rtl
);
13385 if (loc_result
== NULL
)
13387 rtx new_rtl
= avoid_constant_pool_reference (rtl
);
13388 if (new_rtl
!= rtl
)
13389 loc_result
= loc_descriptor (new_rtl
, mode
, initialized
);
13394 loc_result
= concat_loc_descriptor (XEXP (rtl
, 0), XEXP (rtl
, 1),
13399 loc_result
= concatn_loc_descriptor (rtl
, initialized
);
13404 if (GET_CODE (PAT_VAR_LOCATION_LOC (rtl
)) != PARALLEL
)
13406 rtx loc
= PAT_VAR_LOCATION_LOC (rtl
);
13407 if (GET_CODE (loc
) == EXPR_LIST
)
13408 loc
= XEXP (loc
, 0);
13409 loc_result
= loc_descriptor (loc
, mode
, initialized
);
13413 rtl
= XEXP (rtl
, 1);
13418 rtvec par_elems
= XVEC (rtl
, 0);
13419 int num_elem
= GET_NUM_ELEM (par_elems
);
13420 enum machine_mode mode
;
13423 /* Create the first one, so we have something to add to. */
13424 loc_result
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, 0), 0),
13425 VOIDmode
, initialized
);
13426 if (loc_result
== NULL
)
13428 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, 0), 0));
13429 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
13430 for (i
= 1; i
< num_elem
; i
++)
13432 dw_loc_descr_ref temp
;
13434 temp
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, i
), 0),
13435 VOIDmode
, initialized
);
13438 add_loc_descr (&loc_result
, temp
);
13439 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, i
), 0));
13440 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
13446 if (mode
!= VOIDmode
&& mode
!= BLKmode
)
13447 loc_result
= address_of_int_loc_descriptor (GET_MODE_SIZE (mode
),
13452 if (mode
== VOIDmode
)
13453 mode
= GET_MODE (rtl
);
13455 if (mode
!= VOIDmode
&& (dwarf_version
>= 4 || !dwarf_strict
))
13457 gcc_assert (mode
== GET_MODE (rtl
) || VOIDmode
== GET_MODE (rtl
));
13459 /* Note that a CONST_DOUBLE rtx could represent either an integer
13460 or a floating-point constant. A CONST_DOUBLE is used whenever
13461 the constant requires more than one word in order to be
13462 adequately represented. We output CONST_DOUBLEs as blocks. */
13463 loc_result
= new_loc_descr (DW_OP_implicit_value
,
13464 GET_MODE_SIZE (mode
), 0);
13465 #if TARGET_SUPPORTS_WIDE_INT == 0
13466 if (!SCALAR_FLOAT_MODE_P (mode
))
13468 loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_const_double
;
13469 loc_result
->dw_loc_oprnd2
.v
.val_double
13470 = rtx_to_double_int (rtl
);
13475 unsigned int length
= GET_MODE_SIZE (mode
);
13476 unsigned char *array
= ggc_vec_alloc
<unsigned char> (length
);
13478 insert_float (rtl
, array
);
13479 loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_vec
;
13480 loc_result
->dw_loc_oprnd2
.v
.val_vec
.length
= length
/ 4;
13481 loc_result
->dw_loc_oprnd2
.v
.val_vec
.elt_size
= 4;
13482 loc_result
->dw_loc_oprnd2
.v
.val_vec
.array
= array
;
13487 case CONST_WIDE_INT
:
13488 if (mode
== VOIDmode
)
13489 mode
= GET_MODE (rtl
);
13491 if (mode
!= VOIDmode
&& (dwarf_version
>= 4 || !dwarf_strict
))
13493 loc_result
= new_loc_descr (DW_OP_implicit_value
,
13494 GET_MODE_SIZE (mode
), 0);
13495 loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_wide_int
;
13496 loc_result
->dw_loc_oprnd2
.v
.val_wide
= ggc_cleared_alloc
<wide_int
> ();
13497 *loc_result
->dw_loc_oprnd2
.v
.val_wide
= std::make_pair (rtl
, mode
);
13502 if (mode
== VOIDmode
)
13503 mode
= GET_MODE (rtl
);
13505 if (mode
!= VOIDmode
&& (dwarf_version
>= 4 || !dwarf_strict
))
13507 unsigned int elt_size
= GET_MODE_UNIT_SIZE (GET_MODE (rtl
));
13508 unsigned int length
= CONST_VECTOR_NUNITS (rtl
);
13509 unsigned char *array
13510 = ggc_vec_alloc
<unsigned char> (length
* elt_size
);
13513 enum machine_mode imode
= GET_MODE_INNER (mode
);
13515 gcc_assert (mode
== GET_MODE (rtl
) || VOIDmode
== GET_MODE (rtl
));
13516 switch (GET_MODE_CLASS (mode
))
13518 case MODE_VECTOR_INT
:
13519 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
13521 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
13522 insert_wide_int (std::make_pair (elt
, imode
), p
, elt_size
);
13526 case MODE_VECTOR_FLOAT
:
13527 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
13529 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
13530 insert_float (elt
, p
);
13535 gcc_unreachable ();
13538 loc_result
= new_loc_descr (DW_OP_implicit_value
,
13539 length
* elt_size
, 0);
13540 loc_result
->dw_loc_oprnd2
.val_class
= dw_val_class_vec
;
13541 loc_result
->dw_loc_oprnd2
.v
.val_vec
.length
= length
;
13542 loc_result
->dw_loc_oprnd2
.v
.val_vec
.elt_size
= elt_size
;
13543 loc_result
->dw_loc_oprnd2
.v
.val_vec
.array
= array
;
13548 if (mode
== VOIDmode
13549 || CONST_SCALAR_INT_P (XEXP (rtl
, 0))
13550 || CONST_DOUBLE_AS_FLOAT_P (XEXP (rtl
, 0))
13551 || GET_CODE (XEXP (rtl
, 0)) == CONST_VECTOR
)
13553 loc_result
= loc_descriptor (XEXP (rtl
, 0), mode
, initialized
);
13558 if (!const_ok_for_output (rtl
))
13561 if (mode
!= VOIDmode
&& GET_MODE_SIZE (mode
) == DWARF2_ADDR_SIZE
13562 && (dwarf_version
>= 4 || !dwarf_strict
))
13564 loc_result
= new_addr_loc_descr (rtl
, dtprel_false
);
13565 add_loc_descr (&loc_result
, new_loc_descr (DW_OP_stack_value
, 0, 0));
13566 vec_safe_push (used_rtx_array
, rtl
);
13570 case DEBUG_IMPLICIT_PTR
:
13571 loc_result
= implicit_ptr_descriptor (rtl
, 0);
13575 if (GET_CODE (XEXP (rtl
, 0)) == DEBUG_IMPLICIT_PTR
13576 && CONST_INT_P (XEXP (rtl
, 1)))
13579 = implicit_ptr_descriptor (XEXP (rtl
, 0), INTVAL (XEXP (rtl
, 1)));
13585 if ((GET_MODE_CLASS (mode
) == MODE_INT
&& GET_MODE (rtl
) == mode
13586 && GET_MODE_SIZE (GET_MODE (rtl
)) <= DWARF2_ADDR_SIZE
13587 && dwarf_version
>= 4)
13588 || (!dwarf_strict
&& mode
!= VOIDmode
&& mode
!= BLKmode
))
13590 /* Value expression. */
13591 loc_result
= mem_loc_descriptor (rtl
, mode
, VOIDmode
, initialized
);
13593 add_loc_descr (&loc_result
,
13594 new_loc_descr (DW_OP_stack_value
, 0, 0));
13602 /* We need to figure out what section we should use as the base for the
13603 address ranges where a given location is valid.
13604 1. If this particular DECL has a section associated with it, use that.
13605 2. If this function has a section associated with it, use that.
13606 3. Otherwise, use the text section.
13607 XXX: If you split a variable across multiple sections, we won't notice. */
13609 static const char *
13610 secname_for_decl (const_tree decl
)
13612 const char *secname
;
13614 if (VAR_OR_FUNCTION_DECL_P (decl
) && DECL_SECTION_NAME (decl
))
13616 tree sectree
= DECL_SECTION_NAME (decl
);
13617 secname
= TREE_STRING_POINTER (sectree
);
13619 else if (current_function_decl
&& DECL_SECTION_NAME (current_function_decl
))
13621 tree sectree
= DECL_SECTION_NAME (current_function_decl
);
13622 secname
= TREE_STRING_POINTER (sectree
);
13624 else if (cfun
&& in_cold_section_p
)
13625 secname
= crtl
->subsections
.cold_section_label
;
13627 secname
= text_section_label
;
13632 /* Return true when DECL_BY_REFERENCE is defined and set for DECL. */
13635 decl_by_reference_p (tree decl
)
13637 return ((TREE_CODE (decl
) == PARM_DECL
|| TREE_CODE (decl
) == RESULT_DECL
13638 || TREE_CODE (decl
) == VAR_DECL
)
13639 && DECL_BY_REFERENCE (decl
));
13642 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
13645 static dw_loc_descr_ref
13646 dw_loc_list_1 (tree loc
, rtx varloc
, int want_address
,
13647 enum var_init_status initialized
)
13649 int have_address
= 0;
13650 dw_loc_descr_ref descr
;
13651 enum machine_mode mode
;
13653 if (want_address
!= 2)
13655 gcc_assert (GET_CODE (varloc
) == VAR_LOCATION
);
13657 if (GET_CODE (PAT_VAR_LOCATION_LOC (varloc
)) != PARALLEL
)
13659 varloc
= PAT_VAR_LOCATION_LOC (varloc
);
13660 if (GET_CODE (varloc
) == EXPR_LIST
)
13661 varloc
= XEXP (varloc
, 0);
13662 mode
= GET_MODE (varloc
);
13663 if (MEM_P (varloc
))
13665 rtx addr
= XEXP (varloc
, 0);
13666 descr
= mem_loc_descriptor (addr
, get_address_mode (varloc
),
13667 mode
, initialized
);
13672 rtx x
= avoid_constant_pool_reference (varloc
);
13674 descr
= mem_loc_descriptor (x
, mode
, VOIDmode
,
13679 descr
= mem_loc_descriptor (varloc
, mode
, VOIDmode
, initialized
);
13686 if (GET_CODE (varloc
) == VAR_LOCATION
)
13687 mode
= DECL_MODE (PAT_VAR_LOCATION_DECL (varloc
));
13689 mode
= DECL_MODE (loc
);
13690 descr
= loc_descriptor (varloc
, mode
, initialized
);
13697 if (want_address
== 2 && !have_address
13698 && (dwarf_version
>= 4 || !dwarf_strict
))
13700 if (int_size_in_bytes (TREE_TYPE (loc
)) > DWARF2_ADDR_SIZE
)
13702 expansion_failed (loc
, NULL_RTX
,
13703 "DWARF address size mismatch");
13706 add_loc_descr (&descr
, new_loc_descr (DW_OP_stack_value
, 0, 0));
13709 /* Show if we can't fill the request for an address. */
13710 if (want_address
&& !have_address
)
13712 expansion_failed (loc
, NULL_RTX
,
13713 "Want address and only have value");
13717 /* If we've got an address and don't want one, dereference. */
13718 if (!want_address
&& have_address
)
13720 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (loc
));
13721 enum dwarf_location_atom op
;
13723 if (size
> DWARF2_ADDR_SIZE
|| size
== -1)
13725 expansion_failed (loc
, NULL_RTX
,
13726 "DWARF address size mismatch");
13729 else if (size
== DWARF2_ADDR_SIZE
)
13732 op
= DW_OP_deref_size
;
13734 add_loc_descr (&descr
, new_loc_descr (op
, size
, 0));
13740 /* Create a DW_OP_piece or DW_OP_bit_piece for bitsize, or return NULL
13741 if it is not possible. */
13743 static dw_loc_descr_ref
13744 new_loc_descr_op_bit_piece (HOST_WIDE_INT bitsize
, HOST_WIDE_INT offset
)
13746 if ((bitsize
% BITS_PER_UNIT
) == 0 && offset
== 0)
13747 return new_loc_descr (DW_OP_piece
, bitsize
/ BITS_PER_UNIT
, 0);
13748 else if (dwarf_version
>= 3 || !dwarf_strict
)
13749 return new_loc_descr (DW_OP_bit_piece
, bitsize
, offset
);
13754 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
13755 for VAR_LOC_NOTE for variable DECL that has been optimized by SRA. */
13757 static dw_loc_descr_ref
13758 dw_sra_loc_expr (tree decl
, rtx loc
)
13761 unsigned int padsize
= 0;
13762 dw_loc_descr_ref descr
, *descr_tail
;
13763 unsigned HOST_WIDE_INT decl_size
;
13765 enum var_init_status initialized
;
13767 if (DECL_SIZE (decl
) == NULL
13768 || !tree_fits_uhwi_p (DECL_SIZE (decl
)))
13771 decl_size
= tree_to_uhwi (DECL_SIZE (decl
));
13773 descr_tail
= &descr
;
13775 for (p
= loc
; p
; p
= XEXP (p
, 1))
13777 unsigned int bitsize
= decl_piece_bitsize (p
);
13778 rtx loc_note
= *decl_piece_varloc_ptr (p
);
13779 dw_loc_descr_ref cur_descr
;
13780 dw_loc_descr_ref
*tail
, last
= NULL
;
13781 unsigned int opsize
= 0;
13783 if (loc_note
== NULL_RTX
13784 || NOTE_VAR_LOCATION_LOC (loc_note
) == NULL_RTX
)
13786 padsize
+= bitsize
;
13789 initialized
= NOTE_VAR_LOCATION_STATUS (loc_note
);
13790 varloc
= NOTE_VAR_LOCATION (loc_note
);
13791 cur_descr
= dw_loc_list_1 (decl
, varloc
, 2, initialized
);
13792 if (cur_descr
== NULL
)
13794 padsize
+= bitsize
;
13798 /* Check that cur_descr either doesn't use
13799 DW_OP_*piece operations, or their sum is equal
13800 to bitsize. Otherwise we can't embed it. */
13801 for (tail
= &cur_descr
; *tail
!= NULL
;
13802 tail
= &(*tail
)->dw_loc_next
)
13803 if ((*tail
)->dw_loc_opc
== DW_OP_piece
)
13805 opsize
+= (*tail
)->dw_loc_oprnd1
.v
.val_unsigned
13809 else if ((*tail
)->dw_loc_opc
== DW_OP_bit_piece
)
13811 opsize
+= (*tail
)->dw_loc_oprnd1
.v
.val_unsigned
;
13815 if (last
!= NULL
&& opsize
!= bitsize
)
13817 padsize
+= bitsize
;
13818 /* Discard the current piece of the descriptor and release any
13819 addr_table entries it uses. */
13820 remove_loc_list_addr_table_entries (cur_descr
);
13824 /* If there is a hole, add DW_OP_*piece after empty DWARF
13825 expression, which means that those bits are optimized out. */
13828 if (padsize
> decl_size
)
13830 remove_loc_list_addr_table_entries (cur_descr
);
13831 goto discard_descr
;
13833 decl_size
-= padsize
;
13834 *descr_tail
= new_loc_descr_op_bit_piece (padsize
, 0);
13835 if (*descr_tail
== NULL
)
13837 remove_loc_list_addr_table_entries (cur_descr
);
13838 goto discard_descr
;
13840 descr_tail
= &(*descr_tail
)->dw_loc_next
;
13843 *descr_tail
= cur_descr
;
13845 if (bitsize
> decl_size
)
13846 goto discard_descr
;
13847 decl_size
-= bitsize
;
13850 HOST_WIDE_INT offset
= 0;
13851 if (GET_CODE (varloc
) == VAR_LOCATION
13852 && GET_CODE (PAT_VAR_LOCATION_LOC (varloc
)) != PARALLEL
)
13854 varloc
= PAT_VAR_LOCATION_LOC (varloc
);
13855 if (GET_CODE (varloc
) == EXPR_LIST
)
13856 varloc
= XEXP (varloc
, 0);
13860 if (GET_CODE (varloc
) == CONST
13861 || GET_CODE (varloc
) == SIGN_EXTEND
13862 || GET_CODE (varloc
) == ZERO_EXTEND
)
13863 varloc
= XEXP (varloc
, 0);
13864 else if (GET_CODE (varloc
) == SUBREG
)
13865 varloc
= SUBREG_REG (varloc
);
13870 /* DW_OP_bit_size offset should be zero for register
13871 or implicit location descriptions and empty location
13872 descriptions, but for memory addresses needs big endian
13874 if (MEM_P (varloc
))
13876 unsigned HOST_WIDE_INT memsize
13877 = MEM_SIZE (varloc
) * BITS_PER_UNIT
;
13878 if (memsize
!= bitsize
)
13880 if (BYTES_BIG_ENDIAN
!= WORDS_BIG_ENDIAN
13881 && (memsize
> BITS_PER_WORD
|| bitsize
> BITS_PER_WORD
))
13882 goto discard_descr
;
13883 if (memsize
< bitsize
)
13884 goto discard_descr
;
13885 if (BITS_BIG_ENDIAN
)
13886 offset
= memsize
- bitsize
;
13890 *descr_tail
= new_loc_descr_op_bit_piece (bitsize
, offset
);
13891 if (*descr_tail
== NULL
)
13892 goto discard_descr
;
13893 descr_tail
= &(*descr_tail
)->dw_loc_next
;
13897 /* If there were any non-empty expressions, add padding till the end of
13899 if (descr
!= NULL
&& decl_size
!= 0)
13901 *descr_tail
= new_loc_descr_op_bit_piece (decl_size
, 0);
13902 if (*descr_tail
== NULL
)
13903 goto discard_descr
;
13908 /* Discard the descriptor and release any addr_table entries it uses. */
13909 remove_loc_list_addr_table_entries (descr
);
13913 /* Return the dwarf representation of the location list LOC_LIST of
13914 DECL. WANT_ADDRESS has the same meaning as in loc_list_from_tree
13917 static dw_loc_list_ref
13918 dw_loc_list (var_loc_list
*loc_list
, tree decl
, int want_address
)
13920 const char *endname
, *secname
;
13922 enum var_init_status initialized
;
13923 struct var_loc_node
*node
;
13924 dw_loc_descr_ref descr
;
13925 char label_id
[MAX_ARTIFICIAL_LABEL_BYTES
];
13926 dw_loc_list_ref list
= NULL
;
13927 dw_loc_list_ref
*listp
= &list
;
13929 /* Now that we know what section we are using for a base,
13930 actually construct the list of locations.
13931 The first location information is what is passed to the
13932 function that creates the location list, and the remaining
13933 locations just get added on to that list.
13934 Note that we only know the start address for a location
13935 (IE location changes), so to build the range, we use
13936 the range [current location start, next location start].
13937 This means we have to special case the last node, and generate
13938 a range of [last location start, end of function label]. */
13940 secname
= secname_for_decl (decl
);
13942 for (node
= loc_list
->first
; node
; node
= node
->next
)
13943 if (GET_CODE (node
->loc
) == EXPR_LIST
13944 || NOTE_VAR_LOCATION_LOC (node
->loc
) != NULL_RTX
)
13946 if (GET_CODE (node
->loc
) == EXPR_LIST
)
13948 /* This requires DW_OP_{,bit_}piece, which is not usable
13949 inside DWARF expressions. */
13950 if (want_address
!= 2)
13952 descr
= dw_sra_loc_expr (decl
, node
->loc
);
13958 initialized
= NOTE_VAR_LOCATION_STATUS (node
->loc
);
13959 varloc
= NOTE_VAR_LOCATION (node
->loc
);
13960 descr
= dw_loc_list_1 (decl
, varloc
, want_address
, initialized
);
13964 bool range_across_switch
= false;
13965 /* If section switch happens in between node->label
13966 and node->next->label (or end of function) and
13967 we can't emit it as a single entry list,
13968 emit two ranges, first one ending at the end
13969 of first partition and second one starting at the
13970 beginning of second partition. */
13971 if (node
== loc_list
->last_before_switch
13972 && (node
!= loc_list
->first
|| loc_list
->first
->next
)
13973 && current_function_decl
)
13975 endname
= cfun
->fde
->dw_fde_end
;
13976 range_across_switch
= true;
13978 /* The variable has a location between NODE->LABEL and
13979 NODE->NEXT->LABEL. */
13980 else if (node
->next
)
13981 endname
= node
->next
->label
;
13982 /* If the variable has a location at the last label
13983 it keeps its location until the end of function. */
13984 else if (!current_function_decl
)
13985 endname
= text_end_label
;
13988 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_END_LABEL
,
13989 current_function_funcdef_no
);
13990 endname
= ggc_strdup (label_id
);
13993 *listp
= new_loc_list (descr
, node
->label
, endname
, secname
);
13994 if (TREE_CODE (decl
) == PARM_DECL
13995 && node
== loc_list
->first
13996 && NOTE_P (node
->loc
)
13997 && strcmp (node
->label
, endname
) == 0)
13998 (*listp
)->force
= true;
13999 listp
= &(*listp
)->dw_loc_next
;
14001 if (range_across_switch
)
14003 if (GET_CODE (node
->loc
) == EXPR_LIST
)
14004 descr
= dw_sra_loc_expr (decl
, node
->loc
);
14007 initialized
= NOTE_VAR_LOCATION_STATUS (node
->loc
);
14008 varloc
= NOTE_VAR_LOCATION (node
->loc
);
14009 descr
= dw_loc_list_1 (decl
, varloc
, want_address
,
14012 gcc_assert (descr
);
14013 /* The variable has a location between NODE->LABEL and
14014 NODE->NEXT->LABEL. */
14016 endname
= node
->next
->label
;
14018 endname
= cfun
->fde
->dw_fde_second_end
;
14019 *listp
= new_loc_list (descr
,
14020 cfun
->fde
->dw_fde_second_begin
,
14022 listp
= &(*listp
)->dw_loc_next
;
14027 /* Try to avoid the overhead of a location list emitting a location
14028 expression instead, but only if we didn't have more than one
14029 location entry in the first place. If some entries were not
14030 representable, we don't want to pretend a single entry that was
14031 applies to the entire scope in which the variable is
14033 if (list
&& loc_list
->first
->next
)
14039 /* Return if the loc_list has only single element and thus can be represented
14040 as location description. */
14043 single_element_loc_list_p (dw_loc_list_ref list
)
14045 gcc_assert (!list
->dw_loc_next
|| list
->ll_symbol
);
14046 return !list
->ll_symbol
;
14049 /* To each location in list LIST add loc descr REF. */
14052 add_loc_descr_to_each (dw_loc_list_ref list
, dw_loc_descr_ref ref
)
14054 dw_loc_descr_ref copy
;
14055 add_loc_descr (&list
->expr
, ref
);
14056 list
= list
->dw_loc_next
;
14059 copy
= ggc_alloc
<dw_loc_descr_node
> ();
14060 memcpy (copy
, ref
, sizeof (dw_loc_descr_node
));
14061 add_loc_descr (&list
->expr
, copy
);
14062 while (copy
->dw_loc_next
)
14064 dw_loc_descr_ref new_copy
= ggc_alloc
<dw_loc_descr_node
> ();
14065 memcpy (new_copy
, copy
->dw_loc_next
, sizeof (dw_loc_descr_node
));
14066 copy
->dw_loc_next
= new_copy
;
14069 list
= list
->dw_loc_next
;
14073 /* Given two lists RET and LIST
14074 produce location list that is result of adding expression in LIST
14075 to expression in RET on each position in program.
14076 Might be destructive on both RET and LIST.
14078 TODO: We handle only simple cases of RET or LIST having at most one
14079 element. General case would inolve sorting the lists in program order
14080 and merging them that will need some additional work.
14081 Adding that will improve quality of debug info especially for SRA-ed
14085 add_loc_list (dw_loc_list_ref
*ret
, dw_loc_list_ref list
)
14094 if (!list
->dw_loc_next
)
14096 add_loc_descr_to_each (*ret
, list
->expr
);
14099 if (!(*ret
)->dw_loc_next
)
14101 add_loc_descr_to_each (list
, (*ret
)->expr
);
14105 expansion_failed (NULL_TREE
, NULL_RTX
,
14106 "Don't know how to merge two non-trivial"
14107 " location lists.\n");
14112 /* LOC is constant expression. Try a luck, look it up in constant
14113 pool and return its loc_descr of its address. */
14115 static dw_loc_descr_ref
14116 cst_pool_loc_descr (tree loc
)
14118 /* Get an RTL for this, if something has been emitted. */
14119 rtx rtl
= lookup_constant_def (loc
);
14121 if (!rtl
|| !MEM_P (rtl
))
14126 gcc_assert (GET_CODE (XEXP (rtl
, 0)) == SYMBOL_REF
);
14128 /* TODO: We might get more coverage if we was actually delaying expansion
14129 of all expressions till end of compilation when constant pools are fully
14131 if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl
, 0))))
14133 expansion_failed (loc
, NULL_RTX
,
14134 "CST value in contant pool but not marked.");
14137 return mem_loc_descriptor (XEXP (rtl
, 0), get_address_mode (rtl
),
14138 GET_MODE (rtl
), VAR_INIT_STATUS_INITIALIZED
);
14141 /* Return dw_loc_list representing address of addr_expr LOC
14142 by looking for inner INDIRECT_REF expression and turning
14143 it into simple arithmetics. */
14145 static dw_loc_list_ref
14146 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc
, bool toplev
)
14149 HOST_WIDE_INT bitsize
, bitpos
, bytepos
;
14150 enum machine_mode mode
;
14151 int unsignedp
, volatilep
= 0;
14152 dw_loc_list_ref list_ret
= NULL
, list_ret1
= NULL
;
14154 obj
= get_inner_reference (TREE_OPERAND (loc
, 0),
14155 &bitsize
, &bitpos
, &offset
, &mode
,
14156 &unsignedp
, &volatilep
, false);
14158 if (bitpos
% BITS_PER_UNIT
)
14160 expansion_failed (loc
, NULL_RTX
, "bitfield access");
14163 if (!INDIRECT_REF_P (obj
))
14165 expansion_failed (obj
,
14166 NULL_RTX
, "no indirect ref in inner refrence");
14169 if (!offset
&& !bitpos
)
14170 list_ret
= loc_list_from_tree (TREE_OPERAND (obj
, 0), toplev
? 2 : 1);
14172 && int_size_in_bytes (TREE_TYPE (loc
)) <= DWARF2_ADDR_SIZE
14173 && (dwarf_version
>= 4 || !dwarf_strict
))
14175 list_ret
= loc_list_from_tree (TREE_OPERAND (obj
, 0), 0);
14180 /* Variable offset. */
14181 list_ret1
= loc_list_from_tree (offset
, 0);
14182 if (list_ret1
== 0)
14184 add_loc_list (&list_ret
, list_ret1
);
14187 add_loc_descr_to_each (list_ret
,
14188 new_loc_descr (DW_OP_plus
, 0, 0));
14190 bytepos
= bitpos
/ BITS_PER_UNIT
;
14192 add_loc_descr_to_each (list_ret
,
14193 new_loc_descr (DW_OP_plus_uconst
,
14195 else if (bytepos
< 0)
14196 loc_list_plus_const (list_ret
, bytepos
);
14197 add_loc_descr_to_each (list_ret
,
14198 new_loc_descr (DW_OP_stack_value
, 0, 0));
14204 /* Generate Dwarf location list representing LOC.
14205 If WANT_ADDRESS is false, expression computing LOC will be computed
14206 If WANT_ADDRESS is 1, expression computing address of LOC will be returned
14207 if WANT_ADDRESS is 2, expression computing address useable in location
14208 will be returned (i.e. DW_OP_reg can be used
14209 to refer to register values). */
14211 static dw_loc_list_ref
14212 loc_list_from_tree (tree loc
, int want_address
)
14214 dw_loc_descr_ref ret
= NULL
, ret1
= NULL
;
14215 dw_loc_list_ref list_ret
= NULL
, list_ret1
= NULL
;
14216 int have_address
= 0;
14217 enum dwarf_location_atom op
;
14219 /* ??? Most of the time we do not take proper care for sign/zero
14220 extending the values properly. Hopefully this won't be a real
14223 switch (TREE_CODE (loc
))
14226 expansion_failed (loc
, NULL_RTX
, "ERROR_MARK");
14229 case PLACEHOLDER_EXPR
:
14230 /* This case involves extracting fields from an object to determine the
14231 position of other fields. We don't try to encode this here. The
14232 only user of this is Ada, which encodes the needed information using
14233 the names of types. */
14234 expansion_failed (loc
, NULL_RTX
, "PLACEHOLDER_EXPR");
14238 expansion_failed (loc
, NULL_RTX
, "CALL_EXPR");
14239 /* There are no opcodes for these operations. */
14242 case PREINCREMENT_EXPR
:
14243 case PREDECREMENT_EXPR
:
14244 case POSTINCREMENT_EXPR
:
14245 case POSTDECREMENT_EXPR
:
14246 expansion_failed (loc
, NULL_RTX
, "PRE/POST INDCREMENT/DECREMENT");
14247 /* There are no opcodes for these operations. */
14251 /* If we already want an address, see if there is INDIRECT_REF inside
14252 e.g. for &this->field. */
14255 list_ret
= loc_list_for_address_of_addr_expr_of_indirect_ref
14256 (loc
, want_address
== 2);
14259 else if (decl_address_ip_invariant_p (TREE_OPERAND (loc
, 0))
14260 && (ret
= cst_pool_loc_descr (loc
)))
14263 /* Otherwise, process the argument and look for the address. */
14264 if (!list_ret
&& !ret
)
14265 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 1);
14269 expansion_failed (loc
, NULL_RTX
, "need address of ADDR_EXPR");
14275 if (DECL_THREAD_LOCAL_P (loc
))
14278 enum dwarf_location_atom tls_op
;
14279 enum dtprel_bool dtprel
= dtprel_false
;
14281 if (targetm
.have_tls
)
14283 /* If this is not defined, we have no way to emit the
14285 if (!targetm
.asm_out
.output_dwarf_dtprel
)
14288 /* The way DW_OP_GNU_push_tls_address is specified, we
14289 can only look up addresses of objects in the current
14290 module. We used DW_OP_addr as first op, but that's
14291 wrong, because DW_OP_addr is relocated by the debug
14292 info consumer, while DW_OP_GNU_push_tls_address
14293 operand shouldn't be. */
14294 if (DECL_EXTERNAL (loc
) && !targetm
.binds_local_p (loc
))
14296 dtprel
= dtprel_true
;
14297 tls_op
= DW_OP_GNU_push_tls_address
;
14301 if (!targetm
.emutls
.debug_form_tls_address
14302 || !(dwarf_version
>= 3 || !dwarf_strict
))
14304 /* We stuffed the control variable into the DECL_VALUE_EXPR
14305 to signal (via DECL_HAS_VALUE_EXPR_P) that the decl should
14306 no longer appear in gimple code. We used the control
14307 variable in specific so that we could pick it up here. */
14308 loc
= DECL_VALUE_EXPR (loc
);
14309 tls_op
= DW_OP_form_tls_address
;
14312 rtl
= rtl_for_decl_location (loc
);
14313 if (rtl
== NULL_RTX
)
14318 rtl
= XEXP (rtl
, 0);
14319 if (! CONSTANT_P (rtl
))
14322 ret
= new_addr_loc_descr (rtl
, dtprel
);
14323 ret1
= new_loc_descr (tls_op
, 0, 0);
14324 add_loc_descr (&ret
, ret1
);
14333 if (DECL_HAS_VALUE_EXPR_P (loc
))
14334 return loc_list_from_tree (DECL_VALUE_EXPR (loc
),
14338 case FUNCTION_DECL
:
14341 var_loc_list
*loc_list
= lookup_decl_loc (loc
);
14343 if (loc_list
&& loc_list
->first
)
14345 list_ret
= dw_loc_list (loc_list
, loc
, want_address
);
14346 have_address
= want_address
!= 0;
14349 rtl
= rtl_for_decl_location (loc
);
14350 if (rtl
== NULL_RTX
)
14352 expansion_failed (loc
, NULL_RTX
, "DECL has no RTL");
14355 else if (CONST_INT_P (rtl
))
14357 HOST_WIDE_INT val
= INTVAL (rtl
);
14358 if (TYPE_UNSIGNED (TREE_TYPE (loc
)))
14359 val
&= GET_MODE_MASK (DECL_MODE (loc
));
14360 ret
= int_loc_descriptor (val
);
14362 else if (GET_CODE (rtl
) == CONST_STRING
)
14364 expansion_failed (loc
, NULL_RTX
, "CONST_STRING");
14367 else if (CONSTANT_P (rtl
) && const_ok_for_output (rtl
))
14368 ret
= new_addr_loc_descr (rtl
, dtprel_false
);
14371 enum machine_mode mode
, mem_mode
;
14373 /* Certain constructs can only be represented at top-level. */
14374 if (want_address
== 2)
14376 ret
= loc_descriptor (rtl
, VOIDmode
,
14377 VAR_INIT_STATUS_INITIALIZED
);
14382 mode
= GET_MODE (rtl
);
14383 mem_mode
= VOIDmode
;
14387 mode
= get_address_mode (rtl
);
14388 rtl
= XEXP (rtl
, 0);
14391 ret
= mem_loc_descriptor (rtl
, mode
, mem_mode
,
14392 VAR_INIT_STATUS_INITIALIZED
);
14395 expansion_failed (loc
, rtl
,
14396 "failed to produce loc descriptor for rtl");
14403 if (!integer_zerop (TREE_OPERAND (loc
, 1)))
14407 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14411 case COMPOUND_EXPR
:
14412 return loc_list_from_tree (TREE_OPERAND (loc
, 1), want_address
);
14415 case VIEW_CONVERT_EXPR
:
14418 return loc_list_from_tree (TREE_OPERAND (loc
, 0), want_address
);
14420 case COMPONENT_REF
:
14421 case BIT_FIELD_REF
:
14423 case ARRAY_RANGE_REF
:
14424 case REALPART_EXPR
:
14425 case IMAGPART_EXPR
:
14428 HOST_WIDE_INT bitsize
, bitpos
, bytepos
;
14429 enum machine_mode mode
;
14430 int unsignedp
, volatilep
= 0;
14432 obj
= get_inner_reference (loc
, &bitsize
, &bitpos
, &offset
, &mode
,
14433 &unsignedp
, &volatilep
, false);
14435 gcc_assert (obj
!= loc
);
14437 list_ret
= loc_list_from_tree (obj
,
14439 && !bitpos
&& !offset
? 2 : 1);
14440 /* TODO: We can extract value of the small expression via shifting even
14441 for nonzero bitpos. */
14444 if (bitpos
% BITS_PER_UNIT
!= 0 || bitsize
% BITS_PER_UNIT
!= 0)
14446 expansion_failed (loc
, NULL_RTX
,
14447 "bitfield access");
14451 if (offset
!= NULL_TREE
)
14453 /* Variable offset. */
14454 list_ret1
= loc_list_from_tree (offset
, 0);
14455 if (list_ret1
== 0)
14457 add_loc_list (&list_ret
, list_ret1
);
14460 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_plus
, 0, 0));
14463 bytepos
= bitpos
/ BITS_PER_UNIT
;
14465 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_plus_uconst
, bytepos
, 0));
14466 else if (bytepos
< 0)
14467 loc_list_plus_const (list_ret
, bytepos
);
14474 if ((want_address
|| !tree_fits_shwi_p (loc
))
14475 && (ret
= cst_pool_loc_descr (loc
)))
14477 else if (want_address
== 2
14478 && tree_fits_shwi_p (loc
)
14479 && (ret
= address_of_int_loc_descriptor
14480 (int_size_in_bytes (TREE_TYPE (loc
)),
14481 tree_to_shwi (loc
))))
14483 else if (tree_fits_shwi_p (loc
))
14484 ret
= int_loc_descriptor (tree_to_shwi (loc
));
14487 expansion_failed (loc
, NULL_RTX
,
14488 "Integer operand is not host integer");
14497 if ((ret
= cst_pool_loc_descr (loc
)))
14500 /* We can construct small constants here using int_loc_descriptor. */
14501 expansion_failed (loc
, NULL_RTX
,
14502 "constructor or constant not in constant pool");
14505 case TRUTH_AND_EXPR
:
14506 case TRUTH_ANDIF_EXPR
:
14511 case TRUTH_XOR_EXPR
:
14516 case TRUTH_OR_EXPR
:
14517 case TRUTH_ORIF_EXPR
:
14522 case FLOOR_DIV_EXPR
:
14523 case CEIL_DIV_EXPR
:
14524 case ROUND_DIV_EXPR
:
14525 case TRUNC_DIV_EXPR
:
14526 if (TYPE_UNSIGNED (TREE_TYPE (loc
)))
14535 case FLOOR_MOD_EXPR
:
14536 case CEIL_MOD_EXPR
:
14537 case ROUND_MOD_EXPR
:
14538 case TRUNC_MOD_EXPR
:
14539 if (TYPE_UNSIGNED (TREE_TYPE (loc
)))
14544 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14545 list_ret1
= loc_list_from_tree (TREE_OPERAND (loc
, 1), 0);
14546 if (list_ret
== 0 || list_ret1
== 0)
14549 add_loc_list (&list_ret
, list_ret1
);
14552 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_over
, 0, 0));
14553 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_over
, 0, 0));
14554 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_div
, 0, 0));
14555 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_mul
, 0, 0));
14556 add_loc_descr_to_each (list_ret
, new_loc_descr (DW_OP_minus
, 0, 0));
14568 op
= (TYPE_UNSIGNED (TREE_TYPE (loc
)) ? DW_OP_shr
: DW_OP_shra
);
14571 case POINTER_PLUS_EXPR
:
14573 if (tree_fits_shwi_p (TREE_OPERAND (loc
, 1)))
14575 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14579 loc_list_plus_const (list_ret
, tree_to_shwi (TREE_OPERAND (loc
, 1)));
14587 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
14594 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
14601 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
14608 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
14623 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14624 list_ret1
= loc_list_from_tree (TREE_OPERAND (loc
, 1), 0);
14625 if (list_ret
== 0 || list_ret1
== 0)
14628 add_loc_list (&list_ret
, list_ret1
);
14631 add_loc_descr_to_each (list_ret
, new_loc_descr (op
, 0, 0));
14634 case TRUTH_NOT_EXPR
:
14648 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14652 add_loc_descr_to_each (list_ret
, new_loc_descr (op
, 0, 0));
14658 const enum tree_code code
=
14659 TREE_CODE (loc
) == MIN_EXPR
? GT_EXPR
: LT_EXPR
;
14661 loc
= build3 (COND_EXPR
, TREE_TYPE (loc
),
14662 build2 (code
, integer_type_node
,
14663 TREE_OPERAND (loc
, 0), TREE_OPERAND (loc
, 1)),
14664 TREE_OPERAND (loc
, 1), TREE_OPERAND (loc
, 0));
14667 /* ... fall through ... */
14671 dw_loc_descr_ref lhs
14672 = loc_descriptor_from_tree (TREE_OPERAND (loc
, 1), 0);
14673 dw_loc_list_ref rhs
14674 = loc_list_from_tree (TREE_OPERAND (loc
, 2), 0);
14675 dw_loc_descr_ref bra_node
, jump_node
, tmp
;
14677 list_ret
= loc_list_from_tree (TREE_OPERAND (loc
, 0), 0);
14678 if (list_ret
== 0 || lhs
== 0 || rhs
== 0)
14681 bra_node
= new_loc_descr (DW_OP_bra
, 0, 0);
14682 add_loc_descr_to_each (list_ret
, bra_node
);
14684 add_loc_list (&list_ret
, rhs
);
14685 jump_node
= new_loc_descr (DW_OP_skip
, 0, 0);
14686 add_loc_descr_to_each (list_ret
, jump_node
);
14688 add_loc_descr_to_each (list_ret
, lhs
);
14689 bra_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
14690 bra_node
->dw_loc_oprnd1
.v
.val_loc
= lhs
;
14692 /* ??? Need a node to point the skip at. Use a nop. */
14693 tmp
= new_loc_descr (DW_OP_nop
, 0, 0);
14694 add_loc_descr_to_each (list_ret
, tmp
);
14695 jump_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
14696 jump_node
->dw_loc_oprnd1
.v
.val_loc
= tmp
;
14700 case FIX_TRUNC_EXPR
:
14704 /* Leave front-end specific codes as simply unknown. This comes
14705 up, for instance, with the C STMT_EXPR. */
14706 if ((unsigned int) TREE_CODE (loc
)
14707 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE
)
14709 expansion_failed (loc
, NULL_RTX
,
14710 "language specific tree node");
14714 #ifdef ENABLE_CHECKING
14715 /* Otherwise this is a generic code; we should just lists all of
14716 these explicitly. We forgot one. */
14717 gcc_unreachable ();
14719 /* In a release build, we want to degrade gracefully: better to
14720 generate incomplete debugging information than to crash. */
14725 if (!ret
&& !list_ret
)
14728 if (want_address
== 2 && !have_address
14729 && (dwarf_version
>= 4 || !dwarf_strict
))
14731 if (int_size_in_bytes (TREE_TYPE (loc
)) > DWARF2_ADDR_SIZE
)
14733 expansion_failed (loc
, NULL_RTX
,
14734 "DWARF address size mismatch");
14738 add_loc_descr (&ret
, new_loc_descr (DW_OP_stack_value
, 0, 0));
14740 add_loc_descr_to_each (list_ret
,
14741 new_loc_descr (DW_OP_stack_value
, 0, 0));
14744 /* Show if we can't fill the request for an address. */
14745 if (want_address
&& !have_address
)
14747 expansion_failed (loc
, NULL_RTX
,
14748 "Want address and only have value");
14752 gcc_assert (!ret
|| !list_ret
);
14754 /* If we've got an address and don't want one, dereference. */
14755 if (!want_address
&& have_address
)
14757 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (loc
));
14759 if (size
> DWARF2_ADDR_SIZE
|| size
== -1)
14761 expansion_failed (loc
, NULL_RTX
,
14762 "DWARF address size mismatch");
14765 else if (size
== DWARF2_ADDR_SIZE
)
14768 op
= DW_OP_deref_size
;
14771 add_loc_descr (&ret
, new_loc_descr (op
, size
, 0));
14773 add_loc_descr_to_each (list_ret
, new_loc_descr (op
, size
, 0));
14776 list_ret
= new_loc_list (ret
, NULL
, NULL
, NULL
);
14781 /* Same as above but return only single location expression. */
14782 static dw_loc_descr_ref
14783 loc_descriptor_from_tree (tree loc
, int want_address
)
14785 dw_loc_list_ref ret
= loc_list_from_tree (loc
, want_address
);
14788 if (ret
->dw_loc_next
)
14790 expansion_failed (loc
, NULL_RTX
,
14791 "Location list where only loc descriptor needed");
14797 /* Given a value, round it up to the lowest multiple of `boundary'
14798 which is not less than the value itself. */
14800 static inline HOST_WIDE_INT
14801 ceiling (HOST_WIDE_INT value
, unsigned int boundary
)
14803 return (((value
+ boundary
- 1) / boundary
) * boundary
);
14806 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
14807 pointer to the declared type for the relevant field variable, or return
14808 `integer_type_node' if the given node turns out to be an
14809 ERROR_MARK node. */
14812 field_type (const_tree decl
)
14816 if (TREE_CODE (decl
) == ERROR_MARK
)
14817 return integer_type_node
;
14819 type
= DECL_BIT_FIELD_TYPE (decl
);
14820 if (type
== NULL_TREE
)
14821 type
= TREE_TYPE (decl
);
14826 /* Given a pointer to a tree node, return the alignment in bits for
14827 it, or else return BITS_PER_WORD if the node actually turns out to
14828 be an ERROR_MARK node. */
14830 static inline unsigned
14831 simple_type_align_in_bits (const_tree type
)
14833 return (TREE_CODE (type
) != ERROR_MARK
) ? TYPE_ALIGN (type
) : BITS_PER_WORD
;
14836 static inline unsigned
14837 simple_decl_align_in_bits (const_tree decl
)
14839 return (TREE_CODE (decl
) != ERROR_MARK
) ? DECL_ALIGN (decl
) : BITS_PER_WORD
;
14842 /* Return the result of rounding T up to ALIGN. */
14844 static inline offset_int
14845 round_up_to_align (const offset_int
&t
, unsigned int align
)
14847 return wi::udiv_trunc (t
+ align
- 1, align
) * align
;
14850 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
14851 lowest addressed byte of the "containing object" for the given FIELD_DECL,
14852 or return 0 if we are unable to determine what that offset is, either
14853 because the argument turns out to be a pointer to an ERROR_MARK node, or
14854 because the offset is actually variable. (We can't handle the latter case
14857 static HOST_WIDE_INT
14858 field_byte_offset (const_tree decl
)
14860 offset_int object_offset_in_bits
;
14861 offset_int object_offset_in_bytes
;
14862 offset_int bitpos_int
;
14864 if (TREE_CODE (decl
) == ERROR_MARK
)
14867 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
);
14869 /* We cannot yet cope with fields whose positions are variable, so
14870 for now, when we see such things, we simply return 0. Someday, we may
14871 be able to handle such cases, but it will be damn difficult. */
14872 if (TREE_CODE (bit_position (decl
)) != INTEGER_CST
)
14875 bitpos_int
= wi::to_offset (bit_position (decl
));
14877 #ifdef PCC_BITFIELD_TYPE_MATTERS
14878 if (PCC_BITFIELD_TYPE_MATTERS
)
14881 tree field_size_tree
;
14882 offset_int deepest_bitpos
;
14883 offset_int field_size_in_bits
;
14884 unsigned int type_align_in_bits
;
14885 unsigned int decl_align_in_bits
;
14886 offset_int type_size_in_bits
;
14888 type
= field_type (decl
);
14889 type_size_in_bits
= offset_int_type_size_in_bits (type
);
14890 type_align_in_bits
= simple_type_align_in_bits (type
);
14892 field_size_tree
= DECL_SIZE (decl
);
14894 /* The size could be unspecified if there was an error, or for
14895 a flexible array member. */
14896 if (!field_size_tree
)
14897 field_size_tree
= bitsize_zero_node
;
14899 /* If the size of the field is not constant, use the type size. */
14900 if (TREE_CODE (field_size_tree
) == INTEGER_CST
)
14901 field_size_in_bits
= wi::to_offset (field_size_tree
);
14903 field_size_in_bits
= type_size_in_bits
;
14905 decl_align_in_bits
= simple_decl_align_in_bits (decl
);
14907 /* The GCC front-end doesn't make any attempt to keep track of the
14908 starting bit offset (relative to the start of the containing
14909 structure type) of the hypothetical "containing object" for a
14910 bit-field. Thus, when computing the byte offset value for the
14911 start of the "containing object" of a bit-field, we must deduce
14912 this information on our own. This can be rather tricky to do in
14913 some cases. For example, handling the following structure type
14914 definition when compiling for an i386/i486 target (which only
14915 aligns long long's to 32-bit boundaries) can be very tricky:
14917 struct S { int field1; long long field2:31; };
14919 Fortunately, there is a simple rule-of-thumb which can be used
14920 in such cases. When compiling for an i386/i486, GCC will
14921 allocate 8 bytes for the structure shown above. It decides to
14922 do this based upon one simple rule for bit-field allocation.
14923 GCC allocates each "containing object" for each bit-field at
14924 the first (i.e. lowest addressed) legitimate alignment boundary
14925 (based upon the required minimum alignment for the declared
14926 type of the field) which it can possibly use, subject to the
14927 condition that there is still enough available space remaining
14928 in the containing object (when allocated at the selected point)
14929 to fully accommodate all of the bits of the bit-field itself.
14931 This simple rule makes it obvious why GCC allocates 8 bytes for
14932 each object of the structure type shown above. When looking
14933 for a place to allocate the "containing object" for `field2',
14934 the compiler simply tries to allocate a 64-bit "containing
14935 object" at each successive 32-bit boundary (starting at zero)
14936 until it finds a place to allocate that 64- bit field such that
14937 at least 31 contiguous (and previously unallocated) bits remain
14938 within that selected 64 bit field. (As it turns out, for the
14939 example above, the compiler finds it is OK to allocate the
14940 "containing object" 64-bit field at bit-offset zero within the
14943 Here we attempt to work backwards from the limited set of facts
14944 we're given, and we try to deduce from those facts, where GCC
14945 must have believed that the containing object started (within
14946 the structure type). The value we deduce is then used (by the
14947 callers of this routine) to generate DW_AT_location and
14948 DW_AT_bit_offset attributes for fields (both bit-fields and, in
14949 the case of DW_AT_location, regular fields as well). */
14951 /* Figure out the bit-distance from the start of the structure to
14952 the "deepest" bit of the bit-field. */
14953 deepest_bitpos
= bitpos_int
+ field_size_in_bits
;
14955 /* This is the tricky part. Use some fancy footwork to deduce
14956 where the lowest addressed bit of the containing object must
14958 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
14960 /* Round up to type_align by default. This works best for
14962 object_offset_in_bits
14963 = round_up_to_align (object_offset_in_bits
, type_align_in_bits
);
14965 if (wi::gtu_p (object_offset_in_bits
, bitpos_int
))
14967 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
14969 /* Round up to decl_align instead. */
14970 object_offset_in_bits
14971 = round_up_to_align (object_offset_in_bits
, decl_align_in_bits
);
14975 #endif /* PCC_BITFIELD_TYPE_MATTERS */
14976 object_offset_in_bits
= bitpos_int
;
14978 object_offset_in_bytes
14979 = wi::lrshift (object_offset_in_bits
, LOG2_BITS_PER_UNIT
);
14980 return object_offset_in_bytes
.to_shwi ();
14983 /* The following routines define various Dwarf attributes and any data
14984 associated with them. */
14986 /* Add a location description attribute value to a DIE.
14988 This emits location attributes suitable for whole variables and
14989 whole parameters. Note that the location attributes for struct fields are
14990 generated by the routine `data_member_location_attribute' below. */
14993 add_AT_location_description (dw_die_ref die
, enum dwarf_attribute attr_kind
,
14994 dw_loc_list_ref descr
)
14998 if (single_element_loc_list_p (descr
))
14999 add_AT_loc (die
, attr_kind
, descr
->expr
);
15001 add_AT_loc_list (die
, attr_kind
, descr
);
15004 /* Add DW_AT_accessibility attribute to DIE if needed. */
15007 add_accessibility_attribute (dw_die_ref die
, tree decl
)
15009 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
15010 children, otherwise the default is DW_ACCESS_public. In DWARF2
15011 the default has always been DW_ACCESS_public. */
15012 if (TREE_PROTECTED (decl
))
15013 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_protected
);
15014 else if (TREE_PRIVATE (decl
))
15016 if (dwarf_version
== 2
15017 || die
->die_parent
== NULL
15018 || die
->die_parent
->die_tag
!= DW_TAG_class_type
)
15019 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_private
);
15021 else if (dwarf_version
> 2
15023 && die
->die_parent
->die_tag
== DW_TAG_class_type
)
15024 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_public
);
15027 /* Attach the specialized form of location attribute used for data members of
15028 struct and union types. In the special case of a FIELD_DECL node which
15029 represents a bit-field, the "offset" part of this special location
15030 descriptor must indicate the distance in bytes from the lowest-addressed
15031 byte of the containing struct or union type to the lowest-addressed byte of
15032 the "containing object" for the bit-field. (See the `field_byte_offset'
15035 For any given bit-field, the "containing object" is a hypothetical object
15036 (of some integral or enum type) within which the given bit-field lives. The
15037 type of this hypothetical "containing object" is always the same as the
15038 declared type of the individual bit-field itself (for GCC anyway... the
15039 DWARF spec doesn't actually mandate this). Note that it is the size (in
15040 bytes) of the hypothetical "containing object" which will be given in the
15041 DW_AT_byte_size attribute for this bit-field. (See the
15042 `byte_size_attribute' function below.) It is also used when calculating the
15043 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
15044 function below.) */
15047 add_data_member_location_attribute (dw_die_ref die
, tree decl
)
15049 HOST_WIDE_INT offset
;
15050 dw_loc_descr_ref loc_descr
= 0;
15052 if (TREE_CODE (decl
) == TREE_BINFO
)
15054 /* We're working on the TAG_inheritance for a base class. */
15055 if (BINFO_VIRTUAL_P (decl
) && is_cxx ())
15057 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
15058 aren't at a fixed offset from all (sub)objects of the same
15059 type. We need to extract the appropriate offset from our
15060 vtable. The following dwarf expression means
15062 BaseAddr = ObAddr + *((*ObAddr) - Offset)
15064 This is specific to the V3 ABI, of course. */
15066 dw_loc_descr_ref tmp
;
15068 /* Make a copy of the object address. */
15069 tmp
= new_loc_descr (DW_OP_dup
, 0, 0);
15070 add_loc_descr (&loc_descr
, tmp
);
15072 /* Extract the vtable address. */
15073 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
15074 add_loc_descr (&loc_descr
, tmp
);
15076 /* Calculate the address of the offset. */
15077 offset
= tree_to_shwi (BINFO_VPTR_FIELD (decl
));
15078 gcc_assert (offset
< 0);
15080 tmp
= int_loc_descriptor (-offset
);
15081 add_loc_descr (&loc_descr
, tmp
);
15082 tmp
= new_loc_descr (DW_OP_minus
, 0, 0);
15083 add_loc_descr (&loc_descr
, tmp
);
15085 /* Extract the offset. */
15086 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
15087 add_loc_descr (&loc_descr
, tmp
);
15089 /* Add it to the object address. */
15090 tmp
= new_loc_descr (DW_OP_plus
, 0, 0);
15091 add_loc_descr (&loc_descr
, tmp
);
15094 offset
= tree_to_shwi (BINFO_OFFSET (decl
));
15097 offset
= field_byte_offset (decl
);
15101 if (dwarf_version
> 2)
15103 /* Don't need to output a location expression, just the constant. */
15105 add_AT_int (die
, DW_AT_data_member_location
, offset
);
15107 add_AT_unsigned (die
, DW_AT_data_member_location
, offset
);
15112 enum dwarf_location_atom op
;
15114 /* The DWARF2 standard says that we should assume that the structure
15115 address is already on the stack, so we can specify a structure
15116 field address by using DW_OP_plus_uconst. */
15117 op
= DW_OP_plus_uconst
;
15118 loc_descr
= new_loc_descr (op
, offset
, 0);
15122 add_AT_loc (die
, DW_AT_data_member_location
, loc_descr
);
15125 /* Writes integer values to dw_vec_const array. */
15128 insert_int (HOST_WIDE_INT val
, unsigned int size
, unsigned char *dest
)
15132 *dest
++ = val
& 0xff;
15138 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
15140 static HOST_WIDE_INT
15141 extract_int (const unsigned char *src
, unsigned int size
)
15143 HOST_WIDE_INT val
= 0;
15149 val
|= *--src
& 0xff;
15155 /* Writes wide_int values to dw_vec_const array. */
15158 insert_wide_int (const wide_int
&val
, unsigned char *dest
, int elt_size
)
15162 if (elt_size
<= HOST_BITS_PER_WIDE_INT
/BITS_PER_UNIT
)
15164 insert_int ((HOST_WIDE_INT
) val
.elt (0), elt_size
, dest
);
15168 /* We'd have to extend this code to support odd sizes. */
15169 gcc_assert (elt_size
% (HOST_BITS_PER_WIDE_INT
/ BITS_PER_UNIT
) == 0);
15171 int n
= elt_size
/ (HOST_BITS_PER_WIDE_INT
/ BITS_PER_UNIT
);
15173 if (WORDS_BIG_ENDIAN
)
15174 for (i
= n
- 1; i
>= 0; i
--)
15176 insert_int ((HOST_WIDE_INT
) val
.elt (i
), sizeof (HOST_WIDE_INT
), dest
);
15177 dest
+= sizeof (HOST_WIDE_INT
);
15180 for (i
= 0; i
< n
; i
++)
15182 insert_int ((HOST_WIDE_INT
) val
.elt (i
), sizeof (HOST_WIDE_INT
), dest
);
15183 dest
+= sizeof (HOST_WIDE_INT
);
15187 /* Writes floating point values to dw_vec_const array. */
15190 insert_float (const_rtx rtl
, unsigned char *array
)
15192 REAL_VALUE_TYPE rv
;
15196 REAL_VALUE_FROM_CONST_DOUBLE (rv
, rtl
);
15197 real_to_target (val
, &rv
, GET_MODE (rtl
));
15199 /* real_to_target puts 32-bit pieces in each long. Pack them. */
15200 for (i
= 0; i
< GET_MODE_SIZE (GET_MODE (rtl
)) / 4; i
++)
15202 insert_int (val
[i
], 4, array
);
15207 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
15208 does not have a "location" either in memory or in a register. These
15209 things can arise in GNU C when a constant is passed as an actual parameter
15210 to an inlined function. They can also arise in C++ where declared
15211 constants do not necessarily get memory "homes". */
15214 add_const_value_attribute (dw_die_ref die
, rtx rtl
)
15216 switch (GET_CODE (rtl
))
15220 HOST_WIDE_INT val
= INTVAL (rtl
);
15223 add_AT_int (die
, DW_AT_const_value
, val
);
15225 add_AT_unsigned (die
, DW_AT_const_value
, (unsigned HOST_WIDE_INT
) val
);
15229 case CONST_WIDE_INT
:
15230 add_AT_wide (die
, DW_AT_const_value
,
15231 std::make_pair (rtl
, GET_MODE (rtl
)));
15235 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
15236 floating-point constant. A CONST_DOUBLE is used whenever the
15237 constant requires more than one word in order to be adequately
15240 enum machine_mode mode
= GET_MODE (rtl
);
15242 if (TARGET_SUPPORTS_WIDE_INT
== 0 && !SCALAR_FLOAT_MODE_P (mode
))
15243 add_AT_double (die
, DW_AT_const_value
,
15244 CONST_DOUBLE_HIGH (rtl
), CONST_DOUBLE_LOW (rtl
));
15247 unsigned int length
= GET_MODE_SIZE (mode
);
15248 unsigned char *array
= ggc_vec_alloc
<unsigned char> (length
);
15250 insert_float (rtl
, array
);
15251 add_AT_vec (die
, DW_AT_const_value
, length
/ 4, 4, array
);
15258 enum machine_mode mode
= GET_MODE (rtl
);
15259 unsigned int elt_size
= GET_MODE_UNIT_SIZE (mode
);
15260 unsigned int length
= CONST_VECTOR_NUNITS (rtl
);
15261 unsigned char *array
15262 = ggc_vec_alloc
<unsigned char> (length
* elt_size
);
15265 enum machine_mode imode
= GET_MODE_INNER (mode
);
15267 switch (GET_MODE_CLASS (mode
))
15269 case MODE_VECTOR_INT
:
15270 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
15272 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
15273 insert_wide_int (std::make_pair (elt
, imode
), p
, elt_size
);
15277 case MODE_VECTOR_FLOAT
:
15278 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
15280 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
15281 insert_float (elt
, p
);
15286 gcc_unreachable ();
15289 add_AT_vec (die
, DW_AT_const_value
, length
, elt_size
, array
);
15294 if (dwarf_version
>= 4 || !dwarf_strict
)
15296 dw_loc_descr_ref loc_result
;
15297 resolve_one_addr (&rtl
, NULL
);
15299 loc_result
= new_addr_loc_descr (rtl
, dtprel_false
);
15300 add_loc_descr (&loc_result
, new_loc_descr (DW_OP_stack_value
, 0, 0));
15301 add_AT_loc (die
, DW_AT_location
, loc_result
);
15302 vec_safe_push (used_rtx_array
, rtl
);
15308 if (CONSTANT_P (XEXP (rtl
, 0)))
15309 return add_const_value_attribute (die
, XEXP (rtl
, 0));
15312 if (!const_ok_for_output (rtl
))
15315 if (dwarf_version
>= 4 || !dwarf_strict
)
15320 /* In cases where an inlined instance of an inline function is passed
15321 the address of an `auto' variable (which is local to the caller) we
15322 can get a situation where the DECL_RTL of the artificial local
15323 variable (for the inlining) which acts as a stand-in for the
15324 corresponding formal parameter (of the inline function) will look
15325 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
15326 exactly a compile-time constant expression, but it isn't the address
15327 of the (artificial) local variable either. Rather, it represents the
15328 *value* which the artificial local variable always has during its
15329 lifetime. We currently have no way to represent such quasi-constant
15330 values in Dwarf, so for now we just punt and generate nothing. */
15338 if (GET_CODE (XEXP (rtl
, 0)) == CONST_STRING
15339 && MEM_READONLY_P (rtl
)
15340 && GET_MODE (rtl
) == BLKmode
)
15342 add_AT_string (die
, DW_AT_const_value
, XSTR (XEXP (rtl
, 0), 0));
15348 /* No other kinds of rtx should be possible here. */
15349 gcc_unreachable ();
15354 /* Determine whether the evaluation of EXPR references any variables
15355 or functions which aren't otherwise used (and therefore may not be
15358 reference_to_unused (tree
* tp
, int * walk_subtrees
,
15359 void * data ATTRIBUTE_UNUSED
)
15361 if (! EXPR_P (*tp
) && ! CONSTANT_CLASS_P (*tp
))
15362 *walk_subtrees
= 0;
15364 if (DECL_P (*tp
) && ! TREE_PUBLIC (*tp
) && ! TREE_USED (*tp
)
15365 && ! TREE_ASM_WRITTEN (*tp
))
15367 /* ??? The C++ FE emits debug information for using decls, so
15368 putting gcc_unreachable here falls over. See PR31899. For now
15369 be conservative. */
15370 else if (!cgraph_global_info_ready
15371 && (TREE_CODE (*tp
) == VAR_DECL
|| TREE_CODE (*tp
) == FUNCTION_DECL
))
15373 else if (TREE_CODE (*tp
) == VAR_DECL
)
15375 varpool_node
*node
= varpool_get_node (*tp
);
15376 if (!node
|| !node
->definition
)
15379 else if (TREE_CODE (*tp
) == FUNCTION_DECL
15380 && (!DECL_EXTERNAL (*tp
) || DECL_DECLARED_INLINE_P (*tp
)))
15382 /* The call graph machinery must have finished analyzing,
15383 optimizing and gimplifying the CU by now.
15384 So if *TP has no call graph node associated
15385 to it, it means *TP will not be emitted. */
15386 if (!cgraph_get_node (*tp
))
15389 else if (TREE_CODE (*tp
) == STRING_CST
&& !TREE_ASM_WRITTEN (*tp
))
15395 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
15396 for use in a later add_const_value_attribute call. */
15399 rtl_for_decl_init (tree init
, tree type
)
15401 rtx rtl
= NULL_RTX
;
15405 /* If a variable is initialized with a string constant without embedded
15406 zeros, build CONST_STRING. */
15407 if (TREE_CODE (init
) == STRING_CST
&& TREE_CODE (type
) == ARRAY_TYPE
)
15409 tree enttype
= TREE_TYPE (type
);
15410 tree domain
= TYPE_DOMAIN (type
);
15411 enum machine_mode mode
= TYPE_MODE (enttype
);
15413 if (GET_MODE_CLASS (mode
) == MODE_INT
&& GET_MODE_SIZE (mode
) == 1
15415 && integer_zerop (TYPE_MIN_VALUE (domain
))
15416 && compare_tree_int (TYPE_MAX_VALUE (domain
),
15417 TREE_STRING_LENGTH (init
) - 1) == 0
15418 && ((size_t) TREE_STRING_LENGTH (init
)
15419 == strlen (TREE_STRING_POINTER (init
)) + 1))
15421 rtl
= gen_rtx_CONST_STRING (VOIDmode
,
15422 ggc_strdup (TREE_STRING_POINTER (init
)));
15423 rtl
= gen_rtx_MEM (BLKmode
, rtl
);
15424 MEM_READONLY_P (rtl
) = 1;
15427 /* Other aggregates, and complex values, could be represented using
15429 else if (AGGREGATE_TYPE_P (type
)
15430 || (TREE_CODE (init
) == VIEW_CONVERT_EXPR
15431 && AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (init
, 0))))
15432 || TREE_CODE (type
) == COMPLEX_TYPE
)
15434 /* Vectors only work if their mode is supported by the target.
15435 FIXME: generic vectors ought to work too. */
15436 else if (TREE_CODE (type
) == VECTOR_TYPE
15437 && !VECTOR_MODE_P (TYPE_MODE (type
)))
15439 /* If the initializer is something that we know will expand into an
15440 immediate RTL constant, expand it now. We must be careful not to
15441 reference variables which won't be output. */
15442 else if (initializer_constant_valid_p (init
, type
)
15443 && ! walk_tree (&init
, reference_to_unused
, NULL
, NULL
))
15445 /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
15447 if (TREE_CODE (type
) == VECTOR_TYPE
)
15448 switch (TREE_CODE (init
))
15453 if (TREE_CONSTANT (init
))
15455 vec
<constructor_elt
, va_gc
> *elts
= CONSTRUCTOR_ELTS (init
);
15456 bool constant_p
= true;
15458 unsigned HOST_WIDE_INT ix
;
15460 /* Even when ctor is constant, it might contain non-*_CST
15461 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
15462 belong into VECTOR_CST nodes. */
15463 FOR_EACH_CONSTRUCTOR_VALUE (elts
, ix
, value
)
15464 if (!CONSTANT_CLASS_P (value
))
15466 constant_p
= false;
15472 init
= build_vector_from_ctor (type
, elts
);
15482 rtl
= expand_expr (init
, NULL_RTX
, VOIDmode
, EXPAND_INITIALIZER
);
15484 /* If expand_expr returns a MEM, it wasn't immediate. */
15485 gcc_assert (!rtl
|| !MEM_P (rtl
));
15491 /* Generate RTL for the variable DECL to represent its location. */
15494 rtl_for_decl_location (tree decl
)
15498 /* Here we have to decide where we are going to say the parameter "lives"
15499 (as far as the debugger is concerned). We only have a couple of
15500 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
15502 DECL_RTL normally indicates where the parameter lives during most of the
15503 activation of the function. If optimization is enabled however, this
15504 could be either NULL or else a pseudo-reg. Both of those cases indicate
15505 that the parameter doesn't really live anywhere (as far as the code
15506 generation parts of GCC are concerned) during most of the function's
15507 activation. That will happen (for example) if the parameter is never
15508 referenced within the function.
15510 We could just generate a location descriptor here for all non-NULL
15511 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
15512 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
15513 where DECL_RTL is NULL or is a pseudo-reg.
15515 Note however that we can only get away with using DECL_INCOMING_RTL as
15516 a backup substitute for DECL_RTL in certain limited cases. In cases
15517 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
15518 we can be sure that the parameter was passed using the same type as it is
15519 declared to have within the function, and that its DECL_INCOMING_RTL
15520 points us to a place where a value of that type is passed.
15522 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
15523 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
15524 because in these cases DECL_INCOMING_RTL points us to a value of some
15525 type which is *different* from the type of the parameter itself. Thus,
15526 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
15527 such cases, the debugger would end up (for example) trying to fetch a
15528 `float' from a place which actually contains the first part of a
15529 `double'. That would lead to really incorrect and confusing
15530 output at debug-time.
15532 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
15533 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
15534 are a couple of exceptions however. On little-endian machines we can
15535 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
15536 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
15537 an integral type that is smaller than TREE_TYPE (decl). These cases arise
15538 when (on a little-endian machine) a non-prototyped function has a
15539 parameter declared to be of type `short' or `char'. In such cases,
15540 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
15541 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
15542 passed `int' value. If the debugger then uses that address to fetch
15543 a `short' or a `char' (on a little-endian machine) the result will be
15544 the correct data, so we allow for such exceptional cases below.
15546 Note that our goal here is to describe the place where the given formal
15547 parameter lives during most of the function's activation (i.e. between the
15548 end of the prologue and the start of the epilogue). We'll do that as best
15549 as we can. Note however that if the given formal parameter is modified
15550 sometime during the execution of the function, then a stack backtrace (at
15551 debug-time) will show the function as having been called with the *new*
15552 value rather than the value which was originally passed in. This happens
15553 rarely enough that it is not a major problem, but it *is* a problem, and
15554 I'd like to fix it.
15556 A future version of dwarf2out.c may generate two additional attributes for
15557 any given DW_TAG_formal_parameter DIE which will describe the "passed
15558 type" and the "passed location" for the given formal parameter in addition
15559 to the attributes we now generate to indicate the "declared type" and the
15560 "active location" for each parameter. This additional set of attributes
15561 could be used by debuggers for stack backtraces. Separately, note that
15562 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
15563 This happens (for example) for inlined-instances of inline function formal
15564 parameters which are never referenced. This really shouldn't be
15565 happening. All PARM_DECL nodes should get valid non-NULL
15566 DECL_INCOMING_RTL values. FIXME. */
15568 /* Use DECL_RTL as the "location" unless we find something better. */
15569 rtl
= DECL_RTL_IF_SET (decl
);
15571 /* When generating abstract instances, ignore everything except
15572 constants, symbols living in memory, and symbols living in
15573 fixed registers. */
15574 if (! reload_completed
)
15577 && (CONSTANT_P (rtl
)
15579 && CONSTANT_P (XEXP (rtl
, 0)))
15581 && TREE_CODE (decl
) == VAR_DECL
15582 && TREE_STATIC (decl
))))
15584 rtl
= targetm
.delegitimize_address (rtl
);
15589 else if (TREE_CODE (decl
) == PARM_DECL
)
15591 if (rtl
== NULL_RTX
15592 || is_pseudo_reg (rtl
)
15594 && is_pseudo_reg (XEXP (rtl
, 0))
15595 && DECL_INCOMING_RTL (decl
)
15596 && MEM_P (DECL_INCOMING_RTL (decl
))
15597 && GET_MODE (rtl
) == GET_MODE (DECL_INCOMING_RTL (decl
))))
15599 tree declared_type
= TREE_TYPE (decl
);
15600 tree passed_type
= DECL_ARG_TYPE (decl
);
15601 enum machine_mode dmode
= TYPE_MODE (declared_type
);
15602 enum machine_mode pmode
= TYPE_MODE (passed_type
);
15604 /* This decl represents a formal parameter which was optimized out.
15605 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
15606 all cases where (rtl == NULL_RTX) just below. */
15607 if (dmode
== pmode
)
15608 rtl
= DECL_INCOMING_RTL (decl
);
15609 else if ((rtl
== NULL_RTX
|| is_pseudo_reg (rtl
))
15610 && SCALAR_INT_MODE_P (dmode
)
15611 && GET_MODE_SIZE (dmode
) <= GET_MODE_SIZE (pmode
)
15612 && DECL_INCOMING_RTL (decl
))
15614 rtx inc
= DECL_INCOMING_RTL (decl
);
15617 else if (MEM_P (inc
))
15619 if (BYTES_BIG_ENDIAN
)
15620 rtl
= adjust_address_nv (inc
, dmode
,
15621 GET_MODE_SIZE (pmode
)
15622 - GET_MODE_SIZE (dmode
));
15629 /* If the parm was passed in registers, but lives on the stack, then
15630 make a big endian correction if the mode of the type of the
15631 parameter is not the same as the mode of the rtl. */
15632 /* ??? This is the same series of checks that are made in dbxout.c before
15633 we reach the big endian correction code there. It isn't clear if all
15634 of these checks are necessary here, but keeping them all is the safe
15636 else if (MEM_P (rtl
)
15637 && XEXP (rtl
, 0) != const0_rtx
15638 && ! CONSTANT_P (XEXP (rtl
, 0))
15639 /* Not passed in memory. */
15640 && !MEM_P (DECL_INCOMING_RTL (decl
))
15641 /* Not passed by invisible reference. */
15642 && (!REG_P (XEXP (rtl
, 0))
15643 || REGNO (XEXP (rtl
, 0)) == HARD_FRAME_POINTER_REGNUM
15644 || REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
15645 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
15646 || REGNO (XEXP (rtl
, 0)) == ARG_POINTER_REGNUM
15649 /* Big endian correction check. */
15650 && BYTES_BIG_ENDIAN
15651 && TYPE_MODE (TREE_TYPE (decl
)) != GET_MODE (rtl
)
15652 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)))
15655 enum machine_mode addr_mode
= get_address_mode (rtl
);
15656 int offset
= (UNITS_PER_WORD
15657 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
))));
15659 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
15660 plus_constant (addr_mode
, XEXP (rtl
, 0), offset
));
15663 else if (TREE_CODE (decl
) == VAR_DECL
15666 && GET_MODE (rtl
) != TYPE_MODE (TREE_TYPE (decl
))
15667 && BYTES_BIG_ENDIAN
)
15669 enum machine_mode addr_mode
= get_address_mode (rtl
);
15670 int rsize
= GET_MODE_SIZE (GET_MODE (rtl
));
15671 int dsize
= GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)));
15673 /* If a variable is declared "register" yet is smaller than
15674 a register, then if we store the variable to memory, it
15675 looks like we're storing a register-sized value, when in
15676 fact we are not. We need to adjust the offset of the
15677 storage location to reflect the actual value's bytes,
15678 else gdb will not be able to display it. */
15680 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
15681 plus_constant (addr_mode
, XEXP (rtl
, 0),
15685 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
15686 and will have been substituted directly into all expressions that use it.
15687 C does not have such a concept, but C++ and other languages do. */
15688 if (!rtl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_INITIAL (decl
))
15689 rtl
= rtl_for_decl_init (DECL_INITIAL (decl
), TREE_TYPE (decl
));
15692 rtl
= targetm
.delegitimize_address (rtl
);
15694 /* If we don't look past the constant pool, we risk emitting a
15695 reference to a constant pool entry that isn't referenced from
15696 code, and thus is not emitted. */
15698 rtl
= avoid_constant_pool_reference (rtl
);
15700 /* Try harder to get a rtl. If this symbol ends up not being emitted
15701 in the current CU, resolve_addr will remove the expression referencing
15703 if (rtl
== NULL_RTX
15704 && TREE_CODE (decl
) == VAR_DECL
15705 && !DECL_EXTERNAL (decl
)
15706 && TREE_STATIC (decl
)
15707 && DECL_NAME (decl
)
15708 && !DECL_HARD_REGISTER (decl
)
15709 && DECL_MODE (decl
) != VOIDmode
)
15711 rtl
= make_decl_rtl_for_debug (decl
);
15713 || GET_CODE (XEXP (rtl
, 0)) != SYMBOL_REF
15714 || SYMBOL_REF_DECL (XEXP (rtl
, 0)) != decl
)
15721 /* Check whether decl is a Fortran COMMON symbol. If not, NULL_TREE is
15722 returned. If so, the decl for the COMMON block is returned, and the
15723 value is the offset into the common block for the symbol. */
15726 fortran_common (tree decl
, HOST_WIDE_INT
*value
)
15728 tree val_expr
, cvar
;
15729 enum machine_mode mode
;
15730 HOST_WIDE_INT bitsize
, bitpos
;
15732 int unsignedp
, volatilep
= 0;
15734 /* If the decl isn't a VAR_DECL, or if it isn't static, or if
15735 it does not have a value (the offset into the common area), or if it
15736 is thread local (as opposed to global) then it isn't common, and shouldn't
15737 be handled as such. */
15738 if (TREE_CODE (decl
) != VAR_DECL
15739 || !TREE_STATIC (decl
)
15740 || !DECL_HAS_VALUE_EXPR_P (decl
)
15744 val_expr
= DECL_VALUE_EXPR (decl
);
15745 if (TREE_CODE (val_expr
) != COMPONENT_REF
)
15748 cvar
= get_inner_reference (val_expr
, &bitsize
, &bitpos
, &offset
,
15749 &mode
, &unsignedp
, &volatilep
, true);
15751 if (cvar
== NULL_TREE
15752 || TREE_CODE (cvar
) != VAR_DECL
15753 || DECL_ARTIFICIAL (cvar
)
15754 || !TREE_PUBLIC (cvar
))
15758 if (offset
!= NULL
)
15760 if (!tree_fits_shwi_p (offset
))
15762 *value
= tree_to_shwi (offset
);
15765 *value
+= bitpos
/ BITS_PER_UNIT
;
15770 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
15771 data attribute for a variable or a parameter. We generate the
15772 DW_AT_const_value attribute only in those cases where the given variable
15773 or parameter does not have a true "location" either in memory or in a
15774 register. This can happen (for example) when a constant is passed as an
15775 actual argument in a call to an inline function. (It's possible that
15776 these things can crop up in other ways also.) Note that one type of
15777 constant value which can be passed into an inlined function is a constant
15778 pointer. This can happen for example if an actual argument in an inlined
15779 function call evaluates to a compile-time constant address.
15781 CACHE_P is true if it is worth caching the location list for DECL,
15782 so that future calls can reuse it rather than regenerate it from scratch.
15783 This is true for BLOCK_NONLOCALIZED_VARS in inlined subroutines,
15784 since we will need to refer to them each time the function is inlined. */
15787 add_location_or_const_value_attribute (dw_die_ref die
, tree decl
, bool cache_p
,
15788 enum dwarf_attribute attr
)
15791 dw_loc_list_ref list
;
15792 var_loc_list
*loc_list
;
15793 cached_dw_loc_list
*cache
;
15796 if (TREE_CODE (decl
) == ERROR_MARK
)
15799 gcc_assert (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
15800 || TREE_CODE (decl
) == RESULT_DECL
);
15802 /* Try to get some constant RTL for this decl, and use that as the value of
15805 rtl
= rtl_for_decl_location (decl
);
15806 if (rtl
&& (CONSTANT_P (rtl
) || GET_CODE (rtl
) == CONST_STRING
)
15807 && add_const_value_attribute (die
, rtl
))
15810 /* See if we have single element location list that is equivalent to
15811 a constant value. That way we are better to use add_const_value_attribute
15812 rather than expanding constant value equivalent. */
15813 loc_list
= lookup_decl_loc (decl
);
15816 && loc_list
->first
->next
== NULL
15817 && NOTE_P (loc_list
->first
->loc
)
15818 && NOTE_VAR_LOCATION (loc_list
->first
->loc
)
15819 && NOTE_VAR_LOCATION_LOC (loc_list
->first
->loc
))
15821 struct var_loc_node
*node
;
15823 node
= loc_list
->first
;
15824 rtl
= NOTE_VAR_LOCATION_LOC (node
->loc
);
15825 if (GET_CODE (rtl
) == EXPR_LIST
)
15826 rtl
= XEXP (rtl
, 0);
15827 if ((CONSTANT_P (rtl
) || GET_CODE (rtl
) == CONST_STRING
)
15828 && add_const_value_attribute (die
, rtl
))
15831 /* If this decl is from BLOCK_NONLOCALIZED_VARS, we might need its
15832 list several times. See if we've already cached the contents. */
15834 if (loc_list
== NULL
|| cached_dw_loc_list_table
== NULL
)
15838 cache
= (cached_dw_loc_list
*)
15839 htab_find_with_hash (cached_dw_loc_list_table
, decl
, DECL_UID (decl
));
15841 list
= cache
->loc_list
;
15845 list
= loc_list_from_tree (decl
, decl_by_reference_p (decl
) ? 0 : 2);
15846 /* It is usually worth caching this result if the decl is from
15847 BLOCK_NONLOCALIZED_VARS and if the list has at least two elements. */
15848 if (cache_p
&& list
&& list
->dw_loc_next
)
15850 slot
= htab_find_slot_with_hash (cached_dw_loc_list_table
, decl
,
15851 DECL_UID (decl
), INSERT
);
15852 cache
= ggc_cleared_alloc
<cached_dw_loc_list
> ();
15853 cache
->decl_id
= DECL_UID (decl
);
15854 cache
->loc_list
= list
;
15860 add_AT_location_description (die
, attr
, list
);
15863 /* None of that worked, so it must not really have a location;
15864 try adding a constant value attribute from the DECL_INITIAL. */
15865 return tree_add_const_value_attribute_for_decl (die
, decl
);
15868 /* Add VARIABLE and DIE into deferred locations list. */
15871 defer_location (tree variable
, dw_die_ref die
)
15873 deferred_locations entry
;
15874 entry
.variable
= variable
;
15876 vec_safe_push (deferred_locations_list
, entry
);
15879 /* Helper function for tree_add_const_value_attribute. Natively encode
15880 initializer INIT into an array. Return true if successful. */
15883 native_encode_initializer (tree init
, unsigned char *array
, int size
)
15887 if (init
== NULL_TREE
)
15891 switch (TREE_CODE (init
))
15894 type
= TREE_TYPE (init
);
15895 if (TREE_CODE (type
) == ARRAY_TYPE
)
15897 tree enttype
= TREE_TYPE (type
);
15898 enum machine_mode mode
= TYPE_MODE (enttype
);
15900 if (GET_MODE_CLASS (mode
) != MODE_INT
|| GET_MODE_SIZE (mode
) != 1)
15902 if (int_size_in_bytes (type
) != size
)
15904 if (size
> TREE_STRING_LENGTH (init
))
15906 memcpy (array
, TREE_STRING_POINTER (init
),
15907 TREE_STRING_LENGTH (init
));
15908 memset (array
+ TREE_STRING_LENGTH (init
),
15909 '\0', size
- TREE_STRING_LENGTH (init
));
15912 memcpy (array
, TREE_STRING_POINTER (init
), size
);
15917 type
= TREE_TYPE (init
);
15918 if (int_size_in_bytes (type
) != size
)
15920 if (TREE_CODE (type
) == ARRAY_TYPE
)
15922 HOST_WIDE_INT min_index
;
15923 unsigned HOST_WIDE_INT cnt
;
15924 int curpos
= 0, fieldsize
;
15925 constructor_elt
*ce
;
15927 if (TYPE_DOMAIN (type
) == NULL_TREE
15928 || !tree_fits_shwi_p (TYPE_MIN_VALUE (TYPE_DOMAIN (type
))))
15931 fieldsize
= int_size_in_bytes (TREE_TYPE (type
));
15932 if (fieldsize
<= 0)
15935 min_index
= tree_to_shwi (TYPE_MIN_VALUE (TYPE_DOMAIN (type
)));
15936 memset (array
, '\0', size
);
15937 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init
), cnt
, ce
)
15939 tree val
= ce
->value
;
15940 tree index
= ce
->index
;
15942 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
15943 pos
= (tree_to_shwi (TREE_OPERAND (index
, 0)) - min_index
)
15946 pos
= (tree_to_shwi (index
) - min_index
) * fieldsize
;
15951 if (!native_encode_initializer (val
, array
+ pos
, fieldsize
))
15954 curpos
= pos
+ fieldsize
;
15955 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
15957 int count
= tree_to_shwi (TREE_OPERAND (index
, 1))
15958 - tree_to_shwi (TREE_OPERAND (index
, 0));
15959 while (count
-- > 0)
15962 memcpy (array
+ curpos
, array
+ pos
, fieldsize
);
15963 curpos
+= fieldsize
;
15966 gcc_assert (curpos
<= size
);
15970 else if (TREE_CODE (type
) == RECORD_TYPE
15971 || TREE_CODE (type
) == UNION_TYPE
)
15973 tree field
= NULL_TREE
;
15974 unsigned HOST_WIDE_INT cnt
;
15975 constructor_elt
*ce
;
15977 if (int_size_in_bytes (type
) != size
)
15980 if (TREE_CODE (type
) == RECORD_TYPE
)
15981 field
= TYPE_FIELDS (type
);
15983 FOR_EACH_VEC_SAFE_ELT (CONSTRUCTOR_ELTS (init
), cnt
, ce
)
15985 tree val
= ce
->value
;
15986 int pos
, fieldsize
;
15988 if (ce
->index
!= 0)
15994 if (field
== NULL_TREE
|| DECL_BIT_FIELD (field
))
15997 if (TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
15998 && TYPE_DOMAIN (TREE_TYPE (field
))
15999 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field
))))
16001 else if (DECL_SIZE_UNIT (field
) == NULL_TREE
16002 || !tree_fits_shwi_p (DECL_SIZE_UNIT (field
)))
16004 fieldsize
= tree_to_shwi (DECL_SIZE_UNIT (field
));
16005 pos
= int_byte_position (field
);
16006 gcc_assert (pos
+ fieldsize
<= size
);
16008 && !native_encode_initializer (val
, array
+ pos
, fieldsize
))
16014 case VIEW_CONVERT_EXPR
:
16015 case NON_LVALUE_EXPR
:
16016 return native_encode_initializer (TREE_OPERAND (init
, 0), array
, size
);
16018 return native_encode_expr (init
, array
, size
) == size
;
16022 /* Attach a DW_AT_const_value attribute to DIE. The value of the
16023 attribute is the const value T. */
16026 tree_add_const_value_attribute (dw_die_ref die
, tree t
)
16029 tree type
= TREE_TYPE (t
);
16032 if (!t
|| !TREE_TYPE (t
) || TREE_TYPE (t
) == error_mark_node
)
16036 gcc_assert (!DECL_P (init
));
16038 rtl
= rtl_for_decl_init (init
, type
);
16040 return add_const_value_attribute (die
, rtl
);
16041 /* If the host and target are sane, try harder. */
16042 else if (CHAR_BIT
== 8 && BITS_PER_UNIT
== 8
16043 && initializer_constant_valid_p (init
, type
))
16045 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (init
));
16046 if (size
> 0 && (int) size
== size
)
16048 unsigned char *array
= ggc_cleared_vec_alloc
<unsigned char> (size
);
16050 if (native_encode_initializer (init
, array
, size
))
16052 add_AT_vec (die
, DW_AT_const_value
, size
, 1, array
);
16061 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
16062 attribute is the const value of T, where T is an integral constant
16063 variable with static storage duration
16064 (so it can't be a PARM_DECL or a RESULT_DECL). */
16067 tree_add_const_value_attribute_for_decl (dw_die_ref var_die
, tree decl
)
16071 || (TREE_CODE (decl
) != VAR_DECL
16072 && TREE_CODE (decl
) != CONST_DECL
)
16073 || (TREE_CODE (decl
) == VAR_DECL
16074 && !TREE_STATIC (decl
)))
16077 if (TREE_READONLY (decl
)
16078 && ! TREE_THIS_VOLATILE (decl
)
16079 && DECL_INITIAL (decl
))
16084 /* Don't add DW_AT_const_value if abstract origin already has one. */
16085 if (get_AT (var_die
, DW_AT_const_value
))
16088 return tree_add_const_value_attribute (var_die
, DECL_INITIAL (decl
));
16091 /* Convert the CFI instructions for the current function into a
16092 location list. This is used for DW_AT_frame_base when we targeting
16093 a dwarf2 consumer that does not support the dwarf3
16094 DW_OP_call_frame_cfa. OFFSET is a constant to be added to all CFA
16097 static dw_loc_list_ref
16098 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset
)
16102 dw_loc_list_ref list
, *list_tail
;
16104 dw_cfa_location last_cfa
, next_cfa
;
16105 const char *start_label
, *last_label
, *section
;
16106 dw_cfa_location remember
;
16109 gcc_assert (fde
!= NULL
);
16111 section
= secname_for_decl (current_function_decl
);
16115 memset (&next_cfa
, 0, sizeof (next_cfa
));
16116 next_cfa
.reg
= INVALID_REGNUM
;
16117 remember
= next_cfa
;
16119 start_label
= fde
->dw_fde_begin
;
16121 /* ??? Bald assumption that the CIE opcode list does not contain
16122 advance opcodes. */
16123 FOR_EACH_VEC_ELT (*cie_cfi_vec
, ix
, cfi
)
16124 lookup_cfa_1 (cfi
, &next_cfa
, &remember
);
16126 last_cfa
= next_cfa
;
16127 last_label
= start_label
;
16129 if (fde
->dw_fde_second_begin
&& fde
->dw_fde_switch_cfi_index
== 0)
16131 /* If the first partition contained no CFI adjustments, the
16132 CIE opcodes apply to the whole first partition. */
16133 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
16134 fde
->dw_fde_begin
, fde
->dw_fde_end
, section
);
16135 list_tail
=&(*list_tail
)->dw_loc_next
;
16136 start_label
= last_label
= fde
->dw_fde_second_begin
;
16139 FOR_EACH_VEC_SAFE_ELT (fde
->dw_fde_cfi
, ix
, cfi
)
16141 switch (cfi
->dw_cfi_opc
)
16143 case DW_CFA_set_loc
:
16144 case DW_CFA_advance_loc1
:
16145 case DW_CFA_advance_loc2
:
16146 case DW_CFA_advance_loc4
:
16147 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
16149 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
16150 start_label
, last_label
, section
);
16152 list_tail
= &(*list_tail
)->dw_loc_next
;
16153 last_cfa
= next_cfa
;
16154 start_label
= last_label
;
16156 last_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
16159 case DW_CFA_advance_loc
:
16160 /* The encoding is complex enough that we should never emit this. */
16161 gcc_unreachable ();
16164 lookup_cfa_1 (cfi
, &next_cfa
, &remember
);
16167 if (ix
+ 1 == fde
->dw_fde_switch_cfi_index
)
16169 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
16171 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
16172 start_label
, last_label
, section
);
16174 list_tail
= &(*list_tail
)->dw_loc_next
;
16175 last_cfa
= next_cfa
;
16176 start_label
= last_label
;
16178 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
16179 start_label
, fde
->dw_fde_end
, section
);
16180 list_tail
= &(*list_tail
)->dw_loc_next
;
16181 start_label
= last_label
= fde
->dw_fde_second_begin
;
16185 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
16187 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
16188 start_label
, last_label
, section
);
16189 list_tail
= &(*list_tail
)->dw_loc_next
;
16190 start_label
= last_label
;
16193 *list_tail
= new_loc_list (build_cfa_loc (&next_cfa
, offset
),
16195 fde
->dw_fde_second_begin
16196 ? fde
->dw_fde_second_end
: fde
->dw_fde_end
,
16199 if (list
&& list
->dw_loc_next
)
16205 /* Compute a displacement from the "steady-state frame pointer" to the
16206 frame base (often the same as the CFA), and store it in
16207 frame_pointer_fb_offset. OFFSET is added to the displacement
16208 before the latter is negated. */
16211 compute_frame_pointer_to_fb_displacement (HOST_WIDE_INT offset
)
16215 #ifdef FRAME_POINTER_CFA_OFFSET
16216 reg
= frame_pointer_rtx
;
16217 offset
+= FRAME_POINTER_CFA_OFFSET (current_function_decl
);
16219 reg
= arg_pointer_rtx
;
16220 offset
+= ARG_POINTER_CFA_OFFSET (current_function_decl
);
16223 elim
= (ira_use_lra_p
16224 ? lra_eliminate_regs (reg
, VOIDmode
, NULL_RTX
)
16225 : eliminate_regs (reg
, VOIDmode
, NULL_RTX
));
16226 if (GET_CODE (elim
) == PLUS
)
16228 offset
+= INTVAL (XEXP (elim
, 1));
16229 elim
= XEXP (elim
, 0);
16232 frame_pointer_fb_offset
= -offset
;
16234 /* ??? AVR doesn't set up valid eliminations when there is no stack frame
16235 in which to eliminate. This is because it's stack pointer isn't
16236 directly accessible as a register within the ISA. To work around
16237 this, assume that while we cannot provide a proper value for
16238 frame_pointer_fb_offset, we won't need one either. */
16239 frame_pointer_fb_offset_valid
16240 = ((SUPPORTS_STACK_ALIGNMENT
16241 && (elim
== hard_frame_pointer_rtx
16242 || elim
== stack_pointer_rtx
))
16243 || elim
== (frame_pointer_needed
16244 ? hard_frame_pointer_rtx
16245 : stack_pointer_rtx
));
16248 /* Generate a DW_AT_name attribute given some string value to be included as
16249 the value of the attribute. */
16252 add_name_attribute (dw_die_ref die
, const char *name_string
)
16254 if (name_string
!= NULL
&& *name_string
!= 0)
16256 if (demangle_name_func
)
16257 name_string
= (*demangle_name_func
) (name_string
);
16259 add_AT_string (die
, DW_AT_name
, name_string
);
16263 /* Retrieve the descriptive type of TYPE, if any, make sure it has a
16264 DIE and attach a DW_AT_GNAT_descriptive_type attribute to the DIE
16265 of TYPE accordingly.
16267 ??? This is a temporary measure until after we're able to generate
16268 regular DWARF for the complex Ada type system. */
16271 add_gnat_descriptive_type_attribute (dw_die_ref die
, tree type
,
16272 dw_die_ref context_die
)
16275 dw_die_ref dtype_die
;
16277 if (!lang_hooks
.types
.descriptive_type
)
16280 dtype
= lang_hooks
.types
.descriptive_type (type
);
16284 dtype_die
= lookup_type_die (dtype
);
16287 gen_type_die (dtype
, context_die
);
16288 dtype_die
= lookup_type_die (dtype
);
16289 gcc_assert (dtype_die
);
16292 add_AT_die_ref (die
, DW_AT_GNAT_descriptive_type
, dtype_die
);
16295 /* Retrieve the comp_dir string suitable for use with DW_AT_comp_dir. */
16297 static const char *
16298 comp_dir_string (void)
16302 static const char *cached_wd
= NULL
;
16304 if (cached_wd
!= NULL
)
16307 wd
= get_src_pwd ();
16311 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR
)
16315 wdlen
= strlen (wd
);
16316 wd1
= ggc_vec_alloc
<char> (wdlen
+ 2);
16318 wd1
[wdlen
] = DIR_SEPARATOR
;
16319 wd1
[wdlen
+ 1] = 0;
16323 cached_wd
= remap_debug_filename (wd
);
16327 /* Generate a DW_AT_comp_dir attribute for DIE. */
16330 add_comp_dir_attribute (dw_die_ref die
)
16332 const char * wd
= comp_dir_string ();
16334 add_AT_string (die
, DW_AT_comp_dir
, wd
);
16337 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
16341 lower_bound_default (void)
16343 switch (get_AT_unsigned (comp_unit_die (), DW_AT_language
))
16348 case DW_LANG_C_plus_plus
:
16350 case DW_LANG_ObjC_plus_plus
:
16353 case DW_LANG_Fortran77
:
16354 case DW_LANG_Fortran90
:
16355 case DW_LANG_Fortran95
:
16359 case DW_LANG_Python
:
16360 return dwarf_version
>= 4 ? 0 : -1;
16361 case DW_LANG_Ada95
:
16362 case DW_LANG_Ada83
:
16363 case DW_LANG_Cobol74
:
16364 case DW_LANG_Cobol85
:
16365 case DW_LANG_Pascal83
:
16366 case DW_LANG_Modula2
:
16368 return dwarf_version
>= 4 ? 1 : -1;
16374 /* Given a tree node describing an array bound (either lower or upper) output
16375 a representation for that bound. */
16378 add_bound_info (dw_die_ref subrange_die
, enum dwarf_attribute bound_attr
, tree bound
)
16380 switch (TREE_CODE (bound
))
16385 /* All fixed-bounds are represented by INTEGER_CST nodes. */
16388 unsigned int prec
= simple_type_size_in_bits (TREE_TYPE (bound
));
16391 /* Use the default if possible. */
16392 if (bound_attr
== DW_AT_lower_bound
16393 && tree_fits_shwi_p (bound
)
16394 && (dflt
= lower_bound_default ()) != -1
16395 && tree_to_shwi (bound
) == dflt
)
16398 /* If HOST_WIDE_INT is big enough then represent the bound as
16399 a constant value. We need to choose a form based on
16400 whether the type is signed or unsigned. We cannot just
16401 call add_AT_unsigned if the value itself is positive
16402 (add_AT_unsigned might add the unsigned value encoded as
16403 DW_FORM_data[1248]). Some DWARF consumers will lookup the
16404 bounds type and then sign extend any unsigned values found
16405 for signed types. This is needed only for
16406 DW_AT_{lower,upper}_bound, since for most other attributes,
16407 consumers will treat DW_FORM_data[1248] as unsigned values,
16408 regardless of the underlying type. */
16409 else if (prec
<= HOST_BITS_PER_WIDE_INT
16410 || tree_fits_uhwi_p (bound
))
16412 if (TYPE_UNSIGNED (TREE_TYPE (bound
)))
16413 add_AT_unsigned (subrange_die
, bound_attr
,
16414 TREE_INT_CST_LOW (bound
));
16416 add_AT_int (subrange_die
, bound_attr
, TREE_INT_CST_LOW (bound
));
16419 /* Otherwise represent the bound as an unsigned value with
16420 the precision of its type. The precision and signedness
16421 of the type will be necessary to re-interpret it
16423 add_AT_wide (subrange_die
, bound_attr
, bound
);
16428 case VIEW_CONVERT_EXPR
:
16429 add_bound_info (subrange_die
, bound_attr
, TREE_OPERAND (bound
, 0));
16439 dw_die_ref decl_die
= lookup_decl_die (bound
);
16441 /* ??? Can this happen, or should the variable have been bound
16442 first? Probably it can, since I imagine that we try to create
16443 the types of parameters in the order in which they exist in
16444 the list, and won't have created a forward reference to a
16445 later parameter. */
16446 if (decl_die
!= NULL
)
16448 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
16456 /* Otherwise try to create a stack operation procedure to
16457 evaluate the value of the array bound. */
16459 dw_die_ref ctx
, decl_die
;
16460 dw_loc_list_ref list
;
16462 list
= loc_list_from_tree (bound
, 2);
16463 if (list
== NULL
|| single_element_loc_list_p (list
))
16465 /* If DW_AT_*bound is not a reference nor constant, it is
16466 a DWARF expression rather than location description.
16467 For that loc_list_from_tree (bound, 0) is needed.
16468 If that fails to give a single element list,
16469 fall back to outputting this as a reference anyway. */
16470 dw_loc_list_ref list2
= loc_list_from_tree (bound
, 0);
16471 if (list2
&& single_element_loc_list_p (list2
))
16473 add_AT_loc (subrange_die
, bound_attr
, list2
->expr
);
16480 if (current_function_decl
== 0)
16481 ctx
= comp_unit_die ();
16483 ctx
= lookup_decl_die (current_function_decl
);
16485 decl_die
= new_die (DW_TAG_variable
, ctx
, bound
);
16486 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
16487 add_type_attribute (decl_die
, TREE_TYPE (bound
), 1, 0, ctx
);
16488 add_AT_location_description (decl_die
, DW_AT_location
, list
);
16489 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
16495 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
16496 possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
16497 Note that the block of subscript information for an array type also
16498 includes information about the element type of the given array type. */
16501 add_subscript_info (dw_die_ref type_die
, tree type
, bool collapse_p
)
16503 unsigned dimension_number
;
16505 dw_die_ref subrange_die
;
16507 for (dimension_number
= 0;
16508 TREE_CODE (type
) == ARRAY_TYPE
&& (dimension_number
== 0 || collapse_p
);
16509 type
= TREE_TYPE (type
), dimension_number
++)
16511 tree domain
= TYPE_DOMAIN (type
);
16513 if (TYPE_STRING_FLAG (type
) && is_fortran () && dimension_number
> 0)
16516 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
16517 and (in GNU C only) variable bounds. Handle all three forms
16519 subrange_die
= new_die (DW_TAG_subrange_type
, type_die
, NULL
);
16522 /* We have an array type with specified bounds. */
16523 lower
= TYPE_MIN_VALUE (domain
);
16524 upper
= TYPE_MAX_VALUE (domain
);
16526 /* Define the index type. */
16527 if (TREE_TYPE (domain
))
16529 /* ??? This is probably an Ada unnamed subrange type. Ignore the
16530 TREE_TYPE field. We can't emit debug info for this
16531 because it is an unnamed integral type. */
16532 if (TREE_CODE (domain
) == INTEGER_TYPE
16533 && TYPE_NAME (domain
) == NULL_TREE
16534 && TREE_CODE (TREE_TYPE (domain
)) == INTEGER_TYPE
16535 && TYPE_NAME (TREE_TYPE (domain
)) == NULL_TREE
)
16538 add_type_attribute (subrange_die
, TREE_TYPE (domain
), 0, 0,
16542 /* ??? If upper is NULL, the array has unspecified length,
16543 but it does have a lower bound. This happens with Fortran
16545 Since the debugger is definitely going to need to know N
16546 to produce useful results, go ahead and output the lower
16547 bound solo, and hope the debugger can cope. */
16549 add_bound_info (subrange_die
, DW_AT_lower_bound
, lower
);
16551 add_bound_info (subrange_die
, DW_AT_upper_bound
, upper
);
16554 /* Otherwise we have an array type with an unspecified length. The
16555 DWARF-2 spec does not say how to handle this; let's just leave out the
16560 /* Add a DW_AT_byte_size attribute to DIE with TREE_NODE's size. */
16563 add_byte_size_attribute (dw_die_ref die
, tree tree_node
)
16565 dw_die_ref decl_die
;
16566 HOST_WIDE_INT size
;
16568 switch (TREE_CODE (tree_node
))
16573 case ENUMERAL_TYPE
:
16576 case QUAL_UNION_TYPE
:
16577 if (TREE_CODE (TYPE_SIZE_UNIT (tree_node
)) == VAR_DECL
16578 && (decl_die
= lookup_decl_die (TYPE_SIZE_UNIT (tree_node
))))
16580 add_AT_die_ref (die
, DW_AT_byte_size
, decl_die
);
16583 size
= int_size_in_bytes (tree_node
);
16586 /* For a data member of a struct or union, the DW_AT_byte_size is
16587 generally given as the number of bytes normally allocated for an
16588 object of the *declared* type of the member itself. This is true
16589 even for bit-fields. */
16590 size
= int_size_in_bytes (field_type (tree_node
));
16593 gcc_unreachable ();
16596 /* Note that `size' might be -1 when we get to this point. If it is, that
16597 indicates that the byte size of the entity in question is variable. We
16598 have no good way of expressing this fact in Dwarf at the present time,
16599 when location description was not used by the caller code instead. */
16601 add_AT_unsigned (die
, DW_AT_byte_size
, size
);
16604 /* For a FIELD_DECL node which represents a bit-field, output an attribute
16605 which specifies the distance in bits from the highest order bit of the
16606 "containing object" for the bit-field to the highest order bit of the
16609 For any given bit-field, the "containing object" is a hypothetical object
16610 (of some integral or enum type) within which the given bit-field lives. The
16611 type of this hypothetical "containing object" is always the same as the
16612 declared type of the individual bit-field itself. The determination of the
16613 exact location of the "containing object" for a bit-field is rather
16614 complicated. It's handled by the `field_byte_offset' function (above).
16616 Note that it is the size (in bytes) of the hypothetical "containing object"
16617 which will be given in the DW_AT_byte_size attribute for this bit-field.
16618 (See `byte_size_attribute' above). */
16621 add_bit_offset_attribute (dw_die_ref die
, tree decl
)
16623 HOST_WIDE_INT object_offset_in_bytes
= field_byte_offset (decl
);
16624 tree type
= DECL_BIT_FIELD_TYPE (decl
);
16625 HOST_WIDE_INT bitpos_int
;
16626 HOST_WIDE_INT highest_order_object_bit_offset
;
16627 HOST_WIDE_INT highest_order_field_bit_offset
;
16628 HOST_WIDE_INT bit_offset
;
16630 /* Must be a field and a bit field. */
16631 gcc_assert (type
&& TREE_CODE (decl
) == FIELD_DECL
);
16633 /* We can't yet handle bit-fields whose offsets are variable, so if we
16634 encounter such things, just return without generating any attribute
16635 whatsoever. Likewise for variable or too large size. */
16636 if (! tree_fits_shwi_p (bit_position (decl
))
16637 || ! tree_fits_uhwi_p (DECL_SIZE (decl
)))
16640 bitpos_int
= int_bit_position (decl
);
16642 /* Note that the bit offset is always the distance (in bits) from the
16643 highest-order bit of the "containing object" to the highest-order bit of
16644 the bit-field itself. Since the "high-order end" of any object or field
16645 is different on big-endian and little-endian machines, the computation
16646 below must take account of these differences. */
16647 highest_order_object_bit_offset
= object_offset_in_bytes
* BITS_PER_UNIT
;
16648 highest_order_field_bit_offset
= bitpos_int
;
16650 if (! BYTES_BIG_ENDIAN
)
16652 highest_order_field_bit_offset
+= tree_to_shwi (DECL_SIZE (decl
));
16653 highest_order_object_bit_offset
+= simple_type_size_in_bits (type
);
16657 = (! BYTES_BIG_ENDIAN
16658 ? highest_order_object_bit_offset
- highest_order_field_bit_offset
16659 : highest_order_field_bit_offset
- highest_order_object_bit_offset
);
16661 if (bit_offset
< 0)
16662 add_AT_int (die
, DW_AT_bit_offset
, bit_offset
);
16664 add_AT_unsigned (die
, DW_AT_bit_offset
, (unsigned HOST_WIDE_INT
) bit_offset
);
16667 /* For a FIELD_DECL node which represents a bit field, output an attribute
16668 which specifies the length in bits of the given field. */
16671 add_bit_size_attribute (dw_die_ref die
, tree decl
)
16673 /* Must be a field and a bit field. */
16674 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
16675 && DECL_BIT_FIELD_TYPE (decl
));
16677 if (tree_fits_uhwi_p (DECL_SIZE (decl
)))
16678 add_AT_unsigned (die
, DW_AT_bit_size
, tree_to_uhwi (DECL_SIZE (decl
)));
16681 /* If the compiled language is ANSI C, then add a 'prototyped'
16682 attribute, if arg types are given for the parameters of a function. */
16685 add_prototyped_attribute (dw_die_ref die
, tree func_type
)
16687 if (get_AT_unsigned (comp_unit_die (), DW_AT_language
) == DW_LANG_C89
16688 && prototype_p (func_type
))
16689 add_AT_flag (die
, DW_AT_prototyped
, 1);
16692 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
16693 by looking in either the type declaration or object declaration
16696 static inline dw_die_ref
16697 add_abstract_origin_attribute (dw_die_ref die
, tree origin
)
16699 dw_die_ref origin_die
= NULL
;
16701 if (TREE_CODE (origin
) != FUNCTION_DECL
)
16703 /* We may have gotten separated from the block for the inlined
16704 function, if we're in an exception handler or some such; make
16705 sure that the abstract function has been written out.
16707 Doing this for nested functions is wrong, however; functions are
16708 distinct units, and our context might not even be inline. */
16712 fn
= TYPE_STUB_DECL (fn
);
16714 fn
= decl_function_context (fn
);
16716 dwarf2out_abstract_function (fn
);
16719 if (DECL_P (origin
))
16720 origin_die
= lookup_decl_die (origin
);
16721 else if (TYPE_P (origin
))
16722 origin_die
= lookup_type_die (origin
);
16724 /* XXX: Functions that are never lowered don't always have correct block
16725 trees (in the case of java, they simply have no block tree, in some other
16726 languages). For these functions, there is nothing we can really do to
16727 output correct debug info for inlined functions in all cases. Rather
16728 than die, we'll just produce deficient debug info now, in that we will
16729 have variables without a proper abstract origin. In the future, when all
16730 functions are lowered, we should re-add a gcc_assert (origin_die)
16734 add_AT_die_ref (die
, DW_AT_abstract_origin
, origin_die
);
16738 /* We do not currently support the pure_virtual attribute. */
16741 add_pure_or_virtual_attribute (dw_die_ref die
, tree func_decl
)
16743 if (DECL_VINDEX (func_decl
))
16745 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
16747 if (tree_fits_shwi_p (DECL_VINDEX (func_decl
)))
16748 add_AT_loc (die
, DW_AT_vtable_elem_location
,
16749 new_loc_descr (DW_OP_constu
,
16750 tree_to_shwi (DECL_VINDEX (func_decl
)),
16753 /* GNU extension: Record what type this method came from originally. */
16754 if (debug_info_level
> DINFO_LEVEL_TERSE
16755 && DECL_CONTEXT (func_decl
))
16756 add_AT_die_ref (die
, DW_AT_containing_type
,
16757 lookup_type_die (DECL_CONTEXT (func_decl
)));
16761 /* Add a DW_AT_linkage_name or DW_AT_MIPS_linkage_name attribute for the
16762 given decl. This used to be a vendor extension until after DWARF 4
16763 standardized it. */
16766 add_linkage_attr (dw_die_ref die
, tree decl
)
16768 const char *name
= IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
));
16770 /* Mimic what assemble_name_raw does with a leading '*'. */
16771 if (name
[0] == '*')
16774 if (dwarf_version
>= 4)
16775 add_AT_string (die
, DW_AT_linkage_name
, name
);
16777 add_AT_string (die
, DW_AT_MIPS_linkage_name
, name
);
16780 /* Add source coordinate attributes for the given decl. */
16783 add_src_coords_attributes (dw_die_ref die
, tree decl
)
16785 expanded_location s
;
16787 if (LOCATION_LOCUS (DECL_SOURCE_LOCATION (decl
)) == UNKNOWN_LOCATION
)
16789 s
= expand_location (DECL_SOURCE_LOCATION (decl
));
16790 add_AT_file (die
, DW_AT_decl_file
, lookup_filename (s
.file
));
16791 add_AT_unsigned (die
, DW_AT_decl_line
, s
.line
);
16794 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl. */
16797 add_linkage_name (dw_die_ref die
, tree decl
)
16799 if (debug_info_level
> DINFO_LEVEL_TERSE
16800 && (TREE_CODE (decl
) == FUNCTION_DECL
|| TREE_CODE (decl
) == VAR_DECL
)
16801 && TREE_PUBLIC (decl
)
16802 && !DECL_ABSTRACT (decl
)
16803 && !(TREE_CODE (decl
) == VAR_DECL
&& DECL_REGISTER (decl
))
16804 && die
->die_tag
!= DW_TAG_member
)
16806 /* Defer until we have an assembler name set. */
16807 if (!DECL_ASSEMBLER_NAME_SET_P (decl
))
16809 limbo_die_node
*asm_name
;
16811 asm_name
= ggc_cleared_alloc
<limbo_die_node
> ();
16812 asm_name
->die
= die
;
16813 asm_name
->created_for
= decl
;
16814 asm_name
->next
= deferred_asm_name
;
16815 deferred_asm_name
= asm_name
;
16817 else if (DECL_ASSEMBLER_NAME (decl
) != DECL_NAME (decl
))
16818 add_linkage_attr (die
, decl
);
16822 /* Add a DW_AT_name attribute and source coordinate attribute for the
16823 given decl, but only if it actually has a name. */
16826 add_name_and_src_coords_attributes (dw_die_ref die
, tree decl
)
16830 decl_name
= DECL_NAME (decl
);
16831 if (decl_name
!= NULL
&& IDENTIFIER_POINTER (decl_name
) != NULL
)
16833 const char *name
= dwarf2_name (decl
, 0);
16835 add_name_attribute (die
, name
);
16836 if (! DECL_ARTIFICIAL (decl
))
16837 add_src_coords_attributes (die
, decl
);
16839 add_linkage_name (die
, decl
);
16842 #ifdef VMS_DEBUGGING_INFO
16843 /* Get the function's name, as described by its RTL. This may be different
16844 from the DECL_NAME name used in the source file. */
16845 if (TREE_CODE (decl
) == FUNCTION_DECL
&& TREE_ASM_WRITTEN (decl
))
16847 add_AT_addr (die
, DW_AT_VMS_rtnbeg_pd_address
,
16848 XEXP (DECL_RTL (decl
), 0), false);
16849 vec_safe_push (used_rtx_array
, XEXP (DECL_RTL (decl
), 0));
16851 #endif /* VMS_DEBUGGING_INFO */
16854 #ifdef VMS_DEBUGGING_INFO
16855 /* Output the debug main pointer die for VMS */
16858 dwarf2out_vms_debug_main_pointer (void)
16860 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
16863 /* Allocate the VMS debug main subprogram die. */
16864 die
= ggc_cleared_alloc
<die_node
> ();
16865 die
->die_tag
= DW_TAG_subprogram
;
16866 add_name_attribute (die
, VMS_DEBUG_MAIN_POINTER
);
16867 ASM_GENERATE_INTERNAL_LABEL (label
, PROLOGUE_END_LABEL
,
16868 current_function_funcdef_no
);
16869 add_AT_lbl_id (die
, DW_AT_entry_pc
, label
);
16871 /* Make it the first child of comp_unit_die (). */
16872 die
->die_parent
= comp_unit_die ();
16873 if (comp_unit_die ()->die_child
)
16875 die
->die_sib
= comp_unit_die ()->die_child
->die_sib
;
16876 comp_unit_die ()->die_child
->die_sib
= die
;
16880 die
->die_sib
= die
;
16881 comp_unit_die ()->die_child
= die
;
16884 #endif /* VMS_DEBUGGING_INFO */
16886 /* Push a new declaration scope. */
16889 push_decl_scope (tree scope
)
16891 vec_safe_push (decl_scope_table
, scope
);
16894 /* Pop a declaration scope. */
16897 pop_decl_scope (void)
16899 decl_scope_table
->pop ();
16902 /* walk_tree helper function for uses_local_type, below. */
16905 uses_local_type_r (tree
*tp
, int *walk_subtrees
, void *data ATTRIBUTE_UNUSED
)
16908 *walk_subtrees
= 0;
16911 tree name
= TYPE_NAME (*tp
);
16912 if (name
&& DECL_P (name
) && decl_function_context (name
))
16918 /* If TYPE involves a function-local type (including a local typedef to a
16919 non-local type), returns that type; otherwise returns NULL_TREE. */
16922 uses_local_type (tree type
)
16924 tree used
= walk_tree_without_duplicates (&type
, uses_local_type_r
, NULL
);
16928 /* Return the DIE for the scope that immediately contains this type.
16929 Non-named types that do not involve a function-local type get global
16930 scope. Named types nested in namespaces or other types get their
16931 containing scope. All other types (i.e. function-local named types) get
16932 the current active scope. */
16935 scope_die_for (tree t
, dw_die_ref context_die
)
16937 dw_die_ref scope_die
= NULL
;
16938 tree containing_scope
;
16940 /* Non-types always go in the current scope. */
16941 gcc_assert (TYPE_P (t
));
16943 /* Use the scope of the typedef, rather than the scope of the type
16945 if (TYPE_NAME (t
) && DECL_P (TYPE_NAME (t
)))
16946 containing_scope
= DECL_CONTEXT (TYPE_NAME (t
));
16948 containing_scope
= TYPE_CONTEXT (t
);
16950 /* Use the containing namespace if there is one. */
16951 if (containing_scope
&& TREE_CODE (containing_scope
) == NAMESPACE_DECL
)
16953 if (context_die
== lookup_decl_die (containing_scope
))
16955 else if (debug_info_level
> DINFO_LEVEL_TERSE
)
16956 context_die
= get_context_die (containing_scope
);
16958 containing_scope
= NULL_TREE
;
16961 /* Ignore function type "scopes" from the C frontend. They mean that
16962 a tagged type is local to a parmlist of a function declarator, but
16963 that isn't useful to DWARF. */
16964 if (containing_scope
&& TREE_CODE (containing_scope
) == FUNCTION_TYPE
)
16965 containing_scope
= NULL_TREE
;
16967 if (SCOPE_FILE_SCOPE_P (containing_scope
))
16969 /* If T uses a local type keep it local as well, to avoid references
16970 to function-local DIEs from outside the function. */
16971 if (current_function_decl
&& uses_local_type (t
))
16972 scope_die
= context_die
;
16974 scope_die
= comp_unit_die ();
16976 else if (TYPE_P (containing_scope
))
16978 /* For types, we can just look up the appropriate DIE. */
16979 if (debug_info_level
> DINFO_LEVEL_TERSE
)
16980 scope_die
= get_context_die (containing_scope
);
16983 scope_die
= lookup_type_die_strip_naming_typedef (containing_scope
);
16984 if (scope_die
== NULL
)
16985 scope_die
= comp_unit_die ();
16989 scope_die
= context_die
;
16994 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
16997 local_scope_p (dw_die_ref context_die
)
16999 for (; context_die
; context_die
= context_die
->die_parent
)
17000 if (context_die
->die_tag
== DW_TAG_inlined_subroutine
17001 || context_die
->die_tag
== DW_TAG_subprogram
)
17007 /* Returns nonzero if CONTEXT_DIE is a class. */
17010 class_scope_p (dw_die_ref context_die
)
17012 return (context_die
17013 && (context_die
->die_tag
== DW_TAG_structure_type
17014 || context_die
->die_tag
== DW_TAG_class_type
17015 || context_die
->die_tag
== DW_TAG_interface_type
17016 || context_die
->die_tag
== DW_TAG_union_type
));
17019 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
17020 whether or not to treat a DIE in this context as a declaration. */
17023 class_or_namespace_scope_p (dw_die_ref context_die
)
17025 return (class_scope_p (context_die
)
17026 || (context_die
&& context_die
->die_tag
== DW_TAG_namespace
));
17029 /* Many forms of DIEs require a "type description" attribute. This
17030 routine locates the proper "type descriptor" die for the type given
17031 by 'type', and adds a DW_AT_type attribute below the given die. */
17034 add_type_attribute (dw_die_ref object_die
, tree type
, int decl_const
,
17035 int decl_volatile
, dw_die_ref context_die
)
17037 enum tree_code code
= TREE_CODE (type
);
17038 dw_die_ref type_die
= NULL
;
17040 /* ??? If this type is an unnamed subrange type of an integral, floating-point
17041 or fixed-point type, use the inner type. This is because we have no
17042 support for unnamed types in base_type_die. This can happen if this is
17043 an Ada subrange type. Correct solution is emit a subrange type die. */
17044 if ((code
== INTEGER_TYPE
|| code
== REAL_TYPE
|| code
== FIXED_POINT_TYPE
)
17045 && TREE_TYPE (type
) != 0 && TYPE_NAME (type
) == 0)
17046 type
= TREE_TYPE (type
), code
= TREE_CODE (type
);
17048 if (code
== ERROR_MARK
17049 /* Handle a special case. For functions whose return type is void, we
17050 generate *no* type attribute. (Note that no object may have type
17051 `void', so this only applies to function return types). */
17052 || code
== VOID_TYPE
)
17055 type_die
= modified_type_die (type
,
17056 decl_const
|| TYPE_READONLY (type
),
17057 decl_volatile
|| TYPE_VOLATILE (type
),
17060 if (type_die
!= NULL
)
17061 add_AT_die_ref (object_die
, DW_AT_type
, type_die
);
17064 /* Given an object die, add the calling convention attribute for the
17065 function call type. */
17067 add_calling_convention_attribute (dw_die_ref subr_die
, tree decl
)
17069 enum dwarf_calling_convention value
= DW_CC_normal
;
17071 value
= ((enum dwarf_calling_convention
)
17072 targetm
.dwarf_calling_convention (TREE_TYPE (decl
)));
17075 && !strcmp (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)), "MAIN__"))
17077 /* DWARF 2 doesn't provide a way to identify a program's source-level
17078 entry point. DW_AT_calling_convention attributes are only meant
17079 to describe functions' calling conventions. However, lacking a
17080 better way to signal the Fortran main program, we used this for
17081 a long time, following existing custom. Now, DWARF 4 has
17082 DW_AT_main_subprogram, which we add below, but some tools still
17083 rely on the old way, which we thus keep. */
17084 value
= DW_CC_program
;
17086 if (dwarf_version
>= 4 || !dwarf_strict
)
17087 add_AT_flag (subr_die
, DW_AT_main_subprogram
, 1);
17090 /* Only add the attribute if the backend requests it, and
17091 is not DW_CC_normal. */
17092 if (value
&& (value
!= DW_CC_normal
))
17093 add_AT_unsigned (subr_die
, DW_AT_calling_convention
, value
);
17096 /* Given a tree pointer to a struct, class, union, or enum type node, return
17097 a pointer to the (string) tag name for the given type, or zero if the type
17098 was declared without a tag. */
17100 static const char *
17101 type_tag (const_tree type
)
17103 const char *name
= 0;
17105 if (TYPE_NAME (type
) != 0)
17109 /* Find the IDENTIFIER_NODE for the type name. */
17110 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
17111 && !TYPE_NAMELESS (type
))
17112 t
= TYPE_NAME (type
);
17114 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
17115 a TYPE_DECL node, regardless of whether or not a `typedef' was
17117 else if (TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
17118 && ! DECL_IGNORED_P (TYPE_NAME (type
)))
17120 /* We want to be extra verbose. Don't call dwarf_name if
17121 DECL_NAME isn't set. The default hook for decl_printable_name
17122 doesn't like that, and in this context it's correct to return
17123 0, instead of "<anonymous>" or the like. */
17124 if (DECL_NAME (TYPE_NAME (type
))
17125 && !DECL_NAMELESS (TYPE_NAME (type
)))
17126 name
= lang_hooks
.dwarf_name (TYPE_NAME (type
), 2);
17129 /* Now get the name as a string, or invent one. */
17130 if (!name
&& t
!= 0)
17131 name
= IDENTIFIER_POINTER (t
);
17134 return (name
== 0 || *name
== '\0') ? 0 : name
;
17137 /* Return the type associated with a data member, make a special check
17138 for bit field types. */
17141 member_declared_type (const_tree member
)
17143 return (DECL_BIT_FIELD_TYPE (member
)
17144 ? DECL_BIT_FIELD_TYPE (member
) : TREE_TYPE (member
));
17147 /* Get the decl's label, as described by its RTL. This may be different
17148 from the DECL_NAME name used in the source file. */
17151 static const char *
17152 decl_start_label (tree decl
)
17155 const char *fnname
;
17157 x
= DECL_RTL (decl
);
17158 gcc_assert (MEM_P (x
));
17161 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
17163 fnname
= XSTR (x
, 0);
17168 /* These routines generate the internal representation of the DIE's for
17169 the compilation unit. Debugging information is collected by walking
17170 the declaration trees passed in from dwarf2out_decl(). */
17173 gen_array_type_die (tree type
, dw_die_ref context_die
)
17175 dw_die_ref scope_die
= scope_die_for (type
, context_die
);
17176 dw_die_ref array_die
;
17178 /* GNU compilers represent multidimensional array types as sequences of one
17179 dimensional array types whose element types are themselves array types.
17180 We sometimes squish that down to a single array_type DIE with multiple
17181 subscripts in the Dwarf debugging info. The draft Dwarf specification
17182 say that we are allowed to do this kind of compression in C, because
17183 there is no difference between an array of arrays and a multidimensional
17184 array. We don't do this for Ada to remain as close as possible to the
17185 actual representation, which is especially important against the language
17186 flexibilty wrt arrays of variable size. */
17188 bool collapse_nested_arrays
= !is_ada ();
17191 /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
17192 DW_TAG_string_type doesn't have DW_AT_type attribute). */
17193 if (TYPE_STRING_FLAG (type
)
17194 && TREE_CODE (type
) == ARRAY_TYPE
17196 && TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (char_type_node
))
17198 HOST_WIDE_INT size
;
17200 array_die
= new_die (DW_TAG_string_type
, scope_die
, type
);
17201 add_name_attribute (array_die
, type_tag (type
));
17202 equate_type_number_to_die (type
, array_die
);
17203 size
= int_size_in_bytes (type
);
17205 add_AT_unsigned (array_die
, DW_AT_byte_size
, size
);
17206 else if (TYPE_DOMAIN (type
) != NULL_TREE
17207 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) != NULL_TREE
17208 && DECL_P (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))))
17210 tree szdecl
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
17211 dw_loc_list_ref loc
= loc_list_from_tree (szdecl
, 2);
17213 size
= int_size_in_bytes (TREE_TYPE (szdecl
));
17214 if (loc
&& size
> 0)
17216 add_AT_location_description (array_die
, DW_AT_string_length
, loc
);
17217 if (size
!= DWARF2_ADDR_SIZE
)
17218 add_AT_unsigned (array_die
, DW_AT_byte_size
, size
);
17224 array_die
= new_die (DW_TAG_array_type
, scope_die
, type
);
17225 add_name_attribute (array_die
, type_tag (type
));
17226 equate_type_number_to_die (type
, array_die
);
17228 if (TREE_CODE (type
) == VECTOR_TYPE
)
17229 add_AT_flag (array_die
, DW_AT_GNU_vector
, 1);
17231 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
17233 && TREE_CODE (type
) == ARRAY_TYPE
17234 && TREE_CODE (TREE_TYPE (type
)) == ARRAY_TYPE
17235 && !TYPE_STRING_FLAG (TREE_TYPE (type
)))
17236 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_col_major
);
17239 /* We default the array ordering. SDB will probably do
17240 the right things even if DW_AT_ordering is not present. It's not even
17241 an issue until we start to get into multidimensional arrays anyway. If
17242 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
17243 then we'll have to put the DW_AT_ordering attribute back in. (But if
17244 and when we find out that we need to put these in, we will only do so
17245 for multidimensional arrays. */
17246 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_row_major
);
17249 if (TREE_CODE (type
) == VECTOR_TYPE
)
17251 /* For VECTOR_TYPEs we use an array die with appropriate bounds. */
17252 dw_die_ref subrange_die
= new_die (DW_TAG_subrange_type
, array_die
, NULL
);
17253 add_bound_info (subrange_die
, DW_AT_lower_bound
, size_zero_node
);
17254 add_bound_info (subrange_die
, DW_AT_upper_bound
,
17255 size_int (TYPE_VECTOR_SUBPARTS (type
) - 1));
17258 add_subscript_info (array_die
, type
, collapse_nested_arrays
);
17260 /* Add representation of the type of the elements of this array type and
17261 emit the corresponding DIE if we haven't done it already. */
17262 element_type
= TREE_TYPE (type
);
17263 if (collapse_nested_arrays
)
17264 while (TREE_CODE (element_type
) == ARRAY_TYPE
)
17266 if (TYPE_STRING_FLAG (element_type
) && is_fortran ())
17268 element_type
= TREE_TYPE (element_type
);
17271 add_type_attribute (array_die
, element_type
, 0, 0, context_die
);
17273 add_gnat_descriptive_type_attribute (array_die
, type
, context_die
);
17274 if (TYPE_ARTIFICIAL (type
))
17275 add_AT_flag (array_die
, DW_AT_artificial
, 1);
17277 if (get_AT (array_die
, DW_AT_name
))
17278 add_pubtype (type
, array_die
);
17281 static dw_loc_descr_ref
17282 descr_info_loc (tree val
, tree base_decl
)
17284 HOST_WIDE_INT size
;
17285 dw_loc_descr_ref loc
, loc2
;
17286 enum dwarf_location_atom op
;
17288 if (val
== base_decl
)
17289 return new_loc_descr (DW_OP_push_object_address
, 0, 0);
17291 switch (TREE_CODE (val
))
17294 return descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
17296 return loc_descriptor_from_tree (val
, 0);
17298 if (tree_fits_shwi_p (val
))
17299 return int_loc_descriptor (tree_to_shwi (val
));
17302 size
= int_size_in_bytes (TREE_TYPE (val
));
17305 loc
= descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
17308 if (size
== DWARF2_ADDR_SIZE
)
17309 add_loc_descr (&loc
, new_loc_descr (DW_OP_deref
, 0, 0));
17311 add_loc_descr (&loc
, new_loc_descr (DW_OP_deref_size
, size
, 0));
17313 case POINTER_PLUS_EXPR
:
17315 if (tree_fits_uhwi_p (TREE_OPERAND (val
, 1))
17316 && tree_to_uhwi (TREE_OPERAND (val
, 1)) < 16384)
17318 loc
= descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
17321 loc_descr_plus_const (&loc
, tree_to_shwi (TREE_OPERAND (val
, 1)));
17327 loc
= descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
17330 loc2
= descr_info_loc (TREE_OPERAND (val
, 1), base_decl
);
17333 add_loc_descr (&loc
, loc2
);
17334 add_loc_descr (&loc2
, new_loc_descr (op
, 0, 0));
17356 add_descr_info_field (dw_die_ref die
, enum dwarf_attribute attr
,
17357 tree val
, tree base_decl
)
17359 dw_loc_descr_ref loc
;
17361 if (tree_fits_shwi_p (val
))
17363 add_AT_unsigned (die
, attr
, tree_to_shwi (val
));
17367 loc
= descr_info_loc (val
, base_decl
);
17371 add_AT_loc (die
, attr
, loc
);
17374 /* This routine generates DIE for array with hidden descriptor, details
17375 are filled into *info by a langhook. */
17378 gen_descr_array_type_die (tree type
, struct array_descr_info
*info
,
17379 dw_die_ref context_die
)
17381 dw_die_ref scope_die
= scope_die_for (type
, context_die
);
17382 dw_die_ref array_die
;
17385 array_die
= new_die (DW_TAG_array_type
, scope_die
, type
);
17386 add_name_attribute (array_die
, type_tag (type
));
17387 equate_type_number_to_die (type
, array_die
);
17389 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
17391 && info
->ndimensions
>= 2)
17392 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_col_major
);
17394 if (info
->data_location
)
17395 add_descr_info_field (array_die
, DW_AT_data_location
, info
->data_location
,
17397 if (info
->associated
)
17398 add_descr_info_field (array_die
, DW_AT_associated
, info
->associated
,
17400 if (info
->allocated
)
17401 add_descr_info_field (array_die
, DW_AT_allocated
, info
->allocated
,
17404 for (dim
= 0; dim
< info
->ndimensions
; dim
++)
17406 dw_die_ref subrange_die
17407 = new_die (DW_TAG_subrange_type
, array_die
, NULL
);
17409 if (info
->dimen
[dim
].lower_bound
)
17411 /* If it is the default value, omit it. */
17414 if (tree_fits_shwi_p (info
->dimen
[dim
].lower_bound
)
17415 && (dflt
= lower_bound_default ()) != -1
17416 && tree_to_shwi (info
->dimen
[dim
].lower_bound
) == dflt
)
17419 add_descr_info_field (subrange_die
, DW_AT_lower_bound
,
17420 info
->dimen
[dim
].lower_bound
,
17423 if (info
->dimen
[dim
].upper_bound
)
17424 add_descr_info_field (subrange_die
, DW_AT_upper_bound
,
17425 info
->dimen
[dim
].upper_bound
,
17427 if (info
->dimen
[dim
].stride
)
17428 add_descr_info_field (subrange_die
, DW_AT_byte_stride
,
17429 info
->dimen
[dim
].stride
,
17433 gen_type_die (info
->element_type
, context_die
);
17434 add_type_attribute (array_die
, info
->element_type
, 0, 0, context_die
);
17436 if (get_AT (array_die
, DW_AT_name
))
17437 add_pubtype (type
, array_die
);
17442 gen_entry_point_die (tree decl
, dw_die_ref context_die
)
17444 tree origin
= decl_ultimate_origin (decl
);
17445 dw_die_ref decl_die
= new_die (DW_TAG_entry_point
, context_die
, decl
);
17447 if (origin
!= NULL
)
17448 add_abstract_origin_attribute (decl_die
, origin
);
17451 add_name_and_src_coords_attributes (decl_die
, decl
);
17452 add_type_attribute (decl_die
, TREE_TYPE (TREE_TYPE (decl
)),
17453 0, 0, context_die
);
17456 if (DECL_ABSTRACT (decl
))
17457 equate_decl_number_to_die (decl
, decl_die
);
17459 add_AT_lbl_id (decl_die
, DW_AT_low_pc
, decl_start_label (decl
));
17463 /* Walk through the list of incomplete types again, trying once more to
17464 emit full debugging info for them. */
17467 retry_incomplete_types (void)
17471 for (i
= vec_safe_length (incomplete_types
) - 1; i
>= 0; i
--)
17472 if (should_emit_struct_debug ((*incomplete_types
)[i
], DINFO_USAGE_DIR_USE
))
17473 gen_type_die ((*incomplete_types
)[i
], comp_unit_die ());
17476 /* Determine what tag to use for a record type. */
17478 static enum dwarf_tag
17479 record_type_tag (tree type
)
17481 if (! lang_hooks
.types
.classify_record
)
17482 return DW_TAG_structure_type
;
17484 switch (lang_hooks
.types
.classify_record (type
))
17486 case RECORD_IS_STRUCT
:
17487 return DW_TAG_structure_type
;
17489 case RECORD_IS_CLASS
:
17490 return DW_TAG_class_type
;
17492 case RECORD_IS_INTERFACE
:
17493 if (dwarf_version
>= 3 || !dwarf_strict
)
17494 return DW_TAG_interface_type
;
17495 return DW_TAG_structure_type
;
17498 gcc_unreachable ();
17502 /* Generate a DIE to represent an enumeration type. Note that these DIEs
17503 include all of the information about the enumeration values also. Each
17504 enumerated type name/value is listed as a child of the enumerated type
17508 gen_enumeration_type_die (tree type
, dw_die_ref context_die
)
17510 dw_die_ref type_die
= lookup_type_die (type
);
17512 if (type_die
== NULL
)
17514 type_die
= new_die (DW_TAG_enumeration_type
,
17515 scope_die_for (type
, context_die
), type
);
17516 equate_type_number_to_die (type
, type_die
);
17517 add_name_attribute (type_die
, type_tag (type
));
17518 if (dwarf_version
>= 4 || !dwarf_strict
)
17520 if (ENUM_IS_SCOPED (type
))
17521 add_AT_flag (type_die
, DW_AT_enum_class
, 1);
17522 if (ENUM_IS_OPAQUE (type
))
17523 add_AT_flag (type_die
, DW_AT_declaration
, 1);
17526 else if (! TYPE_SIZE (type
))
17529 remove_AT (type_die
, DW_AT_declaration
);
17531 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
17532 given enum type is incomplete, do not generate the DW_AT_byte_size
17533 attribute or the DW_AT_element_list attribute. */
17534 if (TYPE_SIZE (type
))
17538 TREE_ASM_WRITTEN (type
) = 1;
17539 add_byte_size_attribute (type_die
, type
);
17540 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
17542 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
17543 add_accessibility_attribute (type_die
, TYPE_STUB_DECL (type
));
17546 /* If the first reference to this type was as the return type of an
17547 inline function, then it may not have a parent. Fix this now. */
17548 if (type_die
->die_parent
== NULL
)
17549 add_child_die (scope_die_for (type
, context_die
), type_die
);
17551 for (link
= TYPE_VALUES (type
);
17552 link
!= NULL
; link
= TREE_CHAIN (link
))
17554 dw_die_ref enum_die
= new_die (DW_TAG_enumerator
, type_die
, link
);
17555 tree value
= TREE_VALUE (link
);
17557 add_name_attribute (enum_die
,
17558 IDENTIFIER_POINTER (TREE_PURPOSE (link
)));
17560 if (TREE_CODE (value
) == CONST_DECL
)
17561 value
= DECL_INITIAL (value
);
17563 if (simple_type_size_in_bits (TREE_TYPE (value
))
17564 <= HOST_BITS_PER_WIDE_INT
|| tree_fits_shwi_p (value
))
17566 /* For constant forms created by add_AT_unsigned DWARF
17567 consumers (GDB, elfutils, etc.) always zero extend
17568 the value. Only when the actual value is negative
17569 do we need to use add_AT_int to generate a constant
17570 form that can represent negative values. */
17571 HOST_WIDE_INT val
= TREE_INT_CST_LOW (value
);
17572 if (TYPE_UNSIGNED (TREE_TYPE (value
)) || val
>= 0)
17573 add_AT_unsigned (enum_die
, DW_AT_const_value
,
17574 (unsigned HOST_WIDE_INT
) val
);
17576 add_AT_int (enum_die
, DW_AT_const_value
, val
);
17579 /* Enumeration constants may be wider than HOST_WIDE_INT. Handle
17580 that here. TODO: This should be re-worked to use correct
17581 signed/unsigned double tags for all cases. */
17582 add_AT_wide (enum_die
, DW_AT_const_value
, value
);
17585 add_gnat_descriptive_type_attribute (type_die
, type
, context_die
);
17586 if (TYPE_ARTIFICIAL (type
))
17587 add_AT_flag (type_die
, DW_AT_artificial
, 1);
17590 add_AT_flag (type_die
, DW_AT_declaration
, 1);
17592 add_pubtype (type
, type_die
);
17597 /* Generate a DIE to represent either a real live formal parameter decl or to
17598 represent just the type of some formal parameter position in some function
17601 Note that this routine is a bit unusual because its argument may be a
17602 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
17603 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
17604 node. If it's the former then this function is being called to output a
17605 DIE to represent a formal parameter object (or some inlining thereof). If
17606 it's the latter, then this function is only being called to output a
17607 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
17608 argument type of some subprogram type.
17609 If EMIT_NAME_P is true, name and source coordinate attributes
17613 gen_formal_parameter_die (tree node
, tree origin
, bool emit_name_p
,
17614 dw_die_ref context_die
)
17616 tree node_or_origin
= node
? node
: origin
;
17617 tree ultimate_origin
;
17618 dw_die_ref parm_die
17619 = new_die (DW_TAG_formal_parameter
, context_die
, node
);
17621 switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin
)))
17623 case tcc_declaration
:
17624 ultimate_origin
= decl_ultimate_origin (node_or_origin
);
17625 if (node
|| ultimate_origin
)
17626 origin
= ultimate_origin
;
17627 if (origin
!= NULL
)
17628 add_abstract_origin_attribute (parm_die
, origin
);
17629 else if (emit_name_p
)
17630 add_name_and_src_coords_attributes (parm_die
, node
);
17632 || (! DECL_ABSTRACT (node_or_origin
)
17633 && variably_modified_type_p (TREE_TYPE (node_or_origin
),
17634 decl_function_context
17635 (node_or_origin
))))
17637 tree type
= TREE_TYPE (node_or_origin
);
17638 if (decl_by_reference_p (node_or_origin
))
17639 add_type_attribute (parm_die
, TREE_TYPE (type
), 0, 0,
17642 add_type_attribute (parm_die
, type
,
17643 TREE_READONLY (node_or_origin
),
17644 TREE_THIS_VOLATILE (node_or_origin
),
17647 if (origin
== NULL
&& DECL_ARTIFICIAL (node
))
17648 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
17650 if (node
&& node
!= origin
)
17651 equate_decl_number_to_die (node
, parm_die
);
17652 if (! DECL_ABSTRACT (node_or_origin
))
17653 add_location_or_const_value_attribute (parm_die
, node_or_origin
,
17654 node
== NULL
, DW_AT_location
);
17659 /* We were called with some kind of a ..._TYPE node. */
17660 add_type_attribute (parm_die
, node_or_origin
, 0, 0, context_die
);
17664 gcc_unreachable ();
17670 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
17671 children DW_TAG_formal_parameter DIEs representing the arguments of the
17674 PARM_PACK must be a function parameter pack.
17675 PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
17676 must point to the subsequent arguments of the function PACK_ARG belongs to.
17677 SUBR_DIE is the DIE of the function PACK_ARG belongs to.
17678 If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
17679 following the last one for which a DIE was generated. */
17682 gen_formal_parameter_pack_die (tree parm_pack
,
17684 dw_die_ref subr_die
,
17688 dw_die_ref parm_pack_die
;
17690 gcc_assert (parm_pack
17691 && lang_hooks
.function_parameter_pack_p (parm_pack
)
17694 parm_pack_die
= new_die (DW_TAG_GNU_formal_parameter_pack
, subr_die
, parm_pack
);
17695 add_src_coords_attributes (parm_pack_die
, parm_pack
);
17697 for (arg
= pack_arg
; arg
; arg
= DECL_CHAIN (arg
))
17699 if (! lang_hooks
.decls
.function_parm_expanded_from_pack_p (arg
,
17702 gen_formal_parameter_die (arg
, NULL
,
17703 false /* Don't emit name attribute. */,
17708 return parm_pack_die
;
17711 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
17712 at the end of an (ANSI prototyped) formal parameters list. */
17715 gen_unspecified_parameters_die (tree decl_or_type
, dw_die_ref context_die
)
17717 new_die (DW_TAG_unspecified_parameters
, context_die
, decl_or_type
);
17720 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
17721 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
17722 parameters as specified in some function type specification (except for
17723 those which appear as part of a function *definition*). */
17726 gen_formal_types_die (tree function_or_method_type
, dw_die_ref context_die
)
17729 tree formal_type
= NULL
;
17730 tree first_parm_type
;
17733 if (TREE_CODE (function_or_method_type
) == FUNCTION_DECL
)
17735 arg
= DECL_ARGUMENTS (function_or_method_type
);
17736 function_or_method_type
= TREE_TYPE (function_or_method_type
);
17741 first_parm_type
= TYPE_ARG_TYPES (function_or_method_type
);
17743 /* Make our first pass over the list of formal parameter types and output a
17744 DW_TAG_formal_parameter DIE for each one. */
17745 for (link
= first_parm_type
; link
; )
17747 dw_die_ref parm_die
;
17749 formal_type
= TREE_VALUE (link
);
17750 if (formal_type
== void_type_node
)
17753 /* Output a (nameless) DIE to represent the formal parameter itself. */
17754 parm_die
= gen_formal_parameter_die (formal_type
, NULL
,
17755 true /* Emit name attribute. */,
17757 if (TREE_CODE (function_or_method_type
) == METHOD_TYPE
17758 && link
== first_parm_type
)
17760 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
17761 if (dwarf_version
>= 3 || !dwarf_strict
)
17762 add_AT_die_ref (context_die
, DW_AT_object_pointer
, parm_die
);
17764 else if (arg
&& DECL_ARTIFICIAL (arg
))
17765 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
17767 link
= TREE_CHAIN (link
);
17769 arg
= DECL_CHAIN (arg
);
17772 /* If this function type has an ellipsis, add a
17773 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
17774 if (formal_type
!= void_type_node
)
17775 gen_unspecified_parameters_die (function_or_method_type
, context_die
);
17777 /* Make our second (and final) pass over the list of formal parameter types
17778 and output DIEs to represent those types (as necessary). */
17779 for (link
= TYPE_ARG_TYPES (function_or_method_type
);
17780 link
&& TREE_VALUE (link
);
17781 link
= TREE_CHAIN (link
))
17782 gen_type_die (TREE_VALUE (link
), context_die
);
17785 /* We want to generate the DIE for TYPE so that we can generate the
17786 die for MEMBER, which has been defined; we will need to refer back
17787 to the member declaration nested within TYPE. If we're trying to
17788 generate minimal debug info for TYPE, processing TYPE won't do the
17789 trick; we need to attach the member declaration by hand. */
17792 gen_type_die_for_member (tree type
, tree member
, dw_die_ref context_die
)
17794 gen_type_die (type
, context_die
);
17796 /* If we're trying to avoid duplicate debug info, we may not have
17797 emitted the member decl for this function. Emit it now. */
17798 if (TYPE_STUB_DECL (type
)
17799 && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))
17800 && ! lookup_decl_die (member
))
17802 dw_die_ref type_die
;
17803 gcc_assert (!decl_ultimate_origin (member
));
17805 push_decl_scope (type
);
17806 type_die
= lookup_type_die_strip_naming_typedef (type
);
17807 if (TREE_CODE (member
) == FUNCTION_DECL
)
17808 gen_subprogram_die (member
, type_die
);
17809 else if (TREE_CODE (member
) == FIELD_DECL
)
17811 /* Ignore the nameless fields that are used to skip bits but handle
17812 C++ anonymous unions and structs. */
17813 if (DECL_NAME (member
) != NULL_TREE
17814 || TREE_CODE (TREE_TYPE (member
)) == UNION_TYPE
17815 || TREE_CODE (TREE_TYPE (member
)) == RECORD_TYPE
)
17817 gen_type_die (member_declared_type (member
), type_die
);
17818 gen_field_die (member
, type_die
);
17822 gen_variable_die (member
, NULL_TREE
, type_die
);
17828 /* Forward declare these functions, because they are mutually recursive
17829 with their set_block_* pairing functions. */
17830 static void set_decl_origin_self (tree
);
17831 static void set_decl_abstract_flags (tree
, int);
17833 /* Given a pointer to some BLOCK node, if the BLOCK_ABSTRACT_ORIGIN for the
17834 given BLOCK node is NULL, set the BLOCK_ABSTRACT_ORIGIN for the node so
17835 that it points to the node itself, thus indicating that the node is its
17836 own (abstract) origin. Additionally, if the BLOCK_ABSTRACT_ORIGIN for
17837 the given node is NULL, recursively descend the decl/block tree which
17838 it is the root of, and for each other ..._DECL or BLOCK node contained
17839 therein whose DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also
17840 still NULL, set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN
17841 values to point to themselves. */
17844 set_block_origin_self (tree stmt
)
17846 if (BLOCK_ABSTRACT_ORIGIN (stmt
) == NULL_TREE
)
17848 BLOCK_ABSTRACT_ORIGIN (stmt
) = stmt
;
17853 for (local_decl
= BLOCK_VARS (stmt
);
17854 local_decl
!= NULL_TREE
;
17855 local_decl
= DECL_CHAIN (local_decl
))
17856 if (! DECL_EXTERNAL (local_decl
))
17857 set_decl_origin_self (local_decl
); /* Potential recursion. */
17863 for (subblock
= BLOCK_SUBBLOCKS (stmt
);
17864 subblock
!= NULL_TREE
;
17865 subblock
= BLOCK_CHAIN (subblock
))
17866 set_block_origin_self (subblock
); /* Recurse. */
17871 /* Given a pointer to some ..._DECL node, if the DECL_ABSTRACT_ORIGIN for
17872 the given ..._DECL node is NULL, set the DECL_ABSTRACT_ORIGIN for the
17873 node to so that it points to the node itself, thus indicating that the
17874 node represents its own (abstract) origin. Additionally, if the
17875 DECL_ABSTRACT_ORIGIN for the given node is NULL, recursively descend
17876 the decl/block tree of which the given node is the root of, and for
17877 each other ..._DECL or BLOCK node contained therein whose
17878 DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also still NULL,
17879 set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
17880 point to themselves. */
17883 set_decl_origin_self (tree decl
)
17885 if (DECL_ABSTRACT_ORIGIN (decl
) == NULL_TREE
)
17887 DECL_ABSTRACT_ORIGIN (decl
) = decl
;
17888 if (TREE_CODE (decl
) == FUNCTION_DECL
)
17892 for (arg
= DECL_ARGUMENTS (decl
); arg
; arg
= DECL_CHAIN (arg
))
17893 DECL_ABSTRACT_ORIGIN (arg
) = arg
;
17894 if (DECL_INITIAL (decl
) != NULL_TREE
17895 && DECL_INITIAL (decl
) != error_mark_node
)
17896 set_block_origin_self (DECL_INITIAL (decl
));
17901 /* Given a pointer to some BLOCK node, and a boolean value to set the
17902 "abstract" flags to, set that value into the BLOCK_ABSTRACT flag for
17903 the given block, and for all local decls and all local sub-blocks
17904 (recursively) which are contained therein. */
17907 set_block_abstract_flags (tree stmt
, int setting
)
17913 BLOCK_ABSTRACT (stmt
) = setting
;
17915 for (local_decl
= BLOCK_VARS (stmt
);
17916 local_decl
!= NULL_TREE
;
17917 local_decl
= DECL_CHAIN (local_decl
))
17918 if (! DECL_EXTERNAL (local_decl
))
17919 set_decl_abstract_flags (local_decl
, setting
);
17921 for (i
= 0; i
< BLOCK_NUM_NONLOCALIZED_VARS (stmt
); i
++)
17923 local_decl
= BLOCK_NONLOCALIZED_VAR (stmt
, i
);
17924 if ((TREE_CODE (local_decl
) == VAR_DECL
&& !TREE_STATIC (local_decl
))
17925 || TREE_CODE (local_decl
) == PARM_DECL
)
17926 set_decl_abstract_flags (local_decl
, setting
);
17929 for (subblock
= BLOCK_SUBBLOCKS (stmt
);
17930 subblock
!= NULL_TREE
;
17931 subblock
= BLOCK_CHAIN (subblock
))
17932 set_block_abstract_flags (subblock
, setting
);
17935 /* Given a pointer to some ..._DECL node, and a boolean value to set the
17936 "abstract" flags to, set that value into the DECL_ABSTRACT flag for the
17937 given decl, and (in the case where the decl is a FUNCTION_DECL) also
17938 set the abstract flags for all of the parameters, local vars, local
17939 blocks and sub-blocks (recursively) to the same setting. */
17942 set_decl_abstract_flags (tree decl
, int setting
)
17944 DECL_ABSTRACT (decl
) = setting
;
17945 if (TREE_CODE (decl
) == FUNCTION_DECL
)
17949 for (arg
= DECL_ARGUMENTS (decl
); arg
; arg
= DECL_CHAIN (arg
))
17950 DECL_ABSTRACT (arg
) = setting
;
17951 if (DECL_INITIAL (decl
) != NULL_TREE
17952 && DECL_INITIAL (decl
) != error_mark_node
)
17953 set_block_abstract_flags (DECL_INITIAL (decl
), setting
);
17957 /* Generate the DWARF2 info for the "abstract" instance of a function which we
17958 may later generate inlined and/or out-of-line instances of. */
17961 dwarf2out_abstract_function (tree decl
)
17963 dw_die_ref old_die
;
17967 htab_t old_decl_loc_table
;
17968 htab_t old_cached_dw_loc_list_table
;
17969 int old_call_site_count
, old_tail_call_site_count
;
17970 struct call_arg_loc_node
*old_call_arg_locations
;
17972 /* Make sure we have the actual abstract inline, not a clone. */
17973 decl
= DECL_ORIGIN (decl
);
17975 old_die
= lookup_decl_die (decl
);
17976 if (old_die
&& get_AT (old_die
, DW_AT_inline
))
17977 /* We've already generated the abstract instance. */
17980 /* We can be called while recursively when seeing block defining inlined subroutine
17981 DIE. Be sure to not clobber the outer location table nor use it or we would
17982 get locations in abstract instantces. */
17983 old_decl_loc_table
= decl_loc_table
;
17984 decl_loc_table
= NULL
;
17985 old_cached_dw_loc_list_table
= cached_dw_loc_list_table
;
17986 cached_dw_loc_list_table
= NULL
;
17987 old_call_arg_locations
= call_arg_locations
;
17988 call_arg_locations
= NULL
;
17989 old_call_site_count
= call_site_count
;
17990 call_site_count
= -1;
17991 old_tail_call_site_count
= tail_call_site_count
;
17992 tail_call_site_count
= -1;
17994 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
17995 we don't get confused by DECL_ABSTRACT. */
17996 if (debug_info_level
> DINFO_LEVEL_TERSE
)
17998 context
= decl_class_context (decl
);
18000 gen_type_die_for_member
18001 (context
, decl
, decl_function_context (decl
) ? NULL
: comp_unit_die ());
18004 /* Pretend we've just finished compiling this function. */
18005 save_fn
= current_function_decl
;
18006 current_function_decl
= decl
;
18008 was_abstract
= DECL_ABSTRACT (decl
);
18009 set_decl_abstract_flags (decl
, 1);
18010 dwarf2out_decl (decl
);
18011 if (! was_abstract
)
18012 set_decl_abstract_flags (decl
, 0);
18014 current_function_decl
= save_fn
;
18015 decl_loc_table
= old_decl_loc_table
;
18016 cached_dw_loc_list_table
= old_cached_dw_loc_list_table
;
18017 call_arg_locations
= old_call_arg_locations
;
18018 call_site_count
= old_call_site_count
;
18019 tail_call_site_count
= old_tail_call_site_count
;
18022 /* Helper function of premark_used_types() which gets called through
18025 Marks the DIE of a given type in *SLOT as perennial, so it never gets
18026 marked as unused by prune_unused_types. */
18029 premark_used_types_helper (void **slot
, void *data ATTRIBUTE_UNUSED
)
18034 type
= (tree
) *slot
;
18035 die
= lookup_type_die (type
);
18037 die
->die_perennial_p
= 1;
18041 /* Helper function of premark_types_used_by_global_vars which gets called
18042 through htab_traverse.
18044 Marks the DIE of a given type in *SLOT as perennial, so it never gets
18045 marked as unused by prune_unused_types. The DIE of the type is marked
18046 only if the global variable using the type will actually be emitted. */
18049 premark_types_used_by_global_vars_helper (void **slot
,
18050 void *data ATTRIBUTE_UNUSED
)
18052 struct types_used_by_vars_entry
*entry
;
18055 entry
= (struct types_used_by_vars_entry
*) *slot
;
18056 gcc_assert (entry
->type
!= NULL
18057 && entry
->var_decl
!= NULL
);
18058 die
= lookup_type_die (entry
->type
);
18061 /* Ask cgraph if the global variable really is to be emitted.
18062 If yes, then we'll keep the DIE of ENTRY->TYPE. */
18063 varpool_node
*node
= varpool_get_node (entry
->var_decl
);
18064 if (node
&& node
->definition
)
18066 die
->die_perennial_p
= 1;
18067 /* Keep the parent DIEs as well. */
18068 while ((die
= die
->die_parent
) && die
->die_perennial_p
== 0)
18069 die
->die_perennial_p
= 1;
18075 /* Mark all members of used_types_hash as perennial. */
18078 premark_used_types (struct function
*fun
)
18080 if (fun
&& fun
->used_types_hash
)
18081 htab_traverse (fun
->used_types_hash
, premark_used_types_helper
, NULL
);
18084 /* Mark all members of types_used_by_vars_entry as perennial. */
18087 premark_types_used_by_global_vars (void)
18089 if (types_used_by_vars_hash
)
18090 htab_traverse (types_used_by_vars_hash
,
18091 premark_types_used_by_global_vars_helper
, NULL
);
18094 /* Generate a DW_TAG_GNU_call_site DIE in function DECL under SUBR_DIE
18095 for CA_LOC call arg loc node. */
18098 gen_call_site_die (tree decl
, dw_die_ref subr_die
,
18099 struct call_arg_loc_node
*ca_loc
)
18101 dw_die_ref stmt_die
= NULL
, die
;
18102 tree block
= ca_loc
->block
;
18105 && block
!= DECL_INITIAL (decl
)
18106 && TREE_CODE (block
) == BLOCK
)
18108 if (block_map
.length () > BLOCK_NUMBER (block
))
18109 stmt_die
= block_map
[BLOCK_NUMBER (block
)];
18112 block
= BLOCK_SUPERCONTEXT (block
);
18114 if (stmt_die
== NULL
)
18115 stmt_die
= subr_die
;
18116 die
= new_die (DW_TAG_GNU_call_site
, stmt_die
, NULL_TREE
);
18117 add_AT_lbl_id (die
, DW_AT_low_pc
, ca_loc
->label
);
18118 if (ca_loc
->tail_call_p
)
18119 add_AT_flag (die
, DW_AT_GNU_tail_call
, 1);
18120 if (ca_loc
->symbol_ref
)
18122 dw_die_ref tdie
= lookup_decl_die (SYMBOL_REF_DECL (ca_loc
->symbol_ref
));
18124 add_AT_die_ref (die
, DW_AT_abstract_origin
, tdie
);
18126 add_AT_addr (die
, DW_AT_abstract_origin
, ca_loc
->symbol_ref
, false);
18131 /* Generate a DIE to represent a declared function (either file-scope or
18135 gen_subprogram_die (tree decl
, dw_die_ref context_die
)
18137 tree origin
= decl_ultimate_origin (decl
);
18138 dw_die_ref subr_die
;
18140 dw_die_ref old_die
= lookup_decl_die (decl
);
18141 int declaration
= (current_function_decl
!= decl
18142 || class_or_namespace_scope_p (context_die
));
18144 premark_used_types (DECL_STRUCT_FUNCTION (decl
));
18146 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
18147 started to generate the abstract instance of an inline, decided to output
18148 its containing class, and proceeded to emit the declaration of the inline
18149 from the member list for the class. If so, DECLARATION takes priority;
18150 we'll get back to the abstract instance when done with the class. */
18152 /* The class-scope declaration DIE must be the primary DIE. */
18153 if (origin
&& declaration
&& class_or_namespace_scope_p (context_die
))
18156 gcc_assert (!old_die
);
18159 /* Now that the C++ front end lazily declares artificial member fns, we
18160 might need to retrofit the declaration into its class. */
18161 if (!declaration
&& !origin
&& !old_die
18162 && DECL_CONTEXT (decl
) && TYPE_P (DECL_CONTEXT (decl
))
18163 && !class_or_namespace_scope_p (context_die
)
18164 && debug_info_level
> DINFO_LEVEL_TERSE
)
18165 old_die
= force_decl_die (decl
);
18167 if (origin
!= NULL
)
18169 gcc_assert (!declaration
|| local_scope_p (context_die
));
18171 /* Fixup die_parent for the abstract instance of a nested
18172 inline function. */
18173 if (old_die
&& old_die
->die_parent
== NULL
)
18174 add_child_die (context_die
, old_die
);
18176 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
18177 add_abstract_origin_attribute (subr_die
, origin
);
18178 /* This is where the actual code for a cloned function is.
18179 Let's emit linkage name attribute for it. This helps
18180 debuggers to e.g, set breakpoints into
18181 constructors/destructors when the user asks "break
18183 add_linkage_name (subr_die
, decl
);
18187 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
18188 struct dwarf_file_data
* file_index
= lookup_filename (s
.file
);
18190 if (!get_AT_flag (old_die
, DW_AT_declaration
)
18191 /* We can have a normal definition following an inline one in the
18192 case of redefinition of GNU C extern inlines.
18193 It seems reasonable to use AT_specification in this case. */
18194 && !get_AT (old_die
, DW_AT_inline
))
18196 /* Detect and ignore this case, where we are trying to output
18197 something we have already output. */
18201 /* If the definition comes from the same place as the declaration,
18202 maybe use the old DIE. We always want the DIE for this function
18203 that has the *_pc attributes to be under comp_unit_die so the
18204 debugger can find it. We also need to do this for abstract
18205 instances of inlines, since the spec requires the out-of-line copy
18206 to have the same parent. For local class methods, this doesn't
18207 apply; we just use the old DIE. */
18208 if ((is_cu_die (old_die
->die_parent
) || context_die
== NULL
)
18209 && (DECL_ARTIFICIAL (decl
)
18210 || (get_AT_file (old_die
, DW_AT_decl_file
) == file_index
18211 && (get_AT_unsigned (old_die
, DW_AT_decl_line
)
18212 == (unsigned) s
.line
))))
18214 subr_die
= old_die
;
18216 /* Clear out the declaration attribute and the formal parameters.
18217 Do not remove all children, because it is possible that this
18218 declaration die was forced using force_decl_die(). In such
18219 cases die that forced declaration die (e.g. TAG_imported_module)
18220 is one of the children that we do not want to remove. */
18221 remove_AT (subr_die
, DW_AT_declaration
);
18222 remove_AT (subr_die
, DW_AT_object_pointer
);
18223 remove_child_TAG (subr_die
, DW_TAG_formal_parameter
);
18227 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
18228 add_AT_specification (subr_die
, old_die
);
18229 add_pubname (decl
, subr_die
);
18230 if (get_AT_file (old_die
, DW_AT_decl_file
) != file_index
)
18231 add_AT_file (subr_die
, DW_AT_decl_file
, file_index
);
18232 if (get_AT_unsigned (old_die
, DW_AT_decl_line
) != (unsigned) s
.line
)
18233 add_AT_unsigned (subr_die
, DW_AT_decl_line
, s
.line
);
18235 /* If the prototype had an 'auto' or 'decltype(auto)' return type,
18236 emit the real type on the definition die. */
18237 if (is_cxx() && debug_info_level
> DINFO_LEVEL_TERSE
)
18239 dw_die_ref die
= get_AT_ref (old_die
, DW_AT_type
);
18240 if (die
== auto_die
|| die
== decltype_auto_die
)
18241 add_type_attribute (subr_die
, TREE_TYPE (TREE_TYPE (decl
)),
18242 0, 0, context_die
);
18248 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
18250 if (TREE_PUBLIC (decl
))
18251 add_AT_flag (subr_die
, DW_AT_external
, 1);
18253 add_name_and_src_coords_attributes (subr_die
, decl
);
18254 add_pubname (decl
, subr_die
);
18255 if (debug_info_level
> DINFO_LEVEL_TERSE
)
18257 add_prototyped_attribute (subr_die
, TREE_TYPE (decl
));
18258 add_type_attribute (subr_die
, TREE_TYPE (TREE_TYPE (decl
)),
18259 0, 0, context_die
);
18262 add_pure_or_virtual_attribute (subr_die
, decl
);
18263 if (DECL_ARTIFICIAL (decl
))
18264 add_AT_flag (subr_die
, DW_AT_artificial
, 1);
18266 add_accessibility_attribute (subr_die
, decl
);
18271 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
18273 add_AT_flag (subr_die
, DW_AT_declaration
, 1);
18275 /* If this is an explicit function declaration then generate
18276 a DW_AT_explicit attribute. */
18277 if (lang_hooks
.decls
.function_decl_explicit_p (decl
)
18278 && (dwarf_version
>= 3 || !dwarf_strict
))
18279 add_AT_flag (subr_die
, DW_AT_explicit
, 1);
18281 /* The first time we see a member function, it is in the context of
18282 the class to which it belongs. We make sure of this by emitting
18283 the class first. The next time is the definition, which is
18284 handled above. The two may come from the same source text.
18286 Note that force_decl_die() forces function declaration die. It is
18287 later reused to represent definition. */
18288 equate_decl_number_to_die (decl
, subr_die
);
18291 else if (DECL_ABSTRACT (decl
))
18293 if (DECL_DECLARED_INLINE_P (decl
))
18295 if (cgraph_function_possibly_inlined_p (decl
))
18296 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_inlined
);
18298 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_not_inlined
);
18302 if (cgraph_function_possibly_inlined_p (decl
))
18303 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_inlined
);
18305 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_not_inlined
);
18308 if (DECL_DECLARED_INLINE_P (decl
)
18309 && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl
)))
18310 add_AT_flag (subr_die
, DW_AT_artificial
, 1);
18312 equate_decl_number_to_die (decl
, subr_die
);
18314 else if (!DECL_EXTERNAL (decl
))
18316 HOST_WIDE_INT cfa_fb_offset
;
18317 struct function
*fun
= DECL_STRUCT_FUNCTION (decl
);
18319 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
18320 equate_decl_number_to_die (decl
, subr_die
);
18322 gcc_checking_assert (fun
);
18323 if (!flag_reorder_blocks_and_partition
)
18325 dw_fde_ref fde
= fun
->fde
;
18326 if (fde
->dw_fde_begin
)
18328 /* We have already generated the labels. */
18329 add_AT_low_high_pc (subr_die
, fde
->dw_fde_begin
,
18330 fde
->dw_fde_end
, false);
18334 /* Create start/end labels and add the range. */
18335 char label_id_low
[MAX_ARTIFICIAL_LABEL_BYTES
];
18336 char label_id_high
[MAX_ARTIFICIAL_LABEL_BYTES
];
18337 ASM_GENERATE_INTERNAL_LABEL (label_id_low
, FUNC_BEGIN_LABEL
,
18338 current_function_funcdef_no
);
18339 ASM_GENERATE_INTERNAL_LABEL (label_id_high
, FUNC_END_LABEL
,
18340 current_function_funcdef_no
);
18341 add_AT_low_high_pc (subr_die
, label_id_low
, label_id_high
,
18345 #if VMS_DEBUGGING_INFO
18346 /* HP OpenVMS Industry Standard 64: DWARF Extensions
18347 Section 2.3 Prologue and Epilogue Attributes:
18348 When a breakpoint is set on entry to a function, it is generally
18349 desirable for execution to be suspended, not on the very first
18350 instruction of the function, but rather at a point after the
18351 function's frame has been set up, after any language defined local
18352 declaration processing has been completed, and before execution of
18353 the first statement of the function begins. Debuggers generally
18354 cannot properly determine where this point is. Similarly for a
18355 breakpoint set on exit from a function. The prologue and epilogue
18356 attributes allow a compiler to communicate the location(s) to use. */
18359 if (fde
->dw_fde_vms_end_prologue
)
18360 add_AT_vms_delta (subr_die
, DW_AT_HP_prologue
,
18361 fde
->dw_fde_begin
, fde
->dw_fde_vms_end_prologue
);
18363 if (fde
->dw_fde_vms_begin_epilogue
)
18364 add_AT_vms_delta (subr_die
, DW_AT_HP_epilogue
,
18365 fde
->dw_fde_begin
, fde
->dw_fde_vms_begin_epilogue
);
18372 /* Generate pubnames entries for the split function code ranges. */
18373 dw_fde_ref fde
= fun
->fde
;
18375 if (fde
->dw_fde_second_begin
)
18377 if (dwarf_version
>= 3 || !dwarf_strict
)
18379 /* We should use ranges for non-contiguous code section
18380 addresses. Use the actual code range for the initial
18381 section, since the HOT/COLD labels might precede an
18382 alignment offset. */
18383 bool range_list_added
= false;
18384 add_ranges_by_labels (subr_die
, fde
->dw_fde_begin
,
18385 fde
->dw_fde_end
, &range_list_added
,
18387 add_ranges_by_labels (subr_die
, fde
->dw_fde_second_begin
,
18388 fde
->dw_fde_second_end
,
18389 &range_list_added
, false);
18390 if (range_list_added
)
18395 /* There is no real support in DW2 for this .. so we make
18396 a work-around. First, emit the pub name for the segment
18397 containing the function label. Then make and emit a
18398 simplified subprogram DIE for the second segment with the
18399 name pre-fixed by __hot/cold_sect_of_. We use the same
18400 linkage name for the second die so that gdb will find both
18401 sections when given "b foo". */
18402 const char *name
= NULL
;
18403 tree decl_name
= DECL_NAME (decl
);
18404 dw_die_ref seg_die
;
18406 /* Do the 'primary' section. */
18407 add_AT_low_high_pc (subr_die
, fde
->dw_fde_begin
,
18408 fde
->dw_fde_end
, false);
18410 /* Build a minimal DIE for the secondary section. */
18411 seg_die
= new_die (DW_TAG_subprogram
,
18412 subr_die
->die_parent
, decl
);
18414 if (TREE_PUBLIC (decl
))
18415 add_AT_flag (seg_die
, DW_AT_external
, 1);
18417 if (decl_name
!= NULL
18418 && IDENTIFIER_POINTER (decl_name
) != NULL
)
18420 name
= dwarf2_name (decl
, 1);
18421 if (! DECL_ARTIFICIAL (decl
))
18422 add_src_coords_attributes (seg_die
, decl
);
18424 add_linkage_name (seg_die
, decl
);
18426 gcc_assert (name
!= NULL
);
18427 add_pure_or_virtual_attribute (seg_die
, decl
);
18428 if (DECL_ARTIFICIAL (decl
))
18429 add_AT_flag (seg_die
, DW_AT_artificial
, 1);
18431 name
= concat ("__second_sect_of_", name
, NULL
);
18432 add_AT_low_high_pc (seg_die
, fde
->dw_fde_second_begin
,
18433 fde
->dw_fde_second_end
, false);
18434 add_name_attribute (seg_die
, name
);
18435 if (want_pubnames ())
18436 add_pubname_string (name
, seg_die
);
18440 add_AT_low_high_pc (subr_die
, fde
->dw_fde_begin
, fde
->dw_fde_end
,
18444 cfa_fb_offset
= CFA_FRAME_BASE_OFFSET (decl
);
18446 /* We define the "frame base" as the function's CFA. This is more
18447 convenient for several reasons: (1) It's stable across the prologue
18448 and epilogue, which makes it better than just a frame pointer,
18449 (2) With dwarf3, there exists a one-byte encoding that allows us
18450 to reference the .debug_frame data by proxy, but failing that,
18451 (3) We can at least reuse the code inspection and interpretation
18452 code that determines the CFA position at various points in the
18454 if (dwarf_version
>= 3 && targetm
.debug_unwind_info () == UI_DWARF2
)
18456 dw_loc_descr_ref op
= new_loc_descr (DW_OP_call_frame_cfa
, 0, 0);
18457 add_AT_loc (subr_die
, DW_AT_frame_base
, op
);
18461 dw_loc_list_ref list
= convert_cfa_to_fb_loc_list (cfa_fb_offset
);
18462 if (list
->dw_loc_next
)
18463 add_AT_loc_list (subr_die
, DW_AT_frame_base
, list
);
18465 add_AT_loc (subr_die
, DW_AT_frame_base
, list
->expr
);
18468 /* Compute a displacement from the "steady-state frame pointer" to
18469 the CFA. The former is what all stack slots and argument slots
18470 will reference in the rtl; the latter is what we've told the
18471 debugger about. We'll need to adjust all frame_base references
18472 by this displacement. */
18473 compute_frame_pointer_to_fb_displacement (cfa_fb_offset
);
18475 if (fun
->static_chain_decl
)
18476 add_AT_location_description (subr_die
, DW_AT_static_link
,
18477 loc_list_from_tree (fun
->static_chain_decl
, 2));
18480 /* Generate child dies for template paramaters. */
18481 if (debug_info_level
> DINFO_LEVEL_TERSE
)
18482 gen_generic_params_dies (decl
);
18484 /* Now output descriptions of the arguments for this function. This gets
18485 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
18486 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
18487 `...' at the end of the formal parameter list. In order to find out if
18488 there was a trailing ellipsis or not, we must instead look at the type
18489 associated with the FUNCTION_DECL. This will be a node of type
18490 FUNCTION_TYPE. If the chain of type nodes hanging off of this
18491 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
18492 an ellipsis at the end. */
18494 /* In the case where we are describing a mere function declaration, all we
18495 need to do here (and all we *can* do here) is to describe the *types* of
18496 its formal parameters. */
18497 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
18499 else if (declaration
)
18500 gen_formal_types_die (decl
, subr_die
);
18503 /* Generate DIEs to represent all known formal parameters. */
18504 tree parm
= DECL_ARGUMENTS (decl
);
18505 tree generic_decl
= lang_hooks
.decls
.get_generic_function_decl (decl
);
18506 tree generic_decl_parm
= generic_decl
18507 ? DECL_ARGUMENTS (generic_decl
)
18510 /* Now we want to walk the list of parameters of the function and
18511 emit their relevant DIEs.
18513 We consider the case of DECL being an instance of a generic function
18514 as well as it being a normal function.
18516 If DECL is an instance of a generic function we walk the
18517 parameters of the generic function declaration _and_ the parameters of
18518 DECL itself. This is useful because we want to emit specific DIEs for
18519 function parameter packs and those are declared as part of the
18520 generic function declaration. In that particular case,
18521 the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
18522 That DIE has children DIEs representing the set of arguments
18523 of the pack. Note that the set of pack arguments can be empty.
18524 In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
18527 Otherwise, we just consider the parameters of DECL. */
18528 while (generic_decl_parm
|| parm
)
18530 if (generic_decl_parm
18531 && lang_hooks
.function_parameter_pack_p (generic_decl_parm
))
18532 gen_formal_parameter_pack_die (generic_decl_parm
,
18537 dw_die_ref parm_die
= gen_decl_die (parm
, NULL
, subr_die
);
18539 if (parm
== DECL_ARGUMENTS (decl
)
18540 && TREE_CODE (TREE_TYPE (decl
)) == METHOD_TYPE
18542 && (dwarf_version
>= 3 || !dwarf_strict
))
18543 add_AT_die_ref (subr_die
, DW_AT_object_pointer
, parm_die
);
18545 parm
= DECL_CHAIN (parm
);
18548 if (generic_decl_parm
)
18549 generic_decl_parm
= DECL_CHAIN (generic_decl_parm
);
18552 /* Decide whether we need an unspecified_parameters DIE at the end.
18553 There are 2 more cases to do this for: 1) the ansi ... declaration -
18554 this is detectable when the end of the arg list is not a
18555 void_type_node 2) an unprototyped function declaration (not a
18556 definition). This just means that we have no info about the
18557 parameters at all. */
18558 if (prototype_p (TREE_TYPE (decl
)))
18560 /* This is the prototyped case, check for.... */
18561 if (stdarg_p (TREE_TYPE (decl
)))
18562 gen_unspecified_parameters_die (decl
, subr_die
);
18564 else if (DECL_INITIAL (decl
) == NULL_TREE
)
18565 gen_unspecified_parameters_die (decl
, subr_die
);
18568 /* Output Dwarf info for all of the stuff within the body of the function
18569 (if it has one - it may be just a declaration). */
18570 outer_scope
= DECL_INITIAL (decl
);
18572 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
18573 a function. This BLOCK actually represents the outermost binding contour
18574 for the function, i.e. the contour in which the function's formal
18575 parameters and labels get declared. Curiously, it appears that the front
18576 end doesn't actually put the PARM_DECL nodes for the current function onto
18577 the BLOCK_VARS list for this outer scope, but are strung off of the
18578 DECL_ARGUMENTS list for the function instead.
18580 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
18581 the LABEL_DECL nodes for the function however, and we output DWARF info
18582 for those in decls_for_scope. Just within the `outer_scope' there will be
18583 a BLOCK node representing the function's outermost pair of curly braces,
18584 and any blocks used for the base and member initializers of a C++
18585 constructor function. */
18586 if (! declaration
&& outer_scope
&& TREE_CODE (outer_scope
) != ERROR_MARK
)
18588 int call_site_note_count
= 0;
18589 int tail_call_site_note_count
= 0;
18591 /* Emit a DW_TAG_variable DIE for a named return value. */
18592 if (DECL_NAME (DECL_RESULT (decl
)))
18593 gen_decl_die (DECL_RESULT (decl
), NULL
, subr_die
);
18595 current_function_has_inlines
= 0;
18596 decls_for_scope (outer_scope
, subr_die
, 0);
18598 if (call_arg_locations
&& !dwarf_strict
)
18600 struct call_arg_loc_node
*ca_loc
;
18601 for (ca_loc
= call_arg_locations
; ca_loc
; ca_loc
= ca_loc
->next
)
18603 dw_die_ref die
= NULL
;
18604 rtx tloc
= NULL_RTX
, tlocc
= NULL_RTX
;
18607 for (arg
= NOTE_VAR_LOCATION (ca_loc
->call_arg_loc_note
);
18608 arg
; arg
= next_arg
)
18610 dw_loc_descr_ref reg
, val
;
18611 enum machine_mode mode
= GET_MODE (XEXP (XEXP (arg
, 0), 1));
18612 dw_die_ref cdie
, tdie
= NULL
;
18614 next_arg
= XEXP (arg
, 1);
18615 if (REG_P (XEXP (XEXP (arg
, 0), 0))
18617 && MEM_P (XEXP (XEXP (next_arg
, 0), 0))
18618 && REG_P (XEXP (XEXP (XEXP (next_arg
, 0), 0), 0))
18619 && REGNO (XEXP (XEXP (arg
, 0), 0))
18620 == REGNO (XEXP (XEXP (XEXP (next_arg
, 0), 0), 0)))
18621 next_arg
= XEXP (next_arg
, 1);
18622 if (mode
== VOIDmode
)
18624 mode
= GET_MODE (XEXP (XEXP (arg
, 0), 0));
18625 if (mode
== VOIDmode
)
18626 mode
= GET_MODE (XEXP (arg
, 0));
18628 if (mode
== VOIDmode
|| mode
== BLKmode
)
18630 if (XEXP (XEXP (arg
, 0), 0) == pc_rtx
)
18632 gcc_assert (ca_loc
->symbol_ref
== NULL_RTX
);
18633 tloc
= XEXP (XEXP (arg
, 0), 1);
18636 else if (GET_CODE (XEXP (XEXP (arg
, 0), 0)) == CLOBBER
18637 && XEXP (XEXP (XEXP (arg
, 0), 0), 0) == pc_rtx
)
18639 gcc_assert (ca_loc
->symbol_ref
== NULL_RTX
);
18640 tlocc
= XEXP (XEXP (arg
, 0), 1);
18644 if (REG_P (XEXP (XEXP (arg
, 0), 0)))
18645 reg
= reg_loc_descriptor (XEXP (XEXP (arg
, 0), 0),
18646 VAR_INIT_STATUS_INITIALIZED
);
18647 else if (MEM_P (XEXP (XEXP (arg
, 0), 0)))
18649 rtx mem
= XEXP (XEXP (arg
, 0), 0);
18650 reg
= mem_loc_descriptor (XEXP (mem
, 0),
18651 get_address_mode (mem
),
18653 VAR_INIT_STATUS_INITIALIZED
);
18655 else if (GET_CODE (XEXP (XEXP (arg
, 0), 0))
18656 == DEBUG_PARAMETER_REF
)
18659 = DEBUG_PARAMETER_REF_DECL (XEXP (XEXP (arg
, 0), 0));
18660 tdie
= lookup_decl_die (tdecl
);
18667 && GET_CODE (XEXP (XEXP (arg
, 0), 0))
18668 != DEBUG_PARAMETER_REF
)
18670 val
= mem_loc_descriptor (XEXP (XEXP (arg
, 0), 1), mode
,
18672 VAR_INIT_STATUS_INITIALIZED
);
18676 die
= gen_call_site_die (decl
, subr_die
, ca_loc
);
18677 cdie
= new_die (DW_TAG_GNU_call_site_parameter
, die
,
18680 add_AT_loc (cdie
, DW_AT_location
, reg
);
18681 else if (tdie
!= NULL
)
18682 add_AT_die_ref (cdie
, DW_AT_abstract_origin
, tdie
);
18683 add_AT_loc (cdie
, DW_AT_GNU_call_site_value
, val
);
18684 if (next_arg
!= XEXP (arg
, 1))
18686 mode
= GET_MODE (XEXP (XEXP (XEXP (arg
, 1), 0), 1));
18687 if (mode
== VOIDmode
)
18688 mode
= GET_MODE (XEXP (XEXP (XEXP (arg
, 1), 0), 0));
18689 val
= mem_loc_descriptor (XEXP (XEXP (XEXP (arg
, 1),
18692 VAR_INIT_STATUS_INITIALIZED
);
18694 add_AT_loc (cdie
, DW_AT_GNU_call_site_data_value
, val
);
18698 && (ca_loc
->symbol_ref
|| tloc
))
18699 die
= gen_call_site_die (decl
, subr_die
, ca_loc
);
18700 if (die
!= NULL
&& (tloc
!= NULL_RTX
|| tlocc
!= NULL_RTX
))
18702 dw_loc_descr_ref tval
= NULL
;
18704 if (tloc
!= NULL_RTX
)
18705 tval
= mem_loc_descriptor (tloc
,
18706 GET_MODE (tloc
) == VOIDmode
18707 ? Pmode
: GET_MODE (tloc
),
18709 VAR_INIT_STATUS_INITIALIZED
);
18711 add_AT_loc (die
, DW_AT_GNU_call_site_target
, tval
);
18712 else if (tlocc
!= NULL_RTX
)
18714 tval
= mem_loc_descriptor (tlocc
,
18715 GET_MODE (tlocc
) == VOIDmode
18716 ? Pmode
: GET_MODE (tlocc
),
18718 VAR_INIT_STATUS_INITIALIZED
);
18720 add_AT_loc (die
, DW_AT_GNU_call_site_target_clobbered
,
18726 call_site_note_count
++;
18727 if (ca_loc
->tail_call_p
)
18728 tail_call_site_note_count
++;
18732 call_arg_locations
= NULL
;
18733 call_arg_loc_last
= NULL
;
18734 if (tail_call_site_count
>= 0
18735 && tail_call_site_count
== tail_call_site_note_count
18738 if (call_site_count
>= 0
18739 && call_site_count
== call_site_note_count
)
18740 add_AT_flag (subr_die
, DW_AT_GNU_all_call_sites
, 1);
18742 add_AT_flag (subr_die
, DW_AT_GNU_all_tail_call_sites
, 1);
18744 call_site_count
= -1;
18745 tail_call_site_count
= -1;
18748 if (subr_die
!= old_die
)
18749 /* Add the calling convention attribute if requested. */
18750 add_calling_convention_attribute (subr_die
, decl
);
18753 /* Returns a hash value for X (which really is a die_struct). */
18756 common_block_die_table_hash (const void *x
)
18758 const_dw_die_ref d
= (const_dw_die_ref
) x
;
18759 return (hashval_t
) d
->decl_id
^ htab_hash_pointer (d
->die_parent
);
18762 /* Return nonzero if decl_id and die_parent of die_struct X is the same
18763 as decl_id and die_parent of die_struct Y. */
18766 common_block_die_table_eq (const void *x
, const void *y
)
18768 const_dw_die_ref d
= (const_dw_die_ref
) x
;
18769 const_dw_die_ref e
= (const_dw_die_ref
) y
;
18770 return d
->decl_id
== e
->decl_id
&& d
->die_parent
== e
->die_parent
;
18773 /* Generate a DIE to represent a declared data object.
18774 Either DECL or ORIGIN must be non-null. */
18777 gen_variable_die (tree decl
, tree origin
, dw_die_ref context_die
)
18779 HOST_WIDE_INT off
= 0;
18781 tree decl_or_origin
= decl
? decl
: origin
;
18782 tree ultimate_origin
;
18783 dw_die_ref var_die
;
18784 dw_die_ref old_die
= decl
? lookup_decl_die (decl
) : NULL
;
18785 dw_die_ref origin_die
;
18786 bool declaration
= (DECL_EXTERNAL (decl_or_origin
)
18787 || class_or_namespace_scope_p (context_die
));
18788 bool specialization_p
= false;
18790 ultimate_origin
= decl_ultimate_origin (decl_or_origin
);
18791 if (decl
|| ultimate_origin
)
18792 origin
= ultimate_origin
;
18793 com_decl
= fortran_common (decl_or_origin
, &off
);
18795 /* Symbol in common gets emitted as a child of the common block, in the form
18796 of a data member. */
18799 dw_die_ref com_die
;
18800 dw_loc_list_ref loc
;
18801 die_node com_die_arg
;
18803 var_die
= lookup_decl_die (decl_or_origin
);
18806 if (get_AT (var_die
, DW_AT_location
) == NULL
)
18808 loc
= loc_list_from_tree (com_decl
, off
? 1 : 2);
18813 /* Optimize the common case. */
18814 if (single_element_loc_list_p (loc
)
18815 && loc
->expr
->dw_loc_opc
== DW_OP_addr
18816 && loc
->expr
->dw_loc_next
== NULL
18817 && GET_CODE (loc
->expr
->dw_loc_oprnd1
.v
.val_addr
)
18820 rtx x
= loc
->expr
->dw_loc_oprnd1
.v
.val_addr
;
18821 loc
->expr
->dw_loc_oprnd1
.v
.val_addr
18822 = plus_constant (GET_MODE (x
), x
, off
);
18825 loc_list_plus_const (loc
, off
);
18827 add_AT_location_description (var_die
, DW_AT_location
, loc
);
18828 remove_AT (var_die
, DW_AT_declaration
);
18834 if (common_block_die_table
== NULL
)
18835 common_block_die_table
18836 = htab_create_ggc (10, common_block_die_table_hash
,
18837 common_block_die_table_eq
, NULL
);
18839 com_die_arg
.decl_id
= DECL_UID (com_decl
);
18840 com_die_arg
.die_parent
= context_die
;
18841 com_die
= (dw_die_ref
) htab_find (common_block_die_table
, &com_die_arg
);
18842 loc
= loc_list_from_tree (com_decl
, 2);
18843 if (com_die
== NULL
)
18846 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl
));
18849 com_die
= new_die (DW_TAG_common_block
, context_die
, decl
);
18850 add_name_and_src_coords_attributes (com_die
, com_decl
);
18853 add_AT_location_description (com_die
, DW_AT_location
, loc
);
18854 /* Avoid sharing the same loc descriptor between
18855 DW_TAG_common_block and DW_TAG_variable. */
18856 loc
= loc_list_from_tree (com_decl
, 2);
18858 else if (DECL_EXTERNAL (decl
))
18859 add_AT_flag (com_die
, DW_AT_declaration
, 1);
18860 if (want_pubnames ())
18861 add_pubname_string (cnam
, com_die
); /* ??? needed? */
18862 com_die
->decl_id
= DECL_UID (com_decl
);
18863 slot
= htab_find_slot (common_block_die_table
, com_die
, INSERT
);
18864 *slot
= (void *) com_die
;
18866 else if (get_AT (com_die
, DW_AT_location
) == NULL
&& loc
)
18868 add_AT_location_description (com_die
, DW_AT_location
, loc
);
18869 loc
= loc_list_from_tree (com_decl
, 2);
18870 remove_AT (com_die
, DW_AT_declaration
);
18872 var_die
= new_die (DW_TAG_variable
, com_die
, decl
);
18873 add_name_and_src_coords_attributes (var_die
, decl
);
18874 add_type_attribute (var_die
, TREE_TYPE (decl
), TREE_READONLY (decl
),
18875 TREE_THIS_VOLATILE (decl
), context_die
);
18876 add_AT_flag (var_die
, DW_AT_external
, 1);
18881 /* Optimize the common case. */
18882 if (single_element_loc_list_p (loc
)
18883 && loc
->expr
->dw_loc_opc
== DW_OP_addr
18884 && loc
->expr
->dw_loc_next
== NULL
18885 && GET_CODE (loc
->expr
->dw_loc_oprnd1
.v
.val_addr
) == SYMBOL_REF
)
18887 rtx x
= loc
->expr
->dw_loc_oprnd1
.v
.val_addr
;
18888 loc
->expr
->dw_loc_oprnd1
.v
.val_addr
18889 = plus_constant (GET_MODE (x
), x
, off
);
18892 loc_list_plus_const (loc
, off
);
18894 add_AT_location_description (var_die
, DW_AT_location
, loc
);
18896 else if (DECL_EXTERNAL (decl
))
18897 add_AT_flag (var_die
, DW_AT_declaration
, 1);
18898 equate_decl_number_to_die (decl
, var_die
);
18902 /* If the compiler emitted a definition for the DECL declaration
18903 and if we already emitted a DIE for it, don't emit a second
18904 DIE for it again. Allow re-declarations of DECLs that are
18905 inside functions, though. */
18906 if (old_die
&& declaration
&& !local_scope_p (context_die
))
18909 /* For static data members, the declaration in the class is supposed
18910 to have DW_TAG_member tag; the specification should still be
18911 DW_TAG_variable referencing the DW_TAG_member DIE. */
18912 if (declaration
&& class_scope_p (context_die
))
18913 var_die
= new_die (DW_TAG_member
, context_die
, decl
);
18915 var_die
= new_die (DW_TAG_variable
, context_die
, decl
);
18918 if (origin
!= NULL
)
18919 origin_die
= add_abstract_origin_attribute (var_die
, origin
);
18921 /* Loop unrolling can create multiple blocks that refer to the same
18922 static variable, so we must test for the DW_AT_declaration flag.
18924 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
18925 copy decls and set the DECL_ABSTRACT flag on them instead of
18928 ??? Duplicated blocks have been rewritten to use .debug_ranges.
18930 ??? The declare_in_namespace support causes us to get two DIEs for one
18931 variable, both of which are declarations. We want to avoid considering
18932 one to be a specification, so we must test that this DIE is not a
18934 else if (old_die
&& TREE_STATIC (decl
) && ! declaration
18935 && get_AT_flag (old_die
, DW_AT_declaration
) == 1)
18937 /* This is a definition of a C++ class level static. */
18938 add_AT_specification (var_die
, old_die
);
18939 specialization_p
= true;
18940 if (DECL_NAME (decl
))
18942 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
18943 struct dwarf_file_data
* file_index
= lookup_filename (s
.file
);
18945 if (get_AT_file (old_die
, DW_AT_decl_file
) != file_index
)
18946 add_AT_file (var_die
, DW_AT_decl_file
, file_index
);
18948 if (get_AT_unsigned (old_die
, DW_AT_decl_line
) != (unsigned) s
.line
)
18949 add_AT_unsigned (var_die
, DW_AT_decl_line
, s
.line
);
18951 if (old_die
->die_tag
== DW_TAG_member
)
18952 add_linkage_name (var_die
, decl
);
18956 add_name_and_src_coords_attributes (var_die
, decl
);
18958 if ((origin
== NULL
&& !specialization_p
)
18960 && !DECL_ABSTRACT (decl_or_origin
)
18961 && variably_modified_type_p (TREE_TYPE (decl_or_origin
),
18962 decl_function_context
18963 (decl_or_origin
))))
18965 tree type
= TREE_TYPE (decl_or_origin
);
18967 if (decl_by_reference_p (decl_or_origin
))
18968 add_type_attribute (var_die
, TREE_TYPE (type
), 0, 0, context_die
);
18970 add_type_attribute (var_die
, type
, TREE_READONLY (decl_or_origin
),
18971 TREE_THIS_VOLATILE (decl_or_origin
), context_die
);
18974 if (origin
== NULL
&& !specialization_p
)
18976 if (TREE_PUBLIC (decl
))
18977 add_AT_flag (var_die
, DW_AT_external
, 1);
18979 if (DECL_ARTIFICIAL (decl
))
18980 add_AT_flag (var_die
, DW_AT_artificial
, 1);
18982 add_accessibility_attribute (var_die
, decl
);
18986 add_AT_flag (var_die
, DW_AT_declaration
, 1);
18988 if (decl
&& (DECL_ABSTRACT (decl
) || declaration
|| old_die
== NULL
))
18989 equate_decl_number_to_die (decl
, var_die
);
18992 && (! DECL_ABSTRACT (decl_or_origin
)
18993 /* Local static vars are shared between all clones/inlines,
18994 so emit DW_AT_location on the abstract DIE if DECL_RTL is
18996 || (TREE_CODE (decl_or_origin
) == VAR_DECL
18997 && TREE_STATIC (decl_or_origin
)
18998 && DECL_RTL_SET_P (decl_or_origin
)))
18999 /* When abstract origin already has DW_AT_location attribute, no need
19000 to add it again. */
19001 && (origin_die
== NULL
|| get_AT (origin_die
, DW_AT_location
) == NULL
))
19003 if (TREE_CODE (decl_or_origin
) == VAR_DECL
&& TREE_STATIC (decl_or_origin
)
19004 && !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl_or_origin
)))
19005 defer_location (decl_or_origin
, var_die
);
19007 add_location_or_const_value_attribute (var_die
, decl_or_origin
,
19008 decl
== NULL
, DW_AT_location
);
19009 add_pubname (decl_or_origin
, var_die
);
19012 tree_add_const_value_attribute_for_decl (var_die
, decl_or_origin
);
19015 /* Generate a DIE to represent a named constant. */
19018 gen_const_die (tree decl
, dw_die_ref context_die
)
19020 dw_die_ref const_die
;
19021 tree type
= TREE_TYPE (decl
);
19023 const_die
= new_die (DW_TAG_constant
, context_die
, decl
);
19024 add_name_and_src_coords_attributes (const_die
, decl
);
19025 add_type_attribute (const_die
, type
, 1, 0, context_die
);
19026 if (TREE_PUBLIC (decl
))
19027 add_AT_flag (const_die
, DW_AT_external
, 1);
19028 if (DECL_ARTIFICIAL (decl
))
19029 add_AT_flag (const_die
, DW_AT_artificial
, 1);
19030 tree_add_const_value_attribute_for_decl (const_die
, decl
);
19033 /* Generate a DIE to represent a label identifier. */
19036 gen_label_die (tree decl
, dw_die_ref context_die
)
19038 tree origin
= decl_ultimate_origin (decl
);
19039 dw_die_ref lbl_die
= new_die (DW_TAG_label
, context_die
, decl
);
19041 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
19043 if (origin
!= NULL
)
19044 add_abstract_origin_attribute (lbl_die
, origin
);
19046 add_name_and_src_coords_attributes (lbl_die
, decl
);
19048 if (DECL_ABSTRACT (decl
))
19049 equate_decl_number_to_die (decl
, lbl_die
);
19052 insn
= DECL_RTL_IF_SET (decl
);
19054 /* Deleted labels are programmer specified labels which have been
19055 eliminated because of various optimizations. We still emit them
19056 here so that it is possible to put breakpoints on them. */
19060 && NOTE_KIND (insn
) == NOTE_INSN_DELETED_LABEL
))))
19062 /* When optimization is enabled (via -O) some parts of the compiler
19063 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
19064 represent source-level labels which were explicitly declared by
19065 the user. This really shouldn't be happening though, so catch
19066 it if it ever does happen. */
19067 gcc_assert (!INSN_DELETED_P (insn
));
19069 ASM_GENERATE_INTERNAL_LABEL (label
, "L", CODE_LABEL_NUMBER (insn
));
19070 add_AT_lbl_id (lbl_die
, DW_AT_low_pc
, label
);
19074 && NOTE_KIND (insn
) == NOTE_INSN_DELETED_DEBUG_LABEL
19075 && CODE_LABEL_NUMBER (insn
) != -1)
19077 ASM_GENERATE_INTERNAL_LABEL (label
, "LDL", CODE_LABEL_NUMBER (insn
));
19078 add_AT_lbl_id (lbl_die
, DW_AT_low_pc
, label
);
19083 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
19084 attributes to the DIE for a block STMT, to describe where the inlined
19085 function was called from. This is similar to add_src_coords_attributes. */
19088 add_call_src_coords_attributes (tree stmt
, dw_die_ref die
)
19090 expanded_location s
= expand_location (BLOCK_SOURCE_LOCATION (stmt
));
19092 if (dwarf_version
>= 3 || !dwarf_strict
)
19094 add_AT_file (die
, DW_AT_call_file
, lookup_filename (s
.file
));
19095 add_AT_unsigned (die
, DW_AT_call_line
, s
.line
);
19100 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
19101 Add low_pc and high_pc attributes to the DIE for a block STMT. */
19104 add_high_low_attributes (tree stmt
, dw_die_ref die
)
19106 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
19108 if (BLOCK_FRAGMENT_CHAIN (stmt
)
19109 && (dwarf_version
>= 3 || !dwarf_strict
))
19111 tree chain
, superblock
= NULL_TREE
;
19113 dw_attr_ref attr
= NULL
;
19115 if (inlined_function_outer_scope_p (stmt
))
19117 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_BEGIN_LABEL
,
19118 BLOCK_NUMBER (stmt
));
19119 add_AT_lbl_id (die
, DW_AT_entry_pc
, label
);
19122 /* Optimize duplicate .debug_ranges lists or even tails of
19123 lists. If this BLOCK has same ranges as its supercontext,
19124 lookup DW_AT_ranges attribute in the supercontext (and
19125 recursively so), verify that the ranges_table contains the
19126 right values and use it instead of adding a new .debug_range. */
19127 for (chain
= stmt
, pdie
= die
;
19128 BLOCK_SAME_RANGE (chain
);
19129 chain
= BLOCK_SUPERCONTEXT (chain
))
19131 dw_attr_ref new_attr
;
19133 pdie
= pdie
->die_parent
;
19136 if (BLOCK_SUPERCONTEXT (chain
) == NULL_TREE
)
19138 new_attr
= get_AT (pdie
, DW_AT_ranges
);
19139 if (new_attr
== NULL
19140 || new_attr
->dw_attr_val
.val_class
!= dw_val_class_range_list
)
19143 superblock
= BLOCK_SUPERCONTEXT (chain
);
19146 && (ranges_table
[attr
->dw_attr_val
.v
.val_offset
19147 / 2 / DWARF2_ADDR_SIZE
].num
19148 == BLOCK_NUMBER (superblock
))
19149 && BLOCK_FRAGMENT_CHAIN (superblock
))
19151 unsigned long off
= attr
->dw_attr_val
.v
.val_offset
19152 / 2 / DWARF2_ADDR_SIZE
;
19153 unsigned long supercnt
= 0, thiscnt
= 0;
19154 for (chain
= BLOCK_FRAGMENT_CHAIN (superblock
);
19155 chain
; chain
= BLOCK_FRAGMENT_CHAIN (chain
))
19158 gcc_checking_assert (ranges_table
[off
+ supercnt
].num
19159 == BLOCK_NUMBER (chain
));
19161 gcc_checking_assert (ranges_table
[off
+ supercnt
+ 1].num
== 0);
19162 for (chain
= BLOCK_FRAGMENT_CHAIN (stmt
);
19163 chain
; chain
= BLOCK_FRAGMENT_CHAIN (chain
))
19165 gcc_assert (supercnt
>= thiscnt
);
19166 add_AT_range_list (die
, DW_AT_ranges
,
19167 ((off
+ supercnt
- thiscnt
)
19168 * 2 * DWARF2_ADDR_SIZE
),
19173 add_AT_range_list (die
, DW_AT_ranges
, add_ranges (stmt
), false);
19175 chain
= BLOCK_FRAGMENT_CHAIN (stmt
);
19178 add_ranges (chain
);
19179 chain
= BLOCK_FRAGMENT_CHAIN (chain
);
19186 char label_high
[MAX_ARTIFICIAL_LABEL_BYTES
];
19187 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_BEGIN_LABEL
,
19188 BLOCK_NUMBER (stmt
));
19189 ASM_GENERATE_INTERNAL_LABEL (label_high
, BLOCK_END_LABEL
,
19190 BLOCK_NUMBER (stmt
));
19191 add_AT_low_high_pc (die
, label
, label_high
, false);
19195 /* Generate a DIE for a lexical block. */
19198 gen_lexical_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
19200 dw_die_ref stmt_die
= new_die (DW_TAG_lexical_block
, context_die
, stmt
);
19202 if (call_arg_locations
)
19204 if (block_map
.length () <= BLOCK_NUMBER (stmt
))
19205 block_map
.safe_grow_cleared (BLOCK_NUMBER (stmt
) + 1);
19206 block_map
[BLOCK_NUMBER (stmt
)] = stmt_die
;
19209 if (! BLOCK_ABSTRACT (stmt
) && TREE_ASM_WRITTEN (stmt
))
19210 add_high_low_attributes (stmt
, stmt_die
);
19212 decls_for_scope (stmt
, stmt_die
, depth
);
19215 /* Generate a DIE for an inlined subprogram. */
19218 gen_inlined_subroutine_die (tree stmt
, dw_die_ref context_die
, int depth
)
19222 /* The instance of function that is effectively being inlined shall not
19224 gcc_assert (! BLOCK_ABSTRACT (stmt
));
19226 decl
= block_ultimate_origin (stmt
);
19228 /* Emit info for the abstract instance first, if we haven't yet. We
19229 must emit this even if the block is abstract, otherwise when we
19230 emit the block below (or elsewhere), we may end up trying to emit
19231 a die whose origin die hasn't been emitted, and crashing. */
19232 dwarf2out_abstract_function (decl
);
19234 if (! BLOCK_ABSTRACT (stmt
))
19236 dw_die_ref subr_die
19237 = new_die (DW_TAG_inlined_subroutine
, context_die
, stmt
);
19239 if (call_arg_locations
)
19241 if (block_map
.length () <= BLOCK_NUMBER (stmt
))
19242 block_map
.safe_grow_cleared (BLOCK_NUMBER (stmt
) + 1);
19243 block_map
[BLOCK_NUMBER (stmt
)] = subr_die
;
19245 add_abstract_origin_attribute (subr_die
, decl
);
19246 if (TREE_ASM_WRITTEN (stmt
))
19247 add_high_low_attributes (stmt
, subr_die
);
19248 add_call_src_coords_attributes (stmt
, subr_die
);
19250 decls_for_scope (stmt
, subr_die
, depth
);
19251 current_function_has_inlines
= 1;
19255 /* Generate a DIE for a field in a record, or structure. */
19258 gen_field_die (tree decl
, dw_die_ref context_die
)
19260 dw_die_ref decl_die
;
19262 if (TREE_TYPE (decl
) == error_mark_node
)
19265 decl_die
= new_die (DW_TAG_member
, context_die
, decl
);
19266 add_name_and_src_coords_attributes (decl_die
, decl
);
19267 add_type_attribute (decl_die
, member_declared_type (decl
),
19268 TREE_READONLY (decl
), TREE_THIS_VOLATILE (decl
),
19271 if (DECL_BIT_FIELD_TYPE (decl
))
19273 add_byte_size_attribute (decl_die
, decl
);
19274 add_bit_size_attribute (decl_die
, decl
);
19275 add_bit_offset_attribute (decl_die
, decl
);
19278 if (TREE_CODE (DECL_FIELD_CONTEXT (decl
)) != UNION_TYPE
)
19279 add_data_member_location_attribute (decl_die
, decl
);
19281 if (DECL_ARTIFICIAL (decl
))
19282 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
19284 add_accessibility_attribute (decl_die
, decl
);
19286 /* Equate decl number to die, so that we can look up this decl later on. */
19287 equate_decl_number_to_die (decl
, decl_die
);
19291 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
19292 Use modified_type_die instead.
19293 We keep this code here just in case these types of DIEs may be needed to
19294 represent certain things in other languages (e.g. Pascal) someday. */
19297 gen_pointer_type_die (tree type
, dw_die_ref context_die
)
19300 = new_die (DW_TAG_pointer_type
, scope_die_for (type
, context_die
), type
);
19302 equate_type_number_to_die (type
, ptr_die
);
19303 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
19304 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
19307 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
19308 Use modified_type_die instead.
19309 We keep this code here just in case these types of DIEs may be needed to
19310 represent certain things in other languages (e.g. Pascal) someday. */
19313 gen_reference_type_die (tree type
, dw_die_ref context_die
)
19315 dw_die_ref ref_die
, scope_die
= scope_die_for (type
, context_die
);
19317 if (TYPE_REF_IS_RVALUE (type
) && dwarf_version
>= 4)
19318 ref_die
= new_die (DW_TAG_rvalue_reference_type
, scope_die
, type
);
19320 ref_die
= new_die (DW_TAG_reference_type
, scope_die
, type
);
19322 equate_type_number_to_die (type
, ref_die
);
19323 add_type_attribute (ref_die
, TREE_TYPE (type
), 0, 0, context_die
);
19324 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
19328 /* Generate a DIE for a pointer to a member type. */
19331 gen_ptr_to_mbr_type_die (tree type
, dw_die_ref context_die
)
19334 = new_die (DW_TAG_ptr_to_member_type
,
19335 scope_die_for (type
, context_die
), type
);
19337 equate_type_number_to_die (type
, ptr_die
);
19338 add_AT_die_ref (ptr_die
, DW_AT_containing_type
,
19339 lookup_type_die (TYPE_OFFSET_BASETYPE (type
)));
19340 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
19343 typedef const char *dchar_p
; /* For DEF_VEC_P. */
19345 static char *producer_string
;
19347 /* Return a heap allocated producer string including command line options
19348 if -grecord-gcc-switches. */
19351 gen_producer_string (void)
19354 auto_vec
<dchar_p
> switches
;
19355 const char *language_string
= lang_hooks
.name
;
19356 char *producer
, *tail
;
19358 size_t len
= dwarf_record_gcc_switches
? 0 : 3;
19359 size_t plen
= strlen (language_string
) + 1 + strlen (version_string
);
19361 for (j
= 1; dwarf_record_gcc_switches
&& j
< save_decoded_options_count
; j
++)
19362 switch (save_decoded_options
[j
].opt_index
)
19369 case OPT_auxbase_strip
:
19378 case OPT_SPECIAL_unknown
:
19379 case OPT_SPECIAL_ignore
:
19380 case OPT_SPECIAL_program_name
:
19381 case OPT_SPECIAL_input_file
:
19382 case OPT_grecord_gcc_switches
:
19383 case OPT_gno_record_gcc_switches
:
19384 case OPT__output_pch_
:
19385 case OPT_fdiagnostics_show_location_
:
19386 case OPT_fdiagnostics_show_option
:
19387 case OPT_fdiagnostics_show_caret
:
19388 case OPT_fdiagnostics_color_
:
19389 case OPT_fverbose_asm
:
19391 case OPT__sysroot_
:
19393 case OPT_nostdinc__
:
19394 /* Ignore these. */
19397 if (cl_options
[save_decoded_options
[j
].opt_index
].flags
19398 & CL_NO_DWARF_RECORD
)
19400 gcc_checking_assert (save_decoded_options
[j
].canonical_option
[0][0]
19402 switch (save_decoded_options
[j
].canonical_option
[0][1])
19409 if (strncmp (save_decoded_options
[j
].canonical_option
[0] + 2,
19416 switches
.safe_push (save_decoded_options
[j
].orig_option_with_args_text
);
19417 len
+= strlen (save_decoded_options
[j
].orig_option_with_args_text
) + 1;
19421 producer
= XNEWVEC (char, plen
+ 1 + len
+ 1);
19423 sprintf (tail
, "%s %s", language_string
, version_string
);
19426 FOR_EACH_VEC_ELT (switches
, j
, p
)
19430 memcpy (tail
+ 1, p
, len
);
19438 /* Generate the DIE for the compilation unit. */
19441 gen_compile_unit_die (const char *filename
)
19444 const char *language_string
= lang_hooks
.name
;
19447 die
= new_die (DW_TAG_compile_unit
, NULL
, NULL
);
19451 add_name_attribute (die
, filename
);
19452 /* Don't add cwd for <built-in>. */
19453 if (!IS_ABSOLUTE_PATH (filename
) && filename
[0] != '<')
19454 add_comp_dir_attribute (die
);
19457 add_AT_string (die
, DW_AT_producer
, producer_string
? producer_string
: "");
19459 /* If our producer is LTO try to figure out a common language to use
19460 from the global list of translation units. */
19461 if (strcmp (language_string
, "GNU GIMPLE") == 0)
19465 const char *common_lang
= NULL
;
19467 FOR_EACH_VEC_SAFE_ELT (all_translation_units
, i
, t
)
19469 if (!TRANSLATION_UNIT_LANGUAGE (t
))
19472 common_lang
= TRANSLATION_UNIT_LANGUAGE (t
);
19473 else if (strcmp (common_lang
, TRANSLATION_UNIT_LANGUAGE (t
)) == 0)
19475 else if (strncmp (common_lang
, "GNU C", 5) == 0
19476 && strncmp (TRANSLATION_UNIT_LANGUAGE (t
), "GNU C", 5) == 0)
19477 /* Mixing C and C++ is ok, use C++ in that case. */
19478 common_lang
= "GNU C++";
19481 /* Fall back to C. */
19482 common_lang
= NULL
;
19488 language_string
= common_lang
;
19491 language
= DW_LANG_C89
;
19492 if (strcmp (language_string
, "GNU C++") == 0)
19493 language
= DW_LANG_C_plus_plus
;
19494 else if (strcmp (language_string
, "GNU F77") == 0)
19495 language
= DW_LANG_Fortran77
;
19496 else if (strcmp (language_string
, "GNU Pascal") == 0)
19497 language
= DW_LANG_Pascal83
;
19498 else if (dwarf_version
>= 3 || !dwarf_strict
)
19500 if (strcmp (language_string
, "GNU Ada") == 0)
19501 language
= DW_LANG_Ada95
;
19502 else if (strcmp (language_string
, "GNU Fortran") == 0)
19503 language
= DW_LANG_Fortran95
;
19504 else if (strcmp (language_string
, "GNU Java") == 0)
19505 language
= DW_LANG_Java
;
19506 else if (strcmp (language_string
, "GNU Objective-C") == 0)
19507 language
= DW_LANG_ObjC
;
19508 else if (strcmp (language_string
, "GNU Objective-C++") == 0)
19509 language
= DW_LANG_ObjC_plus_plus
;
19510 else if (dwarf_version
>= 5 || !dwarf_strict
)
19512 if (strcmp (language_string
, "GNU Go") == 0)
19513 language
= DW_LANG_Go
;
19516 /* Use a degraded Fortran setting in strict DWARF2 so is_fortran works. */
19517 else if (strcmp (language_string
, "GNU Fortran") == 0)
19518 language
= DW_LANG_Fortran90
;
19520 add_AT_unsigned (die
, DW_AT_language
, language
);
19524 case DW_LANG_Fortran77
:
19525 case DW_LANG_Fortran90
:
19526 case DW_LANG_Fortran95
:
19527 /* Fortran has case insensitive identifiers and the front-end
19528 lowercases everything. */
19529 add_AT_unsigned (die
, DW_AT_identifier_case
, DW_ID_down_case
);
19532 /* The default DW_ID_case_sensitive doesn't need to be specified. */
19538 /* Generate the DIE for a base class. */
19541 gen_inheritance_die (tree binfo
, tree access
, dw_die_ref context_die
)
19543 dw_die_ref die
= new_die (DW_TAG_inheritance
, context_die
, binfo
);
19545 add_type_attribute (die
, BINFO_TYPE (binfo
), 0, 0, context_die
);
19546 add_data_member_location_attribute (die
, binfo
);
19548 if (BINFO_VIRTUAL_P (binfo
))
19549 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
19551 /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
19552 children, otherwise the default is DW_ACCESS_public. In DWARF2
19553 the default has always been DW_ACCESS_private. */
19554 if (access
== access_public_node
)
19556 if (dwarf_version
== 2
19557 || context_die
->die_tag
== DW_TAG_class_type
)
19558 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_public
);
19560 else if (access
== access_protected_node
)
19561 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_protected
);
19562 else if (dwarf_version
> 2
19563 && context_die
->die_tag
!= DW_TAG_class_type
)
19564 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_private
);
19567 /* Generate a DIE for a class member. */
19570 gen_member_die (tree type
, dw_die_ref context_die
)
19573 tree binfo
= TYPE_BINFO (type
);
19576 /* If this is not an incomplete type, output descriptions of each of its
19577 members. Note that as we output the DIEs necessary to represent the
19578 members of this record or union type, we will also be trying to output
19579 DIEs to represent the *types* of those members. However the `type'
19580 function (above) will specifically avoid generating type DIEs for member
19581 types *within* the list of member DIEs for this (containing) type except
19582 for those types (of members) which are explicitly marked as also being
19583 members of this (containing) type themselves. The g++ front- end can
19584 force any given type to be treated as a member of some other (containing)
19585 type by setting the TYPE_CONTEXT of the given (member) type to point to
19586 the TREE node representing the appropriate (containing) type. */
19588 /* First output info about the base classes. */
19591 vec
<tree
, va_gc
> *accesses
= BINFO_BASE_ACCESSES (binfo
);
19595 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base
); i
++)
19596 gen_inheritance_die (base
,
19597 (accesses
? (*accesses
)[i
] : access_public_node
),
19601 /* Now output info about the data members and type members. */
19602 for (member
= TYPE_FIELDS (type
); member
; member
= DECL_CHAIN (member
))
19604 /* If we thought we were generating minimal debug info for TYPE
19605 and then changed our minds, some of the member declarations
19606 may have already been defined. Don't define them again, but
19607 do put them in the right order. */
19609 child
= lookup_decl_die (member
);
19611 splice_child_die (context_die
, child
);
19613 gen_decl_die (member
, NULL
, context_die
);
19616 /* Now output info about the function members (if any). */
19617 for (member
= TYPE_METHODS (type
); member
; member
= DECL_CHAIN (member
))
19619 /* Don't include clones in the member list. */
19620 if (DECL_ABSTRACT_ORIGIN (member
))
19623 child
= lookup_decl_die (member
);
19625 splice_child_die (context_die
, child
);
19627 gen_decl_die (member
, NULL
, context_die
);
19631 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
19632 is set, we pretend that the type was never defined, so we only get the
19633 member DIEs needed by later specification DIEs. */
19636 gen_struct_or_union_type_die (tree type
, dw_die_ref context_die
,
19637 enum debug_info_usage usage
)
19639 dw_die_ref type_die
= lookup_type_die (type
);
19640 dw_die_ref scope_die
= 0;
19642 int complete
= (TYPE_SIZE (type
)
19643 && (! TYPE_STUB_DECL (type
)
19644 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))));
19645 int ns_decl
= (context_die
&& context_die
->die_tag
== DW_TAG_namespace
);
19646 complete
= complete
&& should_emit_struct_debug (type
, usage
);
19648 if (type_die
&& ! complete
)
19651 if (TYPE_CONTEXT (type
) != NULL_TREE
19652 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
19653 || TREE_CODE (TYPE_CONTEXT (type
)) == NAMESPACE_DECL
))
19656 scope_die
= scope_die_for (type
, context_die
);
19658 /* Generate child dies for template paramaters. */
19659 if (!type_die
&& debug_info_level
> DINFO_LEVEL_TERSE
)
19660 schedule_generic_params_dies_gen (type
);
19662 if (! type_die
|| (nested
&& is_cu_die (scope_die
)))
19663 /* First occurrence of type or toplevel definition of nested class. */
19665 dw_die_ref old_die
= type_die
;
19667 type_die
= new_die (TREE_CODE (type
) == RECORD_TYPE
19668 ? record_type_tag (type
) : DW_TAG_union_type
,
19670 equate_type_number_to_die (type
, type_die
);
19672 add_AT_specification (type_die
, old_die
);
19674 add_name_attribute (type_die
, type_tag (type
));
19677 remove_AT (type_die
, DW_AT_declaration
);
19679 /* If this type has been completed, then give it a byte_size attribute and
19680 then give a list of members. */
19681 if (complete
&& !ns_decl
)
19683 /* Prevent infinite recursion in cases where the type of some member of
19684 this type is expressed in terms of this type itself. */
19685 TREE_ASM_WRITTEN (type
) = 1;
19686 add_byte_size_attribute (type_die
, type
);
19687 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
19689 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
19690 add_accessibility_attribute (type_die
, TYPE_STUB_DECL (type
));
19693 /* If the first reference to this type was as the return type of an
19694 inline function, then it may not have a parent. Fix this now. */
19695 if (type_die
->die_parent
== NULL
)
19696 add_child_die (scope_die
, type_die
);
19698 push_decl_scope (type
);
19699 gen_member_die (type
, type_die
);
19702 add_gnat_descriptive_type_attribute (type_die
, type
, context_die
);
19703 if (TYPE_ARTIFICIAL (type
))
19704 add_AT_flag (type_die
, DW_AT_artificial
, 1);
19706 /* GNU extension: Record what type our vtable lives in. */
19707 if (TYPE_VFIELD (type
))
19709 tree vtype
= DECL_FCONTEXT (TYPE_VFIELD (type
));
19711 gen_type_die (vtype
, context_die
);
19712 add_AT_die_ref (type_die
, DW_AT_containing_type
,
19713 lookup_type_die (vtype
));
19718 add_AT_flag (type_die
, DW_AT_declaration
, 1);
19720 /* We don't need to do this for function-local types. */
19721 if (TYPE_STUB_DECL (type
)
19722 && ! decl_function_context (TYPE_STUB_DECL (type
)))
19723 vec_safe_push (incomplete_types
, type
);
19726 if (get_AT (type_die
, DW_AT_name
))
19727 add_pubtype (type
, type_die
);
19730 /* Generate a DIE for a subroutine _type_. */
19733 gen_subroutine_type_die (tree type
, dw_die_ref context_die
)
19735 tree return_type
= TREE_TYPE (type
);
19736 dw_die_ref subr_die
19737 = new_die (DW_TAG_subroutine_type
,
19738 scope_die_for (type
, context_die
), type
);
19740 equate_type_number_to_die (type
, subr_die
);
19741 add_prototyped_attribute (subr_die
, type
);
19742 add_type_attribute (subr_die
, return_type
, 0, 0, context_die
);
19743 gen_formal_types_die (type
, subr_die
);
19745 if (get_AT (subr_die
, DW_AT_name
))
19746 add_pubtype (type
, subr_die
);
19749 /* Generate a DIE for a type definition. */
19752 gen_typedef_die (tree decl
, dw_die_ref context_die
)
19754 dw_die_ref type_die
;
19757 if (TREE_ASM_WRITTEN (decl
))
19760 TREE_ASM_WRITTEN (decl
) = 1;
19761 type_die
= new_die (DW_TAG_typedef
, context_die
, decl
);
19762 origin
= decl_ultimate_origin (decl
);
19763 if (origin
!= NULL
)
19764 add_abstract_origin_attribute (type_die
, origin
);
19769 add_name_and_src_coords_attributes (type_die
, decl
);
19770 if (DECL_ORIGINAL_TYPE (decl
))
19772 type
= DECL_ORIGINAL_TYPE (decl
);
19774 gcc_assert (type
!= TREE_TYPE (decl
));
19775 equate_type_number_to_die (TREE_TYPE (decl
), type_die
);
19779 type
= TREE_TYPE (decl
);
19781 if (is_naming_typedef_decl (TYPE_NAME (type
)))
19783 /* Here, we are in the case of decl being a typedef naming
19784 an anonymous type, e.g:
19785 typedef struct {...} foo;
19786 In that case TREE_TYPE (decl) is not a typedef variant
19787 type and TYPE_NAME of the anonymous type is set to the
19788 TYPE_DECL of the typedef. This construct is emitted by
19791 TYPE is the anonymous struct named by the typedef
19792 DECL. As we need the DW_AT_type attribute of the
19793 DW_TAG_typedef to point to the DIE of TYPE, let's
19794 generate that DIE right away. add_type_attribute
19795 called below will then pick (via lookup_type_die) that
19796 anonymous struct DIE. */
19797 if (!TREE_ASM_WRITTEN (type
))
19798 gen_tagged_type_die (type
, context_die
, DINFO_USAGE_DIR_USE
);
19800 /* This is a GNU Extension. We are adding a
19801 DW_AT_linkage_name attribute to the DIE of the
19802 anonymous struct TYPE. The value of that attribute
19803 is the name of the typedef decl naming the anonymous
19804 struct. This greatly eases the work of consumers of
19805 this debug info. */
19806 add_linkage_attr (lookup_type_die (type
), decl
);
19810 add_type_attribute (type_die
, type
, TREE_READONLY (decl
),
19811 TREE_THIS_VOLATILE (decl
), context_die
);
19813 if (is_naming_typedef_decl (decl
))
19814 /* We want that all subsequent calls to lookup_type_die with
19815 TYPE in argument yield the DW_TAG_typedef we have just
19817 equate_type_number_to_die (type
, type_die
);
19819 add_accessibility_attribute (type_die
, decl
);
19822 if (DECL_ABSTRACT (decl
))
19823 equate_decl_number_to_die (decl
, type_die
);
19825 if (get_AT (type_die
, DW_AT_name
))
19826 add_pubtype (decl
, type_die
);
19829 /* Generate a DIE for a struct, class, enum or union type. */
19832 gen_tagged_type_die (tree type
,
19833 dw_die_ref context_die
,
19834 enum debug_info_usage usage
)
19838 if (type
== NULL_TREE
19839 || !is_tagged_type (type
))
19842 /* If this is a nested type whose containing class hasn't been written
19843 out yet, writing it out will cover this one, too. This does not apply
19844 to instantiations of member class templates; they need to be added to
19845 the containing class as they are generated. FIXME: This hurts the
19846 idea of combining type decls from multiple TUs, since we can't predict
19847 what set of template instantiations we'll get. */
19848 if (TYPE_CONTEXT (type
)
19849 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
19850 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type
)))
19852 gen_type_die_with_usage (TYPE_CONTEXT (type
), context_die
, usage
);
19854 if (TREE_ASM_WRITTEN (type
))
19857 /* If that failed, attach ourselves to the stub. */
19858 push_decl_scope (TYPE_CONTEXT (type
));
19859 context_die
= lookup_type_die (TYPE_CONTEXT (type
));
19862 else if (TYPE_CONTEXT (type
) != NULL_TREE
19863 && (TREE_CODE (TYPE_CONTEXT (type
)) == FUNCTION_DECL
))
19865 /* If this type is local to a function that hasn't been written
19866 out yet, use a NULL context for now; it will be fixed up in
19867 decls_for_scope. */
19868 context_die
= lookup_decl_die (TYPE_CONTEXT (type
));
19869 /* A declaration DIE doesn't count; nested types need to go in the
19871 if (context_die
&& is_declaration_die (context_die
))
19872 context_die
= NULL
;
19877 context_die
= declare_in_namespace (type
, context_die
);
19881 if (TREE_CODE (type
) == ENUMERAL_TYPE
)
19883 /* This might have been written out by the call to
19884 declare_in_namespace. */
19885 if (!TREE_ASM_WRITTEN (type
))
19886 gen_enumeration_type_die (type
, context_die
);
19889 gen_struct_or_union_type_die (type
, context_die
, usage
);
19894 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
19895 it up if it is ever completed. gen_*_type_die will set it for us
19896 when appropriate. */
19899 /* Generate a type description DIE. */
19902 gen_type_die_with_usage (tree type
, dw_die_ref context_die
,
19903 enum debug_info_usage usage
)
19905 struct array_descr_info info
;
19907 if (type
== NULL_TREE
|| type
== error_mark_node
)
19910 if (TYPE_NAME (type
) != NULL_TREE
19911 && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
19912 && is_redundant_typedef (TYPE_NAME (type
))
19913 && DECL_ORIGINAL_TYPE (TYPE_NAME (type
)))
19914 /* The DECL of this type is a typedef we don't want to emit debug
19915 info for but we want debug info for its underlying typedef.
19916 This can happen for e.g, the injected-class-name of a C++
19918 type
= DECL_ORIGINAL_TYPE (TYPE_NAME (type
));
19920 /* If TYPE is a typedef type variant, let's generate debug info
19921 for the parent typedef which TYPE is a type of. */
19922 if (typedef_variant_p (type
))
19924 if (TREE_ASM_WRITTEN (type
))
19927 /* Prevent broken recursion; we can't hand off to the same type. */
19928 gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type
)) != type
);
19930 /* Give typedefs the right scope. */
19931 context_die
= scope_die_for (type
, context_die
);
19933 TREE_ASM_WRITTEN (type
) = 1;
19935 gen_decl_die (TYPE_NAME (type
), NULL
, context_die
);
19939 /* If type is an anonymous tagged type named by a typedef, let's
19940 generate debug info for the typedef. */
19941 if (is_naming_typedef_decl (TYPE_NAME (type
)))
19943 /* Use the DIE of the containing namespace as the parent DIE of
19944 the type description DIE we want to generate. */
19945 if (DECL_CONTEXT (TYPE_NAME (type
))
19946 && TREE_CODE (DECL_CONTEXT (TYPE_NAME (type
))) == NAMESPACE_DECL
)
19947 context_die
= get_context_die (DECL_CONTEXT (TYPE_NAME (type
)));
19949 gen_decl_die (TYPE_NAME (type
), NULL
, context_die
);
19953 /* If this is an array type with hidden descriptor, handle it first. */
19954 if (!TREE_ASM_WRITTEN (type
)
19955 && lang_hooks
.types
.get_array_descr_info
19956 && lang_hooks
.types
.get_array_descr_info (type
, &info
)
19957 && (dwarf_version
>= 3 || !dwarf_strict
))
19959 gen_descr_array_type_die (type
, &info
, context_die
);
19960 TREE_ASM_WRITTEN (type
) = 1;
19964 /* We are going to output a DIE to represent the unqualified version
19965 of this type (i.e. without any const or volatile qualifiers) so
19966 get the main variant (i.e. the unqualified version) of this type
19967 now. (Vectors are special because the debugging info is in the
19968 cloned type itself). */
19969 if (TREE_CODE (type
) != VECTOR_TYPE
)
19970 type
= type_main_variant (type
);
19972 if (TREE_ASM_WRITTEN (type
))
19975 switch (TREE_CODE (type
))
19981 case REFERENCE_TYPE
:
19982 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
19983 ensures that the gen_type_die recursion will terminate even if the
19984 type is recursive. Recursive types are possible in Ada. */
19985 /* ??? We could perhaps do this for all types before the switch
19987 TREE_ASM_WRITTEN (type
) = 1;
19989 /* For these types, all that is required is that we output a DIE (or a
19990 set of DIEs) to represent the "basis" type. */
19991 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
19992 DINFO_USAGE_IND_USE
);
19996 /* This code is used for C++ pointer-to-data-member types.
19997 Output a description of the relevant class type. */
19998 gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type
), context_die
,
19999 DINFO_USAGE_IND_USE
);
20001 /* Output a description of the type of the object pointed to. */
20002 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
20003 DINFO_USAGE_IND_USE
);
20005 /* Now output a DIE to represent this pointer-to-data-member type
20007 gen_ptr_to_mbr_type_die (type
, context_die
);
20010 case FUNCTION_TYPE
:
20011 /* Force out return type (in case it wasn't forced out already). */
20012 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
20013 DINFO_USAGE_DIR_USE
);
20014 gen_subroutine_type_die (type
, context_die
);
20018 /* Force out return type (in case it wasn't forced out already). */
20019 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
20020 DINFO_USAGE_DIR_USE
);
20021 gen_subroutine_type_die (type
, context_die
);
20025 gen_array_type_die (type
, context_die
);
20029 gen_array_type_die (type
, context_die
);
20032 case ENUMERAL_TYPE
:
20035 case QUAL_UNION_TYPE
:
20036 gen_tagged_type_die (type
, context_die
, usage
);
20042 case FIXED_POINT_TYPE
:
20045 /* No DIEs needed for fundamental types. */
20050 /* Just use DW_TAG_unspecified_type. */
20052 dw_die_ref type_die
= lookup_type_die (type
);
20053 if (type_die
== NULL
)
20055 tree name
= TYPE_IDENTIFIER (type
);
20056 type_die
= new_die (DW_TAG_unspecified_type
, comp_unit_die (),
20058 add_name_attribute (type_die
, IDENTIFIER_POINTER (name
));
20059 equate_type_number_to_die (type
, type_die
);
20065 if (is_cxx_auto (type
))
20067 tree name
= TYPE_IDENTIFIER (type
);
20068 dw_die_ref
*die
= (name
== get_identifier ("auto")
20069 ? &auto_die
: &decltype_auto_die
);
20072 *die
= new_die (DW_TAG_unspecified_type
,
20073 comp_unit_die (), NULL_TREE
);
20074 add_name_attribute (*die
, IDENTIFIER_POINTER (name
));
20076 equate_type_number_to_die (type
, *die
);
20079 gcc_unreachable ();
20082 TREE_ASM_WRITTEN (type
) = 1;
20086 gen_type_die (tree type
, dw_die_ref context_die
)
20088 gen_type_die_with_usage (type
, context_die
, DINFO_USAGE_DIR_USE
);
20091 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
20092 things which are local to the given block. */
20095 gen_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
20097 int must_output_die
= 0;
20100 /* Ignore blocks that are NULL. */
20101 if (stmt
== NULL_TREE
)
20104 inlined_func
= inlined_function_outer_scope_p (stmt
);
20106 /* If the block is one fragment of a non-contiguous block, do not
20107 process the variables, since they will have been done by the
20108 origin block. Do process subblocks. */
20109 if (BLOCK_FRAGMENT_ORIGIN (stmt
))
20113 for (sub
= BLOCK_SUBBLOCKS (stmt
); sub
; sub
= BLOCK_CHAIN (sub
))
20114 gen_block_die (sub
, context_die
, depth
+ 1);
20119 /* Determine if we need to output any Dwarf DIEs at all to represent this
20122 /* The outer scopes for inlinings *must* always be represented. We
20123 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
20124 must_output_die
= 1;
20127 /* Determine if this block directly contains any "significant"
20128 local declarations which we will need to output DIEs for. */
20129 if (debug_info_level
> DINFO_LEVEL_TERSE
)
20130 /* We are not in terse mode so *any* local declaration counts
20131 as being a "significant" one. */
20132 must_output_die
= ((BLOCK_VARS (stmt
) != NULL
20133 || BLOCK_NUM_NONLOCALIZED_VARS (stmt
))
20134 && (TREE_USED (stmt
)
20135 || TREE_ASM_WRITTEN (stmt
)
20136 || BLOCK_ABSTRACT (stmt
)));
20137 else if ((TREE_USED (stmt
)
20138 || TREE_ASM_WRITTEN (stmt
)
20139 || BLOCK_ABSTRACT (stmt
))
20140 && !dwarf2out_ignore_block (stmt
))
20141 must_output_die
= 1;
20144 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
20145 DIE for any block which contains no significant local declarations at
20146 all. Rather, in such cases we just call `decls_for_scope' so that any
20147 needed Dwarf info for any sub-blocks will get properly generated. Note
20148 that in terse mode, our definition of what constitutes a "significant"
20149 local declaration gets restricted to include only inlined function
20150 instances and local (nested) function definitions. */
20151 if (must_output_die
)
20155 /* If STMT block is abstract, that means we have been called
20156 indirectly from dwarf2out_abstract_function.
20157 That function rightfully marks the descendent blocks (of
20158 the abstract function it is dealing with) as being abstract,
20159 precisely to prevent us from emitting any
20160 DW_TAG_inlined_subroutine DIE as a descendent
20161 of an abstract function instance. So in that case, we should
20162 not call gen_inlined_subroutine_die.
20164 Later though, when cgraph asks dwarf2out to emit info
20165 for the concrete instance of the function decl into which
20166 the concrete instance of STMT got inlined, the later will lead
20167 to the generation of a DW_TAG_inlined_subroutine DIE. */
20168 if (! BLOCK_ABSTRACT (stmt
))
20169 gen_inlined_subroutine_die (stmt
, context_die
, depth
);
20172 gen_lexical_block_die (stmt
, context_die
, depth
);
20175 decls_for_scope (stmt
, context_die
, depth
);
20178 /* Process variable DECL (or variable with origin ORIGIN) within
20179 block STMT and add it to CONTEXT_DIE. */
20181 process_scope_var (tree stmt
, tree decl
, tree origin
, dw_die_ref context_die
)
20184 tree decl_or_origin
= decl
? decl
: origin
;
20186 if (TREE_CODE (decl_or_origin
) == FUNCTION_DECL
)
20187 die
= lookup_decl_die (decl_or_origin
);
20188 else if (TREE_CODE (decl_or_origin
) == TYPE_DECL
20189 && TYPE_DECL_IS_STUB (decl_or_origin
))
20190 die
= lookup_type_die (TREE_TYPE (decl_or_origin
));
20194 if (die
!= NULL
&& die
->die_parent
== NULL
)
20195 add_child_die (context_die
, die
);
20196 else if (TREE_CODE (decl_or_origin
) == IMPORTED_DECL
)
20197 dwarf2out_imported_module_or_decl_1 (decl_or_origin
, DECL_NAME (decl_or_origin
),
20198 stmt
, context_die
);
20200 gen_decl_die (decl
, origin
, context_die
);
20203 /* Generate all of the decls declared within a given scope and (recursively)
20204 all of its sub-blocks. */
20207 decls_for_scope (tree stmt
, dw_die_ref context_die
, int depth
)
20213 /* Ignore NULL blocks. */
20214 if (stmt
== NULL_TREE
)
20217 /* Output the DIEs to represent all of the data objects and typedefs
20218 declared directly within this block but not within any nested
20219 sub-blocks. Also, nested function and tag DIEs have been
20220 generated with a parent of NULL; fix that up now. We don't
20221 have to do this if we're at -g1. */
20222 if (debug_info_level
> DINFO_LEVEL_TERSE
)
20224 for (decl
= BLOCK_VARS (stmt
); decl
!= NULL
; decl
= DECL_CHAIN (decl
))
20225 process_scope_var (stmt
, decl
, NULL_TREE
, context_die
);
20226 for (i
= 0; i
< BLOCK_NUM_NONLOCALIZED_VARS (stmt
); i
++)
20227 process_scope_var (stmt
, NULL
, BLOCK_NONLOCALIZED_VAR (stmt
, i
),
20231 /* Even if we're at -g1, we need to process the subblocks in order to get
20232 inlined call information. */
20234 /* Output the DIEs to represent all sub-blocks (and the items declared
20235 therein) of this block. */
20236 for (subblocks
= BLOCK_SUBBLOCKS (stmt
);
20238 subblocks
= BLOCK_CHAIN (subblocks
))
20239 gen_block_die (subblocks
, context_die
, depth
+ 1);
20242 /* Is this a typedef we can avoid emitting? */
20245 is_redundant_typedef (const_tree decl
)
20247 if (TYPE_DECL_IS_STUB (decl
))
20250 if (DECL_ARTIFICIAL (decl
)
20251 && DECL_CONTEXT (decl
)
20252 && is_tagged_type (DECL_CONTEXT (decl
))
20253 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl
))) == TYPE_DECL
20254 && DECL_NAME (decl
) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl
))))
20255 /* Also ignore the artificial member typedef for the class name. */
20261 /* Return TRUE if TYPE is a typedef that names a type for linkage
20262 purposes. This kind of typedefs is produced by the C++ FE for
20265 typedef struct {...} foo;
20267 In that case, there is no typedef variant type produced for foo.
20268 Rather, the TREE_TYPE of the TYPE_DECL of foo is the anonymous
20272 is_naming_typedef_decl (const_tree decl
)
20274 if (decl
== NULL_TREE
20275 || TREE_CODE (decl
) != TYPE_DECL
20276 || !is_tagged_type (TREE_TYPE (decl
))
20277 || DECL_IS_BUILTIN (decl
)
20278 || is_redundant_typedef (decl
)
20279 /* It looks like Ada produces TYPE_DECLs that are very similar
20280 to C++ naming typedefs but that have different
20281 semantics. Let's be specific to c++ for now. */
20285 return (DECL_ORIGINAL_TYPE (decl
) == NULL_TREE
20286 && TYPE_NAME (TREE_TYPE (decl
)) == decl
20287 && (TYPE_STUB_DECL (TREE_TYPE (decl
))
20288 != TYPE_NAME (TREE_TYPE (decl
))));
20291 /* Returns the DIE for a context. */
20293 static inline dw_die_ref
20294 get_context_die (tree context
)
20298 /* Find die that represents this context. */
20299 if (TYPE_P (context
))
20301 context
= TYPE_MAIN_VARIANT (context
);
20302 return strip_naming_typedef (context
, force_type_die (context
));
20305 return force_decl_die (context
);
20307 return comp_unit_die ();
20310 /* Returns the DIE for decl. A DIE will always be returned. */
20313 force_decl_die (tree decl
)
20315 dw_die_ref decl_die
;
20316 unsigned saved_external_flag
;
20317 tree save_fn
= NULL_TREE
;
20318 decl_die
= lookup_decl_die (decl
);
20321 dw_die_ref context_die
= get_context_die (DECL_CONTEXT (decl
));
20323 decl_die
= lookup_decl_die (decl
);
20327 switch (TREE_CODE (decl
))
20329 case FUNCTION_DECL
:
20330 /* Clear current_function_decl, so that gen_subprogram_die thinks
20331 that this is a declaration. At this point, we just want to force
20332 declaration die. */
20333 save_fn
= current_function_decl
;
20334 current_function_decl
= NULL_TREE
;
20335 gen_subprogram_die (decl
, context_die
);
20336 current_function_decl
= save_fn
;
20340 /* Set external flag to force declaration die. Restore it after
20341 gen_decl_die() call. */
20342 saved_external_flag
= DECL_EXTERNAL (decl
);
20343 DECL_EXTERNAL (decl
) = 1;
20344 gen_decl_die (decl
, NULL
, context_die
);
20345 DECL_EXTERNAL (decl
) = saved_external_flag
;
20348 case NAMESPACE_DECL
:
20349 if (dwarf_version
>= 3 || !dwarf_strict
)
20350 dwarf2out_decl (decl
);
20352 /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace. */
20353 decl_die
= comp_unit_die ();
20356 case TRANSLATION_UNIT_DECL
:
20357 decl_die
= comp_unit_die ();
20361 gcc_unreachable ();
20364 /* We should be able to find the DIE now. */
20366 decl_die
= lookup_decl_die (decl
);
20367 gcc_assert (decl_die
);
20373 /* Returns the DIE for TYPE, that must not be a base type. A DIE is
20374 always returned. */
20377 force_type_die (tree type
)
20379 dw_die_ref type_die
;
20381 type_die
= lookup_type_die (type
);
20384 dw_die_ref context_die
= get_context_die (TYPE_CONTEXT (type
));
20386 type_die
= modified_type_die (type
, TYPE_READONLY (type
),
20387 TYPE_VOLATILE (type
), context_die
);
20388 gcc_assert (type_die
);
20393 /* Force out any required namespaces to be able to output DECL,
20394 and return the new context_die for it, if it's changed. */
20397 setup_namespace_context (tree thing
, dw_die_ref context_die
)
20399 tree context
= (DECL_P (thing
)
20400 ? DECL_CONTEXT (thing
) : TYPE_CONTEXT (thing
));
20401 if (context
&& TREE_CODE (context
) == NAMESPACE_DECL
)
20402 /* Force out the namespace. */
20403 context_die
= force_decl_die (context
);
20405 return context_die
;
20408 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
20409 type) within its namespace, if appropriate.
20411 For compatibility with older debuggers, namespace DIEs only contain
20412 declarations; all definitions are emitted at CU scope. */
20415 declare_in_namespace (tree thing
, dw_die_ref context_die
)
20417 dw_die_ref ns_context
;
20419 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20420 return context_die
;
20422 /* If this decl is from an inlined function, then don't try to emit it in its
20423 namespace, as we will get confused. It would have already been emitted
20424 when the abstract instance of the inline function was emitted anyways. */
20425 if (DECL_P (thing
) && DECL_ABSTRACT_ORIGIN (thing
))
20426 return context_die
;
20428 ns_context
= setup_namespace_context (thing
, context_die
);
20430 if (ns_context
!= context_die
)
20434 if (DECL_P (thing
))
20435 gen_decl_die (thing
, NULL
, ns_context
);
20437 gen_type_die (thing
, ns_context
);
20439 return context_die
;
20442 /* Generate a DIE for a namespace or namespace alias. */
20445 gen_namespace_die (tree decl
, dw_die_ref context_die
)
20447 dw_die_ref namespace_die
;
20449 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
20450 they are an alias of. */
20451 if (DECL_ABSTRACT_ORIGIN (decl
) == NULL
)
20453 /* Output a real namespace or module. */
20454 context_die
= setup_namespace_context (decl
, comp_unit_die ());
20455 namespace_die
= new_die (is_fortran ()
20456 ? DW_TAG_module
: DW_TAG_namespace
,
20457 context_die
, decl
);
20458 /* For Fortran modules defined in different CU don't add src coords. */
20459 if (namespace_die
->die_tag
== DW_TAG_module
&& DECL_EXTERNAL (decl
))
20461 const char *name
= dwarf2_name (decl
, 0);
20463 add_name_attribute (namespace_die
, name
);
20466 add_name_and_src_coords_attributes (namespace_die
, decl
);
20467 if (DECL_EXTERNAL (decl
))
20468 add_AT_flag (namespace_die
, DW_AT_declaration
, 1);
20469 equate_decl_number_to_die (decl
, namespace_die
);
20473 /* Output a namespace alias. */
20475 /* Force out the namespace we are an alias of, if necessary. */
20476 dw_die_ref origin_die
20477 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl
));
20479 if (DECL_FILE_SCOPE_P (decl
)
20480 || TREE_CODE (DECL_CONTEXT (decl
)) == NAMESPACE_DECL
)
20481 context_die
= setup_namespace_context (decl
, comp_unit_die ());
20482 /* Now create the namespace alias DIE. */
20483 namespace_die
= new_die (DW_TAG_imported_declaration
, context_die
, decl
);
20484 add_name_and_src_coords_attributes (namespace_die
, decl
);
20485 add_AT_die_ref (namespace_die
, DW_AT_import
, origin_die
);
20486 equate_decl_number_to_die (decl
, namespace_die
);
20488 /* Bypass dwarf2_name's check for DECL_NAMELESS. */
20489 if (want_pubnames ())
20490 add_pubname_string (lang_hooks
.dwarf_name (decl
, 1), namespace_die
);
20493 /* Generate Dwarf debug information for a decl described by DECL.
20494 The return value is currently only meaningful for PARM_DECLs,
20495 for all other decls it returns NULL. */
20498 gen_decl_die (tree decl
, tree origin
, dw_die_ref context_die
)
20500 tree decl_or_origin
= decl
? decl
: origin
;
20501 tree class_origin
= NULL
, ultimate_origin
;
20503 if (DECL_P (decl_or_origin
) && DECL_IGNORED_P (decl_or_origin
))
20506 switch (TREE_CODE (decl_or_origin
))
20512 if (!is_fortran () && !is_ada ())
20514 /* The individual enumerators of an enum type get output when we output
20515 the Dwarf representation of the relevant enum type itself. */
20519 /* Emit its type. */
20520 gen_type_die (TREE_TYPE (decl
), context_die
);
20522 /* And its containing namespace. */
20523 context_die
= declare_in_namespace (decl
, context_die
);
20525 gen_const_die (decl
, context_die
);
20528 case FUNCTION_DECL
:
20529 /* Don't output any DIEs to represent mere function declarations,
20530 unless they are class members or explicit block externs. */
20531 if (DECL_INITIAL (decl_or_origin
) == NULL_TREE
20532 && DECL_FILE_SCOPE_P (decl_or_origin
)
20533 && (current_function_decl
== NULL_TREE
20534 || DECL_ARTIFICIAL (decl_or_origin
)))
20539 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
20540 on local redeclarations of global functions. That seems broken. */
20541 if (current_function_decl
!= decl
)
20542 /* This is only a declaration. */;
20545 /* If we're emitting a clone, emit info for the abstract instance. */
20546 if (origin
|| DECL_ORIGIN (decl
) != decl
)
20547 dwarf2out_abstract_function (origin
20548 ? DECL_ORIGIN (origin
)
20549 : DECL_ABSTRACT_ORIGIN (decl
));
20551 /* If we're emitting an out-of-line copy of an inline function,
20552 emit info for the abstract instance and set up to refer to it. */
20553 else if (cgraph_function_possibly_inlined_p (decl
)
20554 && ! DECL_ABSTRACT (decl
)
20555 && ! class_or_namespace_scope_p (context_die
)
20556 /* dwarf2out_abstract_function won't emit a die if this is just
20557 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
20558 that case, because that works only if we have a die. */
20559 && DECL_INITIAL (decl
) != NULL_TREE
)
20561 dwarf2out_abstract_function (decl
);
20562 set_decl_origin_self (decl
);
20565 /* Otherwise we're emitting the primary DIE for this decl. */
20566 else if (debug_info_level
> DINFO_LEVEL_TERSE
)
20568 /* Before we describe the FUNCTION_DECL itself, make sure that we
20569 have its containing type. */
20571 origin
= decl_class_context (decl
);
20572 if (origin
!= NULL_TREE
)
20573 gen_type_die (origin
, context_die
);
20575 /* And its return type. */
20576 gen_type_die (TREE_TYPE (TREE_TYPE (decl
)), context_die
);
20578 /* And its virtual context. */
20579 if (DECL_VINDEX (decl
) != NULL_TREE
)
20580 gen_type_die (DECL_CONTEXT (decl
), context_die
);
20582 /* Make sure we have a member DIE for decl. */
20583 if (origin
!= NULL_TREE
)
20584 gen_type_die_for_member (origin
, decl
, context_die
);
20586 /* And its containing namespace. */
20587 context_die
= declare_in_namespace (decl
, context_die
);
20590 /* Now output a DIE to represent the function itself. */
20592 gen_subprogram_die (decl
, context_die
);
20596 /* If we are in terse mode, don't generate any DIEs to represent any
20597 actual typedefs. */
20598 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20601 /* In the special case of a TYPE_DECL node representing the declaration
20602 of some type tag, if the given TYPE_DECL is marked as having been
20603 instantiated from some other (original) TYPE_DECL node (e.g. one which
20604 was generated within the original definition of an inline function) we
20605 used to generate a special (abbreviated) DW_TAG_structure_type,
20606 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. But nothing
20607 should be actually referencing those DIEs, as variable DIEs with that
20608 type would be emitted already in the abstract origin, so it was always
20609 removed during unused type prunning. Don't add anything in this
20611 if (TYPE_DECL_IS_STUB (decl
) && decl_ultimate_origin (decl
) != NULL_TREE
)
20614 if (is_redundant_typedef (decl
))
20615 gen_type_die (TREE_TYPE (decl
), context_die
);
20617 /* Output a DIE to represent the typedef itself. */
20618 gen_typedef_die (decl
, context_die
);
20622 if (debug_info_level
>= DINFO_LEVEL_NORMAL
)
20623 gen_label_die (decl
, context_die
);
20628 /* If we are in terse mode, don't generate any DIEs to represent any
20629 variable declarations or definitions. */
20630 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20633 /* Output any DIEs that are needed to specify the type of this data
20635 if (decl_by_reference_p (decl_or_origin
))
20636 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin
)), context_die
);
20638 gen_type_die (TREE_TYPE (decl_or_origin
), context_die
);
20640 /* And its containing type. */
20641 class_origin
= decl_class_context (decl_or_origin
);
20642 if (class_origin
!= NULL_TREE
)
20643 gen_type_die_for_member (class_origin
, decl_or_origin
, context_die
);
20645 /* And its containing namespace. */
20646 context_die
= declare_in_namespace (decl_or_origin
, context_die
);
20648 /* Now output the DIE to represent the data object itself. This gets
20649 complicated because of the possibility that the VAR_DECL really
20650 represents an inlined instance of a formal parameter for an inline
20652 ultimate_origin
= decl_ultimate_origin (decl_or_origin
);
20653 if (ultimate_origin
!= NULL_TREE
20654 && TREE_CODE (ultimate_origin
) == PARM_DECL
)
20655 gen_formal_parameter_die (decl
, origin
,
20656 true /* Emit name attribute. */,
20659 gen_variable_die (decl
, origin
, context_die
);
20663 /* Ignore the nameless fields that are used to skip bits but handle C++
20664 anonymous unions and structs. */
20665 if (DECL_NAME (decl
) != NULL_TREE
20666 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
20667 || TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
)
20669 gen_type_die (member_declared_type (decl
), context_die
);
20670 gen_field_die (decl
, context_die
);
20675 if (DECL_BY_REFERENCE (decl_or_origin
))
20676 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin
)), context_die
);
20678 gen_type_die (TREE_TYPE (decl_or_origin
), context_die
);
20679 return gen_formal_parameter_die (decl
, origin
,
20680 true /* Emit name attribute. */,
20683 case NAMESPACE_DECL
:
20684 case IMPORTED_DECL
:
20685 if (dwarf_version
>= 3 || !dwarf_strict
)
20686 gen_namespace_die (decl
, context_die
);
20689 case NAMELIST_DECL
:
20690 gen_namelist_decl (DECL_NAME (decl
), context_die
,
20691 NAMELIST_DECL_ASSOCIATED_DECL (decl
));
20695 /* Probably some frontend-internal decl. Assume we don't care. */
20696 gcc_assert ((int)TREE_CODE (decl
) > NUM_TREE_CODES
);
20703 /* Output debug information for global decl DECL. Called from toplev.c after
20704 compilation proper has finished. */
20707 dwarf2out_global_decl (tree decl
)
20709 /* Output DWARF2 information for file-scope tentative data object
20710 declarations, file-scope (extern) function declarations (which
20711 had no corresponding body) and file-scope tagged type declarations
20712 and definitions which have not yet been forced out. */
20713 if (TREE_CODE (decl
) != FUNCTION_DECL
|| !DECL_INITIAL (decl
))
20714 dwarf2out_decl (decl
);
20717 /* Output debug information for type decl DECL. Called from toplev.c
20718 and from language front ends (to record built-in types). */
20720 dwarf2out_type_decl (tree decl
, int local
)
20723 dwarf2out_decl (decl
);
20726 /* Output debug information for imported module or decl DECL.
20727 NAME is non-NULL name in the lexical block if the decl has been renamed.
20728 LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
20729 that DECL belongs to.
20730 LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK. */
20732 dwarf2out_imported_module_or_decl_1 (tree decl
,
20734 tree lexical_block
,
20735 dw_die_ref lexical_block_die
)
20737 expanded_location xloc
;
20738 dw_die_ref imported_die
= NULL
;
20739 dw_die_ref at_import_die
;
20741 if (TREE_CODE (decl
) == IMPORTED_DECL
)
20743 xloc
= expand_location (DECL_SOURCE_LOCATION (decl
));
20744 decl
= IMPORTED_DECL_ASSOCIATED_DECL (decl
);
20748 xloc
= expand_location (input_location
);
20750 if (TREE_CODE (decl
) == TYPE_DECL
|| TREE_CODE (decl
) == CONST_DECL
)
20752 at_import_die
= force_type_die (TREE_TYPE (decl
));
20753 /* For namespace N { typedef void T; } using N::T; base_type_die
20754 returns NULL, but DW_TAG_imported_declaration requires
20755 the DW_AT_import tag. Force creation of DW_TAG_typedef. */
20756 if (!at_import_die
)
20758 gcc_assert (TREE_CODE (decl
) == TYPE_DECL
);
20759 gen_typedef_die (decl
, get_context_die (DECL_CONTEXT (decl
)));
20760 at_import_die
= lookup_type_die (TREE_TYPE (decl
));
20761 gcc_assert (at_import_die
);
20766 at_import_die
= lookup_decl_die (decl
);
20767 if (!at_import_die
)
20769 /* If we're trying to avoid duplicate debug info, we may not have
20770 emitted the member decl for this field. Emit it now. */
20771 if (TREE_CODE (decl
) == FIELD_DECL
)
20773 tree type
= DECL_CONTEXT (decl
);
20775 if (TYPE_CONTEXT (type
)
20776 && TYPE_P (TYPE_CONTEXT (type
))
20777 && !should_emit_struct_debug (TYPE_CONTEXT (type
),
20778 DINFO_USAGE_DIR_USE
))
20780 gen_type_die_for_member (type
, decl
,
20781 get_context_die (TYPE_CONTEXT (type
)));
20783 if (TREE_CODE (decl
) == NAMELIST_DECL
)
20784 at_import_die
= gen_namelist_decl (DECL_NAME (decl
),
20785 get_context_die (DECL_CONTEXT (decl
)),
20788 at_import_die
= force_decl_die (decl
);
20792 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
20794 if (dwarf_version
>= 3 || !dwarf_strict
)
20795 imported_die
= new_die (DW_TAG_imported_module
,
20802 imported_die
= new_die (DW_TAG_imported_declaration
,
20806 add_AT_file (imported_die
, DW_AT_decl_file
, lookup_filename (xloc
.file
));
20807 add_AT_unsigned (imported_die
, DW_AT_decl_line
, xloc
.line
);
20809 add_AT_string (imported_die
, DW_AT_name
,
20810 IDENTIFIER_POINTER (name
));
20811 add_AT_die_ref (imported_die
, DW_AT_import
, at_import_die
);
20814 /* Output debug information for imported module or decl DECL.
20815 NAME is non-NULL name in context if the decl has been renamed.
20816 CHILD is true if decl is one of the renamed decls as part of
20817 importing whole module. */
20820 dwarf2out_imported_module_or_decl (tree decl
, tree name
, tree context
,
20823 /* dw_die_ref at_import_die; */
20824 dw_die_ref scope_die
;
20826 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20831 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
20832 We need decl DIE for reference and scope die. First, get DIE for the decl
20835 /* Get the scope die for decl context. Use comp_unit_die for global module
20836 or decl. If die is not found for non globals, force new die. */
20838 && TYPE_P (context
)
20839 && !should_emit_struct_debug (context
, DINFO_USAGE_DIR_USE
))
20842 if (!(dwarf_version
>= 3 || !dwarf_strict
))
20845 scope_die
= get_context_die (context
);
20849 gcc_assert (scope_die
->die_child
);
20850 gcc_assert (scope_die
->die_child
->die_tag
== DW_TAG_imported_module
);
20851 gcc_assert (TREE_CODE (decl
) != NAMESPACE_DECL
);
20852 scope_die
= scope_die
->die_child
;
20855 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
20856 dwarf2out_imported_module_or_decl_1 (decl
, name
, context
, scope_die
);
20860 /* Output debug information for namelists. */
20863 gen_namelist_decl (tree name
, dw_die_ref scope_die
, tree item_decls
)
20865 dw_die_ref nml_die
, nml_item_die
, nml_item_ref_die
;
20869 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20872 gcc_assert (scope_die
!= NULL
);
20873 nml_die
= new_die (DW_TAG_namelist
, scope_die
, NULL
);
20874 add_AT_string (nml_die
, DW_AT_name
, IDENTIFIER_POINTER (name
));
20876 /* If there are no item_decls, we have a nondefining namelist, e.g.
20877 with USE association; hence, set DW_AT_declaration. */
20878 if (item_decls
== NULL_TREE
)
20880 add_AT_flag (nml_die
, DW_AT_declaration
, 1);
20884 FOR_EACH_CONSTRUCTOR_VALUE (CONSTRUCTOR_ELTS (item_decls
), i
, value
)
20886 nml_item_ref_die
= lookup_decl_die (value
);
20887 if (!nml_item_ref_die
)
20888 nml_item_ref_die
= force_decl_die (value
);
20890 nml_item_die
= new_die (DW_TAG_namelist_item
, nml_die
, NULL
);
20891 add_AT_die_ref (nml_item_die
, DW_AT_namelist_items
, nml_item_ref_die
);
20897 /* Write the debugging output for DECL. */
20900 dwarf2out_decl (tree decl
)
20902 dw_die_ref context_die
= comp_unit_die ();
20904 switch (TREE_CODE (decl
))
20909 case FUNCTION_DECL
:
20910 /* What we would really like to do here is to filter out all mere
20911 file-scope declarations of file-scope functions which are never
20912 referenced later within this translation unit (and keep all of ones
20913 that *are* referenced later on) but we aren't clairvoyant, so we have
20914 no idea which functions will be referenced in the future (i.e. later
20915 on within the current translation unit). So here we just ignore all
20916 file-scope function declarations which are not also definitions. If
20917 and when the debugger needs to know something about these functions,
20918 it will have to hunt around and find the DWARF information associated
20919 with the definition of the function.
20921 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
20922 nodes represent definitions and which ones represent mere
20923 declarations. We have to check DECL_INITIAL instead. That's because
20924 the C front-end supports some weird semantics for "extern inline"
20925 function definitions. These can get inlined within the current
20926 translation unit (and thus, we need to generate Dwarf info for their
20927 abstract instances so that the Dwarf info for the concrete inlined
20928 instances can have something to refer to) but the compiler never
20929 generates any out-of-lines instances of such things (despite the fact
20930 that they *are* definitions).
20932 The important point is that the C front-end marks these "extern
20933 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
20934 them anyway. Note that the C++ front-end also plays some similar games
20935 for inline function definitions appearing within include files which
20936 also contain `#pragma interface' pragmas.
20938 If we are called from dwarf2out_abstract_function output a DIE
20939 anyway. We can end up here this way with early inlining and LTO
20940 where the inlined function is output in a different LTRANS unit
20942 if (DECL_INITIAL (decl
) == NULL_TREE
20943 && ! DECL_ABSTRACT (decl
))
20946 /* If we're a nested function, initially use a parent of NULL; if we're
20947 a plain function, this will be fixed up in decls_for_scope. If
20948 we're a method, it will be ignored, since we already have a DIE. */
20949 if (decl_function_context (decl
)
20950 /* But if we're in terse mode, we don't care about scope. */
20951 && debug_info_level
> DINFO_LEVEL_TERSE
)
20952 context_die
= NULL
;
20956 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
20957 declaration and if the declaration was never even referenced from
20958 within this entire compilation unit. We suppress these DIEs in
20959 order to save space in the .debug section (by eliminating entries
20960 which are probably useless). Note that we must not suppress
20961 block-local extern declarations (whether used or not) because that
20962 would screw-up the debugger's name lookup mechanism and cause it to
20963 miss things which really ought to be in scope at a given point. */
20964 if (DECL_EXTERNAL (decl
) && !TREE_USED (decl
))
20967 /* For local statics lookup proper context die. */
20968 if (TREE_STATIC (decl
)
20969 && DECL_CONTEXT (decl
)
20970 && TREE_CODE (DECL_CONTEXT (decl
)) == FUNCTION_DECL
)
20971 context_die
= lookup_decl_die (DECL_CONTEXT (decl
));
20973 /* If we are in terse mode, don't generate any DIEs to represent any
20974 variable declarations or definitions. */
20975 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20980 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20982 if (!is_fortran () && !is_ada ())
20984 if (TREE_STATIC (decl
) && decl_function_context (decl
))
20985 context_die
= lookup_decl_die (DECL_CONTEXT (decl
));
20988 case NAMESPACE_DECL
:
20989 case IMPORTED_DECL
:
20990 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
20992 if (lookup_decl_die (decl
) != NULL
)
20997 /* Don't emit stubs for types unless they are needed by other DIEs. */
20998 if (TYPE_DECL_SUPPRESS_DEBUG (decl
))
21001 /* Don't bother trying to generate any DIEs to represent any of the
21002 normal built-in types for the language we are compiling. */
21003 if (DECL_IS_BUILTIN (decl
))
21006 /* If we are in terse mode, don't generate any DIEs for types. */
21007 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
21010 /* If we're a function-scope tag, initially use a parent of NULL;
21011 this will be fixed up in decls_for_scope. */
21012 if (decl_function_context (decl
))
21013 context_die
= NULL
;
21017 case NAMELIST_DECL
:
21024 gen_decl_die (decl
, NULL
, context_die
);
21027 /* Write the debugging output for DECL. */
21030 dwarf2out_function_decl (tree decl
)
21032 dwarf2out_decl (decl
);
21033 call_arg_locations
= NULL
;
21034 call_arg_loc_last
= NULL
;
21035 call_site_count
= -1;
21036 tail_call_site_count
= -1;
21037 block_map
.release ();
21038 htab_empty (decl_loc_table
);
21039 htab_empty (cached_dw_loc_list_table
);
21042 /* Output a marker (i.e. a label) for the beginning of the generated code for
21043 a lexical block. */
21046 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED
,
21047 unsigned int blocknum
)
21049 switch_to_section (current_function_section ());
21050 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_BEGIN_LABEL
, blocknum
);
21053 /* Output a marker (i.e. a label) for the end of the generated code for a
21057 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED
, unsigned int blocknum
)
21059 switch_to_section (current_function_section ());
21060 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_END_LABEL
, blocknum
);
21063 /* Returns nonzero if it is appropriate not to emit any debugging
21064 information for BLOCK, because it doesn't contain any instructions.
21066 Don't allow this for blocks with nested functions or local classes
21067 as we would end up with orphans, and in the presence of scheduling
21068 we may end up calling them anyway. */
21071 dwarf2out_ignore_block (const_tree block
)
21076 for (decl
= BLOCK_VARS (block
); decl
; decl
= DECL_CHAIN (decl
))
21077 if (TREE_CODE (decl
) == FUNCTION_DECL
21078 || (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
)))
21080 for (i
= 0; i
< BLOCK_NUM_NONLOCALIZED_VARS (block
); i
++)
21082 decl
= BLOCK_NONLOCALIZED_VAR (block
, i
);
21083 if (TREE_CODE (decl
) == FUNCTION_DECL
21084 || (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
)))
21091 /* Hash table routines for file_hash. */
21094 file_table_eq (const void *p1_p
, const void *p2_p
)
21096 const struct dwarf_file_data
*const p1
=
21097 (const struct dwarf_file_data
*) p1_p
;
21098 const char *const p2
= (const char *) p2_p
;
21099 return filename_cmp (p1
->filename
, p2
) == 0;
21103 file_table_hash (const void *p_p
)
21105 const struct dwarf_file_data
*const p
= (const struct dwarf_file_data
*) p_p
;
21106 return htab_hash_string (p
->filename
);
21109 /* Lookup FILE_NAME (in the list of filenames that we know about here in
21110 dwarf2out.c) and return its "index". The index of each (known) filename is
21111 just a unique number which is associated with only that one filename. We
21112 need such numbers for the sake of generating labels (in the .debug_sfnames
21113 section) and references to those files numbers (in the .debug_srcinfo
21114 and.debug_macinfo sections). If the filename given as an argument is not
21115 found in our current list, add it to the list and assign it the next
21116 available unique index number. In order to speed up searches, we remember
21117 the index of the filename was looked up last. This handles the majority of
21120 static struct dwarf_file_data
*
21121 lookup_filename (const char *file_name
)
21124 struct dwarf_file_data
* created
;
21126 /* Check to see if the file name that was searched on the previous
21127 call matches this file name. If so, return the index. */
21128 if (file_table_last_lookup
21129 && (file_name
== file_table_last_lookup
->filename
21130 || filename_cmp (file_table_last_lookup
->filename
, file_name
) == 0))
21131 return file_table_last_lookup
;
21133 /* Didn't match the previous lookup, search the table. */
21134 slot
= htab_find_slot_with_hash (file_table
, file_name
,
21135 htab_hash_string (file_name
), INSERT
);
21137 return (struct dwarf_file_data
*) *slot
;
21139 created
= ggc_alloc
<dwarf_file_data
> ();
21140 created
->filename
= file_name
;
21141 created
->emitted_number
= 0;
21146 /* If the assembler will construct the file table, then translate the compiler
21147 internal file table number into the assembler file table number, and emit
21148 a .file directive if we haven't already emitted one yet. The file table
21149 numbers are different because we prune debug info for unused variables and
21150 types, which may include filenames. */
21153 maybe_emit_file (struct dwarf_file_data
* fd
)
21155 if (! fd
->emitted_number
)
21157 if (last_emitted_file
)
21158 fd
->emitted_number
= last_emitted_file
->emitted_number
+ 1;
21160 fd
->emitted_number
= 1;
21161 last_emitted_file
= fd
;
21163 if (DWARF2_ASM_LINE_DEBUG_INFO
)
21165 fprintf (asm_out_file
, "\t.file %u ", fd
->emitted_number
);
21166 output_quoted_string (asm_out_file
,
21167 remap_debug_filename (fd
->filename
));
21168 fputc ('\n', asm_out_file
);
21172 return fd
->emitted_number
;
21175 /* Schedule generation of a DW_AT_const_value attribute to DIE.
21176 That generation should happen after function debug info has been
21177 generated. The value of the attribute is the constant value of ARG. */
21180 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die
, tree arg
)
21182 die_arg_entry entry
;
21187 if (!tmpl_value_parm_die_table
)
21188 vec_alloc (tmpl_value_parm_die_table
, 32);
21192 vec_safe_push (tmpl_value_parm_die_table
, entry
);
21195 /* Return TRUE if T is an instance of generic type, FALSE
21199 generic_type_p (tree t
)
21201 if (t
== NULL_TREE
|| !TYPE_P (t
))
21203 return lang_hooks
.get_innermost_generic_parms (t
) != NULL_TREE
;
21206 /* Schedule the generation of the generic parameter dies for the
21207 instance of generic type T. The proper generation itself is later
21208 done by gen_scheduled_generic_parms_dies. */
21211 schedule_generic_params_dies_gen (tree t
)
21213 if (!generic_type_p (t
))
21216 if (!generic_type_instances
)
21217 vec_alloc (generic_type_instances
, 256);
21219 vec_safe_push (generic_type_instances
, t
);
21222 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
21223 by append_entry_to_tmpl_value_parm_die_table. This function must
21224 be called after function DIEs have been generated. */
21227 gen_remaining_tmpl_value_param_die_attribute (void)
21229 if (tmpl_value_parm_die_table
)
21234 FOR_EACH_VEC_ELT (*tmpl_value_parm_die_table
, i
, e
)
21235 tree_add_const_value_attribute (e
->die
, e
->arg
);
21239 /* Generate generic parameters DIEs for instances of generic types
21240 that have been previously scheduled by
21241 schedule_generic_params_dies_gen. This function must be called
21242 after all the types of the CU have been laid out. */
21245 gen_scheduled_generic_parms_dies (void)
21250 if (!generic_type_instances
)
21253 FOR_EACH_VEC_ELT (*generic_type_instances
, i
, t
)
21254 if (COMPLETE_TYPE_P (t
))
21255 gen_generic_params_dies (t
);
21259 /* Replace DW_AT_name for the decl with name. */
21262 dwarf2out_set_name (tree decl
, tree name
)
21268 die
= TYPE_SYMTAB_DIE (decl
);
21272 dname
= dwarf2_name (name
, 0);
21276 attr
= get_AT (die
, DW_AT_name
);
21279 struct indirect_string_node
*node
;
21281 node
= find_AT_string (dname
);
21282 /* replace the string. */
21283 attr
->dw_attr_val
.v
.val_str
= node
;
21287 add_name_attribute (die
, dname
);
21290 /* True if before or during processing of the first function being emitted. */
21291 static bool in_first_function_p
= true;
21292 /* True if loc_note during dwarf2out_var_location call might still be
21293 before first real instruction at address equal to .Ltext0. */
21294 static bool maybe_at_text_label_p
= true;
21295 /* One above highest N where .LVLN label might be equal to .Ltext0 label. */
21296 static unsigned int first_loclabel_num_not_at_text_label
;
21298 /* Called by the final INSN scan whenever we see a var location. We
21299 use it to drop labels in the right places, and throw the location in
21300 our lookup table. */
21303 dwarf2out_var_location (rtx loc_note
)
21305 char loclabel
[MAX_ARTIFICIAL_LABEL_BYTES
+ 2];
21306 struct var_loc_node
*newloc
;
21307 rtx next_real
, next_note
;
21308 static const char *last_label
;
21309 static const char *last_postcall_label
;
21310 static bool last_in_cold_section_p
;
21311 static rtx expected_next_loc_note
;
21315 if (!NOTE_P (loc_note
))
21317 if (CALL_P (loc_note
))
21320 if (SIBLING_CALL_P (loc_note
))
21321 tail_call_site_count
++;
21326 var_loc_p
= NOTE_KIND (loc_note
) == NOTE_INSN_VAR_LOCATION
;
21327 if (var_loc_p
&& !DECL_P (NOTE_VAR_LOCATION_DECL (loc_note
)))
21330 /* Optimize processing a large consecutive sequence of location
21331 notes so we don't spend too much time in next_real_insn. If the
21332 next insn is another location note, remember the next_real_insn
21333 calculation for next time. */
21334 next_real
= cached_next_real_insn
;
21337 if (expected_next_loc_note
!= loc_note
)
21338 next_real
= NULL_RTX
;
21341 next_note
= NEXT_INSN (loc_note
);
21343 || INSN_DELETED_P (next_note
)
21344 || ! NOTE_P (next_note
)
21345 || (NOTE_KIND (next_note
) != NOTE_INSN_VAR_LOCATION
21346 && NOTE_KIND (next_note
) != NOTE_INSN_CALL_ARG_LOCATION
))
21347 next_note
= NULL_RTX
;
21350 next_real
= next_real_insn (loc_note
);
21354 expected_next_loc_note
= next_note
;
21355 cached_next_real_insn
= next_real
;
21358 cached_next_real_insn
= NULL_RTX
;
21360 /* If there are no instructions which would be affected by this note,
21361 don't do anything. */
21363 && next_real
== NULL_RTX
21364 && !NOTE_DURING_CALL_P (loc_note
))
21367 if (next_real
== NULL_RTX
)
21368 next_real
= get_last_insn ();
21370 /* If there were any real insns between note we processed last time
21371 and this note (or if it is the first note), clear
21372 last_{,postcall_}label so that they are not reused this time. */
21373 if (last_var_location_insn
== NULL_RTX
21374 || last_var_location_insn
!= next_real
21375 || last_in_cold_section_p
!= in_cold_section_p
)
21378 last_postcall_label
= NULL
;
21383 decl
= NOTE_VAR_LOCATION_DECL (loc_note
);
21384 newloc
= add_var_loc_to_decl (decl
, loc_note
,
21385 NOTE_DURING_CALL_P (loc_note
)
21386 ? last_postcall_label
: last_label
);
21387 if (newloc
== NULL
)
21396 /* If there were no real insns between note we processed last time
21397 and this note, use the label we emitted last time. Otherwise
21398 create a new label and emit it. */
21399 if (last_label
== NULL
)
21401 ASM_GENERATE_INTERNAL_LABEL (loclabel
, "LVL", loclabel_num
);
21402 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, "LVL", loclabel_num
);
21404 last_label
= ggc_strdup (loclabel
);
21405 /* See if loclabel might be equal to .Ltext0. If yes,
21406 bump first_loclabel_num_not_at_text_label. */
21407 if (!have_multiple_function_sections
21408 && in_first_function_p
21409 && maybe_at_text_label_p
)
21411 static rtx last_start
;
21413 for (insn
= loc_note
; insn
; insn
= previous_insn (insn
))
21414 if (insn
== last_start
)
21416 else if (!NONDEBUG_INSN_P (insn
))
21420 rtx body
= PATTERN (insn
);
21421 if (GET_CODE (body
) == USE
|| GET_CODE (body
) == CLOBBER
)
21423 /* Inline asm could occupy zero bytes. */
21424 else if (GET_CODE (body
) == ASM_INPUT
21425 || asm_noperands (body
) >= 0)
21427 #ifdef HAVE_attr_length
21428 else if (get_attr_min_length (insn
) == 0)
21433 /* Assume insn has non-zero length. */
21434 maybe_at_text_label_p
= false;
21438 if (maybe_at_text_label_p
)
21440 last_start
= loc_note
;
21441 first_loclabel_num_not_at_text_label
= loclabel_num
;
21448 struct call_arg_loc_node
*ca_loc
21449 = ggc_cleared_alloc
<call_arg_loc_node
> ();
21450 rtx prev
= prev_real_insn (loc_note
), x
;
21451 ca_loc
->call_arg_loc_note
= loc_note
;
21452 ca_loc
->next
= NULL
;
21453 ca_loc
->label
= last_label
;
21456 || (NONJUMP_INSN_P (prev
)
21457 && GET_CODE (PATTERN (prev
)) == SEQUENCE
21458 && CALL_P (XVECEXP (PATTERN (prev
), 0, 0)))));
21459 if (!CALL_P (prev
))
21460 prev
= XVECEXP (PATTERN (prev
), 0, 0);
21461 ca_loc
->tail_call_p
= SIBLING_CALL_P (prev
);
21462 x
= get_call_rtx_from (PATTERN (prev
));
21465 x
= XEXP (XEXP (x
, 0), 0);
21466 if (GET_CODE (x
) == SYMBOL_REF
21467 && SYMBOL_REF_DECL (x
)
21468 && TREE_CODE (SYMBOL_REF_DECL (x
)) == FUNCTION_DECL
)
21469 ca_loc
->symbol_ref
= x
;
21471 ca_loc
->block
= insn_scope (prev
);
21472 if (call_arg_locations
)
21473 call_arg_loc_last
->next
= ca_loc
;
21475 call_arg_locations
= ca_loc
;
21476 call_arg_loc_last
= ca_loc
;
21478 else if (!NOTE_DURING_CALL_P (loc_note
))
21479 newloc
->label
= last_label
;
21482 if (!last_postcall_label
)
21484 sprintf (loclabel
, "%s-1", last_label
);
21485 last_postcall_label
= ggc_strdup (loclabel
);
21487 newloc
->label
= last_postcall_label
;
21490 last_var_location_insn
= next_real
;
21491 last_in_cold_section_p
= in_cold_section_p
;
21494 /* Note in one location list that text section has changed. */
21497 var_location_switch_text_section_1 (void **slot
, void *data ATTRIBUTE_UNUSED
)
21499 var_loc_list
*list
= (var_loc_list
*) *slot
;
21501 list
->last_before_switch
21502 = list
->last
->next
? list
->last
->next
: list
->last
;
21506 /* Note in all location lists that text section has changed. */
21509 var_location_switch_text_section (void)
21511 if (decl_loc_table
== NULL
)
21514 htab_traverse (decl_loc_table
, var_location_switch_text_section_1
, NULL
);
21517 /* Create a new line number table. */
21519 static dw_line_info_table
*
21520 new_line_info_table (void)
21522 dw_line_info_table
*table
;
21524 table
= ggc_cleared_alloc
<dw_line_info_table_struct
> ();
21525 table
->file_num
= 1;
21526 table
->line_num
= 1;
21527 table
->is_stmt
= DWARF_LINE_DEFAULT_IS_STMT_START
;
21532 /* Lookup the "current" table into which we emit line info, so
21533 that we don't have to do it for every source line. */
21536 set_cur_line_info_table (section
*sec
)
21538 dw_line_info_table
*table
;
21540 if (sec
== text_section
)
21541 table
= text_section_line_info
;
21542 else if (sec
== cold_text_section
)
21544 table
= cold_text_section_line_info
;
21547 cold_text_section_line_info
= table
= new_line_info_table ();
21548 table
->end_label
= cold_end_label
;
21553 const char *end_label
;
21555 if (flag_reorder_blocks_and_partition
)
21557 if (in_cold_section_p
)
21558 end_label
= crtl
->subsections
.cold_section_end_label
;
21560 end_label
= crtl
->subsections
.hot_section_end_label
;
21564 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
21565 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_END_LABEL
,
21566 current_function_funcdef_no
);
21567 end_label
= ggc_strdup (label
);
21570 table
= new_line_info_table ();
21571 table
->end_label
= end_label
;
21573 vec_safe_push (separate_line_info
, table
);
21576 if (DWARF2_ASM_LINE_DEBUG_INFO
)
21577 table
->is_stmt
= (cur_line_info_table
21578 ? cur_line_info_table
->is_stmt
21579 : DWARF_LINE_DEFAULT_IS_STMT_START
);
21580 cur_line_info_table
= table
;
21584 /* We need to reset the locations at the beginning of each
21585 function. We can't do this in the end_function hook, because the
21586 declarations that use the locations won't have been output when
21587 that hook is called. Also compute have_multiple_function_sections here. */
21590 dwarf2out_begin_function (tree fun
)
21592 section
*sec
= function_section (fun
);
21594 if (sec
!= text_section
)
21595 have_multiple_function_sections
= true;
21597 if (flag_reorder_blocks_and_partition
&& !cold_text_section
)
21599 gcc_assert (current_function_decl
== fun
);
21600 cold_text_section
= unlikely_text_section ();
21601 switch_to_section (cold_text_section
);
21602 ASM_OUTPUT_LABEL (asm_out_file
, cold_text_section_label
);
21603 switch_to_section (sec
);
21606 dwarf2out_note_section_used ();
21607 call_site_count
= 0;
21608 tail_call_site_count
= 0;
21610 set_cur_line_info_table (sec
);
21613 /* Helper function of dwarf2out_end_function, called only after emitting
21614 the very first function into assembly. Check if some .debug_loc range
21615 might end with a .LVL* label that could be equal to .Ltext0.
21616 In that case we must force using absolute addresses in .debug_loc ranges,
21617 because this range could be .LVLN-.Ltext0 .. .LVLM-.Ltext0 for
21618 .LVLN == .LVLM == .Ltext0, thus 0 .. 0, which is a .debug_loc
21620 Set have_multiple_function_sections to true in that case and
21621 terminate htab traversal. */
21624 find_empty_loc_ranges_at_text_label (void **slot
, void *)
21626 var_loc_list
*entry
;
21627 struct var_loc_node
*node
;
21629 entry
= (var_loc_list
*) *slot
;
21630 node
= entry
->first
;
21631 if (node
&& node
->next
&& node
->next
->label
)
21634 const char *label
= node
->next
->label
;
21635 char loclabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
21637 for (i
= 0; i
< first_loclabel_num_not_at_text_label
; i
++)
21639 ASM_GENERATE_INTERNAL_LABEL (loclabel
, "LVL", i
);
21640 if (strcmp (label
, loclabel
) == 0)
21642 have_multiple_function_sections
= true;
21650 /* Hook called after emitting a function into assembly.
21651 This does something only for the very first function emitted. */
21654 dwarf2out_end_function (unsigned int)
21656 if (in_first_function_p
21657 && !have_multiple_function_sections
21658 && first_loclabel_num_not_at_text_label
21660 htab_traverse (decl_loc_table
, find_empty_loc_ranges_at_text_label
,
21662 in_first_function_p
= false;
21663 maybe_at_text_label_p
= false;
21666 /* Add OPCODE+VAL as an entry at the end of the opcode array in TABLE. */
21669 push_dw_line_info_entry (dw_line_info_table
*table
,
21670 enum dw_line_info_opcode opcode
, unsigned int val
)
21672 dw_line_info_entry e
;
21675 vec_safe_push (table
->entries
, e
);
21678 /* Output a label to mark the beginning of a source code line entry
21679 and record information relating to this source line, in
21680 'line_info_table' for later output of the .debug_line section. */
21681 /* ??? The discriminator parameter ought to be unsigned. */
21684 dwarf2out_source_line (unsigned int line
, const char *filename
,
21685 int discriminator
, bool is_stmt
)
21687 unsigned int file_num
;
21688 dw_line_info_table
*table
;
21690 if (debug_info_level
< DINFO_LEVEL_TERSE
|| line
== 0)
21693 /* The discriminator column was added in dwarf4. Simplify the below
21694 by simply removing it if we're not supposed to output it. */
21695 if (dwarf_version
< 4 && dwarf_strict
)
21698 table
= cur_line_info_table
;
21699 file_num
= maybe_emit_file (lookup_filename (filename
));
21701 /* ??? TODO: Elide duplicate line number entries. Traditionally,
21702 the debugger has used the second (possibly duplicate) line number
21703 at the beginning of the function to mark the end of the prologue.
21704 We could eliminate any other duplicates within the function. For
21705 Dwarf3, we ought to include the DW_LNS_set_prologue_end mark in
21706 that second line number entry. */
21707 /* Recall that this end-of-prologue indication is *not* the same thing
21708 as the end_prologue debug hook. The NOTE_INSN_PROLOGUE_END note,
21709 to which the hook corresponds, follows the last insn that was
21710 emitted by gen_prologue. What we need is to precede the first insn
21711 that had been emitted after NOTE_INSN_FUNCTION_BEG, i.e. the first
21712 insn that corresponds to something the user wrote. These may be
21713 very different locations once scheduling is enabled. */
21715 if (0 && file_num
== table
->file_num
21716 && line
== table
->line_num
21717 && discriminator
== table
->discrim_num
21718 && is_stmt
== table
->is_stmt
)
21721 switch_to_section (current_function_section ());
21723 /* If requested, emit something human-readable. */
21724 if (flag_debug_asm
)
21725 fprintf (asm_out_file
, "\t%s %s:%d\n", ASM_COMMENT_START
, filename
, line
);
21727 if (DWARF2_ASM_LINE_DEBUG_INFO
)
21729 /* Emit the .loc directive understood by GNU as. */
21730 /* "\t.loc %u %u 0 is_stmt %u discriminator %u",
21731 file_num, line, is_stmt, discriminator */
21732 fputs ("\t.loc ", asm_out_file
);
21733 fprint_ul (asm_out_file
, file_num
);
21734 putc (' ', asm_out_file
);
21735 fprint_ul (asm_out_file
, line
);
21736 putc (' ', asm_out_file
);
21737 putc ('0', asm_out_file
);
21739 if (is_stmt
!= table
->is_stmt
)
21741 fputs (" is_stmt ", asm_out_file
);
21742 putc (is_stmt
? '1' : '0', asm_out_file
);
21744 if (SUPPORTS_DISCRIMINATOR
&& discriminator
!= 0)
21746 gcc_assert (discriminator
> 0);
21747 fputs (" discriminator ", asm_out_file
);
21748 fprint_ul (asm_out_file
, (unsigned long) discriminator
);
21750 putc ('\n', asm_out_file
);
21754 unsigned int label_num
= ++line_info_label_num
;
21756 targetm
.asm_out
.internal_label (asm_out_file
, LINE_CODE_LABEL
, label_num
);
21758 push_dw_line_info_entry (table
, LI_set_address
, label_num
);
21759 if (file_num
!= table
->file_num
)
21760 push_dw_line_info_entry (table
, LI_set_file
, file_num
);
21761 if (discriminator
!= table
->discrim_num
)
21762 push_dw_line_info_entry (table
, LI_set_discriminator
, discriminator
);
21763 if (is_stmt
!= table
->is_stmt
)
21764 push_dw_line_info_entry (table
, LI_negate_stmt
, 0);
21765 push_dw_line_info_entry (table
, LI_set_line
, line
);
21768 table
->file_num
= file_num
;
21769 table
->line_num
= line
;
21770 table
->discrim_num
= discriminator
;
21771 table
->is_stmt
= is_stmt
;
21772 table
->in_use
= true;
21775 /* Record the beginning of a new source file. */
21778 dwarf2out_start_source_file (unsigned int lineno
, const char *filename
)
21780 if (flag_eliminate_dwarf2_dups
)
21782 /* Record the beginning of the file for break_out_includes. */
21783 dw_die_ref bincl_die
;
21785 bincl_die
= new_die (DW_TAG_GNU_BINCL
, comp_unit_die (), NULL
);
21786 add_AT_string (bincl_die
, DW_AT_name
, remap_debug_filename (filename
));
21789 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
21792 e
.code
= DW_MACINFO_start_file
;
21794 e
.info
= ggc_strdup (filename
);
21795 vec_safe_push (macinfo_table
, e
);
21799 /* Record the end of a source file. */
21802 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED
)
21804 if (flag_eliminate_dwarf2_dups
)
21805 /* Record the end of the file for break_out_includes. */
21806 new_die (DW_TAG_GNU_EINCL
, comp_unit_die (), NULL
);
21808 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
21811 e
.code
= DW_MACINFO_end_file
;
21814 vec_safe_push (macinfo_table
, e
);
21818 /* Called from debug_define in toplev.c. The `buffer' parameter contains
21819 the tail part of the directive line, i.e. the part which is past the
21820 initial whitespace, #, whitespace, directive-name, whitespace part. */
21823 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED
,
21824 const char *buffer ATTRIBUTE_UNUSED
)
21826 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
21829 /* Insert a dummy first entry to be able to optimize the whole
21830 predefined macro block using DW_MACRO_GNU_transparent_include. */
21831 if (macinfo_table
->is_empty () && lineno
<= 1)
21836 vec_safe_push (macinfo_table
, e
);
21838 e
.code
= DW_MACINFO_define
;
21840 e
.info
= ggc_strdup (buffer
);
21841 vec_safe_push (macinfo_table
, e
);
21845 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
21846 the tail part of the directive line, i.e. the part which is past the
21847 initial whitespace, #, whitespace, directive-name, whitespace part. */
21850 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED
,
21851 const char *buffer ATTRIBUTE_UNUSED
)
21853 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
21856 /* Insert a dummy first entry to be able to optimize the whole
21857 predefined macro block using DW_MACRO_GNU_transparent_include. */
21858 if (macinfo_table
->is_empty () && lineno
<= 1)
21863 vec_safe_push (macinfo_table
, e
);
21865 e
.code
= DW_MACINFO_undef
;
21867 e
.info
= ggc_strdup (buffer
);
21868 vec_safe_push (macinfo_table
, e
);
21872 /* Helpers to manipulate hash table of CUs. */
21874 struct macinfo_entry_hasher
: typed_noop_remove
<macinfo_entry
>
21876 typedef macinfo_entry value_type
;
21877 typedef macinfo_entry compare_type
;
21878 static inline hashval_t
hash (const value_type
*);
21879 static inline bool equal (const value_type
*, const compare_type
*);
21883 macinfo_entry_hasher::hash (const value_type
*entry
)
21885 return htab_hash_string (entry
->info
);
21889 macinfo_entry_hasher::equal (const value_type
*entry1
,
21890 const compare_type
*entry2
)
21892 return !strcmp (entry1
->info
, entry2
->info
);
21895 typedef hash_table
<macinfo_entry_hasher
> macinfo_hash_type
;
21897 /* Output a single .debug_macinfo entry. */
21900 output_macinfo_op (macinfo_entry
*ref
)
21904 struct indirect_string_node
*node
;
21905 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
21906 struct dwarf_file_data
*fd
;
21910 case DW_MACINFO_start_file
:
21911 fd
= lookup_filename (ref
->info
);
21912 file_num
= maybe_emit_file (fd
);
21913 dw2_asm_output_data (1, DW_MACINFO_start_file
, "Start new file");
21914 dw2_asm_output_data_uleb128 (ref
->lineno
,
21915 "Included from line number %lu",
21916 (unsigned long) ref
->lineno
);
21917 dw2_asm_output_data_uleb128 (file_num
, "file %s", ref
->info
);
21919 case DW_MACINFO_end_file
:
21920 dw2_asm_output_data (1, DW_MACINFO_end_file
, "End file");
21922 case DW_MACINFO_define
:
21923 case DW_MACINFO_undef
:
21924 len
= strlen (ref
->info
) + 1;
21926 && len
> DWARF_OFFSET_SIZE
21927 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
21928 && (debug_str_section
->common
.flags
& SECTION_MERGE
) != 0)
21930 ref
->code
= ref
->code
== DW_MACINFO_define
21931 ? DW_MACRO_GNU_define_indirect
21932 : DW_MACRO_GNU_undef_indirect
;
21933 output_macinfo_op (ref
);
21936 dw2_asm_output_data (1, ref
->code
,
21937 ref
->code
== DW_MACINFO_define
21938 ? "Define macro" : "Undefine macro");
21939 dw2_asm_output_data_uleb128 (ref
->lineno
, "At line number %lu",
21940 (unsigned long) ref
->lineno
);
21941 dw2_asm_output_nstring (ref
->info
, -1, "The macro");
21943 case DW_MACRO_GNU_define_indirect
:
21944 case DW_MACRO_GNU_undef_indirect
:
21945 node
= find_AT_string (ref
->info
);
21947 && ((node
->form
== DW_FORM_strp
)
21948 || (node
->form
== DW_FORM_GNU_str_index
)));
21949 dw2_asm_output_data (1, ref
->code
,
21950 ref
->code
== DW_MACRO_GNU_define_indirect
21951 ? "Define macro indirect"
21952 : "Undefine macro indirect");
21953 dw2_asm_output_data_uleb128 (ref
->lineno
, "At line number %lu",
21954 (unsigned long) ref
->lineno
);
21955 if (node
->form
== DW_FORM_strp
)
21956 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, node
->label
,
21957 debug_str_section
, "The macro: \"%s\"",
21960 dw2_asm_output_data_uleb128 (node
->index
, "The macro: \"%s\"",
21963 case DW_MACRO_GNU_transparent_include
:
21964 dw2_asm_output_data (1, ref
->code
, "Transparent include");
21965 ASM_GENERATE_INTERNAL_LABEL (label
,
21966 DEBUG_MACRO_SECTION_LABEL
, ref
->lineno
);
21967 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, label
, NULL
, NULL
);
21970 fprintf (asm_out_file
, "%s unrecognized macinfo code %lu\n",
21971 ASM_COMMENT_START
, (unsigned long) ref
->code
);
21976 /* Attempt to make a sequence of define/undef macinfo ops shareable with
21977 other compilation unit .debug_macinfo sections. IDX is the first
21978 index of a define/undef, return the number of ops that should be
21979 emitted in a comdat .debug_macinfo section and emit
21980 a DW_MACRO_GNU_transparent_include entry referencing it.
21981 If the define/undef entry should be emitted normally, return 0. */
21984 optimize_macinfo_range (unsigned int idx
, vec
<macinfo_entry
, va_gc
> *files
,
21985 macinfo_hash_type
*macinfo_htab
)
21987 macinfo_entry
*first
, *second
, *cur
, *inc
;
21988 char linebuf
[sizeof (HOST_WIDE_INT
) * 3 + 1];
21989 unsigned char checksum
[16];
21990 struct md5_ctx ctx
;
21991 char *grp_name
, *tail
;
21993 unsigned int i
, count
, encoded_filename_len
, linebuf_len
;
21994 macinfo_entry
**slot
;
21996 first
= &(*macinfo_table
)[idx
];
21997 second
= &(*macinfo_table
)[idx
+ 1];
21999 /* Optimize only if there are at least two consecutive define/undef ops,
22000 and either all of them are before first DW_MACINFO_start_file
22001 with lineno {0,1} (i.e. predefined macro block), or all of them are
22002 in some included header file. */
22003 if (second
->code
!= DW_MACINFO_define
&& second
->code
!= DW_MACINFO_undef
)
22005 if (vec_safe_is_empty (files
))
22007 if (first
->lineno
> 1 || second
->lineno
> 1)
22010 else if (first
->lineno
== 0)
22013 /* Find the last define/undef entry that can be grouped together
22014 with first and at the same time compute md5 checksum of their
22015 codes, linenumbers and strings. */
22016 md5_init_ctx (&ctx
);
22017 for (i
= idx
; macinfo_table
->iterate (i
, &cur
); i
++)
22018 if (cur
->code
!= DW_MACINFO_define
&& cur
->code
!= DW_MACINFO_undef
)
22020 else if (vec_safe_is_empty (files
) && cur
->lineno
> 1)
22024 unsigned char code
= cur
->code
;
22025 md5_process_bytes (&code
, 1, &ctx
);
22026 checksum_uleb128 (cur
->lineno
, &ctx
);
22027 md5_process_bytes (cur
->info
, strlen (cur
->info
) + 1, &ctx
);
22029 md5_finish_ctx (&ctx
, checksum
);
22032 /* From the containing include filename (if any) pick up just
22033 usable characters from its basename. */
22034 if (vec_safe_is_empty (files
))
22037 base
= lbasename (files
->last ().info
);
22038 for (encoded_filename_len
= 0, i
= 0; base
[i
]; i
++)
22039 if (ISIDNUM (base
[i
]) || base
[i
] == '.')
22040 encoded_filename_len
++;
22041 /* Count . at the end. */
22042 if (encoded_filename_len
)
22043 encoded_filename_len
++;
22045 sprintf (linebuf
, HOST_WIDE_INT_PRINT_UNSIGNED
, first
->lineno
);
22046 linebuf_len
= strlen (linebuf
);
22048 /* The group name format is: wmN.[<encoded filename>.]<lineno>.<md5sum> */
22049 grp_name
= XALLOCAVEC (char, 4 + encoded_filename_len
+ linebuf_len
+ 1
22051 memcpy (grp_name
, DWARF_OFFSET_SIZE
== 4 ? "wm4." : "wm8.", 4);
22052 tail
= grp_name
+ 4;
22053 if (encoded_filename_len
)
22055 for (i
= 0; base
[i
]; i
++)
22056 if (ISIDNUM (base
[i
]) || base
[i
] == '.')
22060 memcpy (tail
, linebuf
, linebuf_len
);
22061 tail
+= linebuf_len
;
22063 for (i
= 0; i
< 16; i
++)
22064 sprintf (tail
+ i
* 2, "%02x", checksum
[i
] & 0xff);
22066 /* Construct a macinfo_entry for DW_MACRO_GNU_transparent_include
22067 in the empty vector entry before the first define/undef. */
22068 inc
= &(*macinfo_table
)[idx
- 1];
22069 inc
->code
= DW_MACRO_GNU_transparent_include
;
22071 inc
->info
= ggc_strdup (grp_name
);
22072 if (!macinfo_htab
->is_created ())
22073 macinfo_htab
->create (10);
22074 /* Avoid emitting duplicates. */
22075 slot
= macinfo_htab
->find_slot (inc
, INSERT
);
22080 /* If such an entry has been used before, just emit
22081 a DW_MACRO_GNU_transparent_include op. */
22083 output_macinfo_op (inc
);
22084 /* And clear all macinfo_entry in the range to avoid emitting them
22085 in the second pass. */
22086 for (i
= idx
; macinfo_table
->iterate (i
, &cur
) && i
< idx
+ count
; i
++)
22095 inc
->lineno
= macinfo_htab
->elements ();
22096 output_macinfo_op (inc
);
22101 /* Save any strings needed by the macinfo table in the debug str
22102 table. All strings must be collected into the table by the time
22103 index_string is called. */
22106 save_macinfo_strings (void)
22110 macinfo_entry
*ref
;
22112 for (i
= 0; macinfo_table
&& macinfo_table
->iterate (i
, &ref
); i
++)
22116 /* Match the logic in output_macinfo_op to decide on
22117 indirect strings. */
22118 case DW_MACINFO_define
:
22119 case DW_MACINFO_undef
:
22120 len
= strlen (ref
->info
) + 1;
22122 && len
> DWARF_OFFSET_SIZE
22123 && !DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
22124 && (debug_str_section
->common
.flags
& SECTION_MERGE
) != 0)
22125 set_indirect_string (find_AT_string (ref
->info
));
22127 case DW_MACRO_GNU_define_indirect
:
22128 case DW_MACRO_GNU_undef_indirect
:
22129 set_indirect_string (find_AT_string (ref
->info
));
22137 /* Output macinfo section(s). */
22140 output_macinfo (void)
22143 unsigned long length
= vec_safe_length (macinfo_table
);
22144 macinfo_entry
*ref
;
22145 vec
<macinfo_entry
, va_gc
> *files
= NULL
;
22146 macinfo_hash_type macinfo_htab
;
22151 /* output_macinfo* uses these interchangeably. */
22152 gcc_assert ((int) DW_MACINFO_define
== (int) DW_MACRO_GNU_define
22153 && (int) DW_MACINFO_undef
== (int) DW_MACRO_GNU_undef
22154 && (int) DW_MACINFO_start_file
== (int) DW_MACRO_GNU_start_file
22155 && (int) DW_MACINFO_end_file
== (int) DW_MACRO_GNU_end_file
);
22157 /* For .debug_macro emit the section header. */
22160 dw2_asm_output_data (2, 4, "DWARF macro version number");
22161 if (DWARF_OFFSET_SIZE
== 8)
22162 dw2_asm_output_data (1, 3, "Flags: 64-bit, lineptr present");
22164 dw2_asm_output_data (1, 2, "Flags: 32-bit, lineptr present");
22165 dw2_asm_output_offset (DWARF_OFFSET_SIZE
,
22166 (!dwarf_split_debug_info
? debug_line_section_label
22167 : debug_skeleton_line_section_label
),
22168 debug_line_section
, NULL
);
22171 /* In the first loop, it emits the primary .debug_macinfo section
22172 and after each emitted op the macinfo_entry is cleared.
22173 If a longer range of define/undef ops can be optimized using
22174 DW_MACRO_GNU_transparent_include, the
22175 DW_MACRO_GNU_transparent_include op is emitted and kept in
22176 the vector before the first define/undef in the range and the
22177 whole range of define/undef ops is not emitted and kept. */
22178 for (i
= 0; macinfo_table
->iterate (i
, &ref
); i
++)
22182 case DW_MACINFO_start_file
:
22183 vec_safe_push (files
, *ref
);
22185 case DW_MACINFO_end_file
:
22186 if (!vec_safe_is_empty (files
))
22189 case DW_MACINFO_define
:
22190 case DW_MACINFO_undef
:
22192 && HAVE_COMDAT_GROUP
22193 && vec_safe_length (files
) != 1
22196 && (*macinfo_table
)[i
- 1].code
== 0)
22198 unsigned count
= optimize_macinfo_range (i
, files
, &macinfo_htab
);
22207 /* A dummy entry may be inserted at the beginning to be able
22208 to optimize the whole block of predefined macros. */
22214 output_macinfo_op (ref
);
22219 if (!macinfo_htab
.is_created ())
22222 macinfo_htab
.dispose ();
22224 /* If any DW_MACRO_GNU_transparent_include were used, on those
22225 DW_MACRO_GNU_transparent_include entries terminate the
22226 current chain and switch to a new comdat .debug_macinfo
22227 section and emit the define/undef entries within it. */
22228 for (i
= 0; macinfo_table
->iterate (i
, &ref
); i
++)
22233 case DW_MACRO_GNU_transparent_include
:
22235 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
22236 tree comdat_key
= get_identifier (ref
->info
);
22237 /* Terminate the previous .debug_macinfo section. */
22238 dw2_asm_output_data (1, 0, "End compilation unit");
22239 targetm
.asm_out
.named_section (DEBUG_MACRO_SECTION
,
22241 | SECTION_LINKONCE
,
22243 ASM_GENERATE_INTERNAL_LABEL (label
,
22244 DEBUG_MACRO_SECTION_LABEL
,
22246 ASM_OUTPUT_LABEL (asm_out_file
, label
);
22249 dw2_asm_output_data (2, 4, "DWARF macro version number");
22250 if (DWARF_OFFSET_SIZE
== 8)
22251 dw2_asm_output_data (1, 1, "Flags: 64-bit");
22253 dw2_asm_output_data (1, 0, "Flags: 32-bit");
22256 case DW_MACINFO_define
:
22257 case DW_MACINFO_undef
:
22258 output_macinfo_op (ref
);
22263 gcc_unreachable ();
22267 /* Set up for Dwarf output at the start of compilation. */
22270 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED
)
22272 /* Allocate the file_table. */
22273 file_table
= htab_create_ggc (50, file_table_hash
,
22274 file_table_eq
, NULL
);
22276 /* Allocate the decl_die_table. */
22277 decl_die_table
= htab_create_ggc (10, decl_die_table_hash
,
22278 decl_die_table_eq
, NULL
);
22280 /* Allocate the decl_loc_table. */
22281 decl_loc_table
= htab_create_ggc (10, decl_loc_table_hash
,
22282 decl_loc_table_eq
, NULL
);
22284 /* Allocate the cached_dw_loc_list_table. */
22285 cached_dw_loc_list_table
22286 = htab_create_ggc (10, cached_dw_loc_list_table_hash
,
22287 cached_dw_loc_list_table_eq
, NULL
);
22289 /* Allocate the initial hunk of the decl_scope_table. */
22290 vec_alloc (decl_scope_table
, 256);
22292 /* Allocate the initial hunk of the abbrev_die_table. */
22293 abbrev_die_table
= ggc_cleared_vec_alloc
<dw_die_ref
>
22294 (ABBREV_DIE_TABLE_INCREMENT
);
22295 abbrev_die_table_allocated
= ABBREV_DIE_TABLE_INCREMENT
;
22296 /* Zero-th entry is allocated, but unused. */
22297 abbrev_die_table_in_use
= 1;
22299 /* Allocate the pubtypes and pubnames vectors. */
22300 vec_alloc (pubname_table
, 32);
22301 vec_alloc (pubtype_table
, 32);
22303 vec_alloc (incomplete_types
, 64);
22305 vec_alloc (used_rtx_array
, 32);
22307 if (!dwarf_split_debug_info
)
22309 debug_info_section
= get_section (DEBUG_INFO_SECTION
,
22310 SECTION_DEBUG
, NULL
);
22311 debug_abbrev_section
= get_section (DEBUG_ABBREV_SECTION
,
22312 SECTION_DEBUG
, NULL
);
22313 debug_loc_section
= get_section (DEBUG_LOC_SECTION
,
22314 SECTION_DEBUG
, NULL
);
22318 debug_info_section
= get_section (DEBUG_DWO_INFO_SECTION
,
22319 SECTION_DEBUG
| SECTION_EXCLUDE
, NULL
);
22320 debug_abbrev_section
= get_section (DEBUG_DWO_ABBREV_SECTION
,
22321 SECTION_DEBUG
| SECTION_EXCLUDE
,
22323 debug_addr_section
= get_section (DEBUG_ADDR_SECTION
,
22324 SECTION_DEBUG
, NULL
);
22325 debug_skeleton_info_section
= get_section (DEBUG_INFO_SECTION
,
22326 SECTION_DEBUG
, NULL
);
22327 debug_skeleton_abbrev_section
= get_section (DEBUG_ABBREV_SECTION
,
22328 SECTION_DEBUG
, NULL
);
22329 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_abbrev_section_label
,
22330 DEBUG_SKELETON_ABBREV_SECTION_LABEL
, 0);
22332 /* Somewhat confusing detail: The skeleton_[abbrev|info] sections stay in
22333 the main .o, but the skeleton_line goes into the split off dwo. */
22334 debug_skeleton_line_section
22335 = get_section (DEBUG_DWO_LINE_SECTION
,
22336 SECTION_DEBUG
| SECTION_EXCLUDE
, NULL
);
22337 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_line_section_label
,
22338 DEBUG_SKELETON_LINE_SECTION_LABEL
, 0);
22339 debug_str_offsets_section
= get_section (DEBUG_STR_OFFSETS_SECTION
,
22340 SECTION_DEBUG
| SECTION_EXCLUDE
,
22342 ASM_GENERATE_INTERNAL_LABEL (debug_skeleton_info_section_label
,
22343 DEBUG_SKELETON_INFO_SECTION_LABEL
, 0);
22344 debug_loc_section
= get_section (DEBUG_DWO_LOC_SECTION
,
22345 SECTION_DEBUG
| SECTION_EXCLUDE
, NULL
);
22346 debug_str_dwo_section
= get_section (DEBUG_STR_DWO_SECTION
,
22347 DEBUG_STR_DWO_SECTION_FLAGS
, NULL
);
22349 debug_aranges_section
= get_section (DEBUG_ARANGES_SECTION
,
22350 SECTION_DEBUG
, NULL
);
22351 debug_macinfo_section
= get_section (dwarf_strict
22352 ? DEBUG_MACINFO_SECTION
22353 : DEBUG_MACRO_SECTION
,
22354 DEBUG_MACRO_SECTION_FLAGS
, NULL
);
22355 debug_line_section
= get_section (DEBUG_LINE_SECTION
,
22356 SECTION_DEBUG
, NULL
);
22357 debug_pubnames_section
= get_section (DEBUG_PUBNAMES_SECTION
,
22358 SECTION_DEBUG
, NULL
);
22359 debug_pubtypes_section
= get_section (DEBUG_PUBTYPES_SECTION
,
22360 SECTION_DEBUG
, NULL
);
22361 debug_str_section
= get_section (DEBUG_STR_SECTION
,
22362 DEBUG_STR_SECTION_FLAGS
, NULL
);
22363 debug_ranges_section
= get_section (DEBUG_RANGES_SECTION
,
22364 SECTION_DEBUG
, NULL
);
22365 debug_frame_section
= get_section (DEBUG_FRAME_SECTION
,
22366 SECTION_DEBUG
, NULL
);
22368 ASM_GENERATE_INTERNAL_LABEL (text_end_label
, TEXT_END_LABEL
, 0);
22369 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label
,
22370 DEBUG_ABBREV_SECTION_LABEL
, 0);
22371 ASM_GENERATE_INTERNAL_LABEL (text_section_label
, TEXT_SECTION_LABEL
, 0);
22372 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label
,
22373 COLD_TEXT_SECTION_LABEL
, 0);
22374 ASM_GENERATE_INTERNAL_LABEL (cold_end_label
, COLD_END_LABEL
, 0);
22376 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label
,
22377 DEBUG_INFO_SECTION_LABEL
, 0);
22378 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label
,
22379 DEBUG_LINE_SECTION_LABEL
, 0);
22380 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label
,
22381 DEBUG_RANGES_SECTION_LABEL
, 0);
22382 ASM_GENERATE_INTERNAL_LABEL (debug_addr_section_label
,
22383 DEBUG_ADDR_SECTION_LABEL
, 0);
22384 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label
,
22386 ? DEBUG_MACINFO_SECTION_LABEL
22387 : DEBUG_MACRO_SECTION_LABEL
, 0);
22388 ASM_GENERATE_INTERNAL_LABEL (loc_section_label
, DEBUG_LOC_SECTION_LABEL
, 0);
22390 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
22391 vec_alloc (macinfo_table
, 64);
22393 switch_to_section (text_section
);
22394 ASM_OUTPUT_LABEL (asm_out_file
, text_section_label
);
22396 /* Make sure the line number table for .text always exists. */
22397 text_section_line_info
= new_line_info_table ();
22398 text_section_line_info
->end_label
= text_end_label
;
22401 /* Called before compile () starts outputtting functions, variables
22402 and toplevel asms into assembly. */
22405 dwarf2out_assembly_start (void)
22407 if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE
22408 && dwarf2out_do_cfi_asm ()
22409 && (!(flag_unwind_tables
|| flag_exceptions
)
22410 || targetm_common
.except_unwind_info (&global_options
) != UI_DWARF2
))
22411 fprintf (asm_out_file
, "\t.cfi_sections\t.debug_frame\n");
22414 /* A helper function for dwarf2out_finish called through
22415 htab_traverse. Assign a string its index. All strings must be
22416 collected into the table by the time index_string is called,
22417 because the indexing code relies on htab_traverse to traverse nodes
22418 in the same order for each run. */
22421 index_string (void **h
, void *v
)
22423 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
22424 unsigned int *index
= (unsigned int *) v
;
22426 find_string_form (node
);
22427 if (node
->form
== DW_FORM_GNU_str_index
&& node
->refcount
> 0)
22429 gcc_assert (node
->index
== NO_INDEX_ASSIGNED
);
22430 node
->index
= *index
;
22436 /* A helper function for output_indirect_strings called through
22437 htab_traverse. Output the offset to a string and update the
22441 output_index_string_offset (void **h
, void *v
)
22443 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
22444 unsigned int *offset
= (unsigned int *) v
;
22446 if (node
->form
== DW_FORM_GNU_str_index
&& node
->refcount
> 0)
22448 /* Assert that this node has been assigned an index. */
22449 gcc_assert (node
->index
!= NO_INDEX_ASSIGNED
22450 && node
->index
!= NOT_INDEXED
);
22451 dw2_asm_output_data (DWARF_OFFSET_SIZE
, *offset
,
22452 "indexed string 0x%x: %s", node
->index
, node
->str
);
22453 *offset
+= strlen (node
->str
) + 1;
22458 /* A helper function for dwarf2out_finish called through
22459 htab_traverse. Output the indexed string. */
22462 output_index_string (void **h
, void *v
)
22464 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
22465 unsigned int *cur_idx
= (unsigned int *) v
;
22467 if (node
->form
== DW_FORM_GNU_str_index
&& node
->refcount
> 0)
22469 /* Assert that the strings are output in the same order as their
22470 indexes were assigned. */
22471 gcc_assert (*cur_idx
== node
->index
);
22472 assemble_string (node
->str
, strlen (node
->str
) + 1);
22478 /* A helper function for dwarf2out_finish called through
22479 htab_traverse. Emit one queued .debug_str string. */
22482 output_indirect_string (void **h
, void *v ATTRIBUTE_UNUSED
)
22484 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
22486 node
->form
= find_string_form (node
);
22487 if (node
->form
== DW_FORM_strp
&& node
->refcount
> 0)
22489 ASM_OUTPUT_LABEL (asm_out_file
, node
->label
);
22490 assemble_string (node
->str
, strlen (node
->str
) + 1);
22496 /* Output the indexed string table. */
22499 output_indirect_strings (void)
22501 switch_to_section (debug_str_section
);
22502 if (!dwarf_split_debug_info
)
22503 htab_traverse (debug_str_hash
, output_indirect_string
, NULL
);
22506 unsigned int offset
= 0;
22507 unsigned int cur_idx
= 0;
22509 htab_traverse (skeleton_debug_str_hash
, output_indirect_string
, NULL
);
22511 switch_to_section (debug_str_offsets_section
);
22512 htab_traverse_noresize (debug_str_hash
,
22513 output_index_string_offset
,
22515 switch_to_section (debug_str_dwo_section
);
22516 htab_traverse_noresize (debug_str_hash
,
22517 output_index_string
,
22522 /* Callback for htab_traverse to assign an index to an entry in the
22523 table, and to write that entry to the .debug_addr section. */
22526 output_addr_table_entry (void **slot
, void *data
)
22528 addr_table_entry
*entry
= (addr_table_entry
*) *slot
;
22529 unsigned int *cur_index
= (unsigned int *)data
;
22531 if (entry
->refcount
== 0)
22533 gcc_assert (entry
->index
== NO_INDEX_ASSIGNED
22534 || entry
->index
== NOT_INDEXED
);
22538 gcc_assert (entry
->index
== *cur_index
);
22541 switch (entry
->kind
)
22544 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, entry
->addr
.rtl
,
22545 "0x%x", entry
->index
);
22547 case ate_kind_rtx_dtprel
:
22548 gcc_assert (targetm
.asm_out
.output_dwarf_dtprel
);
22549 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
,
22552 fputc ('\n', asm_out_file
);
22554 case ate_kind_label
:
22555 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, entry
->addr
.label
,
22556 "0x%x", entry
->index
);
22559 gcc_unreachable ();
22564 /* Produce the .debug_addr section. */
22567 output_addr_table (void)
22569 unsigned int index
= 0;
22570 if (addr_index_table
== NULL
|| htab_size (addr_index_table
) == 0)
22573 switch_to_section (debug_addr_section
);
22574 htab_traverse_noresize (addr_index_table
, output_addr_table_entry
, &index
);
22577 #if ENABLE_ASSERT_CHECKING
22578 /* Verify that all marks are clear. */
22581 verify_marks_clear (dw_die_ref die
)
22585 gcc_assert (! die
->die_mark
);
22586 FOR_EACH_CHILD (die
, c
, verify_marks_clear (c
));
22588 #endif /* ENABLE_ASSERT_CHECKING */
22590 /* Clear the marks for a die and its children.
22591 Be cool if the mark isn't set. */
22594 prune_unmark_dies (dw_die_ref die
)
22600 FOR_EACH_CHILD (die
, c
, prune_unmark_dies (c
));
22603 /* Given DIE that we're marking as used, find any other dies
22604 it references as attributes and mark them as used. */
22607 prune_unused_types_walk_attribs (dw_die_ref die
)
22612 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
22614 if (a
->dw_attr_val
.val_class
== dw_val_class_die_ref
)
22616 /* A reference to another DIE.
22617 Make sure that it will get emitted.
22618 If it was broken out into a comdat group, don't follow it. */
22619 if (! AT_ref (a
)->comdat_type_p
22620 || a
->dw_attr
== DW_AT_specification
)
22621 prune_unused_types_mark (a
->dw_attr_val
.v
.val_die_ref
.die
, 1);
22623 /* Set the string's refcount to 0 so that prune_unused_types_mark
22624 accounts properly for it. */
22625 if (AT_class (a
) == dw_val_class_str
)
22626 a
->dw_attr_val
.v
.val_str
->refcount
= 0;
22630 /* Mark the generic parameters and arguments children DIEs of DIE. */
22633 prune_unused_types_mark_generic_parms_dies (dw_die_ref die
)
22637 if (die
== NULL
|| die
->die_child
== NULL
)
22639 c
= die
->die_child
;
22642 if (is_template_parameter (c
))
22643 prune_unused_types_mark (c
, 1);
22645 } while (c
&& c
!= die
->die_child
);
22648 /* Mark DIE as being used. If DOKIDS is true, then walk down
22649 to DIE's children. */
22652 prune_unused_types_mark (dw_die_ref die
, int dokids
)
22656 if (die
->die_mark
== 0)
22658 /* We haven't done this node yet. Mark it as used. */
22660 /* If this is the DIE of a generic type instantiation,
22661 mark the children DIEs that describe its generic parms and
22663 prune_unused_types_mark_generic_parms_dies (die
);
22665 /* We also have to mark its parents as used.
22666 (But we don't want to mark our parent's kids due to this,
22667 unless it is a class.) */
22668 if (die
->die_parent
)
22669 prune_unused_types_mark (die
->die_parent
,
22670 class_scope_p (die
->die_parent
));
22672 /* Mark any referenced nodes. */
22673 prune_unused_types_walk_attribs (die
);
22675 /* If this node is a specification,
22676 also mark the definition, if it exists. */
22677 if (get_AT_flag (die
, DW_AT_declaration
) && die
->die_definition
)
22678 prune_unused_types_mark (die
->die_definition
, 1);
22681 if (dokids
&& die
->die_mark
!= 2)
22683 /* We need to walk the children, but haven't done so yet.
22684 Remember that we've walked the kids. */
22687 /* If this is an array type, we need to make sure our
22688 kids get marked, even if they're types. If we're
22689 breaking out types into comdat sections, do this
22690 for all type definitions. */
22691 if (die
->die_tag
== DW_TAG_array_type
22692 || (use_debug_types
22693 && is_type_die (die
) && ! is_declaration_die (die
)))
22694 FOR_EACH_CHILD (die
, c
, prune_unused_types_mark (c
, 1));
22696 FOR_EACH_CHILD (die
, c
, prune_unused_types_walk (c
));
22700 /* For local classes, look if any static member functions were emitted
22701 and if so, mark them. */
22704 prune_unused_types_walk_local_classes (dw_die_ref die
)
22708 if (die
->die_mark
== 2)
22711 switch (die
->die_tag
)
22713 case DW_TAG_structure_type
:
22714 case DW_TAG_union_type
:
22715 case DW_TAG_class_type
:
22718 case DW_TAG_subprogram
:
22719 if (!get_AT_flag (die
, DW_AT_declaration
)
22720 || die
->die_definition
!= NULL
)
22721 prune_unused_types_mark (die
, 1);
22728 /* Mark children. */
22729 FOR_EACH_CHILD (die
, c
, prune_unused_types_walk_local_classes (c
));
22732 /* Walk the tree DIE and mark types that we actually use. */
22735 prune_unused_types_walk (dw_die_ref die
)
22739 /* Don't do anything if this node is already marked and
22740 children have been marked as well. */
22741 if (die
->die_mark
== 2)
22744 switch (die
->die_tag
)
22746 case DW_TAG_structure_type
:
22747 case DW_TAG_union_type
:
22748 case DW_TAG_class_type
:
22749 if (die
->die_perennial_p
)
22752 for (c
= die
->die_parent
; c
; c
= c
->die_parent
)
22753 if (c
->die_tag
== DW_TAG_subprogram
)
22756 /* Finding used static member functions inside of classes
22757 is needed just for local classes, because for other classes
22758 static member function DIEs with DW_AT_specification
22759 are emitted outside of the DW_TAG_*_type. If we ever change
22760 it, we'd need to call this even for non-local classes. */
22762 prune_unused_types_walk_local_classes (die
);
22764 /* It's a type node --- don't mark it. */
22767 case DW_TAG_const_type
:
22768 case DW_TAG_packed_type
:
22769 case DW_TAG_pointer_type
:
22770 case DW_TAG_reference_type
:
22771 case DW_TAG_rvalue_reference_type
:
22772 case DW_TAG_volatile_type
:
22773 case DW_TAG_typedef
:
22774 case DW_TAG_array_type
:
22775 case DW_TAG_interface_type
:
22776 case DW_TAG_friend
:
22777 case DW_TAG_variant_part
:
22778 case DW_TAG_enumeration_type
:
22779 case DW_TAG_subroutine_type
:
22780 case DW_TAG_string_type
:
22781 case DW_TAG_set_type
:
22782 case DW_TAG_subrange_type
:
22783 case DW_TAG_ptr_to_member_type
:
22784 case DW_TAG_file_type
:
22785 if (die
->die_perennial_p
)
22788 /* It's a type node --- don't mark it. */
22792 /* Mark everything else. */
22796 if (die
->die_mark
== 0)
22800 /* Now, mark any dies referenced from here. */
22801 prune_unused_types_walk_attribs (die
);
22806 /* Mark children. */
22807 FOR_EACH_CHILD (die
, c
, prune_unused_types_walk (c
));
22810 /* Increment the string counts on strings referred to from DIE's
22814 prune_unused_types_update_strings (dw_die_ref die
)
22819 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
22820 if (AT_class (a
) == dw_val_class_str
)
22822 struct indirect_string_node
*s
= a
->dw_attr_val
.v
.val_str
;
22824 /* Avoid unnecessarily putting strings that are used less than
22825 twice in the hash table. */
22827 == ((DEBUG_STR_SECTION_FLAGS
& SECTION_MERGE
) ? 1 : 2))
22830 slot
= htab_find_slot_with_hash (debug_str_hash
, s
->str
,
22831 htab_hash_string (s
->str
),
22833 gcc_assert (*slot
== NULL
);
22839 /* Remove from the tree DIE any dies that aren't marked. */
22842 prune_unused_types_prune (dw_die_ref die
)
22846 gcc_assert (die
->die_mark
);
22847 prune_unused_types_update_strings (die
);
22849 if (! die
->die_child
)
22852 c
= die
->die_child
;
22854 dw_die_ref prev
= c
;
22855 for (c
= c
->die_sib
; ! c
->die_mark
; c
= c
->die_sib
)
22856 if (c
== die
->die_child
)
22858 /* No marked children between 'prev' and the end of the list. */
22860 /* No marked children at all. */
22861 die
->die_child
= NULL
;
22864 prev
->die_sib
= c
->die_sib
;
22865 die
->die_child
= prev
;
22870 if (c
!= prev
->die_sib
)
22872 prune_unused_types_prune (c
);
22873 } while (c
!= die
->die_child
);
22876 /* Remove dies representing declarations that we never use. */
22879 prune_unused_types (void)
22882 limbo_die_node
*node
;
22883 comdat_type_node
*ctnode
;
22885 dw_die_ref base_type
;
22887 #if ENABLE_ASSERT_CHECKING
22888 /* All the marks should already be clear. */
22889 verify_marks_clear (comp_unit_die ());
22890 for (node
= limbo_die_list
; node
; node
= node
->next
)
22891 verify_marks_clear (node
->die
);
22892 for (ctnode
= comdat_type_list
; ctnode
; ctnode
= ctnode
->next
)
22893 verify_marks_clear (ctnode
->root_die
);
22894 #endif /* ENABLE_ASSERT_CHECKING */
22896 /* Mark types that are used in global variables. */
22897 premark_types_used_by_global_vars ();
22899 /* Set the mark on nodes that are actually used. */
22900 prune_unused_types_walk (comp_unit_die ());
22901 for (node
= limbo_die_list
; node
; node
= node
->next
)
22902 prune_unused_types_walk (node
->die
);
22903 for (ctnode
= comdat_type_list
; ctnode
; ctnode
= ctnode
->next
)
22905 prune_unused_types_walk (ctnode
->root_die
);
22906 prune_unused_types_mark (ctnode
->type_die
, 1);
22909 /* Also set the mark on nodes referenced from the pubname_table. Enumerators
22910 are unusual in that they are pubnames that are the children of pubtypes.
22911 They should only be marked via their parent DW_TAG_enumeration_type die,
22912 not as roots in themselves. */
22913 FOR_EACH_VEC_ELT (*pubname_table
, i
, pub
)
22914 if (pub
->die
->die_tag
!= DW_TAG_enumerator
)
22915 prune_unused_types_mark (pub
->die
, 1);
22916 for (i
= 0; base_types
.iterate (i
, &base_type
); i
++)
22917 prune_unused_types_mark (base_type
, 1);
22919 if (debug_str_hash
)
22920 htab_empty (debug_str_hash
);
22921 if (skeleton_debug_str_hash
)
22922 htab_empty (skeleton_debug_str_hash
);
22923 prune_unused_types_prune (comp_unit_die ());
22924 for (node
= limbo_die_list
; node
; node
= node
->next
)
22925 prune_unused_types_prune (node
->die
);
22926 for (ctnode
= comdat_type_list
; ctnode
; ctnode
= ctnode
->next
)
22927 prune_unused_types_prune (ctnode
->root_die
);
22929 /* Leave the marks clear. */
22930 prune_unmark_dies (comp_unit_die ());
22931 for (node
= limbo_die_list
; node
; node
= node
->next
)
22932 prune_unmark_dies (node
->die
);
22933 for (ctnode
= comdat_type_list
; ctnode
; ctnode
= ctnode
->next
)
22934 prune_unmark_dies (ctnode
->root_die
);
22937 /* Set the parameter to true if there are any relative pathnames in
22940 file_table_relative_p (void ** slot
, void *param
)
22942 bool *p
= (bool *) param
;
22943 struct dwarf_file_data
*d
= (struct dwarf_file_data
*) *slot
;
22944 if (!IS_ABSOLUTE_PATH (d
->filename
))
22952 /* Helpers to manipulate hash table of comdat type units. */
22954 struct comdat_type_hasher
: typed_noop_remove
<comdat_type_node
>
22956 typedef comdat_type_node value_type
;
22957 typedef comdat_type_node compare_type
;
22958 static inline hashval_t
hash (const value_type
*);
22959 static inline bool equal (const value_type
*, const compare_type
*);
22963 comdat_type_hasher::hash (const value_type
*type_node
)
22966 memcpy (&h
, type_node
->signature
, sizeof (h
));
22971 comdat_type_hasher::equal (const value_type
*type_node_1
,
22972 const compare_type
*type_node_2
)
22974 return (! memcmp (type_node_1
->signature
, type_node_2
->signature
,
22975 DWARF_TYPE_SIGNATURE_SIZE
));
22978 /* Move a DW_AT_{,MIPS_}linkage_name attribute just added to dw_die_ref
22979 to the location it would have been added, should we know its
22980 DECL_ASSEMBLER_NAME when we added other attributes. This will
22981 probably improve compactness of debug info, removing equivalent
22982 abbrevs, and hide any differences caused by deferring the
22983 computation of the assembler name, triggered by e.g. PCH. */
22986 move_linkage_attr (dw_die_ref die
)
22988 unsigned ix
= vec_safe_length (die
->die_attr
);
22989 dw_attr_node linkage
= (*die
->die_attr
)[ix
- 1];
22991 gcc_assert (linkage
.dw_attr
== DW_AT_linkage_name
22992 || linkage
.dw_attr
== DW_AT_MIPS_linkage_name
);
22996 dw_attr_node
*prev
= &(*die
->die_attr
)[ix
- 1];
22998 if (prev
->dw_attr
== DW_AT_decl_line
|| prev
->dw_attr
== DW_AT_name
)
23002 if (ix
!= vec_safe_length (die
->die_attr
) - 1)
23004 die
->die_attr
->pop ();
23005 die
->die_attr
->quick_insert (ix
, linkage
);
23009 /* Helper function for resolve_addr, mark DW_TAG_base_type nodes
23010 referenced from typed stack ops and count how often they are used. */
23013 mark_base_types (dw_loc_descr_ref loc
)
23015 dw_die_ref base_type
= NULL
;
23017 for (; loc
; loc
= loc
->dw_loc_next
)
23019 switch (loc
->dw_loc_opc
)
23021 case DW_OP_GNU_regval_type
:
23022 case DW_OP_GNU_deref_type
:
23023 base_type
= loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
;
23025 case DW_OP_GNU_convert
:
23026 case DW_OP_GNU_reinterpret
:
23027 if (loc
->dw_loc_oprnd1
.val_class
== dw_val_class_unsigned_const
)
23030 case DW_OP_GNU_const_type
:
23031 base_type
= loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
;
23033 case DW_OP_GNU_entry_value
:
23034 mark_base_types (loc
->dw_loc_oprnd1
.v
.val_loc
);
23039 gcc_assert (base_type
->die_parent
== comp_unit_die ());
23040 if (base_type
->die_mark
)
23041 base_type
->die_mark
++;
23044 base_types
.safe_push (base_type
);
23045 base_type
->die_mark
= 1;
23050 /* Comparison function for sorting marked base types. */
23053 base_type_cmp (const void *x
, const void *y
)
23055 dw_die_ref dx
= *(const dw_die_ref
*) x
;
23056 dw_die_ref dy
= *(const dw_die_ref
*) y
;
23057 unsigned int byte_size1
, byte_size2
;
23058 unsigned int encoding1
, encoding2
;
23059 if (dx
->die_mark
> dy
->die_mark
)
23061 if (dx
->die_mark
< dy
->die_mark
)
23063 byte_size1
= get_AT_unsigned (dx
, DW_AT_byte_size
);
23064 byte_size2
= get_AT_unsigned (dy
, DW_AT_byte_size
);
23065 if (byte_size1
< byte_size2
)
23067 if (byte_size1
> byte_size2
)
23069 encoding1
= get_AT_unsigned (dx
, DW_AT_encoding
);
23070 encoding2
= get_AT_unsigned (dy
, DW_AT_encoding
);
23071 if (encoding1
< encoding2
)
23073 if (encoding1
> encoding2
)
23078 /* Move base types marked by mark_base_types as early as possible
23079 in the CU, sorted by decreasing usage count both to make the
23080 uleb128 references as small as possible and to make sure they
23081 will have die_offset already computed by calc_die_sizes when
23082 sizes of typed stack loc ops is computed. */
23085 move_marked_base_types (void)
23088 dw_die_ref base_type
, die
, c
;
23090 if (base_types
.is_empty ())
23093 /* Sort by decreasing usage count, they will be added again in that
23095 base_types
.qsort (base_type_cmp
);
23096 die
= comp_unit_die ();
23097 c
= die
->die_child
;
23100 dw_die_ref prev
= c
;
23102 while (c
->die_mark
)
23104 remove_child_with_prev (c
, prev
);
23105 /* As base types got marked, there must be at least
23106 one node other than DW_TAG_base_type. */
23107 gcc_assert (c
!= c
->die_sib
);
23111 while (c
!= die
->die_child
);
23112 gcc_assert (die
->die_child
);
23113 c
= die
->die_child
;
23114 for (i
= 0; base_types
.iterate (i
, &base_type
); i
++)
23116 base_type
->die_mark
= 0;
23117 base_type
->die_sib
= c
->die_sib
;
23118 c
->die_sib
= base_type
;
23123 /* Helper function for resolve_addr, attempt to resolve
23124 one CONST_STRING, return non-zero if not successful. Similarly verify that
23125 SYMBOL_REFs refer to variables emitted in the current CU. */
23128 resolve_one_addr (rtx
*addr
, void *data ATTRIBUTE_UNUSED
)
23132 if (GET_CODE (rtl
) == CONST_STRING
)
23134 size_t len
= strlen (XSTR (rtl
, 0)) + 1;
23135 tree t
= build_string (len
, XSTR (rtl
, 0));
23136 tree tlen
= size_int (len
- 1);
23138 = build_array_type (char_type_node
, build_index_type (tlen
));
23139 rtl
= lookup_constant_def (t
);
23140 if (!rtl
|| !MEM_P (rtl
))
23142 rtl
= XEXP (rtl
, 0);
23143 if (GET_CODE (rtl
) == SYMBOL_REF
23144 && SYMBOL_REF_DECL (rtl
)
23145 && !TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl
)))
23147 vec_safe_push (used_rtx_array
, rtl
);
23152 if (GET_CODE (rtl
) == SYMBOL_REF
23153 && SYMBOL_REF_DECL (rtl
))
23155 if (TREE_CONSTANT_POOL_ADDRESS_P (rtl
))
23157 if (!TREE_ASM_WRITTEN (DECL_INITIAL (SYMBOL_REF_DECL (rtl
))))
23160 else if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl
)))
23164 if (GET_CODE (rtl
) == CONST
23165 && for_each_rtx (&XEXP (rtl
, 0), resolve_one_addr
, NULL
))
23171 /* For STRING_CST, return SYMBOL_REF of its constant pool entry,
23172 if possible, and create DW_TAG_dwarf_procedure that can be referenced
23173 from DW_OP_GNU_implicit_pointer if the string hasn't been seen yet. */
23176 string_cst_pool_decl (tree t
)
23178 rtx rtl
= output_constant_def (t
, 1);
23179 unsigned char *array
;
23180 dw_loc_descr_ref l
;
23185 if (!rtl
|| !MEM_P (rtl
))
23187 rtl
= XEXP (rtl
, 0);
23188 if (GET_CODE (rtl
) != SYMBOL_REF
23189 || SYMBOL_REF_DECL (rtl
) == NULL_TREE
)
23192 decl
= SYMBOL_REF_DECL (rtl
);
23193 if (!lookup_decl_die (decl
))
23195 len
= TREE_STRING_LENGTH (t
);
23196 vec_safe_push (used_rtx_array
, rtl
);
23197 ref
= new_die (DW_TAG_dwarf_procedure
, comp_unit_die (), decl
);
23198 array
= ggc_vec_alloc
<unsigned char> (len
);
23199 memcpy (array
, TREE_STRING_POINTER (t
), len
);
23200 l
= new_loc_descr (DW_OP_implicit_value
, len
, 0);
23201 l
->dw_loc_oprnd2
.val_class
= dw_val_class_vec
;
23202 l
->dw_loc_oprnd2
.v
.val_vec
.length
= len
;
23203 l
->dw_loc_oprnd2
.v
.val_vec
.elt_size
= 1;
23204 l
->dw_loc_oprnd2
.v
.val_vec
.array
= array
;
23205 add_AT_loc (ref
, DW_AT_location
, l
);
23206 equate_decl_number_to_die (decl
, ref
);
23211 /* Helper function of resolve_addr_in_expr. LOC is
23212 a DW_OP_addr followed by DW_OP_stack_value, either at the start
23213 of exprloc or after DW_OP_{,bit_}piece, and val_addr can't be
23214 resolved. Replace it (both DW_OP_addr and DW_OP_stack_value)
23215 with DW_OP_GNU_implicit_pointer if possible
23216 and return true, if unsuccessful, return false. */
23219 optimize_one_addr_into_implicit_ptr (dw_loc_descr_ref loc
)
23221 rtx rtl
= loc
->dw_loc_oprnd1
.v
.val_addr
;
23222 HOST_WIDE_INT offset
= 0;
23223 dw_die_ref ref
= NULL
;
23226 if (GET_CODE (rtl
) == CONST
23227 && GET_CODE (XEXP (rtl
, 0)) == PLUS
23228 && CONST_INT_P (XEXP (XEXP (rtl
, 0), 1)))
23230 offset
= INTVAL (XEXP (XEXP (rtl
, 0), 1));
23231 rtl
= XEXP (XEXP (rtl
, 0), 0);
23233 if (GET_CODE (rtl
) == CONST_STRING
)
23235 size_t len
= strlen (XSTR (rtl
, 0)) + 1;
23236 tree t
= build_string (len
, XSTR (rtl
, 0));
23237 tree tlen
= size_int (len
- 1);
23240 = build_array_type (char_type_node
, build_index_type (tlen
));
23241 rtl
= string_cst_pool_decl (t
);
23245 if (GET_CODE (rtl
) == SYMBOL_REF
&& SYMBOL_REF_DECL (rtl
))
23247 decl
= SYMBOL_REF_DECL (rtl
);
23248 if (TREE_CODE (decl
) == VAR_DECL
&& !DECL_EXTERNAL (decl
))
23250 ref
= lookup_decl_die (decl
);
23251 if (ref
&& (get_AT (ref
, DW_AT_location
)
23252 || get_AT (ref
, DW_AT_const_value
)))
23254 loc
->dw_loc_opc
= DW_OP_GNU_implicit_pointer
;
23255 loc
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
23256 loc
->dw_loc_oprnd1
.val_entry
= NULL
;
23257 loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
23258 loc
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
23259 loc
->dw_loc_next
= loc
->dw_loc_next
->dw_loc_next
;
23260 loc
->dw_loc_oprnd2
.v
.val_int
= offset
;
23268 /* Helper function for resolve_addr, handle one location
23269 expression, return false if at least one CONST_STRING or SYMBOL_REF in
23270 the location list couldn't be resolved. */
23273 resolve_addr_in_expr (dw_loc_descr_ref loc
)
23275 dw_loc_descr_ref keep
= NULL
;
23276 for (dw_loc_descr_ref prev
= NULL
; loc
; prev
= loc
, loc
= loc
->dw_loc_next
)
23277 switch (loc
->dw_loc_opc
)
23280 if (resolve_one_addr (&loc
->dw_loc_oprnd1
.v
.val_addr
, NULL
))
23283 || prev
->dw_loc_opc
== DW_OP_piece
23284 || prev
->dw_loc_opc
== DW_OP_bit_piece
)
23285 && loc
->dw_loc_next
23286 && loc
->dw_loc_next
->dw_loc_opc
== DW_OP_stack_value
23288 && optimize_one_addr_into_implicit_ptr (loc
))
23293 case DW_OP_GNU_addr_index
:
23294 case DW_OP_GNU_const_index
:
23295 if ((loc
->dw_loc_opc
== DW_OP_GNU_addr_index
23296 || (loc
->dw_loc_opc
== DW_OP_GNU_const_index
&& loc
->dtprel
))
23297 && resolve_one_addr (&loc
->dw_loc_oprnd1
.val_entry
->addr
.rtl
,
23301 case DW_OP_const4u
:
23302 case DW_OP_const8u
:
23304 && resolve_one_addr (&loc
->dw_loc_oprnd1
.v
.val_addr
, NULL
))
23307 case DW_OP_plus_uconst
:
23308 if (size_of_loc_descr (loc
)
23309 > size_of_int_loc_descriptor (loc
->dw_loc_oprnd1
.v
.val_unsigned
)
23311 && loc
->dw_loc_oprnd1
.v
.val_unsigned
> 0)
23313 dw_loc_descr_ref repl
23314 = int_loc_descriptor (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
23315 add_loc_descr (&repl
, new_loc_descr (DW_OP_plus
, 0, 0));
23316 add_loc_descr (&repl
, loc
->dw_loc_next
);
23320 case DW_OP_implicit_value
:
23321 if (loc
->dw_loc_oprnd2
.val_class
== dw_val_class_addr
23322 && resolve_one_addr (&loc
->dw_loc_oprnd2
.v
.val_addr
, NULL
))
23325 case DW_OP_GNU_implicit_pointer
:
23326 case DW_OP_GNU_parameter_ref
:
23327 if (loc
->dw_loc_oprnd1
.val_class
== dw_val_class_decl_ref
)
23330 = lookup_decl_die (loc
->dw_loc_oprnd1
.v
.val_decl_ref
);
23333 loc
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
23334 loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
23335 loc
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
23338 case DW_OP_GNU_const_type
:
23339 case DW_OP_GNU_regval_type
:
23340 case DW_OP_GNU_deref_type
:
23341 case DW_OP_GNU_convert
:
23342 case DW_OP_GNU_reinterpret
:
23343 while (loc
->dw_loc_next
23344 && loc
->dw_loc_next
->dw_loc_opc
== DW_OP_GNU_convert
)
23346 dw_die_ref base1
, base2
;
23347 unsigned enc1
, enc2
, size1
, size2
;
23348 if (loc
->dw_loc_opc
== DW_OP_GNU_regval_type
23349 || loc
->dw_loc_opc
== DW_OP_GNU_deref_type
)
23350 base1
= loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
;
23351 else if (loc
->dw_loc_oprnd1
.val_class
23352 == dw_val_class_unsigned_const
)
23355 base1
= loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
;
23356 if (loc
->dw_loc_next
->dw_loc_oprnd1
.val_class
23357 == dw_val_class_unsigned_const
)
23359 base2
= loc
->dw_loc_next
->dw_loc_oprnd1
.v
.val_die_ref
.die
;
23360 gcc_assert (base1
->die_tag
== DW_TAG_base_type
23361 && base2
->die_tag
== DW_TAG_base_type
);
23362 enc1
= get_AT_unsigned (base1
, DW_AT_encoding
);
23363 enc2
= get_AT_unsigned (base2
, DW_AT_encoding
);
23364 size1
= get_AT_unsigned (base1
, DW_AT_byte_size
);
23365 size2
= get_AT_unsigned (base2
, DW_AT_byte_size
);
23367 && (((enc1
== DW_ATE_unsigned
|| enc1
== DW_ATE_signed
)
23368 && (enc2
== DW_ATE_unsigned
|| enc2
== DW_ATE_signed
)
23372 /* Optimize away next DW_OP_GNU_convert after
23373 adjusting LOC's base type die reference. */
23374 if (loc
->dw_loc_opc
== DW_OP_GNU_regval_type
23375 || loc
->dw_loc_opc
== DW_OP_GNU_deref_type
)
23376 loc
->dw_loc_oprnd2
.v
.val_die_ref
.die
= base2
;
23378 loc
->dw_loc_oprnd1
.v
.val_die_ref
.die
= base2
;
23379 loc
->dw_loc_next
= loc
->dw_loc_next
->dw_loc_next
;
23382 /* Don't change integer DW_OP_GNU_convert after e.g. floating
23383 point typed stack entry. */
23384 else if (enc1
!= DW_ATE_unsigned
&& enc1
!= DW_ATE_signed
)
23385 keep
= loc
->dw_loc_next
;
23395 /* Helper function of resolve_addr. DIE had DW_AT_location of
23396 DW_OP_addr alone, which referred to DECL in DW_OP_addr's operand
23397 and DW_OP_addr couldn't be resolved. resolve_addr has already
23398 removed the DW_AT_location attribute. This function attempts to
23399 add a new DW_AT_location attribute with DW_OP_GNU_implicit_pointer
23400 to it or DW_AT_const_value attribute, if possible. */
23403 optimize_location_into_implicit_ptr (dw_die_ref die
, tree decl
)
23405 if (TREE_CODE (decl
) != VAR_DECL
23406 || lookup_decl_die (decl
) != die
23407 || DECL_EXTERNAL (decl
)
23408 || !TREE_STATIC (decl
)
23409 || DECL_INITIAL (decl
) == NULL_TREE
23410 || DECL_P (DECL_INITIAL (decl
))
23411 || get_AT (die
, DW_AT_const_value
))
23414 tree init
= DECL_INITIAL (decl
);
23415 HOST_WIDE_INT offset
= 0;
23416 /* For variables that have been optimized away and thus
23417 don't have a memory location, see if we can emit
23418 DW_AT_const_value instead. */
23419 if (tree_add_const_value_attribute (die
, init
))
23423 /* If init is ADDR_EXPR or POINTER_PLUS_EXPR of ADDR_EXPR,
23424 and ADDR_EXPR refers to a decl that has DW_AT_location or
23425 DW_AT_const_value (but isn't addressable, otherwise
23426 resolving the original DW_OP_addr wouldn't fail), see if
23427 we can add DW_OP_GNU_implicit_pointer. */
23429 if (TREE_CODE (init
) == POINTER_PLUS_EXPR
23430 && tree_fits_shwi_p (TREE_OPERAND (init
, 1)))
23432 offset
= tree_to_shwi (TREE_OPERAND (init
, 1));
23433 init
= TREE_OPERAND (init
, 0);
23436 if (TREE_CODE (init
) != ADDR_EXPR
)
23438 if ((TREE_CODE (TREE_OPERAND (init
, 0)) == STRING_CST
23439 && !TREE_ASM_WRITTEN (TREE_OPERAND (init
, 0)))
23440 || (TREE_CODE (TREE_OPERAND (init
, 0)) == VAR_DECL
23441 && !DECL_EXTERNAL (TREE_OPERAND (init
, 0))
23442 && TREE_OPERAND (init
, 0) != decl
))
23445 dw_loc_descr_ref l
;
23447 if (TREE_CODE (TREE_OPERAND (init
, 0)) == STRING_CST
)
23449 rtx rtl
= string_cst_pool_decl (TREE_OPERAND (init
, 0));
23452 decl
= SYMBOL_REF_DECL (rtl
);
23455 decl
= TREE_OPERAND (init
, 0);
23456 ref
= lookup_decl_die (decl
);
23458 || (!get_AT (ref
, DW_AT_location
)
23459 && !get_AT (ref
, DW_AT_const_value
)))
23461 l
= new_loc_descr (DW_OP_GNU_implicit_pointer
, 0, offset
);
23462 l
->dw_loc_oprnd1
.val_class
= dw_val_class_die_ref
;
23463 l
->dw_loc_oprnd1
.v
.val_die_ref
.die
= ref
;
23464 l
->dw_loc_oprnd1
.v
.val_die_ref
.external
= 0;
23465 add_AT_loc (die
, DW_AT_location
, l
);
23469 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
23470 an address in .rodata section if the string literal is emitted there,
23471 or remove the containing location list or replace DW_AT_const_value
23472 with DW_AT_location and empty location expression, if it isn't found
23473 in .rodata. Similarly for SYMBOL_REFs, keep only those that refer
23474 to something that has been emitted in the current CU. */
23477 resolve_addr (dw_die_ref die
)
23481 dw_loc_list_ref
*curr
, *start
, loc
;
23484 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
23485 switch (AT_class (a
))
23487 case dw_val_class_loc_list
:
23488 start
= curr
= AT_loc_list_ptr (a
);
23491 /* The same list can be referenced more than once. See if we have
23492 already recorded the result from a previous pass. */
23494 *curr
= loc
->dw_loc_next
;
23495 else if (!loc
->resolved_addr
)
23497 /* As things stand, we do not expect or allow one die to
23498 reference a suffix of another die's location list chain.
23499 References must be identical or completely separate.
23500 There is therefore no need to cache the result of this
23501 pass on any list other than the first; doing so
23502 would lead to unnecessary writes. */
23505 gcc_assert (!(*curr
)->replaced
&& !(*curr
)->resolved_addr
);
23506 if (!resolve_addr_in_expr ((*curr
)->expr
))
23508 dw_loc_list_ref next
= (*curr
)->dw_loc_next
;
23509 dw_loc_descr_ref l
= (*curr
)->expr
;
23511 if (next
&& (*curr
)->ll_symbol
)
23513 gcc_assert (!next
->ll_symbol
);
23514 next
->ll_symbol
= (*curr
)->ll_symbol
;
23516 if (dwarf_split_debug_info
)
23517 remove_loc_list_addr_table_entries (l
);
23522 mark_base_types ((*curr
)->expr
);
23523 curr
= &(*curr
)->dw_loc_next
;
23527 loc
->resolved_addr
= 1;
23531 loc
->dw_loc_next
= *start
;
23536 remove_AT (die
, a
->dw_attr
);
23540 case dw_val_class_loc
:
23542 dw_loc_descr_ref l
= AT_loc (a
);
23543 /* For -gdwarf-2 don't attempt to optimize
23544 DW_AT_data_member_location containing
23545 DW_OP_plus_uconst - older consumers might
23546 rely on it being that op instead of a more complex,
23547 but shorter, location description. */
23548 if ((dwarf_version
> 2
23549 || a
->dw_attr
!= DW_AT_data_member_location
23551 || l
->dw_loc_opc
!= DW_OP_plus_uconst
23552 || l
->dw_loc_next
!= NULL
)
23553 && !resolve_addr_in_expr (l
))
23555 if (dwarf_split_debug_info
)
23556 remove_loc_list_addr_table_entries (l
);
23558 && l
->dw_loc_next
== NULL
23559 && l
->dw_loc_opc
== DW_OP_addr
23560 && GET_CODE (l
->dw_loc_oprnd1
.v
.val_addr
) == SYMBOL_REF
23561 && SYMBOL_REF_DECL (l
->dw_loc_oprnd1
.v
.val_addr
)
23562 && a
->dw_attr
== DW_AT_location
)
23564 tree decl
= SYMBOL_REF_DECL (l
->dw_loc_oprnd1
.v
.val_addr
);
23565 remove_AT (die
, a
->dw_attr
);
23567 optimize_location_into_implicit_ptr (die
, decl
);
23570 remove_AT (die
, a
->dw_attr
);
23574 mark_base_types (l
);
23577 case dw_val_class_addr
:
23578 if (a
->dw_attr
== DW_AT_const_value
23579 && resolve_one_addr (&a
->dw_attr_val
.v
.val_addr
, NULL
))
23581 if (AT_index (a
) != NOT_INDEXED
)
23582 remove_addr_table_entry (a
->dw_attr_val
.val_entry
);
23583 remove_AT (die
, a
->dw_attr
);
23586 if (die
->die_tag
== DW_TAG_GNU_call_site
23587 && a
->dw_attr
== DW_AT_abstract_origin
)
23589 tree tdecl
= SYMBOL_REF_DECL (a
->dw_attr_val
.v
.val_addr
);
23590 dw_die_ref tdie
= lookup_decl_die (tdecl
);
23592 && DECL_EXTERNAL (tdecl
)
23593 && DECL_ABSTRACT_ORIGIN (tdecl
) == NULL_TREE
)
23595 force_decl_die (tdecl
);
23596 tdie
= lookup_decl_die (tdecl
);
23600 a
->dw_attr_val
.val_class
= dw_val_class_die_ref
;
23601 a
->dw_attr_val
.v
.val_die_ref
.die
= tdie
;
23602 a
->dw_attr_val
.v
.val_die_ref
.external
= 0;
23606 if (AT_index (a
) != NOT_INDEXED
)
23607 remove_addr_table_entry (a
->dw_attr_val
.val_entry
);
23608 remove_AT (die
, a
->dw_attr
);
23617 FOR_EACH_CHILD (die
, c
, resolve_addr (c
));
23620 /* Helper routines for optimize_location_lists.
23621 This pass tries to share identical local lists in .debug_loc
23624 /* Iteratively hash operands of LOC opcode. */
23627 hash_loc_operands (dw_loc_descr_ref loc
, hashval_t hash
)
23629 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
23630 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
23632 switch (loc
->dw_loc_opc
)
23634 case DW_OP_const4u
:
23635 case DW_OP_const8u
:
23639 case DW_OP_const1u
:
23640 case DW_OP_const1s
:
23641 case DW_OP_const2u
:
23642 case DW_OP_const2s
:
23643 case DW_OP_const4s
:
23644 case DW_OP_const8s
:
23648 case DW_OP_plus_uconst
:
23684 case DW_OP_deref_size
:
23685 case DW_OP_xderef_size
:
23686 hash
= iterative_hash_object (val1
->v
.val_int
, hash
);
23693 gcc_assert (val1
->val_class
== dw_val_class_loc
);
23694 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
23695 hash
= iterative_hash_object (offset
, hash
);
23698 case DW_OP_implicit_value
:
23699 hash
= iterative_hash_object (val1
->v
.val_unsigned
, hash
);
23700 switch (val2
->val_class
)
23702 case dw_val_class_const
:
23703 hash
= iterative_hash_object (val2
->v
.val_int
, hash
);
23705 case dw_val_class_vec
:
23707 unsigned int elt_size
= val2
->v
.val_vec
.elt_size
;
23708 unsigned int len
= val2
->v
.val_vec
.length
;
23710 hash
= iterative_hash_object (elt_size
, hash
);
23711 hash
= iterative_hash_object (len
, hash
);
23712 hash
= iterative_hash (val2
->v
.val_vec
.array
,
23713 len
* elt_size
, hash
);
23716 case dw_val_class_const_double
:
23717 hash
= iterative_hash_object (val2
->v
.val_double
.low
, hash
);
23718 hash
= iterative_hash_object (val2
->v
.val_double
.high
, hash
);
23720 case dw_val_class_wide_int
:
23721 hash
= iterative_hash_object (*val2
->v
.val_wide
, hash
);
23723 case dw_val_class_addr
:
23724 hash
= iterative_hash_rtx (val2
->v
.val_addr
, hash
);
23727 gcc_unreachable ();
23731 case DW_OP_bit_piece
:
23732 hash
= iterative_hash_object (val1
->v
.val_int
, hash
);
23733 hash
= iterative_hash_object (val2
->v
.val_int
, hash
);
23739 unsigned char dtprel
= 0xd1;
23740 hash
= iterative_hash_object (dtprel
, hash
);
23742 hash
= iterative_hash_rtx (val1
->v
.val_addr
, hash
);
23744 case DW_OP_GNU_addr_index
:
23745 case DW_OP_GNU_const_index
:
23749 unsigned char dtprel
= 0xd1;
23750 hash
= iterative_hash_object (dtprel
, hash
);
23752 hash
= iterative_hash_rtx (val1
->val_entry
->addr
.rtl
, hash
);
23755 case DW_OP_GNU_implicit_pointer
:
23756 hash
= iterative_hash_object (val2
->v
.val_int
, hash
);
23758 case DW_OP_GNU_entry_value
:
23759 hash
= hash_loc_operands (val1
->v
.val_loc
, hash
);
23761 case DW_OP_GNU_regval_type
:
23762 case DW_OP_GNU_deref_type
:
23764 unsigned int byte_size
23765 = get_AT_unsigned (val2
->v
.val_die_ref
.die
, DW_AT_byte_size
);
23766 unsigned int encoding
23767 = get_AT_unsigned (val2
->v
.val_die_ref
.die
, DW_AT_encoding
);
23768 hash
= iterative_hash_object (val1
->v
.val_int
, hash
);
23769 hash
= iterative_hash_object (byte_size
, hash
);
23770 hash
= iterative_hash_object (encoding
, hash
);
23773 case DW_OP_GNU_convert
:
23774 case DW_OP_GNU_reinterpret
:
23775 if (val1
->val_class
== dw_val_class_unsigned_const
)
23777 hash
= iterative_hash_object (val1
->v
.val_unsigned
, hash
);
23781 case DW_OP_GNU_const_type
:
23783 unsigned int byte_size
23784 = get_AT_unsigned (val1
->v
.val_die_ref
.die
, DW_AT_byte_size
);
23785 unsigned int encoding
23786 = get_AT_unsigned (val1
->v
.val_die_ref
.die
, DW_AT_encoding
);
23787 hash
= iterative_hash_object (byte_size
, hash
);
23788 hash
= iterative_hash_object (encoding
, hash
);
23789 if (loc
->dw_loc_opc
!= DW_OP_GNU_const_type
)
23791 hash
= iterative_hash_object (val2
->val_class
, hash
);
23792 switch (val2
->val_class
)
23794 case dw_val_class_const
:
23795 hash
= iterative_hash_object (val2
->v
.val_int
, hash
);
23797 case dw_val_class_vec
:
23799 unsigned int elt_size
= val2
->v
.val_vec
.elt_size
;
23800 unsigned int len
= val2
->v
.val_vec
.length
;
23802 hash
= iterative_hash_object (elt_size
, hash
);
23803 hash
= iterative_hash_object (len
, hash
);
23804 hash
= iterative_hash (val2
->v
.val_vec
.array
,
23805 len
* elt_size
, hash
);
23808 case dw_val_class_const_double
:
23809 hash
= iterative_hash_object (val2
->v
.val_double
.low
, hash
);
23810 hash
= iterative_hash_object (val2
->v
.val_double
.high
, hash
);
23812 case dw_val_class_wide_int
:
23813 hash
= iterative_hash_object (*val2
->v
.val_wide
, hash
);
23816 gcc_unreachable ();
23822 /* Other codes have no operands. */
23828 /* Iteratively hash the whole DWARF location expression LOC. */
23830 static inline hashval_t
23831 hash_locs (dw_loc_descr_ref loc
, hashval_t hash
)
23833 dw_loc_descr_ref l
;
23834 bool sizes_computed
= false;
23835 /* Compute sizes, so that DW_OP_skip/DW_OP_bra can be checksummed. */
23836 size_of_locs (loc
);
23838 for (l
= loc
; l
!= NULL
; l
= l
->dw_loc_next
)
23840 enum dwarf_location_atom opc
= l
->dw_loc_opc
;
23841 hash
= iterative_hash_object (opc
, hash
);
23842 if ((opc
== DW_OP_skip
|| opc
== DW_OP_bra
) && !sizes_computed
)
23844 size_of_locs (loc
);
23845 sizes_computed
= true;
23847 hash
= hash_loc_operands (l
, hash
);
23852 /* Compute hash of the whole location list LIST_HEAD. */
23855 hash_loc_list (dw_loc_list_ref list_head
)
23857 dw_loc_list_ref curr
= list_head
;
23858 hashval_t hash
= 0;
23860 for (curr
= list_head
; curr
!= NULL
; curr
= curr
->dw_loc_next
)
23862 hash
= iterative_hash (curr
->begin
, strlen (curr
->begin
) + 1, hash
);
23863 hash
= iterative_hash (curr
->end
, strlen (curr
->end
) + 1, hash
);
23865 hash
= iterative_hash (curr
->section
, strlen (curr
->section
) + 1,
23867 hash
= hash_locs (curr
->expr
, hash
);
23869 list_head
->hash
= hash
;
23872 /* Return true if X and Y opcodes have the same operands. */
23875 compare_loc_operands (dw_loc_descr_ref x
, dw_loc_descr_ref y
)
23877 dw_val_ref valx1
= &x
->dw_loc_oprnd1
;
23878 dw_val_ref valx2
= &x
->dw_loc_oprnd2
;
23879 dw_val_ref valy1
= &y
->dw_loc_oprnd1
;
23880 dw_val_ref valy2
= &y
->dw_loc_oprnd2
;
23882 switch (x
->dw_loc_opc
)
23884 case DW_OP_const4u
:
23885 case DW_OP_const8u
:
23889 case DW_OP_const1u
:
23890 case DW_OP_const1s
:
23891 case DW_OP_const2u
:
23892 case DW_OP_const2s
:
23893 case DW_OP_const4s
:
23894 case DW_OP_const8s
:
23898 case DW_OP_plus_uconst
:
23934 case DW_OP_deref_size
:
23935 case DW_OP_xderef_size
:
23936 return valx1
->v
.val_int
== valy1
->v
.val_int
;
23939 /* If splitting debug info, the use of DW_OP_GNU_addr_index
23940 can cause irrelevant differences in dw_loc_addr. */
23941 gcc_assert (valx1
->val_class
== dw_val_class_loc
23942 && valy1
->val_class
== dw_val_class_loc
23943 && (dwarf_split_debug_info
23944 || x
->dw_loc_addr
== y
->dw_loc_addr
));
23945 return valx1
->v
.val_loc
->dw_loc_addr
== valy1
->v
.val_loc
->dw_loc_addr
;
23946 case DW_OP_implicit_value
:
23947 if (valx1
->v
.val_unsigned
!= valy1
->v
.val_unsigned
23948 || valx2
->val_class
!= valy2
->val_class
)
23950 switch (valx2
->val_class
)
23952 case dw_val_class_const
:
23953 return valx2
->v
.val_int
== valy2
->v
.val_int
;
23954 case dw_val_class_vec
:
23955 return valx2
->v
.val_vec
.elt_size
== valy2
->v
.val_vec
.elt_size
23956 && valx2
->v
.val_vec
.length
== valy2
->v
.val_vec
.length
23957 && memcmp (valx2
->v
.val_vec
.array
, valy2
->v
.val_vec
.array
,
23958 valx2
->v
.val_vec
.elt_size
23959 * valx2
->v
.val_vec
.length
) == 0;
23960 case dw_val_class_const_double
:
23961 return valx2
->v
.val_double
.low
== valy2
->v
.val_double
.low
23962 && valx2
->v
.val_double
.high
== valy2
->v
.val_double
.high
;
23963 case dw_val_class_wide_int
:
23964 return *valx2
->v
.val_wide
== *valy2
->v
.val_wide
;
23965 case dw_val_class_addr
:
23966 return rtx_equal_p (valx2
->v
.val_addr
, valy2
->v
.val_addr
);
23968 gcc_unreachable ();
23971 case DW_OP_bit_piece
:
23972 return valx1
->v
.val_int
== valy1
->v
.val_int
23973 && valx2
->v
.val_int
== valy2
->v
.val_int
;
23976 return rtx_equal_p (valx1
->v
.val_addr
, valy1
->v
.val_addr
);
23977 case DW_OP_GNU_addr_index
:
23978 case DW_OP_GNU_const_index
:
23980 rtx ax1
= valx1
->val_entry
->addr
.rtl
;
23981 rtx ay1
= valy1
->val_entry
->addr
.rtl
;
23982 return rtx_equal_p (ax1
, ay1
);
23984 case DW_OP_GNU_implicit_pointer
:
23985 return valx1
->val_class
== dw_val_class_die_ref
23986 && valx1
->val_class
== valy1
->val_class
23987 && valx1
->v
.val_die_ref
.die
== valy1
->v
.val_die_ref
.die
23988 && valx2
->v
.val_int
== valy2
->v
.val_int
;
23989 case DW_OP_GNU_entry_value
:
23990 return compare_loc_operands (valx1
->v
.val_loc
, valy1
->v
.val_loc
);
23991 case DW_OP_GNU_const_type
:
23992 if (valx1
->v
.val_die_ref
.die
!= valy1
->v
.val_die_ref
.die
23993 || valx2
->val_class
!= valy2
->val_class
)
23995 switch (valx2
->val_class
)
23997 case dw_val_class_const
:
23998 return valx2
->v
.val_int
== valy2
->v
.val_int
;
23999 case dw_val_class_vec
:
24000 return valx2
->v
.val_vec
.elt_size
== valy2
->v
.val_vec
.elt_size
24001 && valx2
->v
.val_vec
.length
== valy2
->v
.val_vec
.length
24002 && memcmp (valx2
->v
.val_vec
.array
, valy2
->v
.val_vec
.array
,
24003 valx2
->v
.val_vec
.elt_size
24004 * valx2
->v
.val_vec
.length
) == 0;
24005 case dw_val_class_const_double
:
24006 return valx2
->v
.val_double
.low
== valy2
->v
.val_double
.low
24007 && valx2
->v
.val_double
.high
== valy2
->v
.val_double
.high
;
24008 case dw_val_class_wide_int
:
24009 return *valx2
->v
.val_wide
== *valy2
->v
.val_wide
;
24011 gcc_unreachable ();
24013 case DW_OP_GNU_regval_type
:
24014 case DW_OP_GNU_deref_type
:
24015 return valx1
->v
.val_int
== valy1
->v
.val_int
24016 && valx2
->v
.val_die_ref
.die
== valy2
->v
.val_die_ref
.die
;
24017 case DW_OP_GNU_convert
:
24018 case DW_OP_GNU_reinterpret
:
24019 if (valx1
->val_class
!= valy1
->val_class
)
24021 if (valx1
->val_class
== dw_val_class_unsigned_const
)
24022 return valx1
->v
.val_unsigned
== valy1
->v
.val_unsigned
;
24023 return valx1
->v
.val_die_ref
.die
== valy1
->v
.val_die_ref
.die
;
24024 case DW_OP_GNU_parameter_ref
:
24025 return valx1
->val_class
== dw_val_class_die_ref
24026 && valx1
->val_class
== valy1
->val_class
24027 && valx1
->v
.val_die_ref
.die
== valy1
->v
.val_die_ref
.die
;
24029 /* Other codes have no operands. */
24034 /* Return true if DWARF location expressions X and Y are the same. */
24037 compare_locs (dw_loc_descr_ref x
, dw_loc_descr_ref y
)
24039 for (; x
!= NULL
&& y
!= NULL
; x
= x
->dw_loc_next
, y
= y
->dw_loc_next
)
24040 if (x
->dw_loc_opc
!= y
->dw_loc_opc
24041 || x
->dtprel
!= y
->dtprel
24042 || !compare_loc_operands (x
, y
))
24044 return x
== NULL
&& y
== NULL
;
24047 /* Hashtable helpers. */
24049 struct loc_list_hasher
: typed_noop_remove
<dw_loc_list_struct
>
24051 typedef dw_loc_list_struct value_type
;
24052 typedef dw_loc_list_struct compare_type
;
24053 static inline hashval_t
hash (const value_type
*);
24054 static inline bool equal (const value_type
*, const compare_type
*);
24057 /* Return precomputed hash of location list X. */
24060 loc_list_hasher::hash (const value_type
*x
)
24065 /* Return true if location lists A and B are the same. */
24068 loc_list_hasher::equal (const value_type
*a
, const compare_type
*b
)
24072 if (a
->hash
!= b
->hash
)
24074 for (; a
!= NULL
&& b
!= NULL
; a
= a
->dw_loc_next
, b
= b
->dw_loc_next
)
24075 if (strcmp (a
->begin
, b
->begin
) != 0
24076 || strcmp (a
->end
, b
->end
) != 0
24077 || (a
->section
== NULL
) != (b
->section
== NULL
)
24078 || (a
->section
&& strcmp (a
->section
, b
->section
) != 0)
24079 || !compare_locs (a
->expr
, b
->expr
))
24081 return a
== NULL
&& b
== NULL
;
24084 typedef hash_table
<loc_list_hasher
> loc_list_hash_type
;
24087 /* Recursively optimize location lists referenced from DIE
24088 children and share them whenever possible. */
24091 optimize_location_lists_1 (dw_die_ref die
, loc_list_hash_type htab
)
24096 dw_loc_list_struct
**slot
;
24098 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
24099 if (AT_class (a
) == dw_val_class_loc_list
)
24101 dw_loc_list_ref list
= AT_loc_list (a
);
24102 /* TODO: perform some optimizations here, before hashing
24103 it and storing into the hash table. */
24104 hash_loc_list (list
);
24105 slot
= htab
.find_slot_with_hash (list
, list
->hash
, INSERT
);
24109 a
->dw_attr_val
.v
.val_loc_list
= *slot
;
24112 FOR_EACH_CHILD (die
, c
, optimize_location_lists_1 (c
, htab
));
24116 /* Recursively assign each location list a unique index into the debug_addr
24120 index_location_lists (dw_die_ref die
)
24126 FOR_EACH_VEC_SAFE_ELT (die
->die_attr
, ix
, a
)
24127 if (AT_class (a
) == dw_val_class_loc_list
)
24129 dw_loc_list_ref list
= AT_loc_list (a
);
24130 dw_loc_list_ref curr
;
24131 for (curr
= list
; curr
!= NULL
; curr
= curr
->dw_loc_next
)
24133 /* Don't index an entry that has already been indexed
24134 or won't be output. */
24135 if (curr
->begin_entry
!= NULL
24136 || (strcmp (curr
->begin
, curr
->end
) == 0 && !curr
->force
))
24140 = add_addr_table_entry (xstrdup (curr
->begin
),
24145 FOR_EACH_CHILD (die
, c
, index_location_lists (c
));
24148 /* Optimize location lists referenced from DIE
24149 children and share them whenever possible. */
24152 optimize_location_lists (dw_die_ref die
)
24154 loc_list_hash_type htab
;
24156 optimize_location_lists_1 (die
, htab
);
24160 /* Output stuff that dwarf requires at the end of every file,
24161 and generate the DWARF-2 debugging info. */
24164 dwarf2out_finish (const char *filename
)
24166 limbo_die_node
*node
, *next_node
;
24167 comdat_type_node
*ctnode
;
24168 hash_table
<comdat_type_hasher
> comdat_type_table
;
24170 dw_die_ref main_comp_unit_die
;
24172 /* PCH might result in DW_AT_producer string being restored from the
24173 header compilation, so always fill it with empty string initially
24174 and overwrite only here. */
24175 dw_attr_ref producer
= get_AT (comp_unit_die (), DW_AT_producer
);
24176 producer_string
= gen_producer_string ();
24177 producer
->dw_attr_val
.v
.val_str
->refcount
--;
24178 producer
->dw_attr_val
.v
.val_str
= find_AT_string (producer_string
);
24180 gen_scheduled_generic_parms_dies ();
24181 gen_remaining_tmpl_value_param_die_attribute ();
24183 /* Add the name for the main input file now. We delayed this from
24184 dwarf2out_init to avoid complications with PCH. */
24185 add_name_attribute (comp_unit_die (), remap_debug_filename (filename
));
24186 if (!IS_ABSOLUTE_PATH (filename
) || targetm
.force_at_comp_dir
)
24187 add_comp_dir_attribute (comp_unit_die ());
24188 else if (get_AT (comp_unit_die (), DW_AT_comp_dir
) == NULL
)
24191 htab_traverse (file_table
, file_table_relative_p
, &p
);
24193 add_comp_dir_attribute (comp_unit_die ());
24196 if (deferred_locations_list
)
24197 for (i
= 0; i
< deferred_locations_list
->length (); i
++)
24199 add_location_or_const_value_attribute (
24200 (*deferred_locations_list
)[i
].die
,
24201 (*deferred_locations_list
)[i
].variable
,
24206 /* Traverse the limbo die list, and add parent/child links. The only
24207 dies without parents that should be here are concrete instances of
24208 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
24209 For concrete instances, we can get the parent die from the abstract
24211 for (node
= limbo_die_list
; node
; node
= next_node
)
24213 dw_die_ref die
= node
->die
;
24214 next_node
= node
->next
;
24216 if (die
->die_parent
== NULL
)
24218 dw_die_ref origin
= get_AT_ref (die
, DW_AT_abstract_origin
);
24220 if (origin
&& origin
->die_parent
)
24221 add_child_die (origin
->die_parent
, die
);
24222 else if (is_cu_die (die
))
24224 else if (seen_error ())
24225 /* It's OK to be confused by errors in the input. */
24226 add_child_die (comp_unit_die (), die
);
24229 /* In certain situations, the lexical block containing a
24230 nested function can be optimized away, which results
24231 in the nested function die being orphaned. Likewise
24232 with the return type of that nested function. Force
24233 this to be a child of the containing function.
24235 It may happen that even the containing function got fully
24236 inlined and optimized out. In that case we are lost and
24237 assign the empty child. This should not be big issue as
24238 the function is likely unreachable too. */
24239 gcc_assert (node
->created_for
);
24241 if (DECL_P (node
->created_for
))
24242 origin
= get_context_die (DECL_CONTEXT (node
->created_for
));
24243 else if (TYPE_P (node
->created_for
))
24244 origin
= scope_die_for (node
->created_for
, comp_unit_die ());
24246 origin
= comp_unit_die ();
24248 add_child_die (origin
, die
);
24253 limbo_die_list
= NULL
;
24255 #if ENABLE_ASSERT_CHECKING
24257 dw_die_ref die
= comp_unit_die (), c
;
24258 FOR_EACH_CHILD (die
, c
, gcc_assert (! c
->die_mark
));
24261 resolve_addr (comp_unit_die ());
24262 move_marked_base_types ();
24264 for (node
= deferred_asm_name
; node
; node
= node
->next
)
24266 tree decl
= node
->created_for
;
24267 /* When generating LTO bytecode we can not generate new assembler
24268 names at this point and all important decls got theirs via
24270 if ((!flag_generate_lto
|| DECL_ASSEMBLER_NAME_SET_P (decl
))
24271 && DECL_ASSEMBLER_NAME (decl
) != DECL_NAME (decl
))
24273 add_linkage_attr (node
->die
, decl
);
24274 move_linkage_attr (node
->die
);
24278 deferred_asm_name
= NULL
;
24280 /* Walk through the list of incomplete types again, trying once more to
24281 emit full debugging info for them. */
24282 retry_incomplete_types ();
24284 if (flag_eliminate_unused_debug_types
)
24285 prune_unused_types ();
24287 /* Generate separate COMDAT sections for type DIEs. */
24288 if (use_debug_types
)
24290 break_out_comdat_types (comp_unit_die ());
24292 /* Each new type_unit DIE was added to the limbo die list when created.
24293 Since these have all been added to comdat_type_list, clear the
24295 limbo_die_list
= NULL
;
24297 /* For each new comdat type unit, copy declarations for incomplete
24298 types to make the new unit self-contained (i.e., no direct
24299 references to the main compile unit). */
24300 for (ctnode
= comdat_type_list
; ctnode
!= NULL
; ctnode
= ctnode
->next
)
24301 copy_decls_for_unworthy_types (ctnode
->root_die
);
24302 copy_decls_for_unworthy_types (comp_unit_die ());
24304 /* In the process of copying declarations from one unit to another,
24305 we may have left some declarations behind that are no longer
24306 referenced. Prune them. */
24307 prune_unused_types ();
24310 /* Generate separate CUs for each of the include files we've seen.
24311 They will go into limbo_die_list. */
24312 if (flag_eliminate_dwarf2_dups
)
24313 break_out_includes (comp_unit_die ());
24315 /* Traverse the DIE's and add add sibling attributes to those DIE's
24316 that have children. */
24317 add_sibling_attributes (comp_unit_die ());
24318 for (node
= limbo_die_list
; node
; node
= node
->next
)
24319 add_sibling_attributes (node
->die
);
24320 for (ctnode
= comdat_type_list
; ctnode
!= NULL
; ctnode
= ctnode
->next
)
24321 add_sibling_attributes (ctnode
->root_die
);
24323 /* When splitting DWARF info, we put some attributes in the
24324 skeleton compile_unit DIE that remains in the .o, while
24325 most attributes go in the DWO compile_unit_die. */
24326 if (dwarf_split_debug_info
)
24327 main_comp_unit_die
= gen_compile_unit_die (NULL
);
24329 main_comp_unit_die
= comp_unit_die ();
24331 /* Output a terminator label for the .text section. */
24332 switch_to_section (text_section
);
24333 targetm
.asm_out
.internal_label (asm_out_file
, TEXT_END_LABEL
, 0);
24334 if (cold_text_section
)
24336 switch_to_section (cold_text_section
);
24337 targetm
.asm_out
.internal_label (asm_out_file
, COLD_END_LABEL
, 0);
24340 /* We can only use the low/high_pc attributes if all of the code was
24342 if (!have_multiple_function_sections
24343 || (dwarf_version
< 3 && dwarf_strict
))
24345 /* Don't add if the CU has no associated code. */
24346 if (text_section_used
)
24347 add_AT_low_high_pc (main_comp_unit_die
, text_section_label
,
24348 text_end_label
, true);
24354 bool range_list_added
= false;
24356 if (text_section_used
)
24357 add_ranges_by_labels (main_comp_unit_die
, text_section_label
,
24358 text_end_label
, &range_list_added
, true);
24359 if (cold_text_section_used
)
24360 add_ranges_by_labels (main_comp_unit_die
, cold_text_section_label
,
24361 cold_end_label
, &range_list_added
, true);
24363 FOR_EACH_VEC_ELT (*fde_vec
, fde_idx
, fde
)
24365 if (DECL_IGNORED_P (fde
->decl
))
24367 if (!fde
->in_std_section
)
24368 add_ranges_by_labels (main_comp_unit_die
, fde
->dw_fde_begin
,
24369 fde
->dw_fde_end
, &range_list_added
,
24371 if (fde
->dw_fde_second_begin
&& !fde
->second_in_std_section
)
24372 add_ranges_by_labels (main_comp_unit_die
, fde
->dw_fde_second_begin
,
24373 fde
->dw_fde_second_end
, &range_list_added
,
24377 if (range_list_added
)
24379 /* We need to give .debug_loc and .debug_ranges an appropriate
24380 "base address". Use zero so that these addresses become
24381 absolute. Historically, we've emitted the unexpected
24382 DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
24383 Emit both to give time for other tools to adapt. */
24384 add_AT_addr (main_comp_unit_die
, DW_AT_low_pc
, const0_rtx
, true);
24385 if (! dwarf_strict
&& dwarf_version
< 4)
24386 add_AT_addr (main_comp_unit_die
, DW_AT_entry_pc
, const0_rtx
, true);
24392 if (debug_info_level
>= DINFO_LEVEL_TERSE
)
24393 add_AT_lineptr (main_comp_unit_die
, DW_AT_stmt_list
,
24394 debug_line_section_label
);
24397 add_AT_macptr (comp_unit_die (),
24398 dwarf_strict
? DW_AT_macro_info
: DW_AT_GNU_macros
,
24399 macinfo_section_label
);
24401 if (dwarf_split_debug_info
&& addr_index_table
!= NULL
)
24403 /* optimize_location_lists calculates the size of the lists,
24404 so index them first, and assign indices to the entries.
24405 Although optimize_location_lists will remove entries from
24406 the table, it only does so for duplicates, and therefore
24407 only reduces ref_counts to 1. */
24408 unsigned int index
= 0;
24409 index_location_lists (comp_unit_die ());
24410 htab_traverse_noresize (addr_index_table
,
24411 index_addr_table_entry
, &index
);
24413 if (have_location_lists
)
24414 optimize_location_lists (comp_unit_die ());
24416 save_macinfo_strings ();
24418 if (dwarf_split_debug_info
)
24420 unsigned int index
= 0;
24422 /* Add attributes common to skeleton compile_units and
24423 type_units. Because these attributes include strings, it
24424 must be done before freezing the string table. Top-level
24425 skeleton die attrs are added when the skeleton type unit is
24426 created, so ensure it is created by this point. */
24427 add_top_level_skeleton_die_attrs (main_comp_unit_die
);
24428 (void) get_skeleton_type_unit ();
24429 htab_traverse_noresize (debug_str_hash
, index_string
, &index
);
24432 /* Output all of the compilation units. We put the main one last so that
24433 the offsets are available to output_pubnames. */
24434 for (node
= limbo_die_list
; node
; node
= node
->next
)
24435 output_comp_unit (node
->die
, 0);
24437 comdat_type_table
.create (100);
24438 for (ctnode
= comdat_type_list
; ctnode
!= NULL
; ctnode
= ctnode
->next
)
24440 comdat_type_node
**slot
= comdat_type_table
.find_slot (ctnode
, INSERT
);
24442 /* Don't output duplicate types. */
24443 if (*slot
!= HTAB_EMPTY_ENTRY
)
24446 /* Add a pointer to the line table for the main compilation unit
24447 so that the debugger can make sense of DW_AT_decl_file
24449 if (debug_info_level
>= DINFO_LEVEL_TERSE
)
24450 add_AT_lineptr (ctnode
->root_die
, DW_AT_stmt_list
,
24451 (!dwarf_split_debug_info
24452 ? debug_line_section_label
24453 : debug_skeleton_line_section_label
));
24455 output_comdat_type_unit (ctnode
);
24458 comdat_type_table
.dispose ();
24460 /* The AT_pubnames attribute needs to go in all skeleton dies, including
24461 both the main_cu and all skeleton TUs. Making this call unconditional
24462 would end up either adding a second copy of the AT_pubnames attribute, or
24463 requiring a special case in add_top_level_skeleton_die_attrs. */
24464 if (!dwarf_split_debug_info
)
24465 add_AT_pubnames (comp_unit_die ());
24467 if (dwarf_split_debug_info
)
24470 unsigned char checksum
[16];
24471 struct md5_ctx ctx
;
24473 /* Compute a checksum of the comp_unit to use as the dwo_id. */
24474 md5_init_ctx (&ctx
);
24476 die_checksum (comp_unit_die (), &ctx
, &mark
);
24477 unmark_all_dies (comp_unit_die ());
24478 md5_finish_ctx (&ctx
, checksum
);
24480 /* Use the first 8 bytes of the checksum as the dwo_id,
24481 and add it to both comp-unit DIEs. */
24482 add_AT_data8 (main_comp_unit_die
, DW_AT_GNU_dwo_id
, checksum
);
24483 add_AT_data8 (comp_unit_die (), DW_AT_GNU_dwo_id
, checksum
);
24485 /* Add the base offset of the ranges table to the skeleton
24487 if (ranges_table_in_use
)
24488 add_AT_lineptr (main_comp_unit_die
, DW_AT_GNU_ranges_base
,
24489 ranges_section_label
);
24491 switch_to_section (debug_addr_section
);
24492 ASM_OUTPUT_LABEL (asm_out_file
, debug_addr_section_label
);
24493 output_addr_table ();
24496 /* Output the main compilation unit if non-empty or if .debug_macinfo
24497 or .debug_macro will be emitted. */
24498 output_comp_unit (comp_unit_die (), have_macinfo
);
24500 if (dwarf_split_debug_info
&& info_section_emitted
)
24501 output_skeleton_debug_sections (main_comp_unit_die
);
24503 /* Output the abbreviation table. */
24504 if (abbrev_die_table_in_use
!= 1)
24506 switch_to_section (debug_abbrev_section
);
24507 ASM_OUTPUT_LABEL (asm_out_file
, abbrev_section_label
);
24508 output_abbrev_section ();
24511 /* Output location list section if necessary. */
24512 if (have_location_lists
)
24514 /* Output the location lists info. */
24515 switch_to_section (debug_loc_section
);
24516 ASM_OUTPUT_LABEL (asm_out_file
, loc_section_label
);
24517 output_location_lists (comp_unit_die ());
24520 output_pubtables ();
24522 /* Output the address range information if a CU (.debug_info section)
24523 was emitted. We output an empty table even if we had no functions
24524 to put in it. This because the consumer has no way to tell the
24525 difference between an empty table that we omitted and failure to
24526 generate a table that would have contained data. */
24527 if (info_section_emitted
)
24529 unsigned long aranges_length
= size_of_aranges ();
24531 switch_to_section (debug_aranges_section
);
24532 output_aranges (aranges_length
);
24535 /* Output ranges section if necessary. */
24536 if (ranges_table_in_use
)
24538 switch_to_section (debug_ranges_section
);
24539 ASM_OUTPUT_LABEL (asm_out_file
, ranges_section_label
);
24543 /* Have to end the macro section. */
24546 switch_to_section (debug_macinfo_section
);
24547 ASM_OUTPUT_LABEL (asm_out_file
, macinfo_section_label
);
24549 dw2_asm_output_data (1, 0, "End compilation unit");
24552 /* Output the source line correspondence table. We must do this
24553 even if there is no line information. Otherwise, on an empty
24554 translation unit, we will generate a present, but empty,
24555 .debug_info section. IRIX 6.5 `nm' will then complain when
24556 examining the file. This is done late so that any filenames
24557 used by the debug_info section are marked as 'used'. */
24558 switch_to_section (debug_line_section
);
24559 ASM_OUTPUT_LABEL (asm_out_file
, debug_line_section_label
);
24560 if (! DWARF2_ASM_LINE_DEBUG_INFO
)
24561 output_line_info (false);
24563 if (dwarf_split_debug_info
&& info_section_emitted
)
24565 switch_to_section (debug_skeleton_line_section
);
24566 ASM_OUTPUT_LABEL (asm_out_file
, debug_skeleton_line_section_label
);
24567 output_line_info (true);
24570 /* If we emitted any indirect strings, output the string table too. */
24571 if (debug_str_hash
|| skeleton_debug_str_hash
)
24572 output_indirect_strings ();
24575 #include "gt-dwarf2out.h"