1 /* Output Dwarf2 format symbol table information from GCC.
2 Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
4 Contributed by Gary Funck (gary@intrepid.com).
5 Derived from DWARF 1 implementation of Ron Guilmette (rfg@monkeys.com).
6 Extensively modified by Jason Merrill (jason@cygnus.com).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 3, or (at your option) any later
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING3. If not see
22 <http://www.gnu.org/licenses/>. */
24 /* TODO: Emit .debug_line header even when there are no functions, since
25 the file numbers are used by .debug_info. Alternately, leave
26 out locations for types and decls.
27 Avoid talking about ctors and op= for PODs.
28 Factor out common prologue sequences into multiple CIEs. */
30 /* The first part of this file deals with the DWARF 2 frame unwind
31 information, which is also used by the GCC efficient exception handling
32 mechanism. The second part, controlled only by an #ifdef
33 DWARF2_DEBUGGING_INFO, deals with the other DWARF 2 debugging
36 /* DWARF2 Abbreviation Glossary:
38 CFA = Canonical Frame Address
39 a fixed address on the stack which identifies a call frame.
40 We define it to be the value of SP just before the call insn.
41 The CFA register and offset, which may change during the course
42 of the function, are used to calculate its value at runtime.
44 CFI = Call Frame Instruction
45 an instruction for the DWARF2 abstract machine
47 CIE = Common Information Entry
48 information describing information common to one or more FDEs
50 DIE = Debugging Information Entry
52 FDE = Frame Description Entry
53 information describing the stack call frame, in particular,
54 how to restore registers
56 DW_CFA_... = DWARF2 CFA call frame instruction
57 DW_TAG_... = DWARF2 DIE tag */
61 #include "coretypes.h"
68 #include "hard-reg-set.h"
70 #include "insn-config.h"
78 #include "dwarf2out.h"
79 #include "dwarf2asm.h"
85 #include "diagnostic.h"
88 #include "langhooks.h"
93 #ifdef DWARF2_DEBUGGING_INFO
94 static void dwarf2out_source_line (unsigned int, const char *);
97 #ifndef DWARF2_FRAME_INFO
98 # ifdef DWARF2_DEBUGGING_INFO
99 # define DWARF2_FRAME_INFO \
100 (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
102 # define DWARF2_FRAME_INFO 0
106 /* Map register numbers held in the call frame info that gcc has
107 collected using DWARF_FRAME_REGNUM to those that should be output in
108 .debug_frame and .eh_frame. */
109 #ifndef DWARF2_FRAME_REG_OUT
110 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
113 /* Decide whether we want to emit frame unwind information for the current
117 dwarf2out_do_frame (void)
119 /* We want to emit correct CFA location expressions or lists, so we
120 have to return true if we're going to output debug info, even if
121 we're not going to output frame or unwind info. */
122 return (write_symbols
== DWARF2_DEBUG
123 || write_symbols
== VMS_AND_DWARF2_DEBUG
125 #ifdef DWARF2_UNWIND_INFO
126 || (DWARF2_UNWIND_INFO
127 && (flag_unwind_tables
128 || (flag_exceptions
&& ! USING_SJLJ_EXCEPTIONS
)))
133 /* Decide whether to emit frame unwind via assembler directives. */
136 dwarf2out_do_cfi_asm (void)
140 #ifdef MIPS_DEBUGGING_INFO
143 if (!flag_dwarf2_cfi_asm
|| !dwarf2out_do_frame ())
145 if (!eh_personality_libfunc
)
147 if (!HAVE_GAS_CFI_PERSONALITY_DIRECTIVE
)
150 /* Make sure the personality encoding is one the assembler can support.
151 In particular, aligned addresses can't be handled. */
152 enc
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,/*global=*/1);
153 if ((enc
& 0x70) != 0 && (enc
& 0x70) != DW_EH_PE_pcrel
)
155 enc
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,/*global=*/0);
156 if ((enc
& 0x70) != 0 && (enc
& 0x70) != DW_EH_PE_pcrel
)
162 /* The size of the target's pointer type. */
164 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
167 /* Array of RTXes referenced by the debugging information, which therefore
168 must be kept around forever. */
169 static GTY(()) VEC(rtx
,gc
) *used_rtx_array
;
171 /* A pointer to the base of a list of incomplete types which might be
172 completed at some later time. incomplete_types_list needs to be a
173 VEC(tree,gc) because we want to tell the garbage collector about
175 static GTY(()) VEC(tree
,gc
) *incomplete_types
;
177 /* A pointer to the base of a table of references to declaration
178 scopes. This table is a display which tracks the nesting
179 of declaration scopes at the current scope and containing
180 scopes. This table is used to find the proper place to
181 define type declaration DIE's. */
182 static GTY(()) VEC(tree
,gc
) *decl_scope_table
;
184 /* Pointers to various DWARF2 sections. */
185 static GTY(()) section
*debug_info_section
;
186 static GTY(()) section
*debug_abbrev_section
;
187 static GTY(()) section
*debug_aranges_section
;
188 static GTY(()) section
*debug_macinfo_section
;
189 static GTY(()) section
*debug_line_section
;
190 static GTY(()) section
*debug_loc_section
;
191 static GTY(()) section
*debug_pubnames_section
;
192 static GTY(()) section
*debug_pubtypes_section
;
193 static GTY(()) section
*debug_str_section
;
194 static GTY(()) section
*debug_ranges_section
;
195 static GTY(()) section
*debug_frame_section
;
197 /* How to start an assembler comment. */
198 #ifndef ASM_COMMENT_START
199 #define ASM_COMMENT_START ";#"
202 typedef struct dw_cfi_struct
*dw_cfi_ref
;
203 typedef struct dw_fde_struct
*dw_fde_ref
;
204 typedef union dw_cfi_oprnd_struct
*dw_cfi_oprnd_ref
;
206 /* Call frames are described using a sequence of Call Frame
207 Information instructions. The register number, offset
208 and address fields are provided as possible operands;
209 their use is selected by the opcode field. */
211 enum dw_cfi_oprnd_type
{
213 dw_cfi_oprnd_reg_num
,
219 typedef union dw_cfi_oprnd_struct
GTY(())
221 unsigned int GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num
;
222 HOST_WIDE_INT
GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset
;
223 const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr
;
224 struct dw_loc_descr_struct
* GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc
;
228 typedef struct dw_cfi_struct
GTY(())
230 dw_cfi_ref dw_cfi_next
;
231 enum dwarf_call_frame_info dw_cfi_opc
;
232 dw_cfi_oprnd
GTY ((desc ("dw_cfi_oprnd1_desc (%1.dw_cfi_opc)")))
234 dw_cfi_oprnd
GTY ((desc ("dw_cfi_oprnd2_desc (%1.dw_cfi_opc)")))
239 /* This is how we define the location of the CFA. We use to handle it
240 as REG + OFFSET all the time, but now it can be more complex.
241 It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
242 Instead of passing around REG and OFFSET, we pass a copy
243 of this structure. */
244 typedef struct cfa_loc
GTY(())
246 HOST_WIDE_INT offset
;
247 HOST_WIDE_INT base_offset
;
249 int indirect
; /* 1 if CFA is accessed via a dereference. */
252 /* All call frame descriptions (FDE's) in the GCC generated DWARF
253 refer to a single Common Information Entry (CIE), defined at
254 the beginning of the .debug_frame section. This use of a single
255 CIE obviates the need to keep track of multiple CIE's
256 in the DWARF generation routines below. */
258 typedef struct dw_fde_struct
GTY(())
261 const char *dw_fde_begin
;
262 const char *dw_fde_current_label
;
263 const char *dw_fde_end
;
264 const char *dw_fde_hot_section_label
;
265 const char *dw_fde_hot_section_end_label
;
266 const char *dw_fde_unlikely_section_label
;
267 const char *dw_fde_unlikely_section_end_label
;
268 bool dw_fde_switched_sections
;
269 dw_cfi_ref dw_fde_cfi
;
270 unsigned funcdef_number
;
271 HOST_WIDE_INT stack_realignment
;
272 /* Dynamic realign argument pointer register. */
273 unsigned int drap_reg
;
274 /* Virtual dynamic realign argument pointer register. */
275 unsigned int vdrap_reg
;
276 unsigned all_throwers_are_sibcalls
: 1;
277 unsigned nothrow
: 1;
278 unsigned uses_eh_lsda
: 1;
279 /* Whether we did stack realign in this call frame. */
280 unsigned stack_realign
: 1;
281 /* Whether dynamic realign argument pointer register has been saved. */
282 unsigned drap_reg_saved
: 1;
286 /* Maximum size (in bytes) of an artificially generated label. */
287 #define MAX_ARTIFICIAL_LABEL_BYTES 30
289 /* The size of addresses as they appear in the Dwarf 2 data.
290 Some architectures use word addresses to refer to code locations,
291 but Dwarf 2 info always uses byte addresses. On such machines,
292 Dwarf 2 addresses need to be larger than the architecture's
294 #ifndef DWARF2_ADDR_SIZE
295 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
298 /* The size in bytes of a DWARF field indicating an offset or length
299 relative to a debug info section, specified to be 4 bytes in the
300 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
303 #ifndef DWARF_OFFSET_SIZE
304 #define DWARF_OFFSET_SIZE 4
307 /* According to the (draft) DWARF 3 specification, the initial length
308 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
309 bytes are 0xffffffff, followed by the length stored in the next 8
312 However, the SGI/MIPS ABI uses an initial length which is equal to
313 DWARF_OFFSET_SIZE. It is defined (elsewhere) accordingly. */
315 #ifndef DWARF_INITIAL_LENGTH_SIZE
316 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
319 #define DWARF_VERSION 2
321 /* Round SIZE up to the nearest BOUNDARY. */
322 #define DWARF_ROUND(SIZE,BOUNDARY) \
323 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
325 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
326 #ifndef DWARF_CIE_DATA_ALIGNMENT
327 #ifdef STACK_GROWS_DOWNWARD
328 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
330 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
334 /* CIE identifier. */
335 #if HOST_BITS_PER_WIDE_INT >= 64
336 #define DWARF_CIE_ID \
337 (unsigned HOST_WIDE_INT) (DWARF_OFFSET_SIZE == 4 ? DW_CIE_ID : DW64_CIE_ID)
339 #define DWARF_CIE_ID DW_CIE_ID
342 /* A pointer to the base of a table that contains frame description
343 information for each routine. */
344 static GTY((length ("fde_table_allocated"))) dw_fde_ref fde_table
;
346 /* Number of elements currently allocated for fde_table. */
347 static GTY(()) unsigned fde_table_allocated
;
349 /* Number of elements in fde_table currently in use. */
350 static GTY(()) unsigned fde_table_in_use
;
352 /* Size (in elements) of increments by which we may expand the
354 #define FDE_TABLE_INCREMENT 256
356 /* Get the current fde_table entry we should use. */
358 static inline dw_fde_ref
361 return fde_table_in_use
? &fde_table
[fde_table_in_use
- 1] : NULL
;
364 /* A list of call frame insns for the CIE. */
365 static GTY(()) dw_cfi_ref cie_cfi_head
;
367 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
368 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
369 attribute that accelerates the lookup of the FDE associated
370 with the subprogram. This variable holds the table index of the FDE
371 associated with the current function (body) definition. */
372 static unsigned current_funcdef_fde
;
375 struct indirect_string_node
GTY(())
378 unsigned int refcount
;
383 static GTY ((param_is (struct indirect_string_node
))) htab_t debug_str_hash
;
385 static GTY(()) int dw2_string_counter
;
386 static GTY(()) unsigned long dwarf2out_cfi_label_num
;
388 /* True if the compilation unit places functions in more than one section. */
389 static GTY(()) bool have_multiple_function_sections
= false;
391 /* Whether the default text and cold text sections have been used at all. */
393 static GTY(()) bool text_section_used
= false;
394 static GTY(()) bool cold_text_section_used
= false;
396 /* The default cold text section. */
397 static GTY(()) section
*cold_text_section
;
399 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
401 /* Forward declarations for functions defined in this file. */
403 static char *stripattributes (const char *);
404 static const char *dwarf_cfi_name (unsigned);
405 static dw_cfi_ref
new_cfi (void);
406 static void add_cfi (dw_cfi_ref
*, dw_cfi_ref
);
407 static void add_fde_cfi (const char *, dw_cfi_ref
);
408 static void lookup_cfa_1 (dw_cfi_ref
, dw_cfa_location
*);
409 static void lookup_cfa (dw_cfa_location
*);
410 static void reg_save (const char *, unsigned, unsigned, HOST_WIDE_INT
);
411 #ifdef DWARF2_UNWIND_INFO
412 static void initial_return_save (rtx
);
414 static HOST_WIDE_INT
stack_adjust_offset (const_rtx
);
415 static void output_cfi (dw_cfi_ref
, dw_fde_ref
, int);
416 static void output_cfi_directive (dw_cfi_ref
);
417 static void output_call_frame_info (int);
418 static void dwarf2out_note_section_used (void);
419 static void dwarf2out_stack_adjust (rtx
, bool);
420 static void dwarf2out_args_size_adjust (HOST_WIDE_INT
, const char *);
421 static void flush_queued_reg_saves (void);
422 static bool clobbers_queued_reg_save (const_rtx
);
423 static void dwarf2out_frame_debug_expr (rtx
, const char *);
425 /* Support for complex CFA locations. */
426 static void output_cfa_loc (dw_cfi_ref
);
427 static void output_cfa_loc_raw (dw_cfi_ref
);
428 static void get_cfa_from_loc_descr (dw_cfa_location
*,
429 struct dw_loc_descr_struct
*);
430 static struct dw_loc_descr_struct
*build_cfa_loc
431 (dw_cfa_location
*, HOST_WIDE_INT
);
432 static struct dw_loc_descr_struct
*build_cfa_aligned_loc
433 (HOST_WIDE_INT
, HOST_WIDE_INT
);
434 static void def_cfa_1 (const char *, dw_cfa_location
*);
436 /* How to start an assembler comment. */
437 #ifndef ASM_COMMENT_START
438 #define ASM_COMMENT_START ";#"
441 /* Data and reference forms for relocatable data. */
442 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
443 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
445 #ifndef DEBUG_FRAME_SECTION
446 #define DEBUG_FRAME_SECTION ".debug_frame"
449 #ifndef FUNC_BEGIN_LABEL
450 #define FUNC_BEGIN_LABEL "LFB"
453 #ifndef FUNC_END_LABEL
454 #define FUNC_END_LABEL "LFE"
457 #ifndef FRAME_BEGIN_LABEL
458 #define FRAME_BEGIN_LABEL "Lframe"
460 #define CIE_AFTER_SIZE_LABEL "LSCIE"
461 #define CIE_END_LABEL "LECIE"
462 #define FDE_LABEL "LSFDE"
463 #define FDE_AFTER_SIZE_LABEL "LASFDE"
464 #define FDE_END_LABEL "LEFDE"
465 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
466 #define LINE_NUMBER_END_LABEL "LELT"
467 #define LN_PROLOG_AS_LABEL "LASLTP"
468 #define LN_PROLOG_END_LABEL "LELTP"
469 #define DIE_LABEL_PREFIX "DW"
471 /* The DWARF 2 CFA column which tracks the return address. Normally this
472 is the column for PC, or the first column after all of the hard
474 #ifndef DWARF_FRAME_RETURN_COLUMN
476 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
478 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
482 /* The mapping from gcc register number to DWARF 2 CFA column number. By
483 default, we just provide columns for all registers. */
484 #ifndef DWARF_FRAME_REGNUM
485 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
488 /* Hook used by __throw. */
491 expand_builtin_dwarf_sp_column (void)
493 unsigned int dwarf_regnum
= DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM
);
494 return GEN_INT (DWARF2_FRAME_REG_OUT (dwarf_regnum
, 1));
497 /* Return a pointer to a copy of the section string name S with all
498 attributes stripped off, and an asterisk prepended (for assemble_name). */
501 stripattributes (const char *s
)
503 char *stripped
= XNEWVEC (char, strlen (s
) + 2);
508 while (*s
&& *s
!= ',')
515 /* MEM is a memory reference for the register size table, each element of
516 which has mode MODE. Initialize column C as a return address column. */
519 init_return_column_size (enum machine_mode mode
, rtx mem
, unsigned int c
)
521 HOST_WIDE_INT offset
= c
* GET_MODE_SIZE (mode
);
522 HOST_WIDE_INT size
= GET_MODE_SIZE (Pmode
);
523 emit_move_insn (adjust_address (mem
, mode
, offset
), GEN_INT (size
));
526 /* Generate code to initialize the register size table. */
529 expand_builtin_init_dwarf_reg_sizes (tree address
)
532 enum machine_mode mode
= TYPE_MODE (char_type_node
);
533 rtx addr
= expand_normal (address
);
534 rtx mem
= gen_rtx_MEM (BLKmode
, addr
);
535 bool wrote_return_column
= false;
537 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
539 int rnum
= DWARF2_FRAME_REG_OUT (DWARF_FRAME_REGNUM (i
), 1);
541 if (rnum
< DWARF_FRAME_REGISTERS
)
543 HOST_WIDE_INT offset
= rnum
* GET_MODE_SIZE (mode
);
544 enum machine_mode save_mode
= reg_raw_mode
[i
];
547 if (HARD_REGNO_CALL_PART_CLOBBERED (i
, save_mode
))
548 save_mode
= choose_hard_reg_mode (i
, 1, true);
549 if (DWARF_FRAME_REGNUM (i
) == DWARF_FRAME_RETURN_COLUMN
)
551 if (save_mode
== VOIDmode
)
553 wrote_return_column
= true;
555 size
= GET_MODE_SIZE (save_mode
);
559 emit_move_insn (adjust_address (mem
, mode
, offset
),
560 gen_int_mode (size
, mode
));
564 if (!wrote_return_column
)
565 init_return_column_size (mode
, mem
, DWARF_FRAME_RETURN_COLUMN
);
567 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
568 init_return_column_size (mode
, mem
, DWARF_ALT_FRAME_RETURN_COLUMN
);
571 targetm
.init_dwarf_reg_sizes_extra (address
);
574 /* Convert a DWARF call frame info. operation to its string name */
577 dwarf_cfi_name (unsigned int cfi_opc
)
581 case DW_CFA_advance_loc
:
582 return "DW_CFA_advance_loc";
584 return "DW_CFA_offset";
586 return "DW_CFA_restore";
590 return "DW_CFA_set_loc";
591 case DW_CFA_advance_loc1
:
592 return "DW_CFA_advance_loc1";
593 case DW_CFA_advance_loc2
:
594 return "DW_CFA_advance_loc2";
595 case DW_CFA_advance_loc4
:
596 return "DW_CFA_advance_loc4";
597 case DW_CFA_offset_extended
:
598 return "DW_CFA_offset_extended";
599 case DW_CFA_restore_extended
:
600 return "DW_CFA_restore_extended";
601 case DW_CFA_undefined
:
602 return "DW_CFA_undefined";
603 case DW_CFA_same_value
:
604 return "DW_CFA_same_value";
605 case DW_CFA_register
:
606 return "DW_CFA_register";
607 case DW_CFA_remember_state
:
608 return "DW_CFA_remember_state";
609 case DW_CFA_restore_state
:
610 return "DW_CFA_restore_state";
612 return "DW_CFA_def_cfa";
613 case DW_CFA_def_cfa_register
:
614 return "DW_CFA_def_cfa_register";
615 case DW_CFA_def_cfa_offset
:
616 return "DW_CFA_def_cfa_offset";
619 case DW_CFA_def_cfa_expression
:
620 return "DW_CFA_def_cfa_expression";
621 case DW_CFA_expression
:
622 return "DW_CFA_expression";
623 case DW_CFA_offset_extended_sf
:
624 return "DW_CFA_offset_extended_sf";
625 case DW_CFA_def_cfa_sf
:
626 return "DW_CFA_def_cfa_sf";
627 case DW_CFA_def_cfa_offset_sf
:
628 return "DW_CFA_def_cfa_offset_sf";
630 /* SGI/MIPS specific */
631 case DW_CFA_MIPS_advance_loc8
:
632 return "DW_CFA_MIPS_advance_loc8";
635 case DW_CFA_GNU_window_save
:
636 return "DW_CFA_GNU_window_save";
637 case DW_CFA_GNU_args_size
:
638 return "DW_CFA_GNU_args_size";
639 case DW_CFA_GNU_negative_offset_extended
:
640 return "DW_CFA_GNU_negative_offset_extended";
643 return "DW_CFA_<unknown>";
647 /* Return a pointer to a newly allocated Call Frame Instruction. */
649 static inline dw_cfi_ref
652 dw_cfi_ref cfi
= GGC_NEW (dw_cfi_node
);
654 cfi
->dw_cfi_next
= NULL
;
655 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= 0;
656 cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
= 0;
661 /* Add a Call Frame Instruction to list of instructions. */
664 add_cfi (dw_cfi_ref
*list_head
, dw_cfi_ref cfi
)
667 dw_fde_ref fde
= current_fde ();
669 /* When DRAP is used, CFA is defined with an expression. Redefine
670 CFA may lead to a different CFA value. */
671 if (fde
&& fde
->drap_reg
!= INVALID_REGNUM
)
672 switch (cfi
->dw_cfi_opc
)
674 case DW_CFA_def_cfa_register
:
675 case DW_CFA_def_cfa_offset
:
676 case DW_CFA_def_cfa_offset_sf
:
678 case DW_CFA_def_cfa_sf
:
685 /* Find the end of the chain. */
686 for (p
= list_head
; (*p
) != NULL
; p
= &(*p
)->dw_cfi_next
)
692 /* Generate a new label for the CFI info to refer to. */
695 dwarf2out_cfi_label (void)
697 static char label
[20];
699 if (dwarf2out_do_cfi_asm ())
701 /* In this case, we will be emitting the asm directive instead of
702 the label, so just return a placeholder to keep the rest of the
704 strcpy (label
, "<do not output>");
708 ASM_GENERATE_INTERNAL_LABEL (label
, "LCFI", dwarf2out_cfi_label_num
++);
709 ASM_OUTPUT_LABEL (asm_out_file
, label
);
715 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
716 or to the CIE if LABEL is NULL. */
719 add_fde_cfi (const char *label
, dw_cfi_ref cfi
)
721 dw_cfi_ref
*list_head
= &cie_cfi_head
;
723 if (dwarf2out_do_cfi_asm ())
727 output_cfi_directive (cfi
);
729 /* We still have to add the cfi to the list so that
730 lookup_cfa works later on. */
731 list_head
= ¤t_fde ()->dw_fde_cfi
;
733 /* ??? If this is a CFI for the CIE, we don't emit. This
734 assumes that the standard CIE contents that the assembler
735 uses matches the standard CIE contents that the compiler
736 uses. This is probably a bad assumption. I'm not quite
737 sure how to address this for now. */
741 dw_fde_ref fde
= current_fde ();
743 gcc_assert (fde
!= NULL
);
746 label
= dwarf2out_cfi_label ();
748 if (fde
->dw_fde_current_label
== NULL
749 || strcmp (label
, fde
->dw_fde_current_label
) != 0)
753 label
= xstrdup (label
);
755 /* Set the location counter to the new label. */
757 /* If we have a current label, advance from there, otherwise
758 set the location directly using set_loc. */
759 xcfi
->dw_cfi_opc
= fde
->dw_fde_current_label
760 ? DW_CFA_advance_loc4
762 xcfi
->dw_cfi_oprnd1
.dw_cfi_addr
= label
;
763 add_cfi (&fde
->dw_fde_cfi
, xcfi
);
765 fde
->dw_fde_current_label
= label
;
768 list_head
= &fde
->dw_fde_cfi
;
771 add_cfi (list_head
, cfi
);
774 /* Subroutine of lookup_cfa. */
777 lookup_cfa_1 (dw_cfi_ref cfi
, dw_cfa_location
*loc
)
779 switch (cfi
->dw_cfi_opc
)
781 case DW_CFA_def_cfa_offset
:
782 case DW_CFA_def_cfa_offset_sf
:
783 loc
->offset
= cfi
->dw_cfi_oprnd1
.dw_cfi_offset
;
785 case DW_CFA_def_cfa_register
:
786 loc
->reg
= cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
;
789 case DW_CFA_def_cfa_sf
:
790 loc
->reg
= cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
;
791 loc
->offset
= cfi
->dw_cfi_oprnd2
.dw_cfi_offset
;
793 case DW_CFA_def_cfa_expression
:
794 get_cfa_from_loc_descr (loc
, cfi
->dw_cfi_oprnd1
.dw_cfi_loc
);
801 /* Find the previous value for the CFA. */
804 lookup_cfa (dw_cfa_location
*loc
)
809 loc
->reg
= INVALID_REGNUM
;
812 loc
->base_offset
= 0;
814 for (cfi
= cie_cfi_head
; cfi
; cfi
= cfi
->dw_cfi_next
)
815 lookup_cfa_1 (cfi
, loc
);
817 fde
= current_fde ();
819 for (cfi
= fde
->dw_fde_cfi
; cfi
; cfi
= cfi
->dw_cfi_next
)
820 lookup_cfa_1 (cfi
, loc
);
823 /* The current rule for calculating the DWARF2 canonical frame address. */
824 static dw_cfa_location cfa
;
826 /* The register used for saving registers to the stack, and its offset
828 static dw_cfa_location cfa_store
;
830 /* The running total of the size of arguments pushed onto the stack. */
831 static HOST_WIDE_INT args_size
;
833 /* The last args_size we actually output. */
834 static HOST_WIDE_INT old_args_size
;
836 /* Entry point to update the canonical frame address (CFA).
837 LABEL is passed to add_fde_cfi. The value of CFA is now to be
838 calculated from REG+OFFSET. */
841 dwarf2out_def_cfa (const char *label
, unsigned int reg
, HOST_WIDE_INT offset
)
848 def_cfa_1 (label
, &loc
);
851 /* Determine if two dw_cfa_location structures define the same data. */
854 cfa_equal_p (const dw_cfa_location
*loc1
, const dw_cfa_location
*loc2
)
856 return (loc1
->reg
== loc2
->reg
857 && loc1
->offset
== loc2
->offset
858 && loc1
->indirect
== loc2
->indirect
859 && (loc1
->indirect
== 0
860 || loc1
->base_offset
== loc2
->base_offset
));
863 /* This routine does the actual work. The CFA is now calculated from
864 the dw_cfa_location structure. */
867 def_cfa_1 (const char *label
, dw_cfa_location
*loc_p
)
870 dw_cfa_location old_cfa
, loc
;
875 if (cfa_store
.reg
== loc
.reg
&& loc
.indirect
== 0)
876 cfa_store
.offset
= loc
.offset
;
878 loc
.reg
= DWARF_FRAME_REGNUM (loc
.reg
);
879 lookup_cfa (&old_cfa
);
881 /* If nothing changed, no need to issue any call frame instructions. */
882 if (cfa_equal_p (&loc
, &old_cfa
))
887 if (loc
.reg
== old_cfa
.reg
&& !loc
.indirect
)
889 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction, indicating
890 the CFA register did not change but the offset did. The data
891 factoring for DW_CFA_def_cfa_offset_sf happens in output_cfi, or
892 in the assembler via the .cfi_def_cfa_offset directive. */
894 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_offset_sf
;
896 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_offset
;
897 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
= loc
.offset
;
900 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
901 else if (loc
.offset
== old_cfa
.offset
902 && old_cfa
.reg
!= INVALID_REGNUM
905 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
906 indicating the CFA register has changed to <register> but the
907 offset has not changed. */
908 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_register
;
909 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= loc
.reg
;
913 else if (loc
.indirect
== 0)
915 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
916 indicating the CFA register has changed to <register> with
917 the specified offset. The data factoring for DW_CFA_def_cfa_sf
918 happens in output_cfi, or in the assembler via the .cfi_def_cfa
921 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_sf
;
923 cfi
->dw_cfi_opc
= DW_CFA_def_cfa
;
924 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= loc
.reg
;
925 cfi
->dw_cfi_oprnd2
.dw_cfi_offset
= loc
.offset
;
929 /* Construct a DW_CFA_def_cfa_expression instruction to
930 calculate the CFA using a full location expression since no
931 register-offset pair is available. */
932 struct dw_loc_descr_struct
*loc_list
;
934 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_expression
;
935 loc_list
= build_cfa_loc (&loc
, 0);
936 cfi
->dw_cfi_oprnd1
.dw_cfi_loc
= loc_list
;
939 add_fde_cfi (label
, cfi
);
942 /* Add the CFI for saving a register. REG is the CFA column number.
943 LABEL is passed to add_fde_cfi.
944 If SREG is -1, the register is saved at OFFSET from the CFA;
945 otherwise it is saved in SREG. */
948 reg_save (const char *label
, unsigned int reg
, unsigned int sreg
, HOST_WIDE_INT offset
)
950 dw_cfi_ref cfi
= new_cfi ();
951 dw_fde_ref fde
= current_fde ();
953 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= reg
;
955 /* When stack is aligned, store REG using DW_CFA_expression with
958 && fde
->stack_realign
959 && sreg
== INVALID_REGNUM
)
961 cfi
->dw_cfi_opc
= DW_CFA_expression
;
962 cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
= reg
;
963 cfi
->dw_cfi_oprnd1
.dw_cfi_loc
964 = build_cfa_aligned_loc (offset
, fde
->stack_realignment
);
966 else if (sreg
== INVALID_REGNUM
)
969 cfi
->dw_cfi_opc
= DW_CFA_offset_extended_sf
;
970 else if (reg
& ~0x3f)
971 cfi
->dw_cfi_opc
= DW_CFA_offset_extended
;
973 cfi
->dw_cfi_opc
= DW_CFA_offset
;
974 cfi
->dw_cfi_oprnd2
.dw_cfi_offset
= offset
;
976 else if (sreg
== reg
)
977 cfi
->dw_cfi_opc
= DW_CFA_same_value
;
980 cfi
->dw_cfi_opc
= DW_CFA_register
;
981 cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
= sreg
;
984 add_fde_cfi (label
, cfi
);
987 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
988 This CFI tells the unwinder that it needs to restore the window registers
989 from the previous frame's window save area.
991 ??? Perhaps we should note in the CIE where windows are saved (instead of
992 assuming 0(cfa)) and what registers are in the window. */
995 dwarf2out_window_save (const char *label
)
997 dw_cfi_ref cfi
= new_cfi ();
999 cfi
->dw_cfi_opc
= DW_CFA_GNU_window_save
;
1000 add_fde_cfi (label
, cfi
);
1003 /* Add a CFI to update the running total of the size of arguments
1004 pushed onto the stack. */
1007 dwarf2out_args_size (const char *label
, HOST_WIDE_INT size
)
1011 if (size
== old_args_size
)
1014 old_args_size
= size
;
1017 cfi
->dw_cfi_opc
= DW_CFA_GNU_args_size
;
1018 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
= size
;
1019 add_fde_cfi (label
, cfi
);
1022 /* Entry point for saving a register to the stack. REG is the GCC register
1023 number. LABEL and OFFSET are passed to reg_save. */
1026 dwarf2out_reg_save (const char *label
, unsigned int reg
, HOST_WIDE_INT offset
)
1028 reg_save (label
, DWARF_FRAME_REGNUM (reg
), INVALID_REGNUM
, offset
);
1031 /* Entry point for saving the return address in the stack.
1032 LABEL and OFFSET are passed to reg_save. */
1035 dwarf2out_return_save (const char *label
, HOST_WIDE_INT offset
)
1037 reg_save (label
, DWARF_FRAME_RETURN_COLUMN
, INVALID_REGNUM
, offset
);
1040 /* Entry point for saving the return address in a register.
1041 LABEL and SREG are passed to reg_save. */
1044 dwarf2out_return_reg (const char *label
, unsigned int sreg
)
1046 reg_save (label
, DWARF_FRAME_RETURN_COLUMN
, DWARF_FRAME_REGNUM (sreg
), 0);
1049 #ifdef DWARF2_UNWIND_INFO
1050 /* Record the initial position of the return address. RTL is
1051 INCOMING_RETURN_ADDR_RTX. */
1054 initial_return_save (rtx rtl
)
1056 unsigned int reg
= INVALID_REGNUM
;
1057 HOST_WIDE_INT offset
= 0;
1059 switch (GET_CODE (rtl
))
1062 /* RA is in a register. */
1063 reg
= DWARF_FRAME_REGNUM (REGNO (rtl
));
1067 /* RA is on the stack. */
1068 rtl
= XEXP (rtl
, 0);
1069 switch (GET_CODE (rtl
))
1072 gcc_assert (REGNO (rtl
) == STACK_POINTER_REGNUM
);
1077 gcc_assert (REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
);
1078 offset
= INTVAL (XEXP (rtl
, 1));
1082 gcc_assert (REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
);
1083 offset
= -INTVAL (XEXP (rtl
, 1));
1093 /* The return address is at some offset from any value we can
1094 actually load. For instance, on the SPARC it is in %i7+8. Just
1095 ignore the offset for now; it doesn't matter for unwinding frames. */
1096 gcc_assert (GET_CODE (XEXP (rtl
, 1)) == CONST_INT
);
1097 initial_return_save (XEXP (rtl
, 0));
1104 if (reg
!= DWARF_FRAME_RETURN_COLUMN
)
1105 reg_save (NULL
, DWARF_FRAME_RETURN_COLUMN
, reg
, offset
- cfa
.offset
);
1109 /* Given a SET, calculate the amount of stack adjustment it
1112 static HOST_WIDE_INT
1113 stack_adjust_offset (const_rtx pattern
)
1115 const_rtx src
= SET_SRC (pattern
);
1116 const_rtx dest
= SET_DEST (pattern
);
1117 HOST_WIDE_INT offset
= 0;
1120 if (dest
== stack_pointer_rtx
)
1122 /* (set (reg sp) (plus (reg sp) (const_int))) */
1123 code
= GET_CODE (src
);
1124 if (! (code
== PLUS
|| code
== MINUS
)
1125 || XEXP (src
, 0) != stack_pointer_rtx
1126 || GET_CODE (XEXP (src
, 1)) != CONST_INT
)
1129 offset
= INTVAL (XEXP (src
, 1));
1133 else if (MEM_P (dest
))
1135 /* (set (mem (pre_dec (reg sp))) (foo)) */
1136 src
= XEXP (dest
, 0);
1137 code
= GET_CODE (src
);
1143 if (XEXP (src
, 0) == stack_pointer_rtx
)
1145 rtx val
= XEXP (XEXP (src
, 1), 1);
1146 /* We handle only adjustments by constant amount. */
1147 gcc_assert (GET_CODE (XEXP (src
, 1)) == PLUS
1148 && GET_CODE (val
) == CONST_INT
);
1149 offset
= -INTVAL (val
);
1156 if (XEXP (src
, 0) == stack_pointer_rtx
)
1158 offset
= GET_MODE_SIZE (GET_MODE (dest
));
1165 if (XEXP (src
, 0) == stack_pointer_rtx
)
1167 offset
= -GET_MODE_SIZE (GET_MODE (dest
));
1182 /* Precomputed args_size for CODE_LABELs and BARRIERs preceeding them,
1183 indexed by INSN_UID. */
1185 static HOST_WIDE_INT
*barrier_args_size
;
1187 /* Helper function for compute_barrier_args_size. Handle one insn. */
1189 static HOST_WIDE_INT
1190 compute_barrier_args_size_1 (rtx insn
, HOST_WIDE_INT cur_args_size
,
1191 VEC (rtx
, heap
) **next
)
1193 HOST_WIDE_INT offset
= 0;
1196 if (! RTX_FRAME_RELATED_P (insn
))
1198 if (prologue_epilogue_contains (insn
)
1199 || sibcall_epilogue_contains (insn
))
1201 else if (GET_CODE (PATTERN (insn
)) == SET
)
1202 offset
= stack_adjust_offset (PATTERN (insn
));
1203 else if (GET_CODE (PATTERN (insn
)) == PARALLEL
1204 || GET_CODE (PATTERN (insn
)) == SEQUENCE
)
1206 /* There may be stack adjustments inside compound insns. Search
1208 for (i
= XVECLEN (PATTERN (insn
), 0) - 1; i
>= 0; i
--)
1209 if (GET_CODE (XVECEXP (PATTERN (insn
), 0, i
)) == SET
)
1210 offset
+= stack_adjust_offset (XVECEXP (PATTERN (insn
), 0, i
));
1215 rtx expr
= find_reg_note (insn
, REG_FRAME_RELATED_EXPR
, NULL_RTX
);
1219 expr
= XEXP (expr
, 0);
1220 if (GET_CODE (expr
) == PARALLEL
1221 || GET_CODE (expr
) == SEQUENCE
)
1222 for (i
= 1; i
< XVECLEN (expr
, 0); i
++)
1224 rtx elem
= XVECEXP (expr
, 0, i
);
1226 if (GET_CODE (elem
) == SET
&& !RTX_FRAME_RELATED_P (elem
))
1227 offset
+= stack_adjust_offset (elem
);
1232 #ifndef STACK_GROWS_DOWNWARD
1236 cur_args_size
+= offset
;
1237 if (cur_args_size
< 0)
1242 rtx dest
= JUMP_LABEL (insn
);
1246 if (barrier_args_size
[INSN_UID (dest
)] < 0)
1248 barrier_args_size
[INSN_UID (dest
)] = cur_args_size
;
1249 VEC_safe_push (rtx
, heap
, *next
, dest
);
1254 return cur_args_size
;
1257 /* Walk the whole function and compute args_size on BARRIERs. */
1260 compute_barrier_args_size (void)
1262 int max_uid
= get_max_uid (), i
;
1264 VEC (rtx
, heap
) *worklist
, *next
, *tmp
;
1266 barrier_args_size
= XNEWVEC (HOST_WIDE_INT
, max_uid
);
1267 for (i
= 0; i
< max_uid
; i
++)
1268 barrier_args_size
[i
] = -1;
1270 worklist
= VEC_alloc (rtx
, heap
, 20);
1271 next
= VEC_alloc (rtx
, heap
, 20);
1272 insn
= get_insns ();
1273 barrier_args_size
[INSN_UID (insn
)] = 0;
1274 VEC_quick_push (rtx
, worklist
, insn
);
1277 while (!VEC_empty (rtx
, worklist
))
1279 rtx prev
, body
, first_insn
;
1280 HOST_WIDE_INT cur_args_size
;
1282 first_insn
= insn
= VEC_pop (rtx
, worklist
);
1283 cur_args_size
= barrier_args_size
[INSN_UID (insn
)];
1284 prev
= prev_nonnote_insn (insn
);
1285 if (prev
&& BARRIER_P (prev
))
1286 barrier_args_size
[INSN_UID (prev
)] = cur_args_size
;
1288 for (; insn
; insn
= NEXT_INSN (insn
))
1290 if (INSN_DELETED_P (insn
) || NOTE_P (insn
))
1292 if (BARRIER_P (insn
))
1297 if (insn
== first_insn
)
1299 else if (barrier_args_size
[INSN_UID (insn
)] < 0)
1301 barrier_args_size
[INSN_UID (insn
)] = cur_args_size
;
1306 /* The insns starting with this label have been
1307 already scanned or are in the worklist. */
1312 body
= PATTERN (insn
);
1313 if (GET_CODE (body
) == SEQUENCE
)
1315 for (i
= 1; i
< XVECLEN (body
, 0); i
++)
1317 = compute_barrier_args_size_1 (XVECEXP (body
, 0, i
),
1318 cur_args_size
, &next
);
1320 = compute_barrier_args_size_1 (XVECEXP (body
, 0, 0),
1321 cur_args_size
, &next
);
1325 = compute_barrier_args_size_1 (insn
, cur_args_size
, &next
);
1329 if (VEC_empty (rtx
, next
))
1332 /* Swap WORKLIST with NEXT and truncate NEXT for next iteration. */
1336 VEC_truncate (rtx
, next
, 0);
1339 VEC_free (rtx
, heap
, worklist
);
1340 VEC_free (rtx
, heap
, next
);
1344 /* Check INSN to see if it looks like a push or a stack adjustment, and
1345 make a note of it if it does. EH uses this information to find out how
1346 much extra space it needs to pop off the stack. */
1349 dwarf2out_stack_adjust (rtx insn
, bool after_p
)
1351 HOST_WIDE_INT offset
;
1355 /* Don't handle epilogues at all. Certainly it would be wrong to do so
1356 with this function. Proper support would require all frame-related
1357 insns to be marked, and to be able to handle saving state around
1358 epilogues textually in the middle of the function. */
1359 if (prologue_epilogue_contains (insn
) || sibcall_epilogue_contains (insn
))
1362 /* If only calls can throw, and we have a frame pointer,
1363 save up adjustments until we see the CALL_INSN. */
1364 if (!flag_asynchronous_unwind_tables
&& cfa
.reg
!= STACK_POINTER_REGNUM
)
1366 if (CALL_P (insn
) && !after_p
)
1368 /* Extract the size of the args from the CALL rtx itself. */
1369 insn
= PATTERN (insn
);
1370 if (GET_CODE (insn
) == PARALLEL
)
1371 insn
= XVECEXP (insn
, 0, 0);
1372 if (GET_CODE (insn
) == SET
)
1373 insn
= SET_SRC (insn
);
1374 gcc_assert (GET_CODE (insn
) == CALL
);
1375 dwarf2out_args_size ("", INTVAL (XEXP (insn
, 1)));
1380 if (CALL_P (insn
) && !after_p
)
1382 if (!flag_asynchronous_unwind_tables
)
1383 dwarf2out_args_size ("", args_size
);
1386 else if (BARRIER_P (insn
))
1388 /* Don't call compute_barrier_args_size () if the only
1389 BARRIER is at the end of function. */
1390 if (barrier_args_size
== NULL
&& next_nonnote_insn (insn
))
1391 compute_barrier_args_size ();
1392 if (barrier_args_size
== NULL
)
1396 offset
= barrier_args_size
[INSN_UID (insn
)];
1401 offset
-= args_size
;
1402 #ifndef STACK_GROWS_DOWNWARD
1406 else if (GET_CODE (PATTERN (insn
)) == SET
)
1407 offset
= stack_adjust_offset (PATTERN (insn
));
1408 else if (GET_CODE (PATTERN (insn
)) == PARALLEL
1409 || GET_CODE (PATTERN (insn
)) == SEQUENCE
)
1411 /* There may be stack adjustments inside compound insns. Search
1413 for (offset
= 0, i
= XVECLEN (PATTERN (insn
), 0) - 1; i
>= 0; i
--)
1414 if (GET_CODE (XVECEXP (PATTERN (insn
), 0, i
)) == SET
)
1415 offset
+= stack_adjust_offset (XVECEXP (PATTERN (insn
), 0, i
));
1423 label
= dwarf2out_cfi_label ();
1424 dwarf2out_args_size_adjust (offset
, label
);
1427 /* Adjust args_size based on stack adjustment OFFSET. */
1430 dwarf2out_args_size_adjust (HOST_WIDE_INT offset
, const char *label
)
1432 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1433 cfa
.offset
+= offset
;
1435 if (cfa_store
.reg
== STACK_POINTER_REGNUM
)
1436 cfa_store
.offset
+= offset
;
1438 #ifndef STACK_GROWS_DOWNWARD
1442 args_size
+= offset
;
1446 def_cfa_1 (label
, &cfa
);
1447 if (flag_asynchronous_unwind_tables
)
1448 dwarf2out_args_size (label
, args_size
);
1453 /* We delay emitting a register save until either (a) we reach the end
1454 of the prologue or (b) the register is clobbered. This clusters
1455 register saves so that there are fewer pc advances. */
1457 struct queued_reg_save
GTY(())
1459 struct queued_reg_save
*next
;
1461 HOST_WIDE_INT cfa_offset
;
1465 static GTY(()) struct queued_reg_save
*queued_reg_saves
;
1467 /* The caller's ORIG_REG is saved in SAVED_IN_REG. */
1468 struct reg_saved_in_data
GTY(()) {
1473 /* A list of registers saved in other registers.
1474 The list intentionally has a small maximum capacity of 4; if your
1475 port needs more than that, you might consider implementing a
1476 more efficient data structure. */
1477 static GTY(()) struct reg_saved_in_data regs_saved_in_regs
[4];
1478 static GTY(()) size_t num_regs_saved_in_regs
;
1480 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1481 static const char *last_reg_save_label
;
1483 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1484 SREG, or if SREG is NULL then it is saved at OFFSET to the CFA. */
1487 queue_reg_save (const char *label
, rtx reg
, rtx sreg
, HOST_WIDE_INT offset
)
1489 struct queued_reg_save
*q
;
1491 /* Duplicates waste space, but it's also necessary to remove them
1492 for correctness, since the queue gets output in reverse
1494 for (q
= queued_reg_saves
; q
!= NULL
; q
= q
->next
)
1495 if (REGNO (q
->reg
) == REGNO (reg
))
1500 q
= GGC_NEW (struct queued_reg_save
);
1501 q
->next
= queued_reg_saves
;
1502 queued_reg_saves
= q
;
1506 q
->cfa_offset
= offset
;
1507 q
->saved_reg
= sreg
;
1509 last_reg_save_label
= label
;
1512 /* Output all the entries in QUEUED_REG_SAVES. */
1515 flush_queued_reg_saves (void)
1517 struct queued_reg_save
*q
;
1519 for (q
= queued_reg_saves
; q
; q
= q
->next
)
1522 unsigned int reg
, sreg
;
1524 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1525 if (REGNO (regs_saved_in_regs
[i
].orig_reg
) == REGNO (q
->reg
))
1527 if (q
->saved_reg
&& i
== num_regs_saved_in_regs
)
1529 gcc_assert (i
!= ARRAY_SIZE (regs_saved_in_regs
));
1530 num_regs_saved_in_regs
++;
1532 if (i
!= num_regs_saved_in_regs
)
1534 regs_saved_in_regs
[i
].orig_reg
= q
->reg
;
1535 regs_saved_in_regs
[i
].saved_in_reg
= q
->saved_reg
;
1538 reg
= DWARF_FRAME_REGNUM (REGNO (q
->reg
));
1540 sreg
= DWARF_FRAME_REGNUM (REGNO (q
->saved_reg
));
1542 sreg
= INVALID_REGNUM
;
1543 reg_save (last_reg_save_label
, reg
, sreg
, q
->cfa_offset
);
1546 queued_reg_saves
= NULL
;
1547 last_reg_save_label
= NULL
;
1550 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1551 location for? Or, does it clobber a register which we've previously
1552 said that some other register is saved in, and for which we now
1553 have a new location for? */
1556 clobbers_queued_reg_save (const_rtx insn
)
1558 struct queued_reg_save
*q
;
1560 for (q
= queued_reg_saves
; q
; q
= q
->next
)
1563 if (modified_in_p (q
->reg
, insn
))
1565 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1566 if (REGNO (q
->reg
) == REGNO (regs_saved_in_regs
[i
].orig_reg
)
1567 && modified_in_p (regs_saved_in_regs
[i
].saved_in_reg
, insn
))
1574 /* Entry point for saving the first register into the second. */
1577 dwarf2out_reg_save_reg (const char *label
, rtx reg
, rtx sreg
)
1580 unsigned int regno
, sregno
;
1582 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1583 if (REGNO (regs_saved_in_regs
[i
].orig_reg
) == REGNO (reg
))
1585 if (i
== num_regs_saved_in_regs
)
1587 gcc_assert (i
!= ARRAY_SIZE (regs_saved_in_regs
));
1588 num_regs_saved_in_regs
++;
1590 regs_saved_in_regs
[i
].orig_reg
= reg
;
1591 regs_saved_in_regs
[i
].saved_in_reg
= sreg
;
1593 regno
= DWARF_FRAME_REGNUM (REGNO (reg
));
1594 sregno
= DWARF_FRAME_REGNUM (REGNO (sreg
));
1595 reg_save (label
, regno
, sregno
, 0);
1598 /* What register, if any, is currently saved in REG? */
1601 reg_saved_in (rtx reg
)
1603 unsigned int regn
= REGNO (reg
);
1605 struct queued_reg_save
*q
;
1607 for (q
= queued_reg_saves
; q
; q
= q
->next
)
1608 if (q
->saved_reg
&& regn
== REGNO (q
->saved_reg
))
1611 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1612 if (regs_saved_in_regs
[i
].saved_in_reg
1613 && regn
== REGNO (regs_saved_in_regs
[i
].saved_in_reg
))
1614 return regs_saved_in_regs
[i
].orig_reg
;
1620 /* A temporary register holding an integral value used in adjusting SP
1621 or setting up the store_reg. The "offset" field holds the integer
1622 value, not an offset. */
1623 static dw_cfa_location cfa_temp
;
1625 /* Record call frame debugging information for an expression EXPR,
1626 which either sets SP or FP (adjusting how we calculate the frame
1627 address) or saves a register to the stack or another register.
1628 LABEL indicates the address of EXPR.
1630 This function encodes a state machine mapping rtxes to actions on
1631 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1632 users need not read the source code.
1634 The High-Level Picture
1636 Changes in the register we use to calculate the CFA: Currently we
1637 assume that if you copy the CFA register into another register, we
1638 should take the other one as the new CFA register; this seems to
1639 work pretty well. If it's wrong for some target, it's simple
1640 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1642 Changes in the register we use for saving registers to the stack:
1643 This is usually SP, but not always. Again, we deduce that if you
1644 copy SP into another register (and SP is not the CFA register),
1645 then the new register is the one we will be using for register
1646 saves. This also seems to work.
1648 Register saves: There's not much guesswork about this one; if
1649 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1650 register save, and the register used to calculate the destination
1651 had better be the one we think we're using for this purpose.
1652 It's also assumed that a copy from a call-saved register to another
1653 register is saving that register if RTX_FRAME_RELATED_P is set on
1654 that instruction. If the copy is from a call-saved register to
1655 the *same* register, that means that the register is now the same
1656 value as in the caller.
1658 Except: If the register being saved is the CFA register, and the
1659 offset is nonzero, we are saving the CFA, so we assume we have to
1660 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
1661 the intent is to save the value of SP from the previous frame.
1663 In addition, if a register has previously been saved to a different
1666 Invariants / Summaries of Rules
1668 cfa current rule for calculating the CFA. It usually
1669 consists of a register and an offset.
1670 cfa_store register used by prologue code to save things to the stack
1671 cfa_store.offset is the offset from the value of
1672 cfa_store.reg to the actual CFA
1673 cfa_temp register holding an integral value. cfa_temp.offset
1674 stores the value, which will be used to adjust the
1675 stack pointer. cfa_temp is also used like cfa_store,
1676 to track stores to the stack via fp or a temp reg.
1678 Rules 1- 4: Setting a register's value to cfa.reg or an expression
1679 with cfa.reg as the first operand changes the cfa.reg and its
1680 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
1683 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
1684 expression yielding a constant. This sets cfa_temp.reg
1685 and cfa_temp.offset.
1687 Rule 5: Create a new register cfa_store used to save items to the
1690 Rules 10-14: Save a register to the stack. Define offset as the
1691 difference of the original location and cfa_store's
1692 location (or cfa_temp's location if cfa_temp is used).
1694 Rules 16-20: If AND operation happens on sp in prologue, we assume
1695 stack is realigned. We will use a group of DW_OP_XXX
1696 expressions to represent the location of the stored
1697 register instead of CFA+offset.
1701 "{a,b}" indicates a choice of a xor b.
1702 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1705 (set <reg1> <reg2>:cfa.reg)
1706 effects: cfa.reg = <reg1>
1707 cfa.offset unchanged
1708 cfa_temp.reg = <reg1>
1709 cfa_temp.offset = cfa.offset
1712 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
1713 {<const_int>,<reg>:cfa_temp.reg}))
1714 effects: cfa.reg = sp if fp used
1715 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1716 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1717 if cfa_store.reg==sp
1720 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1721 effects: cfa.reg = fp
1722 cfa_offset += +/- <const_int>
1725 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1726 constraints: <reg1> != fp
1728 effects: cfa.reg = <reg1>
1729 cfa_temp.reg = <reg1>
1730 cfa_temp.offset = cfa.offset
1733 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1734 constraints: <reg1> != fp
1736 effects: cfa_store.reg = <reg1>
1737 cfa_store.offset = cfa.offset - cfa_temp.offset
1740 (set <reg> <const_int>)
1741 effects: cfa_temp.reg = <reg>
1742 cfa_temp.offset = <const_int>
1745 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1746 effects: cfa_temp.reg = <reg1>
1747 cfa_temp.offset |= <const_int>
1750 (set <reg> (high <exp>))
1754 (set <reg> (lo_sum <exp> <const_int>))
1755 effects: cfa_temp.reg = <reg>
1756 cfa_temp.offset = <const_int>
1759 (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1760 effects: cfa_store.offset -= <const_int>
1761 cfa.offset = cfa_store.offset if cfa.reg == sp
1763 cfa.base_offset = -cfa_store.offset
1766 (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
1767 effects: cfa_store.offset += -/+ mode_size(mem)
1768 cfa.offset = cfa_store.offset if cfa.reg == sp
1770 cfa.base_offset = -cfa_store.offset
1773 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
1776 effects: cfa.reg = <reg1>
1777 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1780 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1781 effects: cfa.reg = <reg1>
1782 cfa.base_offset = -{cfa_store,cfa_temp}.offset
1785 (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
1786 effects: cfa.reg = <reg1>
1787 cfa.base_offset = -cfa_temp.offset
1788 cfa_temp.offset -= mode_size(mem)
1791 (set <reg> {unspec, unspec_volatile})
1792 effects: target-dependent
1795 (set sp (and: sp <const_int>))
1796 constraints: cfa_store.reg == sp
1797 effects: current_fde.stack_realign = 1
1798 cfa_store.offset = 0
1799 fde->drap_reg = cfa.reg if cfa.reg != sp and cfa.reg != fp
1802 (set (mem ({pre_inc, pre_dec} sp)) (mem (plus (cfa.reg) (const_int))))
1803 effects: cfa_store.offset += -/+ mode_size(mem)
1806 (set (mem ({pre_inc, pre_dec} sp)) fp)
1807 constraints: fde->stack_realign == 1
1808 effects: cfa_store.offset = 0
1809 cfa.reg != HARD_FRAME_POINTER_REGNUM
1812 (set (mem ({pre_inc, pre_dec} sp)) cfa.reg)
1813 constraints: fde->stack_realign == 1
1815 && cfa.indirect == 0
1816 && cfa.reg != HARD_FRAME_POINTER_REGNUM
1817 effects: Use DW_CFA_def_cfa_expression to define cfa
1818 cfa.reg == fde->drap_reg
1821 (set reg fde->drap_reg)
1822 constraints: fde->vdrap_reg == INVALID_REGNUM
1823 effects: fde->vdrap_reg = reg.
1824 (set mem fde->drap_reg)
1825 constraints: fde->drap_reg_saved == 1
1829 dwarf2out_frame_debug_expr (rtx expr
, const char *label
)
1831 rtx src
, dest
, span
;
1832 HOST_WIDE_INT offset
;
1835 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1836 the PARALLEL independently. The first element is always processed if
1837 it is a SET. This is for backward compatibility. Other elements
1838 are processed only if they are SETs and the RTX_FRAME_RELATED_P
1839 flag is set in them. */
1840 if (GET_CODE (expr
) == PARALLEL
|| GET_CODE (expr
) == SEQUENCE
)
1843 int limit
= XVECLEN (expr
, 0);
1846 /* PARALLELs have strict read-modify-write semantics, so we
1847 ought to evaluate every rvalue before changing any lvalue.
1848 It's cumbersome to do that in general, but there's an
1849 easy approximation that is enough for all current users:
1850 handle register saves before register assignments. */
1851 if (GET_CODE (expr
) == PARALLEL
)
1852 for (par_index
= 0; par_index
< limit
; par_index
++)
1854 elem
= XVECEXP (expr
, 0, par_index
);
1855 if (GET_CODE (elem
) == SET
1856 && MEM_P (SET_DEST (elem
))
1857 && (RTX_FRAME_RELATED_P (elem
) || par_index
== 0))
1858 dwarf2out_frame_debug_expr (elem
, label
);
1861 for (par_index
= 0; par_index
< limit
; par_index
++)
1863 elem
= XVECEXP (expr
, 0, par_index
);
1864 if (GET_CODE (elem
) == SET
1865 && (!MEM_P (SET_DEST (elem
)) || GET_CODE (expr
) == SEQUENCE
)
1866 && (RTX_FRAME_RELATED_P (elem
) || par_index
== 0))
1867 dwarf2out_frame_debug_expr (elem
, label
);
1868 else if (GET_CODE (elem
) == SET
1870 && !RTX_FRAME_RELATED_P (elem
))
1872 /* Stack adjustment combining might combine some post-prologue
1873 stack adjustment into a prologue stack adjustment. */
1874 HOST_WIDE_INT offset
= stack_adjust_offset (elem
);
1877 dwarf2out_args_size_adjust (offset
, label
);
1883 gcc_assert (GET_CODE (expr
) == SET
);
1885 src
= SET_SRC (expr
);
1886 dest
= SET_DEST (expr
);
1890 rtx rsi
= reg_saved_in (src
);
1895 fde
= current_fde ();
1897 if (GET_CODE (src
) == REG
1899 && fde
->drap_reg
== REGNO (src
)
1900 && (fde
->drap_reg_saved
1901 || GET_CODE (dest
) == REG
))
1904 /* If we are saving dynamic realign argument pointer to a
1905 register, the destination is virtual dynamic realign
1906 argument pointer. It may be used to access argument. */
1907 if (GET_CODE (dest
) == REG
)
1909 gcc_assert (fde
->vdrap_reg
== INVALID_REGNUM
);
1910 fde
->vdrap_reg
= REGNO (dest
);
1915 switch (GET_CODE (dest
))
1918 switch (GET_CODE (src
))
1920 /* Setting FP from SP. */
1922 if (cfa
.reg
== (unsigned) REGNO (src
))
1925 /* Update the CFA rule wrt SP or FP. Make sure src is
1926 relative to the current CFA register.
1928 We used to require that dest be either SP or FP, but the
1929 ARM copies SP to a temporary register, and from there to
1930 FP. So we just rely on the backends to only set
1931 RTX_FRAME_RELATED_P on appropriate insns. */
1932 cfa
.reg
= REGNO (dest
);
1933 cfa_temp
.reg
= cfa
.reg
;
1934 cfa_temp
.offset
= cfa
.offset
;
1938 /* Saving a register in a register. */
1939 gcc_assert (!fixed_regs
[REGNO (dest
)]
1940 /* For the SPARC and its register window. */
1941 || (DWARF_FRAME_REGNUM (REGNO (src
))
1942 == DWARF_FRAME_RETURN_COLUMN
));
1944 /* After stack is aligned, we can only save SP in FP
1945 if drap register is used. In this case, we have
1946 to restore stack pointer with the CFA value and we
1947 don't generate this DWARF information. */
1949 && fde
->stack_realign
1950 && REGNO (src
) == STACK_POINTER_REGNUM
)
1951 gcc_assert (REGNO (dest
) == HARD_FRAME_POINTER_REGNUM
1952 && fde
->drap_reg
!= INVALID_REGNUM
1953 && cfa
.reg
!= REGNO (src
));
1955 queue_reg_save (label
, src
, dest
, 0);
1962 if (dest
== stack_pointer_rtx
)
1966 switch (GET_CODE (XEXP (src
, 1)))
1969 offset
= INTVAL (XEXP (src
, 1));
1972 gcc_assert ((unsigned) REGNO (XEXP (src
, 1))
1974 offset
= cfa_temp
.offset
;
1980 if (XEXP (src
, 0) == hard_frame_pointer_rtx
)
1982 /* Restoring SP from FP in the epilogue. */
1983 gcc_assert (cfa
.reg
== (unsigned) HARD_FRAME_POINTER_REGNUM
);
1984 cfa
.reg
= STACK_POINTER_REGNUM
;
1986 else if (GET_CODE (src
) == LO_SUM
)
1987 /* Assume we've set the source reg of the LO_SUM from sp. */
1990 gcc_assert (XEXP (src
, 0) == stack_pointer_rtx
);
1992 if (GET_CODE (src
) != MINUS
)
1994 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1995 cfa
.offset
+= offset
;
1996 if (cfa_store
.reg
== STACK_POINTER_REGNUM
)
1997 cfa_store
.offset
+= offset
;
1999 else if (dest
== hard_frame_pointer_rtx
)
2002 /* Either setting the FP from an offset of the SP,
2003 or adjusting the FP */
2004 gcc_assert (frame_pointer_needed
);
2006 gcc_assert (REG_P (XEXP (src
, 0))
2007 && (unsigned) REGNO (XEXP (src
, 0)) == cfa
.reg
2008 && GET_CODE (XEXP (src
, 1)) == CONST_INT
);
2009 offset
= INTVAL (XEXP (src
, 1));
2010 if (GET_CODE (src
) != MINUS
)
2012 cfa
.offset
+= offset
;
2013 cfa
.reg
= HARD_FRAME_POINTER_REGNUM
;
2017 gcc_assert (GET_CODE (src
) != MINUS
);
2020 if (REG_P (XEXP (src
, 0))
2021 && REGNO (XEXP (src
, 0)) == cfa
.reg
2022 && GET_CODE (XEXP (src
, 1)) == CONST_INT
)
2024 /* Setting a temporary CFA register that will be copied
2025 into the FP later on. */
2026 offset
= - INTVAL (XEXP (src
, 1));
2027 cfa
.offset
+= offset
;
2028 cfa
.reg
= REGNO (dest
);
2029 /* Or used to save regs to the stack. */
2030 cfa_temp
.reg
= cfa
.reg
;
2031 cfa_temp
.offset
= cfa
.offset
;
2035 else if (REG_P (XEXP (src
, 0))
2036 && REGNO (XEXP (src
, 0)) == cfa_temp
.reg
2037 && XEXP (src
, 1) == stack_pointer_rtx
)
2039 /* Setting a scratch register that we will use instead
2040 of SP for saving registers to the stack. */
2041 gcc_assert (cfa
.reg
== STACK_POINTER_REGNUM
);
2042 cfa_store
.reg
= REGNO (dest
);
2043 cfa_store
.offset
= cfa
.offset
- cfa_temp
.offset
;
2047 else if (GET_CODE (src
) == LO_SUM
2048 && GET_CODE (XEXP (src
, 1)) == CONST_INT
)
2050 cfa_temp
.reg
= REGNO (dest
);
2051 cfa_temp
.offset
= INTVAL (XEXP (src
, 1));
2060 cfa_temp
.reg
= REGNO (dest
);
2061 cfa_temp
.offset
= INTVAL (src
);
2066 gcc_assert (REG_P (XEXP (src
, 0))
2067 && (unsigned) REGNO (XEXP (src
, 0)) == cfa_temp
.reg
2068 && GET_CODE (XEXP (src
, 1)) == CONST_INT
);
2070 if ((unsigned) REGNO (dest
) != cfa_temp
.reg
)
2071 cfa_temp
.reg
= REGNO (dest
);
2072 cfa_temp
.offset
|= INTVAL (XEXP (src
, 1));
2075 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
2076 which will fill in all of the bits. */
2083 case UNSPEC_VOLATILE
:
2084 gcc_assert (targetm
.dwarf_handle_frame_unspec
);
2085 targetm
.dwarf_handle_frame_unspec (label
, expr
, XINT (src
, 1));
2090 /* If this AND operation happens on stack pointer in prologue,
2091 we assume the stack is realigned and we extract the
2093 if (fde
&& XEXP (src
, 0) == stack_pointer_rtx
)
2095 gcc_assert (cfa_store
.reg
== REGNO (XEXP (src
, 0)));
2096 fde
->stack_realign
= 1;
2097 fde
->stack_realignment
= INTVAL (XEXP (src
, 1));
2098 cfa_store
.offset
= 0;
2100 if (cfa
.reg
!= STACK_POINTER_REGNUM
2101 && cfa
.reg
!= HARD_FRAME_POINTER_REGNUM
)
2102 fde
->drap_reg
= cfa
.reg
;
2110 def_cfa_1 (label
, &cfa
);
2115 /* Saving a register to the stack. Make sure dest is relative to the
2117 switch (GET_CODE (XEXP (dest
, 0)))
2122 /* We can't handle variable size modifications. */
2123 gcc_assert (GET_CODE (XEXP (XEXP (XEXP (dest
, 0), 1), 1))
2125 offset
= -INTVAL (XEXP (XEXP (XEXP (dest
, 0), 1), 1));
2127 gcc_assert (REGNO (XEXP (XEXP (dest
, 0), 0)) == STACK_POINTER_REGNUM
2128 && cfa_store
.reg
== STACK_POINTER_REGNUM
);
2130 cfa_store
.offset
+= offset
;
2131 if (cfa
.reg
== STACK_POINTER_REGNUM
)
2132 cfa
.offset
= cfa_store
.offset
;
2134 offset
= -cfa_store
.offset
;
2140 offset
= GET_MODE_SIZE (GET_MODE (dest
));
2141 if (GET_CODE (XEXP (dest
, 0)) == PRE_INC
)
2144 gcc_assert ((REGNO (XEXP (XEXP (dest
, 0), 0))
2145 == STACK_POINTER_REGNUM
)
2146 && cfa_store
.reg
== STACK_POINTER_REGNUM
);
2148 cfa_store
.offset
+= offset
;
2150 /* Rule 18: If stack is aligned, we will use FP as a
2151 reference to represent the address of the stored
2154 && fde
->stack_realign
2155 && src
== hard_frame_pointer_rtx
)
2157 gcc_assert (cfa
.reg
!= HARD_FRAME_POINTER_REGNUM
);
2158 cfa_store
.offset
= 0;
2161 if (cfa
.reg
== STACK_POINTER_REGNUM
)
2162 cfa
.offset
= cfa_store
.offset
;
2164 offset
= -cfa_store
.offset
;
2168 /* With an offset. */
2175 gcc_assert (GET_CODE (XEXP (XEXP (dest
, 0), 1)) == CONST_INT
2176 && REG_P (XEXP (XEXP (dest
, 0), 0)));
2177 offset
= INTVAL (XEXP (XEXP (dest
, 0), 1));
2178 if (GET_CODE (XEXP (dest
, 0)) == MINUS
)
2181 regno
= REGNO (XEXP (XEXP (dest
, 0), 0));
2183 if (cfa_store
.reg
== (unsigned) regno
)
2184 offset
-= cfa_store
.offset
;
2187 gcc_assert (cfa_temp
.reg
== (unsigned) regno
);
2188 offset
-= cfa_temp
.offset
;
2194 /* Without an offset. */
2197 int regno
= REGNO (XEXP (dest
, 0));
2199 if (cfa_store
.reg
== (unsigned) regno
)
2200 offset
= -cfa_store
.offset
;
2203 gcc_assert (cfa_temp
.reg
== (unsigned) regno
);
2204 offset
= -cfa_temp
.offset
;
2211 gcc_assert (cfa_temp
.reg
2212 == (unsigned) REGNO (XEXP (XEXP (dest
, 0), 0)));
2213 offset
= -cfa_temp
.offset
;
2214 cfa_temp
.offset
-= GET_MODE_SIZE (GET_MODE (dest
));
2222 /* If the source operand of this MEM operation is not a
2223 register, basically the source is return address. Here
2224 we only care how much stack grew and we don't save it. */
2228 if (REGNO (src
) != STACK_POINTER_REGNUM
2229 && REGNO (src
) != HARD_FRAME_POINTER_REGNUM
2230 && (unsigned) REGNO (src
) == cfa
.reg
)
2232 /* We're storing the current CFA reg into the stack. */
2234 if (cfa
.offset
== 0)
2237 /* If stack is aligned, putting CFA reg into stack means
2238 we can no longer use reg + offset to represent CFA.
2239 Here we use DW_CFA_def_cfa_expression instead. The
2240 result of this expression equals to the original CFA
2243 && fde
->stack_realign
2244 && cfa
.indirect
== 0
2245 && cfa
.reg
!= HARD_FRAME_POINTER_REGNUM
)
2247 dw_cfa_location cfa_exp
;
2249 gcc_assert (fde
->drap_reg
== cfa
.reg
);
2251 cfa_exp
.indirect
= 1;
2252 cfa_exp
.reg
= HARD_FRAME_POINTER_REGNUM
;
2253 cfa_exp
.base_offset
= offset
;
2256 fde
->drap_reg_saved
= 1;
2258 def_cfa_1 (label
, &cfa_exp
);
2262 /* If the source register is exactly the CFA, assume
2263 we're saving SP like any other register; this happens
2265 def_cfa_1 (label
, &cfa
);
2266 queue_reg_save (label
, stack_pointer_rtx
, NULL_RTX
, offset
);
2271 /* Otherwise, we'll need to look in the stack to
2272 calculate the CFA. */
2273 rtx x
= XEXP (dest
, 0);
2277 gcc_assert (REG_P (x
));
2279 cfa
.reg
= REGNO (x
);
2280 cfa
.base_offset
= offset
;
2282 def_cfa_1 (label
, &cfa
);
2287 def_cfa_1 (label
, &cfa
);
2289 span
= targetm
.dwarf_register_span (src
);
2292 queue_reg_save (label
, src
, NULL_RTX
, offset
);
2295 /* We have a PARALLEL describing where the contents of SRC
2296 live. Queue register saves for each piece of the
2300 HOST_WIDE_INT span_offset
= offset
;
2302 gcc_assert (GET_CODE (span
) == PARALLEL
);
2304 limit
= XVECLEN (span
, 0);
2305 for (par_index
= 0; par_index
< limit
; par_index
++)
2307 rtx elem
= XVECEXP (span
, 0, par_index
);
2309 queue_reg_save (label
, elem
, NULL_RTX
, span_offset
);
2310 span_offset
+= GET_MODE_SIZE (GET_MODE (elem
));
2321 /* Record call frame debugging information for INSN, which either
2322 sets SP or FP (adjusting how we calculate the frame address) or saves a
2323 register to the stack. If INSN is NULL_RTX, initialize our state.
2325 If AFTER_P is false, we're being called before the insn is emitted,
2326 otherwise after. Call instructions get invoked twice. */
2329 dwarf2out_frame_debug (rtx insn
, bool after_p
)
2334 if (insn
== NULL_RTX
)
2338 /* Flush any queued register saves. */
2339 flush_queued_reg_saves ();
2341 /* Set up state for generating call frame debug info. */
2344 == (unsigned long)DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM
));
2346 cfa
.reg
= STACK_POINTER_REGNUM
;
2349 cfa_temp
.offset
= 0;
2351 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
2353 regs_saved_in_regs
[i
].orig_reg
= NULL_RTX
;
2354 regs_saved_in_regs
[i
].saved_in_reg
= NULL_RTX
;
2356 num_regs_saved_in_regs
= 0;
2358 if (barrier_args_size
)
2360 XDELETEVEC (barrier_args_size
);
2361 barrier_args_size
= NULL
;
2366 if (!NONJUMP_INSN_P (insn
) || clobbers_queued_reg_save (insn
))
2367 flush_queued_reg_saves ();
2369 if (! RTX_FRAME_RELATED_P (insn
))
2371 if (!ACCUMULATE_OUTGOING_ARGS
)
2372 dwarf2out_stack_adjust (insn
, after_p
);
2376 label
= dwarf2out_cfi_label ();
2377 src
= find_reg_note (insn
, REG_FRAME_RELATED_EXPR
, NULL_RTX
);
2379 insn
= XEXP (src
, 0);
2381 insn
= PATTERN (insn
);
2383 dwarf2out_frame_debug_expr (insn
, label
);
2388 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
2389 static enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
2390 (enum dwarf_call_frame_info cfi
);
2392 static enum dw_cfi_oprnd_type
2393 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi
)
2398 case DW_CFA_GNU_window_save
:
2399 return dw_cfi_oprnd_unused
;
2401 case DW_CFA_set_loc
:
2402 case DW_CFA_advance_loc1
:
2403 case DW_CFA_advance_loc2
:
2404 case DW_CFA_advance_loc4
:
2405 case DW_CFA_MIPS_advance_loc8
:
2406 return dw_cfi_oprnd_addr
;
2409 case DW_CFA_offset_extended
:
2410 case DW_CFA_def_cfa
:
2411 case DW_CFA_offset_extended_sf
:
2412 case DW_CFA_def_cfa_sf
:
2413 case DW_CFA_restore_extended
:
2414 case DW_CFA_undefined
:
2415 case DW_CFA_same_value
:
2416 case DW_CFA_def_cfa_register
:
2417 case DW_CFA_register
:
2418 return dw_cfi_oprnd_reg_num
;
2420 case DW_CFA_def_cfa_offset
:
2421 case DW_CFA_GNU_args_size
:
2422 case DW_CFA_def_cfa_offset_sf
:
2423 return dw_cfi_oprnd_offset
;
2425 case DW_CFA_def_cfa_expression
:
2426 case DW_CFA_expression
:
2427 return dw_cfi_oprnd_loc
;
2434 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
2435 static enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
2436 (enum dwarf_call_frame_info cfi
);
2438 static enum dw_cfi_oprnd_type
2439 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi
)
2443 case DW_CFA_def_cfa
:
2444 case DW_CFA_def_cfa_sf
:
2446 case DW_CFA_offset_extended_sf
:
2447 case DW_CFA_offset_extended
:
2448 return dw_cfi_oprnd_offset
;
2450 case DW_CFA_register
:
2451 return dw_cfi_oprnd_reg_num
;
2454 return dw_cfi_oprnd_unused
;
2458 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
2460 /* Switch to eh_frame_section. If we don't have an eh_frame_section,
2461 switch to the data section instead, and write out a synthetic label
2465 switch_to_eh_frame_section (void)
2469 #ifdef EH_FRAME_SECTION_NAME
2470 if (eh_frame_section
== 0)
2474 if (EH_TABLES_CAN_BE_READ_ONLY
)
2480 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
2482 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
2484 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
2486 flags
= ((! flag_pic
2487 || ((fde_encoding
& 0x70) != DW_EH_PE_absptr
2488 && (fde_encoding
& 0x70) != DW_EH_PE_aligned
2489 && (per_encoding
& 0x70) != DW_EH_PE_absptr
2490 && (per_encoding
& 0x70) != DW_EH_PE_aligned
2491 && (lsda_encoding
& 0x70) != DW_EH_PE_absptr
2492 && (lsda_encoding
& 0x70) != DW_EH_PE_aligned
))
2493 ? 0 : SECTION_WRITE
);
2496 flags
= SECTION_WRITE
;
2497 eh_frame_section
= get_section (EH_FRAME_SECTION_NAME
, flags
, NULL
);
2501 if (eh_frame_section
)
2502 switch_to_section (eh_frame_section
);
2505 /* We have no special eh_frame section. Put the information in
2506 the data section and emit special labels to guide collect2. */
2507 switch_to_section (data_section
);
2508 label
= get_file_function_name ("F");
2509 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
2510 targetm
.asm_out
.globalize_label (asm_out_file
,
2511 IDENTIFIER_POINTER (label
));
2512 ASM_OUTPUT_LABEL (asm_out_file
, IDENTIFIER_POINTER (label
));
2516 /* Divide OFF by DWARF_CIE_DATA_ALIGNMENT, asserting no remainder. */
2518 static HOST_WIDE_INT
2519 div_data_align (HOST_WIDE_INT off
)
2521 HOST_WIDE_INT r
= off
/ DWARF_CIE_DATA_ALIGNMENT
;
2522 gcc_assert (r
* DWARF_CIE_DATA_ALIGNMENT
== off
);
2526 /* Output a Call Frame Information opcode and its operand(s). */
2529 output_cfi (dw_cfi_ref cfi
, dw_fde_ref fde
, int for_eh
)
2534 if (cfi
->dw_cfi_opc
== DW_CFA_advance_loc
)
2535 dw2_asm_output_data (1, (cfi
->dw_cfi_opc
2536 | (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
& 0x3f)),
2537 "DW_CFA_advance_loc " HOST_WIDE_INT_PRINT_HEX
,
2538 ((unsigned HOST_WIDE_INT
)
2539 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
));
2540 else if (cfi
->dw_cfi_opc
== DW_CFA_offset
)
2542 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2543 dw2_asm_output_data (1, (cfi
->dw_cfi_opc
| (r
& 0x3f)),
2544 "DW_CFA_offset, column 0x%lx", r
);
2545 off
= div_data_align (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
);
2546 dw2_asm_output_data_uleb128 (off
, NULL
);
2548 else if (cfi
->dw_cfi_opc
== DW_CFA_restore
)
2550 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2551 dw2_asm_output_data (1, (cfi
->dw_cfi_opc
| (r
& 0x3f)),
2552 "DW_CFA_restore, column 0x%lx", r
);
2556 dw2_asm_output_data (1, cfi
->dw_cfi_opc
,
2557 "%s", dwarf_cfi_name (cfi
->dw_cfi_opc
));
2559 switch (cfi
->dw_cfi_opc
)
2561 case DW_CFA_set_loc
:
2563 dw2_asm_output_encoded_addr_rtx (
2564 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
2565 gen_rtx_SYMBOL_REF (Pmode
, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
),
2568 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
2569 cfi
->dw_cfi_oprnd1
.dw_cfi_addr
, NULL
);
2570 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2573 case DW_CFA_advance_loc1
:
2574 dw2_asm_output_delta (1, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2575 fde
->dw_fde_current_label
, NULL
);
2576 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2579 case DW_CFA_advance_loc2
:
2580 dw2_asm_output_delta (2, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2581 fde
->dw_fde_current_label
, NULL
);
2582 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2585 case DW_CFA_advance_loc4
:
2586 dw2_asm_output_delta (4, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2587 fde
->dw_fde_current_label
, NULL
);
2588 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2591 case DW_CFA_MIPS_advance_loc8
:
2592 dw2_asm_output_delta (8, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2593 fde
->dw_fde_current_label
, NULL
);
2594 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2597 case DW_CFA_offset_extended
:
2598 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2599 dw2_asm_output_data_uleb128 (r
, NULL
);
2600 off
= div_data_align (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
);
2601 dw2_asm_output_data_uleb128 (off
, NULL
);
2604 case DW_CFA_def_cfa
:
2605 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2606 dw2_asm_output_data_uleb128 (r
, NULL
);
2607 dw2_asm_output_data_uleb128 (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
, NULL
);
2610 case DW_CFA_offset_extended_sf
:
2611 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2612 dw2_asm_output_data_uleb128 (r
, NULL
);
2613 off
= div_data_align (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
);
2614 dw2_asm_output_data_sleb128 (off
, NULL
);
2617 case DW_CFA_def_cfa_sf
:
2618 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2619 dw2_asm_output_data_uleb128 (r
, NULL
);
2620 off
= div_data_align (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
);
2621 dw2_asm_output_data_sleb128 (off
, NULL
);
2624 case DW_CFA_restore_extended
:
2625 case DW_CFA_undefined
:
2626 case DW_CFA_same_value
:
2627 case DW_CFA_def_cfa_register
:
2628 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2629 dw2_asm_output_data_uleb128 (r
, NULL
);
2632 case DW_CFA_register
:
2633 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2634 dw2_asm_output_data_uleb128 (r
, NULL
);
2635 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
, for_eh
);
2636 dw2_asm_output_data_uleb128 (r
, NULL
);
2639 case DW_CFA_def_cfa_offset
:
2640 case DW_CFA_GNU_args_size
:
2641 dw2_asm_output_data_uleb128 (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
, NULL
);
2644 case DW_CFA_def_cfa_offset_sf
:
2645 off
= div_data_align (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
);
2646 dw2_asm_output_data_sleb128 (off
, NULL
);
2649 case DW_CFA_GNU_window_save
:
2652 case DW_CFA_def_cfa_expression
:
2653 case DW_CFA_expression
:
2654 output_cfa_loc (cfi
);
2657 case DW_CFA_GNU_negative_offset_extended
:
2658 /* Obsoleted by DW_CFA_offset_extended_sf. */
2667 /* Similar, but do it via assembler directives instead. */
2670 output_cfi_directive (dw_cfi_ref cfi
)
2672 unsigned long r
, r2
;
2674 switch (cfi
->dw_cfi_opc
)
2676 case DW_CFA_advance_loc
:
2677 case DW_CFA_advance_loc1
:
2678 case DW_CFA_advance_loc2
:
2679 case DW_CFA_advance_loc4
:
2680 case DW_CFA_MIPS_advance_loc8
:
2681 case DW_CFA_set_loc
:
2682 /* Should only be created by add_fde_cfi in a code path not
2683 followed when emitting via directives. The assembler is
2684 going to take care of this for us. */
2688 case DW_CFA_offset_extended
:
2689 case DW_CFA_offset_extended_sf
:
2690 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, 0);
2691 fprintf (asm_out_file
, "\t.cfi_offset %lu, "HOST_WIDE_INT_PRINT_DEC
"\n",
2692 r
, cfi
->dw_cfi_oprnd2
.dw_cfi_offset
);
2695 case DW_CFA_restore
:
2696 case DW_CFA_restore_extended
:
2697 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, 0);
2698 fprintf (asm_out_file
, "\t.cfi_restore %lu\n", r
);
2701 case DW_CFA_undefined
:
2702 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, 0);
2703 fprintf (asm_out_file
, "\t.cfi_undefined %lu\n", r
);
2706 case DW_CFA_same_value
:
2707 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, 0);
2708 fprintf (asm_out_file
, "\t.cfi_same_value %lu\n", r
);
2711 case DW_CFA_def_cfa
:
2712 case DW_CFA_def_cfa_sf
:
2713 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, 0);
2714 fprintf (asm_out_file
, "\t.cfi_def_cfa %lu, "HOST_WIDE_INT_PRINT_DEC
"\n",
2715 r
, cfi
->dw_cfi_oprnd2
.dw_cfi_offset
);
2718 case DW_CFA_def_cfa_register
:
2719 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, 0);
2720 fprintf (asm_out_file
, "\t.cfi_def_cfa_register %lu\n", r
);
2723 case DW_CFA_register
:
2724 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, 0);
2725 r2
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
, 0);
2726 fprintf (asm_out_file
, "\t.cfi_register %lu, %lu\n", r
, r2
);
2729 case DW_CFA_def_cfa_offset
:
2730 case DW_CFA_def_cfa_offset_sf
:
2731 fprintf (asm_out_file
, "\t.cfi_def_cfa_offset "
2732 HOST_WIDE_INT_PRINT_DEC
"\n",
2733 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
);
2736 case DW_CFA_GNU_args_size
:
2737 fprintf (asm_out_file
, "\t.cfi_escape 0x%x,", DW_CFA_GNU_args_size
);
2738 dw2_asm_output_data_uleb128_raw (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
);
2740 fprintf (asm_out_file
, "\t%s args_size "HOST_WIDE_INT_PRINT_DEC
,
2741 ASM_COMMENT_START
, cfi
->dw_cfi_oprnd1
.dw_cfi_offset
);
2742 fputc ('\n', asm_out_file
);
2745 case DW_CFA_GNU_window_save
:
2746 fprintf (asm_out_file
, "\t.cfi_window_save\n");
2749 case DW_CFA_def_cfa_expression
:
2750 case DW_CFA_expression
:
2751 fprintf (asm_out_file
, "\t.cfi_escape 0x%x,", cfi
->dw_cfi_opc
);
2752 output_cfa_loc_raw (cfi
);
2753 fputc ('\n', asm_out_file
);
2761 /* Output the call frame information used to record information
2762 that relates to calculating the frame pointer, and records the
2763 location of saved registers. */
2766 output_call_frame_info (int for_eh
)
2771 char l1
[20], l2
[20], section_start_label
[20];
2772 bool any_lsda_needed
= false;
2773 char augmentation
[6];
2774 int augmentation_size
;
2775 int fde_encoding
= DW_EH_PE_absptr
;
2776 int per_encoding
= DW_EH_PE_absptr
;
2777 int lsda_encoding
= DW_EH_PE_absptr
;
2780 /* Don't emit a CIE if there won't be any FDEs. */
2781 if (fde_table_in_use
== 0)
2784 /* Nothing to do if the assembler's doing it all. */
2785 if (dwarf2out_do_cfi_asm ())
2788 /* If we make FDEs linkonce, we may have to emit an empty label for
2789 an FDE that wouldn't otherwise be emitted. We want to avoid
2790 having an FDE kept around when the function it refers to is
2791 discarded. Example where this matters: a primary function
2792 template in C++ requires EH information, but an explicit
2793 specialization doesn't. */
2794 if (TARGET_USES_WEAK_UNWIND_INFO
2795 && ! flag_asynchronous_unwind_tables
2798 for (i
= 0; i
< fde_table_in_use
; i
++)
2799 if ((fde_table
[i
].nothrow
|| fde_table
[i
].all_throwers_are_sibcalls
)
2800 && !fde_table
[i
].uses_eh_lsda
2801 && ! DECL_WEAK (fde_table
[i
].decl
))
2802 targetm
.asm_out
.unwind_label (asm_out_file
, fde_table
[i
].decl
,
2803 for_eh
, /* empty */ 1);
2805 /* If we don't have any functions we'll want to unwind out of, don't
2806 emit any EH unwind information. Note that if exceptions aren't
2807 enabled, we won't have collected nothrow information, and if we
2808 asked for asynchronous tables, we always want this info. */
2811 bool any_eh_needed
= !flag_exceptions
|| flag_asynchronous_unwind_tables
;
2813 for (i
= 0; i
< fde_table_in_use
; i
++)
2814 if (fde_table
[i
].uses_eh_lsda
)
2815 any_eh_needed
= any_lsda_needed
= true;
2816 else if (TARGET_USES_WEAK_UNWIND_INFO
&& DECL_WEAK (fde_table
[i
].decl
))
2817 any_eh_needed
= true;
2818 else if (! fde_table
[i
].nothrow
2819 && ! fde_table
[i
].all_throwers_are_sibcalls
)
2820 any_eh_needed
= true;
2822 if (! any_eh_needed
)
2826 /* We're going to be generating comments, so turn on app. */
2831 switch_to_eh_frame_section ();
2834 if (!debug_frame_section
)
2835 debug_frame_section
= get_section (DEBUG_FRAME_SECTION
,
2836 SECTION_DEBUG
, NULL
);
2837 switch_to_section (debug_frame_section
);
2840 ASM_GENERATE_INTERNAL_LABEL (section_start_label
, FRAME_BEGIN_LABEL
, for_eh
);
2841 ASM_OUTPUT_LABEL (asm_out_file
, section_start_label
);
2843 /* Output the CIE. */
2844 ASM_GENERATE_INTERNAL_LABEL (l1
, CIE_AFTER_SIZE_LABEL
, for_eh
);
2845 ASM_GENERATE_INTERNAL_LABEL (l2
, CIE_END_LABEL
, for_eh
);
2846 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4 && !for_eh
)
2847 dw2_asm_output_data (4, 0xffffffff,
2848 "Initial length escape value indicating 64-bit DWARF extension");
2849 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
2850 "Length of Common Information Entry");
2851 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
2853 /* Now that the CIE pointer is PC-relative for EH,
2854 use 0 to identify the CIE. */
2855 dw2_asm_output_data ((for_eh
? 4 : DWARF_OFFSET_SIZE
),
2856 (for_eh
? 0 : DWARF_CIE_ID
),
2857 "CIE Identifier Tag");
2859 dw2_asm_output_data (1, DW_CIE_VERSION
, "CIE Version");
2861 augmentation
[0] = 0;
2862 augmentation_size
= 0;
2868 z Indicates that a uleb128 is present to size the
2869 augmentation section.
2870 L Indicates the encoding (and thus presence) of
2871 an LSDA pointer in the FDE augmentation.
2872 R Indicates a non-default pointer encoding for
2874 P Indicates the presence of an encoding + language
2875 personality routine in the CIE augmentation. */
2877 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
2878 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
2879 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
2881 p
= augmentation
+ 1;
2882 if (eh_personality_libfunc
)
2885 augmentation_size
+= 1 + size_of_encoded_value (per_encoding
);
2886 assemble_external_libcall (eh_personality_libfunc
);
2888 if (any_lsda_needed
)
2891 augmentation_size
+= 1;
2893 if (fde_encoding
!= DW_EH_PE_absptr
)
2896 augmentation_size
+= 1;
2898 if (p
> augmentation
+ 1)
2900 augmentation
[0] = 'z';
2904 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
2905 if (eh_personality_libfunc
&& per_encoding
== DW_EH_PE_aligned
)
2907 int offset
= ( 4 /* Length */
2909 + 1 /* CIE version */
2910 + strlen (augmentation
) + 1 /* Augmentation */
2911 + size_of_uleb128 (1) /* Code alignment */
2912 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT
)
2914 + 1 /* Augmentation size */
2915 + 1 /* Personality encoding */ );
2916 int pad
= -offset
& (PTR_SIZE
- 1);
2918 augmentation_size
+= pad
;
2920 /* Augmentations should be small, so there's scarce need to
2921 iterate for a solution. Die if we exceed one uleb128 byte. */
2922 gcc_assert (size_of_uleb128 (augmentation_size
) == 1);
2926 dw2_asm_output_nstring (augmentation
, -1, "CIE Augmentation");
2927 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
2928 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT
,
2929 "CIE Data Alignment Factor");
2931 return_reg
= DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN
, for_eh
);
2932 if (DW_CIE_VERSION
== 1)
2933 dw2_asm_output_data (1, return_reg
, "CIE RA Column");
2935 dw2_asm_output_data_uleb128 (return_reg
, "CIE RA Column");
2937 if (augmentation
[0])
2939 dw2_asm_output_data_uleb128 (augmentation_size
, "Augmentation size");
2940 if (eh_personality_libfunc
)
2942 dw2_asm_output_data (1, per_encoding
, "Personality (%s)",
2943 eh_data_format_name (per_encoding
));
2944 dw2_asm_output_encoded_addr_rtx (per_encoding
,
2945 eh_personality_libfunc
,
2949 if (any_lsda_needed
)
2950 dw2_asm_output_data (1, lsda_encoding
, "LSDA Encoding (%s)",
2951 eh_data_format_name (lsda_encoding
));
2953 if (fde_encoding
!= DW_EH_PE_absptr
)
2954 dw2_asm_output_data (1, fde_encoding
, "FDE Encoding (%s)",
2955 eh_data_format_name (fde_encoding
));
2958 for (cfi
= cie_cfi_head
; cfi
!= NULL
; cfi
= cfi
->dw_cfi_next
)
2959 output_cfi (cfi
, NULL
, for_eh
);
2961 /* Pad the CIE out to an address sized boundary. */
2962 ASM_OUTPUT_ALIGN (asm_out_file
,
2963 floor_log2 (for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
));
2964 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
2966 /* Loop through all of the FDE's. */
2967 for (i
= 0; i
< fde_table_in_use
; i
++)
2969 fde
= &fde_table
[i
];
2971 /* Don't emit EH unwind info for leaf functions that don't need it. */
2972 if (for_eh
&& !flag_asynchronous_unwind_tables
&& flag_exceptions
2973 && (fde
->nothrow
|| fde
->all_throwers_are_sibcalls
)
2974 && ! (TARGET_USES_WEAK_UNWIND_INFO
&& DECL_WEAK (fde_table
[i
].decl
))
2975 && !fde
->uses_eh_lsda
)
2978 targetm
.asm_out
.unwind_label (asm_out_file
, fde
->decl
, for_eh
, /* empty */ 0);
2979 targetm
.asm_out
.internal_label (asm_out_file
, FDE_LABEL
, for_eh
+ i
* 2);
2980 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_AFTER_SIZE_LABEL
, for_eh
+ i
* 2);
2981 ASM_GENERATE_INTERNAL_LABEL (l2
, FDE_END_LABEL
, for_eh
+ i
* 2);
2982 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4 && !for_eh
)
2983 dw2_asm_output_data (4, 0xffffffff,
2984 "Initial length escape value indicating 64-bit DWARF extension");
2985 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
2987 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
2990 dw2_asm_output_delta (4, l1
, section_start_label
, "FDE CIE offset");
2992 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, section_start_label
,
2993 debug_frame_section
, "FDE CIE offset");
2997 if (fde
->dw_fde_switched_sections
)
2999 rtx sym_ref2
= gen_rtx_SYMBOL_REF (Pmode
,
3000 fde
->dw_fde_unlikely_section_label
);
3001 rtx sym_ref3
= gen_rtx_SYMBOL_REF (Pmode
,
3002 fde
->dw_fde_hot_section_label
);
3003 SYMBOL_REF_FLAGS (sym_ref2
) |= SYMBOL_FLAG_LOCAL
;
3004 SYMBOL_REF_FLAGS (sym_ref3
) |= SYMBOL_FLAG_LOCAL
;
3005 dw2_asm_output_encoded_addr_rtx (fde_encoding
, sym_ref3
, false,
3006 "FDE initial location");
3007 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
3008 fde
->dw_fde_hot_section_end_label
,
3009 fde
->dw_fde_hot_section_label
,
3010 "FDE address range");
3011 dw2_asm_output_encoded_addr_rtx (fde_encoding
, sym_ref2
, false,
3012 "FDE initial location");
3013 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
3014 fde
->dw_fde_unlikely_section_end_label
,
3015 fde
->dw_fde_unlikely_section_label
,
3016 "FDE address range");
3020 rtx sym_ref
= gen_rtx_SYMBOL_REF (Pmode
, fde
->dw_fde_begin
);
3021 SYMBOL_REF_FLAGS (sym_ref
) |= SYMBOL_FLAG_LOCAL
;
3022 dw2_asm_output_encoded_addr_rtx (fde_encoding
,
3025 "FDE initial location");
3026 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
3027 fde
->dw_fde_end
, fde
->dw_fde_begin
,
3028 "FDE address range");
3033 if (fde
->dw_fde_switched_sections
)
3035 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
3036 fde
->dw_fde_hot_section_label
,
3037 "FDE initial location");
3038 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
3039 fde
->dw_fde_hot_section_end_label
,
3040 fde
->dw_fde_hot_section_label
,
3041 "FDE address range");
3042 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
3043 fde
->dw_fde_unlikely_section_label
,
3044 "FDE initial location");
3045 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
3046 fde
->dw_fde_unlikely_section_end_label
,
3047 fde
->dw_fde_unlikely_section_label
,
3048 "FDE address range");
3052 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, fde
->dw_fde_begin
,
3053 "FDE initial location");
3054 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
3055 fde
->dw_fde_end
, fde
->dw_fde_begin
,
3056 "FDE address range");
3060 if (augmentation
[0])
3062 if (any_lsda_needed
)
3064 int size
= size_of_encoded_value (lsda_encoding
);
3066 if (lsda_encoding
== DW_EH_PE_aligned
)
3068 int offset
= ( 4 /* Length */
3069 + 4 /* CIE offset */
3070 + 2 * size_of_encoded_value (fde_encoding
)
3071 + 1 /* Augmentation size */ );
3072 int pad
= -offset
& (PTR_SIZE
- 1);
3075 gcc_assert (size_of_uleb128 (size
) == 1);
3078 dw2_asm_output_data_uleb128 (size
, "Augmentation size");
3080 if (fde
->uses_eh_lsda
)
3082 ASM_GENERATE_INTERNAL_LABEL (l1
, "LLSDA",
3083 fde
->funcdef_number
);
3084 dw2_asm_output_encoded_addr_rtx (
3085 lsda_encoding
, gen_rtx_SYMBOL_REF (Pmode
, l1
),
3086 false, "Language Specific Data Area");
3090 if (lsda_encoding
== DW_EH_PE_aligned
)
3091 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
3093 (size_of_encoded_value (lsda_encoding
), 0,
3094 "Language Specific Data Area (none)");
3098 dw2_asm_output_data_uleb128 (0, "Augmentation size");
3101 /* Loop through the Call Frame Instructions associated with
3103 fde
->dw_fde_current_label
= fde
->dw_fde_begin
;
3104 for (cfi
= fde
->dw_fde_cfi
; cfi
!= NULL
; cfi
= cfi
->dw_cfi_next
)
3105 output_cfi (cfi
, fde
, for_eh
);
3107 /* Pad the FDE out to an address sized boundary. */
3108 ASM_OUTPUT_ALIGN (asm_out_file
,
3109 floor_log2 ((for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
)));
3110 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
3113 if (for_eh
&& targetm
.terminate_dw2_eh_frame_info
)
3114 dw2_asm_output_data (4, 0, "End of Table");
3115 #ifdef MIPS_DEBUGGING_INFO
3116 /* Work around Irix 6 assembler bug whereby labels at the end of a section
3117 get a value of 0. Putting .align 0 after the label fixes it. */
3118 ASM_OUTPUT_ALIGN (asm_out_file
, 0);
3121 /* Turn off app to make assembly quicker. */
3126 /* Output a marker (i.e. a label) for the beginning of a function, before
3130 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED
,
3131 const char *file ATTRIBUTE_UNUSED
)
3133 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3137 current_function_func_begin_label
= NULL
;
3139 #ifdef TARGET_UNWIND_INFO
3140 /* ??? current_function_func_begin_label is also used by except.c
3141 for call-site information. We must emit this label if it might
3143 if ((! flag_exceptions
|| USING_SJLJ_EXCEPTIONS
)
3144 && ! dwarf2out_do_frame ())
3147 if (! dwarf2out_do_frame ())
3151 switch_to_section (function_section (current_function_decl
));
3152 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_BEGIN_LABEL
,
3153 current_function_funcdef_no
);
3154 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, FUNC_BEGIN_LABEL
,
3155 current_function_funcdef_no
);
3156 dup_label
= xstrdup (label
);
3157 current_function_func_begin_label
= dup_label
;
3159 #ifdef TARGET_UNWIND_INFO
3160 /* We can elide the fde allocation if we're not emitting debug info. */
3161 if (! dwarf2out_do_frame ())
3165 /* Expand the fde table if necessary. */
3166 if (fde_table_in_use
== fde_table_allocated
)
3168 fde_table_allocated
+= FDE_TABLE_INCREMENT
;
3169 fde_table
= GGC_RESIZEVEC (dw_fde_node
, fde_table
, fde_table_allocated
);
3170 memset (fde_table
+ fde_table_in_use
, 0,
3171 FDE_TABLE_INCREMENT
* sizeof (dw_fde_node
));
3174 /* Record the FDE associated with this function. */
3175 current_funcdef_fde
= fde_table_in_use
;
3177 /* Add the new FDE at the end of the fde_table. */
3178 fde
= &fde_table
[fde_table_in_use
++];
3179 fde
->decl
= current_function_decl
;
3180 fde
->dw_fde_begin
= dup_label
;
3181 fde
->dw_fde_current_label
= dup_label
;
3182 fde
->dw_fde_hot_section_label
= NULL
;
3183 fde
->dw_fde_hot_section_end_label
= NULL
;
3184 fde
->dw_fde_unlikely_section_label
= NULL
;
3185 fde
->dw_fde_unlikely_section_end_label
= NULL
;
3186 fde
->dw_fde_switched_sections
= false;
3187 fde
->dw_fde_end
= NULL
;
3188 fde
->dw_fde_cfi
= NULL
;
3189 fde
->funcdef_number
= current_function_funcdef_no
;
3190 fde
->nothrow
= TREE_NOTHROW (current_function_decl
);
3191 fde
->uses_eh_lsda
= crtl
->uses_eh_lsda
;
3192 fde
->all_throwers_are_sibcalls
= crtl
->all_throwers_are_sibcalls
;
3193 fde
->drap_reg
= INVALID_REGNUM
;
3194 fde
->vdrap_reg
= INVALID_REGNUM
;
3196 args_size
= old_args_size
= 0;
3198 /* We only want to output line number information for the genuine dwarf2
3199 prologue case, not the eh frame case. */
3200 #ifdef DWARF2_DEBUGGING_INFO
3202 dwarf2out_source_line (line
, file
);
3205 if (dwarf2out_do_cfi_asm ())
3210 fprintf (asm_out_file
, "\t.cfi_startproc\n");
3212 if (eh_personality_libfunc
)
3214 enc
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
3215 ref
= eh_personality_libfunc
;
3217 /* ??? The GAS support isn't entirely consistent. We have to
3218 handle indirect support ourselves, but PC-relative is done
3219 in the assembler. Further, the assembler can't handle any
3220 of the weirder relocation types. */
3221 if (enc
& DW_EH_PE_indirect
)
3222 ref
= dw2_force_const_mem (ref
, true);
3224 fprintf (asm_out_file
, "\t.cfi_personality 0x%x,", enc
);
3225 output_addr_const (asm_out_file
, ref
);
3226 fputc ('\n', asm_out_file
);
3229 if (crtl
->uses_eh_lsda
)
3233 enc
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
3234 ASM_GENERATE_INTERNAL_LABEL (lab
, "LLSDA",
3235 current_function_funcdef_no
);
3236 ref
= gen_rtx_SYMBOL_REF (Pmode
, lab
);
3237 SYMBOL_REF_FLAGS (ref
) = SYMBOL_FLAG_LOCAL
;
3239 if (enc
& DW_EH_PE_indirect
)
3240 ref
= dw2_force_const_mem (ref
, true);
3242 fprintf (asm_out_file
, "\t.cfi_lsda 0x%x,", enc
);
3243 output_addr_const (asm_out_file
, ref
);
3244 fputc ('\n', asm_out_file
);
3249 /* Output a marker (i.e. a label) for the absolute end of the generated code
3250 for a function definition. This gets called *after* the epilogue code has
3254 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED
,
3255 const char *file ATTRIBUTE_UNUSED
)
3258 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
3260 if (dwarf2out_do_cfi_asm ())
3261 fprintf (asm_out_file
, "\t.cfi_endproc\n");
3263 /* Output a label to mark the endpoint of the code generated for this
3265 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_END_LABEL
,
3266 current_function_funcdef_no
);
3267 ASM_OUTPUT_LABEL (asm_out_file
, label
);
3268 fde
= current_fde ();
3269 gcc_assert (fde
!= NULL
);
3270 fde
->dw_fde_end
= xstrdup (label
);
3274 dwarf2out_frame_init (void)
3276 /* Allocate the initial hunk of the fde_table. */
3277 fde_table
= GGC_CNEWVEC (dw_fde_node
, FDE_TABLE_INCREMENT
);
3278 fde_table_allocated
= FDE_TABLE_INCREMENT
;
3279 fde_table_in_use
= 0;
3281 /* Generate the CFA instructions common to all FDE's. Do it now for the
3282 sake of lookup_cfa. */
3284 /* On entry, the Canonical Frame Address is at SP. */
3285 dwarf2out_def_cfa (NULL
, STACK_POINTER_REGNUM
, INCOMING_FRAME_SP_OFFSET
);
3287 #ifdef DWARF2_UNWIND_INFO
3288 if (DWARF2_UNWIND_INFO
|| DWARF2_FRAME_INFO
)
3289 initial_return_save (INCOMING_RETURN_ADDR_RTX
);
3294 dwarf2out_frame_finish (void)
3296 /* Output call frame information. */
3297 if (DWARF2_FRAME_INFO
)
3298 output_call_frame_info (0);
3300 #ifndef TARGET_UNWIND_INFO
3301 /* Output another copy for the unwinder. */
3302 if (! USING_SJLJ_EXCEPTIONS
&& (flag_unwind_tables
|| flag_exceptions
))
3303 output_call_frame_info (1);
3307 /* Note that the current function section is being used for code. */
3310 dwarf2out_note_section_used (void)
3312 section
*sec
= current_function_section ();
3313 if (sec
== text_section
)
3314 text_section_used
= true;
3315 else if (sec
== cold_text_section
)
3316 cold_text_section_used
= true;
3320 dwarf2out_switch_text_section (void)
3322 dw_fde_ref fde
= current_fde ();
3324 gcc_assert (cfun
&& fde
);
3326 fde
->dw_fde_switched_sections
= true;
3327 fde
->dw_fde_hot_section_label
= crtl
->subsections
.hot_section_label
;
3328 fde
->dw_fde_hot_section_end_label
= crtl
->subsections
.hot_section_end_label
;
3329 fde
->dw_fde_unlikely_section_label
= crtl
->subsections
.cold_section_label
;
3330 fde
->dw_fde_unlikely_section_end_label
= crtl
->subsections
.cold_section_end_label
;
3331 have_multiple_function_sections
= true;
3333 /* Reset the current label on switching text sections, so that we
3334 don't attempt to advance_loc4 between labels in different sections. */
3335 fde
->dw_fde_current_label
= NULL
;
3337 /* There is no need to mark used sections when not debugging. */
3338 if (cold_text_section
!= NULL
)
3339 dwarf2out_note_section_used ();
3343 /* And now, the subset of the debugging information support code necessary
3344 for emitting location expressions. */
3346 /* Data about a single source file. */
3347 struct dwarf_file_data
GTY(())
3349 const char * filename
;
3353 /* We need some way to distinguish DW_OP_addr with a direct symbol
3354 relocation from DW_OP_addr with a dtp-relative symbol relocation. */
3355 #define INTERNAL_DW_OP_tls_addr (0x100 + DW_OP_addr)
3358 typedef struct dw_val_struct
*dw_val_ref
;
3359 typedef struct die_struct
*dw_die_ref
;
3360 typedef const struct die_struct
*const_dw_die_ref
;
3361 typedef struct dw_loc_descr_struct
*dw_loc_descr_ref
;
3362 typedef struct dw_loc_list_struct
*dw_loc_list_ref
;
3364 /* Each DIE may have a series of attribute/value pairs. Values
3365 can take on several forms. The forms that are used in this
3366 implementation are listed below. */
3371 dw_val_class_offset
,
3373 dw_val_class_loc_list
,
3374 dw_val_class_range_list
,
3376 dw_val_class_unsigned_const
,
3377 dw_val_class_long_long
,
3380 dw_val_class_die_ref
,
3381 dw_val_class_fde_ref
,
3382 dw_val_class_lbl_id
,
3383 dw_val_class_lineptr
,
3385 dw_val_class_macptr
,
3389 /* Describe a double word constant value. */
3390 /* ??? Every instance of long_long in the code really means CONST_DOUBLE. */
3392 typedef struct dw_long_long_struct
GTY(())
3399 /* Describe a floating point constant value, or a vector constant value. */
3401 typedef struct dw_vec_struct
GTY(())
3403 unsigned char * GTY((length ("%h.length"))) array
;
3409 /* The dw_val_node describes an attribute's value, as it is
3410 represented internally. */
3412 typedef struct dw_val_struct
GTY(())
3414 enum dw_val_class val_class
;
3415 union dw_val_struct_union
3417 rtx
GTY ((tag ("dw_val_class_addr"))) val_addr
;
3418 unsigned HOST_WIDE_INT
GTY ((tag ("dw_val_class_offset"))) val_offset
;
3419 dw_loc_list_ref
GTY ((tag ("dw_val_class_loc_list"))) val_loc_list
;
3420 dw_loc_descr_ref
GTY ((tag ("dw_val_class_loc"))) val_loc
;
3421 HOST_WIDE_INT
GTY ((default)) val_int
;
3422 unsigned HOST_WIDE_INT
GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned
;
3423 dw_long_long_const
GTY ((tag ("dw_val_class_long_long"))) val_long_long
;
3424 dw_vec_const
GTY ((tag ("dw_val_class_vec"))) val_vec
;
3425 struct dw_val_die_union
3429 } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref
;
3430 unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index
;
3431 struct indirect_string_node
* GTY ((tag ("dw_val_class_str"))) val_str
;
3432 char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id
;
3433 unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag
;
3434 struct dwarf_file_data
* GTY ((tag ("dw_val_class_file"))) val_file
;
3436 GTY ((desc ("%1.val_class"))) v
;
3440 /* Locations in memory are described using a sequence of stack machine
3443 typedef struct dw_loc_descr_struct
GTY(())
3445 dw_loc_descr_ref dw_loc_next
;
3446 enum dwarf_location_atom dw_loc_opc
;
3447 dw_val_node dw_loc_oprnd1
;
3448 dw_val_node dw_loc_oprnd2
;
3453 /* Location lists are ranges + location descriptions for that range,
3454 so you can track variables that are in different places over
3455 their entire life. */
3456 typedef struct dw_loc_list_struct
GTY(())
3458 dw_loc_list_ref dw_loc_next
;
3459 const char *begin
; /* Label for begin address of range */
3460 const char *end
; /* Label for end address of range */
3461 char *ll_symbol
; /* Label for beginning of location list.
3462 Only on head of list */
3463 const char *section
; /* Section this loclist is relative to */
3464 dw_loc_descr_ref expr
;
3467 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
3469 static dw_loc_descr_ref
int_loc_descriptor (HOST_WIDE_INT
);
3471 /* Convert a DWARF stack opcode into its string name. */
3474 dwarf_stack_op_name (unsigned int op
)
3479 case INTERNAL_DW_OP_tls_addr
:
3480 return "DW_OP_addr";
3482 return "DW_OP_deref";
3484 return "DW_OP_const1u";
3486 return "DW_OP_const1s";
3488 return "DW_OP_const2u";
3490 return "DW_OP_const2s";
3492 return "DW_OP_const4u";
3494 return "DW_OP_const4s";
3496 return "DW_OP_const8u";
3498 return "DW_OP_const8s";
3500 return "DW_OP_constu";
3502 return "DW_OP_consts";
3506 return "DW_OP_drop";
3508 return "DW_OP_over";
3510 return "DW_OP_pick";
3512 return "DW_OP_swap";
3516 return "DW_OP_xderef";
3524 return "DW_OP_minus";
3536 return "DW_OP_plus";
3537 case DW_OP_plus_uconst
:
3538 return "DW_OP_plus_uconst";
3544 return "DW_OP_shra";
3562 return "DW_OP_skip";
3564 return "DW_OP_lit0";
3566 return "DW_OP_lit1";
3568 return "DW_OP_lit2";
3570 return "DW_OP_lit3";
3572 return "DW_OP_lit4";
3574 return "DW_OP_lit5";
3576 return "DW_OP_lit6";
3578 return "DW_OP_lit7";
3580 return "DW_OP_lit8";
3582 return "DW_OP_lit9";
3584 return "DW_OP_lit10";
3586 return "DW_OP_lit11";
3588 return "DW_OP_lit12";
3590 return "DW_OP_lit13";
3592 return "DW_OP_lit14";
3594 return "DW_OP_lit15";
3596 return "DW_OP_lit16";
3598 return "DW_OP_lit17";
3600 return "DW_OP_lit18";
3602 return "DW_OP_lit19";
3604 return "DW_OP_lit20";
3606 return "DW_OP_lit21";
3608 return "DW_OP_lit22";
3610 return "DW_OP_lit23";
3612 return "DW_OP_lit24";
3614 return "DW_OP_lit25";
3616 return "DW_OP_lit26";
3618 return "DW_OP_lit27";
3620 return "DW_OP_lit28";
3622 return "DW_OP_lit29";
3624 return "DW_OP_lit30";
3626 return "DW_OP_lit31";
3628 return "DW_OP_reg0";
3630 return "DW_OP_reg1";
3632 return "DW_OP_reg2";
3634 return "DW_OP_reg3";
3636 return "DW_OP_reg4";
3638 return "DW_OP_reg5";
3640 return "DW_OP_reg6";
3642 return "DW_OP_reg7";
3644 return "DW_OP_reg8";
3646 return "DW_OP_reg9";
3648 return "DW_OP_reg10";
3650 return "DW_OP_reg11";
3652 return "DW_OP_reg12";
3654 return "DW_OP_reg13";
3656 return "DW_OP_reg14";
3658 return "DW_OP_reg15";
3660 return "DW_OP_reg16";
3662 return "DW_OP_reg17";
3664 return "DW_OP_reg18";
3666 return "DW_OP_reg19";
3668 return "DW_OP_reg20";
3670 return "DW_OP_reg21";
3672 return "DW_OP_reg22";
3674 return "DW_OP_reg23";
3676 return "DW_OP_reg24";
3678 return "DW_OP_reg25";
3680 return "DW_OP_reg26";
3682 return "DW_OP_reg27";
3684 return "DW_OP_reg28";
3686 return "DW_OP_reg29";
3688 return "DW_OP_reg30";
3690 return "DW_OP_reg31";
3692 return "DW_OP_breg0";
3694 return "DW_OP_breg1";
3696 return "DW_OP_breg2";
3698 return "DW_OP_breg3";
3700 return "DW_OP_breg4";
3702 return "DW_OP_breg5";
3704 return "DW_OP_breg6";
3706 return "DW_OP_breg7";
3708 return "DW_OP_breg8";
3710 return "DW_OP_breg9";
3712 return "DW_OP_breg10";
3714 return "DW_OP_breg11";
3716 return "DW_OP_breg12";
3718 return "DW_OP_breg13";
3720 return "DW_OP_breg14";
3722 return "DW_OP_breg15";
3724 return "DW_OP_breg16";
3726 return "DW_OP_breg17";
3728 return "DW_OP_breg18";
3730 return "DW_OP_breg19";
3732 return "DW_OP_breg20";
3734 return "DW_OP_breg21";
3736 return "DW_OP_breg22";
3738 return "DW_OP_breg23";
3740 return "DW_OP_breg24";
3742 return "DW_OP_breg25";
3744 return "DW_OP_breg26";
3746 return "DW_OP_breg27";
3748 return "DW_OP_breg28";
3750 return "DW_OP_breg29";
3752 return "DW_OP_breg30";
3754 return "DW_OP_breg31";
3756 return "DW_OP_regx";
3758 return "DW_OP_fbreg";
3760 return "DW_OP_bregx";
3762 return "DW_OP_piece";
3763 case DW_OP_deref_size
:
3764 return "DW_OP_deref_size";
3765 case DW_OP_xderef_size
:
3766 return "DW_OP_xderef_size";
3769 case DW_OP_push_object_address
:
3770 return "DW_OP_push_object_address";
3772 return "DW_OP_call2";
3774 return "DW_OP_call4";
3775 case DW_OP_call_ref
:
3776 return "DW_OP_call_ref";
3777 case DW_OP_GNU_push_tls_address
:
3778 return "DW_OP_GNU_push_tls_address";
3779 case DW_OP_GNU_uninit
:
3780 return "DW_OP_GNU_uninit";
3782 return "OP_<unknown>";
3786 /* Return a pointer to a newly allocated location description. Location
3787 descriptions are simple expression terms that can be strung
3788 together to form more complicated location (address) descriptions. */
3790 static inline dw_loc_descr_ref
3791 new_loc_descr (enum dwarf_location_atom op
, unsigned HOST_WIDE_INT oprnd1
,
3792 unsigned HOST_WIDE_INT oprnd2
)
3794 dw_loc_descr_ref descr
= GGC_CNEW (dw_loc_descr_node
);
3796 descr
->dw_loc_opc
= op
;
3797 descr
->dw_loc_oprnd1
.val_class
= dw_val_class_unsigned_const
;
3798 descr
->dw_loc_oprnd1
.v
.val_unsigned
= oprnd1
;
3799 descr
->dw_loc_oprnd2
.val_class
= dw_val_class_unsigned_const
;
3800 descr
->dw_loc_oprnd2
.v
.val_unsigned
= oprnd2
;
3805 /* Return a pointer to a newly allocated location description for
3808 static inline dw_loc_descr_ref
3809 new_reg_loc_descr (unsigned int reg
, unsigned HOST_WIDE_INT offset
)
3814 return new_loc_descr (DW_OP_breg0
+ reg
, offset
, 0);
3816 return new_loc_descr (DW_OP_bregx
, reg
, offset
);
3819 return new_loc_descr (DW_OP_reg0
+ reg
, 0, 0);
3821 return new_loc_descr (DW_OP_regx
, reg
, 0);
3824 /* Add a location description term to a location description expression. */
3827 add_loc_descr (dw_loc_descr_ref
*list_head
, dw_loc_descr_ref descr
)
3829 dw_loc_descr_ref
*d
;
3831 /* Find the end of the chain. */
3832 for (d
= list_head
; (*d
) != NULL
; d
= &(*d
)->dw_loc_next
)
3838 /* Return the size of a location descriptor. */
3840 static unsigned long
3841 size_of_loc_descr (dw_loc_descr_ref loc
)
3843 unsigned long size
= 1;
3845 switch (loc
->dw_loc_opc
)
3848 case INTERNAL_DW_OP_tls_addr
:
3849 size
+= DWARF2_ADDR_SIZE
;
3868 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3871 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
3876 case DW_OP_plus_uconst
:
3877 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3915 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
3918 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3921 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
3924 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3925 size
+= size_of_sleb128 (loc
->dw_loc_oprnd2
.v
.val_int
);
3928 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3930 case DW_OP_deref_size
:
3931 case DW_OP_xderef_size
:
3940 case DW_OP_call_ref
:
3941 size
+= DWARF2_ADDR_SIZE
;
3950 /* Return the size of a series of location descriptors. */
3952 static unsigned long
3953 size_of_locs (dw_loc_descr_ref loc
)
3958 /* If there are no skip or bra opcodes, don't fill in the dw_loc_addr
3959 field, to avoid writing to a PCH file. */
3960 for (size
= 0, l
= loc
; l
!= NULL
; l
= l
->dw_loc_next
)
3962 if (l
->dw_loc_opc
== DW_OP_skip
|| l
->dw_loc_opc
== DW_OP_bra
)
3964 size
+= size_of_loc_descr (l
);
3969 for (size
= 0, l
= loc
; l
!= NULL
; l
= l
->dw_loc_next
)
3971 l
->dw_loc_addr
= size
;
3972 size
+= size_of_loc_descr (l
);
3978 /* Output location description stack opcode's operands (if any). */
3981 output_loc_operands (dw_loc_descr_ref loc
)
3983 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
3984 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
3986 switch (loc
->dw_loc_opc
)
3988 #ifdef DWARF2_DEBUGGING_INFO
3990 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, val1
->v
.val_addr
, NULL
);
3994 dw2_asm_output_data (2, val1
->v
.val_int
, NULL
);
3998 dw2_asm_output_data (4, val1
->v
.val_int
, NULL
);
4002 gcc_assert (HOST_BITS_PER_LONG
>= 64);
4003 dw2_asm_output_data (8, val1
->v
.val_int
, NULL
);
4010 gcc_assert (val1
->val_class
== dw_val_class_loc
);
4011 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
4013 dw2_asm_output_data (2, offset
, NULL
);
4026 /* We currently don't make any attempt to make sure these are
4027 aligned properly like we do for the main unwind info, so
4028 don't support emitting things larger than a byte if we're
4029 only doing unwinding. */
4034 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
4037 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
4040 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
4043 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
4045 case DW_OP_plus_uconst
:
4046 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
4080 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
4083 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
4086 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
4089 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
4090 dw2_asm_output_data_sleb128 (val2
->v
.val_int
, NULL
);
4093 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
4095 case DW_OP_deref_size
:
4096 case DW_OP_xderef_size
:
4097 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
4100 case INTERNAL_DW_OP_tls_addr
:
4101 if (targetm
.asm_out
.output_dwarf_dtprel
)
4103 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
,
4106 fputc ('\n', asm_out_file
);
4113 /* Other codes have no operands. */
4118 /* Output a sequence of location operations. */
4121 output_loc_sequence (dw_loc_descr_ref loc
)
4123 for (; loc
!= NULL
; loc
= loc
->dw_loc_next
)
4125 /* Output the opcode. */
4126 dw2_asm_output_data (1, loc
->dw_loc_opc
,
4127 "%s", dwarf_stack_op_name (loc
->dw_loc_opc
));
4129 /* Output the operand(s) (if any). */
4130 output_loc_operands (loc
);
4134 /* Output location description stack opcode's operands (if any).
4135 The output is single bytes on a line, suitable for .cfi_escape. */
4138 output_loc_operands_raw (dw_loc_descr_ref loc
)
4140 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
4141 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
4143 switch (loc
->dw_loc_opc
)
4146 /* We cannot output addresses in .cfi_escape, only bytes. */
4152 case DW_OP_deref_size
:
4153 case DW_OP_xderef_size
:
4154 fputc (',', asm_out_file
);
4155 dw2_asm_output_data_raw (1, val1
->v
.val_int
);
4160 fputc (',', asm_out_file
);
4161 dw2_asm_output_data_raw (2, val1
->v
.val_int
);
4166 fputc (',', asm_out_file
);
4167 dw2_asm_output_data_raw (4, val1
->v
.val_int
);
4172 gcc_assert (HOST_BITS_PER_LONG
>= 64);
4173 fputc (',', asm_out_file
);
4174 dw2_asm_output_data_raw (8, val1
->v
.val_int
);
4182 gcc_assert (val1
->val_class
== dw_val_class_loc
);
4183 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
4185 fputc (',', asm_out_file
);
4186 dw2_asm_output_data_raw (2, offset
);
4191 case DW_OP_plus_uconst
:
4194 fputc (',', asm_out_file
);
4195 dw2_asm_output_data_uleb128_raw (val1
->v
.val_unsigned
);
4232 fputc (',', asm_out_file
);
4233 dw2_asm_output_data_sleb128_raw (val1
->v
.val_int
);
4237 fputc (',', asm_out_file
);
4238 dw2_asm_output_data_uleb128_raw (val1
->v
.val_unsigned
);
4239 fputc (',', asm_out_file
);
4240 dw2_asm_output_data_sleb128_raw (val2
->v
.val_int
);
4243 case INTERNAL_DW_OP_tls_addr
:
4247 /* Other codes have no operands. */
4253 output_loc_sequence_raw (dw_loc_descr_ref loc
)
4257 /* Output the opcode. */
4258 fprintf (asm_out_file
, "0x%x", loc
->dw_loc_opc
);
4259 output_loc_operands_raw (loc
);
4261 if (!loc
->dw_loc_next
)
4263 loc
= loc
->dw_loc_next
;
4265 fputc (',', asm_out_file
);
4269 /* This routine will generate the correct assembly data for a location
4270 description based on a cfi entry with a complex address. */
4273 output_cfa_loc (dw_cfi_ref cfi
)
4275 dw_loc_descr_ref loc
;
4278 if (cfi
->dw_cfi_opc
== DW_CFA_expression
)
4279 dw2_asm_output_data (1, cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
, NULL
);
4281 /* Output the size of the block. */
4282 loc
= cfi
->dw_cfi_oprnd1
.dw_cfi_loc
;
4283 size
= size_of_locs (loc
);
4284 dw2_asm_output_data_uleb128 (size
, NULL
);
4286 /* Now output the operations themselves. */
4287 output_loc_sequence (loc
);
4290 /* Similar, but used for .cfi_escape. */
4293 output_cfa_loc_raw (dw_cfi_ref cfi
)
4295 dw_loc_descr_ref loc
;
4298 if (cfi
->dw_cfi_opc
== DW_CFA_expression
)
4299 fprintf (asm_out_file
, "0x%x,", cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
);
4301 /* Output the size of the block. */
4302 loc
= cfi
->dw_cfi_oprnd1
.dw_cfi_loc
;
4303 size
= size_of_locs (loc
);
4304 dw2_asm_output_data_uleb128_raw (size
);
4305 fputc (',', asm_out_file
);
4307 /* Now output the operations themselves. */
4308 output_loc_sequence_raw (loc
);
4311 /* This function builds a dwarf location descriptor sequence from a
4312 dw_cfa_location, adding the given OFFSET to the result of the
4315 static struct dw_loc_descr_struct
*
4316 build_cfa_loc (dw_cfa_location
*cfa
, HOST_WIDE_INT offset
)
4318 struct dw_loc_descr_struct
*head
, *tmp
;
4320 offset
+= cfa
->offset
;
4324 head
= new_reg_loc_descr (cfa
->reg
, cfa
->base_offset
);
4325 head
->dw_loc_oprnd1
.val_class
= dw_val_class_const
;
4326 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
4327 add_loc_descr (&head
, tmp
);
4330 tmp
= new_loc_descr (DW_OP_plus_uconst
, offset
, 0);
4331 add_loc_descr (&head
, tmp
);
4335 head
= new_reg_loc_descr (cfa
->reg
, offset
);
4340 /* This function builds a dwarf location descriptor sequence for
4341 the address at OFFSET from the CFA when stack is aligned to
4344 static struct dw_loc_descr_struct
*
4345 build_cfa_aligned_loc (HOST_WIDE_INT offset
, HOST_WIDE_INT alignment
)
4347 struct dw_loc_descr_struct
*head
;
4348 unsigned int dwarf_fp
4349 = DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM
);
4351 /* When CFA is defined as FP+OFFSET, emulate stack alignment. */
4352 if (cfa
.reg
== HARD_FRAME_POINTER_REGNUM
&& cfa
.indirect
== 0)
4354 head
= new_reg_loc_descr (dwarf_fp
, 0);
4355 add_loc_descr (&head
, int_loc_descriptor (alignment
));
4356 add_loc_descr (&head
, new_loc_descr (DW_OP_and
, 0, 0));
4358 add_loc_descr (&head
, int_loc_descriptor (offset
));
4359 add_loc_descr (&head
, new_loc_descr (DW_OP_plus
, 0, 0));
4362 head
= new_reg_loc_descr (dwarf_fp
, offset
);
4366 /* This function fills in aa dw_cfa_location structure from a dwarf location
4367 descriptor sequence. */
4370 get_cfa_from_loc_descr (dw_cfa_location
*cfa
, struct dw_loc_descr_struct
*loc
)
4372 struct dw_loc_descr_struct
*ptr
;
4374 cfa
->base_offset
= 0;
4378 for (ptr
= loc
; ptr
!= NULL
; ptr
= ptr
->dw_loc_next
)
4380 enum dwarf_location_atom op
= ptr
->dw_loc_opc
;
4416 cfa
->reg
= op
- DW_OP_reg0
;
4419 cfa
->reg
= ptr
->dw_loc_oprnd1
.v
.val_int
;
4453 cfa
->reg
= op
- DW_OP_breg0
;
4454 cfa
->base_offset
= ptr
->dw_loc_oprnd1
.v
.val_int
;
4457 cfa
->reg
= ptr
->dw_loc_oprnd1
.v
.val_int
;
4458 cfa
->base_offset
= ptr
->dw_loc_oprnd2
.v
.val_int
;
4463 case DW_OP_plus_uconst
:
4464 cfa
->offset
= ptr
->dw_loc_oprnd1
.v
.val_unsigned
;
4467 internal_error ("DW_LOC_OP %s not implemented",
4468 dwarf_stack_op_name (ptr
->dw_loc_opc
));
4472 #endif /* .debug_frame support */
4474 /* And now, the support for symbolic debugging information. */
4475 #ifdef DWARF2_DEBUGGING_INFO
4477 /* .debug_str support. */
4478 static int output_indirect_string (void **, void *);
4480 static void dwarf2out_init (const char *);
4481 static void dwarf2out_finish (const char *);
4482 static void dwarf2out_define (unsigned int, const char *);
4483 static void dwarf2out_undef (unsigned int, const char *);
4484 static void dwarf2out_start_source_file (unsigned, const char *);
4485 static void dwarf2out_end_source_file (unsigned);
4486 static void dwarf2out_begin_block (unsigned, unsigned);
4487 static void dwarf2out_end_block (unsigned, unsigned);
4488 static bool dwarf2out_ignore_block (const_tree
);
4489 static void dwarf2out_global_decl (tree
);
4490 static void dwarf2out_type_decl (tree
, int);
4491 static void dwarf2out_imported_module_or_decl (tree
, tree
, tree
, bool);
4492 static void dwarf2out_imported_module_or_decl_1 (tree
, tree
, tree
,
4494 static void dwarf2out_abstract_function (tree
);
4495 static void dwarf2out_var_location (rtx
);
4496 static void dwarf2out_begin_function (tree
);
4498 /* The debug hooks structure. */
4500 const struct gcc_debug_hooks dwarf2_debug_hooks
=
4506 dwarf2out_start_source_file
,
4507 dwarf2out_end_source_file
,
4508 dwarf2out_begin_block
,
4509 dwarf2out_end_block
,
4510 dwarf2out_ignore_block
,
4511 dwarf2out_source_line
,
4512 dwarf2out_begin_prologue
,
4513 debug_nothing_int_charstar
, /* end_prologue */
4514 dwarf2out_end_epilogue
,
4515 dwarf2out_begin_function
,
4516 debug_nothing_int
, /* end_function */
4517 dwarf2out_decl
, /* function_decl */
4518 dwarf2out_global_decl
,
4519 dwarf2out_type_decl
, /* type_decl */
4520 dwarf2out_imported_module_or_decl
,
4521 debug_nothing_tree
, /* deferred_inline_function */
4522 /* The DWARF 2 backend tries to reduce debugging bloat by not
4523 emitting the abstract description of inline functions until
4524 something tries to reference them. */
4525 dwarf2out_abstract_function
, /* outlining_inline_function */
4526 debug_nothing_rtx
, /* label */
4527 debug_nothing_int
, /* handle_pch */
4528 dwarf2out_var_location
,
4529 dwarf2out_switch_text_section
,
4530 1 /* start_end_main_source_file */
4534 /* NOTE: In the comments in this file, many references are made to
4535 "Debugging Information Entries". This term is abbreviated as `DIE'
4536 throughout the remainder of this file. */
4538 /* An internal representation of the DWARF output is built, and then
4539 walked to generate the DWARF debugging info. The walk of the internal
4540 representation is done after the entire program has been compiled.
4541 The types below are used to describe the internal representation. */
4543 /* Various DIE's use offsets relative to the beginning of the
4544 .debug_info section to refer to each other. */
4546 typedef long int dw_offset
;
4548 /* Define typedefs here to avoid circular dependencies. */
4550 typedef struct dw_attr_struct
*dw_attr_ref
;
4551 typedef struct dw_line_info_struct
*dw_line_info_ref
;
4552 typedef struct dw_separate_line_info_struct
*dw_separate_line_info_ref
;
4553 typedef struct pubname_struct
*pubname_ref
;
4554 typedef struct dw_ranges_struct
*dw_ranges_ref
;
4555 typedef struct dw_ranges_by_label_struct
*dw_ranges_by_label_ref
;
4557 /* Each entry in the line_info_table maintains the file and
4558 line number associated with the label generated for that
4559 entry. The label gives the PC value associated with
4560 the line number entry. */
4562 typedef struct dw_line_info_struct
GTY(())
4564 unsigned long dw_file_num
;
4565 unsigned long dw_line_num
;
4569 /* Line information for functions in separate sections; each one gets its
4571 typedef struct dw_separate_line_info_struct
GTY(())
4573 unsigned long dw_file_num
;
4574 unsigned long dw_line_num
;
4575 unsigned long function
;
4577 dw_separate_line_info_entry
;
4579 /* Each DIE attribute has a field specifying the attribute kind,
4580 a link to the next attribute in the chain, and an attribute value.
4581 Attributes are typically linked below the DIE they modify. */
4583 typedef struct dw_attr_struct
GTY(())
4585 enum dwarf_attribute dw_attr
;
4586 dw_val_node dw_attr_val
;
4590 DEF_VEC_O(dw_attr_node
);
4591 DEF_VEC_ALLOC_O(dw_attr_node
,gc
);
4593 /* The Debugging Information Entry (DIE) structure. DIEs form a tree.
4594 The children of each node form a circular list linked by
4595 die_sib. die_child points to the node *before* the "first" child node. */
4597 typedef struct die_struct
GTY((chain_circular ("%h.die_sib")))
4599 enum dwarf_tag die_tag
;
4601 VEC(dw_attr_node
,gc
) * die_attr
;
4602 dw_die_ref die_parent
;
4603 dw_die_ref die_child
;
4605 dw_die_ref die_definition
; /* ref from a specification to its definition */
4606 dw_offset die_offset
;
4607 unsigned long die_abbrev
;
4609 /* Die is used and must not be pruned as unused. */
4610 int die_perennial_p
;
4611 unsigned int decl_id
;
4615 /* Evaluate 'expr' while 'c' is set to each child of DIE in order. */
4616 #define FOR_EACH_CHILD(die, c, expr) do { \
4617 c = die->die_child; \
4621 } while (c != die->die_child); \
4624 /* The pubname structure */
4626 typedef struct pubname_struct
GTY(())
4633 DEF_VEC_O(pubname_entry
);
4634 DEF_VEC_ALLOC_O(pubname_entry
, gc
);
4636 struct dw_ranges_struct
GTY(())
4638 /* If this is positive, it's a block number, otherwise it's a
4639 bitwise-negated index into dw_ranges_by_label. */
4643 struct dw_ranges_by_label_struct
GTY(())
4649 /* The limbo die list structure. */
4650 typedef struct limbo_die_struct
GTY(())
4654 struct limbo_die_struct
*next
;
4658 /* How to start an assembler comment. */
4659 #ifndef ASM_COMMENT_START
4660 #define ASM_COMMENT_START ";#"
4663 /* Define a macro which returns nonzero for a TYPE_DECL which was
4664 implicitly generated for a tagged type.
4666 Note that unlike the gcc front end (which generates a NULL named
4667 TYPE_DECL node for each complete tagged type, each array type, and
4668 each function type node created) the g++ front end generates a
4669 _named_ TYPE_DECL node for each tagged type node created.
4670 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
4671 generate a DW_TAG_typedef DIE for them. */
4673 #define TYPE_DECL_IS_STUB(decl) \
4674 (DECL_NAME (decl) == NULL_TREE \
4675 || (DECL_ARTIFICIAL (decl) \
4676 && is_tagged_type (TREE_TYPE (decl)) \
4677 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
4678 /* This is necessary for stub decls that \
4679 appear in nested inline functions. */ \
4680 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
4681 && (decl_ultimate_origin (decl) \
4682 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
4684 /* Information concerning the compilation unit's programming
4685 language, and compiler version. */
4687 /* Fixed size portion of the DWARF compilation unit header. */
4688 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
4689 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
4691 /* Fixed size portion of public names info. */
4692 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
4694 /* Fixed size portion of the address range info. */
4695 #define DWARF_ARANGES_HEADER_SIZE \
4696 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
4697 DWARF2_ADDR_SIZE * 2) \
4698 - DWARF_INITIAL_LENGTH_SIZE)
4700 /* Size of padding portion in the address range info. It must be
4701 aligned to twice the pointer size. */
4702 #define DWARF_ARANGES_PAD_SIZE \
4703 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
4704 DWARF2_ADDR_SIZE * 2) \
4705 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
4707 /* Use assembler line directives if available. */
4708 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
4709 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
4710 #define DWARF2_ASM_LINE_DEBUG_INFO 1
4712 #define DWARF2_ASM_LINE_DEBUG_INFO 0
4716 /* Minimum line offset in a special line info. opcode.
4717 This value was chosen to give a reasonable range of values. */
4718 #define DWARF_LINE_BASE -10
4720 /* First special line opcode - leave room for the standard opcodes. */
4721 #define DWARF_LINE_OPCODE_BASE 10
4723 /* Range of line offsets in a special line info. opcode. */
4724 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
4726 /* Flag that indicates the initial value of the is_stmt_start flag.
4727 In the present implementation, we do not mark any lines as
4728 the beginning of a source statement, because that information
4729 is not made available by the GCC front-end. */
4730 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
4732 #ifdef DWARF2_DEBUGGING_INFO
4733 /* This location is used by calc_die_sizes() to keep track
4734 the offset of each DIE within the .debug_info section. */
4735 static unsigned long next_die_offset
;
4738 /* Record the root of the DIE's built for the current compilation unit. */
4739 static GTY(()) dw_die_ref comp_unit_die
;
4741 /* A list of DIEs with a NULL parent waiting to be relocated. */
4742 static GTY(()) limbo_die_node
*limbo_die_list
;
4744 /* Filenames referenced by this compilation unit. */
4745 static GTY((param_is (struct dwarf_file_data
))) htab_t file_table
;
4747 /* A hash table of references to DIE's that describe declarations.
4748 The key is a DECL_UID() which is a unique number identifying each decl. */
4749 static GTY ((param_is (struct die_struct
))) htab_t decl_die_table
;
4751 /* A hash table of references to DIE's that describe COMMON blocks.
4752 The key is DECL_UID() ^ die_parent. */
4753 static GTY ((param_is (struct die_struct
))) htab_t common_block_die_table
;
4755 /* Node of the variable location list. */
4756 struct var_loc_node
GTY ((chain_next ("%h.next")))
4758 rtx
GTY (()) var_loc_note
;
4759 const char * GTY (()) label
;
4760 const char * GTY (()) section_label
;
4761 struct var_loc_node
* GTY (()) next
;
4764 /* Variable location list. */
4765 struct var_loc_list_def
GTY (())
4767 struct var_loc_node
* GTY (()) first
;
4769 /* Do not mark the last element of the chained list because
4770 it is marked through the chain. */
4771 struct var_loc_node
* GTY ((skip ("%h"))) last
;
4773 /* DECL_UID of the variable decl. */
4774 unsigned int decl_id
;
4776 typedef struct var_loc_list_def var_loc_list
;
4779 /* Table of decl location linked lists. */
4780 static GTY ((param_is (var_loc_list
))) htab_t decl_loc_table
;
4782 /* A pointer to the base of a list of references to DIE's that
4783 are uniquely identified by their tag, presence/absence of
4784 children DIE's, and list of attribute/value pairs. */
4785 static GTY((length ("abbrev_die_table_allocated")))
4786 dw_die_ref
*abbrev_die_table
;
4788 /* Number of elements currently allocated for abbrev_die_table. */
4789 static GTY(()) unsigned abbrev_die_table_allocated
;
4791 /* Number of elements in type_die_table currently in use. */
4792 static GTY(()) unsigned abbrev_die_table_in_use
;
4794 /* Size (in elements) of increments by which we may expand the
4795 abbrev_die_table. */
4796 #define ABBREV_DIE_TABLE_INCREMENT 256
4798 /* A pointer to the base of a table that contains line information
4799 for each source code line in .text in the compilation unit. */
4800 static GTY((length ("line_info_table_allocated")))
4801 dw_line_info_ref line_info_table
;
4803 /* Number of elements currently allocated for line_info_table. */
4804 static GTY(()) unsigned line_info_table_allocated
;
4806 /* Number of elements in line_info_table currently in use. */
4807 static GTY(()) unsigned line_info_table_in_use
;
4809 /* A pointer to the base of a table that contains line information
4810 for each source code line outside of .text in the compilation unit. */
4811 static GTY ((length ("separate_line_info_table_allocated")))
4812 dw_separate_line_info_ref separate_line_info_table
;
4814 /* Number of elements currently allocated for separate_line_info_table. */
4815 static GTY(()) unsigned separate_line_info_table_allocated
;
4817 /* Number of elements in separate_line_info_table currently in use. */
4818 static GTY(()) unsigned separate_line_info_table_in_use
;
4820 /* Size (in elements) of increments by which we may expand the
4822 #define LINE_INFO_TABLE_INCREMENT 1024
4824 /* A pointer to the base of a table that contains a list of publicly
4825 accessible names. */
4826 static GTY (()) VEC (pubname_entry
, gc
) * pubname_table
;
4828 /* A pointer to the base of a table that contains a list of publicly
4829 accessible types. */
4830 static GTY (()) VEC (pubname_entry
, gc
) * pubtype_table
;
4832 /* Array of dies for which we should generate .debug_arange info. */
4833 static GTY((length ("arange_table_allocated"))) dw_die_ref
*arange_table
;
4835 /* Number of elements currently allocated for arange_table. */
4836 static GTY(()) unsigned arange_table_allocated
;
4838 /* Number of elements in arange_table currently in use. */
4839 static GTY(()) unsigned arange_table_in_use
;
4841 /* Size (in elements) of increments by which we may expand the
4843 #define ARANGE_TABLE_INCREMENT 64
4845 /* Array of dies for which we should generate .debug_ranges info. */
4846 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table
;
4848 /* Number of elements currently allocated for ranges_table. */
4849 static GTY(()) unsigned ranges_table_allocated
;
4851 /* Number of elements in ranges_table currently in use. */
4852 static GTY(()) unsigned ranges_table_in_use
;
4854 /* Array of pairs of labels referenced in ranges_table. */
4855 static GTY ((length ("ranges_by_label_allocated")))
4856 dw_ranges_by_label_ref ranges_by_label
;
4858 /* Number of elements currently allocated for ranges_by_label. */
4859 static GTY(()) unsigned ranges_by_label_allocated
;
4861 /* Number of elements in ranges_by_label currently in use. */
4862 static GTY(()) unsigned ranges_by_label_in_use
;
4864 /* Size (in elements) of increments by which we may expand the
4866 #define RANGES_TABLE_INCREMENT 64
4868 /* Whether we have location lists that need outputting */
4869 static GTY(()) bool have_location_lists
;
4871 /* Unique label counter. */
4872 static GTY(()) unsigned int loclabel_num
;
4874 #ifdef DWARF2_DEBUGGING_INFO
4875 /* Record whether the function being analyzed contains inlined functions. */
4876 static int current_function_has_inlines
;
4878 #if 0 && defined (MIPS_DEBUGGING_INFO)
4879 static int comp_unit_has_inlines
;
4882 /* The last file entry emitted by maybe_emit_file(). */
4883 static GTY(()) struct dwarf_file_data
* last_emitted_file
;
4885 /* Number of internal labels generated by gen_internal_sym(). */
4886 static GTY(()) int label_num
;
4888 /* Cached result of previous call to lookup_filename. */
4889 static GTY(()) struct dwarf_file_data
* file_table_last_lookup
;
4891 #ifdef DWARF2_DEBUGGING_INFO
4893 /* Offset from the "steady-state frame pointer" to the frame base,
4894 within the current function. */
4895 static HOST_WIDE_INT frame_pointer_fb_offset
;
4897 /* Forward declarations for functions defined in this file. */
4899 static int is_pseudo_reg (const_rtx
);
4900 static tree
type_main_variant (tree
);
4901 static int is_tagged_type (const_tree
);
4902 static const char *dwarf_tag_name (unsigned);
4903 static const char *dwarf_attr_name (unsigned);
4904 static const char *dwarf_form_name (unsigned);
4905 static tree
decl_ultimate_origin (const_tree
);
4906 static tree
block_ultimate_origin (const_tree
);
4907 static tree
decl_class_context (tree
);
4908 static void add_dwarf_attr (dw_die_ref
, dw_attr_ref
);
4909 static inline enum dw_val_class
AT_class (dw_attr_ref
);
4910 static void add_AT_flag (dw_die_ref
, enum dwarf_attribute
, unsigned);
4911 static inline unsigned AT_flag (dw_attr_ref
);
4912 static void add_AT_int (dw_die_ref
, enum dwarf_attribute
, HOST_WIDE_INT
);
4913 static inline HOST_WIDE_INT
AT_int (dw_attr_ref
);
4914 static void add_AT_unsigned (dw_die_ref
, enum dwarf_attribute
, unsigned HOST_WIDE_INT
);
4915 static inline unsigned HOST_WIDE_INT
AT_unsigned (dw_attr_ref
);
4916 static void add_AT_long_long (dw_die_ref
, enum dwarf_attribute
, unsigned long,
4918 static inline void add_AT_vec (dw_die_ref
, enum dwarf_attribute
, unsigned int,
4919 unsigned int, unsigned char *);
4920 static hashval_t
debug_str_do_hash (const void *);
4921 static int debug_str_eq (const void *, const void *);
4922 static void add_AT_string (dw_die_ref
, enum dwarf_attribute
, const char *);
4923 static inline const char *AT_string (dw_attr_ref
);
4924 static int AT_string_form (dw_attr_ref
);
4925 static void add_AT_die_ref (dw_die_ref
, enum dwarf_attribute
, dw_die_ref
);
4926 static void add_AT_specification (dw_die_ref
, dw_die_ref
);
4927 static inline dw_die_ref
AT_ref (dw_attr_ref
);
4928 static inline int AT_ref_external (dw_attr_ref
);
4929 static inline void set_AT_ref_external (dw_attr_ref
, int);
4930 static void add_AT_fde_ref (dw_die_ref
, enum dwarf_attribute
, unsigned);
4931 static void add_AT_loc (dw_die_ref
, enum dwarf_attribute
, dw_loc_descr_ref
);
4932 static inline dw_loc_descr_ref
AT_loc (dw_attr_ref
);
4933 static void add_AT_loc_list (dw_die_ref
, enum dwarf_attribute
,
4935 static inline dw_loc_list_ref
AT_loc_list (dw_attr_ref
);
4936 static void add_AT_addr (dw_die_ref
, enum dwarf_attribute
, rtx
);
4937 static inline rtx
AT_addr (dw_attr_ref
);
4938 static void add_AT_lbl_id (dw_die_ref
, enum dwarf_attribute
, const char *);
4939 static void add_AT_lineptr (dw_die_ref
, enum dwarf_attribute
, const char *);
4940 static void add_AT_macptr (dw_die_ref
, enum dwarf_attribute
, const char *);
4941 static void add_AT_offset (dw_die_ref
, enum dwarf_attribute
,
4942 unsigned HOST_WIDE_INT
);
4943 static void add_AT_range_list (dw_die_ref
, enum dwarf_attribute
,
4945 static inline const char *AT_lbl (dw_attr_ref
);
4946 static dw_attr_ref
get_AT (dw_die_ref
, enum dwarf_attribute
);
4947 static const char *get_AT_low_pc (dw_die_ref
);
4948 static const char *get_AT_hi_pc (dw_die_ref
);
4949 static const char *get_AT_string (dw_die_ref
, enum dwarf_attribute
);
4950 static int get_AT_flag (dw_die_ref
, enum dwarf_attribute
);
4951 static unsigned get_AT_unsigned (dw_die_ref
, enum dwarf_attribute
);
4952 static inline dw_die_ref
get_AT_ref (dw_die_ref
, enum dwarf_attribute
);
4953 static bool is_c_family (void);
4954 static bool is_cxx (void);
4955 static bool is_java (void);
4956 static bool is_fortran (void);
4957 static bool is_ada (void);
4958 static void remove_AT (dw_die_ref
, enum dwarf_attribute
);
4959 static void remove_child_TAG (dw_die_ref
, enum dwarf_tag
);
4960 static void add_child_die (dw_die_ref
, dw_die_ref
);
4961 static dw_die_ref
new_die (enum dwarf_tag
, dw_die_ref
, tree
);
4962 static dw_die_ref
lookup_type_die (tree
);
4963 static void equate_type_number_to_die (tree
, dw_die_ref
);
4964 static hashval_t
decl_die_table_hash (const void *);
4965 static int decl_die_table_eq (const void *, const void *);
4966 static dw_die_ref
lookup_decl_die (tree
);
4967 static hashval_t
common_block_die_table_hash (const void *);
4968 static int common_block_die_table_eq (const void *, const void *);
4969 static hashval_t
decl_loc_table_hash (const void *);
4970 static int decl_loc_table_eq (const void *, const void *);
4971 static var_loc_list
*lookup_decl_loc (const_tree
);
4972 static void equate_decl_number_to_die (tree
, dw_die_ref
);
4973 static void add_var_loc_to_decl (tree
, struct var_loc_node
*);
4974 static void print_spaces (FILE *);
4975 static void print_die (dw_die_ref
, FILE *);
4976 static void print_dwarf_line_table (FILE *);
4977 static dw_die_ref
push_new_compile_unit (dw_die_ref
, dw_die_ref
);
4978 static dw_die_ref
pop_compile_unit (dw_die_ref
);
4979 static void loc_checksum (dw_loc_descr_ref
, struct md5_ctx
*);
4980 static void attr_checksum (dw_attr_ref
, struct md5_ctx
*, int *);
4981 static void die_checksum (dw_die_ref
, struct md5_ctx
*, int *);
4982 static int same_loc_p (dw_loc_descr_ref
, dw_loc_descr_ref
, int *);
4983 static int same_dw_val_p (const dw_val_node
*, const dw_val_node
*, int *);
4984 static int same_attr_p (dw_attr_ref
, dw_attr_ref
, int *);
4985 static int same_die_p (dw_die_ref
, dw_die_ref
, int *);
4986 static int same_die_p_wrap (dw_die_ref
, dw_die_ref
);
4987 static void compute_section_prefix (dw_die_ref
);
4988 static int is_type_die (dw_die_ref
);
4989 static int is_comdat_die (dw_die_ref
);
4990 static int is_symbol_die (dw_die_ref
);
4991 static void assign_symbol_names (dw_die_ref
);
4992 static void break_out_includes (dw_die_ref
);
4993 static hashval_t
htab_cu_hash (const void *);
4994 static int htab_cu_eq (const void *, const void *);
4995 static void htab_cu_del (void *);
4996 static int check_duplicate_cu (dw_die_ref
, htab_t
, unsigned *);
4997 static void record_comdat_symbol_number (dw_die_ref
, htab_t
, unsigned);
4998 static void add_sibling_attributes (dw_die_ref
);
4999 static void build_abbrev_table (dw_die_ref
);
5000 static void output_location_lists (dw_die_ref
);
5001 static int constant_size (unsigned HOST_WIDE_INT
);
5002 static unsigned long size_of_die (dw_die_ref
);
5003 static void calc_die_sizes (dw_die_ref
);
5004 static void mark_dies (dw_die_ref
);
5005 static void unmark_dies (dw_die_ref
);
5006 static void unmark_all_dies (dw_die_ref
);
5007 static unsigned long size_of_pubnames (VEC (pubname_entry
,gc
) *);
5008 static unsigned long size_of_aranges (void);
5009 static enum dwarf_form
value_format (dw_attr_ref
);
5010 static void output_value_format (dw_attr_ref
);
5011 static void output_abbrev_section (void);
5012 static void output_die_symbol (dw_die_ref
);
5013 static void output_die (dw_die_ref
);
5014 static void output_compilation_unit_header (void);
5015 static void output_comp_unit (dw_die_ref
, int);
5016 static const char *dwarf2_name (tree
, int);
5017 static void add_pubname (tree
, dw_die_ref
);
5018 static void add_pubname_string (const char *, dw_die_ref
);
5019 static void add_pubtype (tree
, dw_die_ref
);
5020 static void output_pubnames (VEC (pubname_entry
,gc
) *);
5021 static void add_arange (tree
, dw_die_ref
);
5022 static void output_aranges (void);
5023 static unsigned int add_ranges_num (int);
5024 static unsigned int add_ranges (const_tree
);
5025 static unsigned int add_ranges_by_labels (const char *, const char *);
5026 static void output_ranges (void);
5027 static void output_line_info (void);
5028 static void output_file_names (void);
5029 static dw_die_ref
base_type_die (tree
);
5030 static int is_base_type (tree
);
5031 static bool is_subrange_type (const_tree
);
5032 static dw_die_ref
subrange_type_die (tree
, dw_die_ref
);
5033 static dw_die_ref
modified_type_die (tree
, int, int, dw_die_ref
);
5034 static int type_is_enum (const_tree
);
5035 static unsigned int dbx_reg_number (const_rtx
);
5036 static void add_loc_descr_op_piece (dw_loc_descr_ref
*, int);
5037 static dw_loc_descr_ref
reg_loc_descriptor (rtx
, enum var_init_status
);
5038 static dw_loc_descr_ref
one_reg_loc_descriptor (unsigned int,
5039 enum var_init_status
);
5040 static dw_loc_descr_ref
multiple_reg_loc_descriptor (rtx
, rtx
,
5041 enum var_init_status
);
5042 static dw_loc_descr_ref
based_loc_descr (rtx
, HOST_WIDE_INT
,
5043 enum var_init_status
);
5044 static int is_based_loc (const_rtx
);
5045 static dw_loc_descr_ref
mem_loc_descriptor (rtx
, enum machine_mode mode
,
5046 enum var_init_status
);
5047 static dw_loc_descr_ref
concat_loc_descriptor (rtx
, rtx
,
5048 enum var_init_status
);
5049 static dw_loc_descr_ref
loc_descriptor (rtx
, enum var_init_status
);
5050 static dw_loc_descr_ref
loc_descriptor_from_tree_1 (tree
, int);
5051 static dw_loc_descr_ref
loc_descriptor_from_tree (tree
);
5052 static HOST_WIDE_INT
ceiling (HOST_WIDE_INT
, unsigned int);
5053 static tree
field_type (const_tree
);
5054 static unsigned int simple_type_align_in_bits (const_tree
);
5055 static unsigned int simple_decl_align_in_bits (const_tree
);
5056 static unsigned HOST_WIDE_INT
simple_type_size_in_bits (const_tree
);
5057 static HOST_WIDE_INT
field_byte_offset (const_tree
);
5058 static void add_AT_location_description (dw_die_ref
, enum dwarf_attribute
,
5060 static void add_data_member_location_attribute (dw_die_ref
, tree
);
5061 static void add_const_value_attribute (dw_die_ref
, rtx
);
5062 static void insert_int (HOST_WIDE_INT
, unsigned, unsigned char *);
5063 static HOST_WIDE_INT
extract_int (const unsigned char *, unsigned);
5064 static void insert_float (const_rtx
, unsigned char *);
5065 static rtx
rtl_for_decl_location (tree
);
5066 static void add_location_or_const_value_attribute (dw_die_ref
, tree
,
5067 enum dwarf_attribute
);
5068 static void tree_add_const_value_attribute (dw_die_ref
, tree
);
5069 static void add_name_attribute (dw_die_ref
, const char *);
5070 static void add_comp_dir_attribute (dw_die_ref
);
5071 static void add_bound_info (dw_die_ref
, enum dwarf_attribute
, tree
);
5072 static void add_subscript_info (dw_die_ref
, tree
, bool);
5073 static void add_byte_size_attribute (dw_die_ref
, tree
);
5074 static void add_bit_offset_attribute (dw_die_ref
, tree
);
5075 static void add_bit_size_attribute (dw_die_ref
, tree
);
5076 static void add_prototyped_attribute (dw_die_ref
, tree
);
5077 static void add_abstract_origin_attribute (dw_die_ref
, tree
);
5078 static void add_pure_or_virtual_attribute (dw_die_ref
, tree
);
5079 static void add_src_coords_attributes (dw_die_ref
, tree
);
5080 static void add_name_and_src_coords_attributes (dw_die_ref
, tree
);
5081 static void push_decl_scope (tree
);
5082 static void pop_decl_scope (void);
5083 static dw_die_ref
scope_die_for (tree
, dw_die_ref
);
5084 static inline int local_scope_p (dw_die_ref
);
5085 static inline int class_or_namespace_scope_p (dw_die_ref
);
5086 static void add_type_attribute (dw_die_ref
, tree
, int, int, dw_die_ref
);
5087 static void add_calling_convention_attribute (dw_die_ref
, tree
);
5088 static const char *type_tag (const_tree
);
5089 static tree
member_declared_type (const_tree
);
5091 static const char *decl_start_label (tree
);
5093 static void gen_array_type_die (tree
, dw_die_ref
);
5094 static void gen_descr_array_type_die (tree
, struct array_descr_info
*, dw_die_ref
);
5096 static void gen_entry_point_die (tree
, dw_die_ref
);
5098 static void gen_inlined_enumeration_type_die (tree
, dw_die_ref
);
5099 static void gen_inlined_structure_type_die (tree
, dw_die_ref
);
5100 static void gen_inlined_union_type_die (tree
, dw_die_ref
);
5101 static dw_die_ref
gen_enumeration_type_die (tree
, dw_die_ref
);
5102 static dw_die_ref
gen_formal_parameter_die (tree
, dw_die_ref
);
5103 static void gen_unspecified_parameters_die (tree
, dw_die_ref
);
5104 static void gen_formal_types_die (tree
, dw_die_ref
);
5105 static void gen_subprogram_die (tree
, dw_die_ref
);
5106 static void gen_variable_die (tree
, dw_die_ref
);
5107 static void gen_const_die (tree
, dw_die_ref
);
5108 static void gen_label_die (tree
, dw_die_ref
);
5109 static void gen_lexical_block_die (tree
, dw_die_ref
, int);
5110 static void gen_inlined_subroutine_die (tree
, dw_die_ref
, int);
5111 static void gen_field_die (tree
, dw_die_ref
);
5112 static void gen_ptr_to_mbr_type_die (tree
, dw_die_ref
);
5113 static dw_die_ref
gen_compile_unit_die (const char *);
5114 static void gen_inheritance_die (tree
, tree
, dw_die_ref
);
5115 static void gen_member_die (tree
, dw_die_ref
);
5116 static void gen_struct_or_union_type_die (tree
, dw_die_ref
,
5117 enum debug_info_usage
);
5118 static void gen_subroutine_type_die (tree
, dw_die_ref
);
5119 static void gen_typedef_die (tree
, dw_die_ref
);
5120 static void gen_type_die (tree
, dw_die_ref
);
5121 static void gen_tagged_type_instantiation_die (tree
, dw_die_ref
);
5122 static void gen_block_die (tree
, dw_die_ref
, int);
5123 static void decls_for_scope (tree
, dw_die_ref
, int);
5124 static int is_redundant_typedef (const_tree
);
5125 static void gen_namespace_die (tree
);
5126 static void gen_decl_die (tree
, dw_die_ref
);
5127 static dw_die_ref
force_decl_die (tree
);
5128 static dw_die_ref
force_type_die (tree
);
5129 static dw_die_ref
setup_namespace_context (tree
, dw_die_ref
);
5130 static dw_die_ref
declare_in_namespace (tree
, dw_die_ref
);
5131 static struct dwarf_file_data
* lookup_filename (const char *);
5132 static void retry_incomplete_types (void);
5133 static void gen_type_die_for_member (tree
, tree
, dw_die_ref
);
5134 static void splice_child_die (dw_die_ref
, dw_die_ref
);
5135 static int file_info_cmp (const void *, const void *);
5136 static dw_loc_list_ref
new_loc_list (dw_loc_descr_ref
, const char *,
5137 const char *, const char *, unsigned);
5138 static void add_loc_descr_to_loc_list (dw_loc_list_ref
*, dw_loc_descr_ref
,
5139 const char *, const char *,
5141 static void output_loc_list (dw_loc_list_ref
);
5142 static char *gen_internal_sym (const char *);
5144 static void prune_unmark_dies (dw_die_ref
);
5145 static void prune_unused_types_mark (dw_die_ref
, int);
5146 static void prune_unused_types_walk (dw_die_ref
);
5147 static void prune_unused_types_walk_attribs (dw_die_ref
);
5148 static void prune_unused_types_prune (dw_die_ref
);
5149 static void prune_unused_types (void);
5150 static int maybe_emit_file (struct dwarf_file_data
*fd
);
5152 /* Section names used to hold DWARF debugging information. */
5153 #ifndef DEBUG_INFO_SECTION
5154 #define DEBUG_INFO_SECTION ".debug_info"
5156 #ifndef DEBUG_ABBREV_SECTION
5157 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
5159 #ifndef DEBUG_ARANGES_SECTION
5160 #define DEBUG_ARANGES_SECTION ".debug_aranges"
5162 #ifndef DEBUG_MACINFO_SECTION
5163 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
5165 #ifndef DEBUG_LINE_SECTION
5166 #define DEBUG_LINE_SECTION ".debug_line"
5168 #ifndef DEBUG_LOC_SECTION
5169 #define DEBUG_LOC_SECTION ".debug_loc"
5171 #ifndef DEBUG_PUBNAMES_SECTION
5172 #define DEBUG_PUBNAMES_SECTION ".debug_pubnames"
5174 #ifndef DEBUG_STR_SECTION
5175 #define DEBUG_STR_SECTION ".debug_str"
5177 #ifndef DEBUG_RANGES_SECTION
5178 #define DEBUG_RANGES_SECTION ".debug_ranges"
5181 /* Standard ELF section names for compiled code and data. */
5182 #ifndef TEXT_SECTION_NAME
5183 #define TEXT_SECTION_NAME ".text"
5186 /* Section flags for .debug_str section. */
5187 #define DEBUG_STR_SECTION_FLAGS \
5188 (HAVE_GAS_SHF_MERGE && flag_merge_debug_strings \
5189 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
5192 /* Labels we insert at beginning sections we can reference instead of
5193 the section names themselves. */
5195 #ifndef TEXT_SECTION_LABEL
5196 #define TEXT_SECTION_LABEL "Ltext"
5198 #ifndef COLD_TEXT_SECTION_LABEL
5199 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
5201 #ifndef DEBUG_LINE_SECTION_LABEL
5202 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
5204 #ifndef DEBUG_INFO_SECTION_LABEL
5205 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
5207 #ifndef DEBUG_ABBREV_SECTION_LABEL
5208 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
5210 #ifndef DEBUG_LOC_SECTION_LABEL
5211 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
5213 #ifndef DEBUG_RANGES_SECTION_LABEL
5214 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
5216 #ifndef DEBUG_MACINFO_SECTION_LABEL
5217 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
5220 /* Definitions of defaults for formats and names of various special
5221 (artificial) labels which may be generated within this file (when the -g
5222 options is used and DWARF2_DEBUGGING_INFO is in effect.
5223 If necessary, these may be overridden from within the tm.h file, but
5224 typically, overriding these defaults is unnecessary. */
5226 static char text_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
5227 static char text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
5228 static char cold_text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
5229 static char cold_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
5230 static char abbrev_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
5231 static char debug_info_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
5232 static char debug_line_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
5233 static char macinfo_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
5234 static char loc_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
5235 static char ranges_section_label
[2 * MAX_ARTIFICIAL_LABEL_BYTES
];
5237 #ifndef TEXT_END_LABEL
5238 #define TEXT_END_LABEL "Letext"
5240 #ifndef COLD_END_LABEL
5241 #define COLD_END_LABEL "Letext_cold"
5243 #ifndef BLOCK_BEGIN_LABEL
5244 #define BLOCK_BEGIN_LABEL "LBB"
5246 #ifndef BLOCK_END_LABEL
5247 #define BLOCK_END_LABEL "LBE"
5249 #ifndef LINE_CODE_LABEL
5250 #define LINE_CODE_LABEL "LM"
5252 #ifndef SEPARATE_LINE_CODE_LABEL
5253 #define SEPARATE_LINE_CODE_LABEL "LSM"
5257 /* We allow a language front-end to designate a function that is to be
5258 called to "demangle" any name before it is put into a DIE. */
5260 static const char *(*demangle_name_func
) (const char *);
5263 dwarf2out_set_demangle_name_func (const char *(*func
) (const char *))
5265 demangle_name_func
= func
;
5268 /* Test if rtl node points to a pseudo register. */
5271 is_pseudo_reg (const_rtx rtl
)
5273 return ((REG_P (rtl
) && REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
5274 || (GET_CODE (rtl
) == SUBREG
5275 && REGNO (SUBREG_REG (rtl
)) >= FIRST_PSEUDO_REGISTER
));
5278 /* Return a reference to a type, with its const and volatile qualifiers
5282 type_main_variant (tree type
)
5284 type
= TYPE_MAIN_VARIANT (type
);
5286 /* ??? There really should be only one main variant among any group of
5287 variants of a given type (and all of the MAIN_VARIANT values for all
5288 members of the group should point to that one type) but sometimes the C
5289 front-end messes this up for array types, so we work around that bug
5291 if (TREE_CODE (type
) == ARRAY_TYPE
)
5292 while (type
!= TYPE_MAIN_VARIANT (type
))
5293 type
= TYPE_MAIN_VARIANT (type
);
5298 /* Return nonzero if the given type node represents a tagged type. */
5301 is_tagged_type (const_tree type
)
5303 enum tree_code code
= TREE_CODE (type
);
5305 return (code
== RECORD_TYPE
|| code
== UNION_TYPE
5306 || code
== QUAL_UNION_TYPE
|| code
== ENUMERAL_TYPE
);
5309 /* Convert a DIE tag into its string name. */
5312 dwarf_tag_name (unsigned int tag
)
5316 case DW_TAG_padding
:
5317 return "DW_TAG_padding";
5318 case DW_TAG_array_type
:
5319 return "DW_TAG_array_type";
5320 case DW_TAG_class_type
:
5321 return "DW_TAG_class_type";
5322 case DW_TAG_entry_point
:
5323 return "DW_TAG_entry_point";
5324 case DW_TAG_enumeration_type
:
5325 return "DW_TAG_enumeration_type";
5326 case DW_TAG_formal_parameter
:
5327 return "DW_TAG_formal_parameter";
5328 case DW_TAG_imported_declaration
:
5329 return "DW_TAG_imported_declaration";
5331 return "DW_TAG_label";
5332 case DW_TAG_lexical_block
:
5333 return "DW_TAG_lexical_block";
5335 return "DW_TAG_member";
5336 case DW_TAG_pointer_type
:
5337 return "DW_TAG_pointer_type";
5338 case DW_TAG_reference_type
:
5339 return "DW_TAG_reference_type";
5340 case DW_TAG_compile_unit
:
5341 return "DW_TAG_compile_unit";
5342 case DW_TAG_string_type
:
5343 return "DW_TAG_string_type";
5344 case DW_TAG_structure_type
:
5345 return "DW_TAG_structure_type";
5346 case DW_TAG_subroutine_type
:
5347 return "DW_TAG_subroutine_type";
5348 case DW_TAG_typedef
:
5349 return "DW_TAG_typedef";
5350 case DW_TAG_union_type
:
5351 return "DW_TAG_union_type";
5352 case DW_TAG_unspecified_parameters
:
5353 return "DW_TAG_unspecified_parameters";
5354 case DW_TAG_variant
:
5355 return "DW_TAG_variant";
5356 case DW_TAG_common_block
:
5357 return "DW_TAG_common_block";
5358 case DW_TAG_common_inclusion
:
5359 return "DW_TAG_common_inclusion";
5360 case DW_TAG_inheritance
:
5361 return "DW_TAG_inheritance";
5362 case DW_TAG_inlined_subroutine
:
5363 return "DW_TAG_inlined_subroutine";
5365 return "DW_TAG_module";
5366 case DW_TAG_ptr_to_member_type
:
5367 return "DW_TAG_ptr_to_member_type";
5368 case DW_TAG_set_type
:
5369 return "DW_TAG_set_type";
5370 case DW_TAG_subrange_type
:
5371 return "DW_TAG_subrange_type";
5372 case DW_TAG_with_stmt
:
5373 return "DW_TAG_with_stmt";
5374 case DW_TAG_access_declaration
:
5375 return "DW_TAG_access_declaration";
5376 case DW_TAG_base_type
:
5377 return "DW_TAG_base_type";
5378 case DW_TAG_catch_block
:
5379 return "DW_TAG_catch_block";
5380 case DW_TAG_const_type
:
5381 return "DW_TAG_const_type";
5382 case DW_TAG_constant
:
5383 return "DW_TAG_constant";
5384 case DW_TAG_enumerator
:
5385 return "DW_TAG_enumerator";
5386 case DW_TAG_file_type
:
5387 return "DW_TAG_file_type";
5389 return "DW_TAG_friend";
5390 case DW_TAG_namelist
:
5391 return "DW_TAG_namelist";
5392 case DW_TAG_namelist_item
:
5393 return "DW_TAG_namelist_item";
5394 case DW_TAG_packed_type
:
5395 return "DW_TAG_packed_type";
5396 case DW_TAG_subprogram
:
5397 return "DW_TAG_subprogram";
5398 case DW_TAG_template_type_param
:
5399 return "DW_TAG_template_type_param";
5400 case DW_TAG_template_value_param
:
5401 return "DW_TAG_template_value_param";
5402 case DW_TAG_thrown_type
:
5403 return "DW_TAG_thrown_type";
5404 case DW_TAG_try_block
:
5405 return "DW_TAG_try_block";
5406 case DW_TAG_variant_part
:
5407 return "DW_TAG_variant_part";
5408 case DW_TAG_variable
:
5409 return "DW_TAG_variable";
5410 case DW_TAG_volatile_type
:
5411 return "DW_TAG_volatile_type";
5412 case DW_TAG_dwarf_procedure
:
5413 return "DW_TAG_dwarf_procedure";
5414 case DW_TAG_restrict_type
:
5415 return "DW_TAG_restrict_type";
5416 case DW_TAG_interface_type
:
5417 return "DW_TAG_interface_type";
5418 case DW_TAG_namespace
:
5419 return "DW_TAG_namespace";
5420 case DW_TAG_imported_module
:
5421 return "DW_TAG_imported_module";
5422 case DW_TAG_unspecified_type
:
5423 return "DW_TAG_unspecified_type";
5424 case DW_TAG_partial_unit
:
5425 return "DW_TAG_partial_unit";
5426 case DW_TAG_imported_unit
:
5427 return "DW_TAG_imported_unit";
5428 case DW_TAG_condition
:
5429 return "DW_TAG_condition";
5430 case DW_TAG_shared_type
:
5431 return "DW_TAG_shared_type";
5432 case DW_TAG_MIPS_loop
:
5433 return "DW_TAG_MIPS_loop";
5434 case DW_TAG_format_label
:
5435 return "DW_TAG_format_label";
5436 case DW_TAG_function_template
:
5437 return "DW_TAG_function_template";
5438 case DW_TAG_class_template
:
5439 return "DW_TAG_class_template";
5440 case DW_TAG_GNU_BINCL
:
5441 return "DW_TAG_GNU_BINCL";
5442 case DW_TAG_GNU_EINCL
:
5443 return "DW_TAG_GNU_EINCL";
5445 return "DW_TAG_<unknown>";
5449 /* Convert a DWARF attribute code into its string name. */
5452 dwarf_attr_name (unsigned int attr
)
5457 return "DW_AT_sibling";
5458 case DW_AT_location
:
5459 return "DW_AT_location";
5461 return "DW_AT_name";
5462 case DW_AT_ordering
:
5463 return "DW_AT_ordering";
5464 case DW_AT_subscr_data
:
5465 return "DW_AT_subscr_data";
5466 case DW_AT_byte_size
:
5467 return "DW_AT_byte_size";
5468 case DW_AT_bit_offset
:
5469 return "DW_AT_bit_offset";
5470 case DW_AT_bit_size
:
5471 return "DW_AT_bit_size";
5472 case DW_AT_element_list
:
5473 return "DW_AT_element_list";
5474 case DW_AT_stmt_list
:
5475 return "DW_AT_stmt_list";
5477 return "DW_AT_low_pc";
5479 return "DW_AT_high_pc";
5480 case DW_AT_language
:
5481 return "DW_AT_language";
5483 return "DW_AT_member";
5485 return "DW_AT_discr";
5486 case DW_AT_discr_value
:
5487 return "DW_AT_discr_value";
5488 case DW_AT_visibility
:
5489 return "DW_AT_visibility";
5491 return "DW_AT_import";
5492 case DW_AT_string_length
:
5493 return "DW_AT_string_length";
5494 case DW_AT_common_reference
:
5495 return "DW_AT_common_reference";
5496 case DW_AT_comp_dir
:
5497 return "DW_AT_comp_dir";
5498 case DW_AT_const_value
:
5499 return "DW_AT_const_value";
5500 case DW_AT_containing_type
:
5501 return "DW_AT_containing_type";
5502 case DW_AT_default_value
:
5503 return "DW_AT_default_value";
5505 return "DW_AT_inline";
5506 case DW_AT_is_optional
:
5507 return "DW_AT_is_optional";
5508 case DW_AT_lower_bound
:
5509 return "DW_AT_lower_bound";
5510 case DW_AT_producer
:
5511 return "DW_AT_producer";
5512 case DW_AT_prototyped
:
5513 return "DW_AT_prototyped";
5514 case DW_AT_return_addr
:
5515 return "DW_AT_return_addr";
5516 case DW_AT_start_scope
:
5517 return "DW_AT_start_scope";
5518 case DW_AT_bit_stride
:
5519 return "DW_AT_bit_stride";
5520 case DW_AT_upper_bound
:
5521 return "DW_AT_upper_bound";
5522 case DW_AT_abstract_origin
:
5523 return "DW_AT_abstract_origin";
5524 case DW_AT_accessibility
:
5525 return "DW_AT_accessibility";
5526 case DW_AT_address_class
:
5527 return "DW_AT_address_class";
5528 case DW_AT_artificial
:
5529 return "DW_AT_artificial";
5530 case DW_AT_base_types
:
5531 return "DW_AT_base_types";
5532 case DW_AT_calling_convention
:
5533 return "DW_AT_calling_convention";
5535 return "DW_AT_count";
5536 case DW_AT_data_member_location
:
5537 return "DW_AT_data_member_location";
5538 case DW_AT_decl_column
:
5539 return "DW_AT_decl_column";
5540 case DW_AT_decl_file
:
5541 return "DW_AT_decl_file";
5542 case DW_AT_decl_line
:
5543 return "DW_AT_decl_line";
5544 case DW_AT_declaration
:
5545 return "DW_AT_declaration";
5546 case DW_AT_discr_list
:
5547 return "DW_AT_discr_list";
5548 case DW_AT_encoding
:
5549 return "DW_AT_encoding";
5550 case DW_AT_external
:
5551 return "DW_AT_external";
5552 case DW_AT_frame_base
:
5553 return "DW_AT_frame_base";
5555 return "DW_AT_friend";
5556 case DW_AT_identifier_case
:
5557 return "DW_AT_identifier_case";
5558 case DW_AT_macro_info
:
5559 return "DW_AT_macro_info";
5560 case DW_AT_namelist_items
:
5561 return "DW_AT_namelist_items";
5562 case DW_AT_priority
:
5563 return "DW_AT_priority";
5565 return "DW_AT_segment";
5566 case DW_AT_specification
:
5567 return "DW_AT_specification";
5568 case DW_AT_static_link
:
5569 return "DW_AT_static_link";
5571 return "DW_AT_type";
5572 case DW_AT_use_location
:
5573 return "DW_AT_use_location";
5574 case DW_AT_variable_parameter
:
5575 return "DW_AT_variable_parameter";
5576 case DW_AT_virtuality
:
5577 return "DW_AT_virtuality";
5578 case DW_AT_vtable_elem_location
:
5579 return "DW_AT_vtable_elem_location";
5581 case DW_AT_allocated
:
5582 return "DW_AT_allocated";
5583 case DW_AT_associated
:
5584 return "DW_AT_associated";
5585 case DW_AT_data_location
:
5586 return "DW_AT_data_location";
5587 case DW_AT_byte_stride
:
5588 return "DW_AT_byte_stride";
5589 case DW_AT_entry_pc
:
5590 return "DW_AT_entry_pc";
5591 case DW_AT_use_UTF8
:
5592 return "DW_AT_use_UTF8";
5593 case DW_AT_extension
:
5594 return "DW_AT_extension";
5596 return "DW_AT_ranges";
5597 case DW_AT_trampoline
:
5598 return "DW_AT_trampoline";
5599 case DW_AT_call_column
:
5600 return "DW_AT_call_column";
5601 case DW_AT_call_file
:
5602 return "DW_AT_call_file";
5603 case DW_AT_call_line
:
5604 return "DW_AT_call_line";
5606 case DW_AT_MIPS_fde
:
5607 return "DW_AT_MIPS_fde";
5608 case DW_AT_MIPS_loop_begin
:
5609 return "DW_AT_MIPS_loop_begin";
5610 case DW_AT_MIPS_tail_loop_begin
:
5611 return "DW_AT_MIPS_tail_loop_begin";
5612 case DW_AT_MIPS_epilog_begin
:
5613 return "DW_AT_MIPS_epilog_begin";
5614 case DW_AT_MIPS_loop_unroll_factor
:
5615 return "DW_AT_MIPS_loop_unroll_factor";
5616 case DW_AT_MIPS_software_pipeline_depth
:
5617 return "DW_AT_MIPS_software_pipeline_depth";
5618 case DW_AT_MIPS_linkage_name
:
5619 return "DW_AT_MIPS_linkage_name";
5620 case DW_AT_MIPS_stride
:
5621 return "DW_AT_MIPS_stride";
5622 case DW_AT_MIPS_abstract_name
:
5623 return "DW_AT_MIPS_abstract_name";
5624 case DW_AT_MIPS_clone_origin
:
5625 return "DW_AT_MIPS_clone_origin";
5626 case DW_AT_MIPS_has_inlines
:
5627 return "DW_AT_MIPS_has_inlines";
5629 case DW_AT_sf_names
:
5630 return "DW_AT_sf_names";
5631 case DW_AT_src_info
:
5632 return "DW_AT_src_info";
5633 case DW_AT_mac_info
:
5634 return "DW_AT_mac_info";
5635 case DW_AT_src_coords
:
5636 return "DW_AT_src_coords";
5637 case DW_AT_body_begin
:
5638 return "DW_AT_body_begin";
5639 case DW_AT_body_end
:
5640 return "DW_AT_body_end";
5641 case DW_AT_GNU_vector
:
5642 return "DW_AT_GNU_vector";
5644 case DW_AT_VMS_rtnbeg_pd_address
:
5645 return "DW_AT_VMS_rtnbeg_pd_address";
5648 return "DW_AT_<unknown>";
5652 /* Convert a DWARF value form code into its string name. */
5655 dwarf_form_name (unsigned int form
)
5660 return "DW_FORM_addr";
5661 case DW_FORM_block2
:
5662 return "DW_FORM_block2";
5663 case DW_FORM_block4
:
5664 return "DW_FORM_block4";
5666 return "DW_FORM_data2";
5668 return "DW_FORM_data4";
5670 return "DW_FORM_data8";
5671 case DW_FORM_string
:
5672 return "DW_FORM_string";
5674 return "DW_FORM_block";
5675 case DW_FORM_block1
:
5676 return "DW_FORM_block1";
5678 return "DW_FORM_data1";
5680 return "DW_FORM_flag";
5682 return "DW_FORM_sdata";
5684 return "DW_FORM_strp";
5686 return "DW_FORM_udata";
5687 case DW_FORM_ref_addr
:
5688 return "DW_FORM_ref_addr";
5690 return "DW_FORM_ref1";
5692 return "DW_FORM_ref2";
5694 return "DW_FORM_ref4";
5696 return "DW_FORM_ref8";
5697 case DW_FORM_ref_udata
:
5698 return "DW_FORM_ref_udata";
5699 case DW_FORM_indirect
:
5700 return "DW_FORM_indirect";
5702 return "DW_FORM_<unknown>";
5706 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
5707 instance of an inlined instance of a decl which is local to an inline
5708 function, so we have to trace all of the way back through the origin chain
5709 to find out what sort of node actually served as the original seed for the
5713 decl_ultimate_origin (const_tree decl
)
5715 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl
), TS_DECL_COMMON
))
5718 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
5719 nodes in the function to point to themselves; ignore that if
5720 we're trying to output the abstract instance of this function. */
5721 if (DECL_ABSTRACT (decl
) && DECL_ABSTRACT_ORIGIN (decl
) == decl
)
5724 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
5725 most distant ancestor, this should never happen. */
5726 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl
)));
5728 return DECL_ABSTRACT_ORIGIN (decl
);
5731 /* Determine the "ultimate origin" of a block. The block may be an inlined
5732 instance of an inlined instance of a block which is local to an inline
5733 function, so we have to trace all of the way back through the origin chain
5734 to find out what sort of node actually served as the original seed for the
5738 block_ultimate_origin (const_tree block
)
5740 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
5742 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
5743 nodes in the function to point to themselves; ignore that if
5744 we're trying to output the abstract instance of this function. */
5745 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
5748 if (immediate_origin
== NULL_TREE
)
5753 tree lookahead
= immediate_origin
;
5757 ret_val
= lookahead
;
5758 lookahead
= (TREE_CODE (ret_val
) == BLOCK
5759 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
5761 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
5763 /* The block's abstract origin chain may not be the *ultimate* origin of
5764 the block. It could lead to a DECL that has an abstract origin set.
5765 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
5766 will give us if it has one). Note that DECL's abstract origins are
5767 supposed to be the most distant ancestor (or so decl_ultimate_origin
5768 claims), so we don't need to loop following the DECL origins. */
5769 if (DECL_P (ret_val
))
5770 return DECL_ORIGIN (ret_val
);
5776 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
5777 of a virtual function may refer to a base class, so we check the 'this'
5781 decl_class_context (tree decl
)
5783 tree context
= NULL_TREE
;
5785 if (TREE_CODE (decl
) != FUNCTION_DECL
|| ! DECL_VINDEX (decl
))
5786 context
= DECL_CONTEXT (decl
);
5788 context
= TYPE_MAIN_VARIANT
5789 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
5791 if (context
&& !TYPE_P (context
))
5792 context
= NULL_TREE
;
5797 /* Add an attribute/value pair to a DIE. */
5800 add_dwarf_attr (dw_die_ref die
, dw_attr_ref attr
)
5802 /* Maybe this should be an assert? */
5806 if (die
->die_attr
== NULL
)
5807 die
->die_attr
= VEC_alloc (dw_attr_node
, gc
, 1);
5808 VEC_safe_push (dw_attr_node
, gc
, die
->die_attr
, attr
);
5811 static inline enum dw_val_class
5812 AT_class (dw_attr_ref a
)
5814 return a
->dw_attr_val
.val_class
;
5817 /* Add a flag value attribute to a DIE. */
5820 add_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int flag
)
5824 attr
.dw_attr
= attr_kind
;
5825 attr
.dw_attr_val
.val_class
= dw_val_class_flag
;
5826 attr
.dw_attr_val
.v
.val_flag
= flag
;
5827 add_dwarf_attr (die
, &attr
);
5830 static inline unsigned
5831 AT_flag (dw_attr_ref a
)
5833 gcc_assert (a
&& AT_class (a
) == dw_val_class_flag
);
5834 return a
->dw_attr_val
.v
.val_flag
;
5837 /* Add a signed integer attribute value to a DIE. */
5840 add_AT_int (dw_die_ref die
, enum dwarf_attribute attr_kind
, HOST_WIDE_INT int_val
)
5844 attr
.dw_attr
= attr_kind
;
5845 attr
.dw_attr_val
.val_class
= dw_val_class_const
;
5846 attr
.dw_attr_val
.v
.val_int
= int_val
;
5847 add_dwarf_attr (die
, &attr
);
5850 static inline HOST_WIDE_INT
5851 AT_int (dw_attr_ref a
)
5853 gcc_assert (a
&& AT_class (a
) == dw_val_class_const
);
5854 return a
->dw_attr_val
.v
.val_int
;
5857 /* Add an unsigned integer attribute value to a DIE. */
5860 add_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
,
5861 unsigned HOST_WIDE_INT unsigned_val
)
5865 attr
.dw_attr
= attr_kind
;
5866 attr
.dw_attr_val
.val_class
= dw_val_class_unsigned_const
;
5867 attr
.dw_attr_val
.v
.val_unsigned
= unsigned_val
;
5868 add_dwarf_attr (die
, &attr
);
5871 static inline unsigned HOST_WIDE_INT
5872 AT_unsigned (dw_attr_ref a
)
5874 gcc_assert (a
&& AT_class (a
) == dw_val_class_unsigned_const
);
5875 return a
->dw_attr_val
.v
.val_unsigned
;
5878 /* Add an unsigned double integer attribute value to a DIE. */
5881 add_AT_long_long (dw_die_ref die
, enum dwarf_attribute attr_kind
,
5882 long unsigned int val_hi
, long unsigned int val_low
)
5886 attr
.dw_attr
= attr_kind
;
5887 attr
.dw_attr_val
.val_class
= dw_val_class_long_long
;
5888 attr
.dw_attr_val
.v
.val_long_long
.hi
= val_hi
;
5889 attr
.dw_attr_val
.v
.val_long_long
.low
= val_low
;
5890 add_dwarf_attr (die
, &attr
);
5893 /* Add a floating point attribute value to a DIE and return it. */
5896 add_AT_vec (dw_die_ref die
, enum dwarf_attribute attr_kind
,
5897 unsigned int length
, unsigned int elt_size
, unsigned char *array
)
5901 attr
.dw_attr
= attr_kind
;
5902 attr
.dw_attr_val
.val_class
= dw_val_class_vec
;
5903 attr
.dw_attr_val
.v
.val_vec
.length
= length
;
5904 attr
.dw_attr_val
.v
.val_vec
.elt_size
= elt_size
;
5905 attr
.dw_attr_val
.v
.val_vec
.array
= array
;
5906 add_dwarf_attr (die
, &attr
);
5909 /* Hash and equality functions for debug_str_hash. */
5912 debug_str_do_hash (const void *x
)
5914 return htab_hash_string (((const struct indirect_string_node
*)x
)->str
);
5918 debug_str_eq (const void *x1
, const void *x2
)
5920 return strcmp ((((const struct indirect_string_node
*)x1
)->str
),
5921 (const char *)x2
) == 0;
5924 /* Add a string attribute value to a DIE. */
5927 add_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *str
)
5930 struct indirect_string_node
*node
;
5933 if (! debug_str_hash
)
5934 debug_str_hash
= htab_create_ggc (10, debug_str_do_hash
,
5935 debug_str_eq
, NULL
);
5937 slot
= htab_find_slot_with_hash (debug_str_hash
, str
,
5938 htab_hash_string (str
), INSERT
);
5941 node
= (struct indirect_string_node
*)
5942 ggc_alloc_cleared (sizeof (struct indirect_string_node
));
5943 node
->str
= ggc_strdup (str
);
5947 node
= (struct indirect_string_node
*) *slot
;
5951 attr
.dw_attr
= attr_kind
;
5952 attr
.dw_attr_val
.val_class
= dw_val_class_str
;
5953 attr
.dw_attr_val
.v
.val_str
= node
;
5954 add_dwarf_attr (die
, &attr
);
5957 static inline const char *
5958 AT_string (dw_attr_ref a
)
5960 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
5961 return a
->dw_attr_val
.v
.val_str
->str
;
5964 /* Find out whether a string should be output inline in DIE
5965 or out-of-line in .debug_str section. */
5968 AT_string_form (dw_attr_ref a
)
5970 struct indirect_string_node
*node
;
5974 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
5976 node
= a
->dw_attr_val
.v
.val_str
;
5980 len
= strlen (node
->str
) + 1;
5982 /* If the string is shorter or equal to the size of the reference, it is
5983 always better to put it inline. */
5984 if (len
<= DWARF_OFFSET_SIZE
|| node
->refcount
== 0)
5985 return node
->form
= DW_FORM_string
;
5987 /* If we cannot expect the linker to merge strings in .debug_str
5988 section, only put it into .debug_str if it is worth even in this
5990 if ((debug_str_section
->common
.flags
& SECTION_MERGE
) == 0
5991 && (len
- DWARF_OFFSET_SIZE
) * node
->refcount
<= len
)
5992 return node
->form
= DW_FORM_string
;
5994 ASM_GENERATE_INTERNAL_LABEL (label
, "LASF", dw2_string_counter
);
5995 ++dw2_string_counter
;
5996 node
->label
= xstrdup (label
);
5998 return node
->form
= DW_FORM_strp
;
6001 /* Add a DIE reference attribute value to a DIE. */
6004 add_AT_die_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_die_ref targ_die
)
6008 attr
.dw_attr
= attr_kind
;
6009 attr
.dw_attr_val
.val_class
= dw_val_class_die_ref
;
6010 attr
.dw_attr_val
.v
.val_die_ref
.die
= targ_die
;
6011 attr
.dw_attr_val
.v
.val_die_ref
.external
= 0;
6012 add_dwarf_attr (die
, &attr
);
6015 /* Add an AT_specification attribute to a DIE, and also make the back
6016 pointer from the specification to the definition. */
6019 add_AT_specification (dw_die_ref die
, dw_die_ref targ_die
)
6021 add_AT_die_ref (die
, DW_AT_specification
, targ_die
);
6022 gcc_assert (!targ_die
->die_definition
);
6023 targ_die
->die_definition
= die
;
6026 static inline dw_die_ref
6027 AT_ref (dw_attr_ref a
)
6029 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
6030 return a
->dw_attr_val
.v
.val_die_ref
.die
;
6034 AT_ref_external (dw_attr_ref a
)
6036 if (a
&& AT_class (a
) == dw_val_class_die_ref
)
6037 return a
->dw_attr_val
.v
.val_die_ref
.external
;
6043 set_AT_ref_external (dw_attr_ref a
, int i
)
6045 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
6046 a
->dw_attr_val
.v
.val_die_ref
.external
= i
;
6049 /* Add an FDE reference attribute value to a DIE. */
6052 add_AT_fde_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int targ_fde
)
6056 attr
.dw_attr
= attr_kind
;
6057 attr
.dw_attr_val
.val_class
= dw_val_class_fde_ref
;
6058 attr
.dw_attr_val
.v
.val_fde_index
= targ_fde
;
6059 add_dwarf_attr (die
, &attr
);
6062 /* Add a location description attribute value to a DIE. */
6065 add_AT_loc (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_descr_ref loc
)
6069 attr
.dw_attr
= attr_kind
;
6070 attr
.dw_attr_val
.val_class
= dw_val_class_loc
;
6071 attr
.dw_attr_val
.v
.val_loc
= loc
;
6072 add_dwarf_attr (die
, &attr
);
6075 static inline dw_loc_descr_ref
6076 AT_loc (dw_attr_ref a
)
6078 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc
);
6079 return a
->dw_attr_val
.v
.val_loc
;
6083 add_AT_loc_list (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_list_ref loc_list
)
6087 attr
.dw_attr
= attr_kind
;
6088 attr
.dw_attr_val
.val_class
= dw_val_class_loc_list
;
6089 attr
.dw_attr_val
.v
.val_loc_list
= loc_list
;
6090 add_dwarf_attr (die
, &attr
);
6091 have_location_lists
= true;
6094 static inline dw_loc_list_ref
6095 AT_loc_list (dw_attr_ref a
)
6097 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc_list
);
6098 return a
->dw_attr_val
.v
.val_loc_list
;
6101 /* Add an address constant attribute value to a DIE. */
6104 add_AT_addr (dw_die_ref die
, enum dwarf_attribute attr_kind
, rtx addr
)
6108 attr
.dw_attr
= attr_kind
;
6109 attr
.dw_attr_val
.val_class
= dw_val_class_addr
;
6110 attr
.dw_attr_val
.v
.val_addr
= addr
;
6111 add_dwarf_attr (die
, &attr
);
6114 /* Get the RTX from to an address DIE attribute. */
6117 AT_addr (dw_attr_ref a
)
6119 gcc_assert (a
&& AT_class (a
) == dw_val_class_addr
);
6120 return a
->dw_attr_val
.v
.val_addr
;
6123 /* Add a file attribute value to a DIE. */
6126 add_AT_file (dw_die_ref die
, enum dwarf_attribute attr_kind
,
6127 struct dwarf_file_data
*fd
)
6131 attr
.dw_attr
= attr_kind
;
6132 attr
.dw_attr_val
.val_class
= dw_val_class_file
;
6133 attr
.dw_attr_val
.v
.val_file
= fd
;
6134 add_dwarf_attr (die
, &attr
);
6137 /* Get the dwarf_file_data from a file DIE attribute. */
6139 static inline struct dwarf_file_data
*
6140 AT_file (dw_attr_ref a
)
6142 gcc_assert (a
&& AT_class (a
) == dw_val_class_file
);
6143 return a
->dw_attr_val
.v
.val_file
;
6146 /* Add a label identifier attribute value to a DIE. */
6149 add_AT_lbl_id (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *lbl_id
)
6153 attr
.dw_attr
= attr_kind
;
6154 attr
.dw_attr_val
.val_class
= dw_val_class_lbl_id
;
6155 attr
.dw_attr_val
.v
.val_lbl_id
= xstrdup (lbl_id
);
6156 add_dwarf_attr (die
, &attr
);
6159 /* Add a section offset attribute value to a DIE, an offset into the
6160 debug_line section. */
6163 add_AT_lineptr (dw_die_ref die
, enum dwarf_attribute attr_kind
,
6168 attr
.dw_attr
= attr_kind
;
6169 attr
.dw_attr_val
.val_class
= dw_val_class_lineptr
;
6170 attr
.dw_attr_val
.v
.val_lbl_id
= xstrdup (label
);
6171 add_dwarf_attr (die
, &attr
);
6174 /* Add a section offset attribute value to a DIE, an offset into the
6175 debug_macinfo section. */
6178 add_AT_macptr (dw_die_ref die
, enum dwarf_attribute attr_kind
,
6183 attr
.dw_attr
= attr_kind
;
6184 attr
.dw_attr_val
.val_class
= dw_val_class_macptr
;
6185 attr
.dw_attr_val
.v
.val_lbl_id
= xstrdup (label
);
6186 add_dwarf_attr (die
, &attr
);
6189 /* Add an offset attribute value to a DIE. */
6192 add_AT_offset (dw_die_ref die
, enum dwarf_attribute attr_kind
,
6193 unsigned HOST_WIDE_INT offset
)
6197 attr
.dw_attr
= attr_kind
;
6198 attr
.dw_attr_val
.val_class
= dw_val_class_offset
;
6199 attr
.dw_attr_val
.v
.val_offset
= offset
;
6200 add_dwarf_attr (die
, &attr
);
6203 /* Add an range_list attribute value to a DIE. */
6206 add_AT_range_list (dw_die_ref die
, enum dwarf_attribute attr_kind
,
6207 long unsigned int offset
)
6211 attr
.dw_attr
= attr_kind
;
6212 attr
.dw_attr_val
.val_class
= dw_val_class_range_list
;
6213 attr
.dw_attr_val
.v
.val_offset
= offset
;
6214 add_dwarf_attr (die
, &attr
);
6217 static inline const char *
6218 AT_lbl (dw_attr_ref a
)
6220 gcc_assert (a
&& (AT_class (a
) == dw_val_class_lbl_id
6221 || AT_class (a
) == dw_val_class_lineptr
6222 || AT_class (a
) == dw_val_class_macptr
));
6223 return a
->dw_attr_val
.v
.val_lbl_id
;
6226 /* Get the attribute of type attr_kind. */
6229 get_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
6233 dw_die_ref spec
= NULL
;
6238 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
6239 if (a
->dw_attr
== attr_kind
)
6241 else if (a
->dw_attr
== DW_AT_specification
6242 || a
->dw_attr
== DW_AT_abstract_origin
)
6246 return get_AT (spec
, attr_kind
);
6251 /* Return the "low pc" attribute value, typically associated with a subprogram
6252 DIE. Return null if the "low pc" attribute is either not present, or if it
6253 cannot be represented as an assembler label identifier. */
6255 static inline const char *
6256 get_AT_low_pc (dw_die_ref die
)
6258 dw_attr_ref a
= get_AT (die
, DW_AT_low_pc
);
6260 return a
? AT_lbl (a
) : NULL
;
6263 /* Return the "high pc" attribute value, typically associated with a subprogram
6264 DIE. Return null if the "high pc" attribute is either not present, or if it
6265 cannot be represented as an assembler label identifier. */
6267 static inline const char *
6268 get_AT_hi_pc (dw_die_ref die
)
6270 dw_attr_ref a
= get_AT (die
, DW_AT_high_pc
);
6272 return a
? AT_lbl (a
) : NULL
;
6275 /* Return the value of the string attribute designated by ATTR_KIND, or
6276 NULL if it is not present. */
6278 static inline const char *
6279 get_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
)
6281 dw_attr_ref a
= get_AT (die
, attr_kind
);
6283 return a
? AT_string (a
) : NULL
;
6286 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
6287 if it is not present. */
6290 get_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
)
6292 dw_attr_ref a
= get_AT (die
, attr_kind
);
6294 return a
? AT_flag (a
) : 0;
6297 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
6298 if it is not present. */
6300 static inline unsigned
6301 get_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
)
6303 dw_attr_ref a
= get_AT (die
, attr_kind
);
6305 return a
? AT_unsigned (a
) : 0;
6308 static inline dw_die_ref
6309 get_AT_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
)
6311 dw_attr_ref a
= get_AT (die
, attr_kind
);
6313 return a
? AT_ref (a
) : NULL
;
6316 static inline struct dwarf_file_data
*
6317 get_AT_file (dw_die_ref die
, enum dwarf_attribute attr_kind
)
6319 dw_attr_ref a
= get_AT (die
, attr_kind
);
6321 return a
? AT_file (a
) : NULL
;
6324 /* Return TRUE if the language is C or C++. */
6329 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
6331 return (lang
== DW_LANG_C
|| lang
== DW_LANG_C89
|| lang
== DW_LANG_ObjC
6332 || lang
== DW_LANG_C99
6333 || lang
== DW_LANG_C_plus_plus
|| lang
== DW_LANG_ObjC_plus_plus
);
6336 /* Return TRUE if the language is C++. */
6341 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
6343 return lang
== DW_LANG_C_plus_plus
|| lang
== DW_LANG_ObjC_plus_plus
;
6346 /* Return TRUE if the language is Fortran. */
6351 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
6353 return (lang
== DW_LANG_Fortran77
6354 || lang
== DW_LANG_Fortran90
6355 || lang
== DW_LANG_Fortran95
);
6358 /* Return TRUE if the language is Java. */
6363 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
6365 return lang
== DW_LANG_Java
;
6368 /* Return TRUE if the language is Ada. */
6373 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
6375 return lang
== DW_LANG_Ada95
|| lang
== DW_LANG_Ada83
;
6378 /* Remove the specified attribute if present. */
6381 remove_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
6389 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
6390 if (a
->dw_attr
== attr_kind
)
6392 if (AT_class (a
) == dw_val_class_str
)
6393 if (a
->dw_attr_val
.v
.val_str
->refcount
)
6394 a
->dw_attr_val
.v
.val_str
->refcount
--;
6396 /* VEC_ordered_remove should help reduce the number of abbrevs
6398 VEC_ordered_remove (dw_attr_node
, die
->die_attr
, ix
);
6403 /* Remove CHILD from its parent. PREV must have the property that
6404 PREV->DIE_SIB == CHILD. Does not alter CHILD. */
6407 remove_child_with_prev (dw_die_ref child
, dw_die_ref prev
)
6409 gcc_assert (child
->die_parent
== prev
->die_parent
);
6410 gcc_assert (prev
->die_sib
== child
);
6413 gcc_assert (child
->die_parent
->die_child
== child
);
6417 prev
->die_sib
= child
->die_sib
;
6418 if (child
->die_parent
->die_child
== child
)
6419 child
->die_parent
->die_child
= prev
;
6422 /* Remove child DIE whose die_tag is TAG. Do nothing if no child
6426 remove_child_TAG (dw_die_ref die
, enum dwarf_tag tag
)
6432 dw_die_ref prev
= c
;
6434 while (c
->die_tag
== tag
)
6436 remove_child_with_prev (c
, prev
);
6437 /* Might have removed every child. */
6438 if (c
== c
->die_sib
)
6442 } while (c
!= die
->die_child
);
6445 /* Add a CHILD_DIE as the last child of DIE. */
6448 add_child_die (dw_die_ref die
, dw_die_ref child_die
)
6450 /* FIXME this should probably be an assert. */
6451 if (! die
|| ! child_die
)
6453 gcc_assert (die
!= child_die
);
6455 child_die
->die_parent
= die
;
6458 child_die
->die_sib
= die
->die_child
->die_sib
;
6459 die
->die_child
->die_sib
= child_die
;
6462 child_die
->die_sib
= child_die
;
6463 die
->die_child
= child_die
;
6466 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
6467 is the specification, to the end of PARENT's list of children.
6468 This is done by removing and re-adding it. */
6471 splice_child_die (dw_die_ref parent
, dw_die_ref child
)
6475 /* We want the declaration DIE from inside the class, not the
6476 specification DIE at toplevel. */
6477 if (child
->die_parent
!= parent
)
6479 dw_die_ref tmp
= get_AT_ref (child
, DW_AT_specification
);
6485 gcc_assert (child
->die_parent
== parent
6486 || (child
->die_parent
6487 == get_AT_ref (parent
, DW_AT_specification
)));
6489 for (p
= child
->die_parent
->die_child
; ; p
= p
->die_sib
)
6490 if (p
->die_sib
== child
)
6492 remove_child_with_prev (child
, p
);
6496 add_child_die (parent
, child
);
6499 /* Return a pointer to a newly created DIE node. */
6501 static inline dw_die_ref
6502 new_die (enum dwarf_tag tag_value
, dw_die_ref parent_die
, tree t
)
6504 dw_die_ref die
= GGC_CNEW (die_node
);
6506 die
->die_tag
= tag_value
;
6508 if (parent_die
!= NULL
)
6509 add_child_die (parent_die
, die
);
6512 limbo_die_node
*limbo_node
;
6514 limbo_node
= GGC_CNEW (limbo_die_node
);
6515 limbo_node
->die
= die
;
6516 limbo_node
->created_for
= t
;
6517 limbo_node
->next
= limbo_die_list
;
6518 limbo_die_list
= limbo_node
;
6524 /* Return the DIE associated with the given type specifier. */
6526 static inline dw_die_ref
6527 lookup_type_die (tree type
)
6529 return TYPE_SYMTAB_DIE (type
);
6532 /* Equate a DIE to a given type specifier. */
6535 equate_type_number_to_die (tree type
, dw_die_ref type_die
)
6537 TYPE_SYMTAB_DIE (type
) = type_die
;
6540 /* Returns a hash value for X (which really is a die_struct). */
6543 decl_die_table_hash (const void *x
)
6545 return (hashval_t
) ((const_dw_die_ref
) x
)->decl_id
;
6548 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
6551 decl_die_table_eq (const void *x
, const void *y
)
6553 return (((const_dw_die_ref
) x
)->decl_id
== DECL_UID ((const_tree
) y
));
6556 /* Return the DIE associated with a given declaration. */
6558 static inline dw_die_ref
6559 lookup_decl_die (tree decl
)
6561 return (dw_die_ref
) htab_find_with_hash (decl_die_table
, decl
, DECL_UID (decl
));
6564 /* Returns a hash value for X (which really is a var_loc_list). */
6567 decl_loc_table_hash (const void *x
)
6569 return (hashval_t
) ((const var_loc_list
*) x
)->decl_id
;
6572 /* Return nonzero if decl_id of var_loc_list X is the same as
6576 decl_loc_table_eq (const void *x
, const void *y
)
6578 return (((const var_loc_list
*) x
)->decl_id
== DECL_UID ((const_tree
) y
));
6581 /* Return the var_loc list associated with a given declaration. */
6583 static inline var_loc_list
*
6584 lookup_decl_loc (const_tree decl
)
6586 return (var_loc_list
*)
6587 htab_find_with_hash (decl_loc_table
, decl
, DECL_UID (decl
));
6590 /* Equate a DIE to a particular declaration. */
6593 equate_decl_number_to_die (tree decl
, dw_die_ref decl_die
)
6595 unsigned int decl_id
= DECL_UID (decl
);
6598 slot
= htab_find_slot_with_hash (decl_die_table
, decl
, decl_id
, INSERT
);
6600 decl_die
->decl_id
= decl_id
;
6603 /* Add a variable location node to the linked list for DECL. */
6606 add_var_loc_to_decl (tree decl
, struct var_loc_node
*loc
)
6608 unsigned int decl_id
= DECL_UID (decl
);
6612 slot
= htab_find_slot_with_hash (decl_loc_table
, decl
, decl_id
, INSERT
);
6615 temp
= GGC_CNEW (var_loc_list
);
6616 temp
->decl_id
= decl_id
;
6620 temp
= (var_loc_list
*) *slot
;
6624 /* If the current location is the same as the end of the list,
6625 and either both or neither of the locations is uninitialized,
6626 we have nothing to do. */
6627 if ((!rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp
->last
->var_loc_note
),
6628 NOTE_VAR_LOCATION_LOC (loc
->var_loc_note
)))
6629 || ((NOTE_VAR_LOCATION_STATUS (temp
->last
->var_loc_note
)
6630 != NOTE_VAR_LOCATION_STATUS (loc
->var_loc_note
))
6631 && ((NOTE_VAR_LOCATION_STATUS (temp
->last
->var_loc_note
)
6632 == VAR_INIT_STATUS_UNINITIALIZED
)
6633 || (NOTE_VAR_LOCATION_STATUS (loc
->var_loc_note
)
6634 == VAR_INIT_STATUS_UNINITIALIZED
))))
6636 /* Add LOC to the end of list and update LAST. */
6637 temp
->last
->next
= loc
;
6641 /* Do not add empty location to the beginning of the list. */
6642 else if (NOTE_VAR_LOCATION_LOC (loc
->var_loc_note
) != NULL_RTX
)
6649 /* Keep track of the number of spaces used to indent the
6650 output of the debugging routines that print the structure of
6651 the DIE internal representation. */
6652 static int print_indent
;
6654 /* Indent the line the number of spaces given by print_indent. */
6657 print_spaces (FILE *outfile
)
6659 fprintf (outfile
, "%*s", print_indent
, "");
6662 /* Print the information associated with a given DIE, and its children.
6663 This routine is a debugging aid only. */
6666 print_die (dw_die_ref die
, FILE *outfile
)
6672 print_spaces (outfile
);
6673 fprintf (outfile
, "DIE %4ld: %s\n",
6674 die
->die_offset
, dwarf_tag_name (die
->die_tag
));
6675 print_spaces (outfile
);
6676 fprintf (outfile
, " abbrev id: %lu", die
->die_abbrev
);
6677 fprintf (outfile
, " offset: %ld\n", die
->die_offset
);
6679 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
6681 print_spaces (outfile
);
6682 fprintf (outfile
, " %s: ", dwarf_attr_name (a
->dw_attr
));
6684 switch (AT_class (a
))
6686 case dw_val_class_addr
:
6687 fprintf (outfile
, "address");
6689 case dw_val_class_offset
:
6690 fprintf (outfile
, "offset");
6692 case dw_val_class_loc
:
6693 fprintf (outfile
, "location descriptor");
6695 case dw_val_class_loc_list
:
6696 fprintf (outfile
, "location list -> label:%s",
6697 AT_loc_list (a
)->ll_symbol
);
6699 case dw_val_class_range_list
:
6700 fprintf (outfile
, "range list");
6702 case dw_val_class_const
:
6703 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, AT_int (a
));
6705 case dw_val_class_unsigned_const
:
6706 fprintf (outfile
, HOST_WIDE_INT_PRINT_UNSIGNED
, AT_unsigned (a
));
6708 case dw_val_class_long_long
:
6709 fprintf (outfile
, "constant (%lu,%lu)",
6710 a
->dw_attr_val
.v
.val_long_long
.hi
,
6711 a
->dw_attr_val
.v
.val_long_long
.low
);
6713 case dw_val_class_vec
:
6714 fprintf (outfile
, "floating-point or vector constant");
6716 case dw_val_class_flag
:
6717 fprintf (outfile
, "%u", AT_flag (a
));
6719 case dw_val_class_die_ref
:
6720 if (AT_ref (a
) != NULL
)
6722 if (AT_ref (a
)->die_symbol
)
6723 fprintf (outfile
, "die -> label: %s", AT_ref (a
)->die_symbol
);
6725 fprintf (outfile
, "die -> %ld", AT_ref (a
)->die_offset
);
6728 fprintf (outfile
, "die -> <null>");
6730 case dw_val_class_lbl_id
:
6731 case dw_val_class_lineptr
:
6732 case dw_val_class_macptr
:
6733 fprintf (outfile
, "label: %s", AT_lbl (a
));
6735 case dw_val_class_str
:
6736 if (AT_string (a
) != NULL
)
6737 fprintf (outfile
, "\"%s\"", AT_string (a
));
6739 fprintf (outfile
, "<null>");
6741 case dw_val_class_file
:
6742 fprintf (outfile
, "\"%s\" (%d)", AT_file (a
)->filename
,
6743 AT_file (a
)->emitted_number
);
6749 fprintf (outfile
, "\n");
6752 if (die
->die_child
!= NULL
)
6755 FOR_EACH_CHILD (die
, c
, print_die (c
, outfile
));
6758 if (print_indent
== 0)
6759 fprintf (outfile
, "\n");
6762 /* Print the contents of the source code line number correspondence table.
6763 This routine is a debugging aid only. */
6766 print_dwarf_line_table (FILE *outfile
)
6769 dw_line_info_ref line_info
;
6771 fprintf (outfile
, "\n\nDWARF source line information\n");
6772 for (i
= 1; i
< line_info_table_in_use
; i
++)
6774 line_info
= &line_info_table
[i
];
6775 fprintf (outfile
, "%5d: %4ld %6ld\n", i
,
6776 line_info
->dw_file_num
,
6777 line_info
->dw_line_num
);
6780 fprintf (outfile
, "\n\n");
6783 /* Print the information collected for a given DIE. */
6786 debug_dwarf_die (dw_die_ref die
)
6788 print_die (die
, stderr
);
6791 /* Print all DWARF information collected for the compilation unit.
6792 This routine is a debugging aid only. */
6798 print_die (comp_unit_die
, stderr
);
6799 if (! DWARF2_ASM_LINE_DEBUG_INFO
)
6800 print_dwarf_line_table (stderr
);
6803 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
6804 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
6805 DIE that marks the start of the DIEs for this include file. */
6808 push_new_compile_unit (dw_die_ref old_unit
, dw_die_ref bincl_die
)
6810 const char *filename
= get_AT_string (bincl_die
, DW_AT_name
);
6811 dw_die_ref new_unit
= gen_compile_unit_die (filename
);
6813 new_unit
->die_sib
= old_unit
;
6817 /* Close an include-file CU and reopen the enclosing one. */
6820 pop_compile_unit (dw_die_ref old_unit
)
6822 dw_die_ref new_unit
= old_unit
->die_sib
;
6824 old_unit
->die_sib
= NULL
;
6828 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
6829 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
6831 /* Calculate the checksum of a location expression. */
6834 loc_checksum (dw_loc_descr_ref loc
, struct md5_ctx
*ctx
)
6836 CHECKSUM (loc
->dw_loc_opc
);
6837 CHECKSUM (loc
->dw_loc_oprnd1
);
6838 CHECKSUM (loc
->dw_loc_oprnd2
);
6841 /* Calculate the checksum of an attribute. */
6844 attr_checksum (dw_attr_ref at
, struct md5_ctx
*ctx
, int *mark
)
6846 dw_loc_descr_ref loc
;
6849 CHECKSUM (at
->dw_attr
);
6851 /* We don't care that this was compiled with a different compiler
6852 snapshot; if the output is the same, that's what matters. */
6853 if (at
->dw_attr
== DW_AT_producer
)
6856 switch (AT_class (at
))
6858 case dw_val_class_const
:
6859 CHECKSUM (at
->dw_attr_val
.v
.val_int
);
6861 case dw_val_class_unsigned_const
:
6862 CHECKSUM (at
->dw_attr_val
.v
.val_unsigned
);
6864 case dw_val_class_long_long
:
6865 CHECKSUM (at
->dw_attr_val
.v
.val_long_long
);
6867 case dw_val_class_vec
:
6868 CHECKSUM (at
->dw_attr_val
.v
.val_vec
);
6870 case dw_val_class_flag
:
6871 CHECKSUM (at
->dw_attr_val
.v
.val_flag
);
6873 case dw_val_class_str
:
6874 CHECKSUM_STRING (AT_string (at
));
6877 case dw_val_class_addr
:
6879 gcc_assert (GET_CODE (r
) == SYMBOL_REF
);
6880 CHECKSUM_STRING (XSTR (r
, 0));
6883 case dw_val_class_offset
:
6884 CHECKSUM (at
->dw_attr_val
.v
.val_offset
);
6887 case dw_val_class_loc
:
6888 for (loc
= AT_loc (at
); loc
; loc
= loc
->dw_loc_next
)
6889 loc_checksum (loc
, ctx
);
6892 case dw_val_class_die_ref
:
6893 die_checksum (AT_ref (at
), ctx
, mark
);
6896 case dw_val_class_fde_ref
:
6897 case dw_val_class_lbl_id
:
6898 case dw_val_class_lineptr
:
6899 case dw_val_class_macptr
:
6902 case dw_val_class_file
:
6903 CHECKSUM_STRING (AT_file (at
)->filename
);
6911 /* Calculate the checksum of a DIE. */
6914 die_checksum (dw_die_ref die
, struct md5_ctx
*ctx
, int *mark
)
6920 /* To avoid infinite recursion. */
6923 CHECKSUM (die
->die_mark
);
6926 die
->die_mark
= ++(*mark
);
6928 CHECKSUM (die
->die_tag
);
6930 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
6931 attr_checksum (a
, ctx
, mark
);
6933 FOR_EACH_CHILD (die
, c
, die_checksum (c
, ctx
, mark
));
6937 #undef CHECKSUM_STRING
6939 /* Do the location expressions look same? */
6941 same_loc_p (dw_loc_descr_ref loc1
, dw_loc_descr_ref loc2
, int *mark
)
6943 return loc1
->dw_loc_opc
== loc2
->dw_loc_opc
6944 && same_dw_val_p (&loc1
->dw_loc_oprnd1
, &loc2
->dw_loc_oprnd1
, mark
)
6945 && same_dw_val_p (&loc1
->dw_loc_oprnd2
, &loc2
->dw_loc_oprnd2
, mark
);
6948 /* Do the values look the same? */
6950 same_dw_val_p (const dw_val_node
*v1
, const dw_val_node
*v2
, int *mark
)
6952 dw_loc_descr_ref loc1
, loc2
;
6955 if (v1
->val_class
!= v2
->val_class
)
6958 switch (v1
->val_class
)
6960 case dw_val_class_const
:
6961 return v1
->v
.val_int
== v2
->v
.val_int
;
6962 case dw_val_class_unsigned_const
:
6963 return v1
->v
.val_unsigned
== v2
->v
.val_unsigned
;
6964 case dw_val_class_long_long
:
6965 return v1
->v
.val_long_long
.hi
== v2
->v
.val_long_long
.hi
6966 && v1
->v
.val_long_long
.low
== v2
->v
.val_long_long
.low
;
6967 case dw_val_class_vec
:
6968 if (v1
->v
.val_vec
.length
!= v2
->v
.val_vec
.length
6969 || v1
->v
.val_vec
.elt_size
!= v2
->v
.val_vec
.elt_size
)
6971 if (memcmp (v1
->v
.val_vec
.array
, v2
->v
.val_vec
.array
,
6972 v1
->v
.val_vec
.length
* v1
->v
.val_vec
.elt_size
))
6975 case dw_val_class_flag
:
6976 return v1
->v
.val_flag
== v2
->v
.val_flag
;
6977 case dw_val_class_str
:
6978 return !strcmp(v1
->v
.val_str
->str
, v2
->v
.val_str
->str
);
6980 case dw_val_class_addr
:
6981 r1
= v1
->v
.val_addr
;
6982 r2
= v2
->v
.val_addr
;
6983 if (GET_CODE (r1
) != GET_CODE (r2
))
6985 gcc_assert (GET_CODE (r1
) == SYMBOL_REF
);
6986 return !strcmp (XSTR (r1
, 0), XSTR (r2
, 0));
6988 case dw_val_class_offset
:
6989 return v1
->v
.val_offset
== v2
->v
.val_offset
;
6991 case dw_val_class_loc
:
6992 for (loc1
= v1
->v
.val_loc
, loc2
= v2
->v
.val_loc
;
6994 loc1
= loc1
->dw_loc_next
, loc2
= loc2
->dw_loc_next
)
6995 if (!same_loc_p (loc1
, loc2
, mark
))
6997 return !loc1
&& !loc2
;
6999 case dw_val_class_die_ref
:
7000 return same_die_p (v1
->v
.val_die_ref
.die
, v2
->v
.val_die_ref
.die
, mark
);
7002 case dw_val_class_fde_ref
:
7003 case dw_val_class_lbl_id
:
7004 case dw_val_class_lineptr
:
7005 case dw_val_class_macptr
:
7008 case dw_val_class_file
:
7009 return v1
->v
.val_file
== v2
->v
.val_file
;
7016 /* Do the attributes look the same? */
7019 same_attr_p (dw_attr_ref at1
, dw_attr_ref at2
, int *mark
)
7021 if (at1
->dw_attr
!= at2
->dw_attr
)
7024 /* We don't care that this was compiled with a different compiler
7025 snapshot; if the output is the same, that's what matters. */
7026 if (at1
->dw_attr
== DW_AT_producer
)
7029 return same_dw_val_p (&at1
->dw_attr_val
, &at2
->dw_attr_val
, mark
);
7032 /* Do the dies look the same? */
7035 same_die_p (dw_die_ref die1
, dw_die_ref die2
, int *mark
)
7041 /* To avoid infinite recursion. */
7043 return die1
->die_mark
== die2
->die_mark
;
7044 die1
->die_mark
= die2
->die_mark
= ++(*mark
);
7046 if (die1
->die_tag
!= die2
->die_tag
)
7049 if (VEC_length (dw_attr_node
, die1
->die_attr
)
7050 != VEC_length (dw_attr_node
, die2
->die_attr
))
7053 for (ix
= 0; VEC_iterate (dw_attr_node
, die1
->die_attr
, ix
, a1
); ix
++)
7054 if (!same_attr_p (a1
, VEC_index (dw_attr_node
, die2
->die_attr
, ix
), mark
))
7057 c1
= die1
->die_child
;
7058 c2
= die2
->die_child
;
7067 if (!same_die_p (c1
, c2
, mark
))
7071 if (c1
== die1
->die_child
)
7073 if (c2
== die2
->die_child
)
7083 /* Do the dies look the same? Wrapper around same_die_p. */
7086 same_die_p_wrap (dw_die_ref die1
, dw_die_ref die2
)
7089 int ret
= same_die_p (die1
, die2
, &mark
);
7091 unmark_all_dies (die1
);
7092 unmark_all_dies (die2
);
7097 /* The prefix to attach to symbols on DIEs in the current comdat debug
7099 static char *comdat_symbol_id
;
7101 /* The index of the current symbol within the current comdat CU. */
7102 static unsigned int comdat_symbol_number
;
7104 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
7105 children, and set comdat_symbol_id accordingly. */
7108 compute_section_prefix (dw_die_ref unit_die
)
7110 const char *die_name
= get_AT_string (unit_die
, DW_AT_name
);
7111 const char *base
= die_name
? lbasename (die_name
) : "anonymous";
7112 char *name
= XALLOCAVEC (char, strlen (base
) + 64);
7115 unsigned char checksum
[16];
7118 /* Compute the checksum of the DIE, then append part of it as hex digits to
7119 the name filename of the unit. */
7121 md5_init_ctx (&ctx
);
7123 die_checksum (unit_die
, &ctx
, &mark
);
7124 unmark_all_dies (unit_die
);
7125 md5_finish_ctx (&ctx
, checksum
);
7127 sprintf (name
, "%s.", base
);
7128 clean_symbol_name (name
);
7130 p
= name
+ strlen (name
);
7131 for (i
= 0; i
< 4; i
++)
7133 sprintf (p
, "%.2x", checksum
[i
]);
7137 comdat_symbol_id
= unit_die
->die_symbol
= xstrdup (name
);
7138 comdat_symbol_number
= 0;
7141 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
7144 is_type_die (dw_die_ref die
)
7146 switch (die
->die_tag
)
7148 case DW_TAG_array_type
:
7149 case DW_TAG_class_type
:
7150 case DW_TAG_interface_type
:
7151 case DW_TAG_enumeration_type
:
7152 case DW_TAG_pointer_type
:
7153 case DW_TAG_reference_type
:
7154 case DW_TAG_string_type
:
7155 case DW_TAG_structure_type
:
7156 case DW_TAG_subroutine_type
:
7157 case DW_TAG_union_type
:
7158 case DW_TAG_ptr_to_member_type
:
7159 case DW_TAG_set_type
:
7160 case DW_TAG_subrange_type
:
7161 case DW_TAG_base_type
:
7162 case DW_TAG_const_type
:
7163 case DW_TAG_file_type
:
7164 case DW_TAG_packed_type
:
7165 case DW_TAG_volatile_type
:
7166 case DW_TAG_typedef
:
7173 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
7174 Basically, we want to choose the bits that are likely to be shared between
7175 compilations (types) and leave out the bits that are specific to individual
7176 compilations (functions). */
7179 is_comdat_die (dw_die_ref c
)
7181 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
7182 we do for stabs. The advantage is a greater likelihood of sharing between
7183 objects that don't include headers in the same order (and therefore would
7184 put the base types in a different comdat). jason 8/28/00 */
7186 if (c
->die_tag
== DW_TAG_base_type
)
7189 if (c
->die_tag
== DW_TAG_pointer_type
7190 || c
->die_tag
== DW_TAG_reference_type
7191 || c
->die_tag
== DW_TAG_const_type
7192 || c
->die_tag
== DW_TAG_volatile_type
)
7194 dw_die_ref t
= get_AT_ref (c
, DW_AT_type
);
7196 return t
? is_comdat_die (t
) : 0;
7199 return is_type_die (c
);
7202 /* Returns 1 iff C is the sort of DIE that might be referred to from another
7203 compilation unit. */
7206 is_symbol_die (dw_die_ref c
)
7208 return (is_type_die (c
)
7209 || (get_AT (c
, DW_AT_declaration
)
7210 && !get_AT (c
, DW_AT_specification
))
7211 || c
->die_tag
== DW_TAG_namespace
7212 || c
->die_tag
== DW_TAG_module
);
7216 gen_internal_sym (const char *prefix
)
7220 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, label_num
++);
7221 return xstrdup (buf
);
7224 /* Assign symbols to all worthy DIEs under DIE. */
7227 assign_symbol_names (dw_die_ref die
)
7231 if (is_symbol_die (die
))
7233 if (comdat_symbol_id
)
7235 char *p
= XALLOCAVEC (char, strlen (comdat_symbol_id
) + 64);
7237 sprintf (p
, "%s.%s.%x", DIE_LABEL_PREFIX
,
7238 comdat_symbol_id
, comdat_symbol_number
++);
7239 die
->die_symbol
= xstrdup (p
);
7242 die
->die_symbol
= gen_internal_sym ("LDIE");
7245 FOR_EACH_CHILD (die
, c
, assign_symbol_names (c
));
7248 struct cu_hash_table_entry
7251 unsigned min_comdat_num
, max_comdat_num
;
7252 struct cu_hash_table_entry
*next
;
7255 /* Routines to manipulate hash table of CUs. */
7257 htab_cu_hash (const void *of
)
7259 const struct cu_hash_table_entry
*const entry
=
7260 (const struct cu_hash_table_entry
*) of
;
7262 return htab_hash_string (entry
->cu
->die_symbol
);
7266 htab_cu_eq (const void *of1
, const void *of2
)
7268 const struct cu_hash_table_entry
*const entry1
=
7269 (const struct cu_hash_table_entry
*) of1
;
7270 const struct die_struct
*const entry2
= (const struct die_struct
*) of2
;
7272 return !strcmp (entry1
->cu
->die_symbol
, entry2
->die_symbol
);
7276 htab_cu_del (void *what
)
7278 struct cu_hash_table_entry
*next
,
7279 *entry
= (struct cu_hash_table_entry
*) what
;
7289 /* Check whether we have already seen this CU and set up SYM_NUM
7292 check_duplicate_cu (dw_die_ref cu
, htab_t htable
, unsigned int *sym_num
)
7294 struct cu_hash_table_entry dummy
;
7295 struct cu_hash_table_entry
**slot
, *entry
, *last
= &dummy
;
7297 dummy
.max_comdat_num
= 0;
7299 slot
= (struct cu_hash_table_entry
**)
7300 htab_find_slot_with_hash (htable
, cu
, htab_hash_string (cu
->die_symbol
),
7304 for (; entry
; last
= entry
, entry
= entry
->next
)
7306 if (same_die_p_wrap (cu
, entry
->cu
))
7312 *sym_num
= entry
->min_comdat_num
;
7316 entry
= XCNEW (struct cu_hash_table_entry
);
7318 entry
->min_comdat_num
= *sym_num
= last
->max_comdat_num
;
7319 entry
->next
= *slot
;
7325 /* Record SYM_NUM to record of CU in HTABLE. */
7327 record_comdat_symbol_number (dw_die_ref cu
, htab_t htable
, unsigned int sym_num
)
7329 struct cu_hash_table_entry
**slot
, *entry
;
7331 slot
= (struct cu_hash_table_entry
**)
7332 htab_find_slot_with_hash (htable
, cu
, htab_hash_string (cu
->die_symbol
),
7336 entry
->max_comdat_num
= sym_num
;
7339 /* Traverse the DIE (which is always comp_unit_die), and set up
7340 additional compilation units for each of the include files we see
7341 bracketed by BINCL/EINCL. */
7344 break_out_includes (dw_die_ref die
)
7347 dw_die_ref unit
= NULL
;
7348 limbo_die_node
*node
, **pnode
;
7349 htab_t cu_hash_table
;
7353 dw_die_ref prev
= c
;
7355 while (c
->die_tag
== DW_TAG_GNU_BINCL
|| c
->die_tag
== DW_TAG_GNU_EINCL
7356 || (unit
&& is_comdat_die (c
)))
7358 dw_die_ref next
= c
->die_sib
;
7360 /* This DIE is for a secondary CU; remove it from the main one. */
7361 remove_child_with_prev (c
, prev
);
7363 if (c
->die_tag
== DW_TAG_GNU_BINCL
)
7364 unit
= push_new_compile_unit (unit
, c
);
7365 else if (c
->die_tag
== DW_TAG_GNU_EINCL
)
7366 unit
= pop_compile_unit (unit
);
7368 add_child_die (unit
, c
);
7370 if (c
== die
->die_child
)
7373 } while (c
!= die
->die_child
);
7376 /* We can only use this in debugging, since the frontend doesn't check
7377 to make sure that we leave every include file we enter. */
7381 assign_symbol_names (die
);
7382 cu_hash_table
= htab_create (10, htab_cu_hash
, htab_cu_eq
, htab_cu_del
);
7383 for (node
= limbo_die_list
, pnode
= &limbo_die_list
;
7389 compute_section_prefix (node
->die
);
7390 is_dupl
= check_duplicate_cu (node
->die
, cu_hash_table
,
7391 &comdat_symbol_number
);
7392 assign_symbol_names (node
->die
);
7394 *pnode
= node
->next
;
7397 pnode
= &node
->next
;
7398 record_comdat_symbol_number (node
->die
, cu_hash_table
,
7399 comdat_symbol_number
);
7402 htab_delete (cu_hash_table
);
7405 /* Traverse the DIE and add a sibling attribute if it may have the
7406 effect of speeding up access to siblings. To save some space,
7407 avoid generating sibling attributes for DIE's without children. */
7410 add_sibling_attributes (dw_die_ref die
)
7414 if (! die
->die_child
)
7417 if (die
->die_parent
&& die
!= die
->die_parent
->die_child
)
7418 add_AT_die_ref (die
, DW_AT_sibling
, die
->die_sib
);
7420 FOR_EACH_CHILD (die
, c
, add_sibling_attributes (c
));
7423 /* Output all location lists for the DIE and its children. */
7426 output_location_lists (dw_die_ref die
)
7432 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
7433 if (AT_class (a
) == dw_val_class_loc_list
)
7434 output_loc_list (AT_loc_list (a
));
7436 FOR_EACH_CHILD (die
, c
, output_location_lists (c
));
7439 /* The format of each DIE (and its attribute value pairs) is encoded in an
7440 abbreviation table. This routine builds the abbreviation table and assigns
7441 a unique abbreviation id for each abbreviation entry. The children of each
7442 die are visited recursively. */
7445 build_abbrev_table (dw_die_ref die
)
7447 unsigned long abbrev_id
;
7448 unsigned int n_alloc
;
7453 /* Scan the DIE references, and mark as external any that refer to
7454 DIEs from other CUs (i.e. those which are not marked). */
7455 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
7456 if (AT_class (a
) == dw_val_class_die_ref
7457 && AT_ref (a
)->die_mark
== 0)
7459 gcc_assert (AT_ref (a
)->die_symbol
);
7461 set_AT_ref_external (a
, 1);
7464 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
7466 dw_die_ref abbrev
= abbrev_die_table
[abbrev_id
];
7467 dw_attr_ref die_a
, abbrev_a
;
7471 if (abbrev
->die_tag
!= die
->die_tag
)
7473 if ((abbrev
->die_child
!= NULL
) != (die
->die_child
!= NULL
))
7476 if (VEC_length (dw_attr_node
, abbrev
->die_attr
)
7477 != VEC_length (dw_attr_node
, die
->die_attr
))
7480 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, die_a
); ix
++)
7482 abbrev_a
= VEC_index (dw_attr_node
, abbrev
->die_attr
, ix
);
7483 if ((abbrev_a
->dw_attr
!= die_a
->dw_attr
)
7484 || (value_format (abbrev_a
) != value_format (die_a
)))
7494 if (abbrev_id
>= abbrev_die_table_in_use
)
7496 if (abbrev_die_table_in_use
>= abbrev_die_table_allocated
)
7498 n_alloc
= abbrev_die_table_allocated
+ ABBREV_DIE_TABLE_INCREMENT
;
7499 abbrev_die_table
= GGC_RESIZEVEC (dw_die_ref
, abbrev_die_table
,
7502 memset (&abbrev_die_table
[abbrev_die_table_allocated
], 0,
7503 (n_alloc
- abbrev_die_table_allocated
) * sizeof (dw_die_ref
));
7504 abbrev_die_table_allocated
= n_alloc
;
7507 ++abbrev_die_table_in_use
;
7508 abbrev_die_table
[abbrev_id
] = die
;
7511 die
->die_abbrev
= abbrev_id
;
7512 FOR_EACH_CHILD (die
, c
, build_abbrev_table (c
));
7515 /* Return the power-of-two number of bytes necessary to represent VALUE. */
7518 constant_size (unsigned HOST_WIDE_INT value
)
7525 log
= floor_log2 (value
);
7528 log
= 1 << (floor_log2 (log
) + 1);
7533 /* Return the size of a DIE as it is represented in the
7534 .debug_info section. */
7536 static unsigned long
7537 size_of_die (dw_die_ref die
)
7539 unsigned long size
= 0;
7543 size
+= size_of_uleb128 (die
->die_abbrev
);
7544 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
7546 switch (AT_class (a
))
7548 case dw_val_class_addr
:
7549 size
+= DWARF2_ADDR_SIZE
;
7551 case dw_val_class_offset
:
7552 size
+= DWARF_OFFSET_SIZE
;
7554 case dw_val_class_loc
:
7556 unsigned long lsize
= size_of_locs (AT_loc (a
));
7559 size
+= constant_size (lsize
);
7563 case dw_val_class_loc_list
:
7564 size
+= DWARF_OFFSET_SIZE
;
7566 case dw_val_class_range_list
:
7567 size
+= DWARF_OFFSET_SIZE
;
7569 case dw_val_class_const
:
7570 size
+= size_of_sleb128 (AT_int (a
));
7572 case dw_val_class_unsigned_const
:
7573 size
+= constant_size (AT_unsigned (a
));
7575 case dw_val_class_long_long
:
7576 size
+= 1 + 2*HOST_BITS_PER_LONG
/HOST_BITS_PER_CHAR
; /* block */
7578 case dw_val_class_vec
:
7579 size
+= constant_size (a
->dw_attr_val
.v
.val_vec
.length
7580 * a
->dw_attr_val
.v
.val_vec
.elt_size
)
7581 + a
->dw_attr_val
.v
.val_vec
.length
7582 * a
->dw_attr_val
.v
.val_vec
.elt_size
; /* block */
7584 case dw_val_class_flag
:
7587 case dw_val_class_die_ref
:
7588 if (AT_ref_external (a
))
7589 size
+= DWARF2_ADDR_SIZE
;
7591 size
+= DWARF_OFFSET_SIZE
;
7593 case dw_val_class_fde_ref
:
7594 size
+= DWARF_OFFSET_SIZE
;
7596 case dw_val_class_lbl_id
:
7597 size
+= DWARF2_ADDR_SIZE
;
7599 case dw_val_class_lineptr
:
7600 case dw_val_class_macptr
:
7601 size
+= DWARF_OFFSET_SIZE
;
7603 case dw_val_class_str
:
7604 if (AT_string_form (a
) == DW_FORM_strp
)
7605 size
+= DWARF_OFFSET_SIZE
;
7607 size
+= strlen (a
->dw_attr_val
.v
.val_str
->str
) + 1;
7609 case dw_val_class_file
:
7610 size
+= constant_size (maybe_emit_file (a
->dw_attr_val
.v
.val_file
));
7620 /* Size the debugging information associated with a given DIE. Visits the
7621 DIE's children recursively. Updates the global variable next_die_offset, on
7622 each time through. Uses the current value of next_die_offset to update the
7623 die_offset field in each DIE. */
7626 calc_die_sizes (dw_die_ref die
)
7630 die
->die_offset
= next_die_offset
;
7631 next_die_offset
+= size_of_die (die
);
7633 FOR_EACH_CHILD (die
, c
, calc_die_sizes (c
));
7635 if (die
->die_child
!= NULL
)
7636 /* Count the null byte used to terminate sibling lists. */
7637 next_die_offset
+= 1;
7640 /* Set the marks for a die and its children. We do this so
7641 that we know whether or not a reference needs to use FORM_ref_addr; only
7642 DIEs in the same CU will be marked. We used to clear out the offset
7643 and use that as the flag, but ran into ordering problems. */
7646 mark_dies (dw_die_ref die
)
7650 gcc_assert (!die
->die_mark
);
7653 FOR_EACH_CHILD (die
, c
, mark_dies (c
));
7656 /* Clear the marks for a die and its children. */
7659 unmark_dies (dw_die_ref die
)
7663 gcc_assert (die
->die_mark
);
7666 FOR_EACH_CHILD (die
, c
, unmark_dies (c
));
7669 /* Clear the marks for a die, its children and referred dies. */
7672 unmark_all_dies (dw_die_ref die
)
7682 FOR_EACH_CHILD (die
, c
, unmark_all_dies (c
));
7684 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
7685 if (AT_class (a
) == dw_val_class_die_ref
)
7686 unmark_all_dies (AT_ref (a
));
7689 /* Return the size of the .debug_pubnames or .debug_pubtypes table
7690 generated for the compilation unit. */
7692 static unsigned long
7693 size_of_pubnames (VEC (pubname_entry
, gc
) * names
)
7699 size
= DWARF_PUBNAMES_HEADER_SIZE
;
7700 for (i
= 0; VEC_iterate (pubname_entry
, names
, i
, p
); i
++)
7701 if (names
!= pubtype_table
7702 || p
->die
->die_offset
!= 0
7703 || !flag_eliminate_unused_debug_types
)
7704 size
+= strlen (p
->name
) + DWARF_OFFSET_SIZE
+ 1;
7706 size
+= DWARF_OFFSET_SIZE
;
7710 /* Return the size of the information in the .debug_aranges section. */
7712 static unsigned long
7713 size_of_aranges (void)
7717 size
= DWARF_ARANGES_HEADER_SIZE
;
7719 /* Count the address/length pair for this compilation unit. */
7720 if (text_section_used
)
7721 size
+= 2 * DWARF2_ADDR_SIZE
;
7722 if (cold_text_section_used
)
7723 size
+= 2 * DWARF2_ADDR_SIZE
;
7724 size
+= 2 * DWARF2_ADDR_SIZE
* arange_table_in_use
;
7726 /* Count the two zero words used to terminated the address range table. */
7727 size
+= 2 * DWARF2_ADDR_SIZE
;
7731 /* Select the encoding of an attribute value. */
7733 static enum dwarf_form
7734 value_format (dw_attr_ref a
)
7736 switch (a
->dw_attr_val
.val_class
)
7738 case dw_val_class_addr
:
7739 return DW_FORM_addr
;
7740 case dw_val_class_range_list
:
7741 case dw_val_class_offset
:
7742 case dw_val_class_loc_list
:
7743 switch (DWARF_OFFSET_SIZE
)
7746 return DW_FORM_data4
;
7748 return DW_FORM_data8
;
7752 case dw_val_class_loc
:
7753 switch (constant_size (size_of_locs (AT_loc (a
))))
7756 return DW_FORM_block1
;
7758 return DW_FORM_block2
;
7762 case dw_val_class_const
:
7763 return DW_FORM_sdata
;
7764 case dw_val_class_unsigned_const
:
7765 switch (constant_size (AT_unsigned (a
)))
7768 return DW_FORM_data1
;
7770 return DW_FORM_data2
;
7772 return DW_FORM_data4
;
7774 return DW_FORM_data8
;
7778 case dw_val_class_long_long
:
7779 return DW_FORM_block1
;
7780 case dw_val_class_vec
:
7781 switch (constant_size (a
->dw_attr_val
.v
.val_vec
.length
7782 * a
->dw_attr_val
.v
.val_vec
.elt_size
))
7785 return DW_FORM_block1
;
7787 return DW_FORM_block2
;
7789 return DW_FORM_block4
;
7793 case dw_val_class_flag
:
7794 return DW_FORM_flag
;
7795 case dw_val_class_die_ref
:
7796 if (AT_ref_external (a
))
7797 return DW_FORM_ref_addr
;
7800 case dw_val_class_fde_ref
:
7801 return DW_FORM_data
;
7802 case dw_val_class_lbl_id
:
7803 return DW_FORM_addr
;
7804 case dw_val_class_lineptr
:
7805 case dw_val_class_macptr
:
7806 return DW_FORM_data
;
7807 case dw_val_class_str
:
7808 return AT_string_form (a
);
7809 case dw_val_class_file
:
7810 switch (constant_size (maybe_emit_file (a
->dw_attr_val
.v
.val_file
)))
7813 return DW_FORM_data1
;
7815 return DW_FORM_data2
;
7817 return DW_FORM_data4
;
7827 /* Output the encoding of an attribute value. */
7830 output_value_format (dw_attr_ref a
)
7832 enum dwarf_form form
= value_format (a
);
7834 dw2_asm_output_data_uleb128 (form
, "(%s)", dwarf_form_name (form
));
7837 /* Output the .debug_abbrev section which defines the DIE abbreviation
7841 output_abbrev_section (void)
7843 unsigned long abbrev_id
;
7845 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
7847 dw_die_ref abbrev
= abbrev_die_table
[abbrev_id
];
7851 dw2_asm_output_data_uleb128 (abbrev_id
, "(abbrev code)");
7852 dw2_asm_output_data_uleb128 (abbrev
->die_tag
, "(TAG: %s)",
7853 dwarf_tag_name (abbrev
->die_tag
));
7855 if (abbrev
->die_child
!= NULL
)
7856 dw2_asm_output_data (1, DW_children_yes
, "DW_children_yes");
7858 dw2_asm_output_data (1, DW_children_no
, "DW_children_no");
7860 for (ix
= 0; VEC_iterate (dw_attr_node
, abbrev
->die_attr
, ix
, a_attr
);
7863 dw2_asm_output_data_uleb128 (a_attr
->dw_attr
, "(%s)",
7864 dwarf_attr_name (a_attr
->dw_attr
));
7865 output_value_format (a_attr
);
7868 dw2_asm_output_data (1, 0, NULL
);
7869 dw2_asm_output_data (1, 0, NULL
);
7872 /* Terminate the table. */
7873 dw2_asm_output_data (1, 0, NULL
);
7876 /* Output a symbol we can use to refer to this DIE from another CU. */
7879 output_die_symbol (dw_die_ref die
)
7881 char *sym
= die
->die_symbol
;
7886 if (strncmp (sym
, DIE_LABEL_PREFIX
, sizeof (DIE_LABEL_PREFIX
) - 1) == 0)
7887 /* We make these global, not weak; if the target doesn't support
7888 .linkonce, it doesn't support combining the sections, so debugging
7890 targetm
.asm_out
.globalize_label (asm_out_file
, sym
);
7892 ASM_OUTPUT_LABEL (asm_out_file
, sym
);
7895 /* Return a new location list, given the begin and end range, and the
7896 expression. gensym tells us whether to generate a new internal symbol for
7897 this location list node, which is done for the head of the list only. */
7899 static inline dw_loc_list_ref
7900 new_loc_list (dw_loc_descr_ref expr
, const char *begin
, const char *end
,
7901 const char *section
, unsigned int gensym
)
7903 dw_loc_list_ref retlist
= GGC_CNEW (dw_loc_list_node
);
7905 retlist
->begin
= begin
;
7907 retlist
->expr
= expr
;
7908 retlist
->section
= section
;
7910 retlist
->ll_symbol
= gen_internal_sym ("LLST");
7915 /* Add a location description expression to a location list. */
7918 add_loc_descr_to_loc_list (dw_loc_list_ref
*list_head
, dw_loc_descr_ref descr
,
7919 const char *begin
, const char *end
,
7920 const char *section
)
7924 /* Find the end of the chain. */
7925 for (d
= list_head
; (*d
) != NULL
; d
= &(*d
)->dw_loc_next
)
7928 /* Add a new location list node to the list. */
7929 *d
= new_loc_list (descr
, begin
, end
, section
, 0);
7932 /* Output the location list given to us. */
7935 output_loc_list (dw_loc_list_ref list_head
)
7937 dw_loc_list_ref curr
= list_head
;
7939 ASM_OUTPUT_LABEL (asm_out_file
, list_head
->ll_symbol
);
7941 /* Walk the location list, and output each range + expression. */
7942 for (curr
= list_head
; curr
!= NULL
; curr
= curr
->dw_loc_next
)
7945 /* Don't output an entry that starts and ends at the same address. */
7946 if (strcmp (curr
->begin
, curr
->end
) == 0)
7948 if (!have_multiple_function_sections
)
7950 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->begin
, curr
->section
,
7951 "Location list begin address (%s)",
7952 list_head
->ll_symbol
);
7953 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->end
, curr
->section
,
7954 "Location list end address (%s)",
7955 list_head
->ll_symbol
);
7959 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->begin
,
7960 "Location list begin address (%s)",
7961 list_head
->ll_symbol
);
7962 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->end
,
7963 "Location list end address (%s)",
7964 list_head
->ll_symbol
);
7966 size
= size_of_locs (curr
->expr
);
7968 /* Output the block length for this list of location operations. */
7969 gcc_assert (size
<= 0xffff);
7970 dw2_asm_output_data (2, size
, "%s", "Location expression size");
7972 output_loc_sequence (curr
->expr
);
7975 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
7976 "Location list terminator begin (%s)",
7977 list_head
->ll_symbol
);
7978 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
7979 "Location list terminator end (%s)",
7980 list_head
->ll_symbol
);
7983 /* Output the DIE and its attributes. Called recursively to generate
7984 the definitions of each child DIE. */
7987 output_die (dw_die_ref die
)
7994 /* If someone in another CU might refer to us, set up a symbol for
7995 them to point to. */
7996 if (die
->die_symbol
)
7997 output_die_symbol (die
);
7999 dw2_asm_output_data_uleb128 (die
->die_abbrev
, "(DIE (0x%lx) %s)",
8000 (unsigned long)die
->die_offset
,
8001 dwarf_tag_name (die
->die_tag
));
8003 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
8005 const char *name
= dwarf_attr_name (a
->dw_attr
);
8007 switch (AT_class (a
))
8009 case dw_val_class_addr
:
8010 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, AT_addr (a
), "%s", name
);
8013 case dw_val_class_offset
:
8014 dw2_asm_output_data (DWARF_OFFSET_SIZE
, a
->dw_attr_val
.v
.val_offset
,
8018 case dw_val_class_range_list
:
8020 char *p
= strchr (ranges_section_label
, '\0');
8022 sprintf (p
, "+" HOST_WIDE_INT_PRINT_HEX
,
8023 a
->dw_attr_val
.v
.val_offset
);
8024 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, ranges_section_label
,
8025 debug_ranges_section
, "%s", name
);
8030 case dw_val_class_loc
:
8031 size
= size_of_locs (AT_loc (a
));
8033 /* Output the block length for this list of location operations. */
8034 dw2_asm_output_data (constant_size (size
), size
, "%s", name
);
8036 output_loc_sequence (AT_loc (a
));
8039 case dw_val_class_const
:
8040 /* ??? It would be slightly more efficient to use a scheme like is
8041 used for unsigned constants below, but gdb 4.x does not sign
8042 extend. Gdb 5.x does sign extend. */
8043 dw2_asm_output_data_sleb128 (AT_int (a
), "%s", name
);
8046 case dw_val_class_unsigned_const
:
8047 dw2_asm_output_data (constant_size (AT_unsigned (a
)),
8048 AT_unsigned (a
), "%s", name
);
8051 case dw_val_class_long_long
:
8053 unsigned HOST_WIDE_INT first
, second
;
8055 dw2_asm_output_data (1,
8056 2 * HOST_BITS_PER_LONG
/ HOST_BITS_PER_CHAR
,
8059 if (WORDS_BIG_ENDIAN
)
8061 first
= a
->dw_attr_val
.v
.val_long_long
.hi
;
8062 second
= a
->dw_attr_val
.v
.val_long_long
.low
;
8066 first
= a
->dw_attr_val
.v
.val_long_long
.low
;
8067 second
= a
->dw_attr_val
.v
.val_long_long
.hi
;
8070 dw2_asm_output_data (HOST_BITS_PER_LONG
/ HOST_BITS_PER_CHAR
,
8071 first
, "long long constant");
8072 dw2_asm_output_data (HOST_BITS_PER_LONG
/ HOST_BITS_PER_CHAR
,
8077 case dw_val_class_vec
:
8079 unsigned int elt_size
= a
->dw_attr_val
.v
.val_vec
.elt_size
;
8080 unsigned int len
= a
->dw_attr_val
.v
.val_vec
.length
;
8084 dw2_asm_output_data (constant_size (len
* elt_size
),
8085 len
* elt_size
, "%s", name
);
8086 if (elt_size
> sizeof (HOST_WIDE_INT
))
8091 for (i
= 0, p
= a
->dw_attr_val
.v
.val_vec
.array
;
8094 dw2_asm_output_data (elt_size
, extract_int (p
, elt_size
),
8095 "fp or vector constant word %u", i
);
8099 case dw_val_class_flag
:
8100 dw2_asm_output_data (1, AT_flag (a
), "%s", name
);
8103 case dw_val_class_loc_list
:
8105 char *sym
= AT_loc_list (a
)->ll_symbol
;
8108 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, sym
, debug_loc_section
,
8113 case dw_val_class_die_ref
:
8114 if (AT_ref_external (a
))
8116 char *sym
= AT_ref (a
)->die_symbol
;
8119 dw2_asm_output_offset (DWARF2_ADDR_SIZE
, sym
, debug_info_section
,
8124 gcc_assert (AT_ref (a
)->die_offset
);
8125 dw2_asm_output_data (DWARF_OFFSET_SIZE
, AT_ref (a
)->die_offset
,
8130 case dw_val_class_fde_ref
:
8134 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_LABEL
,
8135 a
->dw_attr_val
.v
.val_fde_index
* 2);
8136 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, l1
, debug_frame_section
,
8141 case dw_val_class_lbl_id
:
8142 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, AT_lbl (a
), "%s", name
);
8145 case dw_val_class_lineptr
:
8146 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, AT_lbl (a
),
8147 debug_line_section
, "%s", name
);
8150 case dw_val_class_macptr
:
8151 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, AT_lbl (a
),
8152 debug_macinfo_section
, "%s", name
);
8155 case dw_val_class_str
:
8156 if (AT_string_form (a
) == DW_FORM_strp
)
8157 dw2_asm_output_offset (DWARF_OFFSET_SIZE
,
8158 a
->dw_attr_val
.v
.val_str
->label
,
8160 "%s: \"%s\"", name
, AT_string (a
));
8162 dw2_asm_output_nstring (AT_string (a
), -1, "%s", name
);
8165 case dw_val_class_file
:
8167 int f
= maybe_emit_file (a
->dw_attr_val
.v
.val_file
);
8169 dw2_asm_output_data (constant_size (f
), f
, "%s (%s)", name
,
8170 a
->dw_attr_val
.v
.val_file
->filename
);
8179 FOR_EACH_CHILD (die
, c
, output_die (c
));
8181 /* Add null byte to terminate sibling list. */
8182 if (die
->die_child
!= NULL
)
8183 dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
8184 (unsigned long) die
->die_offset
);
8187 /* Output the compilation unit that appears at the beginning of the
8188 .debug_info section, and precedes the DIE descriptions. */
8191 output_compilation_unit_header (void)
8193 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
8194 dw2_asm_output_data (4, 0xffffffff,
8195 "Initial length escape value indicating 64-bit DWARF extension");
8196 dw2_asm_output_data (DWARF_OFFSET_SIZE
,
8197 next_die_offset
- DWARF_INITIAL_LENGTH_SIZE
,
8198 "Length of Compilation Unit Info");
8199 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF version number");
8200 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, abbrev_section_label
,
8201 debug_abbrev_section
,
8202 "Offset Into Abbrev. Section");
8203 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Pointer Size (in bytes)");
8206 /* Output the compilation unit DIE and its children. */
8209 output_comp_unit (dw_die_ref die
, int output_if_empty
)
8211 const char *secname
;
8214 /* Unless we are outputting main CU, we may throw away empty ones. */
8215 if (!output_if_empty
&& die
->die_child
== NULL
)
8218 /* Even if there are no children of this DIE, we must output the information
8219 about the compilation unit. Otherwise, on an empty translation unit, we
8220 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
8221 will then complain when examining the file. First mark all the DIEs in
8222 this CU so we know which get local refs. */
8225 build_abbrev_table (die
);
8227 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
8228 next_die_offset
= DWARF_COMPILE_UNIT_HEADER_SIZE
;
8229 calc_die_sizes (die
);
8231 oldsym
= die
->die_symbol
;
8234 tmp
= XALLOCAVEC (char, strlen (oldsym
) + 24);
8236 sprintf (tmp
, ".gnu.linkonce.wi.%s", oldsym
);
8238 die
->die_symbol
= NULL
;
8239 switch_to_section (get_section (secname
, SECTION_DEBUG
, NULL
));
8242 switch_to_section (debug_info_section
);
8244 /* Output debugging information. */
8245 output_compilation_unit_header ();
8248 /* Leave the marks on the main CU, so we can check them in
8253 die
->die_symbol
= oldsym
;
8257 /* Return the DWARF2/3 pubname associated with a decl. */
8260 dwarf2_name (tree decl
, int scope
)
8262 return lang_hooks
.dwarf_name (decl
, scope
? 1 : 0);
8265 /* Add a new entry to .debug_pubnames if appropriate. */
8268 add_pubname_string (const char *str
, dw_die_ref die
)
8273 e
.name
= xstrdup (str
);
8274 VEC_safe_push (pubname_entry
, gc
, pubname_table
, &e
);
8278 add_pubname (tree decl
, dw_die_ref die
)
8281 if (TREE_PUBLIC (decl
))
8282 add_pubname_string (dwarf2_name (decl
, 1), die
);
8285 /* Add a new entry to .debug_pubtypes if appropriate. */
8288 add_pubtype (tree decl
, dw_die_ref die
)
8293 if ((TREE_PUBLIC (decl
)
8294 || die
->die_parent
== comp_unit_die
)
8295 && (die
->die_tag
== DW_TAG_typedef
|| COMPLETE_TYPE_P (decl
)))
8300 if (TYPE_NAME (decl
))
8302 if (TREE_CODE (TYPE_NAME (decl
)) == IDENTIFIER_NODE
)
8303 e
.name
= IDENTIFIER_POINTER (TYPE_NAME (decl
));
8304 else if (TREE_CODE (TYPE_NAME (decl
)) == TYPE_DECL
8305 && DECL_NAME (TYPE_NAME (decl
)))
8306 e
.name
= IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (decl
)));
8308 e
.name
= xstrdup ((const char *) get_AT_string (die
, DW_AT_name
));
8312 e
.name
= xstrdup (dwarf2_name (decl
, 1));
8314 /* If we don't have a name for the type, there's no point in adding
8316 if (e
.name
&& e
.name
[0] != '\0')
8317 VEC_safe_push (pubname_entry
, gc
, pubtype_table
, &e
);
8321 /* Output the public names table used to speed up access to externally
8322 visible names; or the public types table used to find type definitions. */
8325 output_pubnames (VEC (pubname_entry
, gc
) * names
)
8328 unsigned long pubnames_length
= size_of_pubnames (names
);
8331 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
8332 dw2_asm_output_data (4, 0xffffffff,
8333 "Initial length escape value indicating 64-bit DWARF extension");
8334 if (names
== pubname_table
)
8335 dw2_asm_output_data (DWARF_OFFSET_SIZE
, pubnames_length
,
8336 "Length of Public Names Info");
8338 dw2_asm_output_data (DWARF_OFFSET_SIZE
, pubnames_length
,
8339 "Length of Public Type Names Info");
8340 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF Version");
8341 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
8343 "Offset of Compilation Unit Info");
8344 dw2_asm_output_data (DWARF_OFFSET_SIZE
, next_die_offset
,
8345 "Compilation Unit Length");
8347 for (i
= 0; VEC_iterate (pubname_entry
, names
, i
, pub
); i
++)
8349 /* We shouldn't see pubnames for DIEs outside of the main CU. */
8350 if (names
== pubname_table
)
8351 gcc_assert (pub
->die
->die_mark
);
8353 if (names
!= pubtype_table
8354 || pub
->die
->die_offset
!= 0
8355 || !flag_eliminate_unused_debug_types
)
8357 dw2_asm_output_data (DWARF_OFFSET_SIZE
, pub
->die
->die_offset
,
8360 dw2_asm_output_nstring (pub
->name
, -1, "external name");
8364 dw2_asm_output_data (DWARF_OFFSET_SIZE
, 0, NULL
);
8367 /* Add a new entry to .debug_aranges if appropriate. */
8370 add_arange (tree decl
, dw_die_ref die
)
8372 if (! DECL_SECTION_NAME (decl
))
8375 if (arange_table_in_use
== arange_table_allocated
)
8377 arange_table_allocated
+= ARANGE_TABLE_INCREMENT
;
8378 arange_table
= GGC_RESIZEVEC (dw_die_ref
, arange_table
,
8379 arange_table_allocated
);
8380 memset (arange_table
+ arange_table_in_use
, 0,
8381 ARANGE_TABLE_INCREMENT
* sizeof (dw_die_ref
));
8384 arange_table
[arange_table_in_use
++] = die
;
8387 /* Output the information that goes into the .debug_aranges table.
8388 Namely, define the beginning and ending address range of the
8389 text section generated for this compilation unit. */
8392 output_aranges (void)
8395 unsigned long aranges_length
= size_of_aranges ();
8397 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
8398 dw2_asm_output_data (4, 0xffffffff,
8399 "Initial length escape value indicating 64-bit DWARF extension");
8400 dw2_asm_output_data (DWARF_OFFSET_SIZE
, aranges_length
,
8401 "Length of Address Ranges Info");
8402 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF Version");
8403 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
8405 "Offset of Compilation Unit Info");
8406 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Size of Address");
8407 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
8409 /* We need to align to twice the pointer size here. */
8410 if (DWARF_ARANGES_PAD_SIZE
)
8412 /* Pad using a 2 byte words so that padding is correct for any
8414 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
8415 2 * DWARF2_ADDR_SIZE
);
8416 for (i
= 2; i
< (unsigned) DWARF_ARANGES_PAD_SIZE
; i
+= 2)
8417 dw2_asm_output_data (2, 0, NULL
);
8420 /* It is necessary not to output these entries if the sections were
8421 not used; if the sections were not used, the length will be 0 and
8422 the address may end up as 0 if the section is discarded by ld
8423 --gc-sections, leaving an invalid (0, 0) entry that can be
8424 confused with the terminator. */
8425 if (text_section_used
)
8427 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, text_section_label
, "Address");
8428 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, text_end_label
,
8429 text_section_label
, "Length");
8431 if (cold_text_section_used
)
8433 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, cold_text_section_label
,
8435 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, cold_end_label
,
8436 cold_text_section_label
, "Length");
8439 for (i
= 0; i
< arange_table_in_use
; i
++)
8441 dw_die_ref die
= arange_table
[i
];
8443 /* We shouldn't see aranges for DIEs outside of the main CU. */
8444 gcc_assert (die
->die_mark
);
8446 if (die
->die_tag
== DW_TAG_subprogram
)
8448 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, get_AT_low_pc (die
),
8450 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, get_AT_hi_pc (die
),
8451 get_AT_low_pc (die
), "Length");
8455 /* A static variable; extract the symbol from DW_AT_location.
8456 Note that this code isn't currently hit, as we only emit
8457 aranges for functions (jason 9/23/99). */
8458 dw_attr_ref a
= get_AT (die
, DW_AT_location
);
8459 dw_loc_descr_ref loc
;
8461 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc
);
8464 gcc_assert (loc
->dw_loc_opc
== DW_OP_addr
);
8466 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
,
8467 loc
->dw_loc_oprnd1
.v
.val_addr
, "Address");
8468 dw2_asm_output_data (DWARF2_ADDR_SIZE
,
8469 get_AT_unsigned (die
, DW_AT_byte_size
),
8474 /* Output the terminator words. */
8475 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
8476 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
8479 /* Add a new entry to .debug_ranges. Return the offset at which it
8483 add_ranges_num (int num
)
8485 unsigned int in_use
= ranges_table_in_use
;
8487 if (in_use
== ranges_table_allocated
)
8489 ranges_table_allocated
+= RANGES_TABLE_INCREMENT
;
8490 ranges_table
= GGC_RESIZEVEC (struct dw_ranges_struct
, ranges_table
,
8491 ranges_table_allocated
);
8492 memset (ranges_table
+ ranges_table_in_use
, 0,
8493 RANGES_TABLE_INCREMENT
* sizeof (struct dw_ranges_struct
));
8496 ranges_table
[in_use
].num
= num
;
8497 ranges_table_in_use
= in_use
+ 1;
8499 return in_use
* 2 * DWARF2_ADDR_SIZE
;
8502 /* Add a new entry to .debug_ranges corresponding to a block, or a
8503 range terminator if BLOCK is NULL. */
8506 add_ranges (const_tree block
)
8508 return add_ranges_num (block
? BLOCK_NUMBER (block
) : 0);
8511 /* Add a new entry to .debug_ranges corresponding to a pair of
8515 add_ranges_by_labels (const char *begin
, const char *end
)
8517 unsigned int in_use
= ranges_by_label_in_use
;
8519 if (in_use
== ranges_by_label_allocated
)
8521 ranges_by_label_allocated
+= RANGES_TABLE_INCREMENT
;
8522 ranges_by_label
= GGC_RESIZEVEC (struct dw_ranges_by_label_struct
,
8524 ranges_by_label_allocated
);
8525 memset (ranges_by_label
+ ranges_by_label_in_use
, 0,
8526 RANGES_TABLE_INCREMENT
8527 * sizeof (struct dw_ranges_by_label_struct
));
8530 ranges_by_label
[in_use
].begin
= begin
;
8531 ranges_by_label
[in_use
].end
= end
;
8532 ranges_by_label_in_use
= in_use
+ 1;
8534 return add_ranges_num (-(int)in_use
- 1);
8538 output_ranges (void)
8541 static const char *const start_fmt
= "Offset 0x%x";
8542 const char *fmt
= start_fmt
;
8544 for (i
= 0; i
< ranges_table_in_use
; i
++)
8546 int block_num
= ranges_table
[i
].num
;
8550 char blabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
8551 char elabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
8553 ASM_GENERATE_INTERNAL_LABEL (blabel
, BLOCK_BEGIN_LABEL
, block_num
);
8554 ASM_GENERATE_INTERNAL_LABEL (elabel
, BLOCK_END_LABEL
, block_num
);
8556 /* If all code is in the text section, then the compilation
8557 unit base address defaults to DW_AT_low_pc, which is the
8558 base of the text section. */
8559 if (!have_multiple_function_sections
)
8561 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, blabel
,
8563 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
8564 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, elabel
,
8565 text_section_label
, NULL
);
8568 /* Otherwise, the compilation unit base address is zero,
8569 which allows us to use absolute addresses, and not worry
8570 about whether the target supports cross-section
8574 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, blabel
,
8575 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
8576 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, elabel
, NULL
);
8582 /* Negative block_num stands for an index into ranges_by_label. */
8583 else if (block_num
< 0)
8585 int lab_idx
= - block_num
- 1;
8587 if (!have_multiple_function_sections
)
8591 /* If we ever use add_ranges_by_labels () for a single
8592 function section, all we have to do is to take out
8594 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
8595 ranges_by_label
[lab_idx
].begin
,
8597 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
8598 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
8599 ranges_by_label
[lab_idx
].end
,
8600 text_section_label
, NULL
);
8605 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
8606 ranges_by_label
[lab_idx
].begin
,
8607 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
8608 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
8609 ranges_by_label
[lab_idx
].end
,
8615 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
8616 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
8622 /* Data structure containing information about input files. */
8625 const char *path
; /* Complete file name. */
8626 const char *fname
; /* File name part. */
8627 int length
; /* Length of entire string. */
8628 struct dwarf_file_data
* file_idx
; /* Index in input file table. */
8629 int dir_idx
; /* Index in directory table. */
8632 /* Data structure containing information about directories with source
8636 const char *path
; /* Path including directory name. */
8637 int length
; /* Path length. */
8638 int prefix
; /* Index of directory entry which is a prefix. */
8639 int count
; /* Number of files in this directory. */
8640 int dir_idx
; /* Index of directory used as base. */
8643 /* Callback function for file_info comparison. We sort by looking at
8644 the directories in the path. */
8647 file_info_cmp (const void *p1
, const void *p2
)
8649 const struct file_info
*const s1
= (const struct file_info
*) p1
;
8650 const struct file_info
*const s2
= (const struct file_info
*) p2
;
8651 const unsigned char *cp1
;
8652 const unsigned char *cp2
;
8654 /* Take care of file names without directories. We need to make sure that
8655 we return consistent values to qsort since some will get confused if
8656 we return the same value when identical operands are passed in opposite
8657 orders. So if neither has a directory, return 0 and otherwise return
8658 1 or -1 depending on which one has the directory. */
8659 if ((s1
->path
== s1
->fname
|| s2
->path
== s2
->fname
))
8660 return (s2
->path
== s2
->fname
) - (s1
->path
== s1
->fname
);
8662 cp1
= (const unsigned char *) s1
->path
;
8663 cp2
= (const unsigned char *) s2
->path
;
8669 /* Reached the end of the first path? If so, handle like above. */
8670 if ((cp1
== (const unsigned char *) s1
->fname
)
8671 || (cp2
== (const unsigned char *) s2
->fname
))
8672 return ((cp2
== (const unsigned char *) s2
->fname
)
8673 - (cp1
== (const unsigned char *) s1
->fname
));
8675 /* Character of current path component the same? */
8676 else if (*cp1
!= *cp2
)
8681 struct file_name_acquire_data
8683 struct file_info
*files
;
8688 /* Traversal function for the hash table. */
8691 file_name_acquire (void ** slot
, void *data
)
8693 struct file_name_acquire_data
*fnad
= (struct file_name_acquire_data
*) data
;
8694 struct dwarf_file_data
*d
= (struct dwarf_file_data
*) *slot
;
8695 struct file_info
*fi
;
8698 gcc_assert (fnad
->max_files
>= d
->emitted_number
);
8700 if (! d
->emitted_number
)
8703 gcc_assert (fnad
->max_files
!= fnad
->used_files
);
8705 fi
= fnad
->files
+ fnad
->used_files
++;
8707 /* Skip all leading "./". */
8709 while (f
[0] == '.' && IS_DIR_SEPARATOR (f
[1]))
8712 /* Create a new array entry. */
8714 fi
->length
= strlen (f
);
8717 /* Search for the file name part. */
8718 f
= strrchr (f
, DIR_SEPARATOR
);
8719 #if defined (DIR_SEPARATOR_2)
8721 char *g
= strrchr (fi
->path
, DIR_SEPARATOR_2
);
8725 if (f
== NULL
|| f
< g
)
8731 fi
->fname
= f
== NULL
? fi
->path
: f
+ 1;
8735 /* Output the directory table and the file name table. We try to minimize
8736 the total amount of memory needed. A heuristic is used to avoid large
8737 slowdowns with many input files. */
8740 output_file_names (void)
8742 struct file_name_acquire_data fnad
;
8744 struct file_info
*files
;
8745 struct dir_info
*dirs
;
8754 if (!last_emitted_file
)
8756 dw2_asm_output_data (1, 0, "End directory table");
8757 dw2_asm_output_data (1, 0, "End file name table");
8761 numfiles
= last_emitted_file
->emitted_number
;
8763 /* Allocate the various arrays we need. */
8764 files
= XALLOCAVEC (struct file_info
, numfiles
);
8765 dirs
= XALLOCAVEC (struct dir_info
, numfiles
);
8768 fnad
.used_files
= 0;
8769 fnad
.max_files
= numfiles
;
8770 htab_traverse (file_table
, file_name_acquire
, &fnad
);
8771 gcc_assert (fnad
.used_files
== fnad
.max_files
);
8773 qsort (files
, numfiles
, sizeof (files
[0]), file_info_cmp
);
8775 /* Find all the different directories used. */
8776 dirs
[0].path
= files
[0].path
;
8777 dirs
[0].length
= files
[0].fname
- files
[0].path
;
8778 dirs
[0].prefix
= -1;
8780 dirs
[0].dir_idx
= 0;
8781 files
[0].dir_idx
= 0;
8784 for (i
= 1; i
< numfiles
; i
++)
8785 if (files
[i
].fname
- files
[i
].path
== dirs
[ndirs
- 1].length
8786 && memcmp (dirs
[ndirs
- 1].path
, files
[i
].path
,
8787 dirs
[ndirs
- 1].length
) == 0)
8789 /* Same directory as last entry. */
8790 files
[i
].dir_idx
= ndirs
- 1;
8791 ++dirs
[ndirs
- 1].count
;
8797 /* This is a new directory. */
8798 dirs
[ndirs
].path
= files
[i
].path
;
8799 dirs
[ndirs
].length
= files
[i
].fname
- files
[i
].path
;
8800 dirs
[ndirs
].count
= 1;
8801 dirs
[ndirs
].dir_idx
= ndirs
;
8802 files
[i
].dir_idx
= ndirs
;
8804 /* Search for a prefix. */
8805 dirs
[ndirs
].prefix
= -1;
8806 for (j
= 0; j
< ndirs
; j
++)
8807 if (dirs
[j
].length
< dirs
[ndirs
].length
8808 && dirs
[j
].length
> 1
8809 && (dirs
[ndirs
].prefix
== -1
8810 || dirs
[j
].length
> dirs
[dirs
[ndirs
].prefix
].length
)
8811 && memcmp (dirs
[j
].path
, dirs
[ndirs
].path
, dirs
[j
].length
) == 0)
8812 dirs
[ndirs
].prefix
= j
;
8817 /* Now to the actual work. We have to find a subset of the directories which
8818 allow expressing the file name using references to the directory table
8819 with the least amount of characters. We do not do an exhaustive search
8820 where we would have to check out every combination of every single
8821 possible prefix. Instead we use a heuristic which provides nearly optimal
8822 results in most cases and never is much off. */
8823 saved
= XALLOCAVEC (int, ndirs
);
8824 savehere
= XALLOCAVEC (int, ndirs
);
8826 memset (saved
, '\0', ndirs
* sizeof (saved
[0]));
8827 for (i
= 0; i
< ndirs
; i
++)
8832 /* We can always save some space for the current directory. But this
8833 does not mean it will be enough to justify adding the directory. */
8834 savehere
[i
] = dirs
[i
].length
;
8835 total
= (savehere
[i
] - saved
[i
]) * dirs
[i
].count
;
8837 for (j
= i
+ 1; j
< ndirs
; j
++)
8840 if (saved
[j
] < dirs
[i
].length
)
8842 /* Determine whether the dirs[i] path is a prefix of the
8847 while (k
!= -1 && k
!= (int) i
)
8852 /* Yes it is. We can possibly save some memory by
8853 writing the filenames in dirs[j] relative to
8855 savehere
[j
] = dirs
[i
].length
;
8856 total
+= (savehere
[j
] - saved
[j
]) * dirs
[j
].count
;
8861 /* Check whether we can save enough to justify adding the dirs[i]
8863 if (total
> dirs
[i
].length
+ 1)
8865 /* It's worthwhile adding. */
8866 for (j
= i
; j
< ndirs
; j
++)
8867 if (savehere
[j
] > 0)
8869 /* Remember how much we saved for this directory so far. */
8870 saved
[j
] = savehere
[j
];
8872 /* Remember the prefix directory. */
8873 dirs
[j
].dir_idx
= i
;
8878 /* Emit the directory name table. */
8880 idx_offset
= dirs
[0].length
> 0 ? 1 : 0;
8881 for (i
= 1 - idx_offset
; i
< ndirs
; i
++)
8882 dw2_asm_output_nstring (dirs
[i
].path
, dirs
[i
].length
- 1,
8883 "Directory Entry: 0x%x", i
+ idx_offset
);
8885 dw2_asm_output_data (1, 0, "End directory table");
8887 /* We have to emit them in the order of emitted_number since that's
8888 used in the debug info generation. To do this efficiently we
8889 generate a back-mapping of the indices first. */
8890 backmap
= XALLOCAVEC (int, numfiles
);
8891 for (i
= 0; i
< numfiles
; i
++)
8892 backmap
[files
[i
].file_idx
->emitted_number
- 1] = i
;
8894 /* Now write all the file names. */
8895 for (i
= 0; i
< numfiles
; i
++)
8897 int file_idx
= backmap
[i
];
8898 int dir_idx
= dirs
[files
[file_idx
].dir_idx
].dir_idx
;
8900 dw2_asm_output_nstring (files
[file_idx
].path
+ dirs
[dir_idx
].length
, -1,
8901 "File Entry: 0x%x", (unsigned) i
+ 1);
8903 /* Include directory index. */
8904 dw2_asm_output_data_uleb128 (dir_idx
+ idx_offset
, NULL
);
8906 /* Modification time. */
8907 dw2_asm_output_data_uleb128 (0, NULL
);
8909 /* File length in bytes. */
8910 dw2_asm_output_data_uleb128 (0, NULL
);
8913 dw2_asm_output_data (1, 0, "End file name table");
8917 /* Output the source line number correspondence information. This
8918 information goes into the .debug_line section. */
8921 output_line_info (void)
8923 char l1
[20], l2
[20], p1
[20], p2
[20];
8924 char line_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
8925 char prev_line_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
8928 unsigned long lt_index
;
8929 unsigned long current_line
;
8932 unsigned long current_file
;
8933 unsigned long function
;
8935 ASM_GENERATE_INTERNAL_LABEL (l1
, LINE_NUMBER_BEGIN_LABEL
, 0);
8936 ASM_GENERATE_INTERNAL_LABEL (l2
, LINE_NUMBER_END_LABEL
, 0);
8937 ASM_GENERATE_INTERNAL_LABEL (p1
, LN_PROLOG_AS_LABEL
, 0);
8938 ASM_GENERATE_INTERNAL_LABEL (p2
, LN_PROLOG_END_LABEL
, 0);
8940 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
8941 dw2_asm_output_data (4, 0xffffffff,
8942 "Initial length escape value indicating 64-bit DWARF extension");
8943 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, l2
, l1
,
8944 "Length of Source Line Info");
8945 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
8947 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF Version");
8948 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, p2
, p1
, "Prolog Length");
8949 ASM_OUTPUT_LABEL (asm_out_file
, p1
);
8951 /* Define the architecture-dependent minimum instruction length (in
8952 bytes). In this implementation of DWARF, this field is used for
8953 information purposes only. Since GCC generates assembly language,
8954 we have no a priori knowledge of how many instruction bytes are
8955 generated for each source line, and therefore can use only the
8956 DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
8957 commands. Accordingly, we fix this as `1', which is "correct
8958 enough" for all architectures, and don't let the target override. */
8959 dw2_asm_output_data (1, 1,
8960 "Minimum Instruction Length");
8962 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START
,
8963 "Default is_stmt_start flag");
8964 dw2_asm_output_data (1, DWARF_LINE_BASE
,
8965 "Line Base Value (Special Opcodes)");
8966 dw2_asm_output_data (1, DWARF_LINE_RANGE
,
8967 "Line Range Value (Special Opcodes)");
8968 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
,
8969 "Special Opcode Base");
8971 for (opc
= 1; opc
< DWARF_LINE_OPCODE_BASE
; opc
++)
8975 case DW_LNS_advance_pc
:
8976 case DW_LNS_advance_line
:
8977 case DW_LNS_set_file
:
8978 case DW_LNS_set_column
:
8979 case DW_LNS_fixed_advance_pc
:
8987 dw2_asm_output_data (1, n_op_args
, "opcode: 0x%x has %d args",
8991 /* Write out the information about the files we use. */
8992 output_file_names ();
8993 ASM_OUTPUT_LABEL (asm_out_file
, p2
);
8995 /* We used to set the address register to the first location in the text
8996 section here, but that didn't accomplish anything since we already
8997 have a line note for the opening brace of the first function. */
8999 /* Generate the line number to PC correspondence table, encoded as
9000 a series of state machine operations. */
9004 if (cfun
&& in_cold_section_p
)
9005 strcpy (prev_line_label
, crtl
->subsections
.cold_section_label
);
9007 strcpy (prev_line_label
, text_section_label
);
9008 for (lt_index
= 1; lt_index
< line_info_table_in_use
; ++lt_index
)
9010 dw_line_info_ref line_info
= &line_info_table
[lt_index
];
9013 /* Disable this optimization for now; GDB wants to see two line notes
9014 at the beginning of a function so it can find the end of the
9017 /* Don't emit anything for redundant notes. Just updating the
9018 address doesn't accomplish anything, because we already assume
9019 that anything after the last address is this line. */
9020 if (line_info
->dw_line_num
== current_line
9021 && line_info
->dw_file_num
== current_file
)
9025 /* Emit debug info for the address of the current line.
9027 Unfortunately, we have little choice here currently, and must always
9028 use the most general form. GCC does not know the address delta
9029 itself, so we can't use DW_LNS_advance_pc. Many ports do have length
9030 attributes which will give an upper bound on the address range. We
9031 could perhaps use length attributes to determine when it is safe to
9032 use DW_LNS_fixed_advance_pc. */
9034 ASM_GENERATE_INTERNAL_LABEL (line_label
, LINE_CODE_LABEL
, lt_index
);
9037 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
9038 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
9039 "DW_LNS_fixed_advance_pc");
9040 dw2_asm_output_delta (2, line_label
, prev_line_label
, NULL
);
9044 /* This can handle any delta. This takes
9045 4+DWARF2_ADDR_SIZE bytes. */
9046 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
9047 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
9048 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
9049 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
9052 strcpy (prev_line_label
, line_label
);
9054 /* Emit debug info for the source file of the current line, if
9055 different from the previous line. */
9056 if (line_info
->dw_file_num
!= current_file
)
9058 current_file
= line_info
->dw_file_num
;
9059 dw2_asm_output_data (1, DW_LNS_set_file
, "DW_LNS_set_file");
9060 dw2_asm_output_data_uleb128 (current_file
, "%lu", current_file
);
9063 /* Emit debug info for the current line number, choosing the encoding
9064 that uses the least amount of space. */
9065 if (line_info
->dw_line_num
!= current_line
)
9067 line_offset
= line_info
->dw_line_num
- current_line
;
9068 line_delta
= line_offset
- DWARF_LINE_BASE
;
9069 current_line
= line_info
->dw_line_num
;
9070 if (line_delta
>= 0 && line_delta
< (DWARF_LINE_RANGE
- 1))
9071 /* This can handle deltas from -10 to 234, using the current
9072 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
9074 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
+ line_delta
,
9075 "line %lu", current_line
);
9078 /* This can handle any delta. This takes at least 4 bytes,
9079 depending on the value being encoded. */
9080 dw2_asm_output_data (1, DW_LNS_advance_line
,
9081 "advance to line %lu", current_line
);
9082 dw2_asm_output_data_sleb128 (line_offset
, NULL
);
9083 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
9087 /* We still need to start a new row, so output a copy insn. */
9088 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
9091 /* Emit debug info for the address of the end of the function. */
9094 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
9095 "DW_LNS_fixed_advance_pc");
9096 dw2_asm_output_delta (2, text_end_label
, prev_line_label
, NULL
);
9100 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
9101 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
9102 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
9103 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, text_end_label
, NULL
);
9106 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
9107 dw2_asm_output_data_uleb128 (1, NULL
);
9108 dw2_asm_output_data (1, DW_LNE_end_sequence
, NULL
);
9113 for (lt_index
= 0; lt_index
< separate_line_info_table_in_use
;)
9115 dw_separate_line_info_ref line_info
9116 = &separate_line_info_table
[lt_index
];
9119 /* Don't emit anything for redundant notes. */
9120 if (line_info
->dw_line_num
== current_line
9121 && line_info
->dw_file_num
== current_file
9122 && line_info
->function
== function
)
9126 /* Emit debug info for the address of the current line. If this is
9127 a new function, or the first line of a function, then we need
9128 to handle it differently. */
9129 ASM_GENERATE_INTERNAL_LABEL (line_label
, SEPARATE_LINE_CODE_LABEL
,
9131 if (function
!= line_info
->function
)
9133 function
= line_info
->function
;
9135 /* Set the address register to the first line in the function. */
9136 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
9137 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
9138 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
9139 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
9143 /* ??? See the DW_LNS_advance_pc comment above. */
9146 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
9147 "DW_LNS_fixed_advance_pc");
9148 dw2_asm_output_delta (2, line_label
, prev_line_label
, NULL
);
9152 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
9153 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
9154 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
9155 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
9159 strcpy (prev_line_label
, line_label
);
9161 /* Emit debug info for the source file of the current line, if
9162 different from the previous line. */
9163 if (line_info
->dw_file_num
!= current_file
)
9165 current_file
= line_info
->dw_file_num
;
9166 dw2_asm_output_data (1, DW_LNS_set_file
, "DW_LNS_set_file");
9167 dw2_asm_output_data_uleb128 (current_file
, "%lu", current_file
);
9170 /* Emit debug info for the current line number, choosing the encoding
9171 that uses the least amount of space. */
9172 if (line_info
->dw_line_num
!= current_line
)
9174 line_offset
= line_info
->dw_line_num
- current_line
;
9175 line_delta
= line_offset
- DWARF_LINE_BASE
;
9176 current_line
= line_info
->dw_line_num
;
9177 if (line_delta
>= 0 && line_delta
< (DWARF_LINE_RANGE
- 1))
9178 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
+ line_delta
,
9179 "line %lu", current_line
);
9182 dw2_asm_output_data (1, DW_LNS_advance_line
,
9183 "advance to line %lu", current_line
);
9184 dw2_asm_output_data_sleb128 (line_offset
, NULL
);
9185 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
9189 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
9197 /* If we're done with a function, end its sequence. */
9198 if (lt_index
== separate_line_info_table_in_use
9199 || separate_line_info_table
[lt_index
].function
!= function
)
9204 /* Emit debug info for the address of the end of the function. */
9205 ASM_GENERATE_INTERNAL_LABEL (line_label
, FUNC_END_LABEL
, function
);
9208 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
9209 "DW_LNS_fixed_advance_pc");
9210 dw2_asm_output_delta (2, line_label
, prev_line_label
, NULL
);
9214 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
9215 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
9216 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
9217 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
9220 /* Output the marker for the end of this sequence. */
9221 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
9222 dw2_asm_output_data_uleb128 (1, NULL
);
9223 dw2_asm_output_data (1, DW_LNE_end_sequence
, NULL
);
9227 /* Output the marker for the end of the line number info. */
9228 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
9231 /* Given a pointer to a tree node for some base type, return a pointer to
9232 a DIE that describes the given type.
9234 This routine must only be called for GCC type nodes that correspond to
9235 Dwarf base (fundamental) types. */
9238 base_type_die (tree type
)
9240 dw_die_ref base_type_result
;
9241 enum dwarf_type encoding
;
9243 if (TREE_CODE (type
) == ERROR_MARK
|| TREE_CODE (type
) == VOID_TYPE
)
9246 switch (TREE_CODE (type
))
9249 if (TYPE_STRING_FLAG (type
))
9251 if (TYPE_UNSIGNED (type
))
9252 encoding
= DW_ATE_unsigned_char
;
9254 encoding
= DW_ATE_signed_char
;
9256 else if (TYPE_UNSIGNED (type
))
9257 encoding
= DW_ATE_unsigned
;
9259 encoding
= DW_ATE_signed
;
9263 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type
)))
9264 encoding
= DW_ATE_decimal_float
;
9266 encoding
= DW_ATE_float
;
9269 case FIXED_POINT_TYPE
:
9270 if (TYPE_UNSIGNED (type
))
9271 encoding
= DW_ATE_unsigned_fixed
;
9273 encoding
= DW_ATE_signed_fixed
;
9276 /* Dwarf2 doesn't know anything about complex ints, so use
9277 a user defined type for it. */
9279 if (TREE_CODE (TREE_TYPE (type
)) == REAL_TYPE
)
9280 encoding
= DW_ATE_complex_float
;
9282 encoding
= DW_ATE_lo_user
;
9286 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
9287 encoding
= DW_ATE_boolean
;
9291 /* No other TREE_CODEs are Dwarf fundamental types. */
9295 base_type_result
= new_die (DW_TAG_base_type
, comp_unit_die
, type
);
9297 /* This probably indicates a bug. */
9298 if (! TYPE_NAME (type
))
9299 add_name_attribute (base_type_result
, "__unknown__");
9301 add_AT_unsigned (base_type_result
, DW_AT_byte_size
,
9302 int_size_in_bytes (type
));
9303 add_AT_unsigned (base_type_result
, DW_AT_encoding
, encoding
);
9305 return base_type_result
;
9308 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
9309 given input type is a Dwarf "fundamental" type. Otherwise return null. */
9312 is_base_type (tree type
)
9314 switch (TREE_CODE (type
))
9320 case FIXED_POINT_TYPE
:
9328 case QUAL_UNION_TYPE
:
9333 case REFERENCE_TYPE
:
9346 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
9347 node, return the size in bits for the type if it is a constant, or else
9348 return the alignment for the type if the type's size is not constant, or
9349 else return BITS_PER_WORD if the type actually turns out to be an
9352 static inline unsigned HOST_WIDE_INT
9353 simple_type_size_in_bits (const_tree type
)
9355 if (TREE_CODE (type
) == ERROR_MARK
)
9356 return BITS_PER_WORD
;
9357 else if (TYPE_SIZE (type
) == NULL_TREE
)
9359 else if (host_integerp (TYPE_SIZE (type
), 1))
9360 return tree_low_cst (TYPE_SIZE (type
), 1);
9362 return TYPE_ALIGN (type
);
9365 /* Return true if the debug information for the given type should be
9366 emitted as a subrange type. */
9369 is_subrange_type (const_tree type
)
9371 tree subtype
= TREE_TYPE (type
);
9373 /* Subrange types are identified by the fact that they are integer
9374 types, and that they have a subtype which is either an integer type
9375 or an enumeral type. */
9377 if (TREE_CODE (type
) != INTEGER_TYPE
9378 || subtype
== NULL_TREE
)
9381 if (TREE_CODE (subtype
) != INTEGER_TYPE
9382 && TREE_CODE (subtype
) != ENUMERAL_TYPE
9383 && TREE_CODE (subtype
) != BOOLEAN_TYPE
)
9386 if (TREE_CODE (type
) == TREE_CODE (subtype
)
9387 && int_size_in_bytes (type
) == int_size_in_bytes (subtype
)
9388 && TYPE_MIN_VALUE (type
) != NULL
9389 && TYPE_MIN_VALUE (subtype
) != NULL
9390 && tree_int_cst_equal (TYPE_MIN_VALUE (type
), TYPE_MIN_VALUE (subtype
))
9391 && TYPE_MAX_VALUE (type
) != NULL
9392 && TYPE_MAX_VALUE (subtype
) != NULL
9393 && tree_int_cst_equal (TYPE_MAX_VALUE (type
), TYPE_MAX_VALUE (subtype
)))
9395 /* The type and its subtype have the same representation. If in
9396 addition the two types also have the same name, then the given
9397 type is not a subrange type, but rather a plain base type. */
9398 /* FIXME: brobecker/2004-03-22:
9399 Sizetype INTEGER_CSTs nodes are canonicalized. It should
9400 therefore be sufficient to check the TYPE_SIZE node pointers
9401 rather than checking the actual size. Unfortunately, we have
9402 found some cases, such as in the Ada "integer" type, where
9403 this is not the case. Until this problem is solved, we need to
9404 keep checking the actual size. */
9405 tree type_name
= TYPE_NAME (type
);
9406 tree subtype_name
= TYPE_NAME (subtype
);
9408 if (type_name
!= NULL
&& TREE_CODE (type_name
) == TYPE_DECL
)
9409 type_name
= DECL_NAME (type_name
);
9411 if (subtype_name
!= NULL
&& TREE_CODE (subtype_name
) == TYPE_DECL
)
9412 subtype_name
= DECL_NAME (subtype_name
);
9414 if (type_name
== subtype_name
)
9421 /* Given a pointer to a tree node for a subrange type, return a pointer
9422 to a DIE that describes the given type. */
9425 subrange_type_die (tree type
, dw_die_ref context_die
)
9427 dw_die_ref subrange_die
;
9428 const HOST_WIDE_INT size_in_bytes
= int_size_in_bytes (type
);
9430 if (context_die
== NULL
)
9431 context_die
= comp_unit_die
;
9433 subrange_die
= new_die (DW_TAG_subrange_type
, context_die
, type
);
9435 if (int_size_in_bytes (TREE_TYPE (type
)) != size_in_bytes
)
9437 /* The size of the subrange type and its base type do not match,
9438 so we need to generate a size attribute for the subrange type. */
9439 add_AT_unsigned (subrange_die
, DW_AT_byte_size
, size_in_bytes
);
9442 if (TYPE_MIN_VALUE (type
) != NULL
)
9443 add_bound_info (subrange_die
, DW_AT_lower_bound
,
9444 TYPE_MIN_VALUE (type
));
9445 if (TYPE_MAX_VALUE (type
) != NULL
)
9446 add_bound_info (subrange_die
, DW_AT_upper_bound
,
9447 TYPE_MAX_VALUE (type
));
9449 return subrange_die
;
9452 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
9453 entry that chains various modifiers in front of the given type. */
9456 modified_type_die (tree type
, int is_const_type
, int is_volatile_type
,
9457 dw_die_ref context_die
)
9459 enum tree_code code
= TREE_CODE (type
);
9460 dw_die_ref mod_type_die
;
9461 dw_die_ref sub_die
= NULL
;
9462 tree item_type
= NULL
;
9463 tree qualified_type
;
9466 if (code
== ERROR_MARK
)
9469 /* See if we already have the appropriately qualified variant of
9472 = get_qualified_type (type
,
9473 ((is_const_type
? TYPE_QUAL_CONST
: 0)
9474 | (is_volatile_type
? TYPE_QUAL_VOLATILE
: 0)));
9476 /* If we do, then we can just use its DIE, if it exists. */
9479 mod_type_die
= lookup_type_die (qualified_type
);
9481 return mod_type_die
;
9484 name
= qualified_type
? TYPE_NAME (qualified_type
) : NULL
;
9486 /* Handle C typedef types. */
9487 if (name
&& TREE_CODE (name
) == TYPE_DECL
&& DECL_ORIGINAL_TYPE (name
))
9489 tree dtype
= TREE_TYPE (name
);
9491 if (qualified_type
== dtype
)
9493 /* For a named type, use the typedef. */
9494 gen_type_die (qualified_type
, context_die
);
9495 return lookup_type_die (qualified_type
);
9497 else if (is_const_type
< TYPE_READONLY (dtype
)
9498 || is_volatile_type
< TYPE_VOLATILE (dtype
)
9499 || (is_const_type
<= TYPE_READONLY (dtype
)
9500 && is_volatile_type
<= TYPE_VOLATILE (dtype
)
9501 && DECL_ORIGINAL_TYPE (name
) != type
))
9502 /* cv-unqualified version of named type. Just use the unnamed
9503 type to which it refers. */
9504 return modified_type_die (DECL_ORIGINAL_TYPE (name
),
9505 is_const_type
, is_volatile_type
,
9507 /* Else cv-qualified version of named type; fall through. */
9512 mod_type_die
= new_die (DW_TAG_const_type
, comp_unit_die
, type
);
9513 sub_die
= modified_type_die (type
, 0, is_volatile_type
, context_die
);
9515 else if (is_volatile_type
)
9517 mod_type_die
= new_die (DW_TAG_volatile_type
, comp_unit_die
, type
);
9518 sub_die
= modified_type_die (type
, 0, 0, context_die
);
9520 else if (code
== POINTER_TYPE
)
9522 mod_type_die
= new_die (DW_TAG_pointer_type
, comp_unit_die
, type
);
9523 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
9524 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
9525 item_type
= TREE_TYPE (type
);
9527 else if (code
== REFERENCE_TYPE
)
9529 mod_type_die
= new_die (DW_TAG_reference_type
, comp_unit_die
, type
);
9530 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
9531 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
9532 item_type
= TREE_TYPE (type
);
9534 else if (is_subrange_type (type
))
9536 mod_type_die
= subrange_type_die (type
, context_die
);
9537 item_type
= TREE_TYPE (type
);
9539 else if (is_base_type (type
))
9540 mod_type_die
= base_type_die (type
);
9543 gen_type_die (type
, context_die
);
9545 /* We have to get the type_main_variant here (and pass that to the
9546 `lookup_type_die' routine) because the ..._TYPE node we have
9547 might simply be a *copy* of some original type node (where the
9548 copy was created to help us keep track of typedef names) and
9549 that copy might have a different TYPE_UID from the original
9551 if (TREE_CODE (type
) != VECTOR_TYPE
)
9552 return lookup_type_die (type_main_variant (type
));
9554 /* Vectors have the debugging information in the type,
9555 not the main variant. */
9556 return lookup_type_die (type
);
9559 /* Builtin types don't have a DECL_ORIGINAL_TYPE. For those,
9560 don't output a DW_TAG_typedef, since there isn't one in the
9561 user's program; just attach a DW_AT_name to the type. */
9563 && (TREE_CODE (name
) != TYPE_DECL
9564 || (TREE_TYPE (name
) == qualified_type
&& DECL_NAME (name
))))
9566 if (TREE_CODE (name
) == TYPE_DECL
)
9567 /* Could just call add_name_and_src_coords_attributes here,
9568 but since this is a builtin type it doesn't have any
9569 useful source coordinates anyway. */
9570 name
= DECL_NAME (name
);
9571 add_name_attribute (mod_type_die
, IDENTIFIER_POINTER (name
));
9575 equate_type_number_to_die (qualified_type
, mod_type_die
);
9578 /* We must do this after the equate_type_number_to_die call, in case
9579 this is a recursive type. This ensures that the modified_type_die
9580 recursion will terminate even if the type is recursive. Recursive
9581 types are possible in Ada. */
9582 sub_die
= modified_type_die (item_type
,
9583 TYPE_READONLY (item_type
),
9584 TYPE_VOLATILE (item_type
),
9587 if (sub_die
!= NULL
)
9588 add_AT_die_ref (mod_type_die
, DW_AT_type
, sub_die
);
9590 return mod_type_die
;
9593 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
9594 an enumerated type. */
9597 type_is_enum (const_tree type
)
9599 return TREE_CODE (type
) == ENUMERAL_TYPE
;
9602 /* Return the DBX register number described by a given RTL node. */
9605 dbx_reg_number (const_rtx rtl
)
9607 unsigned regno
= REGNO (rtl
);
9609 gcc_assert (regno
< FIRST_PSEUDO_REGISTER
);
9611 #ifdef LEAF_REG_REMAP
9612 if (current_function_uses_only_leaf_regs
)
9614 int leaf_reg
= LEAF_REG_REMAP (regno
);
9616 regno
= (unsigned) leaf_reg
;
9620 return DBX_REGISTER_NUMBER (regno
);
9623 /* Optionally add a DW_OP_piece term to a location description expression.
9624 DW_OP_piece is only added if the location description expression already
9625 doesn't end with DW_OP_piece. */
9628 add_loc_descr_op_piece (dw_loc_descr_ref
*list_head
, int size
)
9630 dw_loc_descr_ref loc
;
9632 if (*list_head
!= NULL
)
9634 /* Find the end of the chain. */
9635 for (loc
= *list_head
; loc
->dw_loc_next
!= NULL
; loc
= loc
->dw_loc_next
)
9638 if (loc
->dw_loc_opc
!= DW_OP_piece
)
9639 loc
->dw_loc_next
= new_loc_descr (DW_OP_piece
, size
, 0);
9643 /* Return a location descriptor that designates a machine register or
9644 zero if there is none. */
9646 static dw_loc_descr_ref
9647 reg_loc_descriptor (rtx rtl
, enum var_init_status initialized
)
9651 if (REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
9654 regs
= targetm
.dwarf_register_span (rtl
);
9656 if (hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)] > 1 || regs
)
9657 return multiple_reg_loc_descriptor (rtl
, regs
, initialized
);
9659 return one_reg_loc_descriptor (dbx_reg_number (rtl
), initialized
);
9662 /* Return a location descriptor that designates a machine register for
9663 a given hard register number. */
9665 static dw_loc_descr_ref
9666 one_reg_loc_descriptor (unsigned int regno
, enum var_init_status initialized
)
9668 dw_loc_descr_ref reg_loc_descr
= new_reg_loc_descr (regno
, 0);
9670 if (initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
9671 add_loc_descr (®_loc_descr
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
9673 return reg_loc_descr
;
9676 /* Given an RTL of a register, return a location descriptor that
9677 designates a value that spans more than one register. */
9679 static dw_loc_descr_ref
9680 multiple_reg_loc_descriptor (rtx rtl
, rtx regs
,
9681 enum var_init_status initialized
)
9685 dw_loc_descr_ref loc_result
= NULL
;
9688 #ifdef LEAF_REG_REMAP
9689 if (current_function_uses_only_leaf_regs
)
9691 int leaf_reg
= LEAF_REG_REMAP (reg
);
9693 reg
= (unsigned) leaf_reg
;
9696 gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg
) == dbx_reg_number (rtl
));
9697 nregs
= hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)];
9699 /* Simple, contiguous registers. */
9700 if (regs
== NULL_RTX
)
9702 size
= GET_MODE_SIZE (GET_MODE (rtl
)) / nregs
;
9709 t
= one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg
),
9710 VAR_INIT_STATUS_INITIALIZED
);
9711 add_loc_descr (&loc_result
, t
);
9712 add_loc_descr_op_piece (&loc_result
, size
);
9718 /* Now onto stupid register sets in non contiguous locations. */
9720 gcc_assert (GET_CODE (regs
) == PARALLEL
);
9722 size
= GET_MODE_SIZE (GET_MODE (XVECEXP (regs
, 0, 0)));
9725 for (i
= 0; i
< XVECLEN (regs
, 0); ++i
)
9729 t
= one_reg_loc_descriptor (REGNO (XVECEXP (regs
, 0, i
)),
9730 VAR_INIT_STATUS_INITIALIZED
);
9731 add_loc_descr (&loc_result
, t
);
9732 size
= GET_MODE_SIZE (GET_MODE (XVECEXP (regs
, 0, 0)));
9733 add_loc_descr_op_piece (&loc_result
, size
);
9736 if (loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
9737 add_loc_descr (&loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
9741 #endif /* DWARF2_DEBUGGING_INFO */
9743 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
9745 /* Return a location descriptor that designates a constant. */
9747 static dw_loc_descr_ref
9748 int_loc_descriptor (HOST_WIDE_INT i
)
9750 enum dwarf_location_atom op
;
9752 /* Pick the smallest representation of a constant, rather than just
9753 defaulting to the LEB encoding. */
9757 op
= DW_OP_lit0
+ i
;
9760 else if (i
<= 0xffff)
9762 else if (HOST_BITS_PER_WIDE_INT
== 32
9772 else if (i
>= -0x8000)
9774 else if (HOST_BITS_PER_WIDE_INT
== 32
9775 || i
>= -0x80000000)
9781 return new_loc_descr (op
, i
, 0);
9785 #ifdef DWARF2_DEBUGGING_INFO
9787 /* Return a location descriptor that designates a base+offset location. */
9789 static dw_loc_descr_ref
9790 based_loc_descr (rtx reg
, HOST_WIDE_INT offset
,
9791 enum var_init_status initialized
)
9794 dw_loc_descr_ref result
;
9795 dw_fde_ref fde
= current_fde ();
9797 /* We only use "frame base" when we're sure we're talking about the
9798 post-prologue local stack frame. We do this by *not* running
9799 register elimination until this point, and recognizing the special
9800 argument pointer and soft frame pointer rtx's. */
9801 if (reg
== arg_pointer_rtx
|| reg
== frame_pointer_rtx
)
9803 rtx elim
= eliminate_regs (reg
, VOIDmode
, NULL_RTX
);
9807 if (GET_CODE (elim
) == PLUS
)
9809 offset
+= INTVAL (XEXP (elim
, 1));
9810 elim
= XEXP (elim
, 0);
9812 gcc_assert ((SUPPORTS_STACK_ALIGNMENT
9813 && (elim
== hard_frame_pointer_rtx
9814 || elim
== stack_pointer_rtx
))
9815 || elim
== (frame_pointer_needed
9816 ? hard_frame_pointer_rtx
9817 : stack_pointer_rtx
));
9819 /* If drap register is used to align stack, use frame
9820 pointer + offset to access stack variables. If stack
9821 is aligned without drap, use stack pointer + offset to
9822 access stack variables. */
9823 if (crtl
->stack_realign_tried
9824 && cfa
.reg
== HARD_FRAME_POINTER_REGNUM
9825 && reg
== frame_pointer_rtx
)
9828 = DWARF_FRAME_REGNUM (cfa
.indirect
9829 ? HARD_FRAME_POINTER_REGNUM
9830 : STACK_POINTER_REGNUM
);
9831 return new_reg_loc_descr (base_reg
, offset
);
9834 offset
+= frame_pointer_fb_offset
;
9835 return new_loc_descr (DW_OP_fbreg
, offset
, 0);
9839 && fde
->drap_reg
!= INVALID_REGNUM
9840 && (fde
->drap_reg
== REGNO (reg
)
9841 || fde
->vdrap_reg
== REGNO (reg
)))
9843 /* Use cfa+offset to represent the location of arguments passed
9844 on stack when drap is used to align stack. */
9845 return new_loc_descr (DW_OP_fbreg
, offset
, 0);
9848 regno
= dbx_reg_number (reg
);
9850 result
= new_loc_descr (DW_OP_breg0
+ regno
, offset
, 0);
9852 result
= new_loc_descr (DW_OP_bregx
, regno
, offset
);
9854 if (initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
9855 add_loc_descr (&result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
9860 /* Return true if this RTL expression describes a base+offset calculation. */
9863 is_based_loc (const_rtx rtl
)
9865 return (GET_CODE (rtl
) == PLUS
9866 && ((REG_P (XEXP (rtl
, 0))
9867 && REGNO (XEXP (rtl
, 0)) < FIRST_PSEUDO_REGISTER
9868 && GET_CODE (XEXP (rtl
, 1)) == CONST_INT
)));
9871 /* Return a descriptor that describes the concatenation of N locations
9872 used to form the address of a memory location. */
9874 static dw_loc_descr_ref
9875 concatn_mem_loc_descriptor (rtx concatn
, enum machine_mode mode
,
9876 enum var_init_status initialized
)
9879 dw_loc_descr_ref cc_loc_result
= NULL
;
9880 unsigned int n
= XVECLEN (concatn
, 0);
9882 for (i
= 0; i
< n
; ++i
)
9884 dw_loc_descr_ref ref
;
9885 rtx x
= XVECEXP (concatn
, 0, i
);
9887 ref
= mem_loc_descriptor (x
, mode
, VAR_INIT_STATUS_INITIALIZED
);
9891 add_loc_descr (&cc_loc_result
, ref
);
9892 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x
)));
9895 if (cc_loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
9896 add_loc_descr (&cc_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
9898 return cc_loc_result
;
9901 /* Try to handle TLS MEMs, for which mem_loc_descriptor on XEXP (mem, 0)
9904 static dw_loc_descr_ref
9905 tls_mem_loc_descriptor (rtx mem
)
9908 dw_loc_descr_ref loc_result
, loc_result2
;
9910 if (MEM_EXPR (mem
) == NULL_TREE
|| MEM_OFFSET (mem
) == NULL_RTX
)
9913 base
= get_base_address (MEM_EXPR (mem
));
9915 || TREE_CODE (base
) != VAR_DECL
9916 || !DECL_THREAD_LOCAL_P (base
))
9919 loc_result
= loc_descriptor_from_tree_1 (MEM_EXPR (mem
), 2);
9920 if (loc_result
== NULL
)
9923 if (INTVAL (MEM_OFFSET (mem
)))
9925 if (INTVAL (MEM_OFFSET (mem
)) >= 0)
9926 add_loc_descr (&loc_result
,
9927 new_loc_descr (DW_OP_plus_uconst
,
9928 INTVAL (MEM_OFFSET (mem
)), 0));
9931 loc_result2
= mem_loc_descriptor (MEM_OFFSET (mem
), GET_MODE (mem
),
9932 VAR_INIT_STATUS_INITIALIZED
);
9933 if (loc_result2
== 0)
9935 add_loc_descr (&loc_result
, loc_result2
);
9936 add_loc_descr (&loc_result
, new_loc_descr (DW_OP_plus
, 0, 0));
9943 /* The following routine converts the RTL for a variable or parameter
9944 (resident in memory) into an equivalent Dwarf representation of a
9945 mechanism for getting the address of that same variable onto the top of a
9946 hypothetical "address evaluation" stack.
9948 When creating memory location descriptors, we are effectively transforming
9949 the RTL for a memory-resident object into its Dwarf postfix expression
9950 equivalent. This routine recursively descends an RTL tree, turning
9951 it into Dwarf postfix code as it goes.
9953 MODE is the mode of the memory reference, needed to handle some
9954 autoincrement addressing modes.
9956 CAN_USE_FBREG is a flag whether we can use DW_AT_frame_base in the
9957 location list for RTL.
9959 Return 0 if we can't represent the location. */
9961 static dw_loc_descr_ref
9962 mem_loc_descriptor (rtx rtl
, enum machine_mode mode
,
9963 enum var_init_status initialized
)
9965 dw_loc_descr_ref mem_loc_result
= NULL
;
9966 enum dwarf_location_atom op
;
9968 /* Note that for a dynamically sized array, the location we will generate a
9969 description of here will be the lowest numbered location which is
9970 actually within the array. That's *not* necessarily the same as the
9971 zeroth element of the array. */
9973 rtl
= targetm
.delegitimize_address (rtl
);
9975 switch (GET_CODE (rtl
))
9980 /* POST_INC and POST_DEC can be handled just like a SUBREG. So we
9981 just fall into the SUBREG code. */
9983 /* ... fall through ... */
9986 /* The case of a subreg may arise when we have a local (register)
9987 variable or a formal (register) parameter which doesn't quite fill
9988 up an entire register. For now, just assume that it is
9989 legitimate to make the Dwarf info refer to the whole register which
9990 contains the given subreg. */
9991 rtl
= XEXP (rtl
, 0);
9993 /* ... fall through ... */
9996 /* Whenever a register number forms a part of the description of the
9997 method for calculating the (dynamic) address of a memory resident
9998 object, DWARF rules require the register number be referred to as
9999 a "base register". This distinction is not based in any way upon
10000 what category of register the hardware believes the given register
10001 belongs to. This is strictly DWARF terminology we're dealing with
10002 here. Note that in cases where the location of a memory-resident
10003 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
10004 OP_CONST (0)) the actual DWARF location descriptor that we generate
10005 may just be OP_BASEREG (basereg). This may look deceptively like
10006 the object in question was allocated to a register (rather than in
10007 memory) so DWARF consumers need to be aware of the subtle
10008 distinction between OP_REG and OP_BASEREG. */
10009 if (REGNO (rtl
) < FIRST_PSEUDO_REGISTER
)
10010 mem_loc_result
= based_loc_descr (rtl
, 0, VAR_INIT_STATUS_INITIALIZED
);
10011 else if (stack_realign_drap
10013 && crtl
->args
.internal_arg_pointer
== rtl
10014 && REGNO (crtl
->drap_reg
) < FIRST_PSEUDO_REGISTER
)
10016 /* If RTL is internal_arg_pointer, which has been optimized
10017 out, use DRAP instead. */
10018 mem_loc_result
= based_loc_descr (crtl
->drap_reg
, 0,
10019 VAR_INIT_STATUS_INITIALIZED
);
10024 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (rtl
),
10025 VAR_INIT_STATUS_INITIALIZED
);
10026 if (mem_loc_result
== NULL
)
10027 mem_loc_result
= tls_mem_loc_descriptor (rtl
);
10028 if (mem_loc_result
!= 0)
10029 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_deref
, 0, 0));
10033 rtl
= XEXP (rtl
, 1);
10035 /* ... fall through ... */
10038 /* Some ports can transform a symbol ref into a label ref, because
10039 the symbol ref is too far away and has to be dumped into a constant
10043 /* Alternatively, the symbol in the constant pool might be referenced
10044 by a different symbol. */
10045 if (GET_CODE (rtl
) == SYMBOL_REF
&& CONSTANT_POOL_ADDRESS_P (rtl
))
10048 rtx tmp
= get_pool_constant_mark (rtl
, &marked
);
10050 if (GET_CODE (tmp
) == SYMBOL_REF
)
10053 if (CONSTANT_POOL_ADDRESS_P (tmp
))
10054 get_pool_constant_mark (tmp
, &marked
);
10059 /* If all references to this pool constant were optimized away,
10060 it was not output and thus we can't represent it.
10061 FIXME: might try to use DW_OP_const_value here, though
10062 DW_OP_piece complicates it. */
10067 mem_loc_result
= new_loc_descr (DW_OP_addr
, 0, 0);
10068 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
10069 mem_loc_result
->dw_loc_oprnd1
.v
.val_addr
= rtl
;
10070 VEC_safe_push (rtx
, gc
, used_rtx_array
, rtl
);
10074 /* Extract the PLUS expression nested inside and fall into
10075 PLUS code below. */
10076 rtl
= XEXP (rtl
, 1);
10081 /* Turn these into a PLUS expression and fall into the PLUS code
10083 rtl
= gen_rtx_PLUS (word_mode
, XEXP (rtl
, 0),
10084 GEN_INT (GET_CODE (rtl
) == PRE_INC
10085 ? GET_MODE_UNIT_SIZE (mode
)
10086 : -GET_MODE_UNIT_SIZE (mode
)));
10088 /* ... fall through ... */
10092 if (is_based_loc (rtl
))
10093 mem_loc_result
= based_loc_descr (XEXP (rtl
, 0),
10094 INTVAL (XEXP (rtl
, 1)),
10095 VAR_INIT_STATUS_INITIALIZED
);
10098 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), mode
,
10099 VAR_INIT_STATUS_INITIALIZED
);
10100 if (mem_loc_result
== 0)
10103 if (GET_CODE (XEXP (rtl
, 1)) == CONST_INT
10104 && INTVAL (XEXP (rtl
, 1)) >= 0)
10105 add_loc_descr (&mem_loc_result
,
10106 new_loc_descr (DW_OP_plus_uconst
,
10107 INTVAL (XEXP (rtl
, 1)), 0));
10110 dw_loc_descr_ref mem_loc_result2
10111 = mem_loc_descriptor (XEXP (rtl
, 1), mode
,
10112 VAR_INIT_STATUS_INITIALIZED
);
10113 if (mem_loc_result2
== 0)
10115 add_loc_descr (&mem_loc_result
, mem_loc_result2
);
10116 add_loc_descr (&mem_loc_result
,
10117 new_loc_descr (DW_OP_plus
, 0, 0));
10122 /* If a pseudo-reg is optimized away, it is possible for it to
10123 be replaced with a MEM containing a multiply or shift. */
10142 dw_loc_descr_ref op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
,
10143 VAR_INIT_STATUS_INITIALIZED
);
10144 dw_loc_descr_ref op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
,
10145 VAR_INIT_STATUS_INITIALIZED
);
10147 if (op0
== 0 || op1
== 0)
10150 mem_loc_result
= op0
;
10151 add_loc_descr (&mem_loc_result
, op1
);
10152 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
10157 mem_loc_result
= int_loc_descriptor (INTVAL (rtl
));
10161 mem_loc_result
= concatn_mem_loc_descriptor (rtl
, mode
,
10162 VAR_INIT_STATUS_INITIALIZED
);
10166 /* If delegitimize_address couldn't do anything with the UNSPEC, we
10167 can't express it in the debug info. This can happen e.g. with some
10172 gcc_unreachable ();
10175 if (mem_loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
10176 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
10178 return mem_loc_result
;
10181 /* Return a descriptor that describes the concatenation of two locations.
10182 This is typically a complex variable. */
10184 static dw_loc_descr_ref
10185 concat_loc_descriptor (rtx x0
, rtx x1
, enum var_init_status initialized
)
10187 dw_loc_descr_ref cc_loc_result
= NULL
;
10188 dw_loc_descr_ref x0_ref
= loc_descriptor (x0
, VAR_INIT_STATUS_INITIALIZED
);
10189 dw_loc_descr_ref x1_ref
= loc_descriptor (x1
, VAR_INIT_STATUS_INITIALIZED
);
10191 if (x0_ref
== 0 || x1_ref
== 0)
10194 cc_loc_result
= x0_ref
;
10195 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x0
)));
10197 add_loc_descr (&cc_loc_result
, x1_ref
);
10198 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x1
)));
10200 if (initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
10201 add_loc_descr (&cc_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
10203 return cc_loc_result
;
10206 /* Return a descriptor that describes the concatenation of N
10209 static dw_loc_descr_ref
10210 concatn_loc_descriptor (rtx concatn
, enum var_init_status initialized
)
10213 dw_loc_descr_ref cc_loc_result
= NULL
;
10214 unsigned int n
= XVECLEN (concatn
, 0);
10216 for (i
= 0; i
< n
; ++i
)
10218 dw_loc_descr_ref ref
;
10219 rtx x
= XVECEXP (concatn
, 0, i
);
10221 ref
= loc_descriptor (x
, VAR_INIT_STATUS_INITIALIZED
);
10225 add_loc_descr (&cc_loc_result
, ref
);
10226 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x
)));
10229 if (cc_loc_result
&& initialized
== VAR_INIT_STATUS_UNINITIALIZED
)
10230 add_loc_descr (&cc_loc_result
, new_loc_descr (DW_OP_GNU_uninit
, 0, 0));
10232 return cc_loc_result
;
10235 /* Output a proper Dwarf location descriptor for a variable or parameter
10236 which is either allocated in a register or in a memory location. For a
10237 register, we just generate an OP_REG and the register number. For a
10238 memory location we provide a Dwarf postfix expression describing how to
10239 generate the (dynamic) address of the object onto the address stack.
10241 If we don't know how to describe it, return 0. */
10243 static dw_loc_descr_ref
10244 loc_descriptor (rtx rtl
, enum var_init_status initialized
)
10246 dw_loc_descr_ref loc_result
= NULL
;
10248 switch (GET_CODE (rtl
))
10251 /* The case of a subreg may arise when we have a local (register)
10252 variable or a formal (register) parameter which doesn't quite fill
10253 up an entire register. For now, just assume that it is
10254 legitimate to make the Dwarf info refer to the whole register which
10255 contains the given subreg. */
10256 rtl
= SUBREG_REG (rtl
);
10258 /* ... fall through ... */
10261 loc_result
= reg_loc_descriptor (rtl
, initialized
);
10265 loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (rtl
),
10267 if (loc_result
== NULL
)
10268 loc_result
= tls_mem_loc_descriptor (rtl
);
10272 loc_result
= concat_loc_descriptor (XEXP (rtl
, 0), XEXP (rtl
, 1),
10277 loc_result
= concatn_loc_descriptor (rtl
, initialized
);
10282 if (GET_CODE (XEXP (rtl
, 1)) != PARALLEL
)
10284 loc_result
= loc_descriptor (XEXP (XEXP (rtl
, 1), 0), initialized
);
10288 rtl
= XEXP (rtl
, 1);
10293 rtvec par_elems
= XVEC (rtl
, 0);
10294 int num_elem
= GET_NUM_ELEM (par_elems
);
10295 enum machine_mode mode
;
10298 /* Create the first one, so we have something to add to. */
10299 loc_result
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, 0), 0),
10301 if (loc_result
== NULL
)
10303 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, 0), 0));
10304 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
10305 for (i
= 1; i
< num_elem
; i
++)
10307 dw_loc_descr_ref temp
;
10309 temp
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, i
), 0),
10313 add_loc_descr (&loc_result
, temp
);
10314 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, i
), 0));
10315 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
10321 gcc_unreachable ();
10327 /* Similar, but generate the descriptor from trees instead of rtl. This comes
10328 up particularly with variable length arrays. WANT_ADDRESS is 2 if this is
10329 a top-level invocation of loc_descriptor_from_tree; is 1 if this is not a
10330 top-level invocation, and we require the address of LOC; is 0 if we require
10331 the value of LOC. */
10333 static dw_loc_descr_ref
10334 loc_descriptor_from_tree_1 (tree loc
, int want_address
)
10336 dw_loc_descr_ref ret
, ret1
;
10337 int have_address
= 0;
10338 enum dwarf_location_atom op
;
10340 /* ??? Most of the time we do not take proper care for sign/zero
10341 extending the values properly. Hopefully this won't be a real
10344 switch (TREE_CODE (loc
))
10349 case PLACEHOLDER_EXPR
:
10350 /* This case involves extracting fields from an object to determine the
10351 position of other fields. We don't try to encode this here. The
10352 only user of this is Ada, which encodes the needed information using
10353 the names of types. */
10359 case PREINCREMENT_EXPR
:
10360 case PREDECREMENT_EXPR
:
10361 case POSTINCREMENT_EXPR
:
10362 case POSTDECREMENT_EXPR
:
10363 /* There are no opcodes for these operations. */
10367 /* If we already want an address, there's nothing we can do. */
10371 /* Otherwise, process the argument and look for the address. */
10372 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 1);
10375 if (DECL_THREAD_LOCAL_P (loc
))
10379 unsigned second_op
;
10381 if (targetm
.have_tls
)
10383 /* If this is not defined, we have no way to emit the
10385 if (!targetm
.asm_out
.output_dwarf_dtprel
)
10388 /* The way DW_OP_GNU_push_tls_address is specified, we
10389 can only look up addresses of objects in the current
10391 if (DECL_EXTERNAL (loc
) && !targetm
.binds_local_p (loc
))
10393 first_op
= INTERNAL_DW_OP_tls_addr
;
10394 second_op
= DW_OP_GNU_push_tls_address
;
10398 if (!targetm
.emutls
.debug_form_tls_address
)
10400 loc
= emutls_decl (loc
);
10401 first_op
= DW_OP_addr
;
10402 second_op
= DW_OP_form_tls_address
;
10405 rtl
= rtl_for_decl_location (loc
);
10406 if (rtl
== NULL_RTX
)
10411 rtl
= XEXP (rtl
, 0);
10412 if (! CONSTANT_P (rtl
))
10415 ret
= new_loc_descr (first_op
, 0, 0);
10416 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
10417 ret
->dw_loc_oprnd1
.v
.val_addr
= rtl
;
10419 ret1
= new_loc_descr (second_op
, 0, 0);
10420 add_loc_descr (&ret
, ret1
);
10428 if (DECL_HAS_VALUE_EXPR_P (loc
))
10429 return loc_descriptor_from_tree_1 (DECL_VALUE_EXPR (loc
),
10434 case FUNCTION_DECL
:
10436 rtx rtl
= rtl_for_decl_location (loc
);
10438 if (rtl
== NULL_RTX
)
10440 else if (GET_CODE (rtl
) == CONST_INT
)
10442 HOST_WIDE_INT val
= INTVAL (rtl
);
10443 if (TYPE_UNSIGNED (TREE_TYPE (loc
)))
10444 val
&= GET_MODE_MASK (DECL_MODE (loc
));
10445 ret
= int_loc_descriptor (val
);
10447 else if (GET_CODE (rtl
) == CONST_STRING
)
10449 else if (CONSTANT_P (rtl
))
10451 ret
= new_loc_descr (DW_OP_addr
, 0, 0);
10452 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
10453 ret
->dw_loc_oprnd1
.v
.val_addr
= rtl
;
10457 enum machine_mode mode
;
10459 /* Certain constructs can only be represented at top-level. */
10460 if (want_address
== 2)
10461 return loc_descriptor (rtl
, VAR_INIT_STATUS_INITIALIZED
);
10463 mode
= GET_MODE (rtl
);
10466 rtl
= XEXP (rtl
, 0);
10469 ret
= mem_loc_descriptor (rtl
, mode
, VAR_INIT_STATUS_INITIALIZED
);
10475 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
10479 case COMPOUND_EXPR
:
10480 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 1), want_address
);
10483 case VIEW_CONVERT_EXPR
:
10486 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), want_address
);
10488 case COMPONENT_REF
:
10489 case BIT_FIELD_REF
:
10491 case ARRAY_RANGE_REF
:
10494 HOST_WIDE_INT bitsize
, bitpos
, bytepos
;
10495 enum machine_mode mode
;
10497 int unsignedp
= TYPE_UNSIGNED (TREE_TYPE (loc
));
10499 obj
= get_inner_reference (loc
, &bitsize
, &bitpos
, &offset
, &mode
,
10500 &unsignedp
, &volatilep
, false);
10505 ret
= loc_descriptor_from_tree_1 (obj
, 1);
10507 || bitpos
% BITS_PER_UNIT
!= 0 || bitsize
% BITS_PER_UNIT
!= 0)
10510 if (offset
!= NULL_TREE
)
10512 /* Variable offset. */
10513 ret1
= loc_descriptor_from_tree_1 (offset
, 0);
10516 add_loc_descr (&ret
, ret1
);
10517 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus
, 0, 0));
10520 bytepos
= bitpos
/ BITS_PER_UNIT
;
10522 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus_uconst
, bytepos
, 0));
10523 else if (bytepos
< 0)
10525 add_loc_descr (&ret
, int_loc_descriptor (bytepos
));
10526 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus
, 0, 0));
10534 if (host_integerp (loc
, 0))
10535 ret
= int_loc_descriptor (tree_low_cst (loc
, 0));
10542 /* Get an RTL for this, if something has been emitted. */
10543 rtx rtl
= lookup_constant_def (loc
);
10544 enum machine_mode mode
;
10546 if (!rtl
|| !MEM_P (rtl
))
10548 mode
= GET_MODE (rtl
);
10549 rtl
= XEXP (rtl
, 0);
10550 ret
= mem_loc_descriptor (rtl
, mode
, VAR_INIT_STATUS_INITIALIZED
);
10555 case TRUTH_AND_EXPR
:
10556 case TRUTH_ANDIF_EXPR
:
10561 case TRUTH_XOR_EXPR
:
10566 case TRUTH_OR_EXPR
:
10567 case TRUTH_ORIF_EXPR
:
10572 case FLOOR_DIV_EXPR
:
10573 case CEIL_DIV_EXPR
:
10574 case ROUND_DIV_EXPR
:
10575 case TRUNC_DIV_EXPR
:
10583 case FLOOR_MOD_EXPR
:
10584 case CEIL_MOD_EXPR
:
10585 case ROUND_MOD_EXPR
:
10586 case TRUNC_MOD_EXPR
:
10599 op
= (TYPE_UNSIGNED (TREE_TYPE (loc
)) ? DW_OP_shr
: DW_OP_shra
);
10602 case POINTER_PLUS_EXPR
:
10604 if (TREE_CODE (TREE_OPERAND (loc
, 1)) == INTEGER_CST
10605 && host_integerp (TREE_OPERAND (loc
, 1), 0))
10607 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
10611 add_loc_descr (&ret
,
10612 new_loc_descr (DW_OP_plus_uconst
,
10613 tree_low_cst (TREE_OPERAND (loc
, 1),
10623 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
10630 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
10637 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
10644 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
10659 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
10660 ret1
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 1), 0);
10661 if (ret
== 0 || ret1
== 0)
10664 add_loc_descr (&ret
, ret1
);
10665 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
10668 case TRUTH_NOT_EXPR
:
10682 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
10686 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
10692 const enum tree_code code
=
10693 TREE_CODE (loc
) == MIN_EXPR
? GT_EXPR
: LT_EXPR
;
10695 loc
= build3 (COND_EXPR
, TREE_TYPE (loc
),
10696 build2 (code
, integer_type_node
,
10697 TREE_OPERAND (loc
, 0), TREE_OPERAND (loc
, 1)),
10698 TREE_OPERAND (loc
, 1), TREE_OPERAND (loc
, 0));
10701 /* ... fall through ... */
10705 dw_loc_descr_ref lhs
10706 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 1), 0);
10707 dw_loc_descr_ref rhs
10708 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 2), 0);
10709 dw_loc_descr_ref bra_node
, jump_node
, tmp
;
10711 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
10712 if (ret
== 0 || lhs
== 0 || rhs
== 0)
10715 bra_node
= new_loc_descr (DW_OP_bra
, 0, 0);
10716 add_loc_descr (&ret
, bra_node
);
10718 add_loc_descr (&ret
, rhs
);
10719 jump_node
= new_loc_descr (DW_OP_skip
, 0, 0);
10720 add_loc_descr (&ret
, jump_node
);
10722 add_loc_descr (&ret
, lhs
);
10723 bra_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
10724 bra_node
->dw_loc_oprnd1
.v
.val_loc
= lhs
;
10726 /* ??? Need a node to point the skip at. Use a nop. */
10727 tmp
= new_loc_descr (DW_OP_nop
, 0, 0);
10728 add_loc_descr (&ret
, tmp
);
10729 jump_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
10730 jump_node
->dw_loc_oprnd1
.v
.val_loc
= tmp
;
10734 case FIX_TRUNC_EXPR
:
10738 /* Leave front-end specific codes as simply unknown. This comes
10739 up, for instance, with the C STMT_EXPR. */
10740 if ((unsigned int) TREE_CODE (loc
)
10741 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE
)
10744 #ifdef ENABLE_CHECKING
10745 /* Otherwise this is a generic code; we should just lists all of
10746 these explicitly. We forgot one. */
10747 gcc_unreachable ();
10749 /* In a release build, we want to degrade gracefully: better to
10750 generate incomplete debugging information than to crash. */
10755 /* Show if we can't fill the request for an address. */
10756 if (want_address
&& !have_address
)
10759 /* If we've got an address and don't want one, dereference. */
10760 if (!want_address
&& have_address
&& ret
)
10762 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (loc
));
10764 if (size
> DWARF2_ADDR_SIZE
|| size
== -1)
10766 else if (size
== DWARF2_ADDR_SIZE
)
10769 op
= DW_OP_deref_size
;
10771 add_loc_descr (&ret
, new_loc_descr (op
, size
, 0));
10777 static inline dw_loc_descr_ref
10778 loc_descriptor_from_tree (tree loc
)
10780 return loc_descriptor_from_tree_1 (loc
, 2);
10783 /* Given a value, round it up to the lowest multiple of `boundary'
10784 which is not less than the value itself. */
10786 static inline HOST_WIDE_INT
10787 ceiling (HOST_WIDE_INT value
, unsigned int boundary
)
10789 return (((value
+ boundary
- 1) / boundary
) * boundary
);
10792 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
10793 pointer to the declared type for the relevant field variable, or return
10794 `integer_type_node' if the given node turns out to be an
10795 ERROR_MARK node. */
10798 field_type (const_tree decl
)
10802 if (TREE_CODE (decl
) == ERROR_MARK
)
10803 return integer_type_node
;
10805 type
= DECL_BIT_FIELD_TYPE (decl
);
10806 if (type
== NULL_TREE
)
10807 type
= TREE_TYPE (decl
);
10812 /* Given a pointer to a tree node, return the alignment in bits for
10813 it, or else return BITS_PER_WORD if the node actually turns out to
10814 be an ERROR_MARK node. */
10816 static inline unsigned
10817 simple_type_align_in_bits (const_tree type
)
10819 return (TREE_CODE (type
) != ERROR_MARK
) ? TYPE_ALIGN (type
) : BITS_PER_WORD
;
10822 static inline unsigned
10823 simple_decl_align_in_bits (const_tree decl
)
10825 return (TREE_CODE (decl
) != ERROR_MARK
) ? DECL_ALIGN (decl
) : BITS_PER_WORD
;
10828 /* Return the result of rounding T up to ALIGN. */
10830 static inline HOST_WIDE_INT
10831 round_up_to_align (HOST_WIDE_INT t
, unsigned int align
)
10833 /* We must be careful if T is negative because HOST_WIDE_INT can be
10834 either "above" or "below" unsigned int as per the C promotion
10835 rules, depending on the host, thus making the signedness of the
10836 direct multiplication and division unpredictable. */
10837 unsigned HOST_WIDE_INT u
= (unsigned HOST_WIDE_INT
) t
;
10843 return (HOST_WIDE_INT
) u
;
10846 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
10847 lowest addressed byte of the "containing object" for the given FIELD_DECL,
10848 or return 0 if we are unable to determine what that offset is, either
10849 because the argument turns out to be a pointer to an ERROR_MARK node, or
10850 because the offset is actually variable. (We can't handle the latter case
10853 static HOST_WIDE_INT
10854 field_byte_offset (const_tree decl
)
10856 HOST_WIDE_INT object_offset_in_bits
;
10857 HOST_WIDE_INT bitpos_int
;
10859 if (TREE_CODE (decl
) == ERROR_MARK
)
10862 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
);
10864 /* We cannot yet cope with fields whose positions are variable, so
10865 for now, when we see such things, we simply return 0. Someday, we may
10866 be able to handle such cases, but it will be damn difficult. */
10867 if (! host_integerp (bit_position (decl
), 0))
10870 bitpos_int
= int_bit_position (decl
);
10872 #ifdef PCC_BITFIELD_TYPE_MATTERS
10873 if (PCC_BITFIELD_TYPE_MATTERS
)
10876 tree field_size_tree
;
10877 HOST_WIDE_INT deepest_bitpos
;
10878 unsigned HOST_WIDE_INT field_size_in_bits
;
10879 unsigned int type_align_in_bits
;
10880 unsigned int decl_align_in_bits
;
10881 unsigned HOST_WIDE_INT type_size_in_bits
;
10883 type
= field_type (decl
);
10884 field_size_tree
= DECL_SIZE (decl
);
10886 /* The size could be unspecified if there was an error, or for
10887 a flexible array member. */
10888 if (! field_size_tree
)
10889 field_size_tree
= bitsize_zero_node
;
10891 /* If we don't know the size of the field, pretend it's a full word. */
10892 if (host_integerp (field_size_tree
, 1))
10893 field_size_in_bits
= tree_low_cst (field_size_tree
, 1);
10895 field_size_in_bits
= BITS_PER_WORD
;
10897 type_size_in_bits
= simple_type_size_in_bits (type
);
10898 type_align_in_bits
= simple_type_align_in_bits (type
);
10899 decl_align_in_bits
= simple_decl_align_in_bits (decl
);
10901 /* The GCC front-end doesn't make any attempt to keep track of the
10902 starting bit offset (relative to the start of the containing
10903 structure type) of the hypothetical "containing object" for a
10904 bit-field. Thus, when computing the byte offset value for the
10905 start of the "containing object" of a bit-field, we must deduce
10906 this information on our own. This can be rather tricky to do in
10907 some cases. For example, handling the following structure type
10908 definition when compiling for an i386/i486 target (which only
10909 aligns long long's to 32-bit boundaries) can be very tricky:
10911 struct S { int field1; long long field2:31; };
10913 Fortunately, there is a simple rule-of-thumb which can be used
10914 in such cases. When compiling for an i386/i486, GCC will
10915 allocate 8 bytes for the structure shown above. It decides to
10916 do this based upon one simple rule for bit-field allocation.
10917 GCC allocates each "containing object" for each bit-field at
10918 the first (i.e. lowest addressed) legitimate alignment boundary
10919 (based upon the required minimum alignment for the declared
10920 type of the field) which it can possibly use, subject to the
10921 condition that there is still enough available space remaining
10922 in the containing object (when allocated at the selected point)
10923 to fully accommodate all of the bits of the bit-field itself.
10925 This simple rule makes it obvious why GCC allocates 8 bytes for
10926 each object of the structure type shown above. When looking
10927 for a place to allocate the "containing object" for `field2',
10928 the compiler simply tries to allocate a 64-bit "containing
10929 object" at each successive 32-bit boundary (starting at zero)
10930 until it finds a place to allocate that 64- bit field such that
10931 at least 31 contiguous (and previously unallocated) bits remain
10932 within that selected 64 bit field. (As it turns out, for the
10933 example above, the compiler finds it is OK to allocate the
10934 "containing object" 64-bit field at bit-offset zero within the
10937 Here we attempt to work backwards from the limited set of facts
10938 we're given, and we try to deduce from those facts, where GCC
10939 must have believed that the containing object started (within
10940 the structure type). The value we deduce is then used (by the
10941 callers of this routine) to generate DW_AT_location and
10942 DW_AT_bit_offset attributes for fields (both bit-fields and, in
10943 the case of DW_AT_location, regular fields as well). */
10945 /* Figure out the bit-distance from the start of the structure to
10946 the "deepest" bit of the bit-field. */
10947 deepest_bitpos
= bitpos_int
+ field_size_in_bits
;
10949 /* This is the tricky part. Use some fancy footwork to deduce
10950 where the lowest addressed bit of the containing object must
10952 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
10954 /* Round up to type_align by default. This works best for
10956 object_offset_in_bits
10957 = round_up_to_align (object_offset_in_bits
, type_align_in_bits
);
10959 if (object_offset_in_bits
> bitpos_int
)
10961 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
10963 /* Round up to decl_align instead. */
10964 object_offset_in_bits
10965 = round_up_to_align (object_offset_in_bits
, decl_align_in_bits
);
10970 object_offset_in_bits
= bitpos_int
;
10972 return object_offset_in_bits
/ BITS_PER_UNIT
;
10975 /* The following routines define various Dwarf attributes and any data
10976 associated with them. */
10978 /* Add a location description attribute value to a DIE.
10980 This emits location attributes suitable for whole variables and
10981 whole parameters. Note that the location attributes for struct fields are
10982 generated by the routine `data_member_location_attribute' below. */
10985 add_AT_location_description (dw_die_ref die
, enum dwarf_attribute attr_kind
,
10986 dw_loc_descr_ref descr
)
10989 add_AT_loc (die
, attr_kind
, descr
);
10992 /* Attach the specialized form of location attribute used for data members of
10993 struct and union types. In the special case of a FIELD_DECL node which
10994 represents a bit-field, the "offset" part of this special location
10995 descriptor must indicate the distance in bytes from the lowest-addressed
10996 byte of the containing struct or union type to the lowest-addressed byte of
10997 the "containing object" for the bit-field. (See the `field_byte_offset'
11000 For any given bit-field, the "containing object" is a hypothetical object
11001 (of some integral or enum type) within which the given bit-field lives. The
11002 type of this hypothetical "containing object" is always the same as the
11003 declared type of the individual bit-field itself (for GCC anyway... the
11004 DWARF spec doesn't actually mandate this). Note that it is the size (in
11005 bytes) of the hypothetical "containing object" which will be given in the
11006 DW_AT_byte_size attribute for this bit-field. (See the
11007 `byte_size_attribute' function below.) It is also used when calculating the
11008 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
11009 function below.) */
11012 add_data_member_location_attribute (dw_die_ref die
, tree decl
)
11014 HOST_WIDE_INT offset
;
11015 dw_loc_descr_ref loc_descr
= 0;
11017 if (TREE_CODE (decl
) == TREE_BINFO
)
11019 /* We're working on the TAG_inheritance for a base class. */
11020 if (BINFO_VIRTUAL_P (decl
) && is_cxx ())
11022 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
11023 aren't at a fixed offset from all (sub)objects of the same
11024 type. We need to extract the appropriate offset from our
11025 vtable. The following dwarf expression means
11027 BaseAddr = ObAddr + *((*ObAddr) - Offset)
11029 This is specific to the V3 ABI, of course. */
11031 dw_loc_descr_ref tmp
;
11033 /* Make a copy of the object address. */
11034 tmp
= new_loc_descr (DW_OP_dup
, 0, 0);
11035 add_loc_descr (&loc_descr
, tmp
);
11037 /* Extract the vtable address. */
11038 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
11039 add_loc_descr (&loc_descr
, tmp
);
11041 /* Calculate the address of the offset. */
11042 offset
= tree_low_cst (BINFO_VPTR_FIELD (decl
), 0);
11043 gcc_assert (offset
< 0);
11045 tmp
= int_loc_descriptor (-offset
);
11046 add_loc_descr (&loc_descr
, tmp
);
11047 tmp
= new_loc_descr (DW_OP_minus
, 0, 0);
11048 add_loc_descr (&loc_descr
, tmp
);
11050 /* Extract the offset. */
11051 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
11052 add_loc_descr (&loc_descr
, tmp
);
11054 /* Add it to the object address. */
11055 tmp
= new_loc_descr (DW_OP_plus
, 0, 0);
11056 add_loc_descr (&loc_descr
, tmp
);
11059 offset
= tree_low_cst (BINFO_OFFSET (decl
), 0);
11062 offset
= field_byte_offset (decl
);
11066 enum dwarf_location_atom op
;
11068 /* The DWARF2 standard says that we should assume that the structure
11069 address is already on the stack, so we can specify a structure field
11070 address by using DW_OP_plus_uconst. */
11072 #ifdef MIPS_DEBUGGING_INFO
11073 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
11074 operator correctly. It works only if we leave the offset on the
11078 op
= DW_OP_plus_uconst
;
11081 loc_descr
= new_loc_descr (op
, offset
, 0);
11084 add_AT_loc (die
, DW_AT_data_member_location
, loc_descr
);
11087 /* Writes integer values to dw_vec_const array. */
11090 insert_int (HOST_WIDE_INT val
, unsigned int size
, unsigned char *dest
)
11094 *dest
++ = val
& 0xff;
11100 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
11102 static HOST_WIDE_INT
11103 extract_int (const unsigned char *src
, unsigned int size
)
11105 HOST_WIDE_INT val
= 0;
11111 val
|= *--src
& 0xff;
11117 /* Writes floating point values to dw_vec_const array. */
11120 insert_float (const_rtx rtl
, unsigned char *array
)
11122 REAL_VALUE_TYPE rv
;
11126 REAL_VALUE_FROM_CONST_DOUBLE (rv
, rtl
);
11127 real_to_target (val
, &rv
, GET_MODE (rtl
));
11129 /* real_to_target puts 32-bit pieces in each long. Pack them. */
11130 for (i
= 0; i
< GET_MODE_SIZE (GET_MODE (rtl
)) / 4; i
++)
11132 insert_int (val
[i
], 4, array
);
11137 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
11138 does not have a "location" either in memory or in a register. These
11139 things can arise in GNU C when a constant is passed as an actual parameter
11140 to an inlined function. They can also arise in C++ where declared
11141 constants do not necessarily get memory "homes". */
11144 add_const_value_attribute (dw_die_ref die
, rtx rtl
)
11146 switch (GET_CODE (rtl
))
11150 HOST_WIDE_INT val
= INTVAL (rtl
);
11153 add_AT_int (die
, DW_AT_const_value
, val
);
11155 add_AT_unsigned (die
, DW_AT_const_value
, (unsigned HOST_WIDE_INT
) val
);
11160 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
11161 floating-point constant. A CONST_DOUBLE is used whenever the
11162 constant requires more than one word in order to be adequately
11163 represented. We output CONST_DOUBLEs as blocks. */
11165 enum machine_mode mode
= GET_MODE (rtl
);
11167 if (SCALAR_FLOAT_MODE_P (mode
))
11169 unsigned int length
= GET_MODE_SIZE (mode
);
11170 unsigned char *array
= GGC_NEWVEC (unsigned char, length
);
11172 insert_float (rtl
, array
);
11173 add_AT_vec (die
, DW_AT_const_value
, length
/ 4, 4, array
);
11177 /* ??? We really should be using HOST_WIDE_INT throughout. */
11178 gcc_assert (HOST_BITS_PER_LONG
== HOST_BITS_PER_WIDE_INT
);
11180 add_AT_long_long (die
, DW_AT_const_value
,
11181 CONST_DOUBLE_HIGH (rtl
), CONST_DOUBLE_LOW (rtl
));
11188 enum machine_mode mode
= GET_MODE (rtl
);
11189 unsigned int elt_size
= GET_MODE_UNIT_SIZE (mode
);
11190 unsigned int length
= CONST_VECTOR_NUNITS (rtl
);
11191 unsigned char *array
= GGC_NEWVEC (unsigned char, length
* elt_size
);
11195 switch (GET_MODE_CLASS (mode
))
11197 case MODE_VECTOR_INT
:
11198 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
11200 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
11201 HOST_WIDE_INT lo
, hi
;
11203 switch (GET_CODE (elt
))
11211 lo
= CONST_DOUBLE_LOW (elt
);
11212 hi
= CONST_DOUBLE_HIGH (elt
);
11216 gcc_unreachable ();
11219 if (elt_size
<= sizeof (HOST_WIDE_INT
))
11220 insert_int (lo
, elt_size
, p
);
11223 unsigned char *p0
= p
;
11224 unsigned char *p1
= p
+ sizeof (HOST_WIDE_INT
);
11226 gcc_assert (elt_size
== 2 * sizeof (HOST_WIDE_INT
));
11227 if (WORDS_BIG_ENDIAN
)
11232 insert_int (lo
, sizeof (HOST_WIDE_INT
), p0
);
11233 insert_int (hi
, sizeof (HOST_WIDE_INT
), p1
);
11238 case MODE_VECTOR_FLOAT
:
11239 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
11241 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
11242 insert_float (elt
, p
);
11247 gcc_unreachable ();
11250 add_AT_vec (die
, DW_AT_const_value
, length
, elt_size
, array
);
11255 add_AT_string (die
, DW_AT_const_value
, XSTR (rtl
, 0));
11261 add_AT_addr (die
, DW_AT_const_value
, rtl
);
11262 VEC_safe_push (rtx
, gc
, used_rtx_array
, rtl
);
11266 /* In cases where an inlined instance of an inline function is passed
11267 the address of an `auto' variable (which is local to the caller) we
11268 can get a situation where the DECL_RTL of the artificial local
11269 variable (for the inlining) which acts as a stand-in for the
11270 corresponding formal parameter (of the inline function) will look
11271 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
11272 exactly a compile-time constant expression, but it isn't the address
11273 of the (artificial) local variable either. Rather, it represents the
11274 *value* which the artificial local variable always has during its
11275 lifetime. We currently have no way to represent such quasi-constant
11276 values in Dwarf, so for now we just punt and generate nothing. */
11280 /* No other kinds of rtx should be possible here. */
11281 gcc_unreachable ();
11286 /* Determine whether the evaluation of EXPR references any variables
11287 or functions which aren't otherwise used (and therefore may not be
11290 reference_to_unused (tree
* tp
, int * walk_subtrees
,
11291 void * data ATTRIBUTE_UNUSED
)
11293 if (! EXPR_P (*tp
) && ! CONSTANT_CLASS_P (*tp
))
11294 *walk_subtrees
= 0;
11296 if (DECL_P (*tp
) && ! TREE_PUBLIC (*tp
) && ! TREE_USED (*tp
)
11297 && ! TREE_ASM_WRITTEN (*tp
))
11299 /* ??? The C++ FE emits debug information for using decls, so
11300 putting gcc_unreachable here falls over. See PR31899. For now
11301 be conservative. */
11302 else if (!cgraph_global_info_ready
11303 && (TREE_CODE (*tp
) == VAR_DECL
|| TREE_CODE (*tp
) == FUNCTION_DECL
))
11305 else if (DECL_P (*tp
) && TREE_CODE (*tp
) == VAR_DECL
)
11307 struct varpool_node
*node
= varpool_node (*tp
);
11311 else if (DECL_P (*tp
) && TREE_CODE (*tp
) == FUNCTION_DECL
11312 && (!DECL_EXTERNAL (*tp
) || DECL_DECLARED_INLINE_P (*tp
)))
11314 struct cgraph_node
*node
= cgraph_node (*tp
);
11318 else if (TREE_CODE (*tp
) == STRING_CST
&& !TREE_ASM_WRITTEN (*tp
))
11324 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
11325 for use in a later add_const_value_attribute call. */
11328 rtl_for_decl_init (tree init
, tree type
)
11330 rtx rtl
= NULL_RTX
;
11332 /* If a variable is initialized with a string constant without embedded
11333 zeros, build CONST_STRING. */
11334 if (TREE_CODE (init
) == STRING_CST
&& TREE_CODE (type
) == ARRAY_TYPE
)
11336 tree enttype
= TREE_TYPE (type
);
11337 tree domain
= TYPE_DOMAIN (type
);
11338 enum machine_mode mode
= TYPE_MODE (enttype
);
11340 if (GET_MODE_CLASS (mode
) == MODE_INT
&& GET_MODE_SIZE (mode
) == 1
11342 && integer_zerop (TYPE_MIN_VALUE (domain
))
11343 && compare_tree_int (TYPE_MAX_VALUE (domain
),
11344 TREE_STRING_LENGTH (init
) - 1) == 0
11345 && ((size_t) TREE_STRING_LENGTH (init
)
11346 == strlen (TREE_STRING_POINTER (init
)) + 1))
11347 rtl
= gen_rtx_CONST_STRING (VOIDmode
,
11348 ggc_strdup (TREE_STRING_POINTER (init
)));
11350 /* Other aggregates, and complex values, could be represented using
11352 else if (AGGREGATE_TYPE_P (type
) || TREE_CODE (type
) == COMPLEX_TYPE
)
11354 /* Vectors only work if their mode is supported by the target.
11355 FIXME: generic vectors ought to work too. */
11356 else if (TREE_CODE (type
) == VECTOR_TYPE
&& TYPE_MODE (type
) == BLKmode
)
11358 /* If the initializer is something that we know will expand into an
11359 immediate RTL constant, expand it now. We must be careful not to
11360 reference variables which won't be output. */
11361 else if (initializer_constant_valid_p (init
, type
)
11362 && ! walk_tree (&init
, reference_to_unused
, NULL
, NULL
))
11364 /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
11366 if (TREE_CODE (type
) == VECTOR_TYPE
)
11367 switch (TREE_CODE (init
))
11372 if (TREE_CONSTANT (init
))
11374 VEC(constructor_elt
,gc
) *elts
= CONSTRUCTOR_ELTS (init
);
11375 bool constant_p
= true;
11377 unsigned HOST_WIDE_INT ix
;
11379 /* Even when ctor is constant, it might contain non-*_CST
11380 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
11381 belong into VECTOR_CST nodes. */
11382 FOR_EACH_CONSTRUCTOR_VALUE (elts
, ix
, value
)
11383 if (!CONSTANT_CLASS_P (value
))
11385 constant_p
= false;
11391 init
= build_vector_from_ctor (type
, elts
);
11401 rtl
= expand_expr (init
, NULL_RTX
, VOIDmode
, EXPAND_INITIALIZER
);
11403 /* If expand_expr returns a MEM, it wasn't immediate. */
11404 gcc_assert (!rtl
|| !MEM_P (rtl
));
11410 /* Generate RTL for the variable DECL to represent its location. */
11413 rtl_for_decl_location (tree decl
)
11417 /* Here we have to decide where we are going to say the parameter "lives"
11418 (as far as the debugger is concerned). We only have a couple of
11419 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
11421 DECL_RTL normally indicates where the parameter lives during most of the
11422 activation of the function. If optimization is enabled however, this
11423 could be either NULL or else a pseudo-reg. Both of those cases indicate
11424 that the parameter doesn't really live anywhere (as far as the code
11425 generation parts of GCC are concerned) during most of the function's
11426 activation. That will happen (for example) if the parameter is never
11427 referenced within the function.
11429 We could just generate a location descriptor here for all non-NULL
11430 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
11431 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
11432 where DECL_RTL is NULL or is a pseudo-reg.
11434 Note however that we can only get away with using DECL_INCOMING_RTL as
11435 a backup substitute for DECL_RTL in certain limited cases. In cases
11436 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
11437 we can be sure that the parameter was passed using the same type as it is
11438 declared to have within the function, and that its DECL_INCOMING_RTL
11439 points us to a place where a value of that type is passed.
11441 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
11442 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
11443 because in these cases DECL_INCOMING_RTL points us to a value of some
11444 type which is *different* from the type of the parameter itself. Thus,
11445 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
11446 such cases, the debugger would end up (for example) trying to fetch a
11447 `float' from a place which actually contains the first part of a
11448 `double'. That would lead to really incorrect and confusing
11449 output at debug-time.
11451 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
11452 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
11453 are a couple of exceptions however. On little-endian machines we can
11454 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
11455 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
11456 an integral type that is smaller than TREE_TYPE (decl). These cases arise
11457 when (on a little-endian machine) a non-prototyped function has a
11458 parameter declared to be of type `short' or `char'. In such cases,
11459 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
11460 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
11461 passed `int' value. If the debugger then uses that address to fetch
11462 a `short' or a `char' (on a little-endian machine) the result will be
11463 the correct data, so we allow for such exceptional cases below.
11465 Note that our goal here is to describe the place where the given formal
11466 parameter lives during most of the function's activation (i.e. between the
11467 end of the prologue and the start of the epilogue). We'll do that as best
11468 as we can. Note however that if the given formal parameter is modified
11469 sometime during the execution of the function, then a stack backtrace (at
11470 debug-time) will show the function as having been called with the *new*
11471 value rather than the value which was originally passed in. This happens
11472 rarely enough that it is not a major problem, but it *is* a problem, and
11473 I'd like to fix it.
11475 A future version of dwarf2out.c may generate two additional attributes for
11476 any given DW_TAG_formal_parameter DIE which will describe the "passed
11477 type" and the "passed location" for the given formal parameter in addition
11478 to the attributes we now generate to indicate the "declared type" and the
11479 "active location" for each parameter. This additional set of attributes
11480 could be used by debuggers for stack backtraces. Separately, note that
11481 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
11482 This happens (for example) for inlined-instances of inline function formal
11483 parameters which are never referenced. This really shouldn't be
11484 happening. All PARM_DECL nodes should get valid non-NULL
11485 DECL_INCOMING_RTL values. FIXME. */
11487 /* Use DECL_RTL as the "location" unless we find something better. */
11488 rtl
= DECL_RTL_IF_SET (decl
);
11490 /* When generating abstract instances, ignore everything except
11491 constants, symbols living in memory, and symbols living in
11492 fixed registers. */
11493 if (! reload_completed
)
11496 && (CONSTANT_P (rtl
)
11498 && CONSTANT_P (XEXP (rtl
, 0)))
11500 && TREE_CODE (decl
) == VAR_DECL
11501 && TREE_STATIC (decl
))))
11503 rtl
= targetm
.delegitimize_address (rtl
);
11508 else if (TREE_CODE (decl
) == PARM_DECL
)
11510 if (rtl
== NULL_RTX
|| is_pseudo_reg (rtl
))
11512 tree declared_type
= TREE_TYPE (decl
);
11513 tree passed_type
= DECL_ARG_TYPE (decl
);
11514 enum machine_mode dmode
= TYPE_MODE (declared_type
);
11515 enum machine_mode pmode
= TYPE_MODE (passed_type
);
11517 /* This decl represents a formal parameter which was optimized out.
11518 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
11519 all cases where (rtl == NULL_RTX) just below. */
11520 if (dmode
== pmode
)
11521 rtl
= DECL_INCOMING_RTL (decl
);
11522 else if (SCALAR_INT_MODE_P (dmode
)
11523 && GET_MODE_SIZE (dmode
) <= GET_MODE_SIZE (pmode
)
11524 && DECL_INCOMING_RTL (decl
))
11526 rtx inc
= DECL_INCOMING_RTL (decl
);
11529 else if (MEM_P (inc
))
11531 if (BYTES_BIG_ENDIAN
)
11532 rtl
= adjust_address_nv (inc
, dmode
,
11533 GET_MODE_SIZE (pmode
)
11534 - GET_MODE_SIZE (dmode
));
11541 /* If the parm was passed in registers, but lives on the stack, then
11542 make a big endian correction if the mode of the type of the
11543 parameter is not the same as the mode of the rtl. */
11544 /* ??? This is the same series of checks that are made in dbxout.c before
11545 we reach the big endian correction code there. It isn't clear if all
11546 of these checks are necessary here, but keeping them all is the safe
11548 else if (MEM_P (rtl
)
11549 && XEXP (rtl
, 0) != const0_rtx
11550 && ! CONSTANT_P (XEXP (rtl
, 0))
11551 /* Not passed in memory. */
11552 && !MEM_P (DECL_INCOMING_RTL (decl
))
11553 /* Not passed by invisible reference. */
11554 && (!REG_P (XEXP (rtl
, 0))
11555 || REGNO (XEXP (rtl
, 0)) == HARD_FRAME_POINTER_REGNUM
11556 || REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
11557 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
11558 || REGNO (XEXP (rtl
, 0)) == ARG_POINTER_REGNUM
11561 /* Big endian correction check. */
11562 && BYTES_BIG_ENDIAN
11563 && TYPE_MODE (TREE_TYPE (decl
)) != GET_MODE (rtl
)
11564 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)))
11567 int offset
= (UNITS_PER_WORD
11568 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
))));
11570 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
11571 plus_constant (XEXP (rtl
, 0), offset
));
11574 else if (TREE_CODE (decl
) == VAR_DECL
11577 && GET_MODE (rtl
) != TYPE_MODE (TREE_TYPE (decl
))
11578 && BYTES_BIG_ENDIAN
)
11580 int rsize
= GET_MODE_SIZE (GET_MODE (rtl
));
11581 int dsize
= GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)));
11583 /* If a variable is declared "register" yet is smaller than
11584 a register, then if we store the variable to memory, it
11585 looks like we're storing a register-sized value, when in
11586 fact we are not. We need to adjust the offset of the
11587 storage location to reflect the actual value's bytes,
11588 else gdb will not be able to display it. */
11590 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
11591 plus_constant (XEXP (rtl
, 0), rsize
-dsize
));
11594 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
11595 and will have been substituted directly into all expressions that use it.
11596 C does not have such a concept, but C++ and other languages do. */
11597 if (!rtl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_INITIAL (decl
))
11598 rtl
= rtl_for_decl_init (DECL_INITIAL (decl
), TREE_TYPE (decl
));
11601 rtl
= targetm
.delegitimize_address (rtl
);
11603 /* If we don't look past the constant pool, we risk emitting a
11604 reference to a constant pool entry that isn't referenced from
11605 code, and thus is not emitted. */
11607 rtl
= avoid_constant_pool_reference (rtl
);
11612 /* We need to figure out what section we should use as the base for the
11613 address ranges where a given location is valid.
11614 1. If this particular DECL has a section associated with it, use that.
11615 2. If this function has a section associated with it, use that.
11616 3. Otherwise, use the text section.
11617 XXX: If you split a variable across multiple sections, we won't notice. */
11619 static const char *
11620 secname_for_decl (const_tree decl
)
11622 const char *secname
;
11624 if (VAR_OR_FUNCTION_DECL_P (decl
) && DECL_SECTION_NAME (decl
))
11626 tree sectree
= DECL_SECTION_NAME (decl
);
11627 secname
= TREE_STRING_POINTER (sectree
);
11629 else if (current_function_decl
&& DECL_SECTION_NAME (current_function_decl
))
11631 tree sectree
= DECL_SECTION_NAME (current_function_decl
);
11632 secname
= TREE_STRING_POINTER (sectree
);
11634 else if (cfun
&& in_cold_section_p
)
11635 secname
= crtl
->subsections
.cold_section_label
;
11637 secname
= text_section_label
;
11642 /* Check whether decl is a Fortran COMMON symbol. If not, NULL_TREE is
11643 returned. If so, the decl for the COMMON block is returned, and the
11644 value is the offset into the common block for the symbol. */
11647 fortran_common (tree decl
, HOST_WIDE_INT
*value
)
11649 tree val_expr
, cvar
;
11650 enum machine_mode mode
;
11651 HOST_WIDE_INT bitsize
, bitpos
;
11653 int volatilep
= 0, unsignedp
= 0;
11655 /* If the decl isn't a VAR_DECL, or if it isn't public or static, or if
11656 it does not have a value (the offset into the common area), or if it
11657 is thread local (as opposed to global) then it isn't common, and shouldn't
11658 be handled as such. */
11659 if (TREE_CODE (decl
) != VAR_DECL
11660 || !TREE_PUBLIC (decl
)
11661 || !TREE_STATIC (decl
)
11662 || !DECL_HAS_VALUE_EXPR_P (decl
)
11666 val_expr
= DECL_VALUE_EXPR (decl
);
11667 if (TREE_CODE (val_expr
) != COMPONENT_REF
)
11670 cvar
= get_inner_reference (val_expr
, &bitsize
, &bitpos
, &offset
,
11671 &mode
, &unsignedp
, &volatilep
, true);
11673 if (cvar
== NULL_TREE
11674 || TREE_CODE (cvar
) != VAR_DECL
11675 || DECL_ARTIFICIAL (cvar
)
11676 || !TREE_PUBLIC (cvar
))
11680 if (offset
!= NULL
)
11682 if (!host_integerp (offset
, 0))
11684 *value
= tree_low_cst (offset
, 0);
11687 *value
+= bitpos
/ BITS_PER_UNIT
;
11692 /* Dereference a location expression LOC if DECL is passed by invisible
11695 static dw_loc_descr_ref
11696 loc_by_reference (dw_loc_descr_ref loc
, tree decl
)
11698 HOST_WIDE_INT size
;
11699 enum dwarf_location_atom op
;
11704 if ((TREE_CODE (decl
) != PARM_DECL
&& TREE_CODE (decl
) != RESULT_DECL
)
11705 || !DECL_BY_REFERENCE (decl
))
11708 size
= int_size_in_bytes (TREE_TYPE (decl
));
11709 if (size
> DWARF2_ADDR_SIZE
|| size
== -1)
11711 else if (size
== DWARF2_ADDR_SIZE
)
11714 op
= DW_OP_deref_size
;
11715 add_loc_descr (&loc
, new_loc_descr (op
, size
, 0));
11719 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
11720 data attribute for a variable or a parameter. We generate the
11721 DW_AT_const_value attribute only in those cases where the given variable
11722 or parameter does not have a true "location" either in memory or in a
11723 register. This can happen (for example) when a constant is passed as an
11724 actual argument in a call to an inline function. (It's possible that
11725 these things can crop up in other ways also.) Note that one type of
11726 constant value which can be passed into an inlined function is a constant
11727 pointer. This can happen for example if an actual argument in an inlined
11728 function call evaluates to a compile-time constant address. */
11731 add_location_or_const_value_attribute (dw_die_ref die
, tree decl
,
11732 enum dwarf_attribute attr
)
11735 dw_loc_descr_ref descr
;
11736 var_loc_list
*loc_list
;
11737 struct var_loc_node
*node
;
11738 if (TREE_CODE (decl
) == ERROR_MARK
)
11741 gcc_assert (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
11742 || TREE_CODE (decl
) == RESULT_DECL
);
11744 /* See if we possibly have multiple locations for this variable. */
11745 loc_list
= lookup_decl_loc (decl
);
11747 /* If it truly has multiple locations, the first and last node will
11749 if (loc_list
&& loc_list
->first
!= loc_list
->last
)
11751 const char *endname
, *secname
;
11752 dw_loc_list_ref list
;
11754 enum var_init_status initialized
;
11756 /* Now that we know what section we are using for a base,
11757 actually construct the list of locations.
11758 The first location information is what is passed to the
11759 function that creates the location list, and the remaining
11760 locations just get added on to that list.
11761 Note that we only know the start address for a location
11762 (IE location changes), so to build the range, we use
11763 the range [current location start, next location start].
11764 This means we have to special case the last node, and generate
11765 a range of [last location start, end of function label]. */
11767 node
= loc_list
->first
;
11768 varloc
= NOTE_VAR_LOCATION (node
->var_loc_note
);
11769 secname
= secname_for_decl (decl
);
11771 if (NOTE_VAR_LOCATION_LOC (node
->var_loc_note
))
11772 initialized
= NOTE_VAR_LOCATION_STATUS (node
->var_loc_note
);
11774 initialized
= VAR_INIT_STATUS_INITIALIZED
;
11776 descr
= loc_by_reference (loc_descriptor (varloc
, initialized
), decl
);
11777 list
= new_loc_list (descr
, node
->label
, node
->next
->label
, secname
, 1);
11780 for (; node
->next
; node
= node
->next
)
11781 if (NOTE_VAR_LOCATION_LOC (node
->var_loc_note
) != NULL_RTX
)
11783 /* The variable has a location between NODE->LABEL and
11784 NODE->NEXT->LABEL. */
11785 enum var_init_status initialized
=
11786 NOTE_VAR_LOCATION_STATUS (node
->var_loc_note
);
11787 varloc
= NOTE_VAR_LOCATION (node
->var_loc_note
);
11788 descr
= loc_by_reference (loc_descriptor (varloc
, initialized
),
11790 add_loc_descr_to_loc_list (&list
, descr
,
11791 node
->label
, node
->next
->label
, secname
);
11794 /* If the variable has a location at the last label
11795 it keeps its location until the end of function. */
11796 if (NOTE_VAR_LOCATION_LOC (node
->var_loc_note
) != NULL_RTX
)
11798 char label_id
[MAX_ARTIFICIAL_LABEL_BYTES
];
11799 enum var_init_status initialized
=
11800 NOTE_VAR_LOCATION_STATUS (node
->var_loc_note
);
11802 varloc
= NOTE_VAR_LOCATION (node
->var_loc_note
);
11803 if (!current_function_decl
)
11804 endname
= text_end_label
;
11807 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_END_LABEL
,
11808 current_function_funcdef_no
);
11809 endname
= ggc_strdup (label_id
);
11811 descr
= loc_by_reference (loc_descriptor (varloc
, initialized
),
11813 add_loc_descr_to_loc_list (&list
, descr
,
11814 node
->label
, endname
, secname
);
11817 /* Finally, add the location list to the DIE, and we are done. */
11818 add_AT_loc_list (die
, attr
, list
);
11822 /* Try to get some constant RTL for this decl, and use that as the value of
11825 rtl
= rtl_for_decl_location (decl
);
11826 if (rtl
&& (CONSTANT_P (rtl
) || GET_CODE (rtl
) == CONST_STRING
))
11828 add_const_value_attribute (die
, rtl
);
11832 /* If we have tried to generate the location otherwise, and it
11833 didn't work out (we wouldn't be here if we did), and we have a one entry
11834 location list, try generating a location from that. */
11835 if (loc_list
&& loc_list
->first
)
11837 enum var_init_status status
;
11838 node
= loc_list
->first
;
11839 status
= NOTE_VAR_LOCATION_STATUS (node
->var_loc_note
);
11840 descr
= loc_descriptor (NOTE_VAR_LOCATION (node
->var_loc_note
), status
);
11843 descr
= loc_by_reference (descr
, decl
);
11844 add_AT_location_description (die
, attr
, descr
);
11849 /* We couldn't get any rtl, so try directly generating the location
11850 description from the tree. */
11851 descr
= loc_descriptor_from_tree (decl
);
11854 descr
= loc_by_reference (descr
, decl
);
11855 add_AT_location_description (die
, attr
, descr
);
11858 /* None of that worked, so it must not really have a location;
11859 try adding a constant value attribute from the DECL_INITIAL. */
11860 tree_add_const_value_attribute (die
, decl
);
11863 /* Helper function for tree_add_const_value_attribute. Natively encode
11864 initializer INIT into an array. Return true if successful. */
11867 native_encode_initializer (tree init
, unsigned char *array
, int size
)
11871 if (init
== NULL_TREE
)
11875 switch (TREE_CODE (init
))
11878 type
= TREE_TYPE (init
);
11879 if (TREE_CODE (type
) == ARRAY_TYPE
)
11881 tree enttype
= TREE_TYPE (type
);
11882 enum machine_mode mode
= TYPE_MODE (enttype
);
11884 if (GET_MODE_CLASS (mode
) != MODE_INT
|| GET_MODE_SIZE (mode
) != 1)
11886 if (int_size_in_bytes (type
) != size
)
11888 if (size
> TREE_STRING_LENGTH (init
))
11890 memcpy (array
, TREE_STRING_POINTER (init
),
11891 TREE_STRING_LENGTH (init
));
11892 memset (array
+ TREE_STRING_LENGTH (init
),
11893 '\0', size
- TREE_STRING_LENGTH (init
));
11896 memcpy (array
, TREE_STRING_POINTER (init
), size
);
11901 type
= TREE_TYPE (init
);
11902 if (int_size_in_bytes (type
) != size
)
11904 if (TREE_CODE (type
) == ARRAY_TYPE
)
11906 HOST_WIDE_INT min_index
;
11907 unsigned HOST_WIDE_INT cnt
;
11908 int curpos
= 0, fieldsize
;
11909 constructor_elt
*ce
;
11911 if (TYPE_DOMAIN (type
) == NULL_TREE
11912 || !host_integerp (TYPE_MIN_VALUE (TYPE_DOMAIN (type
)), 0))
11915 fieldsize
= int_size_in_bytes (TREE_TYPE (type
));
11916 if (fieldsize
<= 0)
11919 min_index
= tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (type
)), 0);
11920 memset (array
, '\0', size
);
11922 VEC_iterate (constructor_elt
, CONSTRUCTOR_ELTS (init
), cnt
, ce
);
11925 tree val
= ce
->value
;
11926 tree index
= ce
->index
;
11928 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
11929 pos
= (tree_low_cst (TREE_OPERAND (index
, 0), 0) - min_index
)
11932 pos
= (tree_low_cst (index
, 0) - min_index
) * fieldsize
;
11937 if (!native_encode_initializer (val
, array
+ pos
, fieldsize
))
11940 curpos
= pos
+ fieldsize
;
11941 if (index
&& TREE_CODE (index
) == RANGE_EXPR
)
11943 int count
= tree_low_cst (TREE_OPERAND (index
, 1), 0)
11944 - tree_low_cst (TREE_OPERAND (index
, 0), 0);
11948 memcpy (array
+ curpos
, array
+ pos
, fieldsize
);
11949 curpos
+= fieldsize
;
11952 gcc_assert (curpos
<= size
);
11956 else if (TREE_CODE (type
) == RECORD_TYPE
11957 || TREE_CODE (type
) == UNION_TYPE
)
11959 tree field
= NULL_TREE
;
11960 unsigned HOST_WIDE_INT cnt
;
11961 constructor_elt
*ce
;
11963 if (int_size_in_bytes (type
) != size
)
11966 if (TREE_CODE (type
) == RECORD_TYPE
)
11967 field
= TYPE_FIELDS (type
);
11970 VEC_iterate (constructor_elt
, CONSTRUCTOR_ELTS (init
), cnt
, ce
);
11971 cnt
++, field
= field
? TREE_CHAIN (field
) : 0)
11973 tree val
= ce
->value
;
11974 int pos
, fieldsize
;
11976 if (ce
->index
!= 0)
11982 if (field
== NULL_TREE
|| DECL_BIT_FIELD (field
))
11985 if (TREE_CODE (TREE_TYPE (field
)) == ARRAY_TYPE
11986 && TYPE_DOMAIN (TREE_TYPE (field
))
11987 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field
))))
11989 else if (DECL_SIZE_UNIT (field
) == NULL_TREE
11990 || !host_integerp (DECL_SIZE_UNIT (field
), 0))
11992 fieldsize
= tree_low_cst (DECL_SIZE_UNIT (field
), 0);
11993 pos
= int_byte_position (field
);
11994 gcc_assert (pos
+ fieldsize
<= size
);
11996 && !native_encode_initializer (val
, array
+ pos
, fieldsize
))
12002 case VIEW_CONVERT_EXPR
:
12003 case NON_LVALUE_EXPR
:
12004 return native_encode_initializer (TREE_OPERAND (init
, 0), array
, size
);
12006 return native_encode_expr (init
, array
, size
) == size
;
12010 /* If we don't have a copy of this variable in memory for some reason (such
12011 as a C++ member constant that doesn't have an out-of-line definition),
12012 we should tell the debugger about the constant value. */
12015 tree_add_const_value_attribute (dw_die_ref var_die
, tree decl
)
12018 tree type
= TREE_TYPE (decl
);
12021 if (TREE_CODE (decl
) != VAR_DECL
&& TREE_CODE (decl
) != CONST_DECL
)
12024 init
= DECL_INITIAL (decl
);
12025 if (TREE_READONLY (decl
) && ! TREE_THIS_VOLATILE (decl
) && init
)
12030 rtl
= rtl_for_decl_init (init
, type
);
12032 add_const_value_attribute (var_die
, rtl
);
12033 /* If the host and target are sane, try harder. */
12034 else if (CHAR_BIT
== 8 && BITS_PER_UNIT
== 8
12035 && initializer_constant_valid_p (init
, type
))
12037 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (init
));
12038 if (size
> 0 && (int) size
== size
)
12040 unsigned char *array
= GGC_CNEWVEC (unsigned char, size
);
12042 if (native_encode_initializer (init
, array
, size
))
12043 add_AT_vec (var_die
, DW_AT_const_value
, size
, 1, array
);
12048 /* Convert the CFI instructions for the current function into a
12049 location list. This is used for DW_AT_frame_base when we targeting
12050 a dwarf2 consumer that does not support the dwarf3
12051 DW_OP_call_frame_cfa. OFFSET is a constant to be added to all CFA
12054 static dw_loc_list_ref
12055 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset
)
12058 dw_loc_list_ref list
, *list_tail
;
12060 dw_cfa_location last_cfa
, next_cfa
;
12061 const char *start_label
, *last_label
, *section
;
12063 fde
= current_fde ();
12064 gcc_assert (fde
!= NULL
);
12066 section
= secname_for_decl (current_function_decl
);
12070 next_cfa
.reg
= INVALID_REGNUM
;
12071 next_cfa
.offset
= 0;
12072 next_cfa
.indirect
= 0;
12073 next_cfa
.base_offset
= 0;
12075 start_label
= fde
->dw_fde_begin
;
12077 /* ??? Bald assumption that the CIE opcode list does not contain
12078 advance opcodes. */
12079 for (cfi
= cie_cfi_head
; cfi
; cfi
= cfi
->dw_cfi_next
)
12080 lookup_cfa_1 (cfi
, &next_cfa
);
12082 last_cfa
= next_cfa
;
12083 last_label
= start_label
;
12085 for (cfi
= fde
->dw_fde_cfi
; cfi
; cfi
= cfi
->dw_cfi_next
)
12086 switch (cfi
->dw_cfi_opc
)
12088 case DW_CFA_set_loc
:
12089 case DW_CFA_advance_loc1
:
12090 case DW_CFA_advance_loc2
:
12091 case DW_CFA_advance_loc4
:
12092 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
12094 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
12095 start_label
, last_label
, section
,
12098 list_tail
= &(*list_tail
)->dw_loc_next
;
12099 last_cfa
= next_cfa
;
12100 start_label
= last_label
;
12102 last_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
12105 case DW_CFA_advance_loc
:
12106 /* The encoding is complex enough that we should never emit this. */
12107 case DW_CFA_remember_state
:
12108 case DW_CFA_restore_state
:
12109 /* We don't handle these two in this function. It would be possible
12110 if it were to be required. */
12111 gcc_unreachable ();
12114 lookup_cfa_1 (cfi
, &next_cfa
);
12118 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
12120 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
, offset
),
12121 start_label
, last_label
, section
,
12123 list_tail
= &(*list_tail
)->dw_loc_next
;
12124 start_label
= last_label
;
12126 *list_tail
= new_loc_list (build_cfa_loc (&next_cfa
, offset
),
12127 start_label
, fde
->dw_fde_end
, section
,
12133 /* Compute a displacement from the "steady-state frame pointer" to the
12134 frame base (often the same as the CFA), and store it in
12135 frame_pointer_fb_offset. OFFSET is added to the displacement
12136 before the latter is negated. */
12139 compute_frame_pointer_to_fb_displacement (HOST_WIDE_INT offset
)
12143 #ifdef FRAME_POINTER_CFA_OFFSET
12144 reg
= frame_pointer_rtx
;
12145 offset
+= FRAME_POINTER_CFA_OFFSET (current_function_decl
);
12147 reg
= arg_pointer_rtx
;
12148 offset
+= ARG_POINTER_CFA_OFFSET (current_function_decl
);
12151 elim
= eliminate_regs (reg
, VOIDmode
, NULL_RTX
);
12152 if (GET_CODE (elim
) == PLUS
)
12154 offset
+= INTVAL (XEXP (elim
, 1));
12155 elim
= XEXP (elim
, 0);
12158 gcc_assert ((SUPPORTS_STACK_ALIGNMENT
12159 && (elim
== hard_frame_pointer_rtx
12160 || elim
== stack_pointer_rtx
))
12161 || elim
== (frame_pointer_needed
12162 ? hard_frame_pointer_rtx
12163 : stack_pointer_rtx
));
12165 frame_pointer_fb_offset
= -offset
;
12168 /* Generate a DW_AT_name attribute given some string value to be included as
12169 the value of the attribute. */
12172 add_name_attribute (dw_die_ref die
, const char *name_string
)
12174 if (name_string
!= NULL
&& *name_string
!= 0)
12176 if (demangle_name_func
)
12177 name_string
= (*demangle_name_func
) (name_string
);
12179 add_AT_string (die
, DW_AT_name
, name_string
);
12183 /* Generate a DW_AT_comp_dir attribute for DIE. */
12186 add_comp_dir_attribute (dw_die_ref die
)
12188 const char *wd
= get_src_pwd ();
12190 add_AT_string (die
, DW_AT_comp_dir
, remap_debug_filename (wd
));
12193 /* Given a tree node describing an array bound (either lower or upper) output
12194 a representation for that bound. */
12197 add_bound_info (dw_die_ref subrange_die
, enum dwarf_attribute bound_attr
, tree bound
)
12199 switch (TREE_CODE (bound
))
12204 /* All fixed-bounds are represented by INTEGER_CST nodes. */
12206 if (! host_integerp (bound
, 0)
12207 || (bound_attr
== DW_AT_lower_bound
12208 && (((is_c_family () || is_java ()) && integer_zerop (bound
))
12209 || (is_fortran () && integer_onep (bound
)))))
12210 /* Use the default. */
12213 add_AT_unsigned (subrange_die
, bound_attr
, tree_low_cst (bound
, 0));
12217 case VIEW_CONVERT_EXPR
:
12218 add_bound_info (subrange_die
, bound_attr
, TREE_OPERAND (bound
, 0));
12228 dw_die_ref decl_die
= lookup_decl_die (bound
);
12229 dw_loc_descr_ref loc
;
12231 /* ??? Can this happen, or should the variable have been bound
12232 first? Probably it can, since I imagine that we try to create
12233 the types of parameters in the order in which they exist in
12234 the list, and won't have created a forward reference to a
12235 later parameter. */
12236 if (decl_die
!= NULL
)
12237 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
12240 loc
= loc_descriptor_from_tree_1 (bound
, 0);
12241 add_AT_location_description (subrange_die
, bound_attr
, loc
);
12248 /* Otherwise try to create a stack operation procedure to
12249 evaluate the value of the array bound. */
12251 dw_die_ref ctx
, decl_die
;
12252 dw_loc_descr_ref loc
;
12254 loc
= loc_descriptor_from_tree (bound
);
12258 if (current_function_decl
== 0)
12259 ctx
= comp_unit_die
;
12261 ctx
= lookup_decl_die (current_function_decl
);
12263 decl_die
= new_die (DW_TAG_variable
, ctx
, bound
);
12264 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
12265 add_type_attribute (decl_die
, TREE_TYPE (bound
), 1, 0, ctx
);
12266 add_AT_loc (decl_die
, DW_AT_location
, loc
);
12268 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
12274 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
12275 possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
12276 Note that the block of subscript information for an array type also
12277 includes information about the element type of the given array type. */
12280 add_subscript_info (dw_die_ref type_die
, tree type
, bool collapse_p
)
12282 unsigned dimension_number
;
12284 dw_die_ref subrange_die
;
12286 for (dimension_number
= 0;
12287 TREE_CODE (type
) == ARRAY_TYPE
&& (dimension_number
== 0 || collapse_p
);
12288 type
= TREE_TYPE (type
), dimension_number
++)
12290 tree domain
= TYPE_DOMAIN (type
);
12292 if (TYPE_STRING_FLAG (type
) && is_fortran () && dimension_number
> 0)
12295 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
12296 and (in GNU C only) variable bounds. Handle all three forms
12298 subrange_die
= new_die (DW_TAG_subrange_type
, type_die
, NULL
);
12301 /* We have an array type with specified bounds. */
12302 lower
= TYPE_MIN_VALUE (domain
);
12303 upper
= TYPE_MAX_VALUE (domain
);
12305 /* Define the index type. */
12306 if (TREE_TYPE (domain
))
12308 /* ??? This is probably an Ada unnamed subrange type. Ignore the
12309 TREE_TYPE field. We can't emit debug info for this
12310 because it is an unnamed integral type. */
12311 if (TREE_CODE (domain
) == INTEGER_TYPE
12312 && TYPE_NAME (domain
) == NULL_TREE
12313 && TREE_CODE (TREE_TYPE (domain
)) == INTEGER_TYPE
12314 && TYPE_NAME (TREE_TYPE (domain
)) == NULL_TREE
)
12317 add_type_attribute (subrange_die
, TREE_TYPE (domain
), 0, 0,
12321 /* ??? If upper is NULL, the array has unspecified length,
12322 but it does have a lower bound. This happens with Fortran
12324 Since the debugger is definitely going to need to know N
12325 to produce useful results, go ahead and output the lower
12326 bound solo, and hope the debugger can cope. */
12328 add_bound_info (subrange_die
, DW_AT_lower_bound
, lower
);
12330 add_bound_info (subrange_die
, DW_AT_upper_bound
, upper
);
12333 /* Otherwise we have an array type with an unspecified length. The
12334 DWARF-2 spec does not say how to handle this; let's just leave out the
12340 add_byte_size_attribute (dw_die_ref die
, tree tree_node
)
12344 switch (TREE_CODE (tree_node
))
12349 case ENUMERAL_TYPE
:
12352 case QUAL_UNION_TYPE
:
12353 size
= int_size_in_bytes (tree_node
);
12356 /* For a data member of a struct or union, the DW_AT_byte_size is
12357 generally given as the number of bytes normally allocated for an
12358 object of the *declared* type of the member itself. This is true
12359 even for bit-fields. */
12360 size
= simple_type_size_in_bits (field_type (tree_node
)) / BITS_PER_UNIT
;
12363 gcc_unreachable ();
12366 /* Note that `size' might be -1 when we get to this point. If it is, that
12367 indicates that the byte size of the entity in question is variable. We
12368 have no good way of expressing this fact in Dwarf at the present time,
12369 so just let the -1 pass on through. */
12370 add_AT_unsigned (die
, DW_AT_byte_size
, size
);
12373 /* For a FIELD_DECL node which represents a bit-field, output an attribute
12374 which specifies the distance in bits from the highest order bit of the
12375 "containing object" for the bit-field to the highest order bit of the
12378 For any given bit-field, the "containing object" is a hypothetical object
12379 (of some integral or enum type) within which the given bit-field lives. The
12380 type of this hypothetical "containing object" is always the same as the
12381 declared type of the individual bit-field itself. The determination of the
12382 exact location of the "containing object" for a bit-field is rather
12383 complicated. It's handled by the `field_byte_offset' function (above).
12385 Note that it is the size (in bytes) of the hypothetical "containing object"
12386 which will be given in the DW_AT_byte_size attribute for this bit-field.
12387 (See `byte_size_attribute' above). */
12390 add_bit_offset_attribute (dw_die_ref die
, tree decl
)
12392 HOST_WIDE_INT object_offset_in_bytes
= field_byte_offset (decl
);
12393 tree type
= DECL_BIT_FIELD_TYPE (decl
);
12394 HOST_WIDE_INT bitpos_int
;
12395 HOST_WIDE_INT highest_order_object_bit_offset
;
12396 HOST_WIDE_INT highest_order_field_bit_offset
;
12397 HOST_WIDE_INT
unsigned bit_offset
;
12399 /* Must be a field and a bit field. */
12400 gcc_assert (type
&& TREE_CODE (decl
) == FIELD_DECL
);
12402 /* We can't yet handle bit-fields whose offsets are variable, so if we
12403 encounter such things, just return without generating any attribute
12404 whatsoever. Likewise for variable or too large size. */
12405 if (! host_integerp (bit_position (decl
), 0)
12406 || ! host_integerp (DECL_SIZE (decl
), 1))
12409 bitpos_int
= int_bit_position (decl
);
12411 /* Note that the bit offset is always the distance (in bits) from the
12412 highest-order bit of the "containing object" to the highest-order bit of
12413 the bit-field itself. Since the "high-order end" of any object or field
12414 is different on big-endian and little-endian machines, the computation
12415 below must take account of these differences. */
12416 highest_order_object_bit_offset
= object_offset_in_bytes
* BITS_PER_UNIT
;
12417 highest_order_field_bit_offset
= bitpos_int
;
12419 if (! BYTES_BIG_ENDIAN
)
12421 highest_order_field_bit_offset
+= tree_low_cst (DECL_SIZE (decl
), 0);
12422 highest_order_object_bit_offset
+= simple_type_size_in_bits (type
);
12426 = (! BYTES_BIG_ENDIAN
12427 ? highest_order_object_bit_offset
- highest_order_field_bit_offset
12428 : highest_order_field_bit_offset
- highest_order_object_bit_offset
);
12430 add_AT_unsigned (die
, DW_AT_bit_offset
, bit_offset
);
12433 /* For a FIELD_DECL node which represents a bit field, output an attribute
12434 which specifies the length in bits of the given field. */
12437 add_bit_size_attribute (dw_die_ref die
, tree decl
)
12439 /* Must be a field and a bit field. */
12440 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
12441 && DECL_BIT_FIELD_TYPE (decl
));
12443 if (host_integerp (DECL_SIZE (decl
), 1))
12444 add_AT_unsigned (die
, DW_AT_bit_size
, tree_low_cst (DECL_SIZE (decl
), 1));
12447 /* If the compiled language is ANSI C, then add a 'prototyped'
12448 attribute, if arg types are given for the parameters of a function. */
12451 add_prototyped_attribute (dw_die_ref die
, tree func_type
)
12453 if (get_AT_unsigned (comp_unit_die
, DW_AT_language
) == DW_LANG_C89
12454 && TYPE_ARG_TYPES (func_type
) != NULL
)
12455 add_AT_flag (die
, DW_AT_prototyped
, 1);
12458 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
12459 by looking in either the type declaration or object declaration
12463 add_abstract_origin_attribute (dw_die_ref die
, tree origin
)
12465 dw_die_ref origin_die
= NULL
;
12467 if (TREE_CODE (origin
) != FUNCTION_DECL
)
12469 /* We may have gotten separated from the block for the inlined
12470 function, if we're in an exception handler or some such; make
12471 sure that the abstract function has been written out.
12473 Doing this for nested functions is wrong, however; functions are
12474 distinct units, and our context might not even be inline. */
12478 fn
= TYPE_STUB_DECL (fn
);
12480 fn
= decl_function_context (fn
);
12482 dwarf2out_abstract_function (fn
);
12485 if (DECL_P (origin
))
12486 origin_die
= lookup_decl_die (origin
);
12487 else if (TYPE_P (origin
))
12488 origin_die
= lookup_type_die (origin
);
12490 /* XXX: Functions that are never lowered don't always have correct block
12491 trees (in the case of java, they simply have no block tree, in some other
12492 languages). For these functions, there is nothing we can really do to
12493 output correct debug info for inlined functions in all cases. Rather
12494 than die, we'll just produce deficient debug info now, in that we will
12495 have variables without a proper abstract origin. In the future, when all
12496 functions are lowered, we should re-add a gcc_assert (origin_die)
12500 add_AT_die_ref (die
, DW_AT_abstract_origin
, origin_die
);
12503 /* We do not currently support the pure_virtual attribute. */
12506 add_pure_or_virtual_attribute (dw_die_ref die
, tree func_decl
)
12508 if (DECL_VINDEX (func_decl
))
12510 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
12512 if (host_integerp (DECL_VINDEX (func_decl
), 0))
12513 add_AT_loc (die
, DW_AT_vtable_elem_location
,
12514 new_loc_descr (DW_OP_constu
,
12515 tree_low_cst (DECL_VINDEX (func_decl
), 0),
12518 /* GNU extension: Record what type this method came from originally. */
12519 if (debug_info_level
> DINFO_LEVEL_TERSE
)
12520 add_AT_die_ref (die
, DW_AT_containing_type
,
12521 lookup_type_die (DECL_CONTEXT (func_decl
)));
12525 /* Add source coordinate attributes for the given decl. */
12528 add_src_coords_attributes (dw_die_ref die
, tree decl
)
12530 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
12532 add_AT_file (die
, DW_AT_decl_file
, lookup_filename (s
.file
));
12533 add_AT_unsigned (die
, DW_AT_decl_line
, s
.line
);
12536 /* Add a DW_AT_name attribute and source coordinate attribute for the
12537 given decl, but only if it actually has a name. */
12540 add_name_and_src_coords_attributes (dw_die_ref die
, tree decl
)
12544 decl_name
= DECL_NAME (decl
);
12545 if (decl_name
!= NULL
&& IDENTIFIER_POINTER (decl_name
) != NULL
)
12547 add_name_attribute (die
, dwarf2_name (decl
, 0));
12548 if (! DECL_ARTIFICIAL (decl
))
12549 add_src_coords_attributes (die
, decl
);
12551 if ((TREE_CODE (decl
) == FUNCTION_DECL
|| TREE_CODE (decl
) == VAR_DECL
)
12552 && TREE_PUBLIC (decl
)
12553 && DECL_ASSEMBLER_NAME (decl
) != DECL_NAME (decl
)
12554 && !DECL_ABSTRACT (decl
)
12555 && !(TREE_CODE (decl
) == VAR_DECL
&& DECL_REGISTER (decl
))
12557 add_AT_string (die
, DW_AT_MIPS_linkage_name
,
12558 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
12561 #ifdef VMS_DEBUGGING_INFO
12562 /* Get the function's name, as described by its RTL. This may be different
12563 from the DECL_NAME name used in the source file. */
12564 if (TREE_CODE (decl
) == FUNCTION_DECL
&& TREE_ASM_WRITTEN (decl
))
12566 add_AT_addr (die
, DW_AT_VMS_rtnbeg_pd_address
,
12567 XEXP (DECL_RTL (decl
), 0));
12568 VEC_safe_push (tree
, gc
, used_rtx_array
, XEXP (DECL_RTL (decl
), 0));
12573 /* Push a new declaration scope. */
12576 push_decl_scope (tree scope
)
12578 VEC_safe_push (tree
, gc
, decl_scope_table
, scope
);
12581 /* Pop a declaration scope. */
12584 pop_decl_scope (void)
12586 VEC_pop (tree
, decl_scope_table
);
12589 /* Return the DIE for the scope that immediately contains this type.
12590 Non-named types get global scope. Named types nested in other
12591 types get their containing scope if it's open, or global scope
12592 otherwise. All other types (i.e. function-local named types) get
12593 the current active scope. */
12596 scope_die_for (tree t
, dw_die_ref context_die
)
12598 dw_die_ref scope_die
= NULL
;
12599 tree containing_scope
;
12602 /* Non-types always go in the current scope. */
12603 gcc_assert (TYPE_P (t
));
12605 containing_scope
= TYPE_CONTEXT (t
);
12607 /* Use the containing namespace if it was passed in (for a declaration). */
12608 if (containing_scope
&& TREE_CODE (containing_scope
) == NAMESPACE_DECL
)
12610 if (context_die
== lookup_decl_die (containing_scope
))
12613 containing_scope
= NULL_TREE
;
12616 /* Ignore function type "scopes" from the C frontend. They mean that
12617 a tagged type is local to a parmlist of a function declarator, but
12618 that isn't useful to DWARF. */
12619 if (containing_scope
&& TREE_CODE (containing_scope
) == FUNCTION_TYPE
)
12620 containing_scope
= NULL_TREE
;
12622 if (containing_scope
== NULL_TREE
)
12623 scope_die
= comp_unit_die
;
12624 else if (TYPE_P (containing_scope
))
12626 /* For types, we can just look up the appropriate DIE. But
12627 first we check to see if we're in the middle of emitting it
12628 so we know where the new DIE should go. */
12629 for (i
= VEC_length (tree
, decl_scope_table
) - 1; i
>= 0; --i
)
12630 if (VEC_index (tree
, decl_scope_table
, i
) == containing_scope
)
12635 gcc_assert (debug_info_level
<= DINFO_LEVEL_TERSE
12636 || TREE_ASM_WRITTEN (containing_scope
));
12638 /* If none of the current dies are suitable, we get file scope. */
12639 scope_die
= comp_unit_die
;
12642 scope_die
= lookup_type_die (containing_scope
);
12645 scope_die
= context_die
;
12650 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
12653 local_scope_p (dw_die_ref context_die
)
12655 for (; context_die
; context_die
= context_die
->die_parent
)
12656 if (context_die
->die_tag
== DW_TAG_inlined_subroutine
12657 || context_die
->die_tag
== DW_TAG_subprogram
)
12663 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
12664 whether or not to treat a DIE in this context as a declaration. */
12667 class_or_namespace_scope_p (dw_die_ref context_die
)
12669 return (context_die
12670 && (context_die
->die_tag
== DW_TAG_structure_type
12671 || context_die
->die_tag
== DW_TAG_class_type
12672 || context_die
->die_tag
== DW_TAG_interface_type
12673 || context_die
->die_tag
== DW_TAG_union_type
12674 || context_die
->die_tag
== DW_TAG_namespace
));
12677 /* Many forms of DIEs require a "type description" attribute. This
12678 routine locates the proper "type descriptor" die for the type given
12679 by 'type', and adds a DW_AT_type attribute below the given die. */
12682 add_type_attribute (dw_die_ref object_die
, tree type
, int decl_const
,
12683 int decl_volatile
, dw_die_ref context_die
)
12685 enum tree_code code
= TREE_CODE (type
);
12686 dw_die_ref type_die
= NULL
;
12688 /* ??? If this type is an unnamed subrange type of an integral, floating-point
12689 or fixed-point type, use the inner type. This is because we have no
12690 support for unnamed types in base_type_die. This can happen if this is
12691 an Ada subrange type. Correct solution is emit a subrange type die. */
12692 if ((code
== INTEGER_TYPE
|| code
== REAL_TYPE
|| code
== FIXED_POINT_TYPE
)
12693 && TREE_TYPE (type
) != 0 && TYPE_NAME (type
) == 0)
12694 type
= TREE_TYPE (type
), code
= TREE_CODE (type
);
12696 if (code
== ERROR_MARK
12697 /* Handle a special case. For functions whose return type is void, we
12698 generate *no* type attribute. (Note that no object may have type
12699 `void', so this only applies to function return types). */
12700 || code
== VOID_TYPE
)
12703 type_die
= modified_type_die (type
,
12704 decl_const
|| TYPE_READONLY (type
),
12705 decl_volatile
|| TYPE_VOLATILE (type
),
12708 if (type_die
!= NULL
)
12709 add_AT_die_ref (object_die
, DW_AT_type
, type_die
);
12712 /* Given an object die, add the calling convention attribute for the
12713 function call type. */
12715 add_calling_convention_attribute (dw_die_ref subr_die
, tree decl
)
12717 enum dwarf_calling_convention value
= DW_CC_normal
;
12719 value
= targetm
.dwarf_calling_convention (TREE_TYPE (decl
));
12721 /* DWARF doesn't provide a way to identify a program's source-level
12722 entry point. DW_AT_calling_convention attributes are only meant
12723 to describe functions' calling conventions. However, lacking a
12724 better way to signal the Fortran main program, we use this for the
12725 time being, following existing custom. */
12727 && !strcmp (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)), "MAIN__"))
12728 value
= DW_CC_program
;
12730 /* Only add the attribute if the backend requests it, and
12731 is not DW_CC_normal. */
12732 if (value
&& (value
!= DW_CC_normal
))
12733 add_AT_unsigned (subr_die
, DW_AT_calling_convention
, value
);
12736 /* Given a tree pointer to a struct, class, union, or enum type node, return
12737 a pointer to the (string) tag name for the given type, or zero if the type
12738 was declared without a tag. */
12740 static const char *
12741 type_tag (const_tree type
)
12743 const char *name
= 0;
12745 if (TYPE_NAME (type
) != 0)
12749 /* Find the IDENTIFIER_NODE for the type name. */
12750 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
12751 t
= TYPE_NAME (type
);
12753 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
12754 a TYPE_DECL node, regardless of whether or not a `typedef' was
12756 else if (TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
12757 && ! DECL_IGNORED_P (TYPE_NAME (type
)))
12759 /* We want to be extra verbose. Don't call dwarf_name if
12760 DECL_NAME isn't set. The default hook for decl_printable_name
12761 doesn't like that, and in this context it's correct to return
12762 0, instead of "<anonymous>" or the like. */
12763 if (DECL_NAME (TYPE_NAME (type
)))
12764 name
= lang_hooks
.dwarf_name (TYPE_NAME (type
), 2);
12767 /* Now get the name as a string, or invent one. */
12768 if (!name
&& t
!= 0)
12769 name
= IDENTIFIER_POINTER (t
);
12772 return (name
== 0 || *name
== '\0') ? 0 : name
;
12775 /* Return the type associated with a data member, make a special check
12776 for bit field types. */
12779 member_declared_type (const_tree member
)
12781 return (DECL_BIT_FIELD_TYPE (member
)
12782 ? DECL_BIT_FIELD_TYPE (member
) : TREE_TYPE (member
));
12785 /* Get the decl's label, as described by its RTL. This may be different
12786 from the DECL_NAME name used in the source file. */
12789 static const char *
12790 decl_start_label (tree decl
)
12793 const char *fnname
;
12795 x
= DECL_RTL (decl
);
12796 gcc_assert (MEM_P (x
));
12799 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
12801 fnname
= XSTR (x
, 0);
12806 /* These routines generate the internal representation of the DIE's for
12807 the compilation unit. Debugging information is collected by walking
12808 the declaration trees passed in from dwarf2out_decl(). */
12811 gen_array_type_die (tree type
, dw_die_ref context_die
)
12813 dw_die_ref scope_die
= scope_die_for (type
, context_die
);
12814 dw_die_ref array_die
;
12816 /* GNU compilers represent multidimensional array types as sequences of one
12817 dimensional array types whose element types are themselves array types.
12818 We sometimes squish that down to a single array_type DIE with multiple
12819 subscripts in the Dwarf debugging info. The draft Dwarf specification
12820 say that we are allowed to do this kind of compression in C, because
12821 there is no difference between an array of arrays and a multidimensional
12822 array. We don't do this for Ada to remain as close as possible to the
12823 actual representation, which is especially important against the language
12824 flexibilty wrt arrays of variable size. */
12826 bool collapse_nested_arrays
= !is_ada ();
12829 /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
12830 DW_TAG_string_type doesn't have DW_AT_type attribute). */
12831 if (TYPE_STRING_FLAG (type
)
12832 && TREE_CODE (type
) == ARRAY_TYPE
12834 && TYPE_MODE (TREE_TYPE (type
)) == TYPE_MODE (char_type_node
))
12836 HOST_WIDE_INT size
;
12838 array_die
= new_die (DW_TAG_string_type
, scope_die
, type
);
12839 add_name_attribute (array_die
, type_tag (type
));
12840 equate_type_number_to_die (type
, array_die
);
12841 size
= int_size_in_bytes (type
);
12843 add_AT_unsigned (array_die
, DW_AT_byte_size
, size
);
12844 else if (TYPE_DOMAIN (type
) != NULL_TREE
12845 && TYPE_MAX_VALUE (TYPE_DOMAIN (type
)) != NULL_TREE
12846 && DECL_P (TYPE_MAX_VALUE (TYPE_DOMAIN (type
))))
12848 tree szdecl
= TYPE_MAX_VALUE (TYPE_DOMAIN (type
));
12849 dw_loc_descr_ref loc
= loc_descriptor_from_tree (szdecl
);
12851 size
= int_size_in_bytes (TREE_TYPE (szdecl
));
12852 if (loc
&& size
> 0)
12854 add_AT_loc (array_die
, DW_AT_string_length
, loc
);
12855 if (size
!= DWARF2_ADDR_SIZE
)
12856 add_AT_unsigned (array_die
, DW_AT_byte_size
, size
);
12862 /* ??? The SGI dwarf reader fails for array of array of enum types
12863 (e.g. const enum machine_mode insn_operand_mode[2][10]) unless the inner
12864 array type comes before the outer array type. We thus call gen_type_die
12865 before we new_die and must prevent nested array types collapsing for this
12868 #ifdef MIPS_DEBUGGING_INFO
12869 gen_type_die (TREE_TYPE (type
), context_die
);
12870 collapse_nested_arrays
= false;
12873 array_die
= new_die (DW_TAG_array_type
, scope_die
, type
);
12874 add_name_attribute (array_die
, type_tag (type
));
12875 equate_type_number_to_die (type
, array_die
);
12877 if (TREE_CODE (type
) == VECTOR_TYPE
)
12879 /* The frontend feeds us a representation for the vector as a struct
12880 containing an array. Pull out the array type. */
12881 type
= TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type
)));
12882 add_AT_flag (array_die
, DW_AT_GNU_vector
, 1);
12885 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
12887 && TREE_CODE (type
) == ARRAY_TYPE
12888 && TREE_CODE (TREE_TYPE (type
)) == ARRAY_TYPE
12889 && !TYPE_STRING_FLAG (TREE_TYPE (type
)))
12890 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_col_major
);
12893 /* We default the array ordering. SDB will probably do
12894 the right things even if DW_AT_ordering is not present. It's not even
12895 an issue until we start to get into multidimensional arrays anyway. If
12896 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
12897 then we'll have to put the DW_AT_ordering attribute back in. (But if
12898 and when we find out that we need to put these in, we will only do so
12899 for multidimensional arrays. */
12900 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_row_major
);
12903 #ifdef MIPS_DEBUGGING_INFO
12904 /* The SGI compilers handle arrays of unknown bound by setting
12905 AT_declaration and not emitting any subrange DIEs. */
12906 if (! TYPE_DOMAIN (type
))
12907 add_AT_flag (array_die
, DW_AT_declaration
, 1);
12910 add_subscript_info (array_die
, type
, collapse_nested_arrays
);
12912 /* Add representation of the type of the elements of this array type and
12913 emit the corresponding DIE if we haven't done it already. */
12914 element_type
= TREE_TYPE (type
);
12915 if (collapse_nested_arrays
)
12916 while (TREE_CODE (element_type
) == ARRAY_TYPE
)
12918 if (TYPE_STRING_FLAG (element_type
) && is_fortran ())
12920 element_type
= TREE_TYPE (element_type
);
12923 #ifndef MIPS_DEBUGGING_INFO
12924 gen_type_die (element_type
, context_die
);
12927 add_type_attribute (array_die
, element_type
, 0, 0, context_die
);
12929 if (get_AT (array_die
, DW_AT_name
))
12930 add_pubtype (type
, array_die
);
12933 static dw_loc_descr_ref
12934 descr_info_loc (tree val
, tree base_decl
)
12936 HOST_WIDE_INT size
;
12937 dw_loc_descr_ref loc
, loc2
;
12938 enum dwarf_location_atom op
;
12940 if (val
== base_decl
)
12941 return new_loc_descr (DW_OP_push_object_address
, 0, 0);
12943 switch (TREE_CODE (val
))
12946 return descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
12948 return loc_descriptor_from_tree_1 (val
, 0);
12950 if (host_integerp (val
, 0))
12951 return int_loc_descriptor (tree_low_cst (val
, 0));
12954 size
= int_size_in_bytes (TREE_TYPE (val
));
12957 loc
= descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
12960 if (size
== DWARF2_ADDR_SIZE
)
12961 add_loc_descr (&loc
, new_loc_descr (DW_OP_deref
, 0, 0));
12963 add_loc_descr (&loc
, new_loc_descr (DW_OP_deref_size
, size
, 0));
12965 case POINTER_PLUS_EXPR
:
12967 if (host_integerp (TREE_OPERAND (val
, 1), 1)
12968 && (unsigned HOST_WIDE_INT
) tree_low_cst (TREE_OPERAND (val
, 1), 1)
12971 loc
= descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
12974 add_loc_descr (&loc
,
12975 new_loc_descr (DW_OP_plus_uconst
,
12976 tree_low_cst (TREE_OPERAND (val
, 1),
12983 loc
= descr_info_loc (TREE_OPERAND (val
, 0), base_decl
);
12986 loc2
= descr_info_loc (TREE_OPERAND (val
, 1), base_decl
);
12989 add_loc_descr (&loc
, loc2
);
12990 add_loc_descr (&loc2
, new_loc_descr (op
, 0, 0));
13012 add_descr_info_field (dw_die_ref die
, enum dwarf_attribute attr
,
13013 tree val
, tree base_decl
)
13015 dw_loc_descr_ref loc
;
13017 if (host_integerp (val
, 0))
13019 add_AT_unsigned (die
, attr
, tree_low_cst (val
, 0));
13023 loc
= descr_info_loc (val
, base_decl
);
13027 add_AT_loc (die
, attr
, loc
);
13030 /* This routine generates DIE for array with hidden descriptor, details
13031 are filled into *info by a langhook. */
13034 gen_descr_array_type_die (tree type
, struct array_descr_info
*info
,
13035 dw_die_ref context_die
)
13037 dw_die_ref scope_die
= scope_die_for (type
, context_die
);
13038 dw_die_ref array_die
;
13041 array_die
= new_die (DW_TAG_array_type
, scope_die
, type
);
13042 add_name_attribute (array_die
, type_tag (type
));
13043 equate_type_number_to_die (type
, array_die
);
13045 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
13047 && info
->ndimensions
>= 2)
13048 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_col_major
);
13050 if (info
->data_location
)
13051 add_descr_info_field (array_die
, DW_AT_data_location
, info
->data_location
,
13053 if (info
->associated
)
13054 add_descr_info_field (array_die
, DW_AT_associated
, info
->associated
,
13056 if (info
->allocated
)
13057 add_descr_info_field (array_die
, DW_AT_allocated
, info
->allocated
,
13060 for (dim
= 0; dim
< info
->ndimensions
; dim
++)
13062 dw_die_ref subrange_die
13063 = new_die (DW_TAG_subrange_type
, array_die
, NULL
);
13065 if (info
->dimen
[dim
].lower_bound
)
13067 /* If it is the default value, omit it. */
13068 if ((is_c_family () || is_java ())
13069 && integer_zerop (info
->dimen
[dim
].lower_bound
))
13071 else if (is_fortran ()
13072 && integer_onep (info
->dimen
[dim
].lower_bound
))
13075 add_descr_info_field (subrange_die
, DW_AT_lower_bound
,
13076 info
->dimen
[dim
].lower_bound
,
13079 if (info
->dimen
[dim
].upper_bound
)
13080 add_descr_info_field (subrange_die
, DW_AT_upper_bound
,
13081 info
->dimen
[dim
].upper_bound
,
13083 if (info
->dimen
[dim
].stride
)
13084 add_descr_info_field (subrange_die
, DW_AT_byte_stride
,
13085 info
->dimen
[dim
].stride
,
13089 gen_type_die (info
->element_type
, context_die
);
13090 add_type_attribute (array_die
, info
->element_type
, 0, 0, context_die
);
13092 if (get_AT (array_die
, DW_AT_name
))
13093 add_pubtype (type
, array_die
);
13098 gen_entry_point_die (tree decl
, dw_die_ref context_die
)
13100 tree origin
= decl_ultimate_origin (decl
);
13101 dw_die_ref decl_die
= new_die (DW_TAG_entry_point
, context_die
, decl
);
13103 if (origin
!= NULL
)
13104 add_abstract_origin_attribute (decl_die
, origin
);
13107 add_name_and_src_coords_attributes (decl_die
, decl
);
13108 add_type_attribute (decl_die
, TREE_TYPE (TREE_TYPE (decl
)),
13109 0, 0, context_die
);
13112 if (DECL_ABSTRACT (decl
))
13113 equate_decl_number_to_die (decl
, decl_die
);
13115 add_AT_lbl_id (decl_die
, DW_AT_low_pc
, decl_start_label (decl
));
13119 /* Walk through the list of incomplete types again, trying once more to
13120 emit full debugging info for them. */
13123 retry_incomplete_types (void)
13127 for (i
= VEC_length (tree
, incomplete_types
) - 1; i
>= 0; i
--)
13128 gen_type_die (VEC_index (tree
, incomplete_types
, i
), comp_unit_die
);
13131 /* Generate a DIE to represent an inlined instance of an enumeration type. */
13134 gen_inlined_enumeration_type_die (tree type
, dw_die_ref context_die
)
13136 dw_die_ref type_die
= new_die (DW_TAG_enumeration_type
, context_die
, type
);
13138 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
13139 be incomplete and such types are not marked. */
13140 add_abstract_origin_attribute (type_die
, type
);
13143 /* Determine what tag to use for a record type. */
13145 static enum dwarf_tag
13146 record_type_tag (tree type
)
13148 if (! lang_hooks
.types
.classify_record
)
13149 return DW_TAG_structure_type
;
13151 switch (lang_hooks
.types
.classify_record (type
))
13153 case RECORD_IS_STRUCT
:
13154 return DW_TAG_structure_type
;
13156 case RECORD_IS_CLASS
:
13157 return DW_TAG_class_type
;
13159 case RECORD_IS_INTERFACE
:
13160 return DW_TAG_interface_type
;
13163 gcc_unreachable ();
13167 /* Generate a DIE to represent an inlined instance of a structure type. */
13170 gen_inlined_structure_type_die (tree type
, dw_die_ref context_die
)
13172 dw_die_ref type_die
= new_die (record_type_tag (type
), context_die
, type
);
13174 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
13175 be incomplete and such types are not marked. */
13176 add_abstract_origin_attribute (type_die
, type
);
13179 /* Generate a DIE to represent an inlined instance of a union type. */
13182 gen_inlined_union_type_die (tree type
, dw_die_ref context_die
)
13184 dw_die_ref type_die
= new_die (DW_TAG_union_type
, context_die
, type
);
13186 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
13187 be incomplete and such types are not marked. */
13188 add_abstract_origin_attribute (type_die
, type
);
13191 /* Generate a DIE to represent an enumeration type. Note that these DIEs
13192 include all of the information about the enumeration values also. Each
13193 enumerated type name/value is listed as a child of the enumerated type
13197 gen_enumeration_type_die (tree type
, dw_die_ref context_die
)
13199 dw_die_ref type_die
= lookup_type_die (type
);
13201 if (type_die
== NULL
)
13203 type_die
= new_die (DW_TAG_enumeration_type
,
13204 scope_die_for (type
, context_die
), type
);
13205 equate_type_number_to_die (type
, type_die
);
13206 add_name_attribute (type_die
, type_tag (type
));
13208 else if (! TYPE_SIZE (type
))
13211 remove_AT (type_die
, DW_AT_declaration
);
13213 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
13214 given enum type is incomplete, do not generate the DW_AT_byte_size
13215 attribute or the DW_AT_element_list attribute. */
13216 if (TYPE_SIZE (type
))
13220 TREE_ASM_WRITTEN (type
) = 1;
13221 add_byte_size_attribute (type_die
, type
);
13222 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
13223 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
13225 /* If the first reference to this type was as the return type of an
13226 inline function, then it may not have a parent. Fix this now. */
13227 if (type_die
->die_parent
== NULL
)
13228 add_child_die (scope_die_for (type
, context_die
), type_die
);
13230 for (link
= TYPE_VALUES (type
);
13231 link
!= NULL
; link
= TREE_CHAIN (link
))
13233 dw_die_ref enum_die
= new_die (DW_TAG_enumerator
, type_die
, link
);
13234 tree value
= TREE_VALUE (link
);
13236 add_name_attribute (enum_die
,
13237 IDENTIFIER_POINTER (TREE_PURPOSE (link
)));
13239 if (host_integerp (value
, TYPE_UNSIGNED (TREE_TYPE (value
))))
13240 /* DWARF2 does not provide a way of indicating whether or
13241 not enumeration constants are signed or unsigned. GDB
13242 always assumes the values are signed, so we output all
13243 values as if they were signed. That means that
13244 enumeration constants with very large unsigned values
13245 will appear to have negative values in the debugger. */
13246 add_AT_int (enum_die
, DW_AT_const_value
,
13247 tree_low_cst (value
, tree_int_cst_sgn (value
) > 0));
13251 add_AT_flag (type_die
, DW_AT_declaration
, 1);
13253 if (get_AT (type_die
, DW_AT_name
))
13254 add_pubtype (type
, type_die
);
13259 /* Generate a DIE to represent either a real live formal parameter decl or to
13260 represent just the type of some formal parameter position in some function
13263 Note that this routine is a bit unusual because its argument may be a
13264 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
13265 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
13266 node. If it's the former then this function is being called to output a
13267 DIE to represent a formal parameter object (or some inlining thereof). If
13268 it's the latter, then this function is only being called to output a
13269 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
13270 argument type of some subprogram type. */
13273 gen_formal_parameter_die (tree node
, dw_die_ref context_die
)
13275 dw_die_ref parm_die
13276 = new_die (DW_TAG_formal_parameter
, context_die
, node
);
13279 switch (TREE_CODE_CLASS (TREE_CODE (node
)))
13281 case tcc_declaration
:
13282 origin
= decl_ultimate_origin (node
);
13283 if (origin
!= NULL
)
13284 add_abstract_origin_attribute (parm_die
, origin
);
13287 tree type
= TREE_TYPE (node
);
13288 add_name_and_src_coords_attributes (parm_die
, node
);
13289 if (DECL_BY_REFERENCE (node
))
13290 add_type_attribute (parm_die
, TREE_TYPE (type
), 0, 0,
13293 add_type_attribute (parm_die
, type
,
13294 TREE_READONLY (node
),
13295 TREE_THIS_VOLATILE (node
),
13297 if (DECL_ARTIFICIAL (node
))
13298 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
13301 equate_decl_number_to_die (node
, parm_die
);
13302 if (! DECL_ABSTRACT (node
))
13303 add_location_or_const_value_attribute (parm_die
, node
, DW_AT_location
);
13308 /* We were called with some kind of a ..._TYPE node. */
13309 add_type_attribute (parm_die
, node
, 0, 0, context_die
);
13313 gcc_unreachable ();
13319 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
13320 at the end of an (ANSI prototyped) formal parameters list. */
13323 gen_unspecified_parameters_die (tree decl_or_type
, dw_die_ref context_die
)
13325 new_die (DW_TAG_unspecified_parameters
, context_die
, decl_or_type
);
13328 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
13329 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
13330 parameters as specified in some function type specification (except for
13331 those which appear as part of a function *definition*). */
13334 gen_formal_types_die (tree function_or_method_type
, dw_die_ref context_die
)
13337 tree formal_type
= NULL
;
13338 tree first_parm_type
;
13341 if (TREE_CODE (function_or_method_type
) == FUNCTION_DECL
)
13343 arg
= DECL_ARGUMENTS (function_or_method_type
);
13344 function_or_method_type
= TREE_TYPE (function_or_method_type
);
13349 first_parm_type
= TYPE_ARG_TYPES (function_or_method_type
);
13351 /* Make our first pass over the list of formal parameter types and output a
13352 DW_TAG_formal_parameter DIE for each one. */
13353 for (link
= first_parm_type
; link
; )
13355 dw_die_ref parm_die
;
13357 formal_type
= TREE_VALUE (link
);
13358 if (formal_type
== void_type_node
)
13361 /* Output a (nameless) DIE to represent the formal parameter itself. */
13362 parm_die
= gen_formal_parameter_die (formal_type
, context_die
);
13363 if ((TREE_CODE (function_or_method_type
) == METHOD_TYPE
13364 && link
== first_parm_type
)
13365 || (arg
&& DECL_ARTIFICIAL (arg
)))
13366 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
13368 link
= TREE_CHAIN (link
);
13370 arg
= TREE_CHAIN (arg
);
13373 /* If this function type has an ellipsis, add a
13374 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
13375 if (formal_type
!= void_type_node
)
13376 gen_unspecified_parameters_die (function_or_method_type
, context_die
);
13378 /* Make our second (and final) pass over the list of formal parameter types
13379 and output DIEs to represent those types (as necessary). */
13380 for (link
= TYPE_ARG_TYPES (function_or_method_type
);
13381 link
&& TREE_VALUE (link
);
13382 link
= TREE_CHAIN (link
))
13383 gen_type_die (TREE_VALUE (link
), context_die
);
13386 /* We want to generate the DIE for TYPE so that we can generate the
13387 die for MEMBER, which has been defined; we will need to refer back
13388 to the member declaration nested within TYPE. If we're trying to
13389 generate minimal debug info for TYPE, processing TYPE won't do the
13390 trick; we need to attach the member declaration by hand. */
13393 gen_type_die_for_member (tree type
, tree member
, dw_die_ref context_die
)
13395 gen_type_die (type
, context_die
);
13397 /* If we're trying to avoid duplicate debug info, we may not have
13398 emitted the member decl for this function. Emit it now. */
13399 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))
13400 && ! lookup_decl_die (member
))
13402 dw_die_ref type_die
;
13403 gcc_assert (!decl_ultimate_origin (member
));
13405 push_decl_scope (type
);
13406 type_die
= lookup_type_die (type
);
13407 if (TREE_CODE (member
) == FUNCTION_DECL
)
13408 gen_subprogram_die (member
, type_die
);
13409 else if (TREE_CODE (member
) == FIELD_DECL
)
13411 /* Ignore the nameless fields that are used to skip bits but handle
13412 C++ anonymous unions and structs. */
13413 if (DECL_NAME (member
) != NULL_TREE
13414 || TREE_CODE (TREE_TYPE (member
)) == UNION_TYPE
13415 || TREE_CODE (TREE_TYPE (member
)) == RECORD_TYPE
)
13417 gen_type_die (member_declared_type (member
), type_die
);
13418 gen_field_die (member
, type_die
);
13422 gen_variable_die (member
, type_die
);
13428 /* Generate the DWARF2 info for the "abstract" instance of a function which we
13429 may later generate inlined and/or out-of-line instances of. */
13432 dwarf2out_abstract_function (tree decl
)
13434 dw_die_ref old_die
;
13437 int was_abstract
= DECL_ABSTRACT (decl
);
13439 /* Make sure we have the actual abstract inline, not a clone. */
13440 decl
= DECL_ORIGIN (decl
);
13442 old_die
= lookup_decl_die (decl
);
13443 if (old_die
&& get_AT (old_die
, DW_AT_inline
))
13444 /* We've already generated the abstract instance. */
13447 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
13448 we don't get confused by DECL_ABSTRACT. */
13449 if (debug_info_level
> DINFO_LEVEL_TERSE
)
13451 context
= decl_class_context (decl
);
13453 gen_type_die_for_member
13454 (context
, decl
, decl_function_context (decl
) ? NULL
: comp_unit_die
);
13457 /* Pretend we've just finished compiling this function. */
13458 save_fn
= current_function_decl
;
13459 current_function_decl
= decl
;
13460 push_cfun (DECL_STRUCT_FUNCTION (decl
));
13462 set_decl_abstract_flags (decl
, 1);
13463 dwarf2out_decl (decl
);
13464 if (! was_abstract
)
13465 set_decl_abstract_flags (decl
, 0);
13467 current_function_decl
= save_fn
;
13471 /* Helper function of premark_used_types() which gets called through
13472 htab_traverse_resize().
13474 Marks the DIE of a given type in *SLOT as perennial, so it never gets
13475 marked as unused by prune_unused_types. */
13477 premark_used_types_helper (void **slot
, void *data ATTRIBUTE_UNUSED
)
13482 type
= (tree
) *slot
;
13483 die
= lookup_type_die (type
);
13485 die
->die_perennial_p
= 1;
13489 /* Mark all members of used_types_hash as perennial. */
13491 premark_used_types (void)
13493 if (cfun
&& cfun
->used_types_hash
)
13494 htab_traverse (cfun
->used_types_hash
, premark_used_types_helper
, NULL
);
13497 /* Generate a DIE to represent a declared function (either file-scope or
13501 gen_subprogram_die (tree decl
, dw_die_ref context_die
)
13503 char label_id
[MAX_ARTIFICIAL_LABEL_BYTES
];
13504 tree origin
= decl_ultimate_origin (decl
);
13505 dw_die_ref subr_die
;
13508 dw_die_ref old_die
= lookup_decl_die (decl
);
13509 int declaration
= (current_function_decl
!= decl
13510 || class_or_namespace_scope_p (context_die
));
13512 premark_used_types ();
13514 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
13515 started to generate the abstract instance of an inline, decided to output
13516 its containing class, and proceeded to emit the declaration of the inline
13517 from the member list for the class. If so, DECLARATION takes priority;
13518 we'll get back to the abstract instance when done with the class. */
13520 /* The class-scope declaration DIE must be the primary DIE. */
13521 if (origin
&& declaration
&& class_or_namespace_scope_p (context_die
))
13524 gcc_assert (!old_die
);
13527 /* Now that the C++ front end lazily declares artificial member fns, we
13528 might need to retrofit the declaration into its class. */
13529 if (!declaration
&& !origin
&& !old_die
13530 && DECL_CONTEXT (decl
) && TYPE_P (DECL_CONTEXT (decl
))
13531 && !class_or_namespace_scope_p (context_die
)
13532 && debug_info_level
> DINFO_LEVEL_TERSE
)
13533 old_die
= force_decl_die (decl
);
13535 if (origin
!= NULL
)
13537 gcc_assert (!declaration
|| local_scope_p (context_die
));
13539 /* Fixup die_parent for the abstract instance of a nested
13540 inline function. */
13541 if (old_die
&& old_die
->die_parent
== NULL
)
13542 add_child_die (context_die
, old_die
);
13544 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
13545 add_abstract_origin_attribute (subr_die
, origin
);
13549 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
13550 struct dwarf_file_data
* file_index
= lookup_filename (s
.file
);
13552 if (!get_AT_flag (old_die
, DW_AT_declaration
)
13553 /* We can have a normal definition following an inline one in the
13554 case of redefinition of GNU C extern inlines.
13555 It seems reasonable to use AT_specification in this case. */
13556 && !get_AT (old_die
, DW_AT_inline
))
13558 /* Detect and ignore this case, where we are trying to output
13559 something we have already output. */
13563 /* If the definition comes from the same place as the declaration,
13564 maybe use the old DIE. We always want the DIE for this function
13565 that has the *_pc attributes to be under comp_unit_die so the
13566 debugger can find it. We also need to do this for abstract
13567 instances of inlines, since the spec requires the out-of-line copy
13568 to have the same parent. For local class methods, this doesn't
13569 apply; we just use the old DIE. */
13570 if ((old_die
->die_parent
== comp_unit_die
|| context_die
== NULL
)
13571 && (DECL_ARTIFICIAL (decl
)
13572 || (get_AT_file (old_die
, DW_AT_decl_file
) == file_index
13573 && (get_AT_unsigned (old_die
, DW_AT_decl_line
)
13574 == (unsigned) s
.line
))))
13576 subr_die
= old_die
;
13578 /* Clear out the declaration attribute and the formal parameters.
13579 Do not remove all children, because it is possible that this
13580 declaration die was forced using force_decl_die(). In such
13581 cases die that forced declaration die (e.g. TAG_imported_module)
13582 is one of the children that we do not want to remove. */
13583 remove_AT (subr_die
, DW_AT_declaration
);
13584 remove_child_TAG (subr_die
, DW_TAG_formal_parameter
);
13588 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
13589 add_AT_specification (subr_die
, old_die
);
13590 if (get_AT_file (old_die
, DW_AT_decl_file
) != file_index
)
13591 add_AT_file (subr_die
, DW_AT_decl_file
, file_index
);
13592 if (get_AT_unsigned (old_die
, DW_AT_decl_line
) != (unsigned) s
.line
)
13593 add_AT_unsigned (subr_die
, DW_AT_decl_line
, s
.line
);
13598 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
13600 if (TREE_PUBLIC (decl
))
13601 add_AT_flag (subr_die
, DW_AT_external
, 1);
13603 add_name_and_src_coords_attributes (subr_die
, decl
);
13604 if (debug_info_level
> DINFO_LEVEL_TERSE
)
13606 add_prototyped_attribute (subr_die
, TREE_TYPE (decl
));
13607 add_type_attribute (subr_die
, TREE_TYPE (TREE_TYPE (decl
)),
13608 0, 0, context_die
);
13611 add_pure_or_virtual_attribute (subr_die
, decl
);
13612 if (DECL_ARTIFICIAL (decl
))
13613 add_AT_flag (subr_die
, DW_AT_artificial
, 1);
13615 if (TREE_PROTECTED (decl
))
13616 add_AT_unsigned (subr_die
, DW_AT_accessibility
, DW_ACCESS_protected
);
13617 else if (TREE_PRIVATE (decl
))
13618 add_AT_unsigned (subr_die
, DW_AT_accessibility
, DW_ACCESS_private
);
13623 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
13625 add_AT_flag (subr_die
, DW_AT_declaration
, 1);
13627 /* The first time we see a member function, it is in the context of
13628 the class to which it belongs. We make sure of this by emitting
13629 the class first. The next time is the definition, which is
13630 handled above. The two may come from the same source text.
13632 Note that force_decl_die() forces function declaration die. It is
13633 later reused to represent definition. */
13634 equate_decl_number_to_die (decl
, subr_die
);
13637 else if (DECL_ABSTRACT (decl
))
13639 if (DECL_DECLARED_INLINE_P (decl
))
13641 if (cgraph_function_possibly_inlined_p (decl
))
13642 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_inlined
);
13644 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_not_inlined
);
13648 if (cgraph_function_possibly_inlined_p (decl
))
13649 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_inlined
);
13651 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_not_inlined
);
13654 if (DECL_DECLARED_INLINE_P (decl
)
13655 && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl
)))
13656 add_AT_flag (subr_die
, DW_AT_artificial
, 1);
13658 equate_decl_number_to_die (decl
, subr_die
);
13660 else if (!DECL_EXTERNAL (decl
))
13662 HOST_WIDE_INT cfa_fb_offset
;
13664 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
13665 equate_decl_number_to_die (decl
, subr_die
);
13667 if (!flag_reorder_blocks_and_partition
)
13669 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_BEGIN_LABEL
,
13670 current_function_funcdef_no
);
13671 add_AT_lbl_id (subr_die
, DW_AT_low_pc
, label_id
);
13672 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_END_LABEL
,
13673 current_function_funcdef_no
);
13674 add_AT_lbl_id (subr_die
, DW_AT_high_pc
, label_id
);
13676 add_pubname (decl
, subr_die
);
13677 add_arange (decl
, subr_die
);
13680 { /* Do nothing for now; maybe need to duplicate die, one for
13681 hot section and one for cold section, then use the hot/cold
13682 section begin/end labels to generate the aranges... */
13684 add_AT_lbl_id (subr_die, DW_AT_low_pc, hot_section_label);
13685 add_AT_lbl_id (subr_die, DW_AT_high_pc, hot_section_end_label);
13686 add_AT_lbl_id (subr_die, DW_AT_lo_user, unlikely_section_label);
13687 add_AT_lbl_id (subr_die, DW_AT_hi_user, cold_section_end_label);
13689 add_pubname (decl, subr_die);
13690 add_arange (decl, subr_die);
13691 add_arange (decl, subr_die);
13695 #ifdef MIPS_DEBUGGING_INFO
13696 /* Add a reference to the FDE for this routine. */
13697 add_AT_fde_ref (subr_die
, DW_AT_MIPS_fde
, current_funcdef_fde
);
13700 cfa_fb_offset
= CFA_FRAME_BASE_OFFSET (decl
);
13702 /* We define the "frame base" as the function's CFA. This is more
13703 convenient for several reasons: (1) It's stable across the prologue
13704 and epilogue, which makes it better than just a frame pointer,
13705 (2) With dwarf3, there exists a one-byte encoding that allows us
13706 to reference the .debug_frame data by proxy, but failing that,
13707 (3) We can at least reuse the code inspection and interpretation
13708 code that determines the CFA position at various points in the
13710 /* ??? Use some command-line or configury switch to enable the use
13711 of dwarf3 DW_OP_call_frame_cfa. At present there are no dwarf
13712 consumers that understand it; fall back to "pure" dwarf2 and
13713 convert the CFA data into a location list. */
13715 dw_loc_list_ref list
= convert_cfa_to_fb_loc_list (cfa_fb_offset
);
13716 if (list
->dw_loc_next
)
13717 add_AT_loc_list (subr_die
, DW_AT_frame_base
, list
);
13719 add_AT_loc (subr_die
, DW_AT_frame_base
, list
->expr
);
13722 /* Compute a displacement from the "steady-state frame pointer" to
13723 the CFA. The former is what all stack slots and argument slots
13724 will reference in the rtl; the later is what we've told the
13725 debugger about. We'll need to adjust all frame_base references
13726 by this displacement. */
13727 compute_frame_pointer_to_fb_displacement (cfa_fb_offset
);
13729 if (cfun
->static_chain_decl
)
13730 add_AT_location_description (subr_die
, DW_AT_static_link
,
13731 loc_descriptor_from_tree (cfun
->static_chain_decl
));
13734 /* Now output descriptions of the arguments for this function. This gets
13735 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
13736 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
13737 `...' at the end of the formal parameter list. In order to find out if
13738 there was a trailing ellipsis or not, we must instead look at the type
13739 associated with the FUNCTION_DECL. This will be a node of type
13740 FUNCTION_TYPE. If the chain of type nodes hanging off of this
13741 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
13742 an ellipsis at the end. */
13744 /* In the case where we are describing a mere function declaration, all we
13745 need to do here (and all we *can* do here) is to describe the *types* of
13746 its formal parameters. */
13747 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13749 else if (declaration
)
13750 gen_formal_types_die (decl
, subr_die
);
13753 /* Generate DIEs to represent all known formal parameters. */
13754 tree arg_decls
= DECL_ARGUMENTS (decl
);
13757 /* When generating DIEs, generate the unspecified_parameters DIE
13758 instead if we come across the arg "__builtin_va_alist" */
13759 for (parm
= arg_decls
; parm
; parm
= TREE_CHAIN (parm
))
13760 if (TREE_CODE (parm
) == PARM_DECL
)
13762 if (DECL_NAME (parm
)
13763 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm
)),
13764 "__builtin_va_alist"))
13765 gen_unspecified_parameters_die (parm
, subr_die
);
13767 gen_decl_die (parm
, subr_die
);
13770 /* Decide whether we need an unspecified_parameters DIE at the end.
13771 There are 2 more cases to do this for: 1) the ansi ... declaration -
13772 this is detectable when the end of the arg list is not a
13773 void_type_node 2) an unprototyped function declaration (not a
13774 definition). This just means that we have no info about the
13775 parameters at all. */
13776 fn_arg_types
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
13777 if (fn_arg_types
!= NULL
)
13779 /* This is the prototyped case, check for.... */
13780 if (TREE_VALUE (tree_last (fn_arg_types
)) != void_type_node
)
13781 gen_unspecified_parameters_die (decl
, subr_die
);
13783 else if (DECL_INITIAL (decl
) == NULL_TREE
)
13784 gen_unspecified_parameters_die (decl
, subr_die
);
13787 /* Output Dwarf info for all of the stuff within the body of the function
13788 (if it has one - it may be just a declaration). */
13789 outer_scope
= DECL_INITIAL (decl
);
13791 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
13792 a function. This BLOCK actually represents the outermost binding contour
13793 for the function, i.e. the contour in which the function's formal
13794 parameters and labels get declared. Curiously, it appears that the front
13795 end doesn't actually put the PARM_DECL nodes for the current function onto
13796 the BLOCK_VARS list for this outer scope, but are strung off of the
13797 DECL_ARGUMENTS list for the function instead.
13799 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
13800 the LABEL_DECL nodes for the function however, and we output DWARF info
13801 for those in decls_for_scope. Just within the `outer_scope' there will be
13802 a BLOCK node representing the function's outermost pair of curly braces,
13803 and any blocks used for the base and member initializers of a C++
13804 constructor function. */
13805 if (! declaration
&& TREE_CODE (outer_scope
) != ERROR_MARK
)
13807 /* Emit a DW_TAG_variable DIE for a named return value. */
13808 if (DECL_NAME (DECL_RESULT (decl
)))
13809 gen_decl_die (DECL_RESULT (decl
), subr_die
);
13811 current_function_has_inlines
= 0;
13812 decls_for_scope (outer_scope
, subr_die
, 0);
13814 #if 0 && defined (MIPS_DEBUGGING_INFO)
13815 if (current_function_has_inlines
)
13817 add_AT_flag (subr_die
, DW_AT_MIPS_has_inlines
, 1);
13818 if (! comp_unit_has_inlines
)
13820 add_AT_flag (comp_unit_die
, DW_AT_MIPS_has_inlines
, 1);
13821 comp_unit_has_inlines
= 1;
13826 /* Add the calling convention attribute if requested. */
13827 add_calling_convention_attribute (subr_die
, decl
);
13831 /* Returns a hash value for X (which really is a die_struct). */
13834 common_block_die_table_hash (const void *x
)
13836 const_dw_die_ref d
= (const_dw_die_ref
) x
;
13837 return (hashval_t
) d
->decl_id
^ htab_hash_pointer (d
->die_parent
);
13840 /* Return nonzero if decl_id and die_parent of die_struct X is the same
13841 as decl_id and die_parent of die_struct Y. */
13844 common_block_die_table_eq (const void *x
, const void *y
)
13846 const_dw_die_ref d
= (const_dw_die_ref
) x
;
13847 const_dw_die_ref e
= (const_dw_die_ref
) y
;
13848 return d
->decl_id
== e
->decl_id
&& d
->die_parent
== e
->die_parent
;
13851 /* Generate a DIE to represent a declared data object. */
13854 gen_variable_die (tree decl
, dw_die_ref context_die
)
13858 dw_die_ref var_die
;
13859 tree origin
= decl_ultimate_origin (decl
);
13860 dw_die_ref old_die
= lookup_decl_die (decl
);
13861 int declaration
= (DECL_EXTERNAL (decl
)
13862 /* If DECL is COMDAT and has not actually been
13863 emitted, we cannot take its address; there
13864 might end up being no definition anywhere in
13865 the program. For example, consider the C++
13869 struct S { static const int i = 7; };
13874 int f() { return S<int>::i; }
13876 Here, S<int>::i is not DECL_EXTERNAL, but no
13877 definition is required, so the compiler will
13878 not emit a definition. */
13879 || (TREE_CODE (decl
) == VAR_DECL
13880 && DECL_COMDAT (decl
) && !TREE_ASM_WRITTEN (decl
))
13881 || class_or_namespace_scope_p (context_die
));
13883 com_decl
= fortran_common (decl
, &off
);
13885 /* Symbol in common gets emitted as a child of the common block, in the form
13886 of a data member. */
13890 dw_die_ref com_die
;
13891 dw_loc_descr_ref loc
;
13892 die_node com_die_arg
;
13894 var_die
= lookup_decl_die (decl
);
13897 if (get_AT (var_die
, DW_AT_location
) == NULL
)
13899 loc
= loc_descriptor_from_tree (com_decl
);
13904 /* Optimize the common case. */
13905 if (loc
->dw_loc_opc
== DW_OP_addr
13906 && loc
->dw_loc_next
== NULL
13907 && GET_CODE (loc
->dw_loc_oprnd1
.v
.val_addr
)
13909 loc
->dw_loc_oprnd1
.v
.val_addr
13910 = plus_constant (loc
->dw_loc_oprnd1
.v
.val_addr
, off
);
13912 add_loc_descr (&loc
,
13913 new_loc_descr (DW_OP_plus_uconst
,
13916 add_AT_loc (var_die
, DW_AT_location
, loc
);
13917 remove_AT (var_die
, DW_AT_declaration
);
13923 if (common_block_die_table
== NULL
)
13924 common_block_die_table
13925 = htab_create_ggc (10, common_block_die_table_hash
,
13926 common_block_die_table_eq
, NULL
);
13928 field
= TREE_OPERAND (DECL_VALUE_EXPR (decl
), 0);
13929 com_die_arg
.decl_id
= DECL_UID (com_decl
);
13930 com_die_arg
.die_parent
= context_die
;
13931 com_die
= (dw_die_ref
) htab_find (common_block_die_table
, &com_die_arg
);
13932 loc
= loc_descriptor_from_tree (com_decl
);
13933 if (com_die
== NULL
)
13936 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl
));
13939 com_die
= new_die (DW_TAG_common_block
, context_die
, decl
);
13940 add_name_and_src_coords_attributes (com_die
, com_decl
);
13943 add_AT_loc (com_die
, DW_AT_location
, loc
);
13944 /* Avoid sharing the same loc descriptor between
13945 DW_TAG_common_block and DW_TAG_variable. */
13946 loc
= loc_descriptor_from_tree (com_decl
);
13948 else if (DECL_EXTERNAL (decl
))
13949 add_AT_flag (com_die
, DW_AT_declaration
, 1);
13950 add_pubname_string (cnam
, com_die
); /* ??? needed? */
13951 com_die
->decl_id
= DECL_UID (com_decl
);
13952 slot
= htab_find_slot (common_block_die_table
, com_die
, INSERT
);
13953 *slot
= (void *) com_die
;
13955 else if (get_AT (com_die
, DW_AT_location
) == NULL
&& loc
)
13957 add_AT_loc (com_die
, DW_AT_location
, loc
);
13958 loc
= loc_descriptor_from_tree (com_decl
);
13959 remove_AT (com_die
, DW_AT_declaration
);
13961 var_die
= new_die (DW_TAG_variable
, com_die
, decl
);
13962 add_name_and_src_coords_attributes (var_die
, decl
);
13963 add_type_attribute (var_die
, TREE_TYPE (decl
), TREE_READONLY (decl
),
13964 TREE_THIS_VOLATILE (decl
), context_die
);
13965 add_AT_flag (var_die
, DW_AT_external
, 1);
13970 /* Optimize the common case. */
13971 if (loc
->dw_loc_opc
== DW_OP_addr
13972 && loc
->dw_loc_next
== NULL
13973 && GET_CODE (loc
->dw_loc_oprnd1
.v
.val_addr
) == SYMBOL_REF
)
13974 loc
->dw_loc_oprnd1
.v
.val_addr
13975 = plus_constant (loc
->dw_loc_oprnd1
.v
.val_addr
, off
);
13977 add_loc_descr (&loc
, new_loc_descr (DW_OP_plus_uconst
,
13980 add_AT_loc (var_die
, DW_AT_location
, loc
);
13982 else if (DECL_EXTERNAL (decl
))
13983 add_AT_flag (var_die
, DW_AT_declaration
, 1);
13984 equate_decl_number_to_die (decl
, var_die
);
13988 var_die
= new_die (DW_TAG_variable
, context_die
, decl
);
13990 if (origin
!= NULL
)
13991 add_abstract_origin_attribute (var_die
, origin
);
13993 /* Loop unrolling can create multiple blocks that refer to the same
13994 static variable, so we must test for the DW_AT_declaration flag.
13996 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
13997 copy decls and set the DECL_ABSTRACT flag on them instead of
14000 ??? Duplicated blocks have been rewritten to use .debug_ranges.
14002 ??? The declare_in_namespace support causes us to get two DIEs for one
14003 variable, both of which are declarations. We want to avoid considering
14004 one to be a specification, so we must test that this DIE is not a
14006 else if (old_die
&& TREE_STATIC (decl
) && ! declaration
14007 && get_AT_flag (old_die
, DW_AT_declaration
) == 1)
14009 /* This is a definition of a C++ class level static. */
14010 add_AT_specification (var_die
, old_die
);
14011 if (DECL_NAME (decl
))
14013 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
14014 struct dwarf_file_data
* file_index
= lookup_filename (s
.file
);
14016 if (get_AT_file (old_die
, DW_AT_decl_file
) != file_index
)
14017 add_AT_file (var_die
, DW_AT_decl_file
, file_index
);
14019 if (get_AT_unsigned (old_die
, DW_AT_decl_line
) != (unsigned) s
.line
)
14020 add_AT_unsigned (var_die
, DW_AT_decl_line
, s
.line
);
14025 tree type
= TREE_TYPE (decl
);
14027 add_name_and_src_coords_attributes (var_die
, decl
);
14028 if ((TREE_CODE (decl
) == PARM_DECL
14029 || TREE_CODE (decl
) == RESULT_DECL
)
14030 && DECL_BY_REFERENCE (decl
))
14031 add_type_attribute (var_die
, TREE_TYPE (type
), 0, 0, context_die
);
14033 add_type_attribute (var_die
, type
, TREE_READONLY (decl
),
14034 TREE_THIS_VOLATILE (decl
), context_die
);
14036 if (TREE_PUBLIC (decl
))
14037 add_AT_flag (var_die
, DW_AT_external
, 1);
14039 if (DECL_ARTIFICIAL (decl
))
14040 add_AT_flag (var_die
, DW_AT_artificial
, 1);
14042 if (TREE_PROTECTED (decl
))
14043 add_AT_unsigned (var_die
, DW_AT_accessibility
, DW_ACCESS_protected
);
14044 else if (TREE_PRIVATE (decl
))
14045 add_AT_unsigned (var_die
, DW_AT_accessibility
, DW_ACCESS_private
);
14049 add_AT_flag (var_die
, DW_AT_declaration
, 1);
14051 if (DECL_ABSTRACT (decl
) || declaration
)
14052 equate_decl_number_to_die (decl
, var_die
);
14054 if (! declaration
&& ! DECL_ABSTRACT (decl
))
14056 add_location_or_const_value_attribute (var_die
, decl
, DW_AT_location
);
14057 add_pubname (decl
, var_die
);
14060 tree_add_const_value_attribute (var_die
, decl
);
14063 /* Generate a DIE to represent a named constant. */
14066 gen_const_die (tree decl
, dw_die_ref context_die
)
14068 dw_die_ref const_die
;
14069 tree type
= TREE_TYPE (decl
);
14071 const_die
= new_die (DW_TAG_constant
, context_die
, decl
);
14072 add_name_and_src_coords_attributes (const_die
, decl
);
14073 add_type_attribute (const_die
, type
, 1, 0, context_die
);
14074 if (TREE_PUBLIC (decl
))
14075 add_AT_flag (const_die
, DW_AT_external
, 1);
14076 if (DECL_ARTIFICIAL (decl
))
14077 add_AT_flag (const_die
, DW_AT_artificial
, 1);
14078 tree_add_const_value_attribute (const_die
, decl
);
14081 /* Generate a DIE to represent a label identifier. */
14084 gen_label_die (tree decl
, dw_die_ref context_die
)
14086 tree origin
= decl_ultimate_origin (decl
);
14087 dw_die_ref lbl_die
= new_die (DW_TAG_label
, context_die
, decl
);
14089 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
14091 if (origin
!= NULL
)
14092 add_abstract_origin_attribute (lbl_die
, origin
);
14094 add_name_and_src_coords_attributes (lbl_die
, decl
);
14096 if (DECL_ABSTRACT (decl
))
14097 equate_decl_number_to_die (decl
, lbl_die
);
14100 insn
= DECL_RTL_IF_SET (decl
);
14102 /* Deleted labels are programmer specified labels which have been
14103 eliminated because of various optimizations. We still emit them
14104 here so that it is possible to put breakpoints on them. */
14108 && NOTE_KIND (insn
) == NOTE_INSN_DELETED_LABEL
))))
14110 /* When optimization is enabled (via -O) some parts of the compiler
14111 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
14112 represent source-level labels which were explicitly declared by
14113 the user. This really shouldn't be happening though, so catch
14114 it if it ever does happen. */
14115 gcc_assert (!INSN_DELETED_P (insn
));
14117 ASM_GENERATE_INTERNAL_LABEL (label
, "L", CODE_LABEL_NUMBER (insn
));
14118 add_AT_lbl_id (lbl_die
, DW_AT_low_pc
, label
);
14123 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
14124 attributes to the DIE for a block STMT, to describe where the inlined
14125 function was called from. This is similar to add_src_coords_attributes. */
14128 add_call_src_coords_attributes (tree stmt
, dw_die_ref die
)
14130 expanded_location s
= expand_location (BLOCK_SOURCE_LOCATION (stmt
));
14132 add_AT_file (die
, DW_AT_call_file
, lookup_filename (s
.file
));
14133 add_AT_unsigned (die
, DW_AT_call_line
, s
.line
);
14137 /* If STMT's abstract origin is a function declaration and STMT's
14138 first subblock's abstract origin is the function's outermost block,
14139 then we're looking at the main entry point. */
14141 is_inlined_entry_point (const_tree stmt
)
14145 if (!stmt
|| TREE_CODE (stmt
) != BLOCK
)
14148 decl
= block_ultimate_origin (stmt
);
14150 if (!decl
|| TREE_CODE (decl
) != FUNCTION_DECL
)
14153 block
= BLOCK_SUBBLOCKS (stmt
);
14157 if (TREE_CODE (block
) != BLOCK
)
14160 block
= block_ultimate_origin (block
);
14163 return block
== DECL_INITIAL (decl
);
14166 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
14167 Add low_pc and high_pc attributes to the DIE for a block STMT. */
14170 add_high_low_attributes (tree stmt
, dw_die_ref die
)
14172 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
14174 if (BLOCK_FRAGMENT_CHAIN (stmt
))
14178 if (is_inlined_entry_point (stmt
))
14180 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_BEGIN_LABEL
,
14181 BLOCK_NUMBER (stmt
));
14182 add_AT_lbl_id (die
, DW_AT_entry_pc
, label
);
14185 add_AT_range_list (die
, DW_AT_ranges
, add_ranges (stmt
));
14187 chain
= BLOCK_FRAGMENT_CHAIN (stmt
);
14190 add_ranges (chain
);
14191 chain
= BLOCK_FRAGMENT_CHAIN (chain
);
14198 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_BEGIN_LABEL
,
14199 BLOCK_NUMBER (stmt
));
14200 add_AT_lbl_id (die
, DW_AT_low_pc
, label
);
14201 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_END_LABEL
,
14202 BLOCK_NUMBER (stmt
));
14203 add_AT_lbl_id (die
, DW_AT_high_pc
, label
);
14207 /* Generate a DIE for a lexical block. */
14210 gen_lexical_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
14212 dw_die_ref stmt_die
= new_die (DW_TAG_lexical_block
, context_die
, stmt
);
14214 if (! BLOCK_ABSTRACT (stmt
))
14215 add_high_low_attributes (stmt
, stmt_die
);
14217 decls_for_scope (stmt
, stmt_die
, depth
);
14220 /* Generate a DIE for an inlined subprogram. */
14223 gen_inlined_subroutine_die (tree stmt
, dw_die_ref context_die
, int depth
)
14225 tree decl
= block_ultimate_origin (stmt
);
14227 /* Emit info for the abstract instance first, if we haven't yet. We
14228 must emit this even if the block is abstract, otherwise when we
14229 emit the block below (or elsewhere), we may end up trying to emit
14230 a die whose origin die hasn't been emitted, and crashing. */
14231 dwarf2out_abstract_function (decl
);
14233 if (! BLOCK_ABSTRACT (stmt
))
14235 dw_die_ref subr_die
14236 = new_die (DW_TAG_inlined_subroutine
, context_die
, stmt
);
14238 add_abstract_origin_attribute (subr_die
, decl
);
14239 add_high_low_attributes (stmt
, subr_die
);
14240 add_call_src_coords_attributes (stmt
, subr_die
);
14242 decls_for_scope (stmt
, subr_die
, depth
);
14243 current_function_has_inlines
= 1;
14246 /* We may get here if we're the outer block of function A that was
14247 inlined into function B that was inlined into function C. When
14248 generating debugging info for C, dwarf2out_abstract_function(B)
14249 would mark all inlined blocks as abstract, including this one.
14250 So, we wouldn't (and shouldn't) expect labels to be generated
14251 for this one. Instead, just emit debugging info for
14252 declarations within the block. This is particularly important
14253 in the case of initializers of arguments passed from B to us:
14254 if they're statement expressions containing declarations, we
14255 wouldn't generate dies for their abstract variables, and then,
14256 when generating dies for the real variables, we'd die (pun
14258 gen_lexical_block_die (stmt
, context_die
, depth
);
14261 /* Generate a DIE for a field in a record, or structure. */
14264 gen_field_die (tree decl
, dw_die_ref context_die
)
14266 dw_die_ref decl_die
;
14268 if (TREE_TYPE (decl
) == error_mark_node
)
14271 decl_die
= new_die (DW_TAG_member
, context_die
, decl
);
14272 add_name_and_src_coords_attributes (decl_die
, decl
);
14273 add_type_attribute (decl_die
, member_declared_type (decl
),
14274 TREE_READONLY (decl
), TREE_THIS_VOLATILE (decl
),
14277 if (DECL_BIT_FIELD_TYPE (decl
))
14279 add_byte_size_attribute (decl_die
, decl
);
14280 add_bit_size_attribute (decl_die
, decl
);
14281 add_bit_offset_attribute (decl_die
, decl
);
14284 if (TREE_CODE (DECL_FIELD_CONTEXT (decl
)) != UNION_TYPE
)
14285 add_data_member_location_attribute (decl_die
, decl
);
14287 if (DECL_ARTIFICIAL (decl
))
14288 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
14290 if (TREE_PROTECTED (decl
))
14291 add_AT_unsigned (decl_die
, DW_AT_accessibility
, DW_ACCESS_protected
);
14292 else if (TREE_PRIVATE (decl
))
14293 add_AT_unsigned (decl_die
, DW_AT_accessibility
, DW_ACCESS_private
);
14295 /* Equate decl number to die, so that we can look up this decl later on. */
14296 equate_decl_number_to_die (decl
, decl_die
);
14300 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
14301 Use modified_type_die instead.
14302 We keep this code here just in case these types of DIEs may be needed to
14303 represent certain things in other languages (e.g. Pascal) someday. */
14306 gen_pointer_type_die (tree type
, dw_die_ref context_die
)
14309 = new_die (DW_TAG_pointer_type
, scope_die_for (type
, context_die
), type
);
14311 equate_type_number_to_die (type
, ptr_die
);
14312 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
14313 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
14316 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
14317 Use modified_type_die instead.
14318 We keep this code here just in case these types of DIEs may be needed to
14319 represent certain things in other languages (e.g. Pascal) someday. */
14322 gen_reference_type_die (tree type
, dw_die_ref context_die
)
14325 = new_die (DW_TAG_reference_type
, scope_die_for (type
, context_die
), type
);
14327 equate_type_number_to_die (type
, ref_die
);
14328 add_type_attribute (ref_die
, TREE_TYPE (type
), 0, 0, context_die
);
14329 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
14333 /* Generate a DIE for a pointer to a member type. */
14336 gen_ptr_to_mbr_type_die (tree type
, dw_die_ref context_die
)
14339 = new_die (DW_TAG_ptr_to_member_type
,
14340 scope_die_for (type
, context_die
), type
);
14342 equate_type_number_to_die (type
, ptr_die
);
14343 add_AT_die_ref (ptr_die
, DW_AT_containing_type
,
14344 lookup_type_die (TYPE_OFFSET_BASETYPE (type
)));
14345 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
14348 /* Generate the DIE for the compilation unit. */
14351 gen_compile_unit_die (const char *filename
)
14354 char producer
[250];
14355 const char *language_string
= lang_hooks
.name
;
14358 die
= new_die (DW_TAG_compile_unit
, NULL
, NULL
);
14362 add_name_attribute (die
, filename
);
14363 /* Don't add cwd for <built-in>. */
14364 if (!IS_ABSOLUTE_PATH (filename
) && filename
[0] != '<')
14365 add_comp_dir_attribute (die
);
14368 sprintf (producer
, "%s %s", language_string
, version_string
);
14370 #ifdef MIPS_DEBUGGING_INFO
14371 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
14372 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
14373 not appear in the producer string, the debugger reaches the conclusion
14374 that the object file is stripped and has no debugging information.
14375 To get the MIPS/SGI debugger to believe that there is debugging
14376 information in the object file, we add a -g to the producer string. */
14377 if (debug_info_level
> DINFO_LEVEL_TERSE
)
14378 strcat (producer
, " -g");
14381 add_AT_string (die
, DW_AT_producer
, producer
);
14383 if (strcmp (language_string
, "GNU C++") == 0)
14384 language
= DW_LANG_C_plus_plus
;
14385 else if (strcmp (language_string
, "GNU Ada") == 0)
14386 language
= DW_LANG_Ada95
;
14387 else if (strcmp (language_string
, "GNU F77") == 0)
14388 language
= DW_LANG_Fortran77
;
14389 else if (strcmp (language_string
, "GNU Fortran") == 0)
14390 language
= DW_LANG_Fortran95
;
14391 else if (strcmp (language_string
, "GNU Pascal") == 0)
14392 language
= DW_LANG_Pascal83
;
14393 else if (strcmp (language_string
, "GNU Java") == 0)
14394 language
= DW_LANG_Java
;
14395 else if (strcmp (language_string
, "GNU Objective-C") == 0)
14396 language
= DW_LANG_ObjC
;
14397 else if (strcmp (language_string
, "GNU Objective-C++") == 0)
14398 language
= DW_LANG_ObjC_plus_plus
;
14400 language
= DW_LANG_C89
;
14402 add_AT_unsigned (die
, DW_AT_language
, language
);
14406 /* Generate the DIE for a base class. */
14409 gen_inheritance_die (tree binfo
, tree access
, dw_die_ref context_die
)
14411 dw_die_ref die
= new_die (DW_TAG_inheritance
, context_die
, binfo
);
14413 add_type_attribute (die
, BINFO_TYPE (binfo
), 0, 0, context_die
);
14414 add_data_member_location_attribute (die
, binfo
);
14416 if (BINFO_VIRTUAL_P (binfo
))
14417 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
14419 if (access
== access_public_node
)
14420 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_public
);
14421 else if (access
== access_protected_node
)
14422 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_protected
);
14425 /* Generate a DIE for a class member. */
14428 gen_member_die (tree type
, dw_die_ref context_die
)
14431 tree binfo
= TYPE_BINFO (type
);
14434 /* If this is not an incomplete type, output descriptions of each of its
14435 members. Note that as we output the DIEs necessary to represent the
14436 members of this record or union type, we will also be trying to output
14437 DIEs to represent the *types* of those members. However the `type'
14438 function (above) will specifically avoid generating type DIEs for member
14439 types *within* the list of member DIEs for this (containing) type except
14440 for those types (of members) which are explicitly marked as also being
14441 members of this (containing) type themselves. The g++ front- end can
14442 force any given type to be treated as a member of some other (containing)
14443 type by setting the TYPE_CONTEXT of the given (member) type to point to
14444 the TREE node representing the appropriate (containing) type. */
14446 /* First output info about the base classes. */
14449 VEC(tree
,gc
) *accesses
= BINFO_BASE_ACCESSES (binfo
);
14453 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base
); i
++)
14454 gen_inheritance_die (base
,
14455 (accesses
? VEC_index (tree
, accesses
, i
)
14456 : access_public_node
), context_die
);
14459 /* Now output info about the data members and type members. */
14460 for (member
= TYPE_FIELDS (type
); member
; member
= TREE_CHAIN (member
))
14462 /* If we thought we were generating minimal debug info for TYPE
14463 and then changed our minds, some of the member declarations
14464 may have already been defined. Don't define them again, but
14465 do put them in the right order. */
14467 child
= lookup_decl_die (member
);
14469 splice_child_die (context_die
, child
);
14471 gen_decl_die (member
, context_die
);
14474 /* Now output info about the function members (if any). */
14475 for (member
= TYPE_METHODS (type
); member
; member
= TREE_CHAIN (member
))
14477 /* Don't include clones in the member list. */
14478 if (DECL_ABSTRACT_ORIGIN (member
))
14481 child
= lookup_decl_die (member
);
14483 splice_child_die (context_die
, child
);
14485 gen_decl_die (member
, context_die
);
14489 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
14490 is set, we pretend that the type was never defined, so we only get the
14491 member DIEs needed by later specification DIEs. */
14494 gen_struct_or_union_type_die (tree type
, dw_die_ref context_die
,
14495 enum debug_info_usage usage
)
14497 dw_die_ref type_die
= lookup_type_die (type
);
14498 dw_die_ref scope_die
= 0;
14500 int complete
= (TYPE_SIZE (type
)
14501 && (! TYPE_STUB_DECL (type
)
14502 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))));
14503 int ns_decl
= (context_die
&& context_die
->die_tag
== DW_TAG_namespace
);
14504 complete
= complete
&& should_emit_struct_debug (type
, usage
);
14506 if (type_die
&& ! complete
)
14509 if (TYPE_CONTEXT (type
) != NULL_TREE
14510 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
14511 || TREE_CODE (TYPE_CONTEXT (type
)) == NAMESPACE_DECL
))
14514 scope_die
= scope_die_for (type
, context_die
);
14516 if (! type_die
|| (nested
&& scope_die
== comp_unit_die
))
14517 /* First occurrence of type or toplevel definition of nested class. */
14519 dw_die_ref old_die
= type_die
;
14521 type_die
= new_die (TREE_CODE (type
) == RECORD_TYPE
14522 ? record_type_tag (type
) : DW_TAG_union_type
,
14524 equate_type_number_to_die (type
, type_die
);
14526 add_AT_specification (type_die
, old_die
);
14528 add_name_attribute (type_die
, type_tag (type
));
14531 remove_AT (type_die
, DW_AT_declaration
);
14533 /* If this type has been completed, then give it a byte_size attribute and
14534 then give a list of members. */
14535 if (complete
&& !ns_decl
)
14537 /* Prevent infinite recursion in cases where the type of some member of
14538 this type is expressed in terms of this type itself. */
14539 TREE_ASM_WRITTEN (type
) = 1;
14540 add_byte_size_attribute (type_die
, type
);
14541 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
14542 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
14544 /* If the first reference to this type was as the return type of an
14545 inline function, then it may not have a parent. Fix this now. */
14546 if (type_die
->die_parent
== NULL
)
14547 add_child_die (scope_die
, type_die
);
14549 push_decl_scope (type
);
14550 gen_member_die (type
, type_die
);
14553 /* GNU extension: Record what type our vtable lives in. */
14554 if (TYPE_VFIELD (type
))
14556 tree vtype
= DECL_FCONTEXT (TYPE_VFIELD (type
));
14558 gen_type_die (vtype
, context_die
);
14559 add_AT_die_ref (type_die
, DW_AT_containing_type
,
14560 lookup_type_die (vtype
));
14565 add_AT_flag (type_die
, DW_AT_declaration
, 1);
14567 /* We don't need to do this for function-local types. */
14568 if (TYPE_STUB_DECL (type
)
14569 && ! decl_function_context (TYPE_STUB_DECL (type
)))
14570 VEC_safe_push (tree
, gc
, incomplete_types
, type
);
14573 if (get_AT (type_die
, DW_AT_name
))
14574 add_pubtype (type
, type_die
);
14577 /* Generate a DIE for a subroutine _type_. */
14580 gen_subroutine_type_die (tree type
, dw_die_ref context_die
)
14582 tree return_type
= TREE_TYPE (type
);
14583 dw_die_ref subr_die
14584 = new_die (DW_TAG_subroutine_type
,
14585 scope_die_for (type
, context_die
), type
);
14587 equate_type_number_to_die (type
, subr_die
);
14588 add_prototyped_attribute (subr_die
, type
);
14589 add_type_attribute (subr_die
, return_type
, 0, 0, context_die
);
14590 gen_formal_types_die (type
, subr_die
);
14592 if (get_AT (subr_die
, DW_AT_name
))
14593 add_pubtype (type
, subr_die
);
14596 /* Generate a DIE for a type definition. */
14599 gen_typedef_die (tree decl
, dw_die_ref context_die
)
14601 dw_die_ref type_die
;
14604 if (TREE_ASM_WRITTEN (decl
))
14607 TREE_ASM_WRITTEN (decl
) = 1;
14608 type_die
= new_die (DW_TAG_typedef
, context_die
, decl
);
14609 origin
= decl_ultimate_origin (decl
);
14610 if (origin
!= NULL
)
14611 add_abstract_origin_attribute (type_die
, origin
);
14616 add_name_and_src_coords_attributes (type_die
, decl
);
14617 if (DECL_ORIGINAL_TYPE (decl
))
14619 type
= DECL_ORIGINAL_TYPE (decl
);
14621 gcc_assert (type
!= TREE_TYPE (decl
));
14622 equate_type_number_to_die (TREE_TYPE (decl
), type_die
);
14625 type
= TREE_TYPE (decl
);
14627 add_type_attribute (type_die
, type
, TREE_READONLY (decl
),
14628 TREE_THIS_VOLATILE (decl
), context_die
);
14631 if (DECL_ABSTRACT (decl
))
14632 equate_decl_number_to_die (decl
, type_die
);
14634 if (get_AT (type_die
, DW_AT_name
))
14635 add_pubtype (decl
, type_die
);
14638 /* Generate a type description DIE. */
14641 gen_type_die_with_usage (tree type
, dw_die_ref context_die
,
14642 enum debug_info_usage usage
)
14645 struct array_descr_info info
;
14647 if (type
== NULL_TREE
|| type
== error_mark_node
)
14650 if (TYPE_NAME (type
) && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
14651 && DECL_ORIGINAL_TYPE (TYPE_NAME (type
)))
14653 if (TREE_ASM_WRITTEN (type
))
14656 /* Prevent broken recursion; we can't hand off to the same type. */
14657 gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type
)) != type
);
14659 TREE_ASM_WRITTEN (type
) = 1;
14660 gen_decl_die (TYPE_NAME (type
), context_die
);
14664 /* If this is an array type with hidden descriptor, handle it first. */
14665 if (!TREE_ASM_WRITTEN (type
)
14666 && lang_hooks
.types
.get_array_descr_info
14667 && lang_hooks
.types
.get_array_descr_info (type
, &info
))
14669 gen_descr_array_type_die (type
, &info
, context_die
);
14670 TREE_ASM_WRITTEN (type
) = 1;
14674 /* We are going to output a DIE to represent the unqualified version
14675 of this type (i.e. without any const or volatile qualifiers) so
14676 get the main variant (i.e. the unqualified version) of this type
14677 now. (Vectors are special because the debugging info is in the
14678 cloned type itself). */
14679 if (TREE_CODE (type
) != VECTOR_TYPE
)
14680 type
= type_main_variant (type
);
14682 if (TREE_ASM_WRITTEN (type
))
14685 switch (TREE_CODE (type
))
14691 case REFERENCE_TYPE
:
14692 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
14693 ensures that the gen_type_die recursion will terminate even if the
14694 type is recursive. Recursive types are possible in Ada. */
14695 /* ??? We could perhaps do this for all types before the switch
14697 TREE_ASM_WRITTEN (type
) = 1;
14699 /* For these types, all that is required is that we output a DIE (or a
14700 set of DIEs) to represent the "basis" type. */
14701 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
14702 DINFO_USAGE_IND_USE
);
14706 /* This code is used for C++ pointer-to-data-member types.
14707 Output a description of the relevant class type. */
14708 gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type
), context_die
,
14709 DINFO_USAGE_IND_USE
);
14711 /* Output a description of the type of the object pointed to. */
14712 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
14713 DINFO_USAGE_IND_USE
);
14715 /* Now output a DIE to represent this pointer-to-data-member type
14717 gen_ptr_to_mbr_type_die (type
, context_die
);
14720 case FUNCTION_TYPE
:
14721 /* Force out return type (in case it wasn't forced out already). */
14722 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
14723 DINFO_USAGE_DIR_USE
);
14724 gen_subroutine_type_die (type
, context_die
);
14728 /* Force out return type (in case it wasn't forced out already). */
14729 gen_type_die_with_usage (TREE_TYPE (type
), context_die
,
14730 DINFO_USAGE_DIR_USE
);
14731 gen_subroutine_type_die (type
, context_die
);
14735 gen_array_type_die (type
, context_die
);
14739 gen_array_type_die (type
, context_die
);
14742 case ENUMERAL_TYPE
:
14745 case QUAL_UNION_TYPE
:
14746 /* If this is a nested type whose containing class hasn't been written
14747 out yet, writing it out will cover this one, too. This does not apply
14748 to instantiations of member class templates; they need to be added to
14749 the containing class as they are generated. FIXME: This hurts the
14750 idea of combining type decls from multiple TUs, since we can't predict
14751 what set of template instantiations we'll get. */
14752 if (TYPE_CONTEXT (type
)
14753 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
14754 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type
)))
14756 gen_type_die_with_usage (TYPE_CONTEXT (type
), context_die
, usage
);
14758 if (TREE_ASM_WRITTEN (type
))
14761 /* If that failed, attach ourselves to the stub. */
14762 push_decl_scope (TYPE_CONTEXT (type
));
14763 context_die
= lookup_type_die (TYPE_CONTEXT (type
));
14768 context_die
= declare_in_namespace (type
, context_die
);
14772 if (TREE_CODE (type
) == ENUMERAL_TYPE
)
14774 /* This might have been written out by the call to
14775 declare_in_namespace. */
14776 if (!TREE_ASM_WRITTEN (type
))
14777 gen_enumeration_type_die (type
, context_die
);
14780 gen_struct_or_union_type_die (type
, context_die
, usage
);
14785 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
14786 it up if it is ever completed. gen_*_type_die will set it for us
14787 when appropriate. */
14793 case FIXED_POINT_TYPE
:
14796 /* No DIEs needed for fundamental types. */
14800 /* No Dwarf representation currently defined. */
14804 gcc_unreachable ();
14807 TREE_ASM_WRITTEN (type
) = 1;
14811 gen_type_die (tree type
, dw_die_ref context_die
)
14813 gen_type_die_with_usage (type
, context_die
, DINFO_USAGE_DIR_USE
);
14816 /* Generate a DIE for a tagged type instantiation. */
14819 gen_tagged_type_instantiation_die (tree type
, dw_die_ref context_die
)
14821 if (type
== NULL_TREE
|| type
== error_mark_node
)
14824 /* We are going to output a DIE to represent the unqualified version of
14825 this type (i.e. without any const or volatile qualifiers) so make sure
14826 that we have the main variant (i.e. the unqualified version) of this
14828 gcc_assert (type
== type_main_variant (type
));
14830 /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
14831 an instance of an unresolved type. */
14833 switch (TREE_CODE (type
))
14838 case ENUMERAL_TYPE
:
14839 gen_inlined_enumeration_type_die (type
, context_die
);
14843 gen_inlined_structure_type_die (type
, context_die
);
14847 case QUAL_UNION_TYPE
:
14848 gen_inlined_union_type_die (type
, context_die
);
14852 gcc_unreachable ();
14856 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
14857 things which are local to the given block. */
14860 gen_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
14862 int must_output_die
= 0;
14865 enum tree_code origin_code
;
14867 /* Ignore blocks that are NULL. */
14868 if (stmt
== NULL_TREE
)
14871 /* If the block is one fragment of a non-contiguous block, do not
14872 process the variables, since they will have been done by the
14873 origin block. Do process subblocks. */
14874 if (BLOCK_FRAGMENT_ORIGIN (stmt
))
14878 for (sub
= BLOCK_SUBBLOCKS (stmt
); sub
; sub
= BLOCK_CHAIN (sub
))
14879 gen_block_die (sub
, context_die
, depth
+ 1);
14884 /* Determine the "ultimate origin" of this block. This block may be an
14885 inlined instance of an inlined instance of inline function, so we have
14886 to trace all of the way back through the origin chain to find out what
14887 sort of node actually served as the original seed for the creation of
14888 the current block. */
14889 origin
= block_ultimate_origin (stmt
);
14890 origin_code
= (origin
!= NULL
) ? TREE_CODE (origin
) : ERROR_MARK
;
14892 /* Determine if we need to output any Dwarf DIEs at all to represent this
14894 if (origin_code
== FUNCTION_DECL
)
14895 /* The outer scopes for inlinings *must* always be represented. We
14896 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
14897 must_output_die
= 1;
14900 /* In the case where the current block represents an inlining of the
14901 "body block" of an inline function, we must *NOT* output any DIE for
14902 this block because we have already output a DIE to represent the whole
14903 inlined function scope and the "body block" of any function doesn't
14904 really represent a different scope according to ANSI C rules. So we
14905 check here to make sure that this block does not represent a "body
14906 block inlining" before trying to set the MUST_OUTPUT_DIE flag. */
14907 if (! is_body_block (origin
? origin
: stmt
))
14909 /* Determine if this block directly contains any "significant"
14910 local declarations which we will need to output DIEs for. */
14911 if (debug_info_level
> DINFO_LEVEL_TERSE
)
14912 /* We are not in terse mode so *any* local declaration counts
14913 as being a "significant" one. */
14914 must_output_die
= (BLOCK_VARS (stmt
) != NULL
14915 && (TREE_USED (stmt
)
14916 || TREE_ASM_WRITTEN (stmt
)
14917 || BLOCK_ABSTRACT (stmt
)));
14919 /* We are in terse mode, so only local (nested) function
14920 definitions count as "significant" local declarations. */
14921 for (decl
= BLOCK_VARS (stmt
);
14922 decl
!= NULL
; decl
= TREE_CHAIN (decl
))
14923 if (TREE_CODE (decl
) == FUNCTION_DECL
14924 && DECL_INITIAL (decl
))
14926 must_output_die
= 1;
14932 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
14933 DIE for any block which contains no significant local declarations at
14934 all. Rather, in such cases we just call `decls_for_scope' so that any
14935 needed Dwarf info for any sub-blocks will get properly generated. Note
14936 that in terse mode, our definition of what constitutes a "significant"
14937 local declaration gets restricted to include only inlined function
14938 instances and local (nested) function definitions. */
14939 if (must_output_die
)
14941 if (origin_code
== FUNCTION_DECL
)
14942 gen_inlined_subroutine_die (stmt
, context_die
, depth
);
14944 gen_lexical_block_die (stmt
, context_die
, depth
);
14947 decls_for_scope (stmt
, context_die
, depth
);
14950 /* Generate all of the decls declared within a given scope and (recursively)
14951 all of its sub-blocks. */
14954 decls_for_scope (tree stmt
, dw_die_ref context_die
, int depth
)
14959 /* Ignore NULL blocks. */
14960 if (stmt
== NULL_TREE
)
14963 if (TREE_USED (stmt
))
14965 /* Output the DIEs to represent all of the data objects and typedefs
14966 declared directly within this block but not within any nested
14967 sub-blocks. Also, nested function and tag DIEs have been
14968 generated with a parent of NULL; fix that up now. */
14969 for (decl
= BLOCK_VARS (stmt
); decl
!= NULL
; decl
= TREE_CHAIN (decl
))
14973 if (TREE_CODE (decl
) == FUNCTION_DECL
)
14974 die
= lookup_decl_die (decl
);
14975 else if (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
))
14976 die
= lookup_type_die (TREE_TYPE (decl
));
14980 if (die
!= NULL
&& die
->die_parent
== NULL
)
14981 add_child_die (context_die
, die
);
14982 /* Do not produce debug information for static variables since
14983 these might be optimized out. We are called for these later
14984 in varpool_analyze_pending_decls.
14986 But *do* produce it for Fortran COMMON variables because,
14987 even though they are static, their names can differ depending
14988 on the scope, which we need to preserve. */
14989 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
)
14990 && !(is_fortran () && TREE_PUBLIC (decl
)))
14992 else if (TREE_CODE (decl
) == IMPORTED_DECL
)
14993 dwarf2out_imported_module_or_decl_1 (decl
, DECL_NAME (decl
),
14994 stmt
, context_die
);
14996 gen_decl_die (decl
, context_die
);
15000 /* If we're at -g1, we're not interested in subblocks. */
15001 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
15004 /* Output the DIEs to represent all sub-blocks (and the items declared
15005 therein) of this block. */
15006 for (subblocks
= BLOCK_SUBBLOCKS (stmt
);
15008 subblocks
= BLOCK_CHAIN (subblocks
))
15009 gen_block_die (subblocks
, context_die
, depth
+ 1);
15012 /* Is this a typedef we can avoid emitting? */
15015 is_redundant_typedef (const_tree decl
)
15017 if (TYPE_DECL_IS_STUB (decl
))
15020 if (DECL_ARTIFICIAL (decl
)
15021 && DECL_CONTEXT (decl
)
15022 && is_tagged_type (DECL_CONTEXT (decl
))
15023 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl
))) == TYPE_DECL
15024 && DECL_NAME (decl
) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl
))))
15025 /* Also ignore the artificial member typedef for the class name. */
15031 /* Returns the DIE for a context. */
15033 static inline dw_die_ref
15034 get_context_die (tree context
)
15038 /* Find die that represents this context. */
15039 if (TYPE_P (context
))
15040 return force_type_die (context
);
15042 return force_decl_die (context
);
15044 return comp_unit_die
;
15047 /* Returns the DIE for decl. A DIE will always be returned. */
15050 force_decl_die (tree decl
)
15052 dw_die_ref decl_die
;
15053 unsigned saved_external_flag
;
15054 tree save_fn
= NULL_TREE
;
15055 decl_die
= lookup_decl_die (decl
);
15058 dw_die_ref context_die
= get_context_die (DECL_CONTEXT (decl
));
15060 decl_die
= lookup_decl_die (decl
);
15064 switch (TREE_CODE (decl
))
15066 case FUNCTION_DECL
:
15067 /* Clear current_function_decl, so that gen_subprogram_die thinks
15068 that this is a declaration. At this point, we just want to force
15069 declaration die. */
15070 save_fn
= current_function_decl
;
15071 current_function_decl
= NULL_TREE
;
15072 gen_subprogram_die (decl
, context_die
);
15073 current_function_decl
= save_fn
;
15077 /* Set external flag to force declaration die. Restore it after
15078 gen_decl_die() call. */
15079 saved_external_flag
= DECL_EXTERNAL (decl
);
15080 DECL_EXTERNAL (decl
) = 1;
15081 gen_decl_die (decl
, context_die
);
15082 DECL_EXTERNAL (decl
) = saved_external_flag
;
15085 case NAMESPACE_DECL
:
15086 dwarf2out_decl (decl
);
15090 gcc_unreachable ();
15093 /* We should be able to find the DIE now. */
15095 decl_die
= lookup_decl_die (decl
);
15096 gcc_assert (decl_die
);
15102 /* Returns the DIE for TYPE, that must not be a base type. A DIE is
15103 always returned. */
15106 force_type_die (tree type
)
15108 dw_die_ref type_die
;
15110 type_die
= lookup_type_die (type
);
15113 dw_die_ref context_die
= get_context_die (TYPE_CONTEXT (type
));
15115 type_die
= modified_type_die (type
, TYPE_READONLY (type
),
15116 TYPE_VOLATILE (type
), context_die
);
15117 gcc_assert (type_die
);
15122 /* Force out any required namespaces to be able to output DECL,
15123 and return the new context_die for it, if it's changed. */
15126 setup_namespace_context (tree thing
, dw_die_ref context_die
)
15128 tree context
= (DECL_P (thing
)
15129 ? DECL_CONTEXT (thing
) : TYPE_CONTEXT (thing
));
15130 if (context
&& TREE_CODE (context
) == NAMESPACE_DECL
)
15131 /* Force out the namespace. */
15132 context_die
= force_decl_die (context
);
15134 return context_die
;
15137 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
15138 type) within its namespace, if appropriate.
15140 For compatibility with older debuggers, namespace DIEs only contain
15141 declarations; all definitions are emitted at CU scope. */
15144 declare_in_namespace (tree thing
, dw_die_ref context_die
)
15146 dw_die_ref ns_context
;
15148 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
15149 return context_die
;
15151 /* If this decl is from an inlined function, then don't try to emit it in its
15152 namespace, as we will get confused. It would have already been emitted
15153 when the abstract instance of the inline function was emitted anyways. */
15154 if (DECL_P (thing
) && DECL_ABSTRACT_ORIGIN (thing
))
15155 return context_die
;
15157 ns_context
= setup_namespace_context (thing
, context_die
);
15159 if (ns_context
!= context_die
)
15163 if (DECL_P (thing
))
15164 gen_decl_die (thing
, ns_context
);
15166 gen_type_die (thing
, ns_context
);
15168 return context_die
;
15171 /* Generate a DIE for a namespace or namespace alias. */
15174 gen_namespace_die (tree decl
)
15176 dw_die_ref context_die
= setup_namespace_context (decl
, comp_unit_die
);
15178 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
15179 they are an alias of. */
15180 if (DECL_ABSTRACT_ORIGIN (decl
) == NULL
)
15182 /* Output a real namespace or module. */
15183 dw_die_ref namespace_die
15184 = new_die (is_fortran () ? DW_TAG_module
: DW_TAG_namespace
,
15185 context_die
, decl
);
15186 /* For Fortran modules defined in different CU don't add src coords. */
15187 if (namespace_die
->die_tag
== DW_TAG_module
&& DECL_EXTERNAL (decl
))
15188 add_name_attribute (namespace_die
, dwarf2_name (decl
, 0));
15190 add_name_and_src_coords_attributes (namespace_die
, decl
);
15191 if (DECL_EXTERNAL (decl
))
15192 add_AT_flag (namespace_die
, DW_AT_declaration
, 1);
15193 equate_decl_number_to_die (decl
, namespace_die
);
15197 /* Output a namespace alias. */
15199 /* Force out the namespace we are an alias of, if necessary. */
15200 dw_die_ref origin_die
15201 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl
));
15203 /* Now create the namespace alias DIE. */
15204 dw_die_ref namespace_die
15205 = new_die (DW_TAG_imported_declaration
, context_die
, decl
);
15206 add_name_and_src_coords_attributes (namespace_die
, decl
);
15207 add_AT_die_ref (namespace_die
, DW_AT_import
, origin_die
);
15208 equate_decl_number_to_die (decl
, namespace_die
);
15212 /* Generate Dwarf debug information for a decl described by DECL. */
15215 gen_decl_die (tree decl
, dw_die_ref context_die
)
15219 if (DECL_P (decl
) && DECL_IGNORED_P (decl
))
15222 switch (TREE_CODE (decl
))
15228 if (!is_fortran ())
15230 /* The individual enumerators of an enum type get output when we output
15231 the Dwarf representation of the relevant enum type itself. */
15235 /* Emit its type. */
15236 gen_type_die (TREE_TYPE (decl
), context_die
);
15238 /* And its containing namespace. */
15239 context_die
= declare_in_namespace (decl
, context_die
);
15241 gen_const_die (decl
, context_die
);
15244 case FUNCTION_DECL
:
15245 /* Don't output any DIEs to represent mere function declarations,
15246 unless they are class members or explicit block externs. */
15247 if (DECL_INITIAL (decl
) == NULL_TREE
&& DECL_CONTEXT (decl
) == NULL_TREE
15248 && (current_function_decl
== NULL_TREE
|| DECL_ARTIFICIAL (decl
)))
15253 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
15254 on local redeclarations of global functions. That seems broken. */
15255 if (current_function_decl
!= decl
)
15256 /* This is only a declaration. */;
15259 /* If we're emitting a clone, emit info for the abstract instance. */
15260 if (DECL_ORIGIN (decl
) != decl
)
15261 dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl
));
15263 /* If we're emitting an out-of-line copy of an inline function,
15264 emit info for the abstract instance and set up to refer to it. */
15265 else if (cgraph_function_possibly_inlined_p (decl
)
15266 && ! DECL_ABSTRACT (decl
)
15267 && ! class_or_namespace_scope_p (context_die
)
15268 /* dwarf2out_abstract_function won't emit a die if this is just
15269 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
15270 that case, because that works only if we have a die. */
15271 && DECL_INITIAL (decl
) != NULL_TREE
)
15273 dwarf2out_abstract_function (decl
);
15274 set_decl_origin_self (decl
);
15277 /* Otherwise we're emitting the primary DIE for this decl. */
15278 else if (debug_info_level
> DINFO_LEVEL_TERSE
)
15280 /* Before we describe the FUNCTION_DECL itself, make sure that we
15281 have described its return type. */
15282 gen_type_die (TREE_TYPE (TREE_TYPE (decl
)), context_die
);
15284 /* And its virtual context. */
15285 if (DECL_VINDEX (decl
) != NULL_TREE
)
15286 gen_type_die (DECL_CONTEXT (decl
), context_die
);
15288 /* And its containing type. */
15289 origin
= decl_class_context (decl
);
15290 if (origin
!= NULL_TREE
)
15291 gen_type_die_for_member (origin
, decl
, context_die
);
15293 /* And its containing namespace. */
15294 context_die
= declare_in_namespace (decl
, context_die
);
15297 /* Now output a DIE to represent the function itself. */
15298 gen_subprogram_die (decl
, context_die
);
15302 /* If we are in terse mode, don't generate any DIEs to represent any
15303 actual typedefs. */
15304 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
15307 /* In the special case of a TYPE_DECL node representing the declaration
15308 of some type tag, if the given TYPE_DECL is marked as having been
15309 instantiated from some other (original) TYPE_DECL node (e.g. one which
15310 was generated within the original definition of an inline function) we
15311 have to generate a special (abbreviated) DW_TAG_structure_type,
15312 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. */
15313 if (TYPE_DECL_IS_STUB (decl
) && decl_ultimate_origin (decl
) != NULL_TREE
15314 && is_tagged_type (TREE_TYPE (decl
)))
15316 gen_tagged_type_instantiation_die (TREE_TYPE (decl
), context_die
);
15320 if (is_redundant_typedef (decl
))
15321 gen_type_die (TREE_TYPE (decl
), context_die
);
15323 /* Output a DIE to represent the typedef itself. */
15324 gen_typedef_die (decl
, context_die
);
15328 if (debug_info_level
>= DINFO_LEVEL_NORMAL
)
15329 gen_label_die (decl
, context_die
);
15334 /* If we are in terse mode, don't generate any DIEs to represent any
15335 variable declarations or definitions. */
15336 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
15339 /* Output any DIEs that are needed to specify the type of this data
15341 if (TREE_CODE (decl
) == RESULT_DECL
&& DECL_BY_REFERENCE (decl
))
15342 gen_type_die (TREE_TYPE (TREE_TYPE (decl
)), context_die
);
15344 gen_type_die (TREE_TYPE (decl
), context_die
);
15346 /* And its containing type. */
15347 origin
= decl_class_context (decl
);
15348 if (origin
!= NULL_TREE
)
15349 gen_type_die_for_member (origin
, decl
, context_die
);
15351 /* And its containing namespace. */
15352 context_die
= declare_in_namespace (decl
, context_die
);
15354 /* Now output the DIE to represent the data object itself. This gets
15355 complicated because of the possibility that the VAR_DECL really
15356 represents an inlined instance of a formal parameter for an inline
15358 origin
= decl_ultimate_origin (decl
);
15359 if (origin
!= NULL_TREE
&& TREE_CODE (origin
) == PARM_DECL
)
15360 gen_formal_parameter_die (decl
, context_die
);
15362 gen_variable_die (decl
, context_die
);
15366 /* Ignore the nameless fields that are used to skip bits but handle C++
15367 anonymous unions and structs. */
15368 if (DECL_NAME (decl
) != NULL_TREE
15369 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
15370 || TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
)
15372 gen_type_die (member_declared_type (decl
), context_die
);
15373 gen_field_die (decl
, context_die
);
15378 if (DECL_BY_REFERENCE (decl
))
15379 gen_type_die (TREE_TYPE (TREE_TYPE (decl
)), context_die
);
15381 gen_type_die (TREE_TYPE (decl
), context_die
);
15382 gen_formal_parameter_die (decl
, context_die
);
15385 case NAMESPACE_DECL
:
15386 case IMPORTED_DECL
:
15387 gen_namespace_die (decl
);
15391 /* Probably some frontend-internal decl. Assume we don't care. */
15392 gcc_assert ((int)TREE_CODE (decl
) > NUM_TREE_CODES
);
15397 /* Output debug information for global decl DECL. Called from toplev.c after
15398 compilation proper has finished. */
15401 dwarf2out_global_decl (tree decl
)
15403 /* Output DWARF2 information for file-scope tentative data object
15404 declarations, file-scope (extern) function declarations (which
15405 had no corresponding body) and file-scope tagged type declarations
15406 and definitions which have not yet been forced out. */
15407 if (TREE_CODE (decl
) != FUNCTION_DECL
|| !DECL_INITIAL (decl
))
15408 dwarf2out_decl (decl
);
15411 /* Output debug information for type decl DECL. Called from toplev.c
15412 and from language front ends (to record built-in types). */
15414 dwarf2out_type_decl (tree decl
, int local
)
15417 dwarf2out_decl (decl
);
15420 /* Output debug information for imported module or decl DECL.
15421 NAME is non-NULL name in the lexical block if the decl has been renamed.
15422 LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
15423 that DECL belongs to.
15424 LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK. */
15426 dwarf2out_imported_module_or_decl_1 (tree decl
,
15428 tree lexical_block
,
15429 dw_die_ref lexical_block_die
)
15431 expanded_location xloc
;
15432 dw_die_ref imported_die
= NULL
;
15433 dw_die_ref at_import_die
;
15435 if (TREE_CODE (decl
) == TYPE_DECL
|| TREE_CODE (decl
) == CONST_DECL
)
15437 if (is_base_type (TREE_TYPE (decl
)))
15438 at_import_die
= base_type_die (TREE_TYPE (decl
));
15440 at_import_die
= force_type_die (TREE_TYPE (decl
));
15441 /* For namespace N { typedef void T; } using N::T; base_type_die
15442 returns NULL, but DW_TAG_imported_declaration requires
15443 the DW_AT_import tag. Force creation of DW_TAG_typedef. */
15444 if (!at_import_die
)
15446 gcc_assert (TREE_CODE (decl
) == TYPE_DECL
);
15447 gen_typedef_die (decl
, get_context_die (DECL_CONTEXT (decl
)));
15448 at_import_die
= lookup_type_die (TREE_TYPE (decl
));
15449 gcc_assert (at_import_die
);
15452 else if (TREE_CODE (decl
) == IMPORTED_DECL
)
15454 tree imported_ns_decl
;
15455 /* IMPORTED_DECL nodes that are not imported namespace are just not
15457 gcc_assert (DECL_INITIAL (decl
)
15458 && TREE_CODE (DECL_INITIAL (decl
)) == NAMESPACE_DECL
);
15459 imported_ns_decl
= DECL_INITIAL (decl
);
15460 at_import_die
= lookup_decl_die (imported_ns_decl
);
15461 if (!at_import_die
)
15462 at_import_die
= force_decl_die (imported_ns_decl
);
15463 gcc_assert (at_import_die
);
15467 at_import_die
= lookup_decl_die (decl
);
15468 if (!at_import_die
)
15470 /* If we're trying to avoid duplicate debug info, we may not have
15471 emitted the member decl for this field. Emit it now. */
15472 if (TREE_CODE (decl
) == FIELD_DECL
)
15474 tree type
= DECL_CONTEXT (decl
);
15476 if (TYPE_CONTEXT (type
)
15477 && TYPE_P (TYPE_CONTEXT (type
))
15478 && !should_emit_struct_debug (TYPE_CONTEXT (type
),
15479 DINFO_USAGE_DIR_USE
))
15481 gen_type_die_for_member (type
, decl
,
15482 get_context_die (TYPE_CONTEXT (type
)));
15484 at_import_die
= force_decl_die (decl
);
15488 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
15489 imported_die
= new_die (DW_TAG_imported_module
,
15493 imported_die
= new_die (DW_TAG_imported_declaration
,
15497 xloc
= expand_location (input_location
);
15498 add_AT_file (imported_die
, DW_AT_decl_file
, lookup_filename (xloc
.file
));
15499 add_AT_unsigned (imported_die
, DW_AT_decl_line
, xloc
.line
);
15501 add_AT_string (imported_die
, DW_AT_name
,
15502 IDENTIFIER_POINTER (name
));
15503 add_AT_die_ref (imported_die
, DW_AT_import
, at_import_die
);
15506 /* Output debug information for imported module or decl DECL.
15507 NAME is non-NULL name in context if the decl has been renamed.
15508 CHILD is true if decl is one of the renamed decls as part of
15509 importing whole module. */
15512 dwarf2out_imported_module_or_decl (tree decl
, tree name
, tree context
,
15515 /* dw_die_ref at_import_die; */
15516 dw_die_ref scope_die
;
15518 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
15523 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
15524 We need decl DIE for reference and scope die. First, get DIE for the decl
15527 /* Get the scope die for decl context. Use comp_unit_die for global module
15528 or decl. If die is not found for non globals, force new die. */
15530 && TYPE_P (context
)
15531 && !should_emit_struct_debug (context
, DINFO_USAGE_DIR_USE
))
15533 scope_die
= get_context_die (context
);
15537 gcc_assert (scope_die
->die_child
);
15538 gcc_assert (scope_die
->die_child
->die_tag
== DW_TAG_imported_module
);
15539 gcc_assert (TREE_CODE (decl
) != NAMESPACE_DECL
);
15540 scope_die
= scope_die
->die_child
;
15543 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
15544 dwarf2out_imported_module_or_decl_1 (decl
, name
, context
, scope_die
);
15548 /* Write the debugging output for DECL. */
15551 dwarf2out_decl (tree decl
)
15553 dw_die_ref context_die
= comp_unit_die
;
15555 switch (TREE_CODE (decl
))
15560 case FUNCTION_DECL
:
15561 /* What we would really like to do here is to filter out all mere
15562 file-scope declarations of file-scope functions which are never
15563 referenced later within this translation unit (and keep all of ones
15564 that *are* referenced later on) but we aren't clairvoyant, so we have
15565 no idea which functions will be referenced in the future (i.e. later
15566 on within the current translation unit). So here we just ignore all
15567 file-scope function declarations which are not also definitions. If
15568 and when the debugger needs to know something about these functions,
15569 it will have to hunt around and find the DWARF information associated
15570 with the definition of the function.
15572 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
15573 nodes represent definitions and which ones represent mere
15574 declarations. We have to check DECL_INITIAL instead. That's because
15575 the C front-end supports some weird semantics for "extern inline"
15576 function definitions. These can get inlined within the current
15577 translation unit (and thus, we need to generate Dwarf info for their
15578 abstract instances so that the Dwarf info for the concrete inlined
15579 instances can have something to refer to) but the compiler never
15580 generates any out-of-lines instances of such things (despite the fact
15581 that they *are* definitions).
15583 The important point is that the C front-end marks these "extern
15584 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
15585 them anyway. Note that the C++ front-end also plays some similar games
15586 for inline function definitions appearing within include files which
15587 also contain `#pragma interface' pragmas. */
15588 if (DECL_INITIAL (decl
) == NULL_TREE
)
15591 /* If we're a nested function, initially use a parent of NULL; if we're
15592 a plain function, this will be fixed up in decls_for_scope. If
15593 we're a method, it will be ignored, since we already have a DIE. */
15594 if (decl_function_context (decl
)
15595 /* But if we're in terse mode, we don't care about scope. */
15596 && debug_info_level
> DINFO_LEVEL_TERSE
)
15597 context_die
= NULL
;
15601 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
15602 declaration and if the declaration was never even referenced from
15603 within this entire compilation unit. We suppress these DIEs in
15604 order to save space in the .debug section (by eliminating entries
15605 which are probably useless). Note that we must not suppress
15606 block-local extern declarations (whether used or not) because that
15607 would screw-up the debugger's name lookup mechanism and cause it to
15608 miss things which really ought to be in scope at a given point. */
15609 if (DECL_EXTERNAL (decl
) && !TREE_USED (decl
))
15612 /* For local statics lookup proper context die. */
15613 if (TREE_STATIC (decl
) && decl_function_context (decl
))
15614 context_die
= lookup_decl_die (DECL_CONTEXT (decl
));
15616 /* If we are in terse mode, don't generate any DIEs to represent any
15617 variable declarations or definitions. */
15618 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
15623 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
15625 if (!is_fortran ())
15627 if (TREE_STATIC (decl
) && decl_function_context (decl
))
15628 context_die
= lookup_decl_die (DECL_CONTEXT (decl
));
15631 case NAMESPACE_DECL
:
15632 case IMPORTED_DECL
:
15633 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
15635 if (lookup_decl_die (decl
) != NULL
)
15640 /* Don't emit stubs for types unless they are needed by other DIEs. */
15641 if (TYPE_DECL_SUPPRESS_DEBUG (decl
))
15644 /* Don't bother trying to generate any DIEs to represent any of the
15645 normal built-in types for the language we are compiling. */
15646 if (DECL_IS_BUILTIN (decl
))
15648 /* OK, we need to generate one for `bool' so GDB knows what type
15649 comparisons have. */
15651 && TREE_CODE (TREE_TYPE (decl
)) == BOOLEAN_TYPE
15652 && ! DECL_IGNORED_P (decl
))
15653 modified_type_die (TREE_TYPE (decl
), 0, 0, NULL
);
15658 /* If we are in terse mode, don't generate any DIEs for types. */
15659 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
15662 /* If we're a function-scope tag, initially use a parent of NULL;
15663 this will be fixed up in decls_for_scope. */
15664 if (decl_function_context (decl
))
15665 context_die
= NULL
;
15673 gen_decl_die (decl
, context_die
);
15676 /* Output a marker (i.e. a label) for the beginning of the generated code for
15677 a lexical block. */
15680 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED
,
15681 unsigned int blocknum
)
15683 switch_to_section (current_function_section ());
15684 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_BEGIN_LABEL
, blocknum
);
15687 /* Output a marker (i.e. a label) for the end of the generated code for a
15691 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED
, unsigned int blocknum
)
15693 switch_to_section (current_function_section ());
15694 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_END_LABEL
, blocknum
);
15697 /* Returns nonzero if it is appropriate not to emit any debugging
15698 information for BLOCK, because it doesn't contain any instructions.
15700 Don't allow this for blocks with nested functions or local classes
15701 as we would end up with orphans, and in the presence of scheduling
15702 we may end up calling them anyway. */
15705 dwarf2out_ignore_block (const_tree block
)
15709 for (decl
= BLOCK_VARS (block
); decl
; decl
= TREE_CHAIN (decl
))
15710 if (TREE_CODE (decl
) == FUNCTION_DECL
15711 || (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
)))
15717 /* Hash table routines for file_hash. */
15720 file_table_eq (const void *p1_p
, const void *p2_p
)
15722 const struct dwarf_file_data
*const p1
=
15723 (const struct dwarf_file_data
*) p1_p
;
15724 const char *const p2
= (const char *) p2_p
;
15725 return strcmp (p1
->filename
, p2
) == 0;
15729 file_table_hash (const void *p_p
)
15731 const struct dwarf_file_data
*const p
= (const struct dwarf_file_data
*) p_p
;
15732 return htab_hash_string (p
->filename
);
15735 /* Lookup FILE_NAME (in the list of filenames that we know about here in
15736 dwarf2out.c) and return its "index". The index of each (known) filename is
15737 just a unique number which is associated with only that one filename. We
15738 need such numbers for the sake of generating labels (in the .debug_sfnames
15739 section) and references to those files numbers (in the .debug_srcinfo
15740 and.debug_macinfo sections). If the filename given as an argument is not
15741 found in our current list, add it to the list and assign it the next
15742 available unique index number. In order to speed up searches, we remember
15743 the index of the filename was looked up last. This handles the majority of
15746 static struct dwarf_file_data
*
15747 lookup_filename (const char *file_name
)
15750 struct dwarf_file_data
* created
;
15752 /* Check to see if the file name that was searched on the previous
15753 call matches this file name. If so, return the index. */
15754 if (file_table_last_lookup
15755 && (file_name
== file_table_last_lookup
->filename
15756 || strcmp (file_table_last_lookup
->filename
, file_name
) == 0))
15757 return file_table_last_lookup
;
15759 /* Didn't match the previous lookup, search the table. */
15760 slot
= htab_find_slot_with_hash (file_table
, file_name
,
15761 htab_hash_string (file_name
), INSERT
);
15763 return (struct dwarf_file_data
*) *slot
;
15765 created
= GGC_NEW (struct dwarf_file_data
);
15766 created
->filename
= file_name
;
15767 created
->emitted_number
= 0;
15772 /* If the assembler will construct the file table, then translate the compiler
15773 internal file table number into the assembler file table number, and emit
15774 a .file directive if we haven't already emitted one yet. The file table
15775 numbers are different because we prune debug info for unused variables and
15776 types, which may include filenames. */
15779 maybe_emit_file (struct dwarf_file_data
* fd
)
15781 if (! fd
->emitted_number
)
15783 if (last_emitted_file
)
15784 fd
->emitted_number
= last_emitted_file
->emitted_number
+ 1;
15786 fd
->emitted_number
= 1;
15787 last_emitted_file
= fd
;
15789 if (DWARF2_ASM_LINE_DEBUG_INFO
)
15791 fprintf (asm_out_file
, "\t.file %u ", fd
->emitted_number
);
15792 output_quoted_string (asm_out_file
,
15793 remap_debug_filename (fd
->filename
));
15794 fputc ('\n', asm_out_file
);
15798 return fd
->emitted_number
;
15801 /* Called by the final INSN scan whenever we see a var location. We
15802 use it to drop labels in the right places, and throw the location in
15803 our lookup table. */
15806 dwarf2out_var_location (rtx loc_note
)
15808 char loclabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
15809 struct var_loc_node
*newloc
;
15811 static rtx last_insn
;
15812 static const char *last_label
;
15815 if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note
)))
15817 prev_insn
= PREV_INSN (loc_note
);
15819 newloc
= GGC_CNEW (struct var_loc_node
);
15820 /* If the insn we processed last time is the previous insn
15821 and it is also a var location note, use the label we emitted
15823 if (last_insn
!= NULL_RTX
15824 && last_insn
== prev_insn
15825 && NOTE_P (prev_insn
)
15826 && NOTE_KIND (prev_insn
) == NOTE_INSN_VAR_LOCATION
)
15828 newloc
->label
= last_label
;
15832 ASM_GENERATE_INTERNAL_LABEL (loclabel
, "LVL", loclabel_num
);
15833 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, "LVL", loclabel_num
);
15835 newloc
->label
= ggc_strdup (loclabel
);
15837 newloc
->var_loc_note
= loc_note
;
15838 newloc
->next
= NULL
;
15840 if (cfun
&& in_cold_section_p
)
15841 newloc
->section_label
= crtl
->subsections
.cold_section_label
;
15843 newloc
->section_label
= text_section_label
;
15845 last_insn
= loc_note
;
15846 last_label
= newloc
->label
;
15847 decl
= NOTE_VAR_LOCATION_DECL (loc_note
);
15848 add_var_loc_to_decl (decl
, newloc
);
15851 /* We need to reset the locations at the beginning of each
15852 function. We can't do this in the end_function hook, because the
15853 declarations that use the locations won't have been output when
15854 that hook is called. Also compute have_multiple_function_sections here. */
15857 dwarf2out_begin_function (tree fun
)
15859 htab_empty (decl_loc_table
);
15861 if (function_section (fun
) != text_section
)
15862 have_multiple_function_sections
= true;
15864 dwarf2out_note_section_used ();
15867 /* Output a label to mark the beginning of a source code line entry
15868 and record information relating to this source line, in
15869 'line_info_table' for later output of the .debug_line section. */
15872 dwarf2out_source_line (unsigned int line
, const char *filename
)
15874 if (debug_info_level
>= DINFO_LEVEL_NORMAL
15877 int file_num
= maybe_emit_file (lookup_filename (filename
));
15879 switch_to_section (current_function_section ());
15881 /* If requested, emit something human-readable. */
15882 if (flag_debug_asm
)
15883 fprintf (asm_out_file
, "\t%s %s:%d\n", ASM_COMMENT_START
,
15886 if (DWARF2_ASM_LINE_DEBUG_INFO
)
15888 /* Emit the .loc directive understood by GNU as. */
15889 fprintf (asm_out_file
, "\t.loc %d %d 0\n", file_num
, line
);
15891 /* Indicate that line number info exists. */
15892 line_info_table_in_use
++;
15894 else if (function_section (current_function_decl
) != text_section
)
15896 dw_separate_line_info_ref line_info
;
15897 targetm
.asm_out
.internal_label (asm_out_file
,
15898 SEPARATE_LINE_CODE_LABEL
,
15899 separate_line_info_table_in_use
);
15901 /* Expand the line info table if necessary. */
15902 if (separate_line_info_table_in_use
15903 == separate_line_info_table_allocated
)
15905 separate_line_info_table_allocated
+= LINE_INFO_TABLE_INCREMENT
;
15906 separate_line_info_table
15907 = GGC_RESIZEVEC (dw_separate_line_info_entry
,
15908 separate_line_info_table
,
15909 separate_line_info_table_allocated
);
15910 memset (separate_line_info_table
15911 + separate_line_info_table_in_use
,
15913 (LINE_INFO_TABLE_INCREMENT
15914 * sizeof (dw_separate_line_info_entry
)));
15917 /* Add the new entry at the end of the line_info_table. */
15919 = &separate_line_info_table
[separate_line_info_table_in_use
++];
15920 line_info
->dw_file_num
= file_num
;
15921 line_info
->dw_line_num
= line
;
15922 line_info
->function
= current_function_funcdef_no
;
15926 dw_line_info_ref line_info
;
15928 targetm
.asm_out
.internal_label (asm_out_file
, LINE_CODE_LABEL
,
15929 line_info_table_in_use
);
15931 /* Expand the line info table if necessary. */
15932 if (line_info_table_in_use
== line_info_table_allocated
)
15934 line_info_table_allocated
+= LINE_INFO_TABLE_INCREMENT
;
15936 = GGC_RESIZEVEC (dw_line_info_entry
, line_info_table
,
15937 line_info_table_allocated
);
15938 memset (line_info_table
+ line_info_table_in_use
, 0,
15939 LINE_INFO_TABLE_INCREMENT
* sizeof (dw_line_info_entry
));
15942 /* Add the new entry at the end of the line_info_table. */
15943 line_info
= &line_info_table
[line_info_table_in_use
++];
15944 line_info
->dw_file_num
= file_num
;
15945 line_info
->dw_line_num
= line
;
15950 /* Record the beginning of a new source file. */
15953 dwarf2out_start_source_file (unsigned int lineno
, const char *filename
)
15955 if (flag_eliminate_dwarf2_dups
)
15957 /* Record the beginning of the file for break_out_includes. */
15958 dw_die_ref bincl_die
;
15960 bincl_die
= new_die (DW_TAG_GNU_BINCL
, comp_unit_die
, NULL
);
15961 add_AT_string (bincl_die
, DW_AT_name
, remap_debug_filename (filename
));
15964 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
15966 int file_num
= maybe_emit_file (lookup_filename (filename
));
15968 switch_to_section (debug_macinfo_section
);
15969 dw2_asm_output_data (1, DW_MACINFO_start_file
, "Start new file");
15970 dw2_asm_output_data_uleb128 (lineno
, "Included from line number %d",
15973 dw2_asm_output_data_uleb128 (file_num
, "file %s", filename
);
15977 /* Record the end of a source file. */
15980 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED
)
15982 if (flag_eliminate_dwarf2_dups
)
15983 /* Record the end of the file for break_out_includes. */
15984 new_die (DW_TAG_GNU_EINCL
, comp_unit_die
, NULL
);
15986 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
15988 switch_to_section (debug_macinfo_section
);
15989 dw2_asm_output_data (1, DW_MACINFO_end_file
, "End file");
15993 /* Called from debug_define in toplev.c. The `buffer' parameter contains
15994 the tail part of the directive line, i.e. the part which is past the
15995 initial whitespace, #, whitespace, directive-name, whitespace part. */
15998 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED
,
15999 const char *buffer ATTRIBUTE_UNUSED
)
16001 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
16003 switch_to_section (debug_macinfo_section
);
16004 dw2_asm_output_data (1, DW_MACINFO_define
, "Define macro");
16005 dw2_asm_output_data_uleb128 (lineno
, "At line number %d", lineno
);
16006 dw2_asm_output_nstring (buffer
, -1, "The macro");
16010 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
16011 the tail part of the directive line, i.e. the part which is past the
16012 initial whitespace, #, whitespace, directive-name, whitespace part. */
16015 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED
,
16016 const char *buffer ATTRIBUTE_UNUSED
)
16018 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
16020 switch_to_section (debug_macinfo_section
);
16021 dw2_asm_output_data (1, DW_MACINFO_undef
, "Undefine macro");
16022 dw2_asm_output_data_uleb128 (lineno
, "At line number %d", lineno
);
16023 dw2_asm_output_nstring (buffer
, -1, "The macro");
16027 /* Set up for Dwarf output at the start of compilation. */
16030 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED
)
16032 /* Allocate the file_table. */
16033 file_table
= htab_create_ggc (50, file_table_hash
,
16034 file_table_eq
, NULL
);
16036 /* Allocate the decl_die_table. */
16037 decl_die_table
= htab_create_ggc (10, decl_die_table_hash
,
16038 decl_die_table_eq
, NULL
);
16040 /* Allocate the decl_loc_table. */
16041 decl_loc_table
= htab_create_ggc (10, decl_loc_table_hash
,
16042 decl_loc_table_eq
, NULL
);
16044 /* Allocate the initial hunk of the decl_scope_table. */
16045 decl_scope_table
= VEC_alloc (tree
, gc
, 256);
16047 /* Allocate the initial hunk of the abbrev_die_table. */
16048 abbrev_die_table
= GGC_CNEWVEC (dw_die_ref
, ABBREV_DIE_TABLE_INCREMENT
);
16049 abbrev_die_table_allocated
= ABBREV_DIE_TABLE_INCREMENT
;
16050 /* Zero-th entry is allocated, but unused. */
16051 abbrev_die_table_in_use
= 1;
16053 /* Allocate the initial hunk of the line_info_table. */
16054 line_info_table
= GGC_CNEWVEC (dw_line_info_entry
, LINE_INFO_TABLE_INCREMENT
);
16055 line_info_table_allocated
= LINE_INFO_TABLE_INCREMENT
;
16057 /* Zero-th entry is allocated, but unused. */
16058 line_info_table_in_use
= 1;
16060 /* Allocate the pubtypes and pubnames vectors. */
16061 pubname_table
= VEC_alloc (pubname_entry
, gc
, 32);
16062 pubtype_table
= VEC_alloc (pubname_entry
, gc
, 32);
16064 /* Generate the initial DIE for the .debug section. Note that the (string)
16065 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
16066 will (typically) be a relative pathname and that this pathname should be
16067 taken as being relative to the directory from which the compiler was
16068 invoked when the given (base) source file was compiled. We will fill
16069 in this value in dwarf2out_finish. */
16070 comp_unit_die
= gen_compile_unit_die (NULL
);
16072 incomplete_types
= VEC_alloc (tree
, gc
, 64);
16074 used_rtx_array
= VEC_alloc (rtx
, gc
, 32);
16076 debug_info_section
= get_section (DEBUG_INFO_SECTION
,
16077 SECTION_DEBUG
, NULL
);
16078 debug_abbrev_section
= get_section (DEBUG_ABBREV_SECTION
,
16079 SECTION_DEBUG
, NULL
);
16080 debug_aranges_section
= get_section (DEBUG_ARANGES_SECTION
,
16081 SECTION_DEBUG
, NULL
);
16082 debug_macinfo_section
= get_section (DEBUG_MACINFO_SECTION
,
16083 SECTION_DEBUG
, NULL
);
16084 debug_line_section
= get_section (DEBUG_LINE_SECTION
,
16085 SECTION_DEBUG
, NULL
);
16086 debug_loc_section
= get_section (DEBUG_LOC_SECTION
,
16087 SECTION_DEBUG
, NULL
);
16088 debug_pubnames_section
= get_section (DEBUG_PUBNAMES_SECTION
,
16089 SECTION_DEBUG
, NULL
);
16090 #ifdef DEBUG_PUBTYPES_SECTION
16091 debug_pubtypes_section
= get_section (DEBUG_PUBTYPES_SECTION
,
16092 SECTION_DEBUG
, NULL
);
16094 debug_str_section
= get_section (DEBUG_STR_SECTION
,
16095 DEBUG_STR_SECTION_FLAGS
, NULL
);
16096 debug_ranges_section
= get_section (DEBUG_RANGES_SECTION
,
16097 SECTION_DEBUG
, NULL
);
16098 debug_frame_section
= get_section (DEBUG_FRAME_SECTION
,
16099 SECTION_DEBUG
, NULL
);
16101 ASM_GENERATE_INTERNAL_LABEL (text_end_label
, TEXT_END_LABEL
, 0);
16102 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label
,
16103 DEBUG_ABBREV_SECTION_LABEL
, 0);
16104 ASM_GENERATE_INTERNAL_LABEL (text_section_label
, TEXT_SECTION_LABEL
, 0);
16105 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label
,
16106 COLD_TEXT_SECTION_LABEL
, 0);
16107 ASM_GENERATE_INTERNAL_LABEL (cold_end_label
, COLD_END_LABEL
, 0);
16109 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label
,
16110 DEBUG_INFO_SECTION_LABEL
, 0);
16111 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label
,
16112 DEBUG_LINE_SECTION_LABEL
, 0);
16113 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label
,
16114 DEBUG_RANGES_SECTION_LABEL
, 0);
16115 switch_to_section (debug_abbrev_section
);
16116 ASM_OUTPUT_LABEL (asm_out_file
, abbrev_section_label
);
16117 switch_to_section (debug_info_section
);
16118 ASM_OUTPUT_LABEL (asm_out_file
, debug_info_section_label
);
16119 switch_to_section (debug_line_section
);
16120 ASM_OUTPUT_LABEL (asm_out_file
, debug_line_section_label
);
16122 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
16124 switch_to_section (debug_macinfo_section
);
16125 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label
,
16126 DEBUG_MACINFO_SECTION_LABEL
, 0);
16127 ASM_OUTPUT_LABEL (asm_out_file
, macinfo_section_label
);
16130 switch_to_section (text_section
);
16131 ASM_OUTPUT_LABEL (asm_out_file
, text_section_label
);
16132 if (flag_reorder_blocks_and_partition
)
16134 cold_text_section
= unlikely_text_section ();
16135 switch_to_section (cold_text_section
);
16136 ASM_OUTPUT_LABEL (asm_out_file
, cold_text_section_label
);
16140 /* A helper function for dwarf2out_finish called through
16141 ht_forall. Emit one queued .debug_str string. */
16144 output_indirect_string (void **h
, void *v ATTRIBUTE_UNUSED
)
16146 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
16148 if (node
->form
== DW_FORM_strp
)
16150 switch_to_section (debug_str_section
);
16151 ASM_OUTPUT_LABEL (asm_out_file
, node
->label
);
16152 assemble_string (node
->str
, strlen (node
->str
) + 1);
16158 #if ENABLE_ASSERT_CHECKING
16159 /* Verify that all marks are clear. */
16162 verify_marks_clear (dw_die_ref die
)
16166 gcc_assert (! die
->die_mark
);
16167 FOR_EACH_CHILD (die
, c
, verify_marks_clear (c
));
16169 #endif /* ENABLE_ASSERT_CHECKING */
16171 /* Clear the marks for a die and its children.
16172 Be cool if the mark isn't set. */
16175 prune_unmark_dies (dw_die_ref die
)
16181 FOR_EACH_CHILD (die
, c
, prune_unmark_dies (c
));
16184 /* Given DIE that we're marking as used, find any other dies
16185 it references as attributes and mark them as used. */
16188 prune_unused_types_walk_attribs (dw_die_ref die
)
16193 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
16195 if (a
->dw_attr_val
.val_class
== dw_val_class_die_ref
)
16197 /* A reference to another DIE.
16198 Make sure that it will get emitted. */
16199 prune_unused_types_mark (a
->dw_attr_val
.v
.val_die_ref
.die
, 1);
16201 /* Set the string's refcount to 0 so that prune_unused_types_mark
16202 accounts properly for it. */
16203 if (AT_class (a
) == dw_val_class_str
)
16204 a
->dw_attr_val
.v
.val_str
->refcount
= 0;
16209 /* Mark DIE as being used. If DOKIDS is true, then walk down
16210 to DIE's children. */
16213 prune_unused_types_mark (dw_die_ref die
, int dokids
)
16217 if (die
->die_mark
== 0)
16219 /* We haven't done this node yet. Mark it as used. */
16222 /* We also have to mark its parents as used.
16223 (But we don't want to mark our parents' kids due to this.) */
16224 if (die
->die_parent
)
16225 prune_unused_types_mark (die
->die_parent
, 0);
16227 /* Mark any referenced nodes. */
16228 prune_unused_types_walk_attribs (die
);
16230 /* If this node is a specification,
16231 also mark the definition, if it exists. */
16232 if (get_AT_flag (die
, DW_AT_declaration
) && die
->die_definition
)
16233 prune_unused_types_mark (die
->die_definition
, 1);
16236 if (dokids
&& die
->die_mark
!= 2)
16238 /* We need to walk the children, but haven't done so yet.
16239 Remember that we've walked the kids. */
16242 /* If this is an array type, we need to make sure our
16243 kids get marked, even if they're types. */
16244 if (die
->die_tag
== DW_TAG_array_type
)
16245 FOR_EACH_CHILD (die
, c
, prune_unused_types_mark (c
, 1));
16247 FOR_EACH_CHILD (die
, c
, prune_unused_types_walk (c
));
16252 /* Walk the tree DIE and mark types that we actually use. */
16255 prune_unused_types_walk (dw_die_ref die
)
16259 /* Don't do anything if this node is already marked. */
16263 switch (die
->die_tag
)
16265 case DW_TAG_const_type
:
16266 case DW_TAG_packed_type
:
16267 case DW_TAG_pointer_type
:
16268 case DW_TAG_reference_type
:
16269 case DW_TAG_volatile_type
:
16270 case DW_TAG_typedef
:
16271 case DW_TAG_array_type
:
16272 case DW_TAG_structure_type
:
16273 case DW_TAG_union_type
:
16274 case DW_TAG_class_type
:
16275 case DW_TAG_interface_type
:
16276 case DW_TAG_friend
:
16277 case DW_TAG_variant_part
:
16278 case DW_TAG_enumeration_type
:
16279 case DW_TAG_subroutine_type
:
16280 case DW_TAG_string_type
:
16281 case DW_TAG_set_type
:
16282 case DW_TAG_subrange_type
:
16283 case DW_TAG_ptr_to_member_type
:
16284 case DW_TAG_file_type
:
16285 if (die
->die_perennial_p
)
16288 /* It's a type node --- don't mark it. */
16292 /* Mark everything else. */
16298 /* Now, mark any dies referenced from here. */
16299 prune_unused_types_walk_attribs (die
);
16301 /* Mark children. */
16302 FOR_EACH_CHILD (die
, c
, prune_unused_types_walk (c
));
16305 /* Increment the string counts on strings referred to from DIE's
16309 prune_unused_types_update_strings (dw_die_ref die
)
16314 for (ix
= 0; VEC_iterate (dw_attr_node
, die
->die_attr
, ix
, a
); ix
++)
16315 if (AT_class (a
) == dw_val_class_str
)
16317 struct indirect_string_node
*s
= a
->dw_attr_val
.v
.val_str
;
16319 /* Avoid unnecessarily putting strings that are used less than
16320 twice in the hash table. */
16322 == ((DEBUG_STR_SECTION_FLAGS
& SECTION_MERGE
) ? 1 : 2))
16325 slot
= htab_find_slot_with_hash (debug_str_hash
, s
->str
,
16326 htab_hash_string (s
->str
),
16328 gcc_assert (*slot
== NULL
);
16334 /* Remove from the tree DIE any dies that aren't marked. */
16337 prune_unused_types_prune (dw_die_ref die
)
16341 gcc_assert (die
->die_mark
);
16342 prune_unused_types_update_strings (die
);
16344 if (! die
->die_child
)
16347 c
= die
->die_child
;
16349 dw_die_ref prev
= c
;
16350 for (c
= c
->die_sib
; ! c
->die_mark
; c
= c
->die_sib
)
16351 if (c
== die
->die_child
)
16353 /* No marked children between 'prev' and the end of the list. */
16355 /* No marked children at all. */
16356 die
->die_child
= NULL
;
16359 prev
->die_sib
= c
->die_sib
;
16360 die
->die_child
= prev
;
16365 if (c
!= prev
->die_sib
)
16367 prune_unused_types_prune (c
);
16368 } while (c
!= die
->die_child
);
16372 /* Remove dies representing declarations that we never use. */
16375 prune_unused_types (void)
16378 limbo_die_node
*node
;
16381 #if ENABLE_ASSERT_CHECKING
16382 /* All the marks should already be clear. */
16383 verify_marks_clear (comp_unit_die
);
16384 for (node
= limbo_die_list
; node
; node
= node
->next
)
16385 verify_marks_clear (node
->die
);
16386 #endif /* ENABLE_ASSERT_CHECKING */
16388 /* Set the mark on nodes that are actually used. */
16389 prune_unused_types_walk (comp_unit_die
);
16390 for (node
= limbo_die_list
; node
; node
= node
->next
)
16391 prune_unused_types_walk (node
->die
);
16393 /* Also set the mark on nodes referenced from the
16394 pubname_table or arange_table. */
16395 for (i
= 0; VEC_iterate (pubname_entry
, pubname_table
, i
, pub
); i
++)
16396 prune_unused_types_mark (pub
->die
, 1);
16397 for (i
= 0; i
< arange_table_in_use
; i
++)
16398 prune_unused_types_mark (arange_table
[i
], 1);
16400 /* Get rid of nodes that aren't marked; and update the string counts. */
16401 if (debug_str_hash
)
16402 htab_empty (debug_str_hash
);
16403 prune_unused_types_prune (comp_unit_die
);
16404 for (node
= limbo_die_list
; node
; node
= node
->next
)
16405 prune_unused_types_prune (node
->die
);
16407 /* Leave the marks clear. */
16408 prune_unmark_dies (comp_unit_die
);
16409 for (node
= limbo_die_list
; node
; node
= node
->next
)
16410 prune_unmark_dies (node
->die
);
16413 /* Set the parameter to true if there are any relative pathnames in
16416 file_table_relative_p (void ** slot
, void *param
)
16418 bool *p
= (bool *) param
;
16419 struct dwarf_file_data
*d
= (struct dwarf_file_data
*) *slot
;
16420 if (!IS_ABSOLUTE_PATH (d
->filename
))
16428 /* Output stuff that dwarf requires at the end of every file,
16429 and generate the DWARF-2 debugging info. */
16432 dwarf2out_finish (const char *filename
)
16434 limbo_die_node
*node
, *next_node
;
16435 dw_die_ref die
= 0;
16437 /* Add the name for the main input file now. We delayed this from
16438 dwarf2out_init to avoid complications with PCH. */
16439 add_name_attribute (comp_unit_die
, remap_debug_filename (filename
));
16440 if (!IS_ABSOLUTE_PATH (filename
))
16441 add_comp_dir_attribute (comp_unit_die
);
16442 else if (get_AT (comp_unit_die
, DW_AT_comp_dir
) == NULL
)
16445 htab_traverse (file_table
, file_table_relative_p
, &p
);
16447 add_comp_dir_attribute (comp_unit_die
);
16450 /* Traverse the limbo die list, and add parent/child links. The only
16451 dies without parents that should be here are concrete instances of
16452 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
16453 For concrete instances, we can get the parent die from the abstract
16455 for (node
= limbo_die_list
; node
; node
= next_node
)
16457 next_node
= node
->next
;
16460 if (die
->die_parent
== NULL
)
16462 dw_die_ref origin
= get_AT_ref (die
, DW_AT_abstract_origin
);
16465 add_child_die (origin
->die_parent
, die
);
16466 else if (die
== comp_unit_die
)
16468 else if (errorcount
> 0 || sorrycount
> 0)
16469 /* It's OK to be confused by errors in the input. */
16470 add_child_die (comp_unit_die
, die
);
16473 /* In certain situations, the lexical block containing a
16474 nested function can be optimized away, which results
16475 in the nested function die being orphaned. Likewise
16476 with the return type of that nested function. Force
16477 this to be a child of the containing function.
16479 It may happen that even the containing function got fully
16480 inlined and optimized out. In that case we are lost and
16481 assign the empty child. This should not be big issue as
16482 the function is likely unreachable too. */
16483 tree context
= NULL_TREE
;
16485 gcc_assert (node
->created_for
);
16487 if (DECL_P (node
->created_for
))
16488 context
= DECL_CONTEXT (node
->created_for
);
16489 else if (TYPE_P (node
->created_for
))
16490 context
= TYPE_CONTEXT (node
->created_for
);
16492 gcc_assert (context
16493 && (TREE_CODE (context
) == FUNCTION_DECL
16494 || TREE_CODE (context
) == NAMESPACE_DECL
));
16496 origin
= lookup_decl_die (context
);
16498 add_child_die (origin
, die
);
16500 add_child_die (comp_unit_die
, die
);
16505 limbo_die_list
= NULL
;
16507 /* Walk through the list of incomplete types again, trying once more to
16508 emit full debugging info for them. */
16509 retry_incomplete_types ();
16511 if (flag_eliminate_unused_debug_types
)
16512 prune_unused_types ();
16514 /* Generate separate CUs for each of the include files we've seen.
16515 They will go into limbo_die_list. */
16516 if (flag_eliminate_dwarf2_dups
)
16517 break_out_includes (comp_unit_die
);
16519 /* Traverse the DIE's and add add sibling attributes to those DIE's
16520 that have children. */
16521 add_sibling_attributes (comp_unit_die
);
16522 for (node
= limbo_die_list
; node
; node
= node
->next
)
16523 add_sibling_attributes (node
->die
);
16525 /* Output a terminator label for the .text section. */
16526 switch_to_section (text_section
);
16527 targetm
.asm_out
.internal_label (asm_out_file
, TEXT_END_LABEL
, 0);
16528 if (flag_reorder_blocks_and_partition
)
16530 switch_to_section (unlikely_text_section ());
16531 targetm
.asm_out
.internal_label (asm_out_file
, COLD_END_LABEL
, 0);
16534 /* We can only use the low/high_pc attributes if all of the code was
16536 if (!have_multiple_function_sections
)
16538 add_AT_lbl_id (comp_unit_die
, DW_AT_low_pc
, text_section_label
);
16539 add_AT_lbl_id (comp_unit_die
, DW_AT_high_pc
, text_end_label
);
16544 unsigned fde_idx
= 0;
16546 /* We need to give .debug_loc and .debug_ranges an appropriate
16547 "base address". Use zero so that these addresses become
16548 absolute. Historically, we've emitted the unexpected
16549 DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
16550 Emit both to give time for other tools to adapt. */
16551 add_AT_addr (comp_unit_die
, DW_AT_low_pc
, const0_rtx
);
16552 add_AT_addr (comp_unit_die
, DW_AT_entry_pc
, const0_rtx
);
16554 add_AT_range_list (comp_unit_die
, DW_AT_ranges
,
16555 add_ranges_by_labels (text_section_label
,
16557 if (flag_reorder_blocks_and_partition
)
16558 add_ranges_by_labels (cold_text_section_label
,
16561 for (fde_idx
= 0; fde_idx
< fde_table_in_use
; fde_idx
++)
16563 dw_fde_ref fde
= &fde_table
[fde_idx
];
16565 if (fde
->dw_fde_switched_sections
)
16567 add_ranges_by_labels (fde
->dw_fde_hot_section_label
,
16568 fde
->dw_fde_hot_section_end_label
);
16569 add_ranges_by_labels (fde
->dw_fde_unlikely_section_label
,
16570 fde
->dw_fde_unlikely_section_end_label
);
16573 add_ranges_by_labels (fde
->dw_fde_begin
,
16580 /* Output location list section if necessary. */
16581 if (have_location_lists
)
16583 /* Output the location lists info. */
16584 switch_to_section (debug_loc_section
);
16585 ASM_GENERATE_INTERNAL_LABEL (loc_section_label
,
16586 DEBUG_LOC_SECTION_LABEL
, 0);
16587 ASM_OUTPUT_LABEL (asm_out_file
, loc_section_label
);
16588 output_location_lists (die
);
16591 if (debug_info_level
>= DINFO_LEVEL_NORMAL
)
16592 add_AT_lineptr (comp_unit_die
, DW_AT_stmt_list
,
16593 debug_line_section_label
);
16595 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
16596 add_AT_macptr (comp_unit_die
, DW_AT_macro_info
, macinfo_section_label
);
16598 /* Output all of the compilation units. We put the main one last so that
16599 the offsets are available to output_pubnames. */
16600 for (node
= limbo_die_list
; node
; node
= node
->next
)
16601 output_comp_unit (node
->die
, 0);
16603 output_comp_unit (comp_unit_die
, 0);
16605 /* Output the abbreviation table. */
16606 switch_to_section (debug_abbrev_section
);
16607 output_abbrev_section ();
16609 /* Output public names table if necessary. */
16610 if (!VEC_empty (pubname_entry
, pubname_table
))
16612 switch_to_section (debug_pubnames_section
);
16613 output_pubnames (pubname_table
);
16616 #ifdef DEBUG_PUBTYPES_SECTION
16617 /* Output public types table if necessary. */
16618 if (!VEC_empty (pubname_entry
, pubtype_table
))
16620 switch_to_section (debug_pubtypes_section
);
16621 output_pubnames (pubtype_table
);
16625 /* Output the address range information. We only put functions in the arange
16626 table, so don't write it out if we don't have any. */
16627 if (fde_table_in_use
)
16629 switch_to_section (debug_aranges_section
);
16633 /* Output ranges section if necessary. */
16634 if (ranges_table_in_use
)
16636 switch_to_section (debug_ranges_section
);
16637 ASM_OUTPUT_LABEL (asm_out_file
, ranges_section_label
);
16641 /* Output the source line correspondence table. We must do this
16642 even if there is no line information. Otherwise, on an empty
16643 translation unit, we will generate a present, but empty,
16644 .debug_info section. IRIX 6.5 `nm' will then complain when
16645 examining the file. This is done late so that any filenames
16646 used by the debug_info section are marked as 'used'. */
16647 if (! DWARF2_ASM_LINE_DEBUG_INFO
)
16649 switch_to_section (debug_line_section
);
16650 output_line_info ();
16653 /* Have to end the macro section. */
16654 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
16656 switch_to_section (debug_macinfo_section
);
16657 dw2_asm_output_data (1, 0, "End compilation unit");
16660 /* If we emitted any DW_FORM_strp form attribute, output the string
16662 if (debug_str_hash
)
16663 htab_traverse (debug_str_hash
, output_indirect_string
, NULL
);
16667 /* This should never be used, but its address is needed for comparisons. */
16668 const struct gcc_debug_hooks dwarf2_debug_hooks
;
16670 #endif /* DWARF2_DEBUGGING_INFO */
16672 #include "gt-dwarf2out.h"