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 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 2, 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 COPYING. If not, write to the Free
22 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
25 /* TODO: Emit .debug_line header even when there are no functions, since
26 the file numbers are used by .debug_info. Alternately, leave
27 out locations for types and decls.
28 Avoid talking about ctors and op= for PODs.
29 Factor out common prologue sequences into multiple CIEs. */
31 /* The first part of this file deals with the DWARF 2 frame unwind
32 information, which is also used by the GCC efficient exception handling
33 mechanism. The second part, controlled only by an #ifdef
34 DWARF2_DEBUGGING_INFO, deals with the other DWARF 2 debugging
39 #include "coretypes.h"
46 #include "hard-reg-set.h"
48 #include "insn-config.h"
56 #include "dwarf2out.h"
57 #include "dwarf2asm.h"
63 #include "diagnostic.h"
66 #include "langhooks.h"
71 #ifdef DWARF2_DEBUGGING_INFO
72 static void dwarf2out_source_line (unsigned int, const char *);
75 /* DWARF2 Abbreviation Glossary:
76 CFA = Canonical Frame Address
77 a fixed address on the stack which identifies a call frame.
78 We define it to be the value of SP just before the call insn.
79 The CFA register and offset, which may change during the course
80 of the function, are used to calculate its value at runtime.
81 CFI = Call Frame Instruction
82 an instruction for the DWARF2 abstract machine
83 CIE = Common Information Entry
84 information describing information common to one or more FDEs
85 DIE = Debugging Information Entry
86 FDE = Frame Description Entry
87 information describing the stack call frame, in particular,
88 how to restore registers
90 DW_CFA_... = DWARF2 CFA call frame instruction
91 DW_TAG_... = DWARF2 DIE tag */
93 /* Decide whether we want to emit frame unwind information for the current
97 dwarf2out_do_frame (void)
99 return (write_symbols
== DWARF2_DEBUG
100 || write_symbols
== VMS_AND_DWARF2_DEBUG
101 #ifdef DWARF2_FRAME_INFO
104 #ifdef DWARF2_UNWIND_INFO
105 || flag_unwind_tables
106 || (flag_exceptions
&& ! USING_SJLJ_EXCEPTIONS
)
111 /* The size of the target's pointer type. */
113 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
117 DEF_VEC_ALLOC_P(rtx
,gc
);
119 /* Array of RTXes referenced by the debugging information, which therefore
120 must be kept around forever. */
121 static GTY(()) VEC(rtx
,gc
) *used_rtx_array
;
123 /* A pointer to the base of a list of incomplete types which might be
124 completed at some later time. incomplete_types_list needs to be a
125 VEC(tree,gc) because we want to tell the garbage collector about
127 static GTY(()) VEC(tree
,gc
) *incomplete_types
;
129 /* A pointer to the base of a table of references to declaration
130 scopes. This table is a display which tracks the nesting
131 of declaration scopes at the current scope and containing
132 scopes. This table is used to find the proper place to
133 define type declaration DIE's. */
134 static GTY(()) VEC(tree
,gc
) *decl_scope_table
;
136 /* Pointers to various DWARF2 sections. */
137 static GTY(()) section
*debug_info_section
;
138 static GTY(()) section
*debug_abbrev_section
;
139 static GTY(()) section
*debug_aranges_section
;
140 static GTY(()) section
*debug_macinfo_section
;
141 static GTY(()) section
*debug_line_section
;
142 static GTY(()) section
*debug_loc_section
;
143 static GTY(()) section
*debug_pubnames_section
;
144 static GTY(()) section
*debug_str_section
;
145 static GTY(()) section
*debug_ranges_section
;
147 /* How to start an assembler comment. */
148 #ifndef ASM_COMMENT_START
149 #define ASM_COMMENT_START ";#"
152 typedef struct dw_cfi_struct
*dw_cfi_ref
;
153 typedef struct dw_fde_struct
*dw_fde_ref
;
154 typedef union dw_cfi_oprnd_struct
*dw_cfi_oprnd_ref
;
156 /* Call frames are described using a sequence of Call Frame
157 Information instructions. The register number, offset
158 and address fields are provided as possible operands;
159 their use is selected by the opcode field. */
161 enum dw_cfi_oprnd_type
{
163 dw_cfi_oprnd_reg_num
,
169 typedef union dw_cfi_oprnd_struct
GTY(())
171 unsigned int GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num
;
172 HOST_WIDE_INT
GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset
;
173 const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr
;
174 struct dw_loc_descr_struct
* GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc
;
178 typedef struct dw_cfi_struct
GTY(())
180 dw_cfi_ref dw_cfi_next
;
181 enum dwarf_call_frame_info dw_cfi_opc
;
182 dw_cfi_oprnd
GTY ((desc ("dw_cfi_oprnd1_desc (%1.dw_cfi_opc)")))
184 dw_cfi_oprnd
GTY ((desc ("dw_cfi_oprnd2_desc (%1.dw_cfi_opc)")))
189 /* This is how we define the location of the CFA. We use to handle it
190 as REG + OFFSET all the time, but now it can be more complex.
191 It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
192 Instead of passing around REG and OFFSET, we pass a copy
193 of this structure. */
194 typedef struct cfa_loc
GTY(())
196 HOST_WIDE_INT offset
;
197 HOST_WIDE_INT base_offset
;
199 int indirect
; /* 1 if CFA is accessed via a dereference. */
202 /* All call frame descriptions (FDE's) in the GCC generated DWARF
203 refer to a single Common Information Entry (CIE), defined at
204 the beginning of the .debug_frame section. This use of a single
205 CIE obviates the need to keep track of multiple CIE's
206 in the DWARF generation routines below. */
208 typedef struct dw_fde_struct
GTY(())
211 const char *dw_fde_begin
;
212 const char *dw_fde_current_label
;
213 const char *dw_fde_end
;
214 const char *dw_fde_hot_section_label
;
215 const char *dw_fde_hot_section_end_label
;
216 const char *dw_fde_unlikely_section_label
;
217 const char *dw_fde_unlikely_section_end_label
;
218 bool dw_fde_switched_sections
;
219 dw_cfi_ref dw_fde_cfi
;
220 unsigned funcdef_number
;
221 unsigned all_throwers_are_sibcalls
: 1;
222 unsigned nothrow
: 1;
223 unsigned uses_eh_lsda
: 1;
227 /* Maximum size (in bytes) of an artificially generated label. */
228 #define MAX_ARTIFICIAL_LABEL_BYTES 30
230 /* The size of addresses as they appear in the Dwarf 2 data.
231 Some architectures use word addresses to refer to code locations,
232 but Dwarf 2 info always uses byte addresses. On such machines,
233 Dwarf 2 addresses need to be larger than the architecture's
235 #ifndef DWARF2_ADDR_SIZE
236 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
239 /* The size in bytes of a DWARF field indicating an offset or length
240 relative to a debug info section, specified to be 4 bytes in the
241 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
244 #ifndef DWARF_OFFSET_SIZE
245 #define DWARF_OFFSET_SIZE 4
248 /* According to the (draft) DWARF 3 specification, the initial length
249 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
250 bytes are 0xffffffff, followed by the length stored in the next 8
253 However, the SGI/MIPS ABI uses an initial length which is equal to
254 DWARF_OFFSET_SIZE. It is defined (elsewhere) accordingly. */
256 #ifndef DWARF_INITIAL_LENGTH_SIZE
257 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
260 #define DWARF_VERSION 2
262 /* Round SIZE up to the nearest BOUNDARY. */
263 #define DWARF_ROUND(SIZE,BOUNDARY) \
264 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
266 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
267 #ifndef DWARF_CIE_DATA_ALIGNMENT
268 #ifdef STACK_GROWS_DOWNWARD
269 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
271 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
275 /* A pointer to the base of a table that contains frame description
276 information for each routine. */
277 static GTY((length ("fde_table_allocated"))) dw_fde_ref fde_table
;
279 /* Number of elements currently allocated for fde_table. */
280 static GTY(()) unsigned fde_table_allocated
;
282 /* Number of elements in fde_table currently in use. */
283 static GTY(()) unsigned fde_table_in_use
;
285 /* Size (in elements) of increments by which we may expand the
287 #define FDE_TABLE_INCREMENT 256
289 /* A list of call frame insns for the CIE. */
290 static GTY(()) dw_cfi_ref cie_cfi_head
;
292 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
293 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
294 attribute that accelerates the lookup of the FDE associated
295 with the subprogram. This variable holds the table index of the FDE
296 associated with the current function (body) definition. */
297 static unsigned current_funcdef_fde
;
300 struct indirect_string_node
GTY(())
303 unsigned int refcount
;
308 static GTY ((param_is (struct indirect_string_node
))) htab_t debug_str_hash
;
310 static GTY(()) int dw2_string_counter
;
311 static GTY(()) unsigned long dwarf2out_cfi_label_num
;
313 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
315 /* Forward declarations for functions defined in this file. */
317 static char *stripattributes (const char *);
318 static const char *dwarf_cfi_name (unsigned);
319 static dw_cfi_ref
new_cfi (void);
320 static void add_cfi (dw_cfi_ref
*, dw_cfi_ref
);
321 static void add_fde_cfi (const char *, dw_cfi_ref
);
322 static void lookup_cfa_1 (dw_cfi_ref
, dw_cfa_location
*);
323 static void lookup_cfa (dw_cfa_location
*);
324 static void reg_save (const char *, unsigned, unsigned, HOST_WIDE_INT
);
325 static void initial_return_save (rtx
);
326 static HOST_WIDE_INT
stack_adjust_offset (rtx
);
327 static void output_cfi (dw_cfi_ref
, dw_fde_ref
, int);
328 static void output_call_frame_info (int);
329 static void dwarf2out_stack_adjust (rtx
, bool);
330 static void flush_queued_reg_saves (void);
331 static bool clobbers_queued_reg_save (rtx
);
332 static void dwarf2out_frame_debug_expr (rtx
, const char *);
334 /* Support for complex CFA locations. */
335 static void output_cfa_loc (dw_cfi_ref
);
336 static void get_cfa_from_loc_descr (dw_cfa_location
*,
337 struct dw_loc_descr_struct
*);
338 static struct dw_loc_descr_struct
*build_cfa_loc
340 static void def_cfa_1 (const char *, dw_cfa_location
*);
342 /* How to start an assembler comment. */
343 #ifndef ASM_COMMENT_START
344 #define ASM_COMMENT_START ";#"
347 /* Data and reference forms for relocatable data. */
348 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
349 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
351 #ifndef DEBUG_FRAME_SECTION
352 #define DEBUG_FRAME_SECTION ".debug_frame"
355 #ifndef FUNC_BEGIN_LABEL
356 #define FUNC_BEGIN_LABEL "LFB"
359 #ifndef FUNC_END_LABEL
360 #define FUNC_END_LABEL "LFE"
363 #ifndef FRAME_BEGIN_LABEL
364 #define FRAME_BEGIN_LABEL "Lframe"
366 #define CIE_AFTER_SIZE_LABEL "LSCIE"
367 #define CIE_END_LABEL "LECIE"
368 #define FDE_LABEL "LSFDE"
369 #define FDE_AFTER_SIZE_LABEL "LASFDE"
370 #define FDE_END_LABEL "LEFDE"
371 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
372 #define LINE_NUMBER_END_LABEL "LELT"
373 #define LN_PROLOG_AS_LABEL "LASLTP"
374 #define LN_PROLOG_END_LABEL "LELTP"
375 #define DIE_LABEL_PREFIX "DW"
377 /* The DWARF 2 CFA column which tracks the return address. Normally this
378 is the column for PC, or the first column after all of the hard
380 #ifndef DWARF_FRAME_RETURN_COLUMN
382 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
384 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
388 /* The mapping from gcc register number to DWARF 2 CFA column number. By
389 default, we just provide columns for all registers. */
390 #ifndef DWARF_FRAME_REGNUM
391 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
394 /* Hook used by __throw. */
397 expand_builtin_dwarf_sp_column (void)
399 return GEN_INT (DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM
));
402 /* Return a pointer to a copy of the section string name S with all
403 attributes stripped off, and an asterisk prepended (for assemble_name). */
406 stripattributes (const char *s
)
408 char *stripped
= xmalloc (strlen (s
) + 2);
413 while (*s
&& *s
!= ',')
420 /* Generate code to initialize the register size table. */
423 expand_builtin_init_dwarf_reg_sizes (tree address
)
426 enum machine_mode mode
= TYPE_MODE (char_type_node
);
427 rtx addr
= expand_expr (address
, NULL_RTX
, VOIDmode
, 0);
428 rtx mem
= gen_rtx_MEM (BLKmode
, addr
);
429 bool wrote_return_column
= false;
431 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
432 if (DWARF_FRAME_REGNUM (i
) < DWARF_FRAME_REGISTERS
)
434 HOST_WIDE_INT offset
= DWARF_FRAME_REGNUM (i
) * GET_MODE_SIZE (mode
);
435 enum machine_mode save_mode
= reg_raw_mode
[i
];
438 if (HARD_REGNO_CALL_PART_CLOBBERED (i
, save_mode
))
439 save_mode
= choose_hard_reg_mode (i
, 1, true);
440 if (DWARF_FRAME_REGNUM (i
) == DWARF_FRAME_RETURN_COLUMN
)
442 if (save_mode
== VOIDmode
)
444 wrote_return_column
= true;
446 size
= GET_MODE_SIZE (save_mode
);
450 emit_move_insn (adjust_address (mem
, mode
, offset
),
451 gen_int_mode (size
, mode
));
454 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
455 gcc_assert (wrote_return_column
);
456 i
= DWARF_ALT_FRAME_RETURN_COLUMN
;
457 wrote_return_column
= false;
459 i
= DWARF_FRAME_RETURN_COLUMN
;
462 if (! wrote_return_column
)
464 enum machine_mode save_mode
= Pmode
;
465 HOST_WIDE_INT offset
= i
* GET_MODE_SIZE (mode
);
466 HOST_WIDE_INT size
= GET_MODE_SIZE (save_mode
);
467 emit_move_insn (adjust_address (mem
, mode
, offset
), GEN_INT (size
));
471 /* Convert a DWARF call frame info. operation to its string name */
474 dwarf_cfi_name (unsigned int cfi_opc
)
478 case DW_CFA_advance_loc
:
479 return "DW_CFA_advance_loc";
481 return "DW_CFA_offset";
483 return "DW_CFA_restore";
487 return "DW_CFA_set_loc";
488 case DW_CFA_advance_loc1
:
489 return "DW_CFA_advance_loc1";
490 case DW_CFA_advance_loc2
:
491 return "DW_CFA_advance_loc2";
492 case DW_CFA_advance_loc4
:
493 return "DW_CFA_advance_loc4";
494 case DW_CFA_offset_extended
:
495 return "DW_CFA_offset_extended";
496 case DW_CFA_restore_extended
:
497 return "DW_CFA_restore_extended";
498 case DW_CFA_undefined
:
499 return "DW_CFA_undefined";
500 case DW_CFA_same_value
:
501 return "DW_CFA_same_value";
502 case DW_CFA_register
:
503 return "DW_CFA_register";
504 case DW_CFA_remember_state
:
505 return "DW_CFA_remember_state";
506 case DW_CFA_restore_state
:
507 return "DW_CFA_restore_state";
509 return "DW_CFA_def_cfa";
510 case DW_CFA_def_cfa_register
:
511 return "DW_CFA_def_cfa_register";
512 case DW_CFA_def_cfa_offset
:
513 return "DW_CFA_def_cfa_offset";
516 case DW_CFA_def_cfa_expression
:
517 return "DW_CFA_def_cfa_expression";
518 case DW_CFA_expression
:
519 return "DW_CFA_expression";
520 case DW_CFA_offset_extended_sf
:
521 return "DW_CFA_offset_extended_sf";
522 case DW_CFA_def_cfa_sf
:
523 return "DW_CFA_def_cfa_sf";
524 case DW_CFA_def_cfa_offset_sf
:
525 return "DW_CFA_def_cfa_offset_sf";
527 /* SGI/MIPS specific */
528 case DW_CFA_MIPS_advance_loc8
:
529 return "DW_CFA_MIPS_advance_loc8";
532 case DW_CFA_GNU_window_save
:
533 return "DW_CFA_GNU_window_save";
534 case DW_CFA_GNU_args_size
:
535 return "DW_CFA_GNU_args_size";
536 case DW_CFA_GNU_negative_offset_extended
:
537 return "DW_CFA_GNU_negative_offset_extended";
540 return "DW_CFA_<unknown>";
544 /* Return a pointer to a newly allocated Call Frame Instruction. */
546 static inline dw_cfi_ref
549 dw_cfi_ref cfi
= ggc_alloc (sizeof (dw_cfi_node
));
551 cfi
->dw_cfi_next
= NULL
;
552 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= 0;
553 cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
= 0;
558 /* Add a Call Frame Instruction to list of instructions. */
561 add_cfi (dw_cfi_ref
*list_head
, dw_cfi_ref cfi
)
565 /* Find the end of the chain. */
566 for (p
= list_head
; (*p
) != NULL
; p
= &(*p
)->dw_cfi_next
)
572 /* Generate a new label for the CFI info to refer to. */
575 dwarf2out_cfi_label (void)
577 static char label
[20];
579 ASM_GENERATE_INTERNAL_LABEL (label
, "LCFI", dwarf2out_cfi_label_num
++);
580 ASM_OUTPUT_LABEL (asm_out_file
, label
);
584 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
585 or to the CIE if LABEL is NULL. */
588 add_fde_cfi (const char *label
, dw_cfi_ref cfi
)
592 dw_fde_ref fde
= &fde_table
[fde_table_in_use
- 1];
595 label
= dwarf2out_cfi_label ();
597 if (fde
->dw_fde_current_label
== NULL
598 || strcmp (label
, fde
->dw_fde_current_label
) != 0)
602 fde
->dw_fde_current_label
= label
= xstrdup (label
);
604 /* Set the location counter to the new label. */
606 xcfi
->dw_cfi_opc
= DW_CFA_advance_loc4
;
607 xcfi
->dw_cfi_oprnd1
.dw_cfi_addr
= label
;
608 add_cfi (&fde
->dw_fde_cfi
, xcfi
);
611 add_cfi (&fde
->dw_fde_cfi
, cfi
);
615 add_cfi (&cie_cfi_head
, cfi
);
618 /* Subroutine of lookup_cfa. */
621 lookup_cfa_1 (dw_cfi_ref cfi
, dw_cfa_location
*loc
)
623 switch (cfi
->dw_cfi_opc
)
625 case DW_CFA_def_cfa_offset
:
626 loc
->offset
= cfi
->dw_cfi_oprnd1
.dw_cfi_offset
;
628 case DW_CFA_def_cfa_offset_sf
:
630 = cfi
->dw_cfi_oprnd1
.dw_cfi_offset
* DWARF_CIE_DATA_ALIGNMENT
;
632 case DW_CFA_def_cfa_register
:
633 loc
->reg
= cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
;
636 loc
->reg
= cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
;
637 loc
->offset
= cfi
->dw_cfi_oprnd2
.dw_cfi_offset
;
639 case DW_CFA_def_cfa_sf
:
640 loc
->reg
= cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
;
642 = cfi
->dw_cfi_oprnd2
.dw_cfi_offset
* DWARF_CIE_DATA_ALIGNMENT
;
644 case DW_CFA_def_cfa_expression
:
645 get_cfa_from_loc_descr (loc
, cfi
->dw_cfi_oprnd1
.dw_cfi_loc
);
652 /* Find the previous value for the CFA. */
655 lookup_cfa (dw_cfa_location
*loc
)
659 loc
->reg
= INVALID_REGNUM
;
662 loc
->base_offset
= 0;
664 for (cfi
= cie_cfi_head
; cfi
; cfi
= cfi
->dw_cfi_next
)
665 lookup_cfa_1 (cfi
, loc
);
667 if (fde_table_in_use
)
669 dw_fde_ref fde
= &fde_table
[fde_table_in_use
- 1];
670 for (cfi
= fde
->dw_fde_cfi
; cfi
; cfi
= cfi
->dw_cfi_next
)
671 lookup_cfa_1 (cfi
, loc
);
675 /* The current rule for calculating the DWARF2 canonical frame address. */
676 static dw_cfa_location cfa
;
678 /* The register used for saving registers to the stack, and its offset
680 static dw_cfa_location cfa_store
;
682 /* The running total of the size of arguments pushed onto the stack. */
683 static HOST_WIDE_INT args_size
;
685 /* The last args_size we actually output. */
686 static HOST_WIDE_INT old_args_size
;
688 /* Entry point to update the canonical frame address (CFA).
689 LABEL is passed to add_fde_cfi. The value of CFA is now to be
690 calculated from REG+OFFSET. */
693 dwarf2out_def_cfa (const char *label
, unsigned int reg
, HOST_WIDE_INT offset
)
700 def_cfa_1 (label
, &loc
);
703 /* Determine if two dw_cfa_location structures define the same data. */
706 cfa_equal_p (const dw_cfa_location
*loc1
, const dw_cfa_location
*loc2
)
708 return (loc1
->reg
== loc2
->reg
709 && loc1
->offset
== loc2
->offset
710 && loc1
->indirect
== loc2
->indirect
711 && (loc1
->indirect
== 0
712 || loc1
->base_offset
== loc2
->base_offset
));
715 /* This routine does the actual work. The CFA is now calculated from
716 the dw_cfa_location structure. */
719 def_cfa_1 (const char *label
, dw_cfa_location
*loc_p
)
722 dw_cfa_location old_cfa
, loc
;
727 if (cfa_store
.reg
== loc
.reg
&& loc
.indirect
== 0)
728 cfa_store
.offset
= loc
.offset
;
730 loc
.reg
= DWARF_FRAME_REGNUM (loc
.reg
);
731 lookup_cfa (&old_cfa
);
733 /* If nothing changed, no need to issue any call frame instructions. */
734 if (cfa_equal_p (&loc
, &old_cfa
))
739 if (loc
.reg
== old_cfa
.reg
&& !loc
.indirect
)
741 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction, indicating
742 the CFA register did not change but the offset did. */
745 HOST_WIDE_INT f_offset
= loc
.offset
/ DWARF_CIE_DATA_ALIGNMENT
;
746 gcc_assert (f_offset
* DWARF_CIE_DATA_ALIGNMENT
== loc
.offset
);
748 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_offset_sf
;
749 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
= f_offset
;
753 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_offset
;
754 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
= loc
.offset
;
758 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
759 else if (loc
.offset
== old_cfa
.offset
760 && old_cfa
.reg
!= INVALID_REGNUM
763 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
764 indicating the CFA register has changed to <register> but the
765 offset has not changed. */
766 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_register
;
767 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= loc
.reg
;
771 else if (loc
.indirect
== 0)
773 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
774 indicating the CFA register has changed to <register> with
775 the specified offset. */
778 HOST_WIDE_INT f_offset
= loc
.offset
/ DWARF_CIE_DATA_ALIGNMENT
;
779 gcc_assert (f_offset
* DWARF_CIE_DATA_ALIGNMENT
== loc
.offset
);
781 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_sf
;
782 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= loc
.reg
;
783 cfi
->dw_cfi_oprnd2
.dw_cfi_offset
= f_offset
;
787 cfi
->dw_cfi_opc
= DW_CFA_def_cfa
;
788 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= loc
.reg
;
789 cfi
->dw_cfi_oprnd2
.dw_cfi_offset
= loc
.offset
;
794 /* Construct a DW_CFA_def_cfa_expression instruction to
795 calculate the CFA using a full location expression since no
796 register-offset pair is available. */
797 struct dw_loc_descr_struct
*loc_list
;
799 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_expression
;
800 loc_list
= build_cfa_loc (&loc
);
801 cfi
->dw_cfi_oprnd1
.dw_cfi_loc
= loc_list
;
804 add_fde_cfi (label
, cfi
);
807 /* Add the CFI for saving a register. REG is the CFA column number.
808 LABEL is passed to add_fde_cfi.
809 If SREG is -1, the register is saved at OFFSET from the CFA;
810 otherwise it is saved in SREG. */
813 reg_save (const char *label
, unsigned int reg
, unsigned int sreg
, HOST_WIDE_INT offset
)
815 dw_cfi_ref cfi
= new_cfi ();
817 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= reg
;
819 if (sreg
== INVALID_REGNUM
)
822 /* The register number won't fit in 6 bits, so we have to use
824 cfi
->dw_cfi_opc
= DW_CFA_offset_extended
;
826 cfi
->dw_cfi_opc
= DW_CFA_offset
;
828 #ifdef ENABLE_CHECKING
830 /* If we get an offset that is not a multiple of
831 DWARF_CIE_DATA_ALIGNMENT, there is either a bug in the
832 definition of DWARF_CIE_DATA_ALIGNMENT, or a bug in the machine
834 HOST_WIDE_INT check_offset
= offset
/ DWARF_CIE_DATA_ALIGNMENT
;
836 gcc_assert (check_offset
* DWARF_CIE_DATA_ALIGNMENT
== offset
);
839 offset
/= DWARF_CIE_DATA_ALIGNMENT
;
841 cfi
->dw_cfi_opc
= DW_CFA_offset_extended_sf
;
843 cfi
->dw_cfi_oprnd2
.dw_cfi_offset
= offset
;
845 else if (sreg
== reg
)
846 cfi
->dw_cfi_opc
= DW_CFA_same_value
;
849 cfi
->dw_cfi_opc
= DW_CFA_register
;
850 cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
= sreg
;
853 add_fde_cfi (label
, cfi
);
856 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
857 This CFI tells the unwinder that it needs to restore the window registers
858 from the previous frame's window save area.
860 ??? Perhaps we should note in the CIE where windows are saved (instead of
861 assuming 0(cfa)) and what registers are in the window. */
864 dwarf2out_window_save (const char *label
)
866 dw_cfi_ref cfi
= new_cfi ();
868 cfi
->dw_cfi_opc
= DW_CFA_GNU_window_save
;
869 add_fde_cfi (label
, cfi
);
872 /* Add a CFI to update the running total of the size of arguments
873 pushed onto the stack. */
876 dwarf2out_args_size (const char *label
, HOST_WIDE_INT size
)
880 if (size
== old_args_size
)
883 old_args_size
= size
;
886 cfi
->dw_cfi_opc
= DW_CFA_GNU_args_size
;
887 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
= size
;
888 add_fde_cfi (label
, cfi
);
891 /* Entry point for saving a register to the stack. REG is the GCC register
892 number. LABEL and OFFSET are passed to reg_save. */
895 dwarf2out_reg_save (const char *label
, unsigned int reg
, HOST_WIDE_INT offset
)
897 reg_save (label
, DWARF_FRAME_REGNUM (reg
), INVALID_REGNUM
, offset
);
900 /* Entry point for saving the return address in the stack.
901 LABEL and OFFSET are passed to reg_save. */
904 dwarf2out_return_save (const char *label
, HOST_WIDE_INT offset
)
906 reg_save (label
, DWARF_FRAME_RETURN_COLUMN
, INVALID_REGNUM
, offset
);
909 /* Entry point for saving the return address in a register.
910 LABEL and SREG are passed to reg_save. */
913 dwarf2out_return_reg (const char *label
, unsigned int sreg
)
915 reg_save (label
, DWARF_FRAME_RETURN_COLUMN
, DWARF_FRAME_REGNUM (sreg
), 0);
918 /* Record the initial position of the return address. RTL is
919 INCOMING_RETURN_ADDR_RTX. */
922 initial_return_save (rtx rtl
)
924 unsigned int reg
= INVALID_REGNUM
;
925 HOST_WIDE_INT offset
= 0;
927 switch (GET_CODE (rtl
))
930 /* RA is in a register. */
931 reg
= DWARF_FRAME_REGNUM (REGNO (rtl
));
935 /* RA is on the stack. */
937 switch (GET_CODE (rtl
))
940 gcc_assert (REGNO (rtl
) == STACK_POINTER_REGNUM
);
945 gcc_assert (REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
);
946 offset
= INTVAL (XEXP (rtl
, 1));
950 gcc_assert (REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
);
951 offset
= -INTVAL (XEXP (rtl
, 1));
961 /* The return address is at some offset from any value we can
962 actually load. For instance, on the SPARC it is in %i7+8. Just
963 ignore the offset for now; it doesn't matter for unwinding frames. */
964 gcc_assert (GET_CODE (XEXP (rtl
, 1)) == CONST_INT
);
965 initial_return_save (XEXP (rtl
, 0));
972 if (reg
!= DWARF_FRAME_RETURN_COLUMN
)
973 reg_save (NULL
, DWARF_FRAME_RETURN_COLUMN
, reg
, offset
- cfa
.offset
);
976 /* Given a SET, calculate the amount of stack adjustment it
980 stack_adjust_offset (rtx pattern
)
982 rtx src
= SET_SRC (pattern
);
983 rtx dest
= SET_DEST (pattern
);
984 HOST_WIDE_INT offset
= 0;
987 if (dest
== stack_pointer_rtx
)
989 /* (set (reg sp) (plus (reg sp) (const_int))) */
990 code
= GET_CODE (src
);
991 if (! (code
== PLUS
|| code
== MINUS
)
992 || XEXP (src
, 0) != stack_pointer_rtx
993 || GET_CODE (XEXP (src
, 1)) != CONST_INT
)
996 offset
= INTVAL (XEXP (src
, 1));
1000 else if (MEM_P (dest
))
1002 /* (set (mem (pre_dec (reg sp))) (foo)) */
1003 src
= XEXP (dest
, 0);
1004 code
= GET_CODE (src
);
1010 if (XEXP (src
, 0) == stack_pointer_rtx
)
1012 rtx val
= XEXP (XEXP (src
, 1), 1);
1013 /* We handle only adjustments by constant amount. */
1014 gcc_assert (GET_CODE (XEXP (src
, 1)) == PLUS
1015 && GET_CODE (val
) == CONST_INT
);
1016 offset
= -INTVAL (val
);
1023 if (XEXP (src
, 0) == stack_pointer_rtx
)
1025 offset
= GET_MODE_SIZE (GET_MODE (dest
));
1032 if (XEXP (src
, 0) == stack_pointer_rtx
)
1034 offset
= -GET_MODE_SIZE (GET_MODE (dest
));
1049 /* Check INSN to see if it looks like a push or a stack adjustment, and
1050 make a note of it if it does. EH uses this information to find out how
1051 much extra space it needs to pop off the stack. */
1054 dwarf2out_stack_adjust (rtx insn
, bool after_p
)
1056 HOST_WIDE_INT offset
;
1060 /* Don't handle epilogues at all. Certainly it would be wrong to do so
1061 with this function. Proper support would require all frame-related
1062 insns to be marked, and to be able to handle saving state around
1063 epilogues textually in the middle of the function. */
1064 if (prologue_epilogue_contains (insn
) || sibcall_epilogue_contains (insn
))
1067 /* If only calls can throw, and we have a frame pointer,
1068 save up adjustments until we see the CALL_INSN. */
1069 if (!flag_asynchronous_unwind_tables
&& cfa
.reg
!= STACK_POINTER_REGNUM
)
1071 if (CALL_P (insn
) && !after_p
)
1073 /* Extract the size of the args from the CALL rtx itself. */
1074 insn
= PATTERN (insn
);
1075 if (GET_CODE (insn
) == PARALLEL
)
1076 insn
= XVECEXP (insn
, 0, 0);
1077 if (GET_CODE (insn
) == SET
)
1078 insn
= SET_SRC (insn
);
1079 gcc_assert (GET_CODE (insn
) == CALL
);
1080 dwarf2out_args_size ("", INTVAL (XEXP (insn
, 1)));
1085 if (CALL_P (insn
) && !after_p
)
1087 if (!flag_asynchronous_unwind_tables
)
1088 dwarf2out_args_size ("", args_size
);
1091 else if (BARRIER_P (insn
))
1093 /* When we see a BARRIER, we know to reset args_size to 0. Usually
1094 the compiler will have already emitted a stack adjustment, but
1095 doesn't bother for calls to noreturn functions. */
1096 #ifdef STACK_GROWS_DOWNWARD
1097 offset
= -args_size
;
1102 else if (GET_CODE (PATTERN (insn
)) == SET
)
1103 offset
= stack_adjust_offset (PATTERN (insn
));
1104 else if (GET_CODE (PATTERN (insn
)) == PARALLEL
1105 || GET_CODE (PATTERN (insn
)) == SEQUENCE
)
1107 /* There may be stack adjustments inside compound insns. Search
1109 for (offset
= 0, i
= XVECLEN (PATTERN (insn
), 0) - 1; i
>= 0; i
--)
1110 if (GET_CODE (XVECEXP (PATTERN (insn
), 0, i
)) == SET
)
1111 offset
+= stack_adjust_offset (XVECEXP (PATTERN (insn
), 0, i
));
1119 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1120 cfa
.offset
+= offset
;
1122 #ifndef STACK_GROWS_DOWNWARD
1126 args_size
+= offset
;
1130 label
= dwarf2out_cfi_label ();
1131 def_cfa_1 (label
, &cfa
);
1132 if (flag_asynchronous_unwind_tables
)
1133 dwarf2out_args_size (label
, args_size
);
1138 /* We delay emitting a register save until either (a) we reach the end
1139 of the prologue or (b) the register is clobbered. This clusters
1140 register saves so that there are fewer pc advances. */
1142 struct queued_reg_save
GTY(())
1144 struct queued_reg_save
*next
;
1146 HOST_WIDE_INT cfa_offset
;
1150 static GTY(()) struct queued_reg_save
*queued_reg_saves
;
1152 /* The caller's ORIG_REG is saved in SAVED_IN_REG. */
1153 struct reg_saved_in_data
GTY(()) {
1158 /* A list of registers saved in other registers.
1159 The list intentionally has a small maximum capacity of 4; if your
1160 port needs more than that, you might consider implementing a
1161 more efficient data structure. */
1162 static GTY(()) struct reg_saved_in_data regs_saved_in_regs
[4];
1163 static GTY(()) size_t num_regs_saved_in_regs
;
1165 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1166 static const char *last_reg_save_label
;
1168 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1169 SREG, or if SREG is NULL then it is saved at OFFSET to the CFA. */
1172 queue_reg_save (const char *label
, rtx reg
, rtx sreg
, HOST_WIDE_INT offset
)
1174 struct queued_reg_save
*q
;
1176 /* Duplicates waste space, but it's also necessary to remove them
1177 for correctness, since the queue gets output in reverse
1179 for (q
= queued_reg_saves
; q
!= NULL
; q
= q
->next
)
1180 if (REGNO (q
->reg
) == REGNO (reg
))
1185 q
= ggc_alloc (sizeof (*q
));
1186 q
->next
= queued_reg_saves
;
1187 queued_reg_saves
= q
;
1191 q
->cfa_offset
= offset
;
1192 q
->saved_reg
= sreg
;
1194 last_reg_save_label
= label
;
1197 /* Output all the entries in QUEUED_REG_SAVES. */
1200 flush_queued_reg_saves (void)
1202 struct queued_reg_save
*q
;
1204 for (q
= queued_reg_saves
; q
; q
= q
->next
)
1207 unsigned int reg
, sreg
;
1209 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1210 if (REGNO (regs_saved_in_regs
[i
].orig_reg
) == REGNO (q
->reg
))
1212 if (q
->saved_reg
&& i
== num_regs_saved_in_regs
)
1214 gcc_assert (i
!= ARRAY_SIZE (regs_saved_in_regs
));
1215 num_regs_saved_in_regs
++;
1217 if (i
!= num_regs_saved_in_regs
)
1219 regs_saved_in_regs
[i
].orig_reg
= q
->reg
;
1220 regs_saved_in_regs
[i
].saved_in_reg
= q
->saved_reg
;
1223 reg
= DWARF_FRAME_REGNUM (REGNO (q
->reg
));
1225 sreg
= DWARF_FRAME_REGNUM (REGNO (q
->saved_reg
));
1227 sreg
= INVALID_REGNUM
;
1228 reg_save (last_reg_save_label
, reg
, sreg
, q
->cfa_offset
);
1231 queued_reg_saves
= NULL
;
1232 last_reg_save_label
= NULL
;
1235 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1236 location for? Or, does it clobber a register which we've previously
1237 said that some other register is saved in, and for which we now
1238 have a new location for? */
1241 clobbers_queued_reg_save (rtx insn
)
1243 struct queued_reg_save
*q
;
1245 for (q
= queued_reg_saves
; q
; q
= q
->next
)
1248 if (modified_in_p (q
->reg
, insn
))
1250 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1251 if (REGNO (q
->reg
) == REGNO (regs_saved_in_regs
[i
].orig_reg
)
1252 && modified_in_p (regs_saved_in_regs
[i
].saved_in_reg
, insn
))
1259 /* Entry point for saving the first register into the second. */
1262 dwarf2out_reg_save_reg (const char *label
, rtx reg
, rtx sreg
)
1265 unsigned int regno
, sregno
;
1267 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1268 if (REGNO (regs_saved_in_regs
[i
].orig_reg
) == REGNO (reg
))
1270 if (i
== num_regs_saved_in_regs
)
1272 gcc_assert (i
!= ARRAY_SIZE (regs_saved_in_regs
));
1273 num_regs_saved_in_regs
++;
1275 regs_saved_in_regs
[i
].orig_reg
= reg
;
1276 regs_saved_in_regs
[i
].saved_in_reg
= sreg
;
1278 regno
= DWARF_FRAME_REGNUM (REGNO (reg
));
1279 sregno
= DWARF_FRAME_REGNUM (REGNO (sreg
));
1280 reg_save (label
, regno
, sregno
, 0);
1283 /* What register, if any, is currently saved in REG? */
1286 reg_saved_in (rtx reg
)
1288 unsigned int regn
= REGNO (reg
);
1290 struct queued_reg_save
*q
;
1292 for (q
= queued_reg_saves
; q
; q
= q
->next
)
1293 if (q
->saved_reg
&& regn
== REGNO (q
->saved_reg
))
1296 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1297 if (regs_saved_in_regs
[i
].saved_in_reg
1298 && regn
== REGNO (regs_saved_in_regs
[i
].saved_in_reg
))
1299 return regs_saved_in_regs
[i
].orig_reg
;
1305 /* A temporary register holding an integral value used in adjusting SP
1306 or setting up the store_reg. The "offset" field holds the integer
1307 value, not an offset. */
1308 static dw_cfa_location cfa_temp
;
1310 /* Record call frame debugging information for an expression EXPR,
1311 which either sets SP or FP (adjusting how we calculate the frame
1312 address) or saves a register to the stack or another register.
1313 LABEL indicates the address of EXPR.
1315 This function encodes a state machine mapping rtxes to actions on
1316 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1317 users need not read the source code.
1319 The High-Level Picture
1321 Changes in the register we use to calculate the CFA: Currently we
1322 assume that if you copy the CFA register into another register, we
1323 should take the other one as the new CFA register; this seems to
1324 work pretty well. If it's wrong for some target, it's simple
1325 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1327 Changes in the register we use for saving registers to the stack:
1328 This is usually SP, but not always. Again, we deduce that if you
1329 copy SP into another register (and SP is not the CFA register),
1330 then the new register is the one we will be using for register
1331 saves. This also seems to work.
1333 Register saves: There's not much guesswork about this one; if
1334 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1335 register save, and the register used to calculate the destination
1336 had better be the one we think we're using for this purpose.
1337 It's also assumed that a copy from a call-saved register to another
1338 register is saving that register if RTX_FRAME_RELATED_P is set on
1339 that instruction. If the copy is from a call-saved register to
1340 the *same* register, that means that the register is now the same
1341 value as in the caller.
1343 Except: If the register being saved is the CFA register, and the
1344 offset is nonzero, we are saving the CFA, so we assume we have to
1345 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
1346 the intent is to save the value of SP from the previous frame.
1348 In addition, if a register has previously been saved to a different
1351 Invariants / Summaries of Rules
1353 cfa current rule for calculating the CFA. It usually
1354 consists of a register and an offset.
1355 cfa_store register used by prologue code to save things to the stack
1356 cfa_store.offset is the offset from the value of
1357 cfa_store.reg to the actual CFA
1358 cfa_temp register holding an integral value. cfa_temp.offset
1359 stores the value, which will be used to adjust the
1360 stack pointer. cfa_temp is also used like cfa_store,
1361 to track stores to the stack via fp or a temp reg.
1363 Rules 1- 4: Setting a register's value to cfa.reg or an expression
1364 with cfa.reg as the first operand changes the cfa.reg and its
1365 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
1368 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
1369 expression yielding a constant. This sets cfa_temp.reg
1370 and cfa_temp.offset.
1372 Rule 5: Create a new register cfa_store used to save items to the
1375 Rules 10-14: Save a register to the stack. Define offset as the
1376 difference of the original location and cfa_store's
1377 location (or cfa_temp's location if cfa_temp is used).
1381 "{a,b}" indicates a choice of a xor b.
1382 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1385 (set <reg1> <reg2>:cfa.reg)
1386 effects: cfa.reg = <reg1>
1387 cfa.offset unchanged
1388 cfa_temp.reg = <reg1>
1389 cfa_temp.offset = cfa.offset
1392 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
1393 {<const_int>,<reg>:cfa_temp.reg}))
1394 effects: cfa.reg = sp if fp used
1395 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1396 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1397 if cfa_store.reg==sp
1400 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1401 effects: cfa.reg = fp
1402 cfa_offset += +/- <const_int>
1405 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1406 constraints: <reg1> != fp
1408 effects: cfa.reg = <reg1>
1409 cfa_temp.reg = <reg1>
1410 cfa_temp.offset = cfa.offset
1413 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1414 constraints: <reg1> != fp
1416 effects: cfa_store.reg = <reg1>
1417 cfa_store.offset = cfa.offset - cfa_temp.offset
1420 (set <reg> <const_int>)
1421 effects: cfa_temp.reg = <reg>
1422 cfa_temp.offset = <const_int>
1425 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1426 effects: cfa_temp.reg = <reg1>
1427 cfa_temp.offset |= <const_int>
1430 (set <reg> (high <exp>))
1434 (set <reg> (lo_sum <exp> <const_int>))
1435 effects: cfa_temp.reg = <reg>
1436 cfa_temp.offset = <const_int>
1439 (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1440 effects: cfa_store.offset -= <const_int>
1441 cfa.offset = cfa_store.offset if cfa.reg == sp
1443 cfa.base_offset = -cfa_store.offset
1446 (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
1447 effects: cfa_store.offset += -/+ mode_size(mem)
1448 cfa.offset = cfa_store.offset if cfa.reg == sp
1450 cfa.base_offset = -cfa_store.offset
1453 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
1456 effects: cfa.reg = <reg1>
1457 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1460 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1461 effects: cfa.reg = <reg1>
1462 cfa.base_offset = -{cfa_store,cfa_temp}.offset
1465 (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
1466 effects: cfa.reg = <reg1>
1467 cfa.base_offset = -cfa_temp.offset
1468 cfa_temp.offset -= mode_size(mem)
1471 Â (set <reg> {unspec, unspec_volatile})
1472 Â effects: target-dependent */
1475 dwarf2out_frame_debug_expr (rtx expr
, const char *label
)
1478 HOST_WIDE_INT offset
;
1480 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1481 the PARALLEL independently. The first element is always processed if
1482 it is a SET. This is for backward compatibility. Other elements
1483 are processed only if they are SETs and the RTX_FRAME_RELATED_P
1484 flag is set in them. */
1485 if (GET_CODE (expr
) == PARALLEL
|| GET_CODE (expr
) == SEQUENCE
)
1488 int limit
= XVECLEN (expr
, 0);
1490 for (par_index
= 0; par_index
< limit
; par_index
++)
1491 if (GET_CODE (XVECEXP (expr
, 0, par_index
)) == SET
1492 && (RTX_FRAME_RELATED_P (XVECEXP (expr
, 0, par_index
))
1494 dwarf2out_frame_debug_expr (XVECEXP (expr
, 0, par_index
), label
);
1499 gcc_assert (GET_CODE (expr
) == SET
);
1501 src
= SET_SRC (expr
);
1502 dest
= SET_DEST (expr
);
1506 rtx rsi
= reg_saved_in (src
);
1511 switch (GET_CODE (dest
))
1514 switch (GET_CODE (src
))
1516 /* Setting FP from SP. */
1518 if (cfa
.reg
== (unsigned) REGNO (src
))
1521 /* Update the CFA rule wrt SP or FP. Make sure src is
1522 relative to the current CFA register.
1524 We used to require that dest be either SP or FP, but the
1525 ARM copies SP to a temporary register, and from there to
1526 FP. So we just rely on the backends to only set
1527 RTX_FRAME_RELATED_P on appropriate insns. */
1528 cfa
.reg
= REGNO (dest
);
1529 cfa_temp
.reg
= cfa
.reg
;
1530 cfa_temp
.offset
= cfa
.offset
;
1534 /* Saving a register in a register. */
1535 gcc_assert (!fixed_regs
[REGNO (dest
)]
1536 /* For the SPARC and its register window. */
1537 || (DWARF_FRAME_REGNUM (REGNO (src
))
1538 == DWARF_FRAME_RETURN_COLUMN
));
1539 queue_reg_save (label
, src
, dest
, 0);
1546 if (dest
== stack_pointer_rtx
)
1550 switch (GET_CODE (XEXP (src
, 1)))
1553 offset
= INTVAL (XEXP (src
, 1));
1556 gcc_assert ((unsigned) REGNO (XEXP (src
, 1))
1558 offset
= cfa_temp
.offset
;
1564 if (XEXP (src
, 0) == hard_frame_pointer_rtx
)
1566 /* Restoring SP from FP in the epilogue. */
1567 gcc_assert (cfa
.reg
== (unsigned) HARD_FRAME_POINTER_REGNUM
);
1568 cfa
.reg
= STACK_POINTER_REGNUM
;
1570 else if (GET_CODE (src
) == LO_SUM
)
1571 /* Assume we've set the source reg of the LO_SUM from sp. */
1574 gcc_assert (XEXP (src
, 0) == stack_pointer_rtx
);
1576 if (GET_CODE (src
) != MINUS
)
1578 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1579 cfa
.offset
+= offset
;
1580 if (cfa_store
.reg
== STACK_POINTER_REGNUM
)
1581 cfa_store
.offset
+= offset
;
1583 else if (dest
== hard_frame_pointer_rtx
)
1586 /* Either setting the FP from an offset of the SP,
1587 or adjusting the FP */
1588 gcc_assert (frame_pointer_needed
);
1590 gcc_assert (REG_P (XEXP (src
, 0))
1591 && (unsigned) REGNO (XEXP (src
, 0)) == cfa
.reg
1592 && GET_CODE (XEXP (src
, 1)) == CONST_INT
);
1593 offset
= INTVAL (XEXP (src
, 1));
1594 if (GET_CODE (src
) != MINUS
)
1596 cfa
.offset
+= offset
;
1597 cfa
.reg
= HARD_FRAME_POINTER_REGNUM
;
1601 gcc_assert (GET_CODE (src
) != MINUS
);
1604 if (REG_P (XEXP (src
, 0))
1605 && REGNO (XEXP (src
, 0)) == cfa
.reg
1606 && GET_CODE (XEXP (src
, 1)) == CONST_INT
)
1608 /* Setting a temporary CFA register that will be copied
1609 into the FP later on. */
1610 offset
= - INTVAL (XEXP (src
, 1));
1611 cfa
.offset
+= offset
;
1612 cfa
.reg
= REGNO (dest
);
1613 /* Or used to save regs to the stack. */
1614 cfa_temp
.reg
= cfa
.reg
;
1615 cfa_temp
.offset
= cfa
.offset
;
1619 else if (REG_P (XEXP (src
, 0))
1620 && REGNO (XEXP (src
, 0)) == cfa_temp
.reg
1621 && XEXP (src
, 1) == stack_pointer_rtx
)
1623 /* Setting a scratch register that we will use instead
1624 of SP for saving registers to the stack. */
1625 gcc_assert (cfa
.reg
== STACK_POINTER_REGNUM
);
1626 cfa_store
.reg
= REGNO (dest
);
1627 cfa_store
.offset
= cfa
.offset
- cfa_temp
.offset
;
1631 else if (GET_CODE (src
) == LO_SUM
1632 && GET_CODE (XEXP (src
, 1)) == CONST_INT
)
1634 cfa_temp
.reg
= REGNO (dest
);
1635 cfa_temp
.offset
= INTVAL (XEXP (src
, 1));
1644 cfa_temp
.reg
= REGNO (dest
);
1645 cfa_temp
.offset
= INTVAL (src
);
1650 gcc_assert (REG_P (XEXP (src
, 0))
1651 && (unsigned) REGNO (XEXP (src
, 0)) == cfa_temp
.reg
1652 && GET_CODE (XEXP (src
, 1)) == CONST_INT
);
1654 if ((unsigned) REGNO (dest
) != cfa_temp
.reg
)
1655 cfa_temp
.reg
= REGNO (dest
);
1656 cfa_temp
.offset
|= INTVAL (XEXP (src
, 1));
1659 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
1660 which will fill in all of the bits. */
1667 case UNSPEC_VOLATILE
:
1668 gcc_assert (targetm
.dwarf_handle_frame_unspec
);
1669 targetm
.dwarf_handle_frame_unspec (label
, expr
, XINT (src
, 1));
1676 def_cfa_1 (label
, &cfa
);
1680 gcc_assert (REG_P (src
));
1682 /* Saving a register to the stack. Make sure dest is relative to the
1684 switch (GET_CODE (XEXP (dest
, 0)))
1689 /* We can't handle variable size modifications. */
1690 gcc_assert (GET_CODE (XEXP (XEXP (XEXP (dest
, 0), 1), 1))
1692 offset
= -INTVAL (XEXP (XEXP (XEXP (dest
, 0), 1), 1));
1694 gcc_assert (REGNO (XEXP (XEXP (dest
, 0), 0)) == STACK_POINTER_REGNUM
1695 && cfa_store
.reg
== STACK_POINTER_REGNUM
);
1697 cfa_store
.offset
+= offset
;
1698 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1699 cfa
.offset
= cfa_store
.offset
;
1701 offset
= -cfa_store
.offset
;
1707 offset
= GET_MODE_SIZE (GET_MODE (dest
));
1708 if (GET_CODE (XEXP (dest
, 0)) == PRE_INC
)
1711 gcc_assert (REGNO (XEXP (XEXP (dest
, 0), 0)) == STACK_POINTER_REGNUM
1712 && cfa_store
.reg
== STACK_POINTER_REGNUM
);
1714 cfa_store
.offset
+= offset
;
1715 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1716 cfa
.offset
= cfa_store
.offset
;
1718 offset
= -cfa_store
.offset
;
1722 /* With an offset. */
1729 gcc_assert (GET_CODE (XEXP (XEXP (dest
, 0), 1)) == CONST_INT
1730 && REG_P (XEXP (XEXP (dest
, 0), 0)));
1731 offset
= INTVAL (XEXP (XEXP (dest
, 0), 1));
1732 if (GET_CODE (XEXP (dest
, 0)) == MINUS
)
1735 regno
= REGNO (XEXP (XEXP (dest
, 0), 0));
1737 if (cfa_store
.reg
== (unsigned) regno
)
1738 offset
-= cfa_store
.offset
;
1741 gcc_assert (cfa_temp
.reg
== (unsigned) regno
);
1742 offset
-= cfa_temp
.offset
;
1748 /* Without an offset. */
1751 int regno
= REGNO (XEXP (dest
, 0));
1753 if (cfa_store
.reg
== (unsigned) regno
)
1754 offset
= -cfa_store
.offset
;
1757 gcc_assert (cfa_temp
.reg
== (unsigned) regno
);
1758 offset
= -cfa_temp
.offset
;
1765 gcc_assert (cfa_temp
.reg
1766 == (unsigned) REGNO (XEXP (XEXP (dest
, 0), 0)));
1767 offset
= -cfa_temp
.offset
;
1768 cfa_temp
.offset
-= GET_MODE_SIZE (GET_MODE (dest
));
1775 if (REGNO (src
) != STACK_POINTER_REGNUM
1776 && REGNO (src
) != HARD_FRAME_POINTER_REGNUM
1777 && (unsigned) REGNO (src
) == cfa
.reg
)
1779 /* We're storing the current CFA reg into the stack. */
1781 if (cfa
.offset
== 0)
1783 /* If the source register is exactly the CFA, assume
1784 we're saving SP like any other register; this happens
1786 def_cfa_1 (label
, &cfa
);
1787 queue_reg_save (label
, stack_pointer_rtx
, NULL_RTX
, offset
);
1792 /* Otherwise, we'll need to look in the stack to
1793 calculate the CFA. */
1794 rtx x
= XEXP (dest
, 0);
1798 gcc_assert (REG_P (x
));
1800 cfa
.reg
= REGNO (x
);
1801 cfa
.base_offset
= offset
;
1803 def_cfa_1 (label
, &cfa
);
1808 def_cfa_1 (label
, &cfa
);
1809 queue_reg_save (label
, src
, NULL_RTX
, offset
);
1817 /* Record call frame debugging information for INSN, which either
1818 sets SP or FP (adjusting how we calculate the frame address) or saves a
1819 register to the stack. If INSN is NULL_RTX, initialize our state.
1821 If AFTER_P is false, we're being called before the insn is emitted,
1822 otherwise after. Call instructions get invoked twice. */
1825 dwarf2out_frame_debug (rtx insn
, bool after_p
)
1830 if (insn
== NULL_RTX
)
1834 /* Flush any queued register saves. */
1835 flush_queued_reg_saves ();
1837 /* Set up state for generating call frame debug info. */
1840 == (unsigned long)DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM
));
1842 cfa
.reg
= STACK_POINTER_REGNUM
;
1845 cfa_temp
.offset
= 0;
1847 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1849 regs_saved_in_regs
[i
].orig_reg
= NULL_RTX
;
1850 regs_saved_in_regs
[i
].saved_in_reg
= NULL_RTX
;
1852 num_regs_saved_in_regs
= 0;
1856 if (!NONJUMP_INSN_P (insn
) || clobbers_queued_reg_save (insn
))
1857 flush_queued_reg_saves ();
1859 if (! RTX_FRAME_RELATED_P (insn
))
1861 if (!ACCUMULATE_OUTGOING_ARGS
)
1862 dwarf2out_stack_adjust (insn
, after_p
);
1866 label
= dwarf2out_cfi_label ();
1867 src
= find_reg_note (insn
, REG_FRAME_RELATED_EXPR
, NULL_RTX
);
1869 insn
= XEXP (src
, 0);
1871 insn
= PATTERN (insn
);
1873 dwarf2out_frame_debug_expr (insn
, label
);
1878 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
1879 static enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
1880 (enum dwarf_call_frame_info cfi
);
1882 static enum dw_cfi_oprnd_type
1883 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi
)
1888 case DW_CFA_GNU_window_save
:
1889 return dw_cfi_oprnd_unused
;
1891 case DW_CFA_set_loc
:
1892 case DW_CFA_advance_loc1
:
1893 case DW_CFA_advance_loc2
:
1894 case DW_CFA_advance_loc4
:
1895 case DW_CFA_MIPS_advance_loc8
:
1896 return dw_cfi_oprnd_addr
;
1899 case DW_CFA_offset_extended
:
1900 case DW_CFA_def_cfa
:
1901 case DW_CFA_offset_extended_sf
:
1902 case DW_CFA_def_cfa_sf
:
1903 case DW_CFA_restore_extended
:
1904 case DW_CFA_undefined
:
1905 case DW_CFA_same_value
:
1906 case DW_CFA_def_cfa_register
:
1907 case DW_CFA_register
:
1908 return dw_cfi_oprnd_reg_num
;
1910 case DW_CFA_def_cfa_offset
:
1911 case DW_CFA_GNU_args_size
:
1912 case DW_CFA_def_cfa_offset_sf
:
1913 return dw_cfi_oprnd_offset
;
1915 case DW_CFA_def_cfa_expression
:
1916 case DW_CFA_expression
:
1917 return dw_cfi_oprnd_loc
;
1924 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
1925 static enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
1926 (enum dwarf_call_frame_info cfi
);
1928 static enum dw_cfi_oprnd_type
1929 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi
)
1933 case DW_CFA_def_cfa
:
1934 case DW_CFA_def_cfa_sf
:
1936 case DW_CFA_offset_extended_sf
:
1937 case DW_CFA_offset_extended
:
1938 return dw_cfi_oprnd_offset
;
1940 case DW_CFA_register
:
1941 return dw_cfi_oprnd_reg_num
;
1944 return dw_cfi_oprnd_unused
;
1948 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1950 /* Switch to eh_frame_section. If we don't have an eh_frame_section,
1951 switch to the data section instead, and write out a synthetic label
1955 switch_to_eh_frame_section (void)
1959 #ifdef EH_FRAME_SECTION_NAME
1960 if (eh_frame_section
== 0)
1964 if (EH_TABLES_CAN_BE_READ_ONLY
)
1970 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
1972 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
1974 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
1976 flags
= ((! flag_pic
1977 || ((fde_encoding
& 0x70) != DW_EH_PE_absptr
1978 && (fde_encoding
& 0x70) != DW_EH_PE_aligned
1979 && (per_encoding
& 0x70) != DW_EH_PE_absptr
1980 && (per_encoding
& 0x70) != DW_EH_PE_aligned
1981 && (lsda_encoding
& 0x70) != DW_EH_PE_absptr
1982 && (lsda_encoding
& 0x70) != DW_EH_PE_aligned
))
1983 ? 0 : SECTION_WRITE
);
1986 flags
= SECTION_WRITE
;
1987 eh_frame_section
= get_section (EH_FRAME_SECTION_NAME
, flags
, NULL
);
1991 if (eh_frame_section
)
1992 switch_to_section (eh_frame_section
);
1995 /* We have no special eh_frame section. Put the information in
1996 the data section and emit special labels to guide collect2. */
1997 switch_to_section (data_section
);
1998 label
= get_file_function_name ('F');
1999 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
2000 targetm
.asm_out
.globalize_label (asm_out_file
,
2001 IDENTIFIER_POINTER (label
));
2002 ASM_OUTPUT_LABEL (asm_out_file
, IDENTIFIER_POINTER (label
));
2006 /* Map register numbers held in the call frame info that gcc has
2007 collected using DWARF_FRAME_REGNUM to those that should be output in
2008 .debug_frame and .eh_frame. */
2009 #ifndef DWARF2_FRAME_REG_OUT
2010 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
2013 /* Output a Call Frame Information opcode and its operand(s). */
2016 output_cfi (dw_cfi_ref cfi
, dw_fde_ref fde
, int for_eh
)
2019 if (cfi
->dw_cfi_opc
== DW_CFA_advance_loc
)
2020 dw2_asm_output_data (1, (cfi
->dw_cfi_opc
2021 | (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
& 0x3f)),
2022 "DW_CFA_advance_loc " HOST_WIDE_INT_PRINT_HEX
,
2023 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
);
2024 else if (cfi
->dw_cfi_opc
== DW_CFA_offset
)
2026 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2027 dw2_asm_output_data (1, (cfi
->dw_cfi_opc
| (r
& 0x3f)),
2028 "DW_CFA_offset, column 0x%lx", r
);
2029 dw2_asm_output_data_uleb128 (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
, NULL
);
2031 else if (cfi
->dw_cfi_opc
== DW_CFA_restore
)
2033 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2034 dw2_asm_output_data (1, (cfi
->dw_cfi_opc
| (r
& 0x3f)),
2035 "DW_CFA_restore, column 0x%lx", r
);
2039 dw2_asm_output_data (1, cfi
->dw_cfi_opc
,
2040 "%s", dwarf_cfi_name (cfi
->dw_cfi_opc
));
2042 switch (cfi
->dw_cfi_opc
)
2044 case DW_CFA_set_loc
:
2046 dw2_asm_output_encoded_addr_rtx (
2047 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
2048 gen_rtx_SYMBOL_REF (Pmode
, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
),
2051 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
2052 cfi
->dw_cfi_oprnd1
.dw_cfi_addr
, NULL
);
2055 case DW_CFA_advance_loc1
:
2056 dw2_asm_output_delta (1, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2057 fde
->dw_fde_current_label
, NULL
);
2058 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2061 case DW_CFA_advance_loc2
:
2062 dw2_asm_output_delta (2, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2063 fde
->dw_fde_current_label
, NULL
);
2064 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2067 case DW_CFA_advance_loc4
:
2068 dw2_asm_output_delta (4, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2069 fde
->dw_fde_current_label
, NULL
);
2070 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2073 case DW_CFA_MIPS_advance_loc8
:
2074 dw2_asm_output_delta (8, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2075 fde
->dw_fde_current_label
, NULL
);
2076 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2079 case DW_CFA_offset_extended
:
2080 case DW_CFA_def_cfa
:
2081 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2082 dw2_asm_output_data_uleb128 (r
, NULL
);
2083 dw2_asm_output_data_uleb128 (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
, NULL
);
2086 case DW_CFA_offset_extended_sf
:
2087 case DW_CFA_def_cfa_sf
:
2088 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2089 dw2_asm_output_data_uleb128 (r
, NULL
);
2090 dw2_asm_output_data_sleb128 (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
, NULL
);
2093 case DW_CFA_restore_extended
:
2094 case DW_CFA_undefined
:
2095 case DW_CFA_same_value
:
2096 case DW_CFA_def_cfa_register
:
2097 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2098 dw2_asm_output_data_uleb128 (r
, NULL
);
2101 case DW_CFA_register
:
2102 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2103 dw2_asm_output_data_uleb128 (r
, NULL
);
2104 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
, for_eh
);
2105 dw2_asm_output_data_uleb128 (r
, NULL
);
2108 case DW_CFA_def_cfa_offset
:
2109 case DW_CFA_GNU_args_size
:
2110 dw2_asm_output_data_uleb128 (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
, NULL
);
2113 case DW_CFA_def_cfa_offset_sf
:
2114 dw2_asm_output_data_sleb128 (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
, NULL
);
2117 case DW_CFA_GNU_window_save
:
2120 case DW_CFA_def_cfa_expression
:
2121 case DW_CFA_expression
:
2122 output_cfa_loc (cfi
);
2125 case DW_CFA_GNU_negative_offset_extended
:
2126 /* Obsoleted by DW_CFA_offset_extended_sf. */
2135 /* Output the call frame information used to record information
2136 that relates to calculating the frame pointer, and records the
2137 location of saved registers. */
2140 output_call_frame_info (int for_eh
)
2145 char l1
[20], l2
[20], section_start_label
[20];
2146 bool any_lsda_needed
= false;
2147 char augmentation
[6];
2148 int augmentation_size
;
2149 int fde_encoding
= DW_EH_PE_absptr
;
2150 int per_encoding
= DW_EH_PE_absptr
;
2151 int lsda_encoding
= DW_EH_PE_absptr
;
2154 /* Don't emit a CIE if there won't be any FDEs. */
2155 if (fde_table_in_use
== 0)
2158 /* If we make FDEs linkonce, we may have to emit an empty label for
2159 an FDE that wouldn't otherwise be emitted. We want to avoid
2160 having an FDE kept around when the function it refers to is
2161 discarded. Example where this matters: a primary function
2162 template in C++ requires EH information, but an explicit
2163 specialization doesn't. */
2164 if (TARGET_USES_WEAK_UNWIND_INFO
2165 && ! flag_asynchronous_unwind_tables
2167 for (i
= 0; i
< fde_table_in_use
; i
++)
2168 if ((fde_table
[i
].nothrow
|| fde_table
[i
].all_throwers_are_sibcalls
)
2169 && !fde_table
[i
].uses_eh_lsda
2170 && ! DECL_WEAK (fde_table
[i
].decl
))
2171 targetm
.asm_out
.unwind_label (asm_out_file
, fde_table
[i
].decl
,
2172 for_eh
, /* empty */ 1);
2174 /* If we don't have any functions we'll want to unwind out of, don't
2175 emit any EH unwind information. Note that if exceptions aren't
2176 enabled, we won't have collected nothrow information, and if we
2177 asked for asynchronous tables, we always want this info. */
2180 bool any_eh_needed
= !flag_exceptions
|| flag_asynchronous_unwind_tables
;
2182 for (i
= 0; i
< fde_table_in_use
; i
++)
2183 if (fde_table
[i
].uses_eh_lsda
)
2184 any_eh_needed
= any_lsda_needed
= true;
2185 else if (TARGET_USES_WEAK_UNWIND_INFO
&& DECL_WEAK (fde_table
[i
].decl
))
2186 any_eh_needed
= true;
2187 else if (! fde_table
[i
].nothrow
2188 && ! fde_table
[i
].all_throwers_are_sibcalls
)
2189 any_eh_needed
= true;
2191 if (! any_eh_needed
)
2195 /* We're going to be generating comments, so turn on app. */
2200 switch_to_eh_frame_section ();
2202 switch_to_section (get_section (DEBUG_FRAME_SECTION
, SECTION_DEBUG
, NULL
));
2204 ASM_GENERATE_INTERNAL_LABEL (section_start_label
, FRAME_BEGIN_LABEL
, for_eh
);
2205 ASM_OUTPUT_LABEL (asm_out_file
, section_start_label
);
2207 /* Output the CIE. */
2208 ASM_GENERATE_INTERNAL_LABEL (l1
, CIE_AFTER_SIZE_LABEL
, for_eh
);
2209 ASM_GENERATE_INTERNAL_LABEL (l2
, CIE_END_LABEL
, for_eh
);
2210 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
2211 "Length of Common Information Entry");
2212 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
2214 /* Now that the CIE pointer is PC-relative for EH,
2215 use 0 to identify the CIE. */
2216 dw2_asm_output_data ((for_eh
? 4 : DWARF_OFFSET_SIZE
),
2217 (for_eh
? 0 : DW_CIE_ID
),
2218 "CIE Identifier Tag");
2220 dw2_asm_output_data (1, DW_CIE_VERSION
, "CIE Version");
2222 augmentation
[0] = 0;
2223 augmentation_size
= 0;
2229 z Indicates that a uleb128 is present to size the
2230 augmentation section.
2231 L Indicates the encoding (and thus presence) of
2232 an LSDA pointer in the FDE augmentation.
2233 R Indicates a non-default pointer encoding for
2235 P Indicates the presence of an encoding + language
2236 personality routine in the CIE augmentation. */
2238 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
2239 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
2240 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
2242 p
= augmentation
+ 1;
2243 if (eh_personality_libfunc
)
2246 augmentation_size
+= 1 + size_of_encoded_value (per_encoding
);
2248 if (any_lsda_needed
)
2251 augmentation_size
+= 1;
2253 if (fde_encoding
!= DW_EH_PE_absptr
)
2256 augmentation_size
+= 1;
2258 if (p
> augmentation
+ 1)
2260 augmentation
[0] = 'z';
2264 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
2265 if (eh_personality_libfunc
&& per_encoding
== DW_EH_PE_aligned
)
2267 int offset
= ( 4 /* Length */
2269 + 1 /* CIE version */
2270 + strlen (augmentation
) + 1 /* Augmentation */
2271 + size_of_uleb128 (1) /* Code alignment */
2272 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT
)
2274 + 1 /* Augmentation size */
2275 + 1 /* Personality encoding */ );
2276 int pad
= -offset
& (PTR_SIZE
- 1);
2278 augmentation_size
+= pad
;
2280 /* Augmentations should be small, so there's scarce need to
2281 iterate for a solution. Die if we exceed one uleb128 byte. */
2282 gcc_assert (size_of_uleb128 (augmentation_size
) == 1);
2286 dw2_asm_output_nstring (augmentation
, -1, "CIE Augmentation");
2287 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
2288 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT
,
2289 "CIE Data Alignment Factor");
2291 return_reg
= DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN
, for_eh
);
2292 if (DW_CIE_VERSION
== 1)
2293 dw2_asm_output_data (1, return_reg
, "CIE RA Column");
2295 dw2_asm_output_data_uleb128 (return_reg
, "CIE RA Column");
2297 if (augmentation
[0])
2299 dw2_asm_output_data_uleb128 (augmentation_size
, "Augmentation size");
2300 if (eh_personality_libfunc
)
2302 dw2_asm_output_data (1, per_encoding
, "Personality (%s)",
2303 eh_data_format_name (per_encoding
));
2304 dw2_asm_output_encoded_addr_rtx (per_encoding
,
2305 eh_personality_libfunc
,
2309 if (any_lsda_needed
)
2310 dw2_asm_output_data (1, lsda_encoding
, "LSDA Encoding (%s)",
2311 eh_data_format_name (lsda_encoding
));
2313 if (fde_encoding
!= DW_EH_PE_absptr
)
2314 dw2_asm_output_data (1, fde_encoding
, "FDE Encoding (%s)",
2315 eh_data_format_name (fde_encoding
));
2318 for (cfi
= cie_cfi_head
; cfi
!= NULL
; cfi
= cfi
->dw_cfi_next
)
2319 output_cfi (cfi
, NULL
, for_eh
);
2321 /* Pad the CIE out to an address sized boundary. */
2322 ASM_OUTPUT_ALIGN (asm_out_file
,
2323 floor_log2 (for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
));
2324 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
2326 /* Loop through all of the FDE's. */
2327 for (i
= 0; i
< fde_table_in_use
; i
++)
2329 fde
= &fde_table
[i
];
2331 /* Don't emit EH unwind info for leaf functions that don't need it. */
2332 if (for_eh
&& !flag_asynchronous_unwind_tables
&& flag_exceptions
2333 && (fde
->nothrow
|| fde
->all_throwers_are_sibcalls
)
2334 && ! (TARGET_USES_WEAK_UNWIND_INFO
&& DECL_WEAK (fde_table
[i
].decl
))
2335 && !fde
->uses_eh_lsda
)
2338 targetm
.asm_out
.unwind_label (asm_out_file
, fde
->decl
, for_eh
, /* empty */ 0);
2339 targetm
.asm_out
.internal_label (asm_out_file
, FDE_LABEL
, for_eh
+ i
* 2);
2340 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_AFTER_SIZE_LABEL
, for_eh
+ i
* 2);
2341 ASM_GENERATE_INTERNAL_LABEL (l2
, FDE_END_LABEL
, for_eh
+ i
* 2);
2342 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
2344 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
2347 dw2_asm_output_delta (4, l1
, section_start_label
, "FDE CIE offset");
2349 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, section_start_label
,
2354 rtx sym_ref
= gen_rtx_SYMBOL_REF (Pmode
, fde
->dw_fde_begin
);
2355 SYMBOL_REF_FLAGS (sym_ref
) |= SYMBOL_FLAG_LOCAL
;
2356 dw2_asm_output_encoded_addr_rtx (fde_encoding
,
2359 "FDE initial location");
2360 if (fde
->dw_fde_switched_sections
)
2362 rtx sym_ref2
= gen_rtx_SYMBOL_REF (Pmode
,
2363 fde
->dw_fde_unlikely_section_label
);
2364 rtx sym_ref3
= gen_rtx_SYMBOL_REF (Pmode
,
2365 fde
->dw_fde_hot_section_label
);
2366 SYMBOL_REF_FLAGS (sym_ref2
) |= SYMBOL_FLAG_LOCAL
;
2367 SYMBOL_REF_FLAGS (sym_ref3
) |= SYMBOL_FLAG_LOCAL
;
2368 dw2_asm_output_encoded_addr_rtx (fde_encoding
, sym_ref3
, false,
2369 "FDE initial location");
2370 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
2371 fde
->dw_fde_hot_section_end_label
,
2372 fde
->dw_fde_hot_section_label
,
2373 "FDE address range");
2374 dw2_asm_output_encoded_addr_rtx (fde_encoding
, sym_ref2
, false,
2375 "FDE initial location");
2376 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
2377 fde
->dw_fde_unlikely_section_end_label
,
2378 fde
->dw_fde_unlikely_section_label
,
2379 "FDE address range");
2382 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
2383 fde
->dw_fde_end
, fde
->dw_fde_begin
,
2384 "FDE address range");
2388 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, fde
->dw_fde_begin
,
2389 "FDE initial location");
2390 if (fde
->dw_fde_switched_sections
)
2392 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
2393 fde
->dw_fde_hot_section_label
,
2394 "FDE initial location");
2395 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
2396 fde
->dw_fde_hot_section_end_label
,
2397 fde
->dw_fde_hot_section_label
,
2398 "FDE address range");
2399 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
2400 fde
->dw_fde_unlikely_section_label
,
2401 "FDE initial location");
2402 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
2403 fde
->dw_fde_unlikely_section_end_label
,
2404 fde
->dw_fde_unlikely_section_label
,
2405 "FDE address range");
2408 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
2409 fde
->dw_fde_end
, fde
->dw_fde_begin
,
2410 "FDE address range");
2413 if (augmentation
[0])
2415 if (any_lsda_needed
)
2417 int size
= size_of_encoded_value (lsda_encoding
);
2419 if (lsda_encoding
== DW_EH_PE_aligned
)
2421 int offset
= ( 4 /* Length */
2422 + 4 /* CIE offset */
2423 + 2 * size_of_encoded_value (fde_encoding
)
2424 + 1 /* Augmentation size */ );
2425 int pad
= -offset
& (PTR_SIZE
- 1);
2428 gcc_assert (size_of_uleb128 (size
) == 1);
2431 dw2_asm_output_data_uleb128 (size
, "Augmentation size");
2433 if (fde
->uses_eh_lsda
)
2435 ASM_GENERATE_INTERNAL_LABEL (l1
, "LLSDA",
2436 fde
->funcdef_number
);
2437 dw2_asm_output_encoded_addr_rtx (
2438 lsda_encoding
, gen_rtx_SYMBOL_REF (Pmode
, l1
),
2439 false, "Language Specific Data Area");
2443 if (lsda_encoding
== DW_EH_PE_aligned
)
2444 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
2446 (size_of_encoded_value (lsda_encoding
), 0,
2447 "Language Specific Data Area (none)");
2451 dw2_asm_output_data_uleb128 (0, "Augmentation size");
2454 /* Loop through the Call Frame Instructions associated with
2456 fde
->dw_fde_current_label
= fde
->dw_fde_begin
;
2457 for (cfi
= fde
->dw_fde_cfi
; cfi
!= NULL
; cfi
= cfi
->dw_cfi_next
)
2458 output_cfi (cfi
, fde
, for_eh
);
2460 /* Pad the FDE out to an address sized boundary. */
2461 ASM_OUTPUT_ALIGN (asm_out_file
,
2462 floor_log2 ((for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
)));
2463 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
2466 if (for_eh
&& targetm
.terminate_dw2_eh_frame_info
)
2467 dw2_asm_output_data (4, 0, "End of Table");
2468 #ifdef MIPS_DEBUGGING_INFO
2469 /* Work around Irix 6 assembler bug whereby labels at the end of a section
2470 get a value of 0. Putting .align 0 after the label fixes it. */
2471 ASM_OUTPUT_ALIGN (asm_out_file
, 0);
2474 /* Turn off app to make assembly quicker. */
2479 /* Output a marker (i.e. a label) for the beginning of a function, before
2483 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED
,
2484 const char *file ATTRIBUTE_UNUSED
)
2486 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
2490 current_function_func_begin_label
= NULL
;
2492 #ifdef TARGET_UNWIND_INFO
2493 /* ??? current_function_func_begin_label is also used by except.c
2494 for call-site information. We must emit this label if it might
2496 if ((! flag_exceptions
|| USING_SJLJ_EXCEPTIONS
)
2497 && ! dwarf2out_do_frame ())
2500 if (! dwarf2out_do_frame ())
2504 switch_to_section (function_section (current_function_decl
));
2505 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_BEGIN_LABEL
,
2506 current_function_funcdef_no
);
2507 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, FUNC_BEGIN_LABEL
,
2508 current_function_funcdef_no
);
2509 dup_label
= xstrdup (label
);
2510 current_function_func_begin_label
= dup_label
;
2512 #ifdef TARGET_UNWIND_INFO
2513 /* We can elide the fde allocation if we're not emitting debug info. */
2514 if (! dwarf2out_do_frame ())
2518 /* Expand the fde table if necessary. */
2519 if (fde_table_in_use
== fde_table_allocated
)
2521 fde_table_allocated
+= FDE_TABLE_INCREMENT
;
2522 fde_table
= ggc_realloc (fde_table
,
2523 fde_table_allocated
* sizeof (dw_fde_node
));
2524 memset (fde_table
+ fde_table_in_use
, 0,
2525 FDE_TABLE_INCREMENT
* sizeof (dw_fde_node
));
2528 /* Record the FDE associated with this function. */
2529 current_funcdef_fde
= fde_table_in_use
;
2531 /* Add the new FDE at the end of the fde_table. */
2532 fde
= &fde_table
[fde_table_in_use
++];
2533 fde
->decl
= current_function_decl
;
2534 fde
->dw_fde_begin
= dup_label
;
2535 fde
->dw_fde_current_label
= NULL
;
2536 fde
->dw_fde_hot_section_label
= NULL
;
2537 fde
->dw_fde_hot_section_end_label
= NULL
;
2538 fde
->dw_fde_unlikely_section_label
= NULL
;
2539 fde
->dw_fde_unlikely_section_end_label
= NULL
;
2540 fde
->dw_fde_switched_sections
= false;
2541 fde
->dw_fde_end
= NULL
;
2542 fde
->dw_fde_cfi
= NULL
;
2543 fde
->funcdef_number
= current_function_funcdef_no
;
2544 fde
->nothrow
= TREE_NOTHROW (current_function_decl
);
2545 fde
->uses_eh_lsda
= cfun
->uses_eh_lsda
;
2546 fde
->all_throwers_are_sibcalls
= cfun
->all_throwers_are_sibcalls
;
2548 args_size
= old_args_size
= 0;
2550 /* We only want to output line number information for the genuine dwarf2
2551 prologue case, not the eh frame case. */
2552 #ifdef DWARF2_DEBUGGING_INFO
2554 dwarf2out_source_line (line
, file
);
2558 /* Output a marker (i.e. a label) for the absolute end of the generated code
2559 for a function definition. This gets called *after* the epilogue code has
2563 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED
,
2564 const char *file ATTRIBUTE_UNUSED
)
2567 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
2569 /* Output a label to mark the endpoint of the code generated for this
2571 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_END_LABEL
,
2572 current_function_funcdef_no
);
2573 ASM_OUTPUT_LABEL (asm_out_file
, label
);
2574 fde
= &fde_table
[fde_table_in_use
- 1];
2575 fde
->dw_fde_end
= xstrdup (label
);
2579 dwarf2out_frame_init (void)
2581 /* Allocate the initial hunk of the fde_table. */
2582 fde_table
= ggc_alloc_cleared (FDE_TABLE_INCREMENT
* sizeof (dw_fde_node
));
2583 fde_table_allocated
= FDE_TABLE_INCREMENT
;
2584 fde_table_in_use
= 0;
2586 /* Generate the CFA instructions common to all FDE's. Do it now for the
2587 sake of lookup_cfa. */
2589 #ifdef DWARF2_UNWIND_INFO
2590 /* On entry, the Canonical Frame Address is at SP. */
2591 dwarf2out_def_cfa (NULL
, STACK_POINTER_REGNUM
, INCOMING_FRAME_SP_OFFSET
);
2592 initial_return_save (INCOMING_RETURN_ADDR_RTX
);
2597 dwarf2out_frame_finish (void)
2599 /* Output call frame information. */
2600 if (write_symbols
== DWARF2_DEBUG
2601 || write_symbols
== VMS_AND_DWARF2_DEBUG
2602 #ifdef DWARF2_FRAME_INFO
2603 || DWARF2_FRAME_INFO
2606 output_call_frame_info (0);
2608 #ifndef TARGET_UNWIND_INFO
2609 /* Output another copy for the unwinder. */
2610 if (! USING_SJLJ_EXCEPTIONS
&& (flag_unwind_tables
|| flag_exceptions
))
2611 output_call_frame_info (1);
2616 /* And now, the subset of the debugging information support code necessary
2617 for emitting location expressions. */
2619 /* We need some way to distinguish DW_OP_addr with a direct symbol
2620 relocation from DW_OP_addr with a dtp-relative symbol relocation. */
2621 #define INTERNAL_DW_OP_tls_addr (0x100 + DW_OP_addr)
2624 typedef struct dw_val_struct
*dw_val_ref
;
2625 typedef struct die_struct
*dw_die_ref
;
2626 typedef struct dw_loc_descr_struct
*dw_loc_descr_ref
;
2627 typedef struct dw_loc_list_struct
*dw_loc_list_ref
;
2629 /* Each DIE may have a series of attribute/value pairs. Values
2630 can take on several forms. The forms that are used in this
2631 implementation are listed below. */
2636 dw_val_class_offset
,
2638 dw_val_class_loc_list
,
2639 dw_val_class_range_list
,
2641 dw_val_class_unsigned_const
,
2642 dw_val_class_long_long
,
2645 dw_val_class_die_ref
,
2646 dw_val_class_fde_ref
,
2647 dw_val_class_lbl_id
,
2648 dw_val_class_lbl_offset
,
2652 /* Describe a double word constant value. */
2653 /* ??? Every instance of long_long in the code really means CONST_DOUBLE. */
2655 typedef struct dw_long_long_struct
GTY(())
2662 /* Describe a floating point constant value, or a vector constant value. */
2664 typedef struct dw_vec_struct
GTY(())
2666 unsigned char * GTY((length ("%h.length"))) array
;
2672 /* The dw_val_node describes an attribute's value, as it is
2673 represented internally. */
2675 typedef struct dw_val_struct
GTY(())
2677 enum dw_val_class val_class
;
2678 union dw_val_struct_union
2680 rtx
GTY ((tag ("dw_val_class_addr"))) val_addr
;
2681 unsigned HOST_WIDE_INT
GTY ((tag ("dw_val_class_offset"))) val_offset
;
2682 dw_loc_list_ref
GTY ((tag ("dw_val_class_loc_list"))) val_loc_list
;
2683 dw_loc_descr_ref
GTY ((tag ("dw_val_class_loc"))) val_loc
;
2684 HOST_WIDE_INT
GTY ((default)) val_int
;
2685 unsigned HOST_WIDE_INT
GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned
;
2686 dw_long_long_const
GTY ((tag ("dw_val_class_long_long"))) val_long_long
;
2687 dw_vec_const
GTY ((tag ("dw_val_class_vec"))) val_vec
;
2688 struct dw_val_die_union
2692 } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref
;
2693 unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index
;
2694 struct indirect_string_node
* GTY ((tag ("dw_val_class_str"))) val_str
;
2695 char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id
;
2696 unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag
;
2698 GTY ((desc ("%1.val_class"))) v
;
2702 /* Locations in memory are described using a sequence of stack machine
2705 typedef struct dw_loc_descr_struct
GTY(())
2707 dw_loc_descr_ref dw_loc_next
;
2708 enum dwarf_location_atom dw_loc_opc
;
2709 dw_val_node dw_loc_oprnd1
;
2710 dw_val_node dw_loc_oprnd2
;
2715 /* Location lists are ranges + location descriptions for that range,
2716 so you can track variables that are in different places over
2717 their entire life. */
2718 typedef struct dw_loc_list_struct
GTY(())
2720 dw_loc_list_ref dw_loc_next
;
2721 const char *begin
; /* Label for begin address of range */
2722 const char *end
; /* Label for end address of range */
2723 char *ll_symbol
; /* Label for beginning of location list.
2724 Only on head of list */
2725 const char *section
; /* Section this loclist is relative to */
2726 dw_loc_descr_ref expr
;
2729 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
2731 static const char *dwarf_stack_op_name (unsigned);
2732 static dw_loc_descr_ref
new_loc_descr (enum dwarf_location_atom
,
2733 unsigned HOST_WIDE_INT
, unsigned HOST_WIDE_INT
);
2734 static void add_loc_descr (dw_loc_descr_ref
*, dw_loc_descr_ref
);
2735 static unsigned long size_of_loc_descr (dw_loc_descr_ref
);
2736 static unsigned long size_of_locs (dw_loc_descr_ref
);
2737 static void output_loc_operands (dw_loc_descr_ref
);
2738 static void output_loc_sequence (dw_loc_descr_ref
);
2740 /* Convert a DWARF stack opcode into its string name. */
2743 dwarf_stack_op_name (unsigned int op
)
2748 case INTERNAL_DW_OP_tls_addr
:
2749 return "DW_OP_addr";
2751 return "DW_OP_deref";
2753 return "DW_OP_const1u";
2755 return "DW_OP_const1s";
2757 return "DW_OP_const2u";
2759 return "DW_OP_const2s";
2761 return "DW_OP_const4u";
2763 return "DW_OP_const4s";
2765 return "DW_OP_const8u";
2767 return "DW_OP_const8s";
2769 return "DW_OP_constu";
2771 return "DW_OP_consts";
2775 return "DW_OP_drop";
2777 return "DW_OP_over";
2779 return "DW_OP_pick";
2781 return "DW_OP_swap";
2785 return "DW_OP_xderef";
2793 return "DW_OP_minus";
2805 return "DW_OP_plus";
2806 case DW_OP_plus_uconst
:
2807 return "DW_OP_plus_uconst";
2813 return "DW_OP_shra";
2831 return "DW_OP_skip";
2833 return "DW_OP_lit0";
2835 return "DW_OP_lit1";
2837 return "DW_OP_lit2";
2839 return "DW_OP_lit3";
2841 return "DW_OP_lit4";
2843 return "DW_OP_lit5";
2845 return "DW_OP_lit6";
2847 return "DW_OP_lit7";
2849 return "DW_OP_lit8";
2851 return "DW_OP_lit9";
2853 return "DW_OP_lit10";
2855 return "DW_OP_lit11";
2857 return "DW_OP_lit12";
2859 return "DW_OP_lit13";
2861 return "DW_OP_lit14";
2863 return "DW_OP_lit15";
2865 return "DW_OP_lit16";
2867 return "DW_OP_lit17";
2869 return "DW_OP_lit18";
2871 return "DW_OP_lit19";
2873 return "DW_OP_lit20";
2875 return "DW_OP_lit21";
2877 return "DW_OP_lit22";
2879 return "DW_OP_lit23";
2881 return "DW_OP_lit24";
2883 return "DW_OP_lit25";
2885 return "DW_OP_lit26";
2887 return "DW_OP_lit27";
2889 return "DW_OP_lit28";
2891 return "DW_OP_lit29";
2893 return "DW_OP_lit30";
2895 return "DW_OP_lit31";
2897 return "DW_OP_reg0";
2899 return "DW_OP_reg1";
2901 return "DW_OP_reg2";
2903 return "DW_OP_reg3";
2905 return "DW_OP_reg4";
2907 return "DW_OP_reg5";
2909 return "DW_OP_reg6";
2911 return "DW_OP_reg7";
2913 return "DW_OP_reg8";
2915 return "DW_OP_reg9";
2917 return "DW_OP_reg10";
2919 return "DW_OP_reg11";
2921 return "DW_OP_reg12";
2923 return "DW_OP_reg13";
2925 return "DW_OP_reg14";
2927 return "DW_OP_reg15";
2929 return "DW_OP_reg16";
2931 return "DW_OP_reg17";
2933 return "DW_OP_reg18";
2935 return "DW_OP_reg19";
2937 return "DW_OP_reg20";
2939 return "DW_OP_reg21";
2941 return "DW_OP_reg22";
2943 return "DW_OP_reg23";
2945 return "DW_OP_reg24";
2947 return "DW_OP_reg25";
2949 return "DW_OP_reg26";
2951 return "DW_OP_reg27";
2953 return "DW_OP_reg28";
2955 return "DW_OP_reg29";
2957 return "DW_OP_reg30";
2959 return "DW_OP_reg31";
2961 return "DW_OP_breg0";
2963 return "DW_OP_breg1";
2965 return "DW_OP_breg2";
2967 return "DW_OP_breg3";
2969 return "DW_OP_breg4";
2971 return "DW_OP_breg5";
2973 return "DW_OP_breg6";
2975 return "DW_OP_breg7";
2977 return "DW_OP_breg8";
2979 return "DW_OP_breg9";
2981 return "DW_OP_breg10";
2983 return "DW_OP_breg11";
2985 return "DW_OP_breg12";
2987 return "DW_OP_breg13";
2989 return "DW_OP_breg14";
2991 return "DW_OP_breg15";
2993 return "DW_OP_breg16";
2995 return "DW_OP_breg17";
2997 return "DW_OP_breg18";
2999 return "DW_OP_breg19";
3001 return "DW_OP_breg20";
3003 return "DW_OP_breg21";
3005 return "DW_OP_breg22";
3007 return "DW_OP_breg23";
3009 return "DW_OP_breg24";
3011 return "DW_OP_breg25";
3013 return "DW_OP_breg26";
3015 return "DW_OP_breg27";
3017 return "DW_OP_breg28";
3019 return "DW_OP_breg29";
3021 return "DW_OP_breg30";
3023 return "DW_OP_breg31";
3025 return "DW_OP_regx";
3027 return "DW_OP_fbreg";
3029 return "DW_OP_bregx";
3031 return "DW_OP_piece";
3032 case DW_OP_deref_size
:
3033 return "DW_OP_deref_size";
3034 case DW_OP_xderef_size
:
3035 return "DW_OP_xderef_size";
3038 case DW_OP_push_object_address
:
3039 return "DW_OP_push_object_address";
3041 return "DW_OP_call2";
3043 return "DW_OP_call4";
3044 case DW_OP_call_ref
:
3045 return "DW_OP_call_ref";
3046 case DW_OP_GNU_push_tls_address
:
3047 return "DW_OP_GNU_push_tls_address";
3049 return "OP_<unknown>";
3053 /* Return a pointer to a newly allocated location description. Location
3054 descriptions are simple expression terms that can be strung
3055 together to form more complicated location (address) descriptions. */
3057 static inline dw_loc_descr_ref
3058 new_loc_descr (enum dwarf_location_atom op
, unsigned HOST_WIDE_INT oprnd1
,
3059 unsigned HOST_WIDE_INT oprnd2
)
3061 dw_loc_descr_ref descr
= ggc_alloc_cleared (sizeof (dw_loc_descr_node
));
3063 descr
->dw_loc_opc
= op
;
3064 descr
->dw_loc_oprnd1
.val_class
= dw_val_class_unsigned_const
;
3065 descr
->dw_loc_oprnd1
.v
.val_unsigned
= oprnd1
;
3066 descr
->dw_loc_oprnd2
.val_class
= dw_val_class_unsigned_const
;
3067 descr
->dw_loc_oprnd2
.v
.val_unsigned
= oprnd2
;
3072 /* Add a location description term to a location description expression. */
3075 add_loc_descr (dw_loc_descr_ref
*list_head
, dw_loc_descr_ref descr
)
3077 dw_loc_descr_ref
*d
;
3079 /* Find the end of the chain. */
3080 for (d
= list_head
; (*d
) != NULL
; d
= &(*d
)->dw_loc_next
)
3086 /* Return the size of a location descriptor. */
3088 static unsigned long
3089 size_of_loc_descr (dw_loc_descr_ref loc
)
3091 unsigned long size
= 1;
3093 switch (loc
->dw_loc_opc
)
3096 case INTERNAL_DW_OP_tls_addr
:
3097 size
+= DWARF2_ADDR_SIZE
;
3116 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3119 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
3124 case DW_OP_plus_uconst
:
3125 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3163 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
3166 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3169 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
3172 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3173 size
+= size_of_sleb128 (loc
->dw_loc_oprnd2
.v
.val_int
);
3176 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3178 case DW_OP_deref_size
:
3179 case DW_OP_xderef_size
:
3188 case DW_OP_call_ref
:
3189 size
+= DWARF2_ADDR_SIZE
;
3198 /* Return the size of a series of location descriptors. */
3200 static unsigned long
3201 size_of_locs (dw_loc_descr_ref loc
)
3205 for (size
= 0; loc
!= NULL
; loc
= loc
->dw_loc_next
)
3207 loc
->dw_loc_addr
= size
;
3208 size
+= size_of_loc_descr (loc
);
3214 /* Output location description stack opcode's operands (if any). */
3217 output_loc_operands (dw_loc_descr_ref loc
)
3219 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
3220 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
3222 switch (loc
->dw_loc_opc
)
3224 #ifdef DWARF2_DEBUGGING_INFO
3226 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, val1
->v
.val_addr
, NULL
);
3230 dw2_asm_output_data (2, val1
->v
.val_int
, NULL
);
3234 dw2_asm_output_data (4, val1
->v
.val_int
, NULL
);
3238 gcc_assert (HOST_BITS_PER_LONG
>= 64);
3239 dw2_asm_output_data (8, val1
->v
.val_int
, NULL
);
3246 gcc_assert (val1
->val_class
== dw_val_class_loc
);
3247 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
3249 dw2_asm_output_data (2, offset
, NULL
);
3262 /* We currently don't make any attempt to make sure these are
3263 aligned properly like we do for the main unwind info, so
3264 don't support emitting things larger than a byte if we're
3265 only doing unwinding. */
3270 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
3273 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3276 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
3279 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
3281 case DW_OP_plus_uconst
:
3282 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3316 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
3319 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3322 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
3325 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3326 dw2_asm_output_data_sleb128 (val2
->v
.val_int
, NULL
);
3329 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3331 case DW_OP_deref_size
:
3332 case DW_OP_xderef_size
:
3333 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
3336 case INTERNAL_DW_OP_tls_addr
:
3337 if (targetm
.asm_out
.output_dwarf_dtprel
)
3339 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
,
3342 fputc ('\n', asm_out_file
);
3349 /* Other codes have no operands. */
3354 /* Output a sequence of location operations. */
3357 output_loc_sequence (dw_loc_descr_ref loc
)
3359 for (; loc
!= NULL
; loc
= loc
->dw_loc_next
)
3361 /* Output the opcode. */
3362 dw2_asm_output_data (1, loc
->dw_loc_opc
,
3363 "%s", dwarf_stack_op_name (loc
->dw_loc_opc
));
3365 /* Output the operand(s) (if any). */
3366 output_loc_operands (loc
);
3370 /* This routine will generate the correct assembly data for a location
3371 description based on a cfi entry with a complex address. */
3374 output_cfa_loc (dw_cfi_ref cfi
)
3376 dw_loc_descr_ref loc
;
3379 /* Output the size of the block. */
3380 loc
= cfi
->dw_cfi_oprnd1
.dw_cfi_loc
;
3381 size
= size_of_locs (loc
);
3382 dw2_asm_output_data_uleb128 (size
, NULL
);
3384 /* Now output the operations themselves. */
3385 output_loc_sequence (loc
);
3388 /* This function builds a dwarf location descriptor sequence from
3389 a dw_cfa_location. */
3391 static struct dw_loc_descr_struct
*
3392 build_cfa_loc (dw_cfa_location
*cfa
)
3394 struct dw_loc_descr_struct
*head
, *tmp
;
3398 if (cfa
->base_offset
)
3401 head
= new_loc_descr (DW_OP_breg0
+ cfa
->reg
, cfa
->base_offset
, 0);
3403 head
= new_loc_descr (DW_OP_bregx
, cfa
->reg
, cfa
->base_offset
);
3405 else if (cfa
->reg
<= 31)
3406 head
= new_loc_descr (DW_OP_reg0
+ cfa
->reg
, 0, 0);
3408 head
= new_loc_descr (DW_OP_regx
, cfa
->reg
, 0);
3410 head
->dw_loc_oprnd1
.val_class
= dw_val_class_const
;
3411 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
3412 add_loc_descr (&head
, tmp
);
3413 if (cfa
->offset
!= 0)
3415 tmp
= new_loc_descr (DW_OP_plus_uconst
, cfa
->offset
, 0);
3416 add_loc_descr (&head
, tmp
);
3421 if (cfa
->offset
== 0)
3423 head
= new_loc_descr (DW_OP_reg0
+ cfa
->reg
, 0, 0);
3425 head
= new_loc_descr (DW_OP_regx
, cfa
->reg
, 0);
3426 else if (cfa
->reg
<= 31)
3427 head
= new_loc_descr (DW_OP_breg0
+ cfa
->reg
, cfa
->offset
, 0);
3429 head
= new_loc_descr (DW_OP_bregx
, cfa
->reg
, cfa
->offset
);
3435 /* This function fills in aa dw_cfa_location structure from a dwarf location
3436 descriptor sequence. */
3439 get_cfa_from_loc_descr (dw_cfa_location
*cfa
, struct dw_loc_descr_struct
*loc
)
3441 struct dw_loc_descr_struct
*ptr
;
3443 cfa
->base_offset
= 0;
3447 for (ptr
= loc
; ptr
!= NULL
; ptr
= ptr
->dw_loc_next
)
3449 enum dwarf_location_atom op
= ptr
->dw_loc_opc
;
3485 cfa
->reg
= op
- DW_OP_reg0
;
3488 cfa
->reg
= ptr
->dw_loc_oprnd1
.v
.val_int
;
3522 cfa
->reg
= op
- DW_OP_breg0
;
3523 cfa
->base_offset
= ptr
->dw_loc_oprnd1
.v
.val_int
;
3526 cfa
->reg
= ptr
->dw_loc_oprnd1
.v
.val_int
;
3527 cfa
->base_offset
= ptr
->dw_loc_oprnd2
.v
.val_int
;
3532 case DW_OP_plus_uconst
:
3533 cfa
->offset
= ptr
->dw_loc_oprnd1
.v
.val_unsigned
;
3536 internal_error ("DW_LOC_OP %s not implemented",
3537 dwarf_stack_op_name (ptr
->dw_loc_opc
));
3541 #endif /* .debug_frame support */
3543 /* And now, the support for symbolic debugging information. */
3544 #ifdef DWARF2_DEBUGGING_INFO
3546 /* .debug_str support. */
3547 static int output_indirect_string (void **, void *);
3549 static void dwarf2out_init (const char *);
3550 static void dwarf2out_finish (const char *);
3551 static void dwarf2out_define (unsigned int, const char *);
3552 static void dwarf2out_undef (unsigned int, const char *);
3553 static void dwarf2out_start_source_file (unsigned, const char *);
3554 static void dwarf2out_end_source_file (unsigned);
3555 static void dwarf2out_begin_block (unsigned, unsigned);
3556 static void dwarf2out_end_block (unsigned, unsigned);
3557 static bool dwarf2out_ignore_block (tree
);
3558 static void dwarf2out_global_decl (tree
);
3559 static void dwarf2out_type_decl (tree
, int);
3560 static void dwarf2out_imported_module_or_decl (tree
, tree
);
3561 static void dwarf2out_abstract_function (tree
);
3562 static void dwarf2out_var_location (rtx
);
3563 static void dwarf2out_begin_function (tree
);
3564 static void dwarf2out_switch_text_section (void);
3566 /* The debug hooks structure. */
3568 const struct gcc_debug_hooks dwarf2_debug_hooks
=
3574 dwarf2out_start_source_file
,
3575 dwarf2out_end_source_file
,
3576 dwarf2out_begin_block
,
3577 dwarf2out_end_block
,
3578 dwarf2out_ignore_block
,
3579 dwarf2out_source_line
,
3580 dwarf2out_begin_prologue
,
3581 debug_nothing_int_charstar
, /* end_prologue */
3582 dwarf2out_end_epilogue
,
3583 dwarf2out_begin_function
,
3584 debug_nothing_int
, /* end_function */
3585 dwarf2out_decl
, /* function_decl */
3586 dwarf2out_global_decl
,
3587 dwarf2out_type_decl
, /* type_decl */
3588 dwarf2out_imported_module_or_decl
,
3589 debug_nothing_tree
, /* deferred_inline_function */
3590 /* The DWARF 2 backend tries to reduce debugging bloat by not
3591 emitting the abstract description of inline functions until
3592 something tries to reference them. */
3593 dwarf2out_abstract_function
, /* outlining_inline_function */
3594 debug_nothing_rtx
, /* label */
3595 debug_nothing_int
, /* handle_pch */
3596 dwarf2out_var_location
,
3597 dwarf2out_switch_text_section
,
3598 1 /* start_end_main_source_file */
3602 /* NOTE: In the comments in this file, many references are made to
3603 "Debugging Information Entries". This term is abbreviated as `DIE'
3604 throughout the remainder of this file. */
3606 /* An internal representation of the DWARF output is built, and then
3607 walked to generate the DWARF debugging info. The walk of the internal
3608 representation is done after the entire program has been compiled.
3609 The types below are used to describe the internal representation. */
3611 /* Various DIE's use offsets relative to the beginning of the
3612 .debug_info section to refer to each other. */
3614 typedef long int dw_offset
;
3616 /* Define typedefs here to avoid circular dependencies. */
3618 typedef struct dw_attr_struct
*dw_attr_ref
;
3619 typedef struct dw_line_info_struct
*dw_line_info_ref
;
3620 typedef struct dw_separate_line_info_struct
*dw_separate_line_info_ref
;
3621 typedef struct pubname_struct
*pubname_ref
;
3622 typedef struct dw_ranges_struct
*dw_ranges_ref
;
3624 /* Each entry in the line_info_table maintains the file and
3625 line number associated with the label generated for that
3626 entry. The label gives the PC value associated with
3627 the line number entry. */
3629 typedef struct dw_line_info_struct
GTY(())
3631 unsigned long dw_file_num
;
3632 unsigned long dw_line_num
;
3636 /* Line information for functions in separate sections; each one gets its
3638 typedef struct dw_separate_line_info_struct
GTY(())
3640 unsigned long dw_file_num
;
3641 unsigned long dw_line_num
;
3642 unsigned long function
;
3644 dw_separate_line_info_entry
;
3646 /* Each DIE attribute has a field specifying the attribute kind,
3647 a link to the next attribute in the chain, and an attribute value.
3648 Attributes are typically linked below the DIE they modify. */
3650 typedef struct dw_attr_struct
GTY(())
3652 enum dwarf_attribute dw_attr
;
3653 dw_attr_ref dw_attr_next
;
3654 dw_val_node dw_attr_val
;
3658 /* The Debugging Information Entry (DIE) structure */
3660 typedef struct die_struct
GTY(())
3662 enum dwarf_tag die_tag
;
3664 dw_attr_ref die_attr
;
3665 dw_die_ref die_parent
;
3666 dw_die_ref die_child
;
3668 dw_die_ref die_definition
; /* ref from a specification to its definition */
3669 dw_offset die_offset
;
3670 unsigned long die_abbrev
;
3672 unsigned int decl_id
;
3676 /* The pubname structure */
3678 typedef struct pubname_struct
GTY(())
3685 struct dw_ranges_struct
GTY(())
3690 /* The limbo die list structure. */
3691 typedef struct limbo_die_struct
GTY(())
3695 struct limbo_die_struct
*next
;
3699 /* How to start an assembler comment. */
3700 #ifndef ASM_COMMENT_START
3701 #define ASM_COMMENT_START ";#"
3704 /* Define a macro which returns nonzero for a TYPE_DECL which was
3705 implicitly generated for a tagged type.
3707 Note that unlike the gcc front end (which generates a NULL named
3708 TYPE_DECL node for each complete tagged type, each array type, and
3709 each function type node created) the g++ front end generates a
3710 _named_ TYPE_DECL node for each tagged type node created.
3711 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3712 generate a DW_TAG_typedef DIE for them. */
3714 #define TYPE_DECL_IS_STUB(decl) \
3715 (DECL_NAME (decl) == NULL_TREE \
3716 || (DECL_ARTIFICIAL (decl) \
3717 && is_tagged_type (TREE_TYPE (decl)) \
3718 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3719 /* This is necessary for stub decls that \
3720 appear in nested inline functions. */ \
3721 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3722 && (decl_ultimate_origin (decl) \
3723 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3725 /* Information concerning the compilation unit's programming
3726 language, and compiler version. */
3728 /* Fixed size portion of the DWARF compilation unit header. */
3729 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3730 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
3732 /* Fixed size portion of public names info. */
3733 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3735 /* Fixed size portion of the address range info. */
3736 #define DWARF_ARANGES_HEADER_SIZE \
3737 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3738 DWARF2_ADDR_SIZE * 2) \
3739 - DWARF_INITIAL_LENGTH_SIZE)
3741 /* Size of padding portion in the address range info. It must be
3742 aligned to twice the pointer size. */
3743 #define DWARF_ARANGES_PAD_SIZE \
3744 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3745 DWARF2_ADDR_SIZE * 2) \
3746 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
3748 /* Use assembler line directives if available. */
3749 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3750 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3751 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3753 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3757 /* Minimum line offset in a special line info. opcode.
3758 This value was chosen to give a reasonable range of values. */
3759 #define DWARF_LINE_BASE -10
3761 /* First special line opcode - leave room for the standard opcodes. */
3762 #define DWARF_LINE_OPCODE_BASE 10
3764 /* Range of line offsets in a special line info. opcode. */
3765 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3767 /* Flag that indicates the initial value of the is_stmt_start flag.
3768 In the present implementation, we do not mark any lines as
3769 the beginning of a source statement, because that information
3770 is not made available by the GCC front-end. */
3771 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3773 #ifdef DWARF2_DEBUGGING_INFO
3774 /* This location is used by calc_die_sizes() to keep track
3775 the offset of each DIE within the .debug_info section. */
3776 static unsigned long next_die_offset
;
3779 /* Record the root of the DIE's built for the current compilation unit. */
3780 static GTY(()) dw_die_ref comp_unit_die
;
3782 /* A list of DIEs with a NULL parent waiting to be relocated. */
3783 static GTY(()) limbo_die_node
*limbo_die_list
;
3785 /* Filenames referenced by this compilation unit. */
3786 static GTY(()) varray_type file_table
;
3787 static GTY(()) varray_type file_table_emitted
;
3788 static GTY(()) size_t file_table_last_lookup_index
;
3790 /* A hash table of references to DIE's that describe declarations.
3791 The key is a DECL_UID() which is a unique number identifying each decl. */
3792 static GTY ((param_is (struct die_struct
))) htab_t decl_die_table
;
3794 /* Node of the variable location list. */
3795 struct var_loc_node
GTY ((chain_next ("%h.next")))
3797 rtx
GTY (()) var_loc_note
;
3798 const char * GTY (()) label
;
3799 const char * GTY (()) section_label
;
3800 struct var_loc_node
* GTY (()) next
;
3803 /* Variable location list. */
3804 struct var_loc_list_def
GTY (())
3806 struct var_loc_node
* GTY (()) first
;
3808 /* Do not mark the last element of the chained list because
3809 it is marked through the chain. */
3810 struct var_loc_node
* GTY ((skip ("%h"))) last
;
3812 /* DECL_UID of the variable decl. */
3813 unsigned int decl_id
;
3815 typedef struct var_loc_list_def var_loc_list
;
3818 /* Table of decl location linked lists. */
3819 static GTY ((param_is (var_loc_list
))) htab_t decl_loc_table
;
3821 /* A pointer to the base of a list of references to DIE's that
3822 are uniquely identified by their tag, presence/absence of
3823 children DIE's, and list of attribute/value pairs. */
3824 static GTY((length ("abbrev_die_table_allocated")))
3825 dw_die_ref
*abbrev_die_table
;
3827 /* Number of elements currently allocated for abbrev_die_table. */
3828 static GTY(()) unsigned abbrev_die_table_allocated
;
3830 /* Number of elements in type_die_table currently in use. */
3831 static GTY(()) unsigned abbrev_die_table_in_use
;
3833 /* Size (in elements) of increments by which we may expand the
3834 abbrev_die_table. */
3835 #define ABBREV_DIE_TABLE_INCREMENT 256
3837 /* A pointer to the base of a table that contains line information
3838 for each source code line in .text in the compilation unit. */
3839 static GTY((length ("line_info_table_allocated")))
3840 dw_line_info_ref line_info_table
;
3842 /* Number of elements currently allocated for line_info_table. */
3843 static GTY(()) unsigned line_info_table_allocated
;
3845 /* Number of elements in line_info_table currently in use. */
3846 static GTY(()) unsigned line_info_table_in_use
;
3848 /* True if the compilation unit places functions in more than one section. */
3849 static GTY(()) bool have_multiple_function_sections
= false;
3851 /* A pointer to the base of a table that contains line information
3852 for each source code line outside of .text in the compilation unit. */
3853 static GTY ((length ("separate_line_info_table_allocated")))
3854 dw_separate_line_info_ref separate_line_info_table
;
3856 /* Number of elements currently allocated for separate_line_info_table. */
3857 static GTY(()) unsigned separate_line_info_table_allocated
;
3859 /* Number of elements in separate_line_info_table currently in use. */
3860 static GTY(()) unsigned separate_line_info_table_in_use
;
3862 /* Size (in elements) of increments by which we may expand the
3864 #define LINE_INFO_TABLE_INCREMENT 1024
3866 /* A pointer to the base of a table that contains a list of publicly
3867 accessible names. */
3868 static GTY ((length ("pubname_table_allocated"))) pubname_ref pubname_table
;
3870 /* Number of elements currently allocated for pubname_table. */
3871 static GTY(()) unsigned pubname_table_allocated
;
3873 /* Number of elements in pubname_table currently in use. */
3874 static GTY(()) unsigned pubname_table_in_use
;
3876 /* Size (in elements) of increments by which we may expand the
3878 #define PUBNAME_TABLE_INCREMENT 64
3880 /* Array of dies for which we should generate .debug_arange info. */
3881 static GTY((length ("arange_table_allocated"))) dw_die_ref
*arange_table
;
3883 /* Number of elements currently allocated for arange_table. */
3884 static GTY(()) unsigned arange_table_allocated
;
3886 /* Number of elements in arange_table currently in use. */
3887 static GTY(()) unsigned arange_table_in_use
;
3889 /* Size (in elements) of increments by which we may expand the
3891 #define ARANGE_TABLE_INCREMENT 64
3893 /* Array of dies for which we should generate .debug_ranges info. */
3894 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table
;
3896 /* Number of elements currently allocated for ranges_table. */
3897 static GTY(()) unsigned ranges_table_allocated
;
3899 /* Number of elements in ranges_table currently in use. */
3900 static GTY(()) unsigned ranges_table_in_use
;
3902 /* Size (in elements) of increments by which we may expand the
3904 #define RANGES_TABLE_INCREMENT 64
3906 /* Whether we have location lists that need outputting */
3907 static GTY(()) bool have_location_lists
;
3909 /* Unique label counter. */
3910 static GTY(()) unsigned int loclabel_num
;
3912 #ifdef DWARF2_DEBUGGING_INFO
3913 /* Record whether the function being analyzed contains inlined functions. */
3914 static int current_function_has_inlines
;
3916 #if 0 && defined (MIPS_DEBUGGING_INFO)
3917 static int comp_unit_has_inlines
;
3920 /* Number of file tables emitted in maybe_emit_file(). */
3921 static GTY(()) int emitcount
= 0;
3923 /* Number of internal labels generated by gen_internal_sym(). */
3924 static GTY(()) int label_num
;
3926 #ifdef DWARF2_DEBUGGING_INFO
3928 /* Offset from the "steady-state frame pointer" to the CFA,
3929 within the current function. */
3930 static HOST_WIDE_INT frame_pointer_cfa_offset
;
3932 /* Forward declarations for functions defined in this file. */
3934 static int is_pseudo_reg (rtx
);
3935 static tree
type_main_variant (tree
);
3936 static int is_tagged_type (tree
);
3937 static const char *dwarf_tag_name (unsigned);
3938 static const char *dwarf_attr_name (unsigned);
3939 static const char *dwarf_form_name (unsigned);
3940 static tree
decl_ultimate_origin (tree
);
3941 static tree
block_ultimate_origin (tree
);
3942 static tree
decl_class_context (tree
);
3943 static void add_dwarf_attr (dw_die_ref
, dw_attr_ref
);
3944 static inline enum dw_val_class
AT_class (dw_attr_ref
);
3945 static void add_AT_flag (dw_die_ref
, enum dwarf_attribute
, unsigned);
3946 static inline unsigned AT_flag (dw_attr_ref
);
3947 static void add_AT_int (dw_die_ref
, enum dwarf_attribute
, HOST_WIDE_INT
);
3948 static inline HOST_WIDE_INT
AT_int (dw_attr_ref
);
3949 static void add_AT_unsigned (dw_die_ref
, enum dwarf_attribute
, unsigned HOST_WIDE_INT
);
3950 static inline unsigned HOST_WIDE_INT
AT_unsigned (dw_attr_ref
);
3951 static void add_AT_long_long (dw_die_ref
, enum dwarf_attribute
, unsigned long,
3953 static inline void add_AT_vec (dw_die_ref
, enum dwarf_attribute
, unsigned int,
3954 unsigned int, unsigned char *);
3955 static hashval_t
debug_str_do_hash (const void *);
3956 static int debug_str_eq (const void *, const void *);
3957 static void add_AT_string (dw_die_ref
, enum dwarf_attribute
, const char *);
3958 static inline const char *AT_string (dw_attr_ref
);
3959 static int AT_string_form (dw_attr_ref
);
3960 static void add_AT_die_ref (dw_die_ref
, enum dwarf_attribute
, dw_die_ref
);
3961 static void add_AT_specification (dw_die_ref
, dw_die_ref
);
3962 static inline dw_die_ref
AT_ref (dw_attr_ref
);
3963 static inline int AT_ref_external (dw_attr_ref
);
3964 static inline void set_AT_ref_external (dw_attr_ref
, int);
3965 static void add_AT_fde_ref (dw_die_ref
, enum dwarf_attribute
, unsigned);
3966 static void add_AT_loc (dw_die_ref
, enum dwarf_attribute
, dw_loc_descr_ref
);
3967 static inline dw_loc_descr_ref
AT_loc (dw_attr_ref
);
3968 static void add_AT_loc_list (dw_die_ref
, enum dwarf_attribute
,
3970 static inline dw_loc_list_ref
AT_loc_list (dw_attr_ref
);
3971 static void add_AT_addr (dw_die_ref
, enum dwarf_attribute
, rtx
);
3972 static inline rtx
AT_addr (dw_attr_ref
);
3973 static void add_AT_lbl_id (dw_die_ref
, enum dwarf_attribute
, const char *);
3974 static void add_AT_lbl_offset (dw_die_ref
, enum dwarf_attribute
, const char *);
3975 static void add_AT_offset (dw_die_ref
, enum dwarf_attribute
,
3976 unsigned HOST_WIDE_INT
);
3977 static void add_AT_range_list (dw_die_ref
, enum dwarf_attribute
,
3979 static inline const char *AT_lbl (dw_attr_ref
);
3980 static dw_attr_ref
get_AT (dw_die_ref
, enum dwarf_attribute
);
3981 static const char *get_AT_low_pc (dw_die_ref
);
3982 static const char *get_AT_hi_pc (dw_die_ref
);
3983 static const char *get_AT_string (dw_die_ref
, enum dwarf_attribute
);
3984 static int get_AT_flag (dw_die_ref
, enum dwarf_attribute
);
3985 static unsigned get_AT_unsigned (dw_die_ref
, enum dwarf_attribute
);
3986 static inline dw_die_ref
get_AT_ref (dw_die_ref
, enum dwarf_attribute
);
3987 static bool is_c_family (void);
3988 static bool is_cxx (void);
3989 static bool is_java (void);
3990 static bool is_fortran (void);
3991 static bool is_ada (void);
3992 static void remove_AT (dw_die_ref
, enum dwarf_attribute
);
3993 static void remove_child_TAG (dw_die_ref
, enum dwarf_tag
);
3994 static inline void free_die (dw_die_ref
);
3995 static void remove_children (dw_die_ref
);
3996 static void add_child_die (dw_die_ref
, dw_die_ref
);
3997 static dw_die_ref
new_die (enum dwarf_tag
, dw_die_ref
, tree
);
3998 static dw_die_ref
lookup_type_die (tree
);
3999 static void equate_type_number_to_die (tree
, dw_die_ref
);
4000 static hashval_t
decl_die_table_hash (const void *);
4001 static int decl_die_table_eq (const void *, const void *);
4002 static dw_die_ref
lookup_decl_die (tree
);
4003 static hashval_t
decl_loc_table_hash (const void *);
4004 static int decl_loc_table_eq (const void *, const void *);
4005 static var_loc_list
*lookup_decl_loc (tree
);
4006 static void equate_decl_number_to_die (tree
, dw_die_ref
);
4007 static void add_var_loc_to_decl (tree
, struct var_loc_node
*);
4008 static void print_spaces (FILE *);
4009 static void print_die (dw_die_ref
, FILE *);
4010 static void print_dwarf_line_table (FILE *);
4011 static void reverse_die_lists (dw_die_ref
);
4012 static void reverse_all_dies (dw_die_ref
);
4013 static dw_die_ref
push_new_compile_unit (dw_die_ref
, dw_die_ref
);
4014 static dw_die_ref
pop_compile_unit (dw_die_ref
);
4015 static void loc_checksum (dw_loc_descr_ref
, struct md5_ctx
*);
4016 static void attr_checksum (dw_attr_ref
, struct md5_ctx
*, int *);
4017 static void die_checksum (dw_die_ref
, struct md5_ctx
*, int *);
4018 static int same_loc_p (dw_loc_descr_ref
, dw_loc_descr_ref
, int *);
4019 static int same_dw_val_p (dw_val_node
*, dw_val_node
*, int *);
4020 static int same_attr_p (dw_attr_ref
, dw_attr_ref
, int *);
4021 static int same_die_p (dw_die_ref
, dw_die_ref
, int *);
4022 static int same_die_p_wrap (dw_die_ref
, dw_die_ref
);
4023 static void compute_section_prefix (dw_die_ref
);
4024 static int is_type_die (dw_die_ref
);
4025 static int is_comdat_die (dw_die_ref
);
4026 static int is_symbol_die (dw_die_ref
);
4027 static void assign_symbol_names (dw_die_ref
);
4028 static void break_out_includes (dw_die_ref
);
4029 static hashval_t
htab_cu_hash (const void *);
4030 static int htab_cu_eq (const void *, const void *);
4031 static void htab_cu_del (void *);
4032 static int check_duplicate_cu (dw_die_ref
, htab_t
, unsigned *);
4033 static void record_comdat_symbol_number (dw_die_ref
, htab_t
, unsigned);
4034 static void add_sibling_attributes (dw_die_ref
);
4035 static void build_abbrev_table (dw_die_ref
);
4036 static void output_location_lists (dw_die_ref
);
4037 static int constant_size (long unsigned);
4038 static unsigned long size_of_die (dw_die_ref
);
4039 static void calc_die_sizes (dw_die_ref
);
4040 static void mark_dies (dw_die_ref
);
4041 static void unmark_dies (dw_die_ref
);
4042 static void unmark_all_dies (dw_die_ref
);
4043 static unsigned long size_of_pubnames (void);
4044 static unsigned long size_of_aranges (void);
4045 static enum dwarf_form
value_format (dw_attr_ref
);
4046 static void output_value_format (dw_attr_ref
);
4047 static void output_abbrev_section (void);
4048 static void output_die_symbol (dw_die_ref
);
4049 static void output_die (dw_die_ref
);
4050 static void output_compilation_unit_header (void);
4051 static void output_comp_unit (dw_die_ref
, int);
4052 static const char *dwarf2_name (tree
, int);
4053 static void add_pubname (tree
, dw_die_ref
);
4054 static void output_pubnames (void);
4055 static void add_arange (tree
, dw_die_ref
);
4056 static void output_aranges (void);
4057 static unsigned int add_ranges (tree
);
4058 static void output_ranges (void);
4059 static void output_line_info (void);
4060 static void output_file_names (void);
4061 static dw_die_ref
base_type_die (tree
);
4062 static tree
root_type (tree
);
4063 static int is_base_type (tree
);
4064 static bool is_subrange_type (tree
);
4065 static dw_die_ref
subrange_type_die (tree
, dw_die_ref
);
4066 static dw_die_ref
modified_type_die (tree
, int, int, dw_die_ref
);
4067 static int type_is_enum (tree
);
4068 static unsigned int dbx_reg_number (rtx
);
4069 static void add_loc_descr_op_piece (dw_loc_descr_ref
*, int);
4070 static dw_loc_descr_ref
reg_loc_descriptor (rtx
);
4071 static dw_loc_descr_ref
one_reg_loc_descriptor (unsigned int);
4072 static dw_loc_descr_ref
multiple_reg_loc_descriptor (rtx
, rtx
);
4073 static dw_loc_descr_ref
int_loc_descriptor (HOST_WIDE_INT
);
4074 static dw_loc_descr_ref
based_loc_descr (rtx
, HOST_WIDE_INT
);
4075 static int is_based_loc (rtx
);
4076 static dw_loc_descr_ref
mem_loc_descriptor (rtx
, enum machine_mode mode
);
4077 static dw_loc_descr_ref
concat_loc_descriptor (rtx
, rtx
);
4078 static dw_loc_descr_ref
loc_descriptor (rtx
);
4079 static dw_loc_descr_ref
loc_descriptor_from_tree_1 (tree
, int);
4080 static dw_loc_descr_ref
loc_descriptor_from_tree (tree
);
4081 static HOST_WIDE_INT
ceiling (HOST_WIDE_INT
, unsigned int);
4082 static tree
field_type (tree
);
4083 static unsigned int simple_type_align_in_bits (tree
);
4084 static unsigned int simple_decl_align_in_bits (tree
);
4085 static unsigned HOST_WIDE_INT
simple_type_size_in_bits (tree
);
4086 static HOST_WIDE_INT
field_byte_offset (tree
);
4087 static void add_AT_location_description (dw_die_ref
, enum dwarf_attribute
,
4089 static void add_data_member_location_attribute (dw_die_ref
, tree
);
4090 static void add_const_value_attribute (dw_die_ref
, rtx
);
4091 static void insert_int (HOST_WIDE_INT
, unsigned, unsigned char *);
4092 static HOST_WIDE_INT
extract_int (const unsigned char *, unsigned);
4093 static void insert_float (rtx
, unsigned char *);
4094 static rtx
rtl_for_decl_location (tree
);
4095 static void add_location_or_const_value_attribute (dw_die_ref
, tree
,
4096 enum dwarf_attribute
);
4097 static void tree_add_const_value_attribute (dw_die_ref
, tree
);
4098 static void add_name_attribute (dw_die_ref
, const char *);
4099 static void add_comp_dir_attribute (dw_die_ref
);
4100 static void add_bound_info (dw_die_ref
, enum dwarf_attribute
, tree
);
4101 static void add_subscript_info (dw_die_ref
, tree
);
4102 static void add_byte_size_attribute (dw_die_ref
, tree
);
4103 static void add_bit_offset_attribute (dw_die_ref
, tree
);
4104 static void add_bit_size_attribute (dw_die_ref
, tree
);
4105 static void add_prototyped_attribute (dw_die_ref
, tree
);
4106 static void add_abstract_origin_attribute (dw_die_ref
, tree
);
4107 static void add_pure_or_virtual_attribute (dw_die_ref
, tree
);
4108 static void add_src_coords_attributes (dw_die_ref
, tree
);
4109 static void add_name_and_src_coords_attributes (dw_die_ref
, tree
);
4110 static void push_decl_scope (tree
);
4111 static void pop_decl_scope (void);
4112 static dw_die_ref
scope_die_for (tree
, dw_die_ref
);
4113 static inline int local_scope_p (dw_die_ref
);
4114 static inline int class_or_namespace_scope_p (dw_die_ref
);
4115 static void add_type_attribute (dw_die_ref
, tree
, int, int, dw_die_ref
);
4116 static void add_calling_convention_attribute (dw_die_ref
, tree
);
4117 static const char *type_tag (tree
);
4118 static tree
member_declared_type (tree
);
4120 static const char *decl_start_label (tree
);
4122 static void gen_array_type_die (tree
, dw_die_ref
);
4124 static void gen_entry_point_die (tree
, dw_die_ref
);
4126 static void gen_inlined_enumeration_type_die (tree
, dw_die_ref
);
4127 static void gen_inlined_structure_type_die (tree
, dw_die_ref
);
4128 static void gen_inlined_union_type_die (tree
, dw_die_ref
);
4129 static dw_die_ref
gen_enumeration_type_die (tree
, dw_die_ref
);
4130 static dw_die_ref
gen_formal_parameter_die (tree
, dw_die_ref
);
4131 static void gen_unspecified_parameters_die (tree
, dw_die_ref
);
4132 static void gen_formal_types_die (tree
, dw_die_ref
);
4133 static void gen_subprogram_die (tree
, dw_die_ref
);
4134 static void gen_variable_die (tree
, dw_die_ref
);
4135 static void gen_label_die (tree
, dw_die_ref
);
4136 static void gen_lexical_block_die (tree
, dw_die_ref
, int);
4137 static void gen_inlined_subroutine_die (tree
, dw_die_ref
, int);
4138 static void gen_field_die (tree
, dw_die_ref
);
4139 static void gen_ptr_to_mbr_type_die (tree
, dw_die_ref
);
4140 static dw_die_ref
gen_compile_unit_die (const char *);
4141 static void gen_string_type_die (tree
, dw_die_ref
);
4142 static void gen_inheritance_die (tree
, tree
, dw_die_ref
);
4143 static void gen_member_die (tree
, dw_die_ref
);
4144 static void gen_struct_or_union_type_die (tree
, dw_die_ref
);
4145 static void gen_subroutine_type_die (tree
, dw_die_ref
);
4146 static void gen_typedef_die (tree
, dw_die_ref
);
4147 static void gen_type_die (tree
, dw_die_ref
);
4148 static void gen_tagged_type_instantiation_die (tree
, dw_die_ref
);
4149 static void gen_block_die (tree
, dw_die_ref
, int);
4150 static void decls_for_scope (tree
, dw_die_ref
, int);
4151 static int is_redundant_typedef (tree
);
4152 static void gen_namespace_die (tree
);
4153 static void gen_decl_die (tree
, dw_die_ref
);
4154 static dw_die_ref
force_decl_die (tree
);
4155 static dw_die_ref
force_type_die (tree
);
4156 static dw_die_ref
setup_namespace_context (tree
, dw_die_ref
);
4157 static void declare_in_namespace (tree
, dw_die_ref
);
4158 static unsigned lookup_filename (const char *);
4159 static void init_file_table (void);
4160 static void retry_incomplete_types (void);
4161 static void gen_type_die_for_member (tree
, tree
, dw_die_ref
);
4162 static void splice_child_die (dw_die_ref
, dw_die_ref
);
4163 static int file_info_cmp (const void *, const void *);
4164 static dw_loc_list_ref
new_loc_list (dw_loc_descr_ref
, const char *,
4165 const char *, const char *, unsigned);
4166 static void add_loc_descr_to_loc_list (dw_loc_list_ref
*, dw_loc_descr_ref
,
4167 const char *, const char *,
4169 static void output_loc_list (dw_loc_list_ref
);
4170 static char *gen_internal_sym (const char *);
4172 static void prune_unmark_dies (dw_die_ref
);
4173 static void prune_unused_types_mark (dw_die_ref
, int);
4174 static void prune_unused_types_walk (dw_die_ref
);
4175 static void prune_unused_types_walk_attribs (dw_die_ref
);
4176 static void prune_unused_types_prune (dw_die_ref
);
4177 static void prune_unused_types (void);
4178 static int maybe_emit_file (int);
4180 /* Section names used to hold DWARF debugging information. */
4181 #ifndef DEBUG_INFO_SECTION
4182 #define DEBUG_INFO_SECTION ".debug_info"
4184 #ifndef DEBUG_ABBREV_SECTION
4185 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
4187 #ifndef DEBUG_ARANGES_SECTION
4188 #define DEBUG_ARANGES_SECTION ".debug_aranges"
4190 #ifndef DEBUG_MACINFO_SECTION
4191 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
4193 #ifndef DEBUG_LINE_SECTION
4194 #define DEBUG_LINE_SECTION ".debug_line"
4196 #ifndef DEBUG_LOC_SECTION
4197 #define DEBUG_LOC_SECTION ".debug_loc"
4199 #ifndef DEBUG_PUBNAMES_SECTION
4200 #define DEBUG_PUBNAMES_SECTION ".debug_pubnames"
4202 #ifndef DEBUG_STR_SECTION
4203 #define DEBUG_STR_SECTION ".debug_str"
4205 #ifndef DEBUG_RANGES_SECTION
4206 #define DEBUG_RANGES_SECTION ".debug_ranges"
4209 /* Standard ELF section names for compiled code and data. */
4210 #ifndef TEXT_SECTION_NAME
4211 #define TEXT_SECTION_NAME ".text"
4214 /* Section flags for .debug_str section. */
4215 #define DEBUG_STR_SECTION_FLAGS \
4216 (HAVE_GAS_SHF_MERGE && flag_merge_constants \
4217 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
4220 /* Labels we insert at beginning sections we can reference instead of
4221 the section names themselves. */
4223 #ifndef TEXT_SECTION_LABEL
4224 #define TEXT_SECTION_LABEL "Ltext"
4226 #ifndef COLD_TEXT_SECTION_LABEL
4227 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
4229 #ifndef DEBUG_LINE_SECTION_LABEL
4230 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
4232 #ifndef DEBUG_INFO_SECTION_LABEL
4233 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
4235 #ifndef DEBUG_ABBREV_SECTION_LABEL
4236 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
4238 #ifndef DEBUG_LOC_SECTION_LABEL
4239 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
4241 #ifndef DEBUG_RANGES_SECTION_LABEL
4242 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
4244 #ifndef DEBUG_MACINFO_SECTION_LABEL
4245 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
4248 /* Definitions of defaults for formats and names of various special
4249 (artificial) labels which may be generated within this file (when the -g
4250 options is used and DWARF2_DEBUGGING_INFO is in effect.
4251 If necessary, these may be overridden from within the tm.h file, but
4252 typically, overriding these defaults is unnecessary. */
4254 static char text_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4255 static char text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4256 static char cold_text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4257 static char cold_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4258 static char abbrev_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4259 static char debug_info_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4260 static char debug_line_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4261 static char macinfo_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4262 static char loc_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4263 static char ranges_section_label
[2 * MAX_ARTIFICIAL_LABEL_BYTES
];
4265 #ifndef TEXT_END_LABEL
4266 #define TEXT_END_LABEL "Letext"
4268 #ifndef COLD_END_LABEL
4269 #define COLD_END_LABEL "Letext_cold"
4271 #ifndef BLOCK_BEGIN_LABEL
4272 #define BLOCK_BEGIN_LABEL "LBB"
4274 #ifndef BLOCK_END_LABEL
4275 #define BLOCK_END_LABEL "LBE"
4277 #ifndef LINE_CODE_LABEL
4278 #define LINE_CODE_LABEL "LM"
4280 #ifndef SEPARATE_LINE_CODE_LABEL
4281 #define SEPARATE_LINE_CODE_LABEL "LSM"
4284 /* We allow a language front-end to designate a function that is to be
4285 called to "demangle" any name before it is put into a DIE. */
4287 static const char *(*demangle_name_func
) (const char *);
4290 dwarf2out_set_demangle_name_func (const char *(*func
) (const char *))
4292 demangle_name_func
= func
;
4295 /* Test if rtl node points to a pseudo register. */
4298 is_pseudo_reg (rtx rtl
)
4300 return ((REG_P (rtl
) && REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
4301 || (GET_CODE (rtl
) == SUBREG
4302 && REGNO (SUBREG_REG (rtl
)) >= FIRST_PSEUDO_REGISTER
));
4305 /* Return a reference to a type, with its const and volatile qualifiers
4309 type_main_variant (tree type
)
4311 type
= TYPE_MAIN_VARIANT (type
);
4313 /* ??? There really should be only one main variant among any group of
4314 variants of a given type (and all of the MAIN_VARIANT values for all
4315 members of the group should point to that one type) but sometimes the C
4316 front-end messes this up for array types, so we work around that bug
4318 if (TREE_CODE (type
) == ARRAY_TYPE
)
4319 while (type
!= TYPE_MAIN_VARIANT (type
))
4320 type
= TYPE_MAIN_VARIANT (type
);
4325 /* Return nonzero if the given type node represents a tagged type. */
4328 is_tagged_type (tree type
)
4330 enum tree_code code
= TREE_CODE (type
);
4332 return (code
== RECORD_TYPE
|| code
== UNION_TYPE
4333 || code
== QUAL_UNION_TYPE
|| code
== ENUMERAL_TYPE
);
4336 /* Convert a DIE tag into its string name. */
4339 dwarf_tag_name (unsigned int tag
)
4343 case DW_TAG_padding
:
4344 return "DW_TAG_padding";
4345 case DW_TAG_array_type
:
4346 return "DW_TAG_array_type";
4347 case DW_TAG_class_type
:
4348 return "DW_TAG_class_type";
4349 case DW_TAG_entry_point
:
4350 return "DW_TAG_entry_point";
4351 case DW_TAG_enumeration_type
:
4352 return "DW_TAG_enumeration_type";
4353 case DW_TAG_formal_parameter
:
4354 return "DW_TAG_formal_parameter";
4355 case DW_TAG_imported_declaration
:
4356 return "DW_TAG_imported_declaration";
4358 return "DW_TAG_label";
4359 case DW_TAG_lexical_block
:
4360 return "DW_TAG_lexical_block";
4362 return "DW_TAG_member";
4363 case DW_TAG_pointer_type
:
4364 return "DW_TAG_pointer_type";
4365 case DW_TAG_reference_type
:
4366 return "DW_TAG_reference_type";
4367 case DW_TAG_compile_unit
:
4368 return "DW_TAG_compile_unit";
4369 case DW_TAG_string_type
:
4370 return "DW_TAG_string_type";
4371 case DW_TAG_structure_type
:
4372 return "DW_TAG_structure_type";
4373 case DW_TAG_subroutine_type
:
4374 return "DW_TAG_subroutine_type";
4375 case DW_TAG_typedef
:
4376 return "DW_TAG_typedef";
4377 case DW_TAG_union_type
:
4378 return "DW_TAG_union_type";
4379 case DW_TAG_unspecified_parameters
:
4380 return "DW_TAG_unspecified_parameters";
4381 case DW_TAG_variant
:
4382 return "DW_TAG_variant";
4383 case DW_TAG_common_block
:
4384 return "DW_TAG_common_block";
4385 case DW_TAG_common_inclusion
:
4386 return "DW_TAG_common_inclusion";
4387 case DW_TAG_inheritance
:
4388 return "DW_TAG_inheritance";
4389 case DW_TAG_inlined_subroutine
:
4390 return "DW_TAG_inlined_subroutine";
4392 return "DW_TAG_module";
4393 case DW_TAG_ptr_to_member_type
:
4394 return "DW_TAG_ptr_to_member_type";
4395 case DW_TAG_set_type
:
4396 return "DW_TAG_set_type";
4397 case DW_TAG_subrange_type
:
4398 return "DW_TAG_subrange_type";
4399 case DW_TAG_with_stmt
:
4400 return "DW_TAG_with_stmt";
4401 case DW_TAG_access_declaration
:
4402 return "DW_TAG_access_declaration";
4403 case DW_TAG_base_type
:
4404 return "DW_TAG_base_type";
4405 case DW_TAG_catch_block
:
4406 return "DW_TAG_catch_block";
4407 case DW_TAG_const_type
:
4408 return "DW_TAG_const_type";
4409 case DW_TAG_constant
:
4410 return "DW_TAG_constant";
4411 case DW_TAG_enumerator
:
4412 return "DW_TAG_enumerator";
4413 case DW_TAG_file_type
:
4414 return "DW_TAG_file_type";
4416 return "DW_TAG_friend";
4417 case DW_TAG_namelist
:
4418 return "DW_TAG_namelist";
4419 case DW_TAG_namelist_item
:
4420 return "DW_TAG_namelist_item";
4421 case DW_TAG_namespace
:
4422 return "DW_TAG_namespace";
4423 case DW_TAG_packed_type
:
4424 return "DW_TAG_packed_type";
4425 case DW_TAG_subprogram
:
4426 return "DW_TAG_subprogram";
4427 case DW_TAG_template_type_param
:
4428 return "DW_TAG_template_type_param";
4429 case DW_TAG_template_value_param
:
4430 return "DW_TAG_template_value_param";
4431 case DW_TAG_thrown_type
:
4432 return "DW_TAG_thrown_type";
4433 case DW_TAG_try_block
:
4434 return "DW_TAG_try_block";
4435 case DW_TAG_variant_part
:
4436 return "DW_TAG_variant_part";
4437 case DW_TAG_variable
:
4438 return "DW_TAG_variable";
4439 case DW_TAG_volatile_type
:
4440 return "DW_TAG_volatile_type";
4441 case DW_TAG_imported_module
:
4442 return "DW_TAG_imported_module";
4443 case DW_TAG_MIPS_loop
:
4444 return "DW_TAG_MIPS_loop";
4445 case DW_TAG_format_label
:
4446 return "DW_TAG_format_label";
4447 case DW_TAG_function_template
:
4448 return "DW_TAG_function_template";
4449 case DW_TAG_class_template
:
4450 return "DW_TAG_class_template";
4451 case DW_TAG_GNU_BINCL
:
4452 return "DW_TAG_GNU_BINCL";
4453 case DW_TAG_GNU_EINCL
:
4454 return "DW_TAG_GNU_EINCL";
4456 return "DW_TAG_<unknown>";
4460 /* Convert a DWARF attribute code into its string name. */
4463 dwarf_attr_name (unsigned int attr
)
4468 return "DW_AT_sibling";
4469 case DW_AT_location
:
4470 return "DW_AT_location";
4472 return "DW_AT_name";
4473 case DW_AT_ordering
:
4474 return "DW_AT_ordering";
4475 case DW_AT_subscr_data
:
4476 return "DW_AT_subscr_data";
4477 case DW_AT_byte_size
:
4478 return "DW_AT_byte_size";
4479 case DW_AT_bit_offset
:
4480 return "DW_AT_bit_offset";
4481 case DW_AT_bit_size
:
4482 return "DW_AT_bit_size";
4483 case DW_AT_element_list
:
4484 return "DW_AT_element_list";
4485 case DW_AT_stmt_list
:
4486 return "DW_AT_stmt_list";
4488 return "DW_AT_low_pc";
4490 return "DW_AT_high_pc";
4491 case DW_AT_language
:
4492 return "DW_AT_language";
4494 return "DW_AT_member";
4496 return "DW_AT_discr";
4497 case DW_AT_discr_value
:
4498 return "DW_AT_discr_value";
4499 case DW_AT_visibility
:
4500 return "DW_AT_visibility";
4502 return "DW_AT_import";
4503 case DW_AT_string_length
:
4504 return "DW_AT_string_length";
4505 case DW_AT_common_reference
:
4506 return "DW_AT_common_reference";
4507 case DW_AT_comp_dir
:
4508 return "DW_AT_comp_dir";
4509 case DW_AT_const_value
:
4510 return "DW_AT_const_value";
4511 case DW_AT_containing_type
:
4512 return "DW_AT_containing_type";
4513 case DW_AT_default_value
:
4514 return "DW_AT_default_value";
4516 return "DW_AT_inline";
4517 case DW_AT_is_optional
:
4518 return "DW_AT_is_optional";
4519 case DW_AT_lower_bound
:
4520 return "DW_AT_lower_bound";
4521 case DW_AT_producer
:
4522 return "DW_AT_producer";
4523 case DW_AT_prototyped
:
4524 return "DW_AT_prototyped";
4525 case DW_AT_return_addr
:
4526 return "DW_AT_return_addr";
4527 case DW_AT_start_scope
:
4528 return "DW_AT_start_scope";
4529 case DW_AT_stride_size
:
4530 return "DW_AT_stride_size";
4531 case DW_AT_upper_bound
:
4532 return "DW_AT_upper_bound";
4533 case DW_AT_abstract_origin
:
4534 return "DW_AT_abstract_origin";
4535 case DW_AT_accessibility
:
4536 return "DW_AT_accessibility";
4537 case DW_AT_address_class
:
4538 return "DW_AT_address_class";
4539 case DW_AT_artificial
:
4540 return "DW_AT_artificial";
4541 case DW_AT_base_types
:
4542 return "DW_AT_base_types";
4543 case DW_AT_calling_convention
:
4544 return "DW_AT_calling_convention";
4546 return "DW_AT_count";
4547 case DW_AT_data_member_location
:
4548 return "DW_AT_data_member_location";
4549 case DW_AT_decl_column
:
4550 return "DW_AT_decl_column";
4551 case DW_AT_decl_file
:
4552 return "DW_AT_decl_file";
4553 case DW_AT_decl_line
:
4554 return "DW_AT_decl_line";
4555 case DW_AT_declaration
:
4556 return "DW_AT_declaration";
4557 case DW_AT_discr_list
:
4558 return "DW_AT_discr_list";
4559 case DW_AT_encoding
:
4560 return "DW_AT_encoding";
4561 case DW_AT_external
:
4562 return "DW_AT_external";
4563 case DW_AT_frame_base
:
4564 return "DW_AT_frame_base";
4566 return "DW_AT_friend";
4567 case DW_AT_identifier_case
:
4568 return "DW_AT_identifier_case";
4569 case DW_AT_macro_info
:
4570 return "DW_AT_macro_info";
4571 case DW_AT_namelist_items
:
4572 return "DW_AT_namelist_items";
4573 case DW_AT_priority
:
4574 return "DW_AT_priority";
4576 return "DW_AT_segment";
4577 case DW_AT_specification
:
4578 return "DW_AT_specification";
4579 case DW_AT_static_link
:
4580 return "DW_AT_static_link";
4582 return "DW_AT_type";
4583 case DW_AT_use_location
:
4584 return "DW_AT_use_location";
4585 case DW_AT_variable_parameter
:
4586 return "DW_AT_variable_parameter";
4587 case DW_AT_virtuality
:
4588 return "DW_AT_virtuality";
4589 case DW_AT_vtable_elem_location
:
4590 return "DW_AT_vtable_elem_location";
4592 case DW_AT_allocated
:
4593 return "DW_AT_allocated";
4594 case DW_AT_associated
:
4595 return "DW_AT_associated";
4596 case DW_AT_data_location
:
4597 return "DW_AT_data_location";
4599 return "DW_AT_stride";
4600 case DW_AT_entry_pc
:
4601 return "DW_AT_entry_pc";
4602 case DW_AT_use_UTF8
:
4603 return "DW_AT_use_UTF8";
4604 case DW_AT_extension
:
4605 return "DW_AT_extension";
4607 return "DW_AT_ranges";
4608 case DW_AT_trampoline
:
4609 return "DW_AT_trampoline";
4610 case DW_AT_call_column
:
4611 return "DW_AT_call_column";
4612 case DW_AT_call_file
:
4613 return "DW_AT_call_file";
4614 case DW_AT_call_line
:
4615 return "DW_AT_call_line";
4617 case DW_AT_MIPS_fde
:
4618 return "DW_AT_MIPS_fde";
4619 case DW_AT_MIPS_loop_begin
:
4620 return "DW_AT_MIPS_loop_begin";
4621 case DW_AT_MIPS_tail_loop_begin
:
4622 return "DW_AT_MIPS_tail_loop_begin";
4623 case DW_AT_MIPS_epilog_begin
:
4624 return "DW_AT_MIPS_epilog_begin";
4625 case DW_AT_MIPS_loop_unroll_factor
:
4626 return "DW_AT_MIPS_loop_unroll_factor";
4627 case DW_AT_MIPS_software_pipeline_depth
:
4628 return "DW_AT_MIPS_software_pipeline_depth";
4629 case DW_AT_MIPS_linkage_name
:
4630 return "DW_AT_MIPS_linkage_name";
4631 case DW_AT_MIPS_stride
:
4632 return "DW_AT_MIPS_stride";
4633 case DW_AT_MIPS_abstract_name
:
4634 return "DW_AT_MIPS_abstract_name";
4635 case DW_AT_MIPS_clone_origin
:
4636 return "DW_AT_MIPS_clone_origin";
4637 case DW_AT_MIPS_has_inlines
:
4638 return "DW_AT_MIPS_has_inlines";
4640 case DW_AT_sf_names
:
4641 return "DW_AT_sf_names";
4642 case DW_AT_src_info
:
4643 return "DW_AT_src_info";
4644 case DW_AT_mac_info
:
4645 return "DW_AT_mac_info";
4646 case DW_AT_src_coords
:
4647 return "DW_AT_src_coords";
4648 case DW_AT_body_begin
:
4649 return "DW_AT_body_begin";
4650 case DW_AT_body_end
:
4651 return "DW_AT_body_end";
4652 case DW_AT_GNU_vector
:
4653 return "DW_AT_GNU_vector";
4655 case DW_AT_VMS_rtnbeg_pd_address
:
4656 return "DW_AT_VMS_rtnbeg_pd_address";
4659 return "DW_AT_<unknown>";
4663 /* Convert a DWARF value form code into its string name. */
4666 dwarf_form_name (unsigned int form
)
4671 return "DW_FORM_addr";
4672 case DW_FORM_block2
:
4673 return "DW_FORM_block2";
4674 case DW_FORM_block4
:
4675 return "DW_FORM_block4";
4677 return "DW_FORM_data2";
4679 return "DW_FORM_data4";
4681 return "DW_FORM_data8";
4682 case DW_FORM_string
:
4683 return "DW_FORM_string";
4685 return "DW_FORM_block";
4686 case DW_FORM_block1
:
4687 return "DW_FORM_block1";
4689 return "DW_FORM_data1";
4691 return "DW_FORM_flag";
4693 return "DW_FORM_sdata";
4695 return "DW_FORM_strp";
4697 return "DW_FORM_udata";
4698 case DW_FORM_ref_addr
:
4699 return "DW_FORM_ref_addr";
4701 return "DW_FORM_ref1";
4703 return "DW_FORM_ref2";
4705 return "DW_FORM_ref4";
4707 return "DW_FORM_ref8";
4708 case DW_FORM_ref_udata
:
4709 return "DW_FORM_ref_udata";
4710 case DW_FORM_indirect
:
4711 return "DW_FORM_indirect";
4713 return "DW_FORM_<unknown>";
4717 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4718 instance of an inlined instance of a decl which is local to an inline
4719 function, so we have to trace all of the way back through the origin chain
4720 to find out what sort of node actually served as the original seed for the
4724 decl_ultimate_origin (tree decl
)
4726 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl
), TS_DECL_COMMON
))
4729 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
4730 nodes in the function to point to themselves; ignore that if
4731 we're trying to output the abstract instance of this function. */
4732 if (DECL_ABSTRACT (decl
) && DECL_ABSTRACT_ORIGIN (decl
) == decl
)
4735 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4736 most distant ancestor, this should never happen. */
4737 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl
)));
4739 return DECL_ABSTRACT_ORIGIN (decl
);
4742 /* Determine the "ultimate origin" of a block. The block may be an inlined
4743 instance of an inlined instance of a block which is local to an inline
4744 function, so we have to trace all of the way back through the origin chain
4745 to find out what sort of node actually served as the original seed for the
4749 block_ultimate_origin (tree block
)
4751 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
4753 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
4754 nodes in the function to point to themselves; ignore that if
4755 we're trying to output the abstract instance of this function. */
4756 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
4759 if (immediate_origin
== NULL_TREE
)
4764 tree lookahead
= immediate_origin
;
4768 ret_val
= lookahead
;
4769 lookahead
= (TREE_CODE (ret_val
) == BLOCK
4770 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
4772 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
4774 /* The block's abstract origin chain may not be the *ultimate* origin of
4775 the block. It could lead to a DECL that has an abstract origin set.
4776 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
4777 will give us if it has one). Note that DECL's abstract origins are
4778 supposed to be the most distant ancestor (or so decl_ultimate_origin
4779 claims), so we don't need to loop following the DECL origins. */
4780 if (DECL_P (ret_val
))
4781 return DECL_ORIGIN (ret_val
);
4787 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4788 of a virtual function may refer to a base class, so we check the 'this'
4792 decl_class_context (tree decl
)
4794 tree context
= NULL_TREE
;
4796 if (TREE_CODE (decl
) != FUNCTION_DECL
|| ! DECL_VINDEX (decl
))
4797 context
= DECL_CONTEXT (decl
);
4799 context
= TYPE_MAIN_VARIANT
4800 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
4802 if (context
&& !TYPE_P (context
))
4803 context
= NULL_TREE
;
4808 /* Add an attribute/value pair to a DIE. We build the lists up in reverse
4809 addition order, and correct that in reverse_all_dies. */
4812 add_dwarf_attr (dw_die_ref die
, dw_attr_ref attr
)
4814 if (die
!= NULL
&& attr
!= NULL
)
4816 attr
->dw_attr_next
= die
->die_attr
;
4817 die
->die_attr
= attr
;
4821 static inline enum dw_val_class
4822 AT_class (dw_attr_ref a
)
4824 return a
->dw_attr_val
.val_class
;
4827 /* Add a flag value attribute to a DIE. */
4830 add_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int flag
)
4832 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4834 attr
->dw_attr_next
= NULL
;
4835 attr
->dw_attr
= attr_kind
;
4836 attr
->dw_attr_val
.val_class
= dw_val_class_flag
;
4837 attr
->dw_attr_val
.v
.val_flag
= flag
;
4838 add_dwarf_attr (die
, attr
);
4841 static inline unsigned
4842 AT_flag (dw_attr_ref a
)
4844 gcc_assert (a
&& AT_class (a
) == dw_val_class_flag
);
4845 return a
->dw_attr_val
.v
.val_flag
;
4848 /* Add a signed integer attribute value to a DIE. */
4851 add_AT_int (dw_die_ref die
, enum dwarf_attribute attr_kind
, HOST_WIDE_INT int_val
)
4853 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4855 attr
->dw_attr_next
= NULL
;
4856 attr
->dw_attr
= attr_kind
;
4857 attr
->dw_attr_val
.val_class
= dw_val_class_const
;
4858 attr
->dw_attr_val
.v
.val_int
= int_val
;
4859 add_dwarf_attr (die
, attr
);
4862 static inline HOST_WIDE_INT
4863 AT_int (dw_attr_ref a
)
4865 gcc_assert (a
&& AT_class (a
) == dw_val_class_const
);
4866 return a
->dw_attr_val
.v
.val_int
;
4869 /* Add an unsigned integer attribute value to a DIE. */
4872 add_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4873 unsigned HOST_WIDE_INT unsigned_val
)
4875 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4877 attr
->dw_attr_next
= NULL
;
4878 attr
->dw_attr
= attr_kind
;
4879 attr
->dw_attr_val
.val_class
= dw_val_class_unsigned_const
;
4880 attr
->dw_attr_val
.v
.val_unsigned
= unsigned_val
;
4881 add_dwarf_attr (die
, attr
);
4884 static inline unsigned HOST_WIDE_INT
4885 AT_unsigned (dw_attr_ref a
)
4887 gcc_assert (a
&& AT_class (a
) == dw_val_class_unsigned_const
);
4888 return a
->dw_attr_val
.v
.val_unsigned
;
4891 /* Add an unsigned double integer attribute value to a DIE. */
4894 add_AT_long_long (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4895 long unsigned int val_hi
, long unsigned int val_low
)
4897 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4899 attr
->dw_attr_next
= NULL
;
4900 attr
->dw_attr
= attr_kind
;
4901 attr
->dw_attr_val
.val_class
= dw_val_class_long_long
;
4902 attr
->dw_attr_val
.v
.val_long_long
.hi
= val_hi
;
4903 attr
->dw_attr_val
.v
.val_long_long
.low
= val_low
;
4904 add_dwarf_attr (die
, attr
);
4907 /* Add a floating point attribute value to a DIE and return it. */
4910 add_AT_vec (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4911 unsigned int length
, unsigned int elt_size
, unsigned char *array
)
4913 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4915 attr
->dw_attr_next
= NULL
;
4916 attr
->dw_attr
= attr_kind
;
4917 attr
->dw_attr_val
.val_class
= dw_val_class_vec
;
4918 attr
->dw_attr_val
.v
.val_vec
.length
= length
;
4919 attr
->dw_attr_val
.v
.val_vec
.elt_size
= elt_size
;
4920 attr
->dw_attr_val
.v
.val_vec
.array
= array
;
4921 add_dwarf_attr (die
, attr
);
4924 /* Hash and equality functions for debug_str_hash. */
4927 debug_str_do_hash (const void *x
)
4929 return htab_hash_string (((const struct indirect_string_node
*)x
)->str
);
4933 debug_str_eq (const void *x1
, const void *x2
)
4935 return strcmp ((((const struct indirect_string_node
*)x1
)->str
),
4936 (const char *)x2
) == 0;
4939 /* Add a string attribute value to a DIE. */
4942 add_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *str
)
4944 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4945 struct indirect_string_node
*node
;
4948 if (! debug_str_hash
)
4949 debug_str_hash
= htab_create_ggc (10, debug_str_do_hash
,
4950 debug_str_eq
, NULL
);
4952 slot
= htab_find_slot_with_hash (debug_str_hash
, str
,
4953 htab_hash_string (str
), INSERT
);
4955 *slot
= ggc_alloc_cleared (sizeof (struct indirect_string_node
));
4956 node
= (struct indirect_string_node
*) *slot
;
4957 node
->str
= ggc_strdup (str
);
4960 attr
->dw_attr_next
= NULL
;
4961 attr
->dw_attr
= attr_kind
;
4962 attr
->dw_attr_val
.val_class
= dw_val_class_str
;
4963 attr
->dw_attr_val
.v
.val_str
= node
;
4964 add_dwarf_attr (die
, attr
);
4967 static inline const char *
4968 AT_string (dw_attr_ref a
)
4970 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
4971 return a
->dw_attr_val
.v
.val_str
->str
;
4974 /* Find out whether a string should be output inline in DIE
4975 or out-of-line in .debug_str section. */
4978 AT_string_form (dw_attr_ref a
)
4980 struct indirect_string_node
*node
;
4984 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
4986 node
= a
->dw_attr_val
.v
.val_str
;
4990 len
= strlen (node
->str
) + 1;
4992 /* If the string is shorter or equal to the size of the reference, it is
4993 always better to put it inline. */
4994 if (len
<= DWARF_OFFSET_SIZE
|| node
->refcount
== 0)
4995 return node
->form
= DW_FORM_string
;
4997 /* If we cannot expect the linker to merge strings in .debug_str
4998 section, only put it into .debug_str if it is worth even in this
5000 if ((debug_str_section
->common
.flags
& SECTION_MERGE
) == 0
5001 && (len
- DWARF_OFFSET_SIZE
) * node
->refcount
<= len
)
5002 return node
->form
= DW_FORM_string
;
5004 ASM_GENERATE_INTERNAL_LABEL (label
, "LASF", dw2_string_counter
);
5005 ++dw2_string_counter
;
5006 node
->label
= xstrdup (label
);
5008 return node
->form
= DW_FORM_strp
;
5011 /* Add a DIE reference attribute value to a DIE. */
5014 add_AT_die_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_die_ref targ_die
)
5016 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5018 attr
->dw_attr_next
= NULL
;
5019 attr
->dw_attr
= attr_kind
;
5020 attr
->dw_attr_val
.val_class
= dw_val_class_die_ref
;
5021 attr
->dw_attr_val
.v
.val_die_ref
.die
= targ_die
;
5022 attr
->dw_attr_val
.v
.val_die_ref
.external
= 0;
5023 add_dwarf_attr (die
, attr
);
5026 /* Add an AT_specification attribute to a DIE, and also make the back
5027 pointer from the specification to the definition. */
5030 add_AT_specification (dw_die_ref die
, dw_die_ref targ_die
)
5032 add_AT_die_ref (die
, DW_AT_specification
, targ_die
);
5033 gcc_assert (!targ_die
->die_definition
);
5034 targ_die
->die_definition
= die
;
5037 static inline dw_die_ref
5038 AT_ref (dw_attr_ref a
)
5040 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
5041 return a
->dw_attr_val
.v
.val_die_ref
.die
;
5045 AT_ref_external (dw_attr_ref a
)
5047 if (a
&& AT_class (a
) == dw_val_class_die_ref
)
5048 return a
->dw_attr_val
.v
.val_die_ref
.external
;
5054 set_AT_ref_external (dw_attr_ref a
, int i
)
5056 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
5057 a
->dw_attr_val
.v
.val_die_ref
.external
= i
;
5060 /* Add an FDE reference attribute value to a DIE. */
5063 add_AT_fde_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int targ_fde
)
5065 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5067 attr
->dw_attr_next
= NULL
;
5068 attr
->dw_attr
= attr_kind
;
5069 attr
->dw_attr_val
.val_class
= dw_val_class_fde_ref
;
5070 attr
->dw_attr_val
.v
.val_fde_index
= targ_fde
;
5071 add_dwarf_attr (die
, attr
);
5074 /* Add a location description attribute value to a DIE. */
5077 add_AT_loc (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_descr_ref loc
)
5079 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5081 attr
->dw_attr_next
= NULL
;
5082 attr
->dw_attr
= attr_kind
;
5083 attr
->dw_attr_val
.val_class
= dw_val_class_loc
;
5084 attr
->dw_attr_val
.v
.val_loc
= loc
;
5085 add_dwarf_attr (die
, attr
);
5088 static inline dw_loc_descr_ref
5089 AT_loc (dw_attr_ref a
)
5091 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc
);
5092 return a
->dw_attr_val
.v
.val_loc
;
5096 add_AT_loc_list (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_list_ref loc_list
)
5098 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5100 attr
->dw_attr_next
= NULL
;
5101 attr
->dw_attr
= attr_kind
;
5102 attr
->dw_attr_val
.val_class
= dw_val_class_loc_list
;
5103 attr
->dw_attr_val
.v
.val_loc_list
= loc_list
;
5104 add_dwarf_attr (die
, attr
);
5105 have_location_lists
= true;
5108 static inline dw_loc_list_ref
5109 AT_loc_list (dw_attr_ref a
)
5111 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc_list
);
5112 return a
->dw_attr_val
.v
.val_loc_list
;
5115 /* Add an address constant attribute value to a DIE. */
5118 add_AT_addr (dw_die_ref die
, enum dwarf_attribute attr_kind
, rtx addr
)
5120 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5122 attr
->dw_attr_next
= NULL
;
5123 attr
->dw_attr
= attr_kind
;
5124 attr
->dw_attr_val
.val_class
= dw_val_class_addr
;
5125 attr
->dw_attr_val
.v
.val_addr
= addr
;
5126 add_dwarf_attr (die
, attr
);
5130 AT_addr (dw_attr_ref a
)
5132 gcc_assert (a
&& AT_class (a
) == dw_val_class_addr
);
5133 return a
->dw_attr_val
.v
.val_addr
;
5136 /* Add a label identifier attribute value to a DIE. */
5139 add_AT_lbl_id (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *lbl_id
)
5141 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5143 attr
->dw_attr_next
= NULL
;
5144 attr
->dw_attr
= attr_kind
;
5145 attr
->dw_attr_val
.val_class
= dw_val_class_lbl_id
;
5146 attr
->dw_attr_val
.v
.val_lbl_id
= xstrdup (lbl_id
);
5147 add_dwarf_attr (die
, attr
);
5150 /* Add a section offset attribute value to a DIE. */
5153 add_AT_lbl_offset (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *label
)
5155 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5157 attr
->dw_attr_next
= NULL
;
5158 attr
->dw_attr
= attr_kind
;
5159 attr
->dw_attr_val
.val_class
= dw_val_class_lbl_offset
;
5160 attr
->dw_attr_val
.v
.val_lbl_id
= xstrdup (label
);
5161 add_dwarf_attr (die
, attr
);
5164 /* Add an offset attribute value to a DIE. */
5167 add_AT_offset (dw_die_ref die
, enum dwarf_attribute attr_kind
,
5168 unsigned HOST_WIDE_INT offset
)
5170 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5172 attr
->dw_attr_next
= NULL
;
5173 attr
->dw_attr
= attr_kind
;
5174 attr
->dw_attr_val
.val_class
= dw_val_class_offset
;
5175 attr
->dw_attr_val
.v
.val_offset
= offset
;
5176 add_dwarf_attr (die
, attr
);
5179 /* Add an range_list attribute value to a DIE. */
5182 add_AT_range_list (dw_die_ref die
, enum dwarf_attribute attr_kind
,
5183 long unsigned int offset
)
5185 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5187 attr
->dw_attr_next
= NULL
;
5188 attr
->dw_attr
= attr_kind
;
5189 attr
->dw_attr_val
.val_class
= dw_val_class_range_list
;
5190 attr
->dw_attr_val
.v
.val_offset
= offset
;
5191 add_dwarf_attr (die
, attr
);
5194 static inline const char *
5195 AT_lbl (dw_attr_ref a
)
5197 gcc_assert (a
&& (AT_class (a
) == dw_val_class_lbl_id
5198 || AT_class (a
) == dw_val_class_lbl_offset
));
5199 return a
->dw_attr_val
.v
.val_lbl_id
;
5202 /* Get the attribute of type attr_kind. */
5205 get_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5208 dw_die_ref spec
= NULL
;
5212 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
5213 if (a
->dw_attr
== attr_kind
)
5215 else if (a
->dw_attr
== DW_AT_specification
5216 || a
->dw_attr
== DW_AT_abstract_origin
)
5220 return get_AT (spec
, attr_kind
);
5226 /* Return the "low pc" attribute value, typically associated with a subprogram
5227 DIE. Return null if the "low pc" attribute is either not present, or if it
5228 cannot be represented as an assembler label identifier. */
5230 static inline const char *
5231 get_AT_low_pc (dw_die_ref die
)
5233 dw_attr_ref a
= get_AT (die
, DW_AT_low_pc
);
5235 return a
? AT_lbl (a
) : NULL
;
5238 /* Return the "high pc" attribute value, typically associated with a subprogram
5239 DIE. Return null if the "high pc" attribute is either not present, or if it
5240 cannot be represented as an assembler label identifier. */
5242 static inline const char *
5243 get_AT_hi_pc (dw_die_ref die
)
5245 dw_attr_ref a
= get_AT (die
, DW_AT_high_pc
);
5247 return a
? AT_lbl (a
) : NULL
;
5250 /* Return the value of the string attribute designated by ATTR_KIND, or
5251 NULL if it is not present. */
5253 static inline const char *
5254 get_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5256 dw_attr_ref a
= get_AT (die
, attr_kind
);
5258 return a
? AT_string (a
) : NULL
;
5261 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
5262 if it is not present. */
5265 get_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5267 dw_attr_ref a
= get_AT (die
, attr_kind
);
5269 return a
? AT_flag (a
) : 0;
5272 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
5273 if it is not present. */
5275 static inline unsigned
5276 get_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5278 dw_attr_ref a
= get_AT (die
, attr_kind
);
5280 return a
? AT_unsigned (a
) : 0;
5283 static inline dw_die_ref
5284 get_AT_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5286 dw_attr_ref a
= get_AT (die
, attr_kind
);
5288 return a
? AT_ref (a
) : NULL
;
5291 /* Return TRUE if the language is C or C++. */
5296 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
5298 return (lang
== DW_LANG_C
|| lang
== DW_LANG_C89
5299 || lang
== DW_LANG_C_plus_plus
);
5302 /* Return TRUE if the language is C++. */
5307 return (get_AT_unsigned (comp_unit_die
, DW_AT_language
)
5308 == DW_LANG_C_plus_plus
);
5311 /* Return TRUE if the language is Fortran. */
5316 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
5318 return (lang
== DW_LANG_Fortran77
5319 || lang
== DW_LANG_Fortran90
5320 || lang
== DW_LANG_Fortran95
);
5323 /* Return TRUE if the language is Java. */
5328 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
5330 return lang
== DW_LANG_Java
;
5333 /* Return TRUE if the language is Ada. */
5338 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
5340 return lang
== DW_LANG_Ada95
|| lang
== DW_LANG_Ada83
;
5343 /* Free up the memory used by A. */
5345 static inline void free_AT (dw_attr_ref
);
5347 free_AT (dw_attr_ref a
)
5349 if (AT_class (a
) == dw_val_class_str
)
5350 if (a
->dw_attr_val
.v
.val_str
->refcount
)
5351 a
->dw_attr_val
.v
.val_str
->refcount
--;
5354 /* Remove the specified attribute if present. */
5357 remove_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5360 dw_attr_ref removed
= NULL
;
5364 for (p
= &(die
->die_attr
); *p
; p
= &((*p
)->dw_attr_next
))
5365 if ((*p
)->dw_attr
== attr_kind
)
5368 *p
= (*p
)->dw_attr_next
;
5377 /* Remove child die whose die_tag is specified tag. */
5380 remove_child_TAG (dw_die_ref die
, enum dwarf_tag tag
)
5382 dw_die_ref current
, prev
, next
;
5383 current
= die
->die_child
;
5385 while (current
!= NULL
)
5387 if (current
->die_tag
== tag
)
5389 next
= current
->die_sib
;
5391 die
->die_child
= next
;
5393 prev
->die_sib
= next
;
5400 current
= current
->die_sib
;
5405 /* Free up the memory used by DIE. */
5408 free_die (dw_die_ref die
)
5410 remove_children (die
);
5413 /* Discard the children of this DIE. */
5416 remove_children (dw_die_ref die
)
5418 dw_die_ref child_die
= die
->die_child
;
5420 die
->die_child
= NULL
;
5422 while (child_die
!= NULL
)
5424 dw_die_ref tmp_die
= child_die
;
5427 child_die
= child_die
->die_sib
;
5429 for (a
= tmp_die
->die_attr
; a
!= NULL
;)
5431 dw_attr_ref tmp_a
= a
;
5433 a
= a
->dw_attr_next
;
5441 /* Add a child DIE below its parent. We build the lists up in reverse
5442 addition order, and correct that in reverse_all_dies. */
5445 add_child_die (dw_die_ref die
, dw_die_ref child_die
)
5447 if (die
!= NULL
&& child_die
!= NULL
)
5449 gcc_assert (die
!= child_die
);
5451 child_die
->die_parent
= die
;
5452 child_die
->die_sib
= die
->die_child
;
5453 die
->die_child
= child_die
;
5457 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5458 is the specification, to the front of PARENT's list of children. */
5461 splice_child_die (dw_die_ref parent
, dw_die_ref child
)
5465 /* We want the declaration DIE from inside the class, not the
5466 specification DIE at toplevel. */
5467 if (child
->die_parent
!= parent
)
5469 dw_die_ref tmp
= get_AT_ref (child
, DW_AT_specification
);
5475 gcc_assert (child
->die_parent
== parent
5476 || (child
->die_parent
5477 == get_AT_ref (parent
, DW_AT_specification
)));
5479 for (p
= &(child
->die_parent
->die_child
); *p
; p
= &((*p
)->die_sib
))
5482 *p
= child
->die_sib
;
5486 child
->die_parent
= parent
;
5487 child
->die_sib
= parent
->die_child
;
5488 parent
->die_child
= child
;
5491 /* Return a pointer to a newly created DIE node. */
5493 static inline dw_die_ref
5494 new_die (enum dwarf_tag tag_value
, dw_die_ref parent_die
, tree t
)
5496 dw_die_ref die
= ggc_alloc_cleared (sizeof (die_node
));
5498 die
->die_tag
= tag_value
;
5500 if (parent_die
!= NULL
)
5501 add_child_die (parent_die
, die
);
5504 limbo_die_node
*limbo_node
;
5506 limbo_node
= ggc_alloc_cleared (sizeof (limbo_die_node
));
5507 limbo_node
->die
= die
;
5508 limbo_node
->created_for
= t
;
5509 limbo_node
->next
= limbo_die_list
;
5510 limbo_die_list
= limbo_node
;
5516 /* Return the DIE associated with the given type specifier. */
5518 static inline dw_die_ref
5519 lookup_type_die (tree type
)
5521 return TYPE_SYMTAB_DIE (type
);
5524 /* Equate a DIE to a given type specifier. */
5527 equate_type_number_to_die (tree type
, dw_die_ref type_die
)
5529 TYPE_SYMTAB_DIE (type
) = type_die
;
5532 /* Returns a hash value for X (which really is a die_struct). */
5535 decl_die_table_hash (const void *x
)
5537 return (hashval_t
) ((const dw_die_ref
) x
)->decl_id
;
5540 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
5543 decl_die_table_eq (const void *x
, const void *y
)
5545 return (((const dw_die_ref
) x
)->decl_id
== DECL_UID ((const tree
) y
));
5548 /* Return the DIE associated with a given declaration. */
5550 static inline dw_die_ref
5551 lookup_decl_die (tree decl
)
5553 return htab_find_with_hash (decl_die_table
, decl
, DECL_UID (decl
));
5556 /* Returns a hash value for X (which really is a var_loc_list). */
5559 decl_loc_table_hash (const void *x
)
5561 return (hashval_t
) ((const var_loc_list
*) x
)->decl_id
;
5564 /* Return nonzero if decl_id of var_loc_list X is the same as
5568 decl_loc_table_eq (const void *x
, const void *y
)
5570 return (((const var_loc_list
*) x
)->decl_id
== DECL_UID ((const tree
) y
));
5573 /* Return the var_loc list associated with a given declaration. */
5575 static inline var_loc_list
*
5576 lookup_decl_loc (tree decl
)
5578 return htab_find_with_hash (decl_loc_table
, decl
, DECL_UID (decl
));
5581 /* Equate a DIE to a particular declaration. */
5584 equate_decl_number_to_die (tree decl
, dw_die_ref decl_die
)
5586 unsigned int decl_id
= DECL_UID (decl
);
5589 slot
= htab_find_slot_with_hash (decl_die_table
, decl
, decl_id
, INSERT
);
5591 decl_die
->decl_id
= decl_id
;
5594 /* Add a variable location node to the linked list for DECL. */
5597 add_var_loc_to_decl (tree decl
, struct var_loc_node
*loc
)
5599 unsigned int decl_id
= DECL_UID (decl
);
5603 slot
= htab_find_slot_with_hash (decl_loc_table
, decl
, decl_id
, INSERT
);
5606 temp
= ggc_alloc_cleared (sizeof (var_loc_list
));
5607 temp
->decl_id
= decl_id
;
5615 /* If the current location is the same as the end of the list,
5616 we have nothing to do. */
5617 if (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp
->last
->var_loc_note
),
5618 NOTE_VAR_LOCATION_LOC (loc
->var_loc_note
)))
5620 /* Add LOC to the end of list and update LAST. */
5621 temp
->last
->next
= loc
;
5625 /* Do not add empty location to the beginning of the list. */
5626 else if (NOTE_VAR_LOCATION_LOC (loc
->var_loc_note
) != NULL_RTX
)
5633 /* Keep track of the number of spaces used to indent the
5634 output of the debugging routines that print the structure of
5635 the DIE internal representation. */
5636 static int print_indent
;
5638 /* Indent the line the number of spaces given by print_indent. */
5641 print_spaces (FILE *outfile
)
5643 fprintf (outfile
, "%*s", print_indent
, "");
5646 /* Print the information associated with a given DIE, and its children.
5647 This routine is a debugging aid only. */
5650 print_die (dw_die_ref die
, FILE *outfile
)
5655 print_spaces (outfile
);
5656 fprintf (outfile
, "DIE %4lu: %s\n",
5657 die
->die_offset
, dwarf_tag_name (die
->die_tag
));
5658 print_spaces (outfile
);
5659 fprintf (outfile
, " abbrev id: %lu", die
->die_abbrev
);
5660 fprintf (outfile
, " offset: %lu\n", die
->die_offset
);
5662 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
5664 print_spaces (outfile
);
5665 fprintf (outfile
, " %s: ", dwarf_attr_name (a
->dw_attr
));
5667 switch (AT_class (a
))
5669 case dw_val_class_addr
:
5670 fprintf (outfile
, "address");
5672 case dw_val_class_offset
:
5673 fprintf (outfile
, "offset");
5675 case dw_val_class_loc
:
5676 fprintf (outfile
, "location descriptor");
5678 case dw_val_class_loc_list
:
5679 fprintf (outfile
, "location list -> label:%s",
5680 AT_loc_list (a
)->ll_symbol
);
5682 case dw_val_class_range_list
:
5683 fprintf (outfile
, "range list");
5685 case dw_val_class_const
:
5686 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, AT_int (a
));
5688 case dw_val_class_unsigned_const
:
5689 fprintf (outfile
, HOST_WIDE_INT_PRINT_UNSIGNED
, AT_unsigned (a
));
5691 case dw_val_class_long_long
:
5692 fprintf (outfile
, "constant (%lu,%lu)",
5693 a
->dw_attr_val
.v
.val_long_long
.hi
,
5694 a
->dw_attr_val
.v
.val_long_long
.low
);
5696 case dw_val_class_vec
:
5697 fprintf (outfile
, "floating-point or vector constant");
5699 case dw_val_class_flag
:
5700 fprintf (outfile
, "%u", AT_flag (a
));
5702 case dw_val_class_die_ref
:
5703 if (AT_ref (a
) != NULL
)
5705 if (AT_ref (a
)->die_symbol
)
5706 fprintf (outfile
, "die -> label: %s", AT_ref (a
)->die_symbol
);
5708 fprintf (outfile
, "die -> %lu", AT_ref (a
)->die_offset
);
5711 fprintf (outfile
, "die -> <null>");
5713 case dw_val_class_lbl_id
:
5714 case dw_val_class_lbl_offset
:
5715 fprintf (outfile
, "label: %s", AT_lbl (a
));
5717 case dw_val_class_str
:
5718 if (AT_string (a
) != NULL
)
5719 fprintf (outfile
, "\"%s\"", AT_string (a
));
5721 fprintf (outfile
, "<null>");
5727 fprintf (outfile
, "\n");
5730 if (die
->die_child
!= NULL
)
5733 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
5734 print_die (c
, outfile
);
5738 if (print_indent
== 0)
5739 fprintf (outfile
, "\n");
5742 /* Print the contents of the source code line number correspondence table.
5743 This routine is a debugging aid only. */
5746 print_dwarf_line_table (FILE *outfile
)
5749 dw_line_info_ref line_info
;
5751 fprintf (outfile
, "\n\nDWARF source line information\n");
5752 for (i
= 1; i
< line_info_table_in_use
; i
++)
5754 line_info
= &line_info_table
[i
];
5755 fprintf (outfile
, "%5d: ", i
);
5756 fprintf (outfile
, "%-20s",
5757 VARRAY_CHAR_PTR (file_table
, line_info
->dw_file_num
));
5758 fprintf (outfile
, "%6ld", line_info
->dw_line_num
);
5759 fprintf (outfile
, "\n");
5762 fprintf (outfile
, "\n\n");
5765 /* Print the information collected for a given DIE. */
5768 debug_dwarf_die (dw_die_ref die
)
5770 print_die (die
, stderr
);
5773 /* Print all DWARF information collected for the compilation unit.
5774 This routine is a debugging aid only. */
5780 print_die (comp_unit_die
, stderr
);
5781 if (! DWARF2_ASM_LINE_DEBUG_INFO
)
5782 print_dwarf_line_table (stderr
);
5785 /* We build up the lists of children and attributes by pushing new ones
5786 onto the beginning of the list. Reverse the lists for DIE so that
5787 they are in order of addition. */
5790 reverse_die_lists (dw_die_ref die
)
5792 dw_die_ref c
, cp
, cn
;
5793 dw_attr_ref a
, ap
, an
;
5795 for (a
= die
->die_attr
, ap
= 0; a
; a
= an
)
5797 an
= a
->dw_attr_next
;
5798 a
->dw_attr_next
= ap
;
5804 for (c
= die
->die_child
, cp
= 0; c
; c
= cn
)
5811 die
->die_child
= cp
;
5814 /* reverse_die_lists only reverses the single die you pass it. Since we used to
5815 reverse all dies in add_sibling_attributes, which runs through all the dies,
5816 it would reverse all the dies. Now, however, since we don't call
5817 reverse_die_lists in add_sibling_attributes, we need a routine to
5818 recursively reverse all the dies. This is that routine. */
5821 reverse_all_dies (dw_die_ref die
)
5825 reverse_die_lists (die
);
5827 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
5828 reverse_all_dies (c
);
5831 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
5832 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
5833 DIE that marks the start of the DIEs for this include file. */
5836 push_new_compile_unit (dw_die_ref old_unit
, dw_die_ref bincl_die
)
5838 const char *filename
= get_AT_string (bincl_die
, DW_AT_name
);
5839 dw_die_ref new_unit
= gen_compile_unit_die (filename
);
5841 new_unit
->die_sib
= old_unit
;
5845 /* Close an include-file CU and reopen the enclosing one. */
5848 pop_compile_unit (dw_die_ref old_unit
)
5850 dw_die_ref new_unit
= old_unit
->die_sib
;
5852 old_unit
->die_sib
= NULL
;
5856 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5857 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5859 /* Calculate the checksum of a location expression. */
5862 loc_checksum (dw_loc_descr_ref loc
, struct md5_ctx
*ctx
)
5864 CHECKSUM (loc
->dw_loc_opc
);
5865 CHECKSUM (loc
->dw_loc_oprnd1
);
5866 CHECKSUM (loc
->dw_loc_oprnd2
);
5869 /* Calculate the checksum of an attribute. */
5872 attr_checksum (dw_attr_ref at
, struct md5_ctx
*ctx
, int *mark
)
5874 dw_loc_descr_ref loc
;
5877 CHECKSUM (at
->dw_attr
);
5879 /* We don't care about differences in file numbering. */
5880 if (at
->dw_attr
== DW_AT_decl_file
5881 /* Or that this was compiled with a different compiler snapshot; if
5882 the output is the same, that's what matters. */
5883 || at
->dw_attr
== DW_AT_producer
)
5886 switch (AT_class (at
))
5888 case dw_val_class_const
:
5889 CHECKSUM (at
->dw_attr_val
.v
.val_int
);
5891 case dw_val_class_unsigned_const
:
5892 CHECKSUM (at
->dw_attr_val
.v
.val_unsigned
);
5894 case dw_val_class_long_long
:
5895 CHECKSUM (at
->dw_attr_val
.v
.val_long_long
);
5897 case dw_val_class_vec
:
5898 CHECKSUM (at
->dw_attr_val
.v
.val_vec
);
5900 case dw_val_class_flag
:
5901 CHECKSUM (at
->dw_attr_val
.v
.val_flag
);
5903 case dw_val_class_str
:
5904 CHECKSUM_STRING (AT_string (at
));
5907 case dw_val_class_addr
:
5909 gcc_assert (GET_CODE (r
) == SYMBOL_REF
);
5910 CHECKSUM_STRING (XSTR (r
, 0));
5913 case dw_val_class_offset
:
5914 CHECKSUM (at
->dw_attr_val
.v
.val_offset
);
5917 case dw_val_class_loc
:
5918 for (loc
= AT_loc (at
); loc
; loc
= loc
->dw_loc_next
)
5919 loc_checksum (loc
, ctx
);
5922 case dw_val_class_die_ref
:
5923 die_checksum (AT_ref (at
), ctx
, mark
);
5926 case dw_val_class_fde_ref
:
5927 case dw_val_class_lbl_id
:
5928 case dw_val_class_lbl_offset
:
5936 /* Calculate the checksum of a DIE. */
5939 die_checksum (dw_die_ref die
, struct md5_ctx
*ctx
, int *mark
)
5944 /* To avoid infinite recursion. */
5947 CHECKSUM (die
->die_mark
);
5950 die
->die_mark
= ++(*mark
);
5952 CHECKSUM (die
->die_tag
);
5954 for (a
= die
->die_attr
; a
; a
= a
->dw_attr_next
)
5955 attr_checksum (a
, ctx
, mark
);
5957 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
5958 die_checksum (c
, ctx
, mark
);
5962 #undef CHECKSUM_STRING
5964 /* Do the location expressions look same? */
5966 same_loc_p (dw_loc_descr_ref loc1
, dw_loc_descr_ref loc2
, int *mark
)
5968 return loc1
->dw_loc_opc
== loc2
->dw_loc_opc
5969 && same_dw_val_p (&loc1
->dw_loc_oprnd1
, &loc2
->dw_loc_oprnd1
, mark
)
5970 && same_dw_val_p (&loc1
->dw_loc_oprnd2
, &loc2
->dw_loc_oprnd2
, mark
);
5973 /* Do the values look the same? */
5975 same_dw_val_p (dw_val_node
*v1
, dw_val_node
*v2
, int *mark
)
5977 dw_loc_descr_ref loc1
, loc2
;
5980 if (v1
->val_class
!= v2
->val_class
)
5983 switch (v1
->val_class
)
5985 case dw_val_class_const
:
5986 return v1
->v
.val_int
== v2
->v
.val_int
;
5987 case dw_val_class_unsigned_const
:
5988 return v1
->v
.val_unsigned
== v2
->v
.val_unsigned
;
5989 case dw_val_class_long_long
:
5990 return v1
->v
.val_long_long
.hi
== v2
->v
.val_long_long
.hi
5991 && v1
->v
.val_long_long
.low
== v2
->v
.val_long_long
.low
;
5992 case dw_val_class_vec
:
5993 if (v1
->v
.val_vec
.length
!= v2
->v
.val_vec
.length
5994 || v1
->v
.val_vec
.elt_size
!= v2
->v
.val_vec
.elt_size
)
5996 if (memcmp (v1
->v
.val_vec
.array
, v2
->v
.val_vec
.array
,
5997 v1
->v
.val_vec
.length
* v1
->v
.val_vec
.elt_size
))
6000 case dw_val_class_flag
:
6001 return v1
->v
.val_flag
== v2
->v
.val_flag
;
6002 case dw_val_class_str
:
6003 return !strcmp(v1
->v
.val_str
->str
, v2
->v
.val_str
->str
);
6005 case dw_val_class_addr
:
6006 r1
= v1
->v
.val_addr
;
6007 r2
= v2
->v
.val_addr
;
6008 if (GET_CODE (r1
) != GET_CODE (r2
))
6010 gcc_assert (GET_CODE (r1
) == SYMBOL_REF
);
6011 return !strcmp (XSTR (r1
, 0), XSTR (r2
, 0));
6013 case dw_val_class_offset
:
6014 return v1
->v
.val_offset
== v2
->v
.val_offset
;
6016 case dw_val_class_loc
:
6017 for (loc1
= v1
->v
.val_loc
, loc2
= v2
->v
.val_loc
;
6019 loc1
= loc1
->dw_loc_next
, loc2
= loc2
->dw_loc_next
)
6020 if (!same_loc_p (loc1
, loc2
, mark
))
6022 return !loc1
&& !loc2
;
6024 case dw_val_class_die_ref
:
6025 return same_die_p (v1
->v
.val_die_ref
.die
, v2
->v
.val_die_ref
.die
, mark
);
6027 case dw_val_class_fde_ref
:
6028 case dw_val_class_lbl_id
:
6029 case dw_val_class_lbl_offset
:
6037 /* Do the attributes look the same? */
6040 same_attr_p (dw_attr_ref at1
, dw_attr_ref at2
, int *mark
)
6042 if (at1
->dw_attr
!= at2
->dw_attr
)
6045 /* We don't care about differences in file numbering. */
6046 if (at1
->dw_attr
== DW_AT_decl_file
6047 /* Or that this was compiled with a different compiler snapshot; if
6048 the output is the same, that's what matters. */
6049 || at1
->dw_attr
== DW_AT_producer
)
6052 return same_dw_val_p (&at1
->dw_attr_val
, &at2
->dw_attr_val
, mark
);
6055 /* Do the dies look the same? */
6058 same_die_p (dw_die_ref die1
, dw_die_ref die2
, int *mark
)
6063 /* To avoid infinite recursion. */
6065 return die1
->die_mark
== die2
->die_mark
;
6066 die1
->die_mark
= die2
->die_mark
= ++(*mark
);
6068 if (die1
->die_tag
!= die2
->die_tag
)
6071 for (a1
= die1
->die_attr
, a2
= die2
->die_attr
;
6073 a1
= a1
->dw_attr_next
, a2
= a2
->dw_attr_next
)
6074 if (!same_attr_p (a1
, a2
, mark
))
6079 for (c1
= die1
->die_child
, c2
= die2
->die_child
;
6081 c1
= c1
->die_sib
, c2
= c2
->die_sib
)
6082 if (!same_die_p (c1
, c2
, mark
))
6090 /* Do the dies look the same? Wrapper around same_die_p. */
6093 same_die_p_wrap (dw_die_ref die1
, dw_die_ref die2
)
6096 int ret
= same_die_p (die1
, die2
, &mark
);
6098 unmark_all_dies (die1
);
6099 unmark_all_dies (die2
);
6104 /* The prefix to attach to symbols on DIEs in the current comdat debug
6106 static char *comdat_symbol_id
;
6108 /* The index of the current symbol within the current comdat CU. */
6109 static unsigned int comdat_symbol_number
;
6111 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
6112 children, and set comdat_symbol_id accordingly. */
6115 compute_section_prefix (dw_die_ref unit_die
)
6117 const char *die_name
= get_AT_string (unit_die
, DW_AT_name
);
6118 const char *base
= die_name
? lbasename (die_name
) : "anonymous";
6119 char *name
= alloca (strlen (base
) + 64);
6122 unsigned char checksum
[16];
6125 /* Compute the checksum of the DIE, then append part of it as hex digits to
6126 the name filename of the unit. */
6128 md5_init_ctx (&ctx
);
6130 die_checksum (unit_die
, &ctx
, &mark
);
6131 unmark_all_dies (unit_die
);
6132 md5_finish_ctx (&ctx
, checksum
);
6134 sprintf (name
, "%s.", base
);
6135 clean_symbol_name (name
);
6137 p
= name
+ strlen (name
);
6138 for (i
= 0; i
< 4; i
++)
6140 sprintf (p
, "%.2x", checksum
[i
]);
6144 comdat_symbol_id
= unit_die
->die_symbol
= xstrdup (name
);
6145 comdat_symbol_number
= 0;
6148 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
6151 is_type_die (dw_die_ref die
)
6153 switch (die
->die_tag
)
6155 case DW_TAG_array_type
:
6156 case DW_TAG_class_type
:
6157 case DW_TAG_enumeration_type
:
6158 case DW_TAG_pointer_type
:
6159 case DW_TAG_reference_type
:
6160 case DW_TAG_string_type
:
6161 case DW_TAG_structure_type
:
6162 case DW_TAG_subroutine_type
:
6163 case DW_TAG_union_type
:
6164 case DW_TAG_ptr_to_member_type
:
6165 case DW_TAG_set_type
:
6166 case DW_TAG_subrange_type
:
6167 case DW_TAG_base_type
:
6168 case DW_TAG_const_type
:
6169 case DW_TAG_file_type
:
6170 case DW_TAG_packed_type
:
6171 case DW_TAG_volatile_type
:
6172 case DW_TAG_typedef
:
6179 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
6180 Basically, we want to choose the bits that are likely to be shared between
6181 compilations (types) and leave out the bits that are specific to individual
6182 compilations (functions). */
6185 is_comdat_die (dw_die_ref c
)
6187 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
6188 we do for stabs. The advantage is a greater likelihood of sharing between
6189 objects that don't include headers in the same order (and therefore would
6190 put the base types in a different comdat). jason 8/28/00 */
6192 if (c
->die_tag
== DW_TAG_base_type
)
6195 if (c
->die_tag
== DW_TAG_pointer_type
6196 || c
->die_tag
== DW_TAG_reference_type
6197 || c
->die_tag
== DW_TAG_const_type
6198 || c
->die_tag
== DW_TAG_volatile_type
)
6200 dw_die_ref t
= get_AT_ref (c
, DW_AT_type
);
6202 return t
? is_comdat_die (t
) : 0;
6205 return is_type_die (c
);
6208 /* Returns 1 iff C is the sort of DIE that might be referred to from another
6209 compilation unit. */
6212 is_symbol_die (dw_die_ref c
)
6214 return (is_type_die (c
)
6215 || (get_AT (c
, DW_AT_declaration
)
6216 && !get_AT (c
, DW_AT_specification
)));
6220 gen_internal_sym (const char *prefix
)
6224 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, label_num
++);
6225 return xstrdup (buf
);
6228 /* Assign symbols to all worthy DIEs under DIE. */
6231 assign_symbol_names (dw_die_ref die
)
6235 if (is_symbol_die (die
))
6237 if (comdat_symbol_id
)
6239 char *p
= alloca (strlen (comdat_symbol_id
) + 64);
6241 sprintf (p
, "%s.%s.%x", DIE_LABEL_PREFIX
,
6242 comdat_symbol_id
, comdat_symbol_number
++);
6243 die
->die_symbol
= xstrdup (p
);
6246 die
->die_symbol
= gen_internal_sym ("LDIE");
6249 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6250 assign_symbol_names (c
);
6253 struct cu_hash_table_entry
6256 unsigned min_comdat_num
, max_comdat_num
;
6257 struct cu_hash_table_entry
*next
;
6260 /* Routines to manipulate hash table of CUs. */
6262 htab_cu_hash (const void *of
)
6264 const struct cu_hash_table_entry
*entry
= of
;
6266 return htab_hash_string (entry
->cu
->die_symbol
);
6270 htab_cu_eq (const void *of1
, const void *of2
)
6272 const struct cu_hash_table_entry
*entry1
= of1
;
6273 const struct die_struct
*entry2
= of2
;
6275 return !strcmp (entry1
->cu
->die_symbol
, entry2
->die_symbol
);
6279 htab_cu_del (void *what
)
6281 struct cu_hash_table_entry
*next
, *entry
= what
;
6291 /* Check whether we have already seen this CU and set up SYM_NUM
6294 check_duplicate_cu (dw_die_ref cu
, htab_t htable
, unsigned int *sym_num
)
6296 struct cu_hash_table_entry dummy
;
6297 struct cu_hash_table_entry
**slot
, *entry
, *last
= &dummy
;
6299 dummy
.max_comdat_num
= 0;
6301 slot
= (struct cu_hash_table_entry
**)
6302 htab_find_slot_with_hash (htable
, cu
, htab_hash_string (cu
->die_symbol
),
6306 for (; entry
; last
= entry
, entry
= entry
->next
)
6308 if (same_die_p_wrap (cu
, entry
->cu
))
6314 *sym_num
= entry
->min_comdat_num
;
6318 entry
= xcalloc (1, sizeof (struct cu_hash_table_entry
));
6320 entry
->min_comdat_num
= *sym_num
= last
->max_comdat_num
;
6321 entry
->next
= *slot
;
6327 /* Record SYM_NUM to record of CU in HTABLE. */
6329 record_comdat_symbol_number (dw_die_ref cu
, htab_t htable
, unsigned int sym_num
)
6331 struct cu_hash_table_entry
**slot
, *entry
;
6333 slot
= (struct cu_hash_table_entry
**)
6334 htab_find_slot_with_hash (htable
, cu
, htab_hash_string (cu
->die_symbol
),
6338 entry
->max_comdat_num
= sym_num
;
6341 /* Traverse the DIE (which is always comp_unit_die), and set up
6342 additional compilation units for each of the include files we see
6343 bracketed by BINCL/EINCL. */
6346 break_out_includes (dw_die_ref die
)
6349 dw_die_ref unit
= NULL
;
6350 limbo_die_node
*node
, **pnode
;
6351 htab_t cu_hash_table
;
6353 for (ptr
= &(die
->die_child
); *ptr
;)
6355 dw_die_ref c
= *ptr
;
6357 if (c
->die_tag
== DW_TAG_GNU_BINCL
|| c
->die_tag
== DW_TAG_GNU_EINCL
6358 || (unit
&& is_comdat_die (c
)))
6360 /* This DIE is for a secondary CU; remove it from the main one. */
6363 if (c
->die_tag
== DW_TAG_GNU_BINCL
)
6365 unit
= push_new_compile_unit (unit
, c
);
6368 else if (c
->die_tag
== DW_TAG_GNU_EINCL
)
6370 unit
= pop_compile_unit (unit
);
6374 add_child_die (unit
, c
);
6378 /* Leave this DIE in the main CU. */
6379 ptr
= &(c
->die_sib
);
6385 /* We can only use this in debugging, since the frontend doesn't check
6386 to make sure that we leave every include file we enter. */
6390 assign_symbol_names (die
);
6391 cu_hash_table
= htab_create (10, htab_cu_hash
, htab_cu_eq
, htab_cu_del
);
6392 for (node
= limbo_die_list
, pnode
= &limbo_die_list
;
6398 compute_section_prefix (node
->die
);
6399 is_dupl
= check_duplicate_cu (node
->die
, cu_hash_table
,
6400 &comdat_symbol_number
);
6401 assign_symbol_names (node
->die
);
6403 *pnode
= node
->next
;
6406 pnode
= &node
->next
;
6407 record_comdat_symbol_number (node
->die
, cu_hash_table
,
6408 comdat_symbol_number
);
6411 htab_delete (cu_hash_table
);
6414 /* Traverse the DIE and add a sibling attribute if it may have the
6415 effect of speeding up access to siblings. To save some space,
6416 avoid generating sibling attributes for DIE's without children. */
6419 add_sibling_attributes (dw_die_ref die
)
6423 if (die
->die_tag
!= DW_TAG_compile_unit
6424 && die
->die_sib
&& die
->die_child
!= NULL
)
6425 /* Add the sibling link to the front of the attribute list. */
6426 add_AT_die_ref (die
, DW_AT_sibling
, die
->die_sib
);
6428 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6429 add_sibling_attributes (c
);
6432 /* Output all location lists for the DIE and its children. */
6435 output_location_lists (dw_die_ref die
)
6440 for (d_attr
= die
->die_attr
; d_attr
; d_attr
= d_attr
->dw_attr_next
)
6441 if (AT_class (d_attr
) == dw_val_class_loc_list
)
6442 output_loc_list (AT_loc_list (d_attr
));
6444 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6445 output_location_lists (c
);
6449 /* The format of each DIE (and its attribute value pairs) is encoded in an
6450 abbreviation table. This routine builds the abbreviation table and assigns
6451 a unique abbreviation id for each abbreviation entry. The children of each
6452 die are visited recursively. */
6455 build_abbrev_table (dw_die_ref die
)
6457 unsigned long abbrev_id
;
6458 unsigned int n_alloc
;
6460 dw_attr_ref d_attr
, a_attr
;
6462 /* Scan the DIE references, and mark as external any that refer to
6463 DIEs from other CUs (i.e. those which are not marked). */
6464 for (d_attr
= die
->die_attr
; d_attr
; d_attr
= d_attr
->dw_attr_next
)
6465 if (AT_class (d_attr
) == dw_val_class_die_ref
6466 && AT_ref (d_attr
)->die_mark
== 0)
6468 gcc_assert (AT_ref (d_attr
)->die_symbol
);
6470 set_AT_ref_external (d_attr
, 1);
6473 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
6475 dw_die_ref abbrev
= abbrev_die_table
[abbrev_id
];
6477 if (abbrev
->die_tag
== die
->die_tag
)
6479 if ((abbrev
->die_child
!= NULL
) == (die
->die_child
!= NULL
))
6481 a_attr
= abbrev
->die_attr
;
6482 d_attr
= die
->die_attr
;
6484 while (a_attr
!= NULL
&& d_attr
!= NULL
)
6486 if ((a_attr
->dw_attr
!= d_attr
->dw_attr
)
6487 || (value_format (a_attr
) != value_format (d_attr
)))
6490 a_attr
= a_attr
->dw_attr_next
;
6491 d_attr
= d_attr
->dw_attr_next
;
6494 if (a_attr
== NULL
&& d_attr
== NULL
)
6500 if (abbrev_id
>= abbrev_die_table_in_use
)
6502 if (abbrev_die_table_in_use
>= abbrev_die_table_allocated
)
6504 n_alloc
= abbrev_die_table_allocated
+ ABBREV_DIE_TABLE_INCREMENT
;
6505 abbrev_die_table
= ggc_realloc (abbrev_die_table
,
6506 sizeof (dw_die_ref
) * n_alloc
);
6508 memset (&abbrev_die_table
[abbrev_die_table_allocated
], 0,
6509 (n_alloc
- abbrev_die_table_allocated
) * sizeof (dw_die_ref
));
6510 abbrev_die_table_allocated
= n_alloc
;
6513 ++abbrev_die_table_in_use
;
6514 abbrev_die_table
[abbrev_id
] = die
;
6517 die
->die_abbrev
= abbrev_id
;
6518 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6519 build_abbrev_table (c
);
6522 /* Return the power-of-two number of bytes necessary to represent VALUE. */
6525 constant_size (long unsigned int value
)
6532 log
= floor_log2 (value
);
6535 log
= 1 << (floor_log2 (log
) + 1);
6540 /* Return the size of a DIE as it is represented in the
6541 .debug_info section. */
6543 static unsigned long
6544 size_of_die (dw_die_ref die
)
6546 unsigned long size
= 0;
6549 size
+= size_of_uleb128 (die
->die_abbrev
);
6550 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
6552 switch (AT_class (a
))
6554 case dw_val_class_addr
:
6555 size
+= DWARF2_ADDR_SIZE
;
6557 case dw_val_class_offset
:
6558 size
+= DWARF_OFFSET_SIZE
;
6560 case dw_val_class_loc
:
6562 unsigned long lsize
= size_of_locs (AT_loc (a
));
6565 size
+= constant_size (lsize
);
6569 case dw_val_class_loc_list
:
6570 size
+= DWARF_OFFSET_SIZE
;
6572 case dw_val_class_range_list
:
6573 size
+= DWARF_OFFSET_SIZE
;
6575 case dw_val_class_const
:
6576 size
+= size_of_sleb128 (AT_int (a
));
6578 case dw_val_class_unsigned_const
:
6579 size
+= constant_size (AT_unsigned (a
));
6581 case dw_val_class_long_long
:
6582 size
+= 1 + 2*HOST_BITS_PER_LONG
/HOST_BITS_PER_CHAR
; /* block */
6584 case dw_val_class_vec
:
6585 size
+= 1 + (a
->dw_attr_val
.v
.val_vec
.length
6586 * a
->dw_attr_val
.v
.val_vec
.elt_size
); /* block */
6588 case dw_val_class_flag
:
6591 case dw_val_class_die_ref
:
6592 if (AT_ref_external (a
))
6593 size
+= DWARF2_ADDR_SIZE
;
6595 size
+= DWARF_OFFSET_SIZE
;
6597 case dw_val_class_fde_ref
:
6598 size
+= DWARF_OFFSET_SIZE
;
6600 case dw_val_class_lbl_id
:
6601 size
+= DWARF2_ADDR_SIZE
;
6603 case dw_val_class_lbl_offset
:
6604 size
+= DWARF_OFFSET_SIZE
;
6606 case dw_val_class_str
:
6607 if (AT_string_form (a
) == DW_FORM_strp
)
6608 size
+= DWARF_OFFSET_SIZE
;
6610 size
+= strlen (a
->dw_attr_val
.v
.val_str
->str
) + 1;
6620 /* Size the debugging information associated with a given DIE. Visits the
6621 DIE's children recursively. Updates the global variable next_die_offset, on
6622 each time through. Uses the current value of next_die_offset to update the
6623 die_offset field in each DIE. */
6626 calc_die_sizes (dw_die_ref die
)
6630 die
->die_offset
= next_die_offset
;
6631 next_die_offset
+= size_of_die (die
);
6633 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6636 if (die
->die_child
!= NULL
)
6637 /* Count the null byte used to terminate sibling lists. */
6638 next_die_offset
+= 1;
6641 /* Set the marks for a die and its children. We do this so
6642 that we know whether or not a reference needs to use FORM_ref_addr; only
6643 DIEs in the same CU will be marked. We used to clear out the offset
6644 and use that as the flag, but ran into ordering problems. */
6647 mark_dies (dw_die_ref die
)
6651 gcc_assert (!die
->die_mark
);
6654 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
6658 /* Clear the marks for a die and its children. */
6661 unmark_dies (dw_die_ref die
)
6665 gcc_assert (die
->die_mark
);
6668 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
6672 /* Clear the marks for a die, its children and referred dies. */
6675 unmark_all_dies (dw_die_ref die
)
6684 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
6685 unmark_all_dies (c
);
6687 for (a
= die
->die_attr
; a
; a
= a
->dw_attr_next
)
6688 if (AT_class (a
) == dw_val_class_die_ref
)
6689 unmark_all_dies (AT_ref (a
));
6692 /* Return the size of the .debug_pubnames table generated for the
6693 compilation unit. */
6695 static unsigned long
6696 size_of_pubnames (void)
6701 size
= DWARF_PUBNAMES_HEADER_SIZE
;
6702 for (i
= 0; i
< pubname_table_in_use
; i
++)
6704 pubname_ref p
= &pubname_table
[i
];
6705 size
+= DWARF_OFFSET_SIZE
+ strlen (p
->name
) + 1;
6708 size
+= DWARF_OFFSET_SIZE
;
6712 /* Return the size of the information in the .debug_aranges section. */
6714 static unsigned long
6715 size_of_aranges (void)
6719 size
= DWARF_ARANGES_HEADER_SIZE
;
6721 /* Count the address/length pair for this compilation unit. */
6722 size
+= 2 * DWARF2_ADDR_SIZE
;
6723 size
+= 2 * DWARF2_ADDR_SIZE
* arange_table_in_use
;
6725 /* Count the two zero words used to terminated the address range table. */
6726 size
+= 2 * DWARF2_ADDR_SIZE
;
6730 /* Select the encoding of an attribute value. */
6732 static enum dwarf_form
6733 value_format (dw_attr_ref a
)
6735 switch (a
->dw_attr_val
.val_class
)
6737 case dw_val_class_addr
:
6738 return DW_FORM_addr
;
6739 case dw_val_class_range_list
:
6740 case dw_val_class_offset
:
6741 switch (DWARF_OFFSET_SIZE
)
6744 return DW_FORM_data4
;
6746 return DW_FORM_data8
;
6750 case dw_val_class_loc_list
:
6751 /* FIXME: Could be DW_FORM_data8, with a > 32 bit size
6752 .debug_loc section */
6753 return DW_FORM_data4
;
6754 case dw_val_class_loc
:
6755 switch (constant_size (size_of_locs (AT_loc (a
))))
6758 return DW_FORM_block1
;
6760 return DW_FORM_block2
;
6764 case dw_val_class_const
:
6765 return DW_FORM_sdata
;
6766 case dw_val_class_unsigned_const
:
6767 switch (constant_size (AT_unsigned (a
)))
6770 return DW_FORM_data1
;
6772 return DW_FORM_data2
;
6774 return DW_FORM_data4
;
6776 return DW_FORM_data8
;
6780 case dw_val_class_long_long
:
6781 return DW_FORM_block1
;
6782 case dw_val_class_vec
:
6783 return DW_FORM_block1
;
6784 case dw_val_class_flag
:
6785 return DW_FORM_flag
;
6786 case dw_val_class_die_ref
:
6787 if (AT_ref_external (a
))
6788 return DW_FORM_ref_addr
;
6791 case dw_val_class_fde_ref
:
6792 return DW_FORM_data
;
6793 case dw_val_class_lbl_id
:
6794 return DW_FORM_addr
;
6795 case dw_val_class_lbl_offset
:
6796 return DW_FORM_data
;
6797 case dw_val_class_str
:
6798 return AT_string_form (a
);
6805 /* Output the encoding of an attribute value. */
6808 output_value_format (dw_attr_ref a
)
6810 enum dwarf_form form
= value_format (a
);
6812 dw2_asm_output_data_uleb128 (form
, "(%s)", dwarf_form_name (form
));
6815 /* Output the .debug_abbrev section which defines the DIE abbreviation
6819 output_abbrev_section (void)
6821 unsigned long abbrev_id
;
6825 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
6827 dw_die_ref abbrev
= abbrev_die_table
[abbrev_id
];
6829 dw2_asm_output_data_uleb128 (abbrev_id
, "(abbrev code)");
6830 dw2_asm_output_data_uleb128 (abbrev
->die_tag
, "(TAG: %s)",
6831 dwarf_tag_name (abbrev
->die_tag
));
6833 if (abbrev
->die_child
!= NULL
)
6834 dw2_asm_output_data (1, DW_children_yes
, "DW_children_yes");
6836 dw2_asm_output_data (1, DW_children_no
, "DW_children_no");
6838 for (a_attr
= abbrev
->die_attr
; a_attr
!= NULL
;
6839 a_attr
= a_attr
->dw_attr_next
)
6841 dw2_asm_output_data_uleb128 (a_attr
->dw_attr
, "(%s)",
6842 dwarf_attr_name (a_attr
->dw_attr
));
6843 output_value_format (a_attr
);
6846 dw2_asm_output_data (1, 0, NULL
);
6847 dw2_asm_output_data (1, 0, NULL
);
6850 /* Terminate the table. */
6851 dw2_asm_output_data (1, 0, NULL
);
6854 /* Output a symbol we can use to refer to this DIE from another CU. */
6857 output_die_symbol (dw_die_ref die
)
6859 char *sym
= die
->die_symbol
;
6864 if (strncmp (sym
, DIE_LABEL_PREFIX
, sizeof (DIE_LABEL_PREFIX
) - 1) == 0)
6865 /* We make these global, not weak; if the target doesn't support
6866 .linkonce, it doesn't support combining the sections, so debugging
6868 targetm
.asm_out
.globalize_label (asm_out_file
, sym
);
6870 ASM_OUTPUT_LABEL (asm_out_file
, sym
);
6873 /* Return a new location list, given the begin and end range, and the
6874 expression. gensym tells us whether to generate a new internal symbol for
6875 this location list node, which is done for the head of the list only. */
6877 static inline dw_loc_list_ref
6878 new_loc_list (dw_loc_descr_ref expr
, const char *begin
, const char *end
,
6879 const char *section
, unsigned int gensym
)
6881 dw_loc_list_ref retlist
= ggc_alloc_cleared (sizeof (dw_loc_list_node
));
6883 retlist
->begin
= begin
;
6885 retlist
->expr
= expr
;
6886 retlist
->section
= section
;
6888 retlist
->ll_symbol
= gen_internal_sym ("LLST");
6893 /* Add a location description expression to a location list. */
6896 add_loc_descr_to_loc_list (dw_loc_list_ref
*list_head
, dw_loc_descr_ref descr
,
6897 const char *begin
, const char *end
,
6898 const char *section
)
6902 /* Find the end of the chain. */
6903 for (d
= list_head
; (*d
) != NULL
; d
= &(*d
)->dw_loc_next
)
6906 /* Add a new location list node to the list. */
6907 *d
= new_loc_list (descr
, begin
, end
, section
, 0);
6911 dwarf2out_switch_text_section (void)
6917 fde
= &fde_table
[fde_table_in_use
- 1];
6918 fde
->dw_fde_switched_sections
= true;
6919 fde
->dw_fde_hot_section_label
= cfun
->hot_section_label
;
6920 fde
->dw_fde_hot_section_end_label
= cfun
->hot_section_end_label
;
6921 fde
->dw_fde_unlikely_section_label
= cfun
->cold_section_label
;
6922 fde
->dw_fde_unlikely_section_end_label
= cfun
->cold_section_end_label
;
6923 have_multiple_function_sections
= true;
6926 /* Output the location list given to us. */
6929 output_loc_list (dw_loc_list_ref list_head
)
6931 dw_loc_list_ref curr
= list_head
;
6933 ASM_OUTPUT_LABEL (asm_out_file
, list_head
->ll_symbol
);
6935 /* Walk the location list, and output each range + expression. */
6936 for (curr
= list_head
; curr
!= NULL
; curr
= curr
->dw_loc_next
)
6939 if (!have_multiple_function_sections
)
6941 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->begin
, curr
->section
,
6942 "Location list begin address (%s)",
6943 list_head
->ll_symbol
);
6944 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->end
, curr
->section
,
6945 "Location list end address (%s)",
6946 list_head
->ll_symbol
);
6950 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->begin
,
6951 "Location list begin address (%s)",
6952 list_head
->ll_symbol
);
6953 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->end
,
6954 "Location list end address (%s)",
6955 list_head
->ll_symbol
);
6957 size
= size_of_locs (curr
->expr
);
6959 /* Output the block length for this list of location operations. */
6960 gcc_assert (size
<= 0xffff);
6961 dw2_asm_output_data (2, size
, "%s", "Location expression size");
6963 output_loc_sequence (curr
->expr
);
6966 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
6967 "Location list terminator begin (%s)",
6968 list_head
->ll_symbol
);
6969 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
6970 "Location list terminator end (%s)",
6971 list_head
->ll_symbol
);
6974 /* Output the DIE and its attributes. Called recursively to generate
6975 the definitions of each child DIE. */
6978 output_die (dw_die_ref die
)
6984 /* If someone in another CU might refer to us, set up a symbol for
6985 them to point to. */
6986 if (die
->die_symbol
)
6987 output_die_symbol (die
);
6989 dw2_asm_output_data_uleb128 (die
->die_abbrev
, "(DIE (0x%lx) %s)",
6990 die
->die_offset
, dwarf_tag_name (die
->die_tag
));
6992 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
6994 const char *name
= dwarf_attr_name (a
->dw_attr
);
6996 switch (AT_class (a
))
6998 case dw_val_class_addr
:
6999 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, AT_addr (a
), "%s", name
);
7002 case dw_val_class_offset
:
7003 dw2_asm_output_data (DWARF_OFFSET_SIZE
, a
->dw_attr_val
.v
.val_offset
,
7007 case dw_val_class_range_list
:
7009 char *p
= strchr (ranges_section_label
, '\0');
7011 sprintf (p
, "+" HOST_WIDE_INT_PRINT_HEX
,
7012 a
->dw_attr_val
.v
.val_offset
);
7013 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, ranges_section_label
,
7019 case dw_val_class_loc
:
7020 size
= size_of_locs (AT_loc (a
));
7022 /* Output the block length for this list of location operations. */
7023 dw2_asm_output_data (constant_size (size
), size
, "%s", name
);
7025 output_loc_sequence (AT_loc (a
));
7028 case dw_val_class_const
:
7029 /* ??? It would be slightly more efficient to use a scheme like is
7030 used for unsigned constants below, but gdb 4.x does not sign
7031 extend. Gdb 5.x does sign extend. */
7032 dw2_asm_output_data_sleb128 (AT_int (a
), "%s", name
);
7035 case dw_val_class_unsigned_const
:
7036 dw2_asm_output_data (constant_size (AT_unsigned (a
)),
7037 AT_unsigned (a
), "%s", name
);
7040 case dw_val_class_long_long
:
7042 unsigned HOST_WIDE_INT first
, second
;
7044 dw2_asm_output_data (1,
7045 2 * HOST_BITS_PER_LONG
/ HOST_BITS_PER_CHAR
,
7048 if (WORDS_BIG_ENDIAN
)
7050 first
= a
->dw_attr_val
.v
.val_long_long
.hi
;
7051 second
= a
->dw_attr_val
.v
.val_long_long
.low
;
7055 first
= a
->dw_attr_val
.v
.val_long_long
.low
;
7056 second
= a
->dw_attr_val
.v
.val_long_long
.hi
;
7059 dw2_asm_output_data (HOST_BITS_PER_LONG
/ HOST_BITS_PER_CHAR
,
7060 first
, "long long constant");
7061 dw2_asm_output_data (HOST_BITS_PER_LONG
/ HOST_BITS_PER_CHAR
,
7066 case dw_val_class_vec
:
7068 unsigned int elt_size
= a
->dw_attr_val
.v
.val_vec
.elt_size
;
7069 unsigned int len
= a
->dw_attr_val
.v
.val_vec
.length
;
7073 dw2_asm_output_data (1, len
* elt_size
, "%s", name
);
7074 if (elt_size
> sizeof (HOST_WIDE_INT
))
7079 for (i
= 0, p
= a
->dw_attr_val
.v
.val_vec
.array
;
7082 dw2_asm_output_data (elt_size
, extract_int (p
, elt_size
),
7083 "fp or vector constant word %u", i
);
7087 case dw_val_class_flag
:
7088 dw2_asm_output_data (1, AT_flag (a
), "%s", name
);
7091 case dw_val_class_loc_list
:
7093 char *sym
= AT_loc_list (a
)->ll_symbol
;
7096 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, sym
, "%s", name
);
7100 case dw_val_class_die_ref
:
7101 if (AT_ref_external (a
))
7103 char *sym
= AT_ref (a
)->die_symbol
;
7106 dw2_asm_output_offset (DWARF2_ADDR_SIZE
, sym
, "%s", name
);
7110 gcc_assert (AT_ref (a
)->die_offset
);
7111 dw2_asm_output_data (DWARF_OFFSET_SIZE
, AT_ref (a
)->die_offset
,
7116 case dw_val_class_fde_ref
:
7120 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_LABEL
,
7121 a
->dw_attr_val
.v
.val_fde_index
* 2);
7122 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, l1
, "%s", name
);
7126 case dw_val_class_lbl_id
:
7127 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, AT_lbl (a
), "%s", name
);
7130 case dw_val_class_lbl_offset
:
7131 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, AT_lbl (a
), "%s", name
);
7134 case dw_val_class_str
:
7135 if (AT_string_form (a
) == DW_FORM_strp
)
7136 dw2_asm_output_offset (DWARF_OFFSET_SIZE
,
7137 a
->dw_attr_val
.v
.val_str
->label
,
7138 "%s: \"%s\"", name
, AT_string (a
));
7140 dw2_asm_output_nstring (AT_string (a
), -1, "%s", name
);
7148 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
7151 /* Add null byte to terminate sibling list. */
7152 if (die
->die_child
!= NULL
)
7153 dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
7157 /* Output the compilation unit that appears at the beginning of the
7158 .debug_info section, and precedes the DIE descriptions. */
7161 output_compilation_unit_header (void)
7163 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
7164 dw2_asm_output_data (4, 0xffffffff,
7165 "Initial length escape value indicating 64-bit DWARF extension");
7166 dw2_asm_output_data (DWARF_OFFSET_SIZE
,
7167 next_die_offset
- DWARF_INITIAL_LENGTH_SIZE
,
7168 "Length of Compilation Unit Info");
7169 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF version number");
7170 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, abbrev_section_label
,
7171 "Offset Into Abbrev. Section");
7172 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Pointer Size (in bytes)");
7175 /* Output the compilation unit DIE and its children. */
7178 output_comp_unit (dw_die_ref die
, int output_if_empty
)
7180 const char *secname
;
7183 /* Unless we are outputting main CU, we may throw away empty ones. */
7184 if (!output_if_empty
&& die
->die_child
== NULL
)
7187 /* Even if there are no children of this DIE, we must output the information
7188 about the compilation unit. Otherwise, on an empty translation unit, we
7189 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
7190 will then complain when examining the file. First mark all the DIEs in
7191 this CU so we know which get local refs. */
7194 build_abbrev_table (die
);
7196 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
7197 next_die_offset
= DWARF_COMPILE_UNIT_HEADER_SIZE
;
7198 calc_die_sizes (die
);
7200 oldsym
= die
->die_symbol
;
7203 tmp
= alloca (strlen (oldsym
) + 24);
7205 sprintf (tmp
, ".gnu.linkonce.wi.%s", oldsym
);
7207 die
->die_symbol
= NULL
;
7208 switch_to_section (get_section (secname
, SECTION_DEBUG
, NULL
));
7211 switch_to_section (debug_info_section
);
7213 /* Output debugging information. */
7214 output_compilation_unit_header ();
7217 /* Leave the marks on the main CU, so we can check them in
7222 die
->die_symbol
= oldsym
;
7226 /* The DWARF2 pubname for a nested thingy looks like "A::f". The
7227 output of lang_hooks.decl_printable_name for C++ looks like
7228 "A::f(int)". Let's drop the argument list, and maybe the scope. */
7231 dwarf2_name (tree decl
, int scope
)
7233 return lang_hooks
.decl_printable_name (decl
, scope
? 1 : 0);
7236 /* Add a new entry to .debug_pubnames if appropriate. */
7239 add_pubname (tree decl
, dw_die_ref die
)
7243 if (! TREE_PUBLIC (decl
))
7246 if (pubname_table_in_use
== pubname_table_allocated
)
7248 pubname_table_allocated
+= PUBNAME_TABLE_INCREMENT
;
7250 = ggc_realloc (pubname_table
,
7251 (pubname_table_allocated
* sizeof (pubname_entry
)));
7252 memset (pubname_table
+ pubname_table_in_use
, 0,
7253 PUBNAME_TABLE_INCREMENT
* sizeof (pubname_entry
));
7256 p
= &pubname_table
[pubname_table_in_use
++];
7258 p
->name
= xstrdup (dwarf2_name (decl
, 1));
7261 /* Output the public names table used to speed up access to externally
7262 visible names. For now, only generate entries for externally
7263 visible procedures. */
7266 output_pubnames (void)
7269 unsigned long pubnames_length
= size_of_pubnames ();
7271 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
7272 dw2_asm_output_data (4, 0xffffffff,
7273 "Initial length escape value indicating 64-bit DWARF extension");
7274 dw2_asm_output_data (DWARF_OFFSET_SIZE
, pubnames_length
,
7275 "Length of Public Names Info");
7276 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF Version");
7277 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
7278 "Offset of Compilation Unit Info");
7279 dw2_asm_output_data (DWARF_OFFSET_SIZE
, next_die_offset
,
7280 "Compilation Unit Length");
7282 for (i
= 0; i
< pubname_table_in_use
; i
++)
7284 pubname_ref pub
= &pubname_table
[i
];
7286 /* We shouldn't see pubnames for DIEs outside of the main CU. */
7287 gcc_assert (pub
->die
->die_mark
);
7289 dw2_asm_output_data (DWARF_OFFSET_SIZE
, pub
->die
->die_offset
,
7292 dw2_asm_output_nstring (pub
->name
, -1, "external name");
7295 dw2_asm_output_data (DWARF_OFFSET_SIZE
, 0, NULL
);
7298 /* Add a new entry to .debug_aranges if appropriate. */
7301 add_arange (tree decl
, dw_die_ref die
)
7303 if (! DECL_SECTION_NAME (decl
))
7306 if (arange_table_in_use
== arange_table_allocated
)
7308 arange_table_allocated
+= ARANGE_TABLE_INCREMENT
;
7309 arange_table
= ggc_realloc (arange_table
,
7310 (arange_table_allocated
7311 * sizeof (dw_die_ref
)));
7312 memset (arange_table
+ arange_table_in_use
, 0,
7313 ARANGE_TABLE_INCREMENT
* sizeof (dw_die_ref
));
7316 arange_table
[arange_table_in_use
++] = die
;
7319 /* Output the information that goes into the .debug_aranges table.
7320 Namely, define the beginning and ending address range of the
7321 text section generated for this compilation unit. */
7324 output_aranges (void)
7327 unsigned long aranges_length
= size_of_aranges ();
7329 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
7330 dw2_asm_output_data (4, 0xffffffff,
7331 "Initial length escape value indicating 64-bit DWARF extension");
7332 dw2_asm_output_data (DWARF_OFFSET_SIZE
, aranges_length
,
7333 "Length of Address Ranges Info");
7334 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF Version");
7335 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
7336 "Offset of Compilation Unit Info");
7337 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Size of Address");
7338 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
7340 /* We need to align to twice the pointer size here. */
7341 if (DWARF_ARANGES_PAD_SIZE
)
7343 /* Pad using a 2 byte words so that padding is correct for any
7345 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
7346 2 * DWARF2_ADDR_SIZE
);
7347 for (i
= 2; i
< (unsigned) DWARF_ARANGES_PAD_SIZE
; i
+= 2)
7348 dw2_asm_output_data (2, 0, NULL
);
7351 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, text_section_label
, "Address");
7352 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, text_end_label
,
7353 text_section_label
, "Length");
7354 if (flag_reorder_blocks_and_partition
)
7356 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, cold_text_section_label
,
7358 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, cold_end_label
,
7359 cold_text_section_label
, "Length");
7362 for (i
= 0; i
< arange_table_in_use
; i
++)
7364 dw_die_ref die
= arange_table
[i
];
7366 /* We shouldn't see aranges for DIEs outside of the main CU. */
7367 gcc_assert (die
->die_mark
);
7369 if (die
->die_tag
== DW_TAG_subprogram
)
7371 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, get_AT_low_pc (die
),
7373 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, get_AT_hi_pc (die
),
7374 get_AT_low_pc (die
), "Length");
7378 /* A static variable; extract the symbol from DW_AT_location.
7379 Note that this code isn't currently hit, as we only emit
7380 aranges for functions (jason 9/23/99). */
7381 dw_attr_ref a
= get_AT (die
, DW_AT_location
);
7382 dw_loc_descr_ref loc
;
7384 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc
);
7387 gcc_assert (loc
->dw_loc_opc
== DW_OP_addr
);
7389 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
,
7390 loc
->dw_loc_oprnd1
.v
.val_addr
, "Address");
7391 dw2_asm_output_data (DWARF2_ADDR_SIZE
,
7392 get_AT_unsigned (die
, DW_AT_byte_size
),
7397 /* Output the terminator words. */
7398 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
7399 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
7402 /* Add a new entry to .debug_ranges. Return the offset at which it
7406 add_ranges (tree block
)
7408 unsigned int in_use
= ranges_table_in_use
;
7410 if (in_use
== ranges_table_allocated
)
7412 ranges_table_allocated
+= RANGES_TABLE_INCREMENT
;
7414 = ggc_realloc (ranges_table
, (ranges_table_allocated
7415 * sizeof (struct dw_ranges_struct
)));
7416 memset (ranges_table
+ ranges_table_in_use
, 0,
7417 RANGES_TABLE_INCREMENT
* sizeof (struct dw_ranges_struct
));
7420 ranges_table
[in_use
].block_num
= (block
? BLOCK_NUMBER (block
) : 0);
7421 ranges_table_in_use
= in_use
+ 1;
7423 return in_use
* 2 * DWARF2_ADDR_SIZE
;
7427 output_ranges (void)
7430 static const char *const start_fmt
= "Offset 0x%x";
7431 const char *fmt
= start_fmt
;
7433 for (i
= 0; i
< ranges_table_in_use
; i
++)
7435 int block_num
= ranges_table
[i
].block_num
;
7439 char blabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
7440 char elabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
7442 ASM_GENERATE_INTERNAL_LABEL (blabel
, BLOCK_BEGIN_LABEL
, block_num
);
7443 ASM_GENERATE_INTERNAL_LABEL (elabel
, BLOCK_END_LABEL
, block_num
);
7445 /* If all code is in the text section, then the compilation
7446 unit base address defaults to DW_AT_low_pc, which is the
7447 base of the text section. */
7448 if (!have_multiple_function_sections
)
7450 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, blabel
,
7452 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
7453 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, elabel
,
7454 text_section_label
, NULL
);
7457 /* Otherwise, we add a DW_AT_entry_pc attribute to force the
7458 compilation unit base address to zero, which allows us to
7459 use absolute addresses, and not worry about whether the
7460 target supports cross-section arithmetic. */
7463 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, blabel
,
7464 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
7465 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, elabel
, NULL
);
7472 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
7473 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
7479 /* Data structure containing information about input files. */
7482 char *path
; /* Complete file name. */
7483 char *fname
; /* File name part. */
7484 int length
; /* Length of entire string. */
7485 int file_idx
; /* Index in input file table. */
7486 int dir_idx
; /* Index in directory table. */
7489 /* Data structure containing information about directories with source
7493 char *path
; /* Path including directory name. */
7494 int length
; /* Path length. */
7495 int prefix
; /* Index of directory entry which is a prefix. */
7496 int count
; /* Number of files in this directory. */
7497 int dir_idx
; /* Index of directory used as base. */
7498 int used
; /* Used in the end? */
7501 /* Callback function for file_info comparison. We sort by looking at
7502 the directories in the path. */
7505 file_info_cmp (const void *p1
, const void *p2
)
7507 const struct file_info
*s1
= p1
;
7508 const struct file_info
*s2
= p2
;
7512 /* Take care of file names without directories. We need to make sure that
7513 we return consistent values to qsort since some will get confused if
7514 we return the same value when identical operands are passed in opposite
7515 orders. So if neither has a directory, return 0 and otherwise return
7516 1 or -1 depending on which one has the directory. */
7517 if ((s1
->path
== s1
->fname
|| s2
->path
== s2
->fname
))
7518 return (s2
->path
== s2
->fname
) - (s1
->path
== s1
->fname
);
7520 cp1
= (unsigned char *) s1
->path
;
7521 cp2
= (unsigned char *) s2
->path
;
7527 /* Reached the end of the first path? If so, handle like above. */
7528 if ((cp1
== (unsigned char *) s1
->fname
)
7529 || (cp2
== (unsigned char *) s2
->fname
))
7530 return ((cp2
== (unsigned char *) s2
->fname
)
7531 - (cp1
== (unsigned char *) s1
->fname
));
7533 /* Character of current path component the same? */
7534 else if (*cp1
!= *cp2
)
7539 /* Output the directory table and the file name table. We try to minimize
7540 the total amount of memory needed. A heuristic is used to avoid large
7541 slowdowns with many input files. */
7544 output_file_names (void)
7546 struct file_info
*files
;
7547 struct dir_info
*dirs
;
7556 /* Handle the case where file_table is empty. */
7557 if (VARRAY_ACTIVE_SIZE (file_table
) <= 1)
7559 dw2_asm_output_data (1, 0, "End directory table");
7560 dw2_asm_output_data (1, 0, "End file name table");
7564 /* Allocate the various arrays we need. */
7565 files
= alloca (VARRAY_ACTIVE_SIZE (file_table
) * sizeof (struct file_info
));
7566 dirs
= alloca (VARRAY_ACTIVE_SIZE (file_table
) * sizeof (struct dir_info
));
7568 /* Sort the file names. */
7569 for (i
= 1; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
7573 /* Skip all leading "./". */
7574 f
= VARRAY_CHAR_PTR (file_table
, i
);
7575 while (f
[0] == '.' && f
[1] == '/')
7578 /* Create a new array entry. */
7580 files
[i
].length
= strlen (f
);
7581 files
[i
].file_idx
= i
;
7583 /* Search for the file name part. */
7584 f
= strrchr (f
, '/');
7585 files
[i
].fname
= f
== NULL
? files
[i
].path
: f
+ 1;
7588 qsort (files
+ 1, VARRAY_ACTIVE_SIZE (file_table
) - 1,
7589 sizeof (files
[0]), file_info_cmp
);
7591 /* Find all the different directories used. */
7592 dirs
[0].path
= files
[1].path
;
7593 dirs
[0].length
= files
[1].fname
- files
[1].path
;
7594 dirs
[0].prefix
= -1;
7596 dirs
[0].dir_idx
= 0;
7598 files
[1].dir_idx
= 0;
7601 for (i
= 2; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
7602 if (files
[i
].fname
- files
[i
].path
== dirs
[ndirs
- 1].length
7603 && memcmp (dirs
[ndirs
- 1].path
, files
[i
].path
,
7604 dirs
[ndirs
- 1].length
) == 0)
7606 /* Same directory as last entry. */
7607 files
[i
].dir_idx
= ndirs
- 1;
7608 ++dirs
[ndirs
- 1].count
;
7614 /* This is a new directory. */
7615 dirs
[ndirs
].path
= files
[i
].path
;
7616 dirs
[ndirs
].length
= files
[i
].fname
- files
[i
].path
;
7617 dirs
[ndirs
].count
= 1;
7618 dirs
[ndirs
].dir_idx
= ndirs
;
7619 dirs
[ndirs
].used
= 0;
7620 files
[i
].dir_idx
= ndirs
;
7622 /* Search for a prefix. */
7623 dirs
[ndirs
].prefix
= -1;
7624 for (j
= 0; j
< ndirs
; j
++)
7625 if (dirs
[j
].length
< dirs
[ndirs
].length
7626 && dirs
[j
].length
> 1
7627 && (dirs
[ndirs
].prefix
== -1
7628 || dirs
[j
].length
> dirs
[dirs
[ndirs
].prefix
].length
)
7629 && memcmp (dirs
[j
].path
, dirs
[ndirs
].path
, dirs
[j
].length
) == 0)
7630 dirs
[ndirs
].prefix
= j
;
7635 /* Now to the actual work. We have to find a subset of the directories which
7636 allow expressing the file name using references to the directory table
7637 with the least amount of characters. We do not do an exhaustive search
7638 where we would have to check out every combination of every single
7639 possible prefix. Instead we use a heuristic which provides nearly optimal
7640 results in most cases and never is much off. */
7641 saved
= alloca (ndirs
* sizeof (int));
7642 savehere
= alloca (ndirs
* sizeof (int));
7644 memset (saved
, '\0', ndirs
* sizeof (saved
[0]));
7645 for (i
= 0; i
< ndirs
; i
++)
7650 /* We can always save some space for the current directory. But this
7651 does not mean it will be enough to justify adding the directory. */
7652 savehere
[i
] = dirs
[i
].length
;
7653 total
= (savehere
[i
] - saved
[i
]) * dirs
[i
].count
;
7655 for (j
= i
+ 1; j
< ndirs
; j
++)
7658 if (saved
[j
] < dirs
[i
].length
)
7660 /* Determine whether the dirs[i] path is a prefix of the
7665 while (k
!= -1 && k
!= (int) i
)
7670 /* Yes it is. We can possibly safe some memory but
7671 writing the filenames in dirs[j] relative to
7673 savehere
[j
] = dirs
[i
].length
;
7674 total
+= (savehere
[j
] - saved
[j
]) * dirs
[j
].count
;
7679 /* Check whether we can safe enough to justify adding the dirs[i]
7681 if (total
> dirs
[i
].length
+ 1)
7683 /* It's worthwhile adding. */
7684 for (j
= i
; j
< ndirs
; j
++)
7685 if (savehere
[j
] > 0)
7687 /* Remember how much we saved for this directory so far. */
7688 saved
[j
] = savehere
[j
];
7690 /* Remember the prefix directory. */
7691 dirs
[j
].dir_idx
= i
;
7696 /* We have to emit them in the order they appear in the file_table array
7697 since the index is used in the debug info generation. To do this
7698 efficiently we generate a back-mapping of the indices first. */
7699 backmap
= alloca (VARRAY_ACTIVE_SIZE (file_table
) * sizeof (int));
7700 for (i
= 1; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
7702 backmap
[files
[i
].file_idx
] = i
;
7704 /* Mark this directory as used. */
7705 dirs
[dirs
[files
[i
].dir_idx
].dir_idx
].used
= 1;
7708 /* That was it. We are ready to emit the information. First emit the
7709 directory name table. We have to make sure the first actually emitted
7710 directory name has index one; zero is reserved for the current working
7711 directory. Make sure we do not confuse these indices with the one for the
7712 constructed table (even though most of the time they are identical). */
7714 idx_offset
= dirs
[0].length
> 0 ? 1 : 0;
7715 for (i
= 1 - idx_offset
; i
< ndirs
; i
++)
7716 if (dirs
[i
].used
!= 0)
7718 dirs
[i
].used
= idx
++;
7719 dw2_asm_output_nstring (dirs
[i
].path
, dirs
[i
].length
- 1,
7720 "Directory Entry: 0x%x", dirs
[i
].used
);
7723 dw2_asm_output_data (1, 0, "End directory table");
7725 /* Correct the index for the current working directory entry if it
7727 if (idx_offset
== 0)
7730 /* Now write all the file names. */
7731 for (i
= 1; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
7733 int file_idx
= backmap
[i
];
7734 int dir_idx
= dirs
[files
[file_idx
].dir_idx
].dir_idx
;
7736 dw2_asm_output_nstring (files
[file_idx
].path
+ dirs
[dir_idx
].length
, -1,
7737 "File Entry: 0x%lx", (unsigned long) i
);
7739 /* Include directory index. */
7740 dw2_asm_output_data_uleb128 (dirs
[dir_idx
].used
, NULL
);
7742 /* Modification time. */
7743 dw2_asm_output_data_uleb128 (0, NULL
);
7745 /* File length in bytes. */
7746 dw2_asm_output_data_uleb128 (0, NULL
);
7749 dw2_asm_output_data (1, 0, "End file name table");
7753 /* Output the source line number correspondence information. This
7754 information goes into the .debug_line section. */
7757 output_line_info (void)
7759 char l1
[20], l2
[20], p1
[20], p2
[20];
7760 char line_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
7761 char prev_line_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
7764 unsigned long lt_index
;
7765 unsigned long current_line
;
7768 unsigned long current_file
;
7769 unsigned long function
;
7771 ASM_GENERATE_INTERNAL_LABEL (l1
, LINE_NUMBER_BEGIN_LABEL
, 0);
7772 ASM_GENERATE_INTERNAL_LABEL (l2
, LINE_NUMBER_END_LABEL
, 0);
7773 ASM_GENERATE_INTERNAL_LABEL (p1
, LN_PROLOG_AS_LABEL
, 0);
7774 ASM_GENERATE_INTERNAL_LABEL (p2
, LN_PROLOG_END_LABEL
, 0);
7776 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
7777 dw2_asm_output_data (4, 0xffffffff,
7778 "Initial length escape value indicating 64-bit DWARF extension");
7779 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, l2
, l1
,
7780 "Length of Source Line Info");
7781 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
7783 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF Version");
7784 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, p2
, p1
, "Prolog Length");
7785 ASM_OUTPUT_LABEL (asm_out_file
, p1
);
7787 /* Define the architecture-dependent minimum instruction length (in
7788 bytes). In this implementation of DWARF, this field is used for
7789 information purposes only. Since GCC generates assembly language,
7790 we have no a priori knowledge of how many instruction bytes are
7791 generated for each source line, and therefore can use only the
7792 DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
7793 commands. Accordingly, we fix this as `1', which is "correct
7794 enough" for all architectures, and don't let the target override. */
7795 dw2_asm_output_data (1, 1,
7796 "Minimum Instruction Length");
7798 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START
,
7799 "Default is_stmt_start flag");
7800 dw2_asm_output_data (1, DWARF_LINE_BASE
,
7801 "Line Base Value (Special Opcodes)");
7802 dw2_asm_output_data (1, DWARF_LINE_RANGE
,
7803 "Line Range Value (Special Opcodes)");
7804 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
,
7805 "Special Opcode Base");
7807 for (opc
= 1; opc
< DWARF_LINE_OPCODE_BASE
; opc
++)
7811 case DW_LNS_advance_pc
:
7812 case DW_LNS_advance_line
:
7813 case DW_LNS_set_file
:
7814 case DW_LNS_set_column
:
7815 case DW_LNS_fixed_advance_pc
:
7823 dw2_asm_output_data (1, n_op_args
, "opcode: 0x%x has %d args",
7827 /* Write out the information about the files we use. */
7828 output_file_names ();
7829 ASM_OUTPUT_LABEL (asm_out_file
, p2
);
7831 /* We used to set the address register to the first location in the text
7832 section here, but that didn't accomplish anything since we already
7833 have a line note for the opening brace of the first function. */
7835 /* Generate the line number to PC correspondence table, encoded as
7836 a series of state machine operations. */
7840 if (cfun
&& in_cold_section_p
)
7841 strcpy (prev_line_label
, cfun
->cold_section_label
);
7843 strcpy (prev_line_label
, text_section_label
);
7844 for (lt_index
= 1; lt_index
< line_info_table_in_use
; ++lt_index
)
7846 dw_line_info_ref line_info
= &line_info_table
[lt_index
];
7849 /* Disable this optimization for now; GDB wants to see two line notes
7850 at the beginning of a function so it can find the end of the
7853 /* Don't emit anything for redundant notes. Just updating the
7854 address doesn't accomplish anything, because we already assume
7855 that anything after the last address is this line. */
7856 if (line_info
->dw_line_num
== current_line
7857 && line_info
->dw_file_num
== current_file
)
7861 /* Emit debug info for the address of the current line.
7863 Unfortunately, we have little choice here currently, and must always
7864 use the most general form. GCC does not know the address delta
7865 itself, so we can't use DW_LNS_advance_pc. Many ports do have length
7866 attributes which will give an upper bound on the address range. We
7867 could perhaps use length attributes to determine when it is safe to
7868 use DW_LNS_fixed_advance_pc. */
7870 ASM_GENERATE_INTERNAL_LABEL (line_label
, LINE_CODE_LABEL
, lt_index
);
7873 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
7874 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
7875 "DW_LNS_fixed_advance_pc");
7876 dw2_asm_output_delta (2, line_label
, prev_line_label
, NULL
);
7880 /* This can handle any delta. This takes
7881 4+DWARF2_ADDR_SIZE bytes. */
7882 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7883 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
7884 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
7885 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
7888 strcpy (prev_line_label
, line_label
);
7890 /* Emit debug info for the source file of the current line, if
7891 different from the previous line. */
7892 if (line_info
->dw_file_num
!= current_file
)
7894 current_file
= line_info
->dw_file_num
;
7895 dw2_asm_output_data (1, DW_LNS_set_file
, "DW_LNS_set_file");
7896 dw2_asm_output_data_uleb128 (current_file
, "(\"%s\")",
7897 VARRAY_CHAR_PTR (file_table
,
7901 /* Emit debug info for the current line number, choosing the encoding
7902 that uses the least amount of space. */
7903 if (line_info
->dw_line_num
!= current_line
)
7905 line_offset
= line_info
->dw_line_num
- current_line
;
7906 line_delta
= line_offset
- DWARF_LINE_BASE
;
7907 current_line
= line_info
->dw_line_num
;
7908 if (line_delta
>= 0 && line_delta
< (DWARF_LINE_RANGE
- 1))
7909 /* This can handle deltas from -10 to 234, using the current
7910 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
7912 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
+ line_delta
,
7913 "line %lu", current_line
);
7916 /* This can handle any delta. This takes at least 4 bytes,
7917 depending on the value being encoded. */
7918 dw2_asm_output_data (1, DW_LNS_advance_line
,
7919 "advance to line %lu", current_line
);
7920 dw2_asm_output_data_sleb128 (line_offset
, NULL
);
7921 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
7925 /* We still need to start a new row, so output a copy insn. */
7926 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
7929 /* Emit debug info for the address of the end of the function. */
7932 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
7933 "DW_LNS_fixed_advance_pc");
7934 dw2_asm_output_delta (2, text_end_label
, prev_line_label
, NULL
);
7938 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7939 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
7940 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
7941 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, text_end_label
, NULL
);
7944 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7945 dw2_asm_output_data_uleb128 (1, NULL
);
7946 dw2_asm_output_data (1, DW_LNE_end_sequence
, NULL
);
7951 for (lt_index
= 0; lt_index
< separate_line_info_table_in_use
;)
7953 dw_separate_line_info_ref line_info
7954 = &separate_line_info_table
[lt_index
];
7957 /* Don't emit anything for redundant notes. */
7958 if (line_info
->dw_line_num
== current_line
7959 && line_info
->dw_file_num
== current_file
7960 && line_info
->function
== function
)
7964 /* Emit debug info for the address of the current line. If this is
7965 a new function, or the first line of a function, then we need
7966 to handle it differently. */
7967 ASM_GENERATE_INTERNAL_LABEL (line_label
, SEPARATE_LINE_CODE_LABEL
,
7969 if (function
!= line_info
->function
)
7971 function
= line_info
->function
;
7973 /* Set the address register to the first line in the function. */
7974 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7975 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
7976 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
7977 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
7981 /* ??? See the DW_LNS_advance_pc comment above. */
7984 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
7985 "DW_LNS_fixed_advance_pc");
7986 dw2_asm_output_delta (2, line_label
, prev_line_label
, NULL
);
7990 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7991 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
7992 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
7993 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
7997 strcpy (prev_line_label
, line_label
);
7999 /* Emit debug info for the source file of the current line, if
8000 different from the previous line. */
8001 if (line_info
->dw_file_num
!= current_file
)
8003 current_file
= line_info
->dw_file_num
;
8004 dw2_asm_output_data (1, DW_LNS_set_file
, "DW_LNS_set_file");
8005 dw2_asm_output_data_uleb128 (current_file
, "(\"%s\")",
8006 VARRAY_CHAR_PTR (file_table
,
8010 /* Emit debug info for the current line number, choosing the encoding
8011 that uses the least amount of space. */
8012 if (line_info
->dw_line_num
!= current_line
)
8014 line_offset
= line_info
->dw_line_num
- current_line
;
8015 line_delta
= line_offset
- DWARF_LINE_BASE
;
8016 current_line
= line_info
->dw_line_num
;
8017 if (line_delta
>= 0 && line_delta
< (DWARF_LINE_RANGE
- 1))
8018 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
+ line_delta
,
8019 "line %lu", current_line
);
8022 dw2_asm_output_data (1, DW_LNS_advance_line
,
8023 "advance to line %lu", current_line
);
8024 dw2_asm_output_data_sleb128 (line_offset
, NULL
);
8025 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
8029 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
8037 /* If we're done with a function, end its sequence. */
8038 if (lt_index
== separate_line_info_table_in_use
8039 || separate_line_info_table
[lt_index
].function
!= function
)
8044 /* Emit debug info for the address of the end of the function. */
8045 ASM_GENERATE_INTERNAL_LABEL (line_label
, FUNC_END_LABEL
, function
);
8048 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
8049 "DW_LNS_fixed_advance_pc");
8050 dw2_asm_output_delta (2, line_label
, prev_line_label
, NULL
);
8054 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
8055 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
8056 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
8057 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
8060 /* Output the marker for the end of this sequence. */
8061 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
8062 dw2_asm_output_data_uleb128 (1, NULL
);
8063 dw2_asm_output_data (1, DW_LNE_end_sequence
, NULL
);
8067 /* Output the marker for the end of the line number info. */
8068 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
8071 /* Given a pointer to a tree node for some base type, return a pointer to
8072 a DIE that describes the given type.
8074 This routine must only be called for GCC type nodes that correspond to
8075 Dwarf base (fundamental) types. */
8078 base_type_die (tree type
)
8080 dw_die_ref base_type_result
;
8081 const char *type_name
;
8082 enum dwarf_type encoding
;
8083 tree name
= TYPE_NAME (type
);
8085 if (TREE_CODE (type
) == ERROR_MARK
|| TREE_CODE (type
) == VOID_TYPE
)
8090 if (TREE_CODE (name
) == TYPE_DECL
)
8091 name
= DECL_NAME (name
);
8093 type_name
= IDENTIFIER_POINTER (name
);
8096 type_name
= "__unknown__";
8098 switch (TREE_CODE (type
))
8101 /* Carefully distinguish the C character types, without messing
8102 up if the language is not C. Note that we check only for the names
8103 that contain spaces; other names might occur by coincidence in other
8105 if (! (TYPE_PRECISION (type
) == CHAR_TYPE_SIZE
8106 && (TYPE_MAIN_VARIANT (type
) == char_type_node
8107 || ! strcmp (type_name
, "signed char")
8108 || ! strcmp (type_name
, "unsigned char"))))
8110 if (TYPE_UNSIGNED (type
))
8111 encoding
= DW_ATE_unsigned
;
8113 encoding
= DW_ATE_signed
;
8116 /* else fall through. */
8119 /* GNU Pascal/Ada CHAR type. Not used in C. */
8120 if (TYPE_UNSIGNED (type
))
8121 encoding
= DW_ATE_unsigned_char
;
8123 encoding
= DW_ATE_signed_char
;
8127 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type
)))
8128 encoding
= DW_ATE_decimal_float
;
8130 encoding
= DW_ATE_float
;
8133 /* Dwarf2 doesn't know anything about complex ints, so use
8134 a user defined type for it. */
8136 if (TREE_CODE (TREE_TYPE (type
)) == REAL_TYPE
)
8137 encoding
= DW_ATE_complex_float
;
8139 encoding
= DW_ATE_lo_user
;
8143 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
8144 encoding
= DW_ATE_boolean
;
8148 /* No other TREE_CODEs are Dwarf fundamental types. */
8152 base_type_result
= new_die (DW_TAG_base_type
, comp_unit_die
, type
);
8153 if (demangle_name_func
)
8154 type_name
= (*demangle_name_func
) (type_name
);
8156 add_AT_string (base_type_result
, DW_AT_name
, type_name
);
8157 add_AT_unsigned (base_type_result
, DW_AT_byte_size
,
8158 int_size_in_bytes (type
));
8159 add_AT_unsigned (base_type_result
, DW_AT_encoding
, encoding
);
8161 return base_type_result
;
8164 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
8165 the Dwarf "root" type for the given input type. The Dwarf "root" type of
8166 a given type is generally the same as the given type, except that if the
8167 given type is a pointer or reference type, then the root type of the given
8168 type is the root type of the "basis" type for the pointer or reference
8169 type. (This definition of the "root" type is recursive.) Also, the root
8170 type of a `const' qualified type or a `volatile' qualified type is the
8171 root type of the given type without the qualifiers. */
8174 root_type (tree type
)
8176 if (TREE_CODE (type
) == ERROR_MARK
)
8177 return error_mark_node
;
8179 switch (TREE_CODE (type
))
8182 return error_mark_node
;
8185 case REFERENCE_TYPE
:
8186 return type_main_variant (root_type (TREE_TYPE (type
)));
8189 return type_main_variant (type
);
8193 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
8194 given input type is a Dwarf "fundamental" type. Otherwise return null. */
8197 is_base_type (tree type
)
8199 switch (TREE_CODE (type
))
8213 case QUAL_UNION_TYPE
:
8218 case REFERENCE_TYPE
:
8231 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
8232 node, return the size in bits for the type if it is a constant, or else
8233 return the alignment for the type if the type's size is not constant, or
8234 else return BITS_PER_WORD if the type actually turns out to be an
8237 static inline unsigned HOST_WIDE_INT
8238 simple_type_size_in_bits (tree type
)
8240 if (TREE_CODE (type
) == ERROR_MARK
)
8241 return BITS_PER_WORD
;
8242 else if (TYPE_SIZE (type
) == NULL_TREE
)
8244 else if (host_integerp (TYPE_SIZE (type
), 1))
8245 return tree_low_cst (TYPE_SIZE (type
), 1);
8247 return TYPE_ALIGN (type
);
8250 /* Return true if the debug information for the given type should be
8251 emitted as a subrange type. */
8254 is_subrange_type (tree type
)
8256 tree subtype
= TREE_TYPE (type
);
8258 /* Subrange types are identified by the fact that they are integer
8259 types, and that they have a subtype which is either an integer type
8260 or an enumeral type. */
8262 if (TREE_CODE (type
) != INTEGER_TYPE
8263 || subtype
== NULL_TREE
)
8266 if (TREE_CODE (subtype
) != INTEGER_TYPE
8267 && TREE_CODE (subtype
) != ENUMERAL_TYPE
)
8270 if (TREE_CODE (type
) == TREE_CODE (subtype
)
8271 && int_size_in_bytes (type
) == int_size_in_bytes (subtype
)
8272 && TYPE_MIN_VALUE (type
) != NULL
8273 && TYPE_MIN_VALUE (subtype
) != NULL
8274 && tree_int_cst_equal (TYPE_MIN_VALUE (type
), TYPE_MIN_VALUE (subtype
))
8275 && TYPE_MAX_VALUE (type
) != NULL
8276 && TYPE_MAX_VALUE (subtype
) != NULL
8277 && tree_int_cst_equal (TYPE_MAX_VALUE (type
), TYPE_MAX_VALUE (subtype
)))
8279 /* The type and its subtype have the same representation. If in
8280 addition the two types also have the same name, then the given
8281 type is not a subrange type, but rather a plain base type. */
8282 /* FIXME: brobecker/2004-03-22:
8283 Sizetype INTEGER_CSTs nodes are canonicalized. It should
8284 therefore be sufficient to check the TYPE_SIZE node pointers
8285 rather than checking the actual size. Unfortunately, we have
8286 found some cases, such as in the Ada "integer" type, where
8287 this is not the case. Until this problem is solved, we need to
8288 keep checking the actual size. */
8289 tree type_name
= TYPE_NAME (type
);
8290 tree subtype_name
= TYPE_NAME (subtype
);
8292 if (type_name
!= NULL
&& TREE_CODE (type_name
) == TYPE_DECL
)
8293 type_name
= DECL_NAME (type_name
);
8295 if (subtype_name
!= NULL
&& TREE_CODE (subtype_name
) == TYPE_DECL
)
8296 subtype_name
= DECL_NAME (subtype_name
);
8298 if (type_name
== subtype_name
)
8305 /* Given a pointer to a tree node for a subrange type, return a pointer
8306 to a DIE that describes the given type. */
8309 subrange_type_die (tree type
, dw_die_ref context_die
)
8311 dw_die_ref subtype_die
;
8312 dw_die_ref subrange_die
;
8313 tree name
= TYPE_NAME (type
);
8314 const HOST_WIDE_INT size_in_bytes
= int_size_in_bytes (type
);
8315 tree subtype
= TREE_TYPE (type
);
8317 if (context_die
== NULL
)
8318 context_die
= comp_unit_die
;
8320 if (TREE_CODE (subtype
) == ENUMERAL_TYPE
)
8321 subtype_die
= gen_enumeration_type_die (subtype
, context_die
);
8323 subtype_die
= base_type_die (subtype
);
8325 subrange_die
= new_die (DW_TAG_subrange_type
, context_die
, type
);
8329 if (TREE_CODE (name
) == TYPE_DECL
)
8330 name
= DECL_NAME (name
);
8331 add_name_attribute (subrange_die
, IDENTIFIER_POINTER (name
));
8334 if (int_size_in_bytes (subtype
) != size_in_bytes
)
8336 /* The size of the subrange type and its base type do not match,
8337 so we need to generate a size attribute for the subrange type. */
8338 add_AT_unsigned (subrange_die
, DW_AT_byte_size
, size_in_bytes
);
8341 if (TYPE_MIN_VALUE (type
) != NULL
)
8342 add_bound_info (subrange_die
, DW_AT_lower_bound
,
8343 TYPE_MIN_VALUE (type
));
8344 if (TYPE_MAX_VALUE (type
) != NULL
)
8345 add_bound_info (subrange_die
, DW_AT_upper_bound
,
8346 TYPE_MAX_VALUE (type
));
8347 add_AT_die_ref (subrange_die
, DW_AT_type
, subtype_die
);
8349 return subrange_die
;
8352 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
8353 entry that chains various modifiers in front of the given type. */
8356 modified_type_die (tree type
, int is_const_type
, int is_volatile_type
,
8357 dw_die_ref context_die
)
8359 enum tree_code code
= TREE_CODE (type
);
8360 dw_die_ref mod_type_die
= NULL
;
8361 dw_die_ref sub_die
= NULL
;
8362 tree item_type
= NULL
;
8364 if (code
!= ERROR_MARK
)
8366 tree qualified_type
;
8368 /* See if we already have the appropriately qualified variant of
8371 = get_qualified_type (type
,
8372 ((is_const_type
? TYPE_QUAL_CONST
: 0)
8374 ? TYPE_QUAL_VOLATILE
: 0)));
8376 /* If we do, then we can just use its DIE, if it exists. */
8379 mod_type_die
= lookup_type_die (qualified_type
);
8381 return mod_type_die
;
8384 /* Handle C typedef types. */
8385 if (qualified_type
&& TYPE_NAME (qualified_type
)
8386 && TREE_CODE (TYPE_NAME (qualified_type
)) == TYPE_DECL
8387 && DECL_ORIGINAL_TYPE (TYPE_NAME (qualified_type
)))
8389 tree type_name
= TYPE_NAME (qualified_type
);
8390 tree dtype
= TREE_TYPE (type_name
);
8392 if (qualified_type
== dtype
)
8394 /* For a named type, use the typedef. */
8395 gen_type_die (qualified_type
, context_die
);
8396 mod_type_die
= lookup_type_die (qualified_type
);
8398 else if (is_const_type
< TYPE_READONLY (dtype
)
8399 || is_volatile_type
< TYPE_VOLATILE (dtype
))
8400 /* cv-unqualified version of named type. Just use the unnamed
8401 type to which it refers. */
8403 = modified_type_die (DECL_ORIGINAL_TYPE (type_name
),
8404 is_const_type
, is_volatile_type
,
8407 /* Else cv-qualified version of named type; fall through. */
8413 else if (is_const_type
)
8415 mod_type_die
= new_die (DW_TAG_const_type
, comp_unit_die
, type
);
8416 sub_die
= modified_type_die (type
, 0, is_volatile_type
, context_die
);
8418 else if (is_volatile_type
)
8420 mod_type_die
= new_die (DW_TAG_volatile_type
, comp_unit_die
, type
);
8421 sub_die
= modified_type_die (type
, 0, 0, context_die
);
8423 else if (code
== POINTER_TYPE
)
8425 mod_type_die
= new_die (DW_TAG_pointer_type
, comp_unit_die
, type
);
8426 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
8427 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
8429 add_AT_unsigned (mod_type_die
, DW_AT_address_class
, 0);
8431 item_type
= TREE_TYPE (type
);
8433 else if (code
== REFERENCE_TYPE
)
8435 mod_type_die
= new_die (DW_TAG_reference_type
, comp_unit_die
, type
);
8436 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
8437 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
8439 add_AT_unsigned (mod_type_die
, DW_AT_address_class
, 0);
8441 item_type
= TREE_TYPE (type
);
8443 else if (is_subrange_type (type
))
8444 mod_type_die
= subrange_type_die (type
, context_die
);
8445 else if (is_base_type (type
))
8446 mod_type_die
= base_type_die (type
);
8449 gen_type_die (type
, context_die
);
8451 /* We have to get the type_main_variant here (and pass that to the
8452 `lookup_type_die' routine) because the ..._TYPE node we have
8453 might simply be a *copy* of some original type node (where the
8454 copy was created to help us keep track of typedef names) and
8455 that copy might have a different TYPE_UID from the original
8457 if (TREE_CODE (type
) != VECTOR_TYPE
)
8458 mod_type_die
= lookup_type_die (type_main_variant (type
));
8460 /* Vectors have the debugging information in the type,
8461 not the main variant. */
8462 mod_type_die
= lookup_type_die (type
);
8463 gcc_assert (mod_type_die
);
8466 /* We want to equate the qualified type to the die below. */
8467 type
= qualified_type
;
8471 equate_type_number_to_die (type
, mod_type_die
);
8473 /* We must do this after the equate_type_number_to_die call, in case
8474 this is a recursive type. This ensures that the modified_type_die
8475 recursion will terminate even if the type is recursive. Recursive
8476 types are possible in Ada. */
8477 sub_die
= modified_type_die (item_type
,
8478 TYPE_READONLY (item_type
),
8479 TYPE_VOLATILE (item_type
),
8482 if (sub_die
!= NULL
)
8483 add_AT_die_ref (mod_type_die
, DW_AT_type
, sub_die
);
8485 return mod_type_die
;
8488 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
8489 an enumerated type. */
8492 type_is_enum (tree type
)
8494 return TREE_CODE (type
) == ENUMERAL_TYPE
;
8497 /* Return the DBX register number described by a given RTL node. */
8500 dbx_reg_number (rtx rtl
)
8502 unsigned regno
= REGNO (rtl
);
8504 gcc_assert (regno
< FIRST_PSEUDO_REGISTER
);
8506 #ifdef LEAF_REG_REMAP
8507 regno
= LEAF_REG_REMAP (regno
);
8510 return DBX_REGISTER_NUMBER (regno
);
8513 /* Optionally add a DW_OP_piece term to a location description expression.
8514 DW_OP_piece is only added if the location description expression already
8515 doesn't end with DW_OP_piece. */
8518 add_loc_descr_op_piece (dw_loc_descr_ref
*list_head
, int size
)
8520 dw_loc_descr_ref loc
;
8522 if (*list_head
!= NULL
)
8524 /* Find the end of the chain. */
8525 for (loc
= *list_head
; loc
->dw_loc_next
!= NULL
; loc
= loc
->dw_loc_next
)
8528 if (loc
->dw_loc_opc
!= DW_OP_piece
)
8529 loc
->dw_loc_next
= new_loc_descr (DW_OP_piece
, size
, 0);
8533 /* Return a location descriptor that designates a machine register or
8534 zero if there is none. */
8536 static dw_loc_descr_ref
8537 reg_loc_descriptor (rtx rtl
)
8541 if (REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
8544 regs
= targetm
.dwarf_register_span (rtl
);
8546 if (hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)] > 1 || regs
)
8547 return multiple_reg_loc_descriptor (rtl
, regs
);
8549 return one_reg_loc_descriptor (dbx_reg_number (rtl
));
8552 /* Return a location descriptor that designates a machine register for
8553 a given hard register number. */
8555 static dw_loc_descr_ref
8556 one_reg_loc_descriptor (unsigned int regno
)
8559 return new_loc_descr (DW_OP_reg0
+ regno
, 0, 0);
8561 return new_loc_descr (DW_OP_regx
, regno
, 0);
8564 /* Given an RTL of a register, return a location descriptor that
8565 designates a value that spans more than one register. */
8567 static dw_loc_descr_ref
8568 multiple_reg_loc_descriptor (rtx rtl
, rtx regs
)
8572 dw_loc_descr_ref loc_result
= NULL
;
8575 #ifdef LEAF_REG_REMAP
8576 reg
= LEAF_REG_REMAP (reg
);
8578 gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg
) == dbx_reg_number (rtl
));
8579 nregs
= hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)];
8581 /* Simple, contiguous registers. */
8582 if (regs
== NULL_RTX
)
8584 size
= GET_MODE_SIZE (GET_MODE (rtl
)) / nregs
;
8591 t
= one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg
));
8592 add_loc_descr (&loc_result
, t
);
8593 add_loc_descr_op_piece (&loc_result
, size
);
8599 /* Now onto stupid register sets in non contiguous locations. */
8601 gcc_assert (GET_CODE (regs
) == PARALLEL
);
8603 size
= GET_MODE_SIZE (GET_MODE (XVECEXP (regs
, 0, 0)));
8606 for (i
= 0; i
< XVECLEN (regs
, 0); ++i
)
8610 t
= one_reg_loc_descriptor (REGNO (XVECEXP (regs
, 0, i
)));
8611 add_loc_descr (&loc_result
, t
);
8612 size
= GET_MODE_SIZE (GET_MODE (XVECEXP (regs
, 0, 0)));
8613 add_loc_descr_op_piece (&loc_result
, size
);
8618 /* Return a location descriptor that designates a constant. */
8620 static dw_loc_descr_ref
8621 int_loc_descriptor (HOST_WIDE_INT i
)
8623 enum dwarf_location_atom op
;
8625 /* Pick the smallest representation of a constant, rather than just
8626 defaulting to the LEB encoding. */
8630 op
= DW_OP_lit0
+ i
;
8633 else if (i
<= 0xffff)
8635 else if (HOST_BITS_PER_WIDE_INT
== 32
8645 else if (i
>= -0x8000)
8647 else if (HOST_BITS_PER_WIDE_INT
== 32
8648 || i
>= -0x80000000)
8654 return new_loc_descr (op
, i
, 0);
8657 /* Return a location descriptor that designates a base+offset location. */
8659 static dw_loc_descr_ref
8660 based_loc_descr (rtx reg
, HOST_WIDE_INT offset
)
8664 /* We only use "frame base" when we're sure we're talking about the
8665 post-prologue local stack frame. We do this by *not* running
8666 register elimination until this point, and recognizing the special
8667 argument pointer and soft frame pointer rtx's. */
8668 if (reg
== arg_pointer_rtx
|| reg
== frame_pointer_rtx
)
8670 rtx elim
= eliminate_regs (reg
, VOIDmode
, NULL_RTX
);
8674 if (GET_CODE (elim
) == PLUS
)
8676 offset
+= INTVAL (XEXP (elim
, 1));
8677 elim
= XEXP (elim
, 0);
8679 gcc_assert (elim
== (frame_pointer_needed
? hard_frame_pointer_rtx
8680 : stack_pointer_rtx
));
8681 offset
+= frame_pointer_cfa_offset
;
8683 return new_loc_descr (DW_OP_fbreg
, offset
, 0);
8687 regno
= dbx_reg_number (reg
);
8689 return new_loc_descr (DW_OP_breg0
+ regno
, offset
, 0);
8691 return new_loc_descr (DW_OP_bregx
, regno
, offset
);
8694 /* Return true if this RTL expression describes a base+offset calculation. */
8697 is_based_loc (rtx rtl
)
8699 return (GET_CODE (rtl
) == PLUS
8700 && ((REG_P (XEXP (rtl
, 0))
8701 && REGNO (XEXP (rtl
, 0)) < FIRST_PSEUDO_REGISTER
8702 && GET_CODE (XEXP (rtl
, 1)) == CONST_INT
)));
8705 /* The following routine converts the RTL for a variable or parameter
8706 (resident in memory) into an equivalent Dwarf representation of a
8707 mechanism for getting the address of that same variable onto the top of a
8708 hypothetical "address evaluation" stack.
8710 When creating memory location descriptors, we are effectively transforming
8711 the RTL for a memory-resident object into its Dwarf postfix expression
8712 equivalent. This routine recursively descends an RTL tree, turning
8713 it into Dwarf postfix code as it goes.
8715 MODE is the mode of the memory reference, needed to handle some
8716 autoincrement addressing modes.
8718 CAN_USE_FBREG is a flag whether we can use DW_AT_frame_base in the
8719 location list for RTL.
8721 Return 0 if we can't represent the location. */
8723 static dw_loc_descr_ref
8724 mem_loc_descriptor (rtx rtl
, enum machine_mode mode
)
8726 dw_loc_descr_ref mem_loc_result
= NULL
;
8727 enum dwarf_location_atom op
;
8729 /* Note that for a dynamically sized array, the location we will generate a
8730 description of here will be the lowest numbered location which is
8731 actually within the array. That's *not* necessarily the same as the
8732 zeroth element of the array. */
8734 rtl
= targetm
.delegitimize_address (rtl
);
8736 switch (GET_CODE (rtl
))
8741 /* POST_INC and POST_DEC can be handled just like a SUBREG. So we
8742 just fall into the SUBREG code. */
8744 /* ... fall through ... */
8747 /* The case of a subreg may arise when we have a local (register)
8748 variable or a formal (register) parameter which doesn't quite fill
8749 up an entire register. For now, just assume that it is
8750 legitimate to make the Dwarf info refer to the whole register which
8751 contains the given subreg. */
8752 rtl
= XEXP (rtl
, 0);
8754 /* ... fall through ... */
8757 /* Whenever a register number forms a part of the description of the
8758 method for calculating the (dynamic) address of a memory resident
8759 object, DWARF rules require the register number be referred to as
8760 a "base register". This distinction is not based in any way upon
8761 what category of register the hardware believes the given register
8762 belongs to. This is strictly DWARF terminology we're dealing with
8763 here. Note that in cases where the location of a memory-resident
8764 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
8765 OP_CONST (0)) the actual DWARF location descriptor that we generate
8766 may just be OP_BASEREG (basereg). This may look deceptively like
8767 the object in question was allocated to a register (rather than in
8768 memory) so DWARF consumers need to be aware of the subtle
8769 distinction between OP_REG and OP_BASEREG. */
8770 if (REGNO (rtl
) < FIRST_PSEUDO_REGISTER
)
8771 mem_loc_result
= based_loc_descr (rtl
, 0);
8775 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (rtl
));
8776 if (mem_loc_result
!= 0)
8777 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_deref
, 0, 0));
8781 rtl
= XEXP (rtl
, 1);
8783 /* ... fall through ... */
8786 /* Some ports can transform a symbol ref into a label ref, because
8787 the symbol ref is too far away and has to be dumped into a constant
8791 /* Alternatively, the symbol in the constant pool might be referenced
8792 by a different symbol. */
8793 if (GET_CODE (rtl
) == SYMBOL_REF
&& CONSTANT_POOL_ADDRESS_P (rtl
))
8796 rtx tmp
= get_pool_constant_mark (rtl
, &marked
);
8798 if (GET_CODE (tmp
) == SYMBOL_REF
)
8801 if (CONSTANT_POOL_ADDRESS_P (tmp
))
8802 get_pool_constant_mark (tmp
, &marked
);
8807 /* If all references to this pool constant were optimized away,
8808 it was not output and thus we can't represent it.
8809 FIXME: might try to use DW_OP_const_value here, though
8810 DW_OP_piece complicates it. */
8815 mem_loc_result
= new_loc_descr (DW_OP_addr
, 0, 0);
8816 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
8817 mem_loc_result
->dw_loc_oprnd1
.v
.val_addr
= rtl
;
8818 VEC_safe_push (rtx
, gc
, used_rtx_array
, rtl
);
8822 /* Extract the PLUS expression nested inside and fall into
8824 rtl
= XEXP (rtl
, 1);
8829 /* Turn these into a PLUS expression and fall into the PLUS code
8831 rtl
= gen_rtx_PLUS (word_mode
, XEXP (rtl
, 0),
8832 GEN_INT (GET_CODE (rtl
) == PRE_INC
8833 ? GET_MODE_UNIT_SIZE (mode
)
8834 : -GET_MODE_UNIT_SIZE (mode
)));
8836 /* ... fall through ... */
8840 if (is_based_loc (rtl
))
8841 mem_loc_result
= based_loc_descr (XEXP (rtl
, 0),
8842 INTVAL (XEXP (rtl
, 1)));
8845 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), mode
);
8846 if (mem_loc_result
== 0)
8849 if (GET_CODE (XEXP (rtl
, 1)) == CONST_INT
8850 && INTVAL (XEXP (rtl
, 1)) >= 0)
8851 add_loc_descr (&mem_loc_result
,
8852 new_loc_descr (DW_OP_plus_uconst
,
8853 INTVAL (XEXP (rtl
, 1)), 0));
8856 add_loc_descr (&mem_loc_result
,
8857 mem_loc_descriptor (XEXP (rtl
, 1), mode
));
8858 add_loc_descr (&mem_loc_result
,
8859 new_loc_descr (DW_OP_plus
, 0, 0));
8864 /* If a pseudo-reg is optimized away, it is possible for it to
8865 be replaced with a MEM containing a multiply or shift. */
8884 dw_loc_descr_ref op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
);
8885 dw_loc_descr_ref op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
);
8887 if (op0
== 0 || op1
== 0)
8890 mem_loc_result
= op0
;
8891 add_loc_descr (&mem_loc_result
, op1
);
8892 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
8897 mem_loc_result
= int_loc_descriptor (INTVAL (rtl
));
8904 return mem_loc_result
;
8907 /* Return a descriptor that describes the concatenation of two locations.
8908 This is typically a complex variable. */
8910 static dw_loc_descr_ref
8911 concat_loc_descriptor (rtx x0
, rtx x1
)
8913 dw_loc_descr_ref cc_loc_result
= NULL
;
8914 dw_loc_descr_ref x0_ref
= loc_descriptor (x0
);
8915 dw_loc_descr_ref x1_ref
= loc_descriptor (x1
);
8917 if (x0_ref
== 0 || x1_ref
== 0)
8920 cc_loc_result
= x0_ref
;
8921 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x0
)));
8923 add_loc_descr (&cc_loc_result
, x1_ref
);
8924 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x1
)));
8926 return cc_loc_result
;
8929 /* Output a proper Dwarf location descriptor for a variable or parameter
8930 which is either allocated in a register or in a memory location. For a
8931 register, we just generate an OP_REG and the register number. For a
8932 memory location we provide a Dwarf postfix expression describing how to
8933 generate the (dynamic) address of the object onto the address stack.
8935 If we don't know how to describe it, return 0. */
8937 static dw_loc_descr_ref
8938 loc_descriptor (rtx rtl
)
8940 dw_loc_descr_ref loc_result
= NULL
;
8942 switch (GET_CODE (rtl
))
8945 /* The case of a subreg may arise when we have a local (register)
8946 variable or a formal (register) parameter which doesn't quite fill
8947 up an entire register. For now, just assume that it is
8948 legitimate to make the Dwarf info refer to the whole register which
8949 contains the given subreg. */
8950 rtl
= SUBREG_REG (rtl
);
8952 /* ... fall through ... */
8955 loc_result
= reg_loc_descriptor (rtl
);
8959 loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (rtl
));
8963 loc_result
= concat_loc_descriptor (XEXP (rtl
, 0), XEXP (rtl
, 1));
8968 if (GET_CODE (XEXP (rtl
, 1)) != PARALLEL
)
8970 loc_result
= loc_descriptor (XEXP (XEXP (rtl
, 1), 0));
8974 rtl
= XEXP (rtl
, 1);
8979 rtvec par_elems
= XVEC (rtl
, 0);
8980 int num_elem
= GET_NUM_ELEM (par_elems
);
8981 enum machine_mode mode
;
8984 /* Create the first one, so we have something to add to. */
8985 loc_result
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, 0), 0));
8986 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, 0), 0));
8987 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
8988 for (i
= 1; i
< num_elem
; i
++)
8990 dw_loc_descr_ref temp
;
8992 temp
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, i
), 0));
8993 add_loc_descr (&loc_result
, temp
);
8994 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, i
), 0));
8995 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
9007 /* Similar, but generate the descriptor from trees instead of rtl. This comes
9008 up particularly with variable length arrays. WANT_ADDRESS is 2 if this is
9009 a top-level invocation of loc_descriptor_from_tree; is 1 if this is not a
9010 top-level invocation, and we require the address of LOC; is 0 if we require
9011 the value of LOC. */
9013 static dw_loc_descr_ref
9014 loc_descriptor_from_tree_1 (tree loc
, int want_address
)
9016 dw_loc_descr_ref ret
, ret1
;
9017 int have_address
= 0;
9018 enum dwarf_location_atom op
;
9020 /* ??? Most of the time we do not take proper care for sign/zero
9021 extending the values properly. Hopefully this won't be a real
9024 switch (TREE_CODE (loc
))
9029 case PLACEHOLDER_EXPR
:
9030 /* This case involves extracting fields from an object to determine the
9031 position of other fields. We don't try to encode this here. The
9032 only user of this is Ada, which encodes the needed information using
9033 the names of types. */
9039 case PREINCREMENT_EXPR
:
9040 case PREDECREMENT_EXPR
:
9041 case POSTINCREMENT_EXPR
:
9042 case POSTDECREMENT_EXPR
:
9043 /* There are no opcodes for these operations. */
9047 /* If we already want an address, there's nothing we can do. */
9051 /* Otherwise, process the argument and look for the address. */
9052 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 1);
9055 if (DECL_THREAD_LOCAL_P (loc
))
9059 /* If this is not defined, we have no way to emit the data. */
9060 if (!targetm
.asm_out
.output_dwarf_dtprel
)
9063 /* The way DW_OP_GNU_push_tls_address is specified, we can only
9064 look up addresses of objects in the current module. */
9065 if (DECL_EXTERNAL (loc
))
9068 rtl
= rtl_for_decl_location (loc
);
9069 if (rtl
== NULL_RTX
)
9074 rtl
= XEXP (rtl
, 0);
9075 if (! CONSTANT_P (rtl
))
9078 ret
= new_loc_descr (INTERNAL_DW_OP_tls_addr
, 0, 0);
9079 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
9080 ret
->dw_loc_oprnd1
.v
.val_addr
= rtl
;
9082 ret1
= new_loc_descr (DW_OP_GNU_push_tls_address
, 0, 0);
9083 add_loc_descr (&ret
, ret1
);
9091 if (DECL_HAS_VALUE_EXPR_P (loc
))
9092 return loc_descriptor_from_tree_1 (DECL_VALUE_EXPR (loc
),
9098 rtx rtl
= rtl_for_decl_location (loc
);
9100 if (rtl
== NULL_RTX
)
9102 else if (GET_CODE (rtl
) == CONST_INT
)
9104 HOST_WIDE_INT val
= INTVAL (rtl
);
9105 if (TYPE_UNSIGNED (TREE_TYPE (loc
)))
9106 val
&= GET_MODE_MASK (DECL_MODE (loc
));
9107 ret
= int_loc_descriptor (val
);
9109 else if (GET_CODE (rtl
) == CONST_STRING
)
9111 else if (CONSTANT_P (rtl
))
9113 ret
= new_loc_descr (DW_OP_addr
, 0, 0);
9114 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
9115 ret
->dw_loc_oprnd1
.v
.val_addr
= rtl
;
9119 enum machine_mode mode
;
9121 /* Certain constructs can only be represented at top-level. */
9122 if (want_address
== 2)
9123 return loc_descriptor (rtl
);
9125 mode
= GET_MODE (rtl
);
9128 rtl
= XEXP (rtl
, 0);
9131 ret
= mem_loc_descriptor (rtl
, mode
);
9137 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9142 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 1), want_address
);
9146 case NON_LVALUE_EXPR
:
9147 case VIEW_CONVERT_EXPR
:
9150 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), want_address
);
9155 case ARRAY_RANGE_REF
:
9158 HOST_WIDE_INT bitsize
, bitpos
, bytepos
;
9159 enum machine_mode mode
;
9161 int unsignedp
= TYPE_UNSIGNED (TREE_TYPE (loc
));
9163 obj
= get_inner_reference (loc
, &bitsize
, &bitpos
, &offset
, &mode
,
9164 &unsignedp
, &volatilep
, false);
9169 ret
= loc_descriptor_from_tree_1 (obj
, 1);
9171 || bitpos
% BITS_PER_UNIT
!= 0 || bitsize
% BITS_PER_UNIT
!= 0)
9174 if (offset
!= NULL_TREE
)
9176 /* Variable offset. */
9177 add_loc_descr (&ret
, loc_descriptor_from_tree_1 (offset
, 0));
9178 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus
, 0, 0));
9181 bytepos
= bitpos
/ BITS_PER_UNIT
;
9183 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus_uconst
, bytepos
, 0));
9184 else if (bytepos
< 0)
9186 add_loc_descr (&ret
, int_loc_descriptor (bytepos
));
9187 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus
, 0, 0));
9195 if (host_integerp (loc
, 0))
9196 ret
= int_loc_descriptor (tree_low_cst (loc
, 0));
9203 /* Get an RTL for this, if something has been emitted. */
9204 rtx rtl
= lookup_constant_def (loc
);
9205 enum machine_mode mode
;
9207 if (!rtl
|| !MEM_P (rtl
))
9209 mode
= GET_MODE (rtl
);
9210 rtl
= XEXP (rtl
, 0);
9211 ret
= mem_loc_descriptor (rtl
, mode
);
9216 case TRUTH_AND_EXPR
:
9217 case TRUTH_ANDIF_EXPR
:
9222 case TRUTH_XOR_EXPR
:
9228 case TRUTH_ORIF_EXPR
:
9233 case FLOOR_DIV_EXPR
:
9235 case ROUND_DIV_EXPR
:
9236 case TRUNC_DIV_EXPR
:
9244 case FLOOR_MOD_EXPR
:
9246 case ROUND_MOD_EXPR
:
9247 case TRUNC_MOD_EXPR
:
9260 op
= (TYPE_UNSIGNED (TREE_TYPE (loc
)) ? DW_OP_shr
: DW_OP_shra
);
9264 if (TREE_CODE (TREE_OPERAND (loc
, 1)) == INTEGER_CST
9265 && host_integerp (TREE_OPERAND (loc
, 1), 0))
9267 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9271 add_loc_descr (&ret
,
9272 new_loc_descr (DW_OP_plus_uconst
,
9273 tree_low_cst (TREE_OPERAND (loc
, 1),
9283 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
9290 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
9297 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
9304 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
9319 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9320 ret1
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 1), 0);
9321 if (ret
== 0 || ret1
== 0)
9324 add_loc_descr (&ret
, ret1
);
9325 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
9328 case TRUTH_NOT_EXPR
:
9342 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9346 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
9352 const enum tree_code code
=
9353 TREE_CODE (loc
) == MIN_EXPR
? GT_EXPR
: LT_EXPR
;
9355 loc
= build3 (COND_EXPR
, TREE_TYPE (loc
),
9356 build2 (code
, integer_type_node
,
9357 TREE_OPERAND (loc
, 0), TREE_OPERAND (loc
, 1)),
9358 TREE_OPERAND (loc
, 1), TREE_OPERAND (loc
, 0));
9361 /* ... fall through ... */
9365 dw_loc_descr_ref lhs
9366 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 1), 0);
9367 dw_loc_descr_ref rhs
9368 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 2), 0);
9369 dw_loc_descr_ref bra_node
, jump_node
, tmp
;
9371 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9372 if (ret
== 0 || lhs
== 0 || rhs
== 0)
9375 bra_node
= new_loc_descr (DW_OP_bra
, 0, 0);
9376 add_loc_descr (&ret
, bra_node
);
9378 add_loc_descr (&ret
, rhs
);
9379 jump_node
= new_loc_descr (DW_OP_skip
, 0, 0);
9380 add_loc_descr (&ret
, jump_node
);
9382 add_loc_descr (&ret
, lhs
);
9383 bra_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
9384 bra_node
->dw_loc_oprnd1
.v
.val_loc
= lhs
;
9386 /* ??? Need a node to point the skip at. Use a nop. */
9387 tmp
= new_loc_descr (DW_OP_nop
, 0, 0);
9388 add_loc_descr (&ret
, tmp
);
9389 jump_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
9390 jump_node
->dw_loc_oprnd1
.v
.val_loc
= tmp
;
9394 case FIX_TRUNC_EXPR
:
9396 case FIX_FLOOR_EXPR
:
9397 case FIX_ROUND_EXPR
:
9401 /* Leave front-end specific codes as simply unknown. This comes
9402 up, for instance, with the C STMT_EXPR. */
9403 if ((unsigned int) TREE_CODE (loc
)
9404 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE
)
9407 #ifdef ENABLE_CHECKING
9408 /* Otherwise this is a generic code; we should just lists all of
9409 these explicitly. We forgot one. */
9412 /* In a release build, we want to degrade gracefully: better to
9413 generate incomplete debugging information than to crash. */
9418 /* Show if we can't fill the request for an address. */
9419 if (want_address
&& !have_address
)
9422 /* If we've got an address and don't want one, dereference. */
9423 if (!want_address
&& have_address
&& ret
)
9425 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (loc
));
9427 if (size
> DWARF2_ADDR_SIZE
|| size
== -1)
9429 else if (size
== DWARF2_ADDR_SIZE
)
9432 op
= DW_OP_deref_size
;
9434 add_loc_descr (&ret
, new_loc_descr (op
, size
, 0));
9440 static inline dw_loc_descr_ref
9441 loc_descriptor_from_tree (tree loc
)
9443 return loc_descriptor_from_tree_1 (loc
, 2);
9446 /* Given a value, round it up to the lowest multiple of `boundary'
9447 which is not less than the value itself. */
9449 static inline HOST_WIDE_INT
9450 ceiling (HOST_WIDE_INT value
, unsigned int boundary
)
9452 return (((value
+ boundary
- 1) / boundary
) * boundary
);
9455 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
9456 pointer to the declared type for the relevant field variable, or return
9457 `integer_type_node' if the given node turns out to be an
9461 field_type (tree decl
)
9465 if (TREE_CODE (decl
) == ERROR_MARK
)
9466 return integer_type_node
;
9468 type
= DECL_BIT_FIELD_TYPE (decl
);
9469 if (type
== NULL_TREE
)
9470 type
= TREE_TYPE (decl
);
9475 /* Given a pointer to a tree node, return the alignment in bits for
9476 it, or else return BITS_PER_WORD if the node actually turns out to
9477 be an ERROR_MARK node. */
9479 static inline unsigned
9480 simple_type_align_in_bits (tree type
)
9482 return (TREE_CODE (type
) != ERROR_MARK
) ? TYPE_ALIGN (type
) : BITS_PER_WORD
;
9485 static inline unsigned
9486 simple_decl_align_in_bits (tree decl
)
9488 return (TREE_CODE (decl
) != ERROR_MARK
) ? DECL_ALIGN (decl
) : BITS_PER_WORD
;
9491 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
9492 lowest addressed byte of the "containing object" for the given FIELD_DECL,
9493 or return 0 if we are unable to determine what that offset is, either
9494 because the argument turns out to be a pointer to an ERROR_MARK node, or
9495 because the offset is actually variable. (We can't handle the latter case
9498 static HOST_WIDE_INT
9499 field_byte_offset (tree decl
)
9501 unsigned int type_align_in_bits
;
9502 unsigned int decl_align_in_bits
;
9503 unsigned HOST_WIDE_INT type_size_in_bits
;
9504 HOST_WIDE_INT object_offset_in_bits
;
9506 tree field_size_tree
;
9507 HOST_WIDE_INT bitpos_int
;
9508 HOST_WIDE_INT deepest_bitpos
;
9509 unsigned HOST_WIDE_INT field_size_in_bits
;
9511 if (TREE_CODE (decl
) == ERROR_MARK
)
9514 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
);
9516 type
= field_type (decl
);
9517 field_size_tree
= DECL_SIZE (decl
);
9519 /* The size could be unspecified if there was an error, or for
9520 a flexible array member. */
9521 if (! field_size_tree
)
9522 field_size_tree
= bitsize_zero_node
;
9524 /* We cannot yet cope with fields whose positions are variable, so
9525 for now, when we see such things, we simply return 0. Someday, we may
9526 be able to handle such cases, but it will be damn difficult. */
9527 if (! host_integerp (bit_position (decl
), 0))
9530 bitpos_int
= int_bit_position (decl
);
9532 /* If we don't know the size of the field, pretend it's a full word. */
9533 if (host_integerp (field_size_tree
, 1))
9534 field_size_in_bits
= tree_low_cst (field_size_tree
, 1);
9536 field_size_in_bits
= BITS_PER_WORD
;
9538 type_size_in_bits
= simple_type_size_in_bits (type
);
9539 type_align_in_bits
= simple_type_align_in_bits (type
);
9540 decl_align_in_bits
= simple_decl_align_in_bits (decl
);
9542 /* The GCC front-end doesn't make any attempt to keep track of the starting
9543 bit offset (relative to the start of the containing structure type) of the
9544 hypothetical "containing object" for a bit-field. Thus, when computing
9545 the byte offset value for the start of the "containing object" of a
9546 bit-field, we must deduce this information on our own. This can be rather
9547 tricky to do in some cases. For example, handling the following structure
9548 type definition when compiling for an i386/i486 target (which only aligns
9549 long long's to 32-bit boundaries) can be very tricky:
9551 struct S { int field1; long long field2:31; };
9553 Fortunately, there is a simple rule-of-thumb which can be used in such
9554 cases. When compiling for an i386/i486, GCC will allocate 8 bytes for the
9555 structure shown above. It decides to do this based upon one simple rule
9556 for bit-field allocation. GCC allocates each "containing object" for each
9557 bit-field at the first (i.e. lowest addressed) legitimate alignment
9558 boundary (based upon the required minimum alignment for the declared type
9559 of the field) which it can possibly use, subject to the condition that
9560 there is still enough available space remaining in the containing object
9561 (when allocated at the selected point) to fully accommodate all of the
9562 bits of the bit-field itself.
9564 This simple rule makes it obvious why GCC allocates 8 bytes for each
9565 object of the structure type shown above. When looking for a place to
9566 allocate the "containing object" for `field2', the compiler simply tries
9567 to allocate a 64-bit "containing object" at each successive 32-bit
9568 boundary (starting at zero) until it finds a place to allocate that 64-
9569 bit field such that at least 31 contiguous (and previously unallocated)
9570 bits remain within that selected 64 bit field. (As it turns out, for the
9571 example above, the compiler finds it is OK to allocate the "containing
9572 object" 64-bit field at bit-offset zero within the structure type.)
9574 Here we attempt to work backwards from the limited set of facts we're
9575 given, and we try to deduce from those facts, where GCC must have believed
9576 that the containing object started (within the structure type). The value
9577 we deduce is then used (by the callers of this routine) to generate
9578 DW_AT_location and DW_AT_bit_offset attributes for fields (both bit-fields
9579 and, in the case of DW_AT_location, regular fields as well). */
9581 /* Figure out the bit-distance from the start of the structure to the
9582 "deepest" bit of the bit-field. */
9583 deepest_bitpos
= bitpos_int
+ field_size_in_bits
;
9585 /* This is the tricky part. Use some fancy footwork to deduce where the
9586 lowest addressed bit of the containing object must be. */
9587 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
9589 /* Round up to type_align by default. This works best for bitfields. */
9590 object_offset_in_bits
+= type_align_in_bits
- 1;
9591 object_offset_in_bits
/= type_align_in_bits
;
9592 object_offset_in_bits
*= type_align_in_bits
;
9594 if (object_offset_in_bits
> bitpos_int
)
9596 /* Sigh, the decl must be packed. */
9597 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
9599 /* Round up to decl_align instead. */
9600 object_offset_in_bits
+= decl_align_in_bits
- 1;
9601 object_offset_in_bits
/= decl_align_in_bits
;
9602 object_offset_in_bits
*= decl_align_in_bits
;
9605 return object_offset_in_bits
/ BITS_PER_UNIT
;
9608 /* The following routines define various Dwarf attributes and any data
9609 associated with them. */
9611 /* Add a location description attribute value to a DIE.
9613 This emits location attributes suitable for whole variables and
9614 whole parameters. Note that the location attributes for struct fields are
9615 generated by the routine `data_member_location_attribute' below. */
9618 add_AT_location_description (dw_die_ref die
, enum dwarf_attribute attr_kind
,
9619 dw_loc_descr_ref descr
)
9622 add_AT_loc (die
, attr_kind
, descr
);
9625 /* Attach the specialized form of location attribute used for data members of
9626 struct and union types. In the special case of a FIELD_DECL node which
9627 represents a bit-field, the "offset" part of this special location
9628 descriptor must indicate the distance in bytes from the lowest-addressed
9629 byte of the containing struct or union type to the lowest-addressed byte of
9630 the "containing object" for the bit-field. (See the `field_byte_offset'
9633 For any given bit-field, the "containing object" is a hypothetical object
9634 (of some integral or enum type) within which the given bit-field lives. The
9635 type of this hypothetical "containing object" is always the same as the
9636 declared type of the individual bit-field itself (for GCC anyway... the
9637 DWARF spec doesn't actually mandate this). Note that it is the size (in
9638 bytes) of the hypothetical "containing object" which will be given in the
9639 DW_AT_byte_size attribute for this bit-field. (See the
9640 `byte_size_attribute' function below.) It is also used when calculating the
9641 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
9645 add_data_member_location_attribute (dw_die_ref die
, tree decl
)
9647 HOST_WIDE_INT offset
;
9648 dw_loc_descr_ref loc_descr
= 0;
9650 if (TREE_CODE (decl
) == TREE_BINFO
)
9652 /* We're working on the TAG_inheritance for a base class. */
9653 if (BINFO_VIRTUAL_P (decl
) && is_cxx ())
9655 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
9656 aren't at a fixed offset from all (sub)objects of the same
9657 type. We need to extract the appropriate offset from our
9658 vtable. The following dwarf expression means
9660 BaseAddr = ObAddr + *((*ObAddr) - Offset)
9662 This is specific to the V3 ABI, of course. */
9664 dw_loc_descr_ref tmp
;
9666 /* Make a copy of the object address. */
9667 tmp
= new_loc_descr (DW_OP_dup
, 0, 0);
9668 add_loc_descr (&loc_descr
, tmp
);
9670 /* Extract the vtable address. */
9671 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
9672 add_loc_descr (&loc_descr
, tmp
);
9674 /* Calculate the address of the offset. */
9675 offset
= tree_low_cst (BINFO_VPTR_FIELD (decl
), 0);
9676 gcc_assert (offset
< 0);
9678 tmp
= int_loc_descriptor (-offset
);
9679 add_loc_descr (&loc_descr
, tmp
);
9680 tmp
= new_loc_descr (DW_OP_minus
, 0, 0);
9681 add_loc_descr (&loc_descr
, tmp
);
9683 /* Extract the offset. */
9684 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
9685 add_loc_descr (&loc_descr
, tmp
);
9687 /* Add it to the object address. */
9688 tmp
= new_loc_descr (DW_OP_plus
, 0, 0);
9689 add_loc_descr (&loc_descr
, tmp
);
9692 offset
= tree_low_cst (BINFO_OFFSET (decl
), 0);
9695 offset
= field_byte_offset (decl
);
9699 enum dwarf_location_atom op
;
9701 /* The DWARF2 standard says that we should assume that the structure
9702 address is already on the stack, so we can specify a structure field
9703 address by using DW_OP_plus_uconst. */
9705 #ifdef MIPS_DEBUGGING_INFO
9706 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
9707 operator correctly. It works only if we leave the offset on the
9711 op
= DW_OP_plus_uconst
;
9714 loc_descr
= new_loc_descr (op
, offset
, 0);
9717 add_AT_loc (die
, DW_AT_data_member_location
, loc_descr
);
9720 /* Writes integer values to dw_vec_const array. */
9723 insert_int (HOST_WIDE_INT val
, unsigned int size
, unsigned char *dest
)
9727 *dest
++ = val
& 0xff;
9733 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
9735 static HOST_WIDE_INT
9736 extract_int (const unsigned char *src
, unsigned int size
)
9738 HOST_WIDE_INT val
= 0;
9744 val
|= *--src
& 0xff;
9750 /* Writes floating point values to dw_vec_const array. */
9753 insert_float (rtx rtl
, unsigned char *array
)
9759 REAL_VALUE_FROM_CONST_DOUBLE (rv
, rtl
);
9760 real_to_target (val
, &rv
, GET_MODE (rtl
));
9762 /* real_to_target puts 32-bit pieces in each long. Pack them. */
9763 for (i
= 0; i
< GET_MODE_SIZE (GET_MODE (rtl
)) / 4; i
++)
9765 insert_int (val
[i
], 4, array
);
9770 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
9771 does not have a "location" either in memory or in a register. These
9772 things can arise in GNU C when a constant is passed as an actual parameter
9773 to an inlined function. They can also arise in C++ where declared
9774 constants do not necessarily get memory "homes". */
9777 add_const_value_attribute (dw_die_ref die
, rtx rtl
)
9779 switch (GET_CODE (rtl
))
9783 HOST_WIDE_INT val
= INTVAL (rtl
);
9786 add_AT_int (die
, DW_AT_const_value
, val
);
9788 add_AT_unsigned (die
, DW_AT_const_value
, (unsigned HOST_WIDE_INT
) val
);
9793 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
9794 floating-point constant. A CONST_DOUBLE is used whenever the
9795 constant requires more than one word in order to be adequately
9796 represented. We output CONST_DOUBLEs as blocks. */
9798 enum machine_mode mode
= GET_MODE (rtl
);
9800 if (SCALAR_FLOAT_MODE_P (mode
))
9802 unsigned int length
= GET_MODE_SIZE (mode
);
9803 unsigned char *array
= ggc_alloc (length
);
9805 insert_float (rtl
, array
);
9806 add_AT_vec (die
, DW_AT_const_value
, length
/ 4, 4, array
);
9810 /* ??? We really should be using HOST_WIDE_INT throughout. */
9811 gcc_assert (HOST_BITS_PER_LONG
== HOST_BITS_PER_WIDE_INT
);
9813 add_AT_long_long (die
, DW_AT_const_value
,
9814 CONST_DOUBLE_HIGH (rtl
), CONST_DOUBLE_LOW (rtl
));
9821 enum machine_mode mode
= GET_MODE (rtl
);
9822 unsigned int elt_size
= GET_MODE_UNIT_SIZE (mode
);
9823 unsigned int length
= CONST_VECTOR_NUNITS (rtl
);
9824 unsigned char *array
= ggc_alloc (length
* elt_size
);
9828 switch (GET_MODE_CLASS (mode
))
9830 case MODE_VECTOR_INT
:
9831 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
9833 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
9834 HOST_WIDE_INT lo
, hi
;
9836 switch (GET_CODE (elt
))
9844 lo
= CONST_DOUBLE_LOW (elt
);
9845 hi
= CONST_DOUBLE_HIGH (elt
);
9852 if (elt_size
<= sizeof (HOST_WIDE_INT
))
9853 insert_int (lo
, elt_size
, p
);
9856 unsigned char *p0
= p
;
9857 unsigned char *p1
= p
+ sizeof (HOST_WIDE_INT
);
9859 gcc_assert (elt_size
== 2 * sizeof (HOST_WIDE_INT
));
9860 if (WORDS_BIG_ENDIAN
)
9865 insert_int (lo
, sizeof (HOST_WIDE_INT
), p0
);
9866 insert_int (hi
, sizeof (HOST_WIDE_INT
), p1
);
9871 case MODE_VECTOR_FLOAT
:
9872 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
9874 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
9875 insert_float (elt
, p
);
9883 add_AT_vec (die
, DW_AT_const_value
, length
, elt_size
, array
);
9888 add_AT_string (die
, DW_AT_const_value
, XSTR (rtl
, 0));
9894 add_AT_addr (die
, DW_AT_const_value
, rtl
);
9895 VEC_safe_push (rtx
, gc
, used_rtx_array
, rtl
);
9899 /* In cases where an inlined instance of an inline function is passed
9900 the address of an `auto' variable (which is local to the caller) we
9901 can get a situation where the DECL_RTL of the artificial local
9902 variable (for the inlining) which acts as a stand-in for the
9903 corresponding formal parameter (of the inline function) will look
9904 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
9905 exactly a compile-time constant expression, but it isn't the address
9906 of the (artificial) local variable either. Rather, it represents the
9907 *value* which the artificial local variable always has during its
9908 lifetime. We currently have no way to represent such quasi-constant
9909 values in Dwarf, so for now we just punt and generate nothing. */
9913 /* No other kinds of rtx should be possible here. */
9919 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
9920 for use in a later add_const_value_attribute call. */
9923 rtl_for_decl_init (tree init
, tree type
)
9927 /* If a variable is initialized with a string constant without embedded
9928 zeros, build CONST_STRING. */
9929 if (TREE_CODE (init
) == STRING_CST
&& TREE_CODE (type
) == ARRAY_TYPE
)
9931 tree enttype
= TREE_TYPE (type
);
9932 tree domain
= TYPE_DOMAIN (type
);
9933 enum machine_mode mode
= TYPE_MODE (enttype
);
9935 if (GET_MODE_CLASS (mode
) == MODE_INT
&& GET_MODE_SIZE (mode
) == 1
9937 && integer_zerop (TYPE_MIN_VALUE (domain
))
9938 && compare_tree_int (TYPE_MAX_VALUE (domain
),
9939 TREE_STRING_LENGTH (init
) - 1) == 0
9940 && ((size_t) TREE_STRING_LENGTH (init
)
9941 == strlen (TREE_STRING_POINTER (init
)) + 1))
9942 rtl
= gen_rtx_CONST_STRING (VOIDmode
,
9943 ggc_strdup (TREE_STRING_POINTER (init
)));
9945 /* If the initializer is something that we know will expand into an
9946 immediate RTL constant, expand it now. Expanding anything else
9947 tends to produce unresolved symbols; see debug/5770 and c++/6381. */
9948 /* Aggregate, vector, and complex types may contain constructors that may
9949 result in code being generated when expand_expr is called, so we can't
9950 handle them here. Integer and float are useful and safe types to handle
9952 else if ((INTEGRAL_TYPE_P (type
) || SCALAR_FLOAT_TYPE_P (type
))
9953 && initializer_constant_valid_p (init
, type
) == null_pointer_node
)
9955 rtl
= expand_expr (init
, NULL_RTX
, VOIDmode
, EXPAND_INITIALIZER
);
9957 /* If expand_expr returns a MEM, it wasn't immediate. */
9958 gcc_assert (!rtl
|| !MEM_P (rtl
));
9964 /* Generate RTL for the variable DECL to represent its location. */
9967 rtl_for_decl_location (tree decl
)
9971 /* Here we have to decide where we are going to say the parameter "lives"
9972 (as far as the debugger is concerned). We only have a couple of
9973 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
9975 DECL_RTL normally indicates where the parameter lives during most of the
9976 activation of the function. If optimization is enabled however, this
9977 could be either NULL or else a pseudo-reg. Both of those cases indicate
9978 that the parameter doesn't really live anywhere (as far as the code
9979 generation parts of GCC are concerned) during most of the function's
9980 activation. That will happen (for example) if the parameter is never
9981 referenced within the function.
9983 We could just generate a location descriptor here for all non-NULL
9984 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
9985 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
9986 where DECL_RTL is NULL or is a pseudo-reg.
9988 Note however that we can only get away with using DECL_INCOMING_RTL as
9989 a backup substitute for DECL_RTL in certain limited cases. In cases
9990 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
9991 we can be sure that the parameter was passed using the same type as it is
9992 declared to have within the function, and that its DECL_INCOMING_RTL
9993 points us to a place where a value of that type is passed.
9995 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
9996 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
9997 because in these cases DECL_INCOMING_RTL points us to a value of some
9998 type which is *different* from the type of the parameter itself. Thus,
9999 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
10000 such cases, the debugger would end up (for example) trying to fetch a
10001 `float' from a place which actually contains the first part of a
10002 `double'. That would lead to really incorrect and confusing
10003 output at debug-time.
10005 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
10006 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
10007 are a couple of exceptions however. On little-endian machines we can
10008 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
10009 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
10010 an integral type that is smaller than TREE_TYPE (decl). These cases arise
10011 when (on a little-endian machine) a non-prototyped function has a
10012 parameter declared to be of type `short' or `char'. In such cases,
10013 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
10014 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
10015 passed `int' value. If the debugger then uses that address to fetch
10016 a `short' or a `char' (on a little-endian machine) the result will be
10017 the correct data, so we allow for such exceptional cases below.
10019 Note that our goal here is to describe the place where the given formal
10020 parameter lives during most of the function's activation (i.e. between the
10021 end of the prologue and the start of the epilogue). We'll do that as best
10022 as we can. Note however that if the given formal parameter is modified
10023 sometime during the execution of the function, then a stack backtrace (at
10024 debug-time) will show the function as having been called with the *new*
10025 value rather than the value which was originally passed in. This happens
10026 rarely enough that it is not a major problem, but it *is* a problem, and
10027 I'd like to fix it.
10029 A future version of dwarf2out.c may generate two additional attributes for
10030 any given DW_TAG_formal_parameter DIE which will describe the "passed
10031 type" and the "passed location" for the given formal parameter in addition
10032 to the attributes we now generate to indicate the "declared type" and the
10033 "active location" for each parameter. This additional set of attributes
10034 could be used by debuggers for stack backtraces. Separately, note that
10035 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
10036 This happens (for example) for inlined-instances of inline function formal
10037 parameters which are never referenced. This really shouldn't be
10038 happening. All PARM_DECL nodes should get valid non-NULL
10039 DECL_INCOMING_RTL values. FIXME. */
10041 /* Use DECL_RTL as the "location" unless we find something better. */
10042 rtl
= DECL_RTL_IF_SET (decl
);
10044 /* When generating abstract instances, ignore everything except
10045 constants, symbols living in memory, and symbols living in
10046 fixed registers. */
10047 if (! reload_completed
)
10050 && (CONSTANT_P (rtl
)
10052 && CONSTANT_P (XEXP (rtl
, 0)))
10054 && TREE_CODE (decl
) == VAR_DECL
10055 && TREE_STATIC (decl
))))
10057 rtl
= targetm
.delegitimize_address (rtl
);
10062 else if (TREE_CODE (decl
) == PARM_DECL
)
10064 if (rtl
== NULL_RTX
|| is_pseudo_reg (rtl
))
10066 tree declared_type
= TREE_TYPE (decl
);
10067 tree passed_type
= DECL_ARG_TYPE (decl
);
10068 enum machine_mode dmode
= TYPE_MODE (declared_type
);
10069 enum machine_mode pmode
= TYPE_MODE (passed_type
);
10071 /* This decl represents a formal parameter which was optimized out.
10072 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
10073 all cases where (rtl == NULL_RTX) just below. */
10074 if (dmode
== pmode
)
10075 rtl
= DECL_INCOMING_RTL (decl
);
10076 else if (SCALAR_INT_MODE_P (dmode
)
10077 && GET_MODE_SIZE (dmode
) <= GET_MODE_SIZE (pmode
)
10078 && DECL_INCOMING_RTL (decl
))
10080 rtx inc
= DECL_INCOMING_RTL (decl
);
10083 else if (MEM_P (inc
))
10085 if (BYTES_BIG_ENDIAN
)
10086 rtl
= adjust_address_nv (inc
, dmode
,
10087 GET_MODE_SIZE (pmode
)
10088 - GET_MODE_SIZE (dmode
));
10095 /* If the parm was passed in registers, but lives on the stack, then
10096 make a big endian correction if the mode of the type of the
10097 parameter is not the same as the mode of the rtl. */
10098 /* ??? This is the same series of checks that are made in dbxout.c before
10099 we reach the big endian correction code there. It isn't clear if all
10100 of these checks are necessary here, but keeping them all is the safe
10102 else if (MEM_P (rtl
)
10103 && XEXP (rtl
, 0) != const0_rtx
10104 && ! CONSTANT_P (XEXP (rtl
, 0))
10105 /* Not passed in memory. */
10106 && !MEM_P (DECL_INCOMING_RTL (decl
))
10107 /* Not passed by invisible reference. */
10108 && (!REG_P (XEXP (rtl
, 0))
10109 || REGNO (XEXP (rtl
, 0)) == HARD_FRAME_POINTER_REGNUM
10110 || REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
10111 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
10112 || REGNO (XEXP (rtl
, 0)) == ARG_POINTER_REGNUM
10115 /* Big endian correction check. */
10116 && BYTES_BIG_ENDIAN
10117 && TYPE_MODE (TREE_TYPE (decl
)) != GET_MODE (rtl
)
10118 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)))
10121 int offset
= (UNITS_PER_WORD
10122 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
))));
10124 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
10125 plus_constant (XEXP (rtl
, 0), offset
));
10128 else if (TREE_CODE (decl
) == VAR_DECL
10131 && GET_MODE (rtl
) != TYPE_MODE (TREE_TYPE (decl
))
10132 && BYTES_BIG_ENDIAN
)
10134 int rsize
= GET_MODE_SIZE (GET_MODE (rtl
));
10135 int dsize
= GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)));
10137 /* If a variable is declared "register" yet is smaller than
10138 a register, then if we store the variable to memory, it
10139 looks like we're storing a register-sized value, when in
10140 fact we are not. We need to adjust the offset of the
10141 storage location to reflect the actual value's bytes,
10142 else gdb will not be able to display it. */
10144 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
10145 plus_constant (XEXP (rtl
, 0), rsize
-dsize
));
10148 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
10149 and will have been substituted directly into all expressions that use it.
10150 C does not have such a concept, but C++ and other languages do. */
10151 if (!rtl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_INITIAL (decl
))
10152 rtl
= rtl_for_decl_init (DECL_INITIAL (decl
), TREE_TYPE (decl
));
10155 rtl
= targetm
.delegitimize_address (rtl
);
10157 /* If we don't look past the constant pool, we risk emitting a
10158 reference to a constant pool entry that isn't referenced from
10159 code, and thus is not emitted. */
10161 rtl
= avoid_constant_pool_reference (rtl
);
10166 /* We need to figure out what section we should use as the base for the
10167 address ranges where a given location is valid.
10168 1. If this particular DECL has a section associated with it, use that.
10169 2. If this function has a section associated with it, use that.
10170 3. Otherwise, use the text section.
10171 XXX: If you split a variable across multiple sections, we won't notice. */
10173 static const char *
10174 secname_for_decl (tree decl
)
10176 const char *secname
;
10178 if (VAR_OR_FUNCTION_DECL_P (decl
) && DECL_SECTION_NAME (decl
))
10180 tree sectree
= DECL_SECTION_NAME (decl
);
10181 secname
= TREE_STRING_POINTER (sectree
);
10183 else if (current_function_decl
&& DECL_SECTION_NAME (current_function_decl
))
10185 tree sectree
= DECL_SECTION_NAME (current_function_decl
);
10186 secname
= TREE_STRING_POINTER (sectree
);
10188 else if (cfun
&& in_cold_section_p
)
10189 secname
= cfun
->cold_section_label
;
10191 secname
= text_section_label
;
10196 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
10197 data attribute for a variable or a parameter. We generate the
10198 DW_AT_const_value attribute only in those cases where the given variable
10199 or parameter does not have a true "location" either in memory or in a
10200 register. This can happen (for example) when a constant is passed as an
10201 actual argument in a call to an inline function. (It's possible that
10202 these things can crop up in other ways also.) Note that one type of
10203 constant value which can be passed into an inlined function is a constant
10204 pointer. This can happen for example if an actual argument in an inlined
10205 function call evaluates to a compile-time constant address. */
10208 add_location_or_const_value_attribute (dw_die_ref die
, tree decl
,
10209 enum dwarf_attribute attr
)
10212 dw_loc_descr_ref descr
;
10213 var_loc_list
*loc_list
;
10214 struct var_loc_node
*node
;
10215 if (TREE_CODE (decl
) == ERROR_MARK
)
10218 gcc_assert (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
10219 || TREE_CODE (decl
) == RESULT_DECL
);
10221 /* See if we possibly have multiple locations for this variable. */
10222 loc_list
= lookup_decl_loc (decl
);
10224 /* If it truly has multiple locations, the first and last node will
10226 if (loc_list
&& loc_list
->first
!= loc_list
->last
)
10228 const char *endname
, *secname
;
10229 dw_loc_list_ref list
;
10232 /* Now that we know what section we are using for a base,
10233 actually construct the list of locations.
10234 The first location information is what is passed to the
10235 function that creates the location list, and the remaining
10236 locations just get added on to that list.
10237 Note that we only know the start address for a location
10238 (IE location changes), so to build the range, we use
10239 the range [current location start, next location start].
10240 This means we have to special case the last node, and generate
10241 a range of [last location start, end of function label]. */
10243 node
= loc_list
->first
;
10244 varloc
= NOTE_VAR_LOCATION (node
->var_loc_note
);
10245 secname
= secname_for_decl (decl
);
10247 list
= new_loc_list (loc_descriptor (varloc
),
10248 node
->label
, node
->next
->label
, secname
, 1);
10251 for (; node
->next
; node
= node
->next
)
10252 if (NOTE_VAR_LOCATION_LOC (node
->var_loc_note
) != NULL_RTX
)
10254 /* The variable has a location between NODE->LABEL and
10255 NODE->NEXT->LABEL. */
10256 varloc
= NOTE_VAR_LOCATION (node
->var_loc_note
);
10257 add_loc_descr_to_loc_list (&list
, loc_descriptor (varloc
),
10258 node
->label
, node
->next
->label
, secname
);
10261 /* If the variable has a location at the last label
10262 it keeps its location until the end of function. */
10263 if (NOTE_VAR_LOCATION_LOC (node
->var_loc_note
) != NULL_RTX
)
10265 char label_id
[MAX_ARTIFICIAL_LABEL_BYTES
];
10267 varloc
= NOTE_VAR_LOCATION (node
->var_loc_note
);
10268 if (!current_function_decl
)
10269 endname
= text_end_label
;
10272 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_END_LABEL
,
10273 current_function_funcdef_no
);
10274 endname
= ggc_strdup (label_id
);
10276 add_loc_descr_to_loc_list (&list
, loc_descriptor (varloc
),
10277 node
->label
, endname
, secname
);
10280 /* Finally, add the location list to the DIE, and we are done. */
10281 add_AT_loc_list (die
, attr
, list
);
10285 /* Try to get some constant RTL for this decl, and use that as the value of
10288 rtl
= rtl_for_decl_location (decl
);
10289 if (rtl
&& (CONSTANT_P (rtl
) || GET_CODE (rtl
) == CONST_STRING
))
10291 add_const_value_attribute (die
, rtl
);
10295 /* If we have tried to generate the location otherwise, and it
10296 didn't work out (we wouldn't be here if we did), and we have a one entry
10297 location list, try generating a location from that. */
10298 if (loc_list
&& loc_list
->first
)
10300 node
= loc_list
->first
;
10301 descr
= loc_descriptor (NOTE_VAR_LOCATION (node
->var_loc_note
));
10304 add_AT_location_description (die
, attr
, descr
);
10309 /* We couldn't get any rtl, so try directly generating the location
10310 description from the tree. */
10311 descr
= loc_descriptor_from_tree (decl
);
10314 add_AT_location_description (die
, attr
, descr
);
10319 /* If we don't have a copy of this variable in memory for some reason (such
10320 as a C++ member constant that doesn't have an out-of-line definition),
10321 we should tell the debugger about the constant value. */
10324 tree_add_const_value_attribute (dw_die_ref var_die
, tree decl
)
10326 tree init
= DECL_INITIAL (decl
);
10327 tree type
= TREE_TYPE (decl
);
10330 if (TREE_READONLY (decl
) && ! TREE_THIS_VOLATILE (decl
) && init
)
10335 rtl
= rtl_for_decl_init (init
, type
);
10337 add_const_value_attribute (var_die
, rtl
);
10340 #ifdef DWARF2_UNWIND_INFO
10341 /* Convert the CFI instructions for the current function into a location
10342 list. This is used for DW_AT_frame_base when we targeting a dwarf2
10343 consumer that does not support the dwarf3 DW_OP_call_frame_cfa. */
10345 static dw_loc_list_ref
10346 convert_cfa_to_loc_list (void)
10349 dw_loc_list_ref list
, *list_tail
;
10351 dw_cfa_location last_cfa
, next_cfa
;
10352 const char *start_label
, *last_label
, *section
;
10354 fde
= &fde_table
[fde_table_in_use
- 1];
10356 section
= secname_for_decl (current_function_decl
);
10360 next_cfa
.reg
= INVALID_REGNUM
;
10361 next_cfa
.offset
= 0;
10362 next_cfa
.indirect
= 0;
10363 next_cfa
.base_offset
= 0;
10365 start_label
= fde
->dw_fde_begin
;
10367 /* ??? Bald assumption that the CIE opcode list does not contain
10368 advance opcodes. */
10369 for (cfi
= cie_cfi_head
; cfi
; cfi
= cfi
->dw_cfi_next
)
10370 lookup_cfa_1 (cfi
, &next_cfa
);
10372 last_cfa
= next_cfa
;
10373 last_label
= start_label
;
10375 for (cfi
= fde
->dw_fde_cfi
; cfi
; cfi
= cfi
->dw_cfi_next
)
10376 switch (cfi
->dw_cfi_opc
)
10378 case DW_CFA_advance_loc1
:
10379 case DW_CFA_advance_loc2
:
10380 case DW_CFA_advance_loc4
:
10381 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
10383 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
), start_label
,
10384 last_label
, section
, list
== NULL
);
10386 list_tail
= &(*list_tail
)->dw_loc_next
;
10387 last_cfa
= next_cfa
;
10388 start_label
= last_label
;
10390 last_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
10393 case DW_CFA_advance_loc
:
10394 /* The encoding is complex enough that we should never emit this. */
10395 case DW_CFA_remember_state
:
10396 case DW_CFA_restore_state
:
10397 /* We don't handle these two in this function. It would be possible
10398 if it were to be required. */
10399 gcc_unreachable ();
10402 lookup_cfa_1 (cfi
, &next_cfa
);
10406 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
10408 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
), start_label
,
10409 last_label
, section
, list
== NULL
);
10410 list_tail
= &(*list_tail
)->dw_loc_next
;
10411 start_label
= last_label
;
10413 *list_tail
= new_loc_list (build_cfa_loc (&next_cfa
), start_label
,
10414 fde
->dw_fde_end
, section
, list
== NULL
);
10419 /* Compute a displacement from the "steady-state frame pointer" to
10420 the CFA, and store it in frame_pointer_cfa_offset. */
10423 compute_frame_pointer_to_cfa_displacement (void)
10425 HOST_WIDE_INT offset
;
10428 #ifdef FRAME_POINTER_CFA_OFFSET
10429 reg
= frame_pointer_rtx
;
10430 offset
= FRAME_POINTER_CFA_OFFSET (current_function_decl
);
10432 reg
= arg_pointer_rtx
;
10433 offset
= ARG_POINTER_CFA_OFFSET (current_function_decl
);
10436 elim
= eliminate_regs (reg
, VOIDmode
, NULL_RTX
);
10437 if (GET_CODE (elim
) == PLUS
)
10439 offset
+= INTVAL (XEXP (elim
, 1));
10440 elim
= XEXP (elim
, 0);
10442 gcc_assert (elim
== (frame_pointer_needed
? hard_frame_pointer_rtx
10443 : stack_pointer_rtx
));
10445 frame_pointer_cfa_offset
= -offset
;
10449 /* Generate a DW_AT_name attribute given some string value to be included as
10450 the value of the attribute. */
10453 add_name_attribute (dw_die_ref die
, const char *name_string
)
10455 if (name_string
!= NULL
&& *name_string
!= 0)
10457 if (demangle_name_func
)
10458 name_string
= (*demangle_name_func
) (name_string
);
10460 add_AT_string (die
, DW_AT_name
, name_string
);
10464 /* Generate a DW_AT_comp_dir attribute for DIE. */
10467 add_comp_dir_attribute (dw_die_ref die
)
10469 const char *wd
= get_src_pwd ();
10471 add_AT_string (die
, DW_AT_comp_dir
, wd
);
10474 /* Given a tree node describing an array bound (either lower or upper) output
10475 a representation for that bound. */
10478 add_bound_info (dw_die_ref subrange_die
, enum dwarf_attribute bound_attr
, tree bound
)
10480 switch (TREE_CODE (bound
))
10485 /* All fixed-bounds are represented by INTEGER_CST nodes. */
10487 if (! host_integerp (bound
, 0)
10488 || (bound_attr
== DW_AT_lower_bound
10489 && (((is_c_family () || is_java ()) && integer_zerop (bound
))
10490 || (is_fortran () && integer_onep (bound
)))))
10491 /* Use the default. */
10494 add_AT_unsigned (subrange_die
, bound_attr
, tree_low_cst (bound
, 0));
10499 case NON_LVALUE_EXPR
:
10500 case VIEW_CONVERT_EXPR
:
10501 add_bound_info (subrange_die
, bound_attr
, TREE_OPERAND (bound
, 0));
10511 dw_die_ref decl_die
= lookup_decl_die (bound
);
10513 /* ??? Can this happen, or should the variable have been bound
10514 first? Probably it can, since I imagine that we try to create
10515 the types of parameters in the order in which they exist in
10516 the list, and won't have created a forward reference to a
10517 later parameter. */
10518 if (decl_die
!= NULL
)
10519 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
10525 /* Otherwise try to create a stack operation procedure to
10526 evaluate the value of the array bound. */
10528 dw_die_ref ctx
, decl_die
;
10529 dw_loc_descr_ref loc
;
10531 loc
= loc_descriptor_from_tree (bound
);
10535 if (current_function_decl
== 0)
10536 ctx
= comp_unit_die
;
10538 ctx
= lookup_decl_die (current_function_decl
);
10540 decl_die
= new_die (DW_TAG_variable
, ctx
, bound
);
10541 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
10542 add_type_attribute (decl_die
, TREE_TYPE (bound
), 1, 0, ctx
);
10543 add_AT_loc (decl_die
, DW_AT_location
, loc
);
10545 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
10551 /* Note that the block of subscript information for an array type also
10552 includes information about the element type of type given array type. */
10555 add_subscript_info (dw_die_ref type_die
, tree type
)
10557 #ifndef MIPS_DEBUGGING_INFO
10558 unsigned dimension_number
;
10561 dw_die_ref subrange_die
;
10563 /* The GNU compilers represent multidimensional array types as sequences of
10564 one dimensional array types whose element types are themselves array
10565 types. Here we squish that down, so that each multidimensional array
10566 type gets only one array_type DIE in the Dwarf debugging info. The draft
10567 Dwarf specification say that we are allowed to do this kind of
10568 compression in C (because there is no difference between an array or
10569 arrays and a multidimensional array in C) but for other source languages
10570 (e.g. Ada) we probably shouldn't do this. */
10572 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
10573 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
10574 We work around this by disabling this feature. See also
10575 gen_array_type_die. */
10576 #ifndef MIPS_DEBUGGING_INFO
10577 for (dimension_number
= 0;
10578 TREE_CODE (type
) == ARRAY_TYPE
;
10579 type
= TREE_TYPE (type
), dimension_number
++)
10582 tree domain
= TYPE_DOMAIN (type
);
10584 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
10585 and (in GNU C only) variable bounds. Handle all three forms
10587 subrange_die
= new_die (DW_TAG_subrange_type
, type_die
, NULL
);
10590 /* We have an array type with specified bounds. */
10591 lower
= TYPE_MIN_VALUE (domain
);
10592 upper
= TYPE_MAX_VALUE (domain
);
10594 /* Define the index type. */
10595 if (TREE_TYPE (domain
))
10597 /* ??? This is probably an Ada unnamed subrange type. Ignore the
10598 TREE_TYPE field. We can't emit debug info for this
10599 because it is an unnamed integral type. */
10600 if (TREE_CODE (domain
) == INTEGER_TYPE
10601 && TYPE_NAME (domain
) == NULL_TREE
10602 && TREE_CODE (TREE_TYPE (domain
)) == INTEGER_TYPE
10603 && TYPE_NAME (TREE_TYPE (domain
)) == NULL_TREE
)
10606 add_type_attribute (subrange_die
, TREE_TYPE (domain
), 0, 0,
10610 /* ??? If upper is NULL, the array has unspecified length,
10611 but it does have a lower bound. This happens with Fortran
10613 Since the debugger is definitely going to need to know N
10614 to produce useful results, go ahead and output the lower
10615 bound solo, and hope the debugger can cope. */
10617 add_bound_info (subrange_die
, DW_AT_lower_bound
, lower
);
10619 add_bound_info (subrange_die
, DW_AT_upper_bound
, upper
);
10622 /* Otherwise we have an array type with an unspecified length. The
10623 DWARF-2 spec does not say how to handle this; let's just leave out the
10629 add_byte_size_attribute (dw_die_ref die
, tree tree_node
)
10633 switch (TREE_CODE (tree_node
))
10638 case ENUMERAL_TYPE
:
10641 case QUAL_UNION_TYPE
:
10642 size
= int_size_in_bytes (tree_node
);
10645 /* For a data member of a struct or union, the DW_AT_byte_size is
10646 generally given as the number of bytes normally allocated for an
10647 object of the *declared* type of the member itself. This is true
10648 even for bit-fields. */
10649 size
= simple_type_size_in_bits (field_type (tree_node
)) / BITS_PER_UNIT
;
10652 gcc_unreachable ();
10655 /* Note that `size' might be -1 when we get to this point. If it is, that
10656 indicates that the byte size of the entity in question is variable. We
10657 have no good way of expressing this fact in Dwarf at the present time,
10658 so just let the -1 pass on through. */
10659 add_AT_unsigned (die
, DW_AT_byte_size
, size
);
10662 /* For a FIELD_DECL node which represents a bit-field, output an attribute
10663 which specifies the distance in bits from the highest order bit of the
10664 "containing object" for the bit-field to the highest order bit of the
10667 For any given bit-field, the "containing object" is a hypothetical object
10668 (of some integral or enum type) within which the given bit-field lives. The
10669 type of this hypothetical "containing object" is always the same as the
10670 declared type of the individual bit-field itself. The determination of the
10671 exact location of the "containing object" for a bit-field is rather
10672 complicated. It's handled by the `field_byte_offset' function (above).
10674 Note that it is the size (in bytes) of the hypothetical "containing object"
10675 which will be given in the DW_AT_byte_size attribute for this bit-field.
10676 (See `byte_size_attribute' above). */
10679 add_bit_offset_attribute (dw_die_ref die
, tree decl
)
10681 HOST_WIDE_INT object_offset_in_bytes
= field_byte_offset (decl
);
10682 tree type
= DECL_BIT_FIELD_TYPE (decl
);
10683 HOST_WIDE_INT bitpos_int
;
10684 HOST_WIDE_INT highest_order_object_bit_offset
;
10685 HOST_WIDE_INT highest_order_field_bit_offset
;
10686 HOST_WIDE_INT
unsigned bit_offset
;
10688 /* Must be a field and a bit field. */
10689 gcc_assert (type
&& TREE_CODE (decl
) == FIELD_DECL
);
10691 /* We can't yet handle bit-fields whose offsets are variable, so if we
10692 encounter such things, just return without generating any attribute
10693 whatsoever. Likewise for variable or too large size. */
10694 if (! host_integerp (bit_position (decl
), 0)
10695 || ! host_integerp (DECL_SIZE (decl
), 1))
10698 bitpos_int
= int_bit_position (decl
);
10700 /* Note that the bit offset is always the distance (in bits) from the
10701 highest-order bit of the "containing object" to the highest-order bit of
10702 the bit-field itself. Since the "high-order end" of any object or field
10703 is different on big-endian and little-endian machines, the computation
10704 below must take account of these differences. */
10705 highest_order_object_bit_offset
= object_offset_in_bytes
* BITS_PER_UNIT
;
10706 highest_order_field_bit_offset
= bitpos_int
;
10708 if (! BYTES_BIG_ENDIAN
)
10710 highest_order_field_bit_offset
+= tree_low_cst (DECL_SIZE (decl
), 0);
10711 highest_order_object_bit_offset
+= simple_type_size_in_bits (type
);
10715 = (! BYTES_BIG_ENDIAN
10716 ? highest_order_object_bit_offset
- highest_order_field_bit_offset
10717 : highest_order_field_bit_offset
- highest_order_object_bit_offset
);
10719 add_AT_unsigned (die
, DW_AT_bit_offset
, bit_offset
);
10722 /* For a FIELD_DECL node which represents a bit field, output an attribute
10723 which specifies the length in bits of the given field. */
10726 add_bit_size_attribute (dw_die_ref die
, tree decl
)
10728 /* Must be a field and a bit field. */
10729 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
10730 && DECL_BIT_FIELD_TYPE (decl
));
10732 if (host_integerp (DECL_SIZE (decl
), 1))
10733 add_AT_unsigned (die
, DW_AT_bit_size
, tree_low_cst (DECL_SIZE (decl
), 1));
10736 /* If the compiled language is ANSI C, then add a 'prototyped'
10737 attribute, if arg types are given for the parameters of a function. */
10740 add_prototyped_attribute (dw_die_ref die
, tree func_type
)
10742 if (get_AT_unsigned (comp_unit_die
, DW_AT_language
) == DW_LANG_C89
10743 && TYPE_ARG_TYPES (func_type
) != NULL
)
10744 add_AT_flag (die
, DW_AT_prototyped
, 1);
10747 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
10748 by looking in either the type declaration or object declaration
10752 add_abstract_origin_attribute (dw_die_ref die
, tree origin
)
10754 dw_die_ref origin_die
= NULL
;
10756 if (TREE_CODE (origin
) != FUNCTION_DECL
)
10758 /* We may have gotten separated from the block for the inlined
10759 function, if we're in an exception handler or some such; make
10760 sure that the abstract function has been written out.
10762 Doing this for nested functions is wrong, however; functions are
10763 distinct units, and our context might not even be inline. */
10767 fn
= TYPE_STUB_DECL (fn
);
10769 fn
= decl_function_context (fn
);
10771 dwarf2out_abstract_function (fn
);
10774 if (DECL_P (origin
))
10775 origin_die
= lookup_decl_die (origin
);
10776 else if (TYPE_P (origin
))
10777 origin_die
= lookup_type_die (origin
);
10779 /* XXX: Functions that are never lowered don't always have correct block
10780 trees (in the case of java, they simply have no block tree, in some other
10781 languages). For these functions, there is nothing we can really do to
10782 output correct debug info for inlined functions in all cases. Rather
10783 than die, we'll just produce deficient debug info now, in that we will
10784 have variables without a proper abstract origin. In the future, when all
10785 functions are lowered, we should re-add a gcc_assert (origin_die)
10789 add_AT_die_ref (die
, DW_AT_abstract_origin
, origin_die
);
10792 /* We do not currently support the pure_virtual attribute. */
10795 add_pure_or_virtual_attribute (dw_die_ref die
, tree func_decl
)
10797 if (DECL_VINDEX (func_decl
))
10799 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
10801 if (host_integerp (DECL_VINDEX (func_decl
), 0))
10802 add_AT_loc (die
, DW_AT_vtable_elem_location
,
10803 new_loc_descr (DW_OP_constu
,
10804 tree_low_cst (DECL_VINDEX (func_decl
), 0),
10807 /* GNU extension: Record what type this method came from originally. */
10808 if (debug_info_level
> DINFO_LEVEL_TERSE
)
10809 add_AT_die_ref (die
, DW_AT_containing_type
,
10810 lookup_type_die (DECL_CONTEXT (func_decl
)));
10814 /* Add source coordinate attributes for the given decl. */
10817 add_src_coords_attributes (dw_die_ref die
, tree decl
)
10819 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
10820 unsigned file_index
= lookup_filename (s
.file
);
10822 add_AT_unsigned (die
, DW_AT_decl_file
, file_index
);
10823 add_AT_unsigned (die
, DW_AT_decl_line
, s
.line
);
10826 /* Add a DW_AT_name attribute and source coordinate attribute for the
10827 given decl, but only if it actually has a name. */
10830 add_name_and_src_coords_attributes (dw_die_ref die
, tree decl
)
10834 decl_name
= DECL_NAME (decl
);
10835 if (decl_name
!= NULL
&& IDENTIFIER_POINTER (decl_name
) != NULL
)
10837 add_name_attribute (die
, dwarf2_name (decl
, 0));
10838 if (! DECL_ARTIFICIAL (decl
))
10839 add_src_coords_attributes (die
, decl
);
10841 if ((TREE_CODE (decl
) == FUNCTION_DECL
|| TREE_CODE (decl
) == VAR_DECL
)
10842 && TREE_PUBLIC (decl
)
10843 && DECL_ASSEMBLER_NAME (decl
) != DECL_NAME (decl
)
10844 && !DECL_ABSTRACT (decl
)
10845 && !(TREE_CODE (decl
) == VAR_DECL
&& DECL_REGISTER (decl
)))
10846 add_AT_string (die
, DW_AT_MIPS_linkage_name
,
10847 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
10850 #ifdef VMS_DEBUGGING_INFO
10851 /* Get the function's name, as described by its RTL. This may be different
10852 from the DECL_NAME name used in the source file. */
10853 if (TREE_CODE (decl
) == FUNCTION_DECL
&& TREE_ASM_WRITTEN (decl
))
10855 add_AT_addr (die
, DW_AT_VMS_rtnbeg_pd_address
,
10856 XEXP (DECL_RTL (decl
), 0));
10857 VEC_safe_push (tree
, gc
, used_rtx_array
, XEXP (DECL_RTL (decl
), 0));
10862 /* Push a new declaration scope. */
10865 push_decl_scope (tree scope
)
10867 VEC_safe_push (tree
, gc
, decl_scope_table
, scope
);
10870 /* Pop a declaration scope. */
10873 pop_decl_scope (void)
10875 VEC_pop (tree
, decl_scope_table
);
10878 /* Return the DIE for the scope that immediately contains this type.
10879 Non-named types get global scope. Named types nested in other
10880 types get their containing scope if it's open, or global scope
10881 otherwise. All other types (i.e. function-local named types) get
10882 the current active scope. */
10885 scope_die_for (tree t
, dw_die_ref context_die
)
10887 dw_die_ref scope_die
= NULL
;
10888 tree containing_scope
;
10891 /* Non-types always go in the current scope. */
10892 gcc_assert (TYPE_P (t
));
10894 containing_scope
= TYPE_CONTEXT (t
);
10896 /* Use the containing namespace if it was passed in (for a declaration). */
10897 if (containing_scope
&& TREE_CODE (containing_scope
) == NAMESPACE_DECL
)
10899 if (context_die
== lookup_decl_die (containing_scope
))
10902 containing_scope
= NULL_TREE
;
10905 /* Ignore function type "scopes" from the C frontend. They mean that
10906 a tagged type is local to a parmlist of a function declarator, but
10907 that isn't useful to DWARF. */
10908 if (containing_scope
&& TREE_CODE (containing_scope
) == FUNCTION_TYPE
)
10909 containing_scope
= NULL_TREE
;
10911 if (containing_scope
== NULL_TREE
)
10912 scope_die
= comp_unit_die
;
10913 else if (TYPE_P (containing_scope
))
10915 /* For types, we can just look up the appropriate DIE. But
10916 first we check to see if we're in the middle of emitting it
10917 so we know where the new DIE should go. */
10918 for (i
= VEC_length (tree
, decl_scope_table
) - 1; i
>= 0; --i
)
10919 if (VEC_index (tree
, decl_scope_table
, i
) == containing_scope
)
10924 gcc_assert (debug_info_level
<= DINFO_LEVEL_TERSE
10925 || TREE_ASM_WRITTEN (containing_scope
));
10927 /* If none of the current dies are suitable, we get file scope. */
10928 scope_die
= comp_unit_die
;
10931 scope_die
= lookup_type_die (containing_scope
);
10934 scope_die
= context_die
;
10939 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
10942 local_scope_p (dw_die_ref context_die
)
10944 for (; context_die
; context_die
= context_die
->die_parent
)
10945 if (context_die
->die_tag
== DW_TAG_inlined_subroutine
10946 || context_die
->die_tag
== DW_TAG_subprogram
)
10952 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
10953 whether or not to treat a DIE in this context as a declaration. */
10956 class_or_namespace_scope_p (dw_die_ref context_die
)
10958 return (context_die
10959 && (context_die
->die_tag
== DW_TAG_structure_type
10960 || context_die
->die_tag
== DW_TAG_union_type
10961 || context_die
->die_tag
== DW_TAG_namespace
));
10964 /* Many forms of DIEs require a "type description" attribute. This
10965 routine locates the proper "type descriptor" die for the type given
10966 by 'type', and adds a DW_AT_type attribute below the given die. */
10969 add_type_attribute (dw_die_ref object_die
, tree type
, int decl_const
,
10970 int decl_volatile
, dw_die_ref context_die
)
10972 enum tree_code code
= TREE_CODE (type
);
10973 dw_die_ref type_die
= NULL
;
10975 /* ??? If this type is an unnamed subrange type of an integral or
10976 floating-point type, use the inner type. This is because we have no
10977 support for unnamed types in base_type_die. This can happen if this is
10978 an Ada subrange type. Correct solution is emit a subrange type die. */
10979 if ((code
== INTEGER_TYPE
|| code
== REAL_TYPE
)
10980 && TREE_TYPE (type
) != 0 && TYPE_NAME (type
) == 0)
10981 type
= TREE_TYPE (type
), code
= TREE_CODE (type
);
10983 if (code
== ERROR_MARK
10984 /* Handle a special case. For functions whose return type is void, we
10985 generate *no* type attribute. (Note that no object may have type
10986 `void', so this only applies to function return types). */
10987 || code
== VOID_TYPE
)
10990 type_die
= modified_type_die (type
,
10991 decl_const
|| TYPE_READONLY (type
),
10992 decl_volatile
|| TYPE_VOLATILE (type
),
10995 if (type_die
!= NULL
)
10996 add_AT_die_ref (object_die
, DW_AT_type
, type_die
);
10999 /* Given an object die, add the calling convention attribute for the
11000 function call type. */
11002 add_calling_convention_attribute (dw_die_ref subr_die
, tree type
)
11004 enum dwarf_calling_convention value
= DW_CC_normal
;
11006 value
= targetm
.dwarf_calling_convention (type
);
11008 /* Only add the attribute if the backend requests it, and
11009 is not DW_CC_normal. */
11010 if (value
&& (value
!= DW_CC_normal
))
11011 add_AT_unsigned (subr_die
, DW_AT_calling_convention
, value
);
11014 /* Given a tree pointer to a struct, class, union, or enum type node, return
11015 a pointer to the (string) tag name for the given type, or zero if the type
11016 was declared without a tag. */
11018 static const char *
11019 type_tag (tree type
)
11021 const char *name
= 0;
11023 if (TYPE_NAME (type
) != 0)
11027 /* Find the IDENTIFIER_NODE for the type name. */
11028 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
11029 t
= TYPE_NAME (type
);
11031 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
11032 a TYPE_DECL node, regardless of whether or not a `typedef' was
11034 else if (TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
11035 && ! DECL_IGNORED_P (TYPE_NAME (type
)))
11036 t
= DECL_NAME (TYPE_NAME (type
));
11038 /* Now get the name as a string, or invent one. */
11040 name
= IDENTIFIER_POINTER (t
);
11043 return (name
== 0 || *name
== '\0') ? 0 : name
;
11046 /* Return the type associated with a data member, make a special check
11047 for bit field types. */
11050 member_declared_type (tree member
)
11052 return (DECL_BIT_FIELD_TYPE (member
)
11053 ? DECL_BIT_FIELD_TYPE (member
) : TREE_TYPE (member
));
11056 /* Get the decl's label, as described by its RTL. This may be different
11057 from the DECL_NAME name used in the source file. */
11060 static const char *
11061 decl_start_label (tree decl
)
11064 const char *fnname
;
11066 x
= DECL_RTL (decl
);
11067 gcc_assert (MEM_P (x
));
11070 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
11072 fnname
= XSTR (x
, 0);
11077 /* These routines generate the internal representation of the DIE's for
11078 the compilation unit. Debugging information is collected by walking
11079 the declaration trees passed in from dwarf2out_decl(). */
11082 gen_array_type_die (tree type
, dw_die_ref context_die
)
11084 dw_die_ref scope_die
= scope_die_for (type
, context_die
);
11085 dw_die_ref array_die
;
11088 /* ??? The SGI dwarf reader fails for array of array of enum types unless
11089 the inner array type comes before the outer array type. Thus we must
11090 call gen_type_die before we call new_die. See below also. */
11091 #ifdef MIPS_DEBUGGING_INFO
11092 gen_type_die (TREE_TYPE (type
), context_die
);
11095 array_die
= new_die (DW_TAG_array_type
, scope_die
, type
);
11096 add_name_attribute (array_die
, type_tag (type
));
11097 equate_type_number_to_die (type
, array_die
);
11099 if (TREE_CODE (type
) == VECTOR_TYPE
)
11101 /* The frontend feeds us a representation for the vector as a struct
11102 containing an array. Pull out the array type. */
11103 type
= TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type
)));
11104 add_AT_flag (array_die
, DW_AT_GNU_vector
, 1);
11108 /* We default the array ordering. SDB will probably do
11109 the right things even if DW_AT_ordering is not present. It's not even
11110 an issue until we start to get into multidimensional arrays anyway. If
11111 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
11112 then we'll have to put the DW_AT_ordering attribute back in. (But if
11113 and when we find out that we need to put these in, we will only do so
11114 for multidimensional arrays. */
11115 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_row_major
);
11118 #ifdef MIPS_DEBUGGING_INFO
11119 /* The SGI compilers handle arrays of unknown bound by setting
11120 AT_declaration and not emitting any subrange DIEs. */
11121 if (! TYPE_DOMAIN (type
))
11122 add_AT_flag (array_die
, DW_AT_declaration
, 1);
11125 add_subscript_info (array_die
, type
);
11127 /* Add representation of the type of the elements of this array type. */
11128 element_type
= TREE_TYPE (type
);
11130 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
11131 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
11132 We work around this by disabling this feature. See also
11133 add_subscript_info. */
11134 #ifndef MIPS_DEBUGGING_INFO
11135 while (TREE_CODE (element_type
) == ARRAY_TYPE
)
11136 element_type
= TREE_TYPE (element_type
);
11138 gen_type_die (element_type
, context_die
);
11141 add_type_attribute (array_die
, element_type
, 0, 0, context_die
);
11146 gen_entry_point_die (tree decl
, dw_die_ref context_die
)
11148 tree origin
= decl_ultimate_origin (decl
);
11149 dw_die_ref decl_die
= new_die (DW_TAG_entry_point
, context_die
, decl
);
11151 if (origin
!= NULL
)
11152 add_abstract_origin_attribute (decl_die
, origin
);
11155 add_name_and_src_coords_attributes (decl_die
, decl
);
11156 add_type_attribute (decl_die
, TREE_TYPE (TREE_TYPE (decl
)),
11157 0, 0, context_die
);
11160 if (DECL_ABSTRACT (decl
))
11161 equate_decl_number_to_die (decl
, decl_die
);
11163 add_AT_lbl_id (decl_die
, DW_AT_low_pc
, decl_start_label (decl
));
11167 /* Walk through the list of incomplete types again, trying once more to
11168 emit full debugging info for them. */
11171 retry_incomplete_types (void)
11175 for (i
= VEC_length (tree
, incomplete_types
) - 1; i
>= 0; i
--)
11176 gen_type_die (VEC_index (tree
, incomplete_types
, i
), comp_unit_die
);
11179 /* Generate a DIE to represent an inlined instance of an enumeration type. */
11182 gen_inlined_enumeration_type_die (tree type
, dw_die_ref context_die
)
11184 dw_die_ref type_die
= new_die (DW_TAG_enumeration_type
, context_die
, type
);
11186 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11187 be incomplete and such types are not marked. */
11188 add_abstract_origin_attribute (type_die
, type
);
11191 /* Generate a DIE to represent an inlined instance of a structure type. */
11194 gen_inlined_structure_type_die (tree type
, dw_die_ref context_die
)
11196 dw_die_ref type_die
= new_die (DW_TAG_structure_type
, context_die
, type
);
11198 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11199 be incomplete and such types are not marked. */
11200 add_abstract_origin_attribute (type_die
, type
);
11203 /* Generate a DIE to represent an inlined instance of a union type. */
11206 gen_inlined_union_type_die (tree type
, dw_die_ref context_die
)
11208 dw_die_ref type_die
= new_die (DW_TAG_union_type
, context_die
, type
);
11210 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11211 be incomplete and such types are not marked. */
11212 add_abstract_origin_attribute (type_die
, type
);
11215 /* Generate a DIE to represent an enumeration type. Note that these DIEs
11216 include all of the information about the enumeration values also. Each
11217 enumerated type name/value is listed as a child of the enumerated type
11221 gen_enumeration_type_die (tree type
, dw_die_ref context_die
)
11223 dw_die_ref type_die
= lookup_type_die (type
);
11225 if (type_die
== NULL
)
11227 type_die
= new_die (DW_TAG_enumeration_type
,
11228 scope_die_for (type
, context_die
), type
);
11229 equate_type_number_to_die (type
, type_die
);
11230 add_name_attribute (type_die
, type_tag (type
));
11232 else if (! TYPE_SIZE (type
))
11235 remove_AT (type_die
, DW_AT_declaration
);
11237 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
11238 given enum type is incomplete, do not generate the DW_AT_byte_size
11239 attribute or the DW_AT_element_list attribute. */
11240 if (TYPE_SIZE (type
))
11244 TREE_ASM_WRITTEN (type
) = 1;
11245 add_byte_size_attribute (type_die
, type
);
11246 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
11247 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
11249 /* If the first reference to this type was as the return type of an
11250 inline function, then it may not have a parent. Fix this now. */
11251 if (type_die
->die_parent
== NULL
)
11252 add_child_die (scope_die_for (type
, context_die
), type_die
);
11254 for (link
= TYPE_VALUES (type
);
11255 link
!= NULL
; link
= TREE_CHAIN (link
))
11257 dw_die_ref enum_die
= new_die (DW_TAG_enumerator
, type_die
, link
);
11258 tree value
= TREE_VALUE (link
);
11260 add_name_attribute (enum_die
,
11261 IDENTIFIER_POINTER (TREE_PURPOSE (link
)));
11263 if (host_integerp (value
, TYPE_UNSIGNED (TREE_TYPE (value
))))
11264 /* DWARF2 does not provide a way of indicating whether or
11265 not enumeration constants are signed or unsigned. GDB
11266 always assumes the values are signed, so we output all
11267 values as if they were signed. That means that
11268 enumeration constants with very large unsigned values
11269 will appear to have negative values in the debugger. */
11270 add_AT_int (enum_die
, DW_AT_const_value
,
11271 tree_low_cst (value
, tree_int_cst_sgn (value
) > 0));
11275 add_AT_flag (type_die
, DW_AT_declaration
, 1);
11280 /* Generate a DIE to represent either a real live formal parameter decl or to
11281 represent just the type of some formal parameter position in some function
11284 Note that this routine is a bit unusual because its argument may be a
11285 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
11286 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
11287 node. If it's the former then this function is being called to output a
11288 DIE to represent a formal parameter object (or some inlining thereof). If
11289 it's the latter, then this function is only being called to output a
11290 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
11291 argument type of some subprogram type. */
11294 gen_formal_parameter_die (tree node
, dw_die_ref context_die
)
11296 dw_die_ref parm_die
11297 = new_die (DW_TAG_formal_parameter
, context_die
, node
);
11300 switch (TREE_CODE_CLASS (TREE_CODE (node
)))
11302 case tcc_declaration
:
11303 origin
= decl_ultimate_origin (node
);
11304 if (origin
!= NULL
)
11305 add_abstract_origin_attribute (parm_die
, origin
);
11308 add_name_and_src_coords_attributes (parm_die
, node
);
11309 add_type_attribute (parm_die
, TREE_TYPE (node
),
11310 TREE_READONLY (node
),
11311 TREE_THIS_VOLATILE (node
),
11313 if (DECL_ARTIFICIAL (node
))
11314 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
11317 equate_decl_number_to_die (node
, parm_die
);
11318 if (! DECL_ABSTRACT (node
))
11319 add_location_or_const_value_attribute (parm_die
, node
, DW_AT_location
);
11324 /* We were called with some kind of a ..._TYPE node. */
11325 add_type_attribute (parm_die
, node
, 0, 0, context_die
);
11329 gcc_unreachable ();
11335 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
11336 at the end of an (ANSI prototyped) formal parameters list. */
11339 gen_unspecified_parameters_die (tree decl_or_type
, dw_die_ref context_die
)
11341 new_die (DW_TAG_unspecified_parameters
, context_die
, decl_or_type
);
11344 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
11345 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
11346 parameters as specified in some function type specification (except for
11347 those which appear as part of a function *definition*). */
11350 gen_formal_types_die (tree function_or_method_type
, dw_die_ref context_die
)
11353 tree formal_type
= NULL
;
11354 tree first_parm_type
;
11357 if (TREE_CODE (function_or_method_type
) == FUNCTION_DECL
)
11359 arg
= DECL_ARGUMENTS (function_or_method_type
);
11360 function_or_method_type
= TREE_TYPE (function_or_method_type
);
11365 first_parm_type
= TYPE_ARG_TYPES (function_or_method_type
);
11367 /* Make our first pass over the list of formal parameter types and output a
11368 DW_TAG_formal_parameter DIE for each one. */
11369 for (link
= first_parm_type
; link
; )
11371 dw_die_ref parm_die
;
11373 formal_type
= TREE_VALUE (link
);
11374 if (formal_type
== void_type_node
)
11377 /* Output a (nameless) DIE to represent the formal parameter itself. */
11378 parm_die
= gen_formal_parameter_die (formal_type
, context_die
);
11379 if ((TREE_CODE (function_or_method_type
) == METHOD_TYPE
11380 && link
== first_parm_type
)
11381 || (arg
&& DECL_ARTIFICIAL (arg
)))
11382 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
11384 link
= TREE_CHAIN (link
);
11386 arg
= TREE_CHAIN (arg
);
11389 /* If this function type has an ellipsis, add a
11390 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
11391 if (formal_type
!= void_type_node
)
11392 gen_unspecified_parameters_die (function_or_method_type
, context_die
);
11394 /* Make our second (and final) pass over the list of formal parameter types
11395 and output DIEs to represent those types (as necessary). */
11396 for (link
= TYPE_ARG_TYPES (function_or_method_type
);
11397 link
&& TREE_VALUE (link
);
11398 link
= TREE_CHAIN (link
))
11399 gen_type_die (TREE_VALUE (link
), context_die
);
11402 /* We want to generate the DIE for TYPE so that we can generate the
11403 die for MEMBER, which has been defined; we will need to refer back
11404 to the member declaration nested within TYPE. If we're trying to
11405 generate minimal debug info for TYPE, processing TYPE won't do the
11406 trick; we need to attach the member declaration by hand. */
11409 gen_type_die_for_member (tree type
, tree member
, dw_die_ref context_die
)
11411 gen_type_die (type
, context_die
);
11413 /* If we're trying to avoid duplicate debug info, we may not have
11414 emitted the member decl for this function. Emit it now. */
11415 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))
11416 && ! lookup_decl_die (member
))
11418 dw_die_ref type_die
;
11419 gcc_assert (!decl_ultimate_origin (member
));
11421 push_decl_scope (type
);
11422 type_die
= lookup_type_die (type
);
11423 if (TREE_CODE (member
) == FUNCTION_DECL
)
11424 gen_subprogram_die (member
, type_die
);
11425 else if (TREE_CODE (member
) == FIELD_DECL
)
11427 /* Ignore the nameless fields that are used to skip bits but handle
11428 C++ anonymous unions and structs. */
11429 if (DECL_NAME (member
) != NULL_TREE
11430 || TREE_CODE (TREE_TYPE (member
)) == UNION_TYPE
11431 || TREE_CODE (TREE_TYPE (member
)) == RECORD_TYPE
)
11433 gen_type_die (member_declared_type (member
), type_die
);
11434 gen_field_die (member
, type_die
);
11438 gen_variable_die (member
, type_die
);
11444 /* Generate the DWARF2 info for the "abstract" instance of a function which we
11445 may later generate inlined and/or out-of-line instances of. */
11448 dwarf2out_abstract_function (tree decl
)
11450 dw_die_ref old_die
;
11453 int was_abstract
= DECL_ABSTRACT (decl
);
11455 /* Make sure we have the actual abstract inline, not a clone. */
11456 decl
= DECL_ORIGIN (decl
);
11458 old_die
= lookup_decl_die (decl
);
11459 if (old_die
&& get_AT (old_die
, DW_AT_inline
))
11460 /* We've already generated the abstract instance. */
11463 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
11464 we don't get confused by DECL_ABSTRACT. */
11465 if (debug_info_level
> DINFO_LEVEL_TERSE
)
11467 context
= decl_class_context (decl
);
11469 gen_type_die_for_member
11470 (context
, decl
, decl_function_context (decl
) ? NULL
: comp_unit_die
);
11473 /* Pretend we've just finished compiling this function. */
11474 save_fn
= current_function_decl
;
11475 current_function_decl
= decl
;
11477 set_decl_abstract_flags (decl
, 1);
11478 dwarf2out_decl (decl
);
11479 if (! was_abstract
)
11480 set_decl_abstract_flags (decl
, 0);
11482 current_function_decl
= save_fn
;
11485 /* Generate a DIE to represent a declared function (either file-scope or
11489 gen_subprogram_die (tree decl
, dw_die_ref context_die
)
11491 char label_id
[MAX_ARTIFICIAL_LABEL_BYTES
];
11492 tree origin
= decl_ultimate_origin (decl
);
11493 dw_die_ref subr_die
;
11496 dw_die_ref old_die
= lookup_decl_die (decl
);
11497 int declaration
= (current_function_decl
!= decl
11498 || class_or_namespace_scope_p (context_die
));
11500 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
11501 started to generate the abstract instance of an inline, decided to output
11502 its containing class, and proceeded to emit the declaration of the inline
11503 from the member list for the class. If so, DECLARATION takes priority;
11504 we'll get back to the abstract instance when done with the class. */
11506 /* The class-scope declaration DIE must be the primary DIE. */
11507 if (origin
&& declaration
&& class_or_namespace_scope_p (context_die
))
11510 gcc_assert (!old_die
);
11513 /* Now that the C++ front end lazily declares artificial member fns, we
11514 might need to retrofit the declaration into its class. */
11515 if (!declaration
&& !origin
&& !old_die
11516 && DECL_CONTEXT (decl
) && TYPE_P (DECL_CONTEXT (decl
))
11517 && !class_or_namespace_scope_p (context_die
)
11518 && debug_info_level
> DINFO_LEVEL_TERSE
)
11519 old_die
= force_decl_die (decl
);
11521 if (origin
!= NULL
)
11523 gcc_assert (!declaration
|| local_scope_p (context_die
));
11525 /* Fixup die_parent for the abstract instance of a nested
11526 inline function. */
11527 if (old_die
&& old_die
->die_parent
== NULL
)
11528 add_child_die (context_die
, old_die
);
11530 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
11531 add_abstract_origin_attribute (subr_die
, origin
);
11535 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
11536 unsigned file_index
= lookup_filename (s
.file
);
11538 if (!get_AT_flag (old_die
, DW_AT_declaration
)
11539 /* We can have a normal definition following an inline one in the
11540 case of redefinition of GNU C extern inlines.
11541 It seems reasonable to use AT_specification in this case. */
11542 && !get_AT (old_die
, DW_AT_inline
))
11544 /* Detect and ignore this case, where we are trying to output
11545 something we have already output. */
11549 /* If the definition comes from the same place as the declaration,
11550 maybe use the old DIE. We always want the DIE for this function
11551 that has the *_pc attributes to be under comp_unit_die so the
11552 debugger can find it. We also need to do this for abstract
11553 instances of inlines, since the spec requires the out-of-line copy
11554 to have the same parent. For local class methods, this doesn't
11555 apply; we just use the old DIE. */
11556 if ((old_die
->die_parent
== comp_unit_die
|| context_die
== NULL
)
11557 && (DECL_ARTIFICIAL (decl
)
11558 || (get_AT_unsigned (old_die
, DW_AT_decl_file
) == file_index
11559 && (get_AT_unsigned (old_die
, DW_AT_decl_line
)
11560 == (unsigned) s
.line
))))
11562 subr_die
= old_die
;
11564 /* Clear out the declaration attribute and the formal parameters.
11565 Do not remove all children, because it is possible that this
11566 declaration die was forced using force_decl_die(). In such
11567 cases die that forced declaration die (e.g. TAG_imported_module)
11568 is one of the children that we do not want to remove. */
11569 remove_AT (subr_die
, DW_AT_declaration
);
11570 remove_child_TAG (subr_die
, DW_TAG_formal_parameter
);
11574 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
11575 add_AT_specification (subr_die
, old_die
);
11576 if (get_AT_unsigned (old_die
, DW_AT_decl_file
) != file_index
)
11577 add_AT_unsigned (subr_die
, DW_AT_decl_file
, file_index
);
11578 if (get_AT_unsigned (old_die
, DW_AT_decl_line
)
11579 != (unsigned) s
.line
)
11581 (subr_die
, DW_AT_decl_line
, s
.line
);
11586 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
11588 if (TREE_PUBLIC (decl
))
11589 add_AT_flag (subr_die
, DW_AT_external
, 1);
11591 add_name_and_src_coords_attributes (subr_die
, decl
);
11592 if (debug_info_level
> DINFO_LEVEL_TERSE
)
11594 add_prototyped_attribute (subr_die
, TREE_TYPE (decl
));
11595 add_type_attribute (subr_die
, TREE_TYPE (TREE_TYPE (decl
)),
11596 0, 0, context_die
);
11599 add_pure_or_virtual_attribute (subr_die
, decl
);
11600 if (DECL_ARTIFICIAL (decl
))
11601 add_AT_flag (subr_die
, DW_AT_artificial
, 1);
11603 if (TREE_PROTECTED (decl
))
11604 add_AT_unsigned (subr_die
, DW_AT_accessibility
, DW_ACCESS_protected
);
11605 else if (TREE_PRIVATE (decl
))
11606 add_AT_unsigned (subr_die
, DW_AT_accessibility
, DW_ACCESS_private
);
11611 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
11613 add_AT_flag (subr_die
, DW_AT_declaration
, 1);
11615 /* The first time we see a member function, it is in the context of
11616 the class to which it belongs. We make sure of this by emitting
11617 the class first. The next time is the definition, which is
11618 handled above. The two may come from the same source text.
11620 Note that force_decl_die() forces function declaration die. It is
11621 later reused to represent definition. */
11622 equate_decl_number_to_die (decl
, subr_die
);
11625 else if (DECL_ABSTRACT (decl
))
11627 if (DECL_DECLARED_INLINE_P (decl
))
11629 if (cgraph_function_possibly_inlined_p (decl
))
11630 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_inlined
);
11632 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_not_inlined
);
11636 if (cgraph_function_possibly_inlined_p (decl
))
11637 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_inlined
);
11639 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_not_inlined
);
11642 equate_decl_number_to_die (decl
, subr_die
);
11644 else if (!DECL_EXTERNAL (decl
))
11646 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
11647 equate_decl_number_to_die (decl
, subr_die
);
11649 if (!flag_reorder_blocks_and_partition
)
11651 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_BEGIN_LABEL
,
11652 current_function_funcdef_no
);
11653 add_AT_lbl_id (subr_die
, DW_AT_low_pc
, label_id
);
11654 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_END_LABEL
,
11655 current_function_funcdef_no
);
11656 add_AT_lbl_id (subr_die
, DW_AT_high_pc
, label_id
);
11658 add_pubname (decl
, subr_die
);
11659 add_arange (decl
, subr_die
);
11662 { /* Do nothing for now; maybe need to duplicate die, one for
11663 hot section and ond for cold section, then use the hot/cold
11664 section begin/end labels to generate the aranges... */
11666 add_AT_lbl_id (subr_die, DW_AT_low_pc, hot_section_label);
11667 add_AT_lbl_id (subr_die, DW_AT_high_pc, hot_section_end_label);
11668 add_AT_lbl_id (subr_die, DW_AT_lo_user, unlikely_section_label);
11669 add_AT_lbl_id (subr_die, DW_AT_hi_user, cold_section_end_label);
11671 add_pubname (decl, subr_die);
11672 add_arange (decl, subr_die);
11673 add_arange (decl, subr_die);
11677 #ifdef MIPS_DEBUGGING_INFO
11678 /* Add a reference to the FDE for this routine. */
11679 add_AT_fde_ref (subr_die
, DW_AT_MIPS_fde
, current_funcdef_fde
);
11682 #ifdef DWARF2_UNWIND_INFO
11683 /* We define the "frame base" as the function's CFA. This is more
11684 convenient for several reasons: (1) It's stable across the prologue
11685 and epilogue, which makes it better than just a frame pointer,
11686 (2) With dwarf3, there exists a one-byte encoding that allows us
11687 to reference the .debug_frame data by proxy, but failing that,
11688 (3) We can at least reuse the code inspection and interpretation
11689 code that determines the CFA position at various points in the
11691 /* ??? Use some command-line or configury switch to enable the use
11692 of dwarf3 DW_OP_call_frame_cfa. At present there are no dwarf
11693 consumers that understand it; fall back to "pure" dwarf2 and
11694 convert the CFA data into a location list. */
11696 dw_loc_list_ref list
= convert_cfa_to_loc_list ();
11697 if (list
->dw_loc_next
)
11698 add_AT_loc_list (subr_die
, DW_AT_frame_base
, list
);
11700 add_AT_loc (subr_die
, DW_AT_frame_base
, list
->expr
);
11703 /* Compute a displacement from the "steady-state frame pointer" to
11704 the CFA. The former is what all stack slots and argument slots
11705 will reference in the rtl; the later is what we've told the
11706 debugger about. We'll need to adjust all frame_base references
11707 by this displacement. */
11708 compute_frame_pointer_to_cfa_displacement ();
11710 /* For targets which support DWARF2, but not DWARF2 call-frame info,
11711 we just use the stack pointer or frame pointer. */
11712 /* ??? Should investigate getting better info via callbacks, or else
11713 by interpreting the IA-64 unwind info. */
11716 = frame_pointer_needed
? hard_frame_pointer_rtx
: stack_pointer_rtx
;
11717 add_AT_loc (subr_die
, DW_AT_frame_base
, reg_loc_descriptor (fp_reg
));
11721 if (cfun
->static_chain_decl
)
11722 add_AT_location_description (subr_die
, DW_AT_static_link
,
11723 loc_descriptor_from_tree (cfun
->static_chain_decl
));
11726 /* Now output descriptions of the arguments for this function. This gets
11727 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
11728 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
11729 `...' at the end of the formal parameter list. In order to find out if
11730 there was a trailing ellipsis or not, we must instead look at the type
11731 associated with the FUNCTION_DECL. This will be a node of type
11732 FUNCTION_TYPE. If the chain of type nodes hanging off of this
11733 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
11734 an ellipsis at the end. */
11736 /* In the case where we are describing a mere function declaration, all we
11737 need to do here (and all we *can* do here) is to describe the *types* of
11738 its formal parameters. */
11739 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
11741 else if (declaration
)
11742 gen_formal_types_die (decl
, subr_die
);
11745 /* Generate DIEs to represent all known formal parameters. */
11746 tree arg_decls
= DECL_ARGUMENTS (decl
);
11749 /* When generating DIEs, generate the unspecified_parameters DIE
11750 instead if we come across the arg "__builtin_va_alist" */
11751 for (parm
= arg_decls
; parm
; parm
= TREE_CHAIN (parm
))
11752 if (TREE_CODE (parm
) == PARM_DECL
)
11754 if (DECL_NAME (parm
)
11755 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm
)),
11756 "__builtin_va_alist"))
11757 gen_unspecified_parameters_die (parm
, subr_die
);
11759 gen_decl_die (parm
, subr_die
);
11762 /* Decide whether we need an unspecified_parameters DIE at the end.
11763 There are 2 more cases to do this for: 1) the ansi ... declaration -
11764 this is detectable when the end of the arg list is not a
11765 void_type_node 2) an unprototyped function declaration (not a
11766 definition). This just means that we have no info about the
11767 parameters at all. */
11768 fn_arg_types
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
11769 if (fn_arg_types
!= NULL
)
11771 /* This is the prototyped case, check for.... */
11772 if (TREE_VALUE (tree_last (fn_arg_types
)) != void_type_node
)
11773 gen_unspecified_parameters_die (decl
, subr_die
);
11775 else if (DECL_INITIAL (decl
) == NULL_TREE
)
11776 gen_unspecified_parameters_die (decl
, subr_die
);
11779 /* Output Dwarf info for all of the stuff within the body of the function
11780 (if it has one - it may be just a declaration). */
11781 outer_scope
= DECL_INITIAL (decl
);
11783 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
11784 a function. This BLOCK actually represents the outermost binding contour
11785 for the function, i.e. the contour in which the function's formal
11786 parameters and labels get declared. Curiously, it appears that the front
11787 end doesn't actually put the PARM_DECL nodes for the current function onto
11788 the BLOCK_VARS list for this outer scope, but are strung off of the
11789 DECL_ARGUMENTS list for the function instead.
11791 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
11792 the LABEL_DECL nodes for the function however, and we output DWARF info
11793 for those in decls_for_scope. Just within the `outer_scope' there will be
11794 a BLOCK node representing the function's outermost pair of curly braces,
11795 and any blocks used for the base and member initializers of a C++
11796 constructor function. */
11797 if (! declaration
&& TREE_CODE (outer_scope
) != ERROR_MARK
)
11799 /* Emit a DW_TAG_variable DIE for a named return value. */
11800 if (DECL_NAME (DECL_RESULT (decl
)))
11801 gen_decl_die (DECL_RESULT (decl
), subr_die
);
11803 current_function_has_inlines
= 0;
11804 decls_for_scope (outer_scope
, subr_die
, 0);
11806 #if 0 && defined (MIPS_DEBUGGING_INFO)
11807 if (current_function_has_inlines
)
11809 add_AT_flag (subr_die
, DW_AT_MIPS_has_inlines
, 1);
11810 if (! comp_unit_has_inlines
)
11812 add_AT_flag (comp_unit_die
, DW_AT_MIPS_has_inlines
, 1);
11813 comp_unit_has_inlines
= 1;
11818 /* Add the calling convention attribute if requested. */
11819 add_calling_convention_attribute (subr_die
, TREE_TYPE (decl
));
11823 /* Generate a DIE to represent a declared data object. */
11826 gen_variable_die (tree decl
, dw_die_ref context_die
)
11828 tree origin
= decl_ultimate_origin (decl
);
11829 dw_die_ref var_die
= new_die (DW_TAG_variable
, context_die
, decl
);
11831 dw_die_ref old_die
= lookup_decl_die (decl
);
11832 int declaration
= (DECL_EXTERNAL (decl
)
11833 /* If DECL is COMDAT and has not actually been
11834 emitted, we cannot take its address; there
11835 might end up being no definition anywhere in
11836 the program. For example, consider the C++
11840 struct S { static const int i = 7; };
11845 int f() { return S<int>::i; }
11847 Here, S<int>::i is not DECL_EXTERNAL, but no
11848 definition is required, so the compiler will
11849 not emit a definition. */
11850 || (TREE_CODE (decl
) == VAR_DECL
11851 && DECL_COMDAT (decl
) && !TREE_ASM_WRITTEN (decl
))
11852 || class_or_namespace_scope_p (context_die
));
11854 if (origin
!= NULL
)
11855 add_abstract_origin_attribute (var_die
, origin
);
11857 /* Loop unrolling can create multiple blocks that refer to the same
11858 static variable, so we must test for the DW_AT_declaration flag.
11860 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
11861 copy decls and set the DECL_ABSTRACT flag on them instead of
11864 ??? Duplicated blocks have been rewritten to use .debug_ranges.
11866 ??? The declare_in_namespace support causes us to get two DIEs for one
11867 variable, both of which are declarations. We want to avoid considering
11868 one to be a specification, so we must test that this DIE is not a
11870 else if (old_die
&& TREE_STATIC (decl
) && ! declaration
11871 && get_AT_flag (old_die
, DW_AT_declaration
) == 1)
11873 /* This is a definition of a C++ class level static. */
11874 add_AT_specification (var_die
, old_die
);
11875 if (DECL_NAME (decl
))
11877 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
11878 unsigned file_index
= lookup_filename (s
.file
);
11880 if (get_AT_unsigned (old_die
, DW_AT_decl_file
) != file_index
)
11881 add_AT_unsigned (var_die
, DW_AT_decl_file
, file_index
);
11883 if (get_AT_unsigned (old_die
, DW_AT_decl_line
)
11884 != (unsigned) s
.line
)
11886 add_AT_unsigned (var_die
, DW_AT_decl_line
, s
.line
);
11891 add_name_and_src_coords_attributes (var_die
, decl
);
11892 add_type_attribute (var_die
, TREE_TYPE (decl
), TREE_READONLY (decl
),
11893 TREE_THIS_VOLATILE (decl
), context_die
);
11895 if (TREE_PUBLIC (decl
))
11896 add_AT_flag (var_die
, DW_AT_external
, 1);
11898 if (DECL_ARTIFICIAL (decl
))
11899 add_AT_flag (var_die
, DW_AT_artificial
, 1);
11901 if (TREE_PROTECTED (decl
))
11902 add_AT_unsigned (var_die
, DW_AT_accessibility
, DW_ACCESS_protected
);
11903 else if (TREE_PRIVATE (decl
))
11904 add_AT_unsigned (var_die
, DW_AT_accessibility
, DW_ACCESS_private
);
11908 add_AT_flag (var_die
, DW_AT_declaration
, 1);
11910 if (DECL_ABSTRACT (decl
) || declaration
)
11911 equate_decl_number_to_die (decl
, var_die
);
11913 if (! declaration
&& ! DECL_ABSTRACT (decl
))
11915 add_location_or_const_value_attribute (var_die
, decl
, DW_AT_location
);
11916 add_pubname (decl
, var_die
);
11919 tree_add_const_value_attribute (var_die
, decl
);
11922 /* Generate a DIE to represent a label identifier. */
11925 gen_label_die (tree decl
, dw_die_ref context_die
)
11927 tree origin
= decl_ultimate_origin (decl
);
11928 dw_die_ref lbl_die
= new_die (DW_TAG_label
, context_die
, decl
);
11930 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
11932 if (origin
!= NULL
)
11933 add_abstract_origin_attribute (lbl_die
, origin
);
11935 add_name_and_src_coords_attributes (lbl_die
, decl
);
11937 if (DECL_ABSTRACT (decl
))
11938 equate_decl_number_to_die (decl
, lbl_die
);
11941 insn
= DECL_RTL_IF_SET (decl
);
11943 /* Deleted labels are programmer specified labels which have been
11944 eliminated because of various optimizations. We still emit them
11945 here so that it is possible to put breakpoints on them. */
11949 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_DELETED_LABEL
))))
11951 /* When optimization is enabled (via -O) some parts of the compiler
11952 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
11953 represent source-level labels which were explicitly declared by
11954 the user. This really shouldn't be happening though, so catch
11955 it if it ever does happen. */
11956 gcc_assert (!INSN_DELETED_P (insn
));
11958 ASM_GENERATE_INTERNAL_LABEL (label
, "L", CODE_LABEL_NUMBER (insn
));
11959 add_AT_lbl_id (lbl_die
, DW_AT_low_pc
, label
);
11964 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
11965 attributes to the DIE for a block STMT, to describe where the inlined
11966 function was called from. This is similar to add_src_coords_attributes. */
11969 add_call_src_coords_attributes (tree stmt
, dw_die_ref die
)
11971 expanded_location s
= expand_location (BLOCK_SOURCE_LOCATION (stmt
));
11972 unsigned file_index
= lookup_filename (s
.file
);
11974 add_AT_unsigned (die
, DW_AT_call_file
, file_index
);
11975 add_AT_unsigned (die
, DW_AT_call_line
, s
.line
);
11978 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
11979 Add low_pc and high_pc attributes to the DIE for a block STMT. */
11982 add_high_low_attributes (tree stmt
, dw_die_ref die
)
11984 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
11986 if (BLOCK_FRAGMENT_CHAIN (stmt
))
11990 add_AT_range_list (die
, DW_AT_ranges
, add_ranges (stmt
));
11992 chain
= BLOCK_FRAGMENT_CHAIN (stmt
);
11995 add_ranges (chain
);
11996 chain
= BLOCK_FRAGMENT_CHAIN (chain
);
12003 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_BEGIN_LABEL
,
12004 BLOCK_NUMBER (stmt
));
12005 add_AT_lbl_id (die
, DW_AT_low_pc
, label
);
12006 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_END_LABEL
,
12007 BLOCK_NUMBER (stmt
));
12008 add_AT_lbl_id (die
, DW_AT_high_pc
, label
);
12012 /* Generate a DIE for a lexical block. */
12015 gen_lexical_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
12017 dw_die_ref stmt_die
= new_die (DW_TAG_lexical_block
, context_die
, stmt
);
12019 if (! BLOCK_ABSTRACT (stmt
))
12020 add_high_low_attributes (stmt
, stmt_die
);
12022 decls_for_scope (stmt
, stmt_die
, depth
);
12025 /* Generate a DIE for an inlined subprogram. */
12028 gen_inlined_subroutine_die (tree stmt
, dw_die_ref context_die
, int depth
)
12030 tree decl
= block_ultimate_origin (stmt
);
12032 /* Emit info for the abstract instance first, if we haven't yet. We
12033 must emit this even if the block is abstract, otherwise when we
12034 emit the block below (or elsewhere), we may end up trying to emit
12035 a die whose origin die hasn't been emitted, and crashing. */
12036 dwarf2out_abstract_function (decl
);
12038 if (! BLOCK_ABSTRACT (stmt
))
12040 dw_die_ref subr_die
12041 = new_die (DW_TAG_inlined_subroutine
, context_die
, stmt
);
12043 add_abstract_origin_attribute (subr_die
, decl
);
12044 add_high_low_attributes (stmt
, subr_die
);
12045 add_call_src_coords_attributes (stmt
, subr_die
);
12047 decls_for_scope (stmt
, subr_die
, depth
);
12048 current_function_has_inlines
= 1;
12051 /* We may get here if we're the outer block of function A that was
12052 inlined into function B that was inlined into function C. When
12053 generating debugging info for C, dwarf2out_abstract_function(B)
12054 would mark all inlined blocks as abstract, including this one.
12055 So, we wouldn't (and shouldn't) expect labels to be generated
12056 for this one. Instead, just emit debugging info for
12057 declarations within the block. This is particularly important
12058 in the case of initializers of arguments passed from B to us:
12059 if they're statement expressions containing declarations, we
12060 wouldn't generate dies for their abstract variables, and then,
12061 when generating dies for the real variables, we'd die (pun
12063 gen_lexical_block_die (stmt
, context_die
, depth
);
12066 /* Generate a DIE for a field in a record, or structure. */
12069 gen_field_die (tree decl
, dw_die_ref context_die
)
12071 dw_die_ref decl_die
;
12073 if (TREE_TYPE (decl
) == error_mark_node
)
12076 decl_die
= new_die (DW_TAG_member
, context_die
, decl
);
12077 add_name_and_src_coords_attributes (decl_die
, decl
);
12078 add_type_attribute (decl_die
, member_declared_type (decl
),
12079 TREE_READONLY (decl
), TREE_THIS_VOLATILE (decl
),
12082 if (DECL_BIT_FIELD_TYPE (decl
))
12084 add_byte_size_attribute (decl_die
, decl
);
12085 add_bit_size_attribute (decl_die
, decl
);
12086 add_bit_offset_attribute (decl_die
, decl
);
12089 if (TREE_CODE (DECL_FIELD_CONTEXT (decl
)) != UNION_TYPE
)
12090 add_data_member_location_attribute (decl_die
, decl
);
12092 if (DECL_ARTIFICIAL (decl
))
12093 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
12095 if (TREE_PROTECTED (decl
))
12096 add_AT_unsigned (decl_die
, DW_AT_accessibility
, DW_ACCESS_protected
);
12097 else if (TREE_PRIVATE (decl
))
12098 add_AT_unsigned (decl_die
, DW_AT_accessibility
, DW_ACCESS_private
);
12100 /* Equate decl number to die, so that we can look up this decl later on. */
12101 equate_decl_number_to_die (decl
, decl_die
);
12105 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
12106 Use modified_type_die instead.
12107 We keep this code here just in case these types of DIEs may be needed to
12108 represent certain things in other languages (e.g. Pascal) someday. */
12111 gen_pointer_type_die (tree type
, dw_die_ref context_die
)
12114 = new_die (DW_TAG_pointer_type
, scope_die_for (type
, context_die
), type
);
12116 equate_type_number_to_die (type
, ptr_die
);
12117 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
12118 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
12121 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
12122 Use modified_type_die instead.
12123 We keep this code here just in case these types of DIEs may be needed to
12124 represent certain things in other languages (e.g. Pascal) someday. */
12127 gen_reference_type_die (tree type
, dw_die_ref context_die
)
12130 = new_die (DW_TAG_reference_type
, scope_die_for (type
, context_die
), type
);
12132 equate_type_number_to_die (type
, ref_die
);
12133 add_type_attribute (ref_die
, TREE_TYPE (type
), 0, 0, context_die
);
12134 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
12138 /* Generate a DIE for a pointer to a member type. */
12141 gen_ptr_to_mbr_type_die (tree type
, dw_die_ref context_die
)
12144 = new_die (DW_TAG_ptr_to_member_type
,
12145 scope_die_for (type
, context_die
), type
);
12147 equate_type_number_to_die (type
, ptr_die
);
12148 add_AT_die_ref (ptr_die
, DW_AT_containing_type
,
12149 lookup_type_die (TYPE_OFFSET_BASETYPE (type
)));
12150 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
12153 /* Generate the DIE for the compilation unit. */
12156 gen_compile_unit_die (const char *filename
)
12159 char producer
[250];
12160 const char *language_string
= lang_hooks
.name
;
12163 die
= new_die (DW_TAG_compile_unit
, NULL
, NULL
);
12167 add_name_attribute (die
, filename
);
12168 /* Don't add cwd for <built-in>. */
12169 if (filename
[0] != DIR_SEPARATOR
&& filename
[0] != '<')
12170 add_comp_dir_attribute (die
);
12173 sprintf (producer
, "%s %s", language_string
, version_string
);
12175 #ifdef MIPS_DEBUGGING_INFO
12176 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
12177 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
12178 not appear in the producer string, the debugger reaches the conclusion
12179 that the object file is stripped and has no debugging information.
12180 To get the MIPS/SGI debugger to believe that there is debugging
12181 information in the object file, we add a -g to the producer string. */
12182 if (debug_info_level
> DINFO_LEVEL_TERSE
)
12183 strcat (producer
, " -g");
12186 add_AT_string (die
, DW_AT_producer
, producer
);
12188 if (strcmp (language_string
, "GNU C++") == 0)
12189 language
= DW_LANG_C_plus_plus
;
12190 else if (strcmp (language_string
, "GNU Ada") == 0)
12191 language
= DW_LANG_Ada95
;
12192 else if (strcmp (language_string
, "GNU F77") == 0)
12193 language
= DW_LANG_Fortran77
;
12194 else if (strcmp (language_string
, "GNU F95") == 0)
12195 language
= DW_LANG_Fortran95
;
12196 else if (strcmp (language_string
, "GNU Pascal") == 0)
12197 language
= DW_LANG_Pascal83
;
12198 else if (strcmp (language_string
, "GNU Java") == 0)
12199 language
= DW_LANG_Java
;
12201 language
= DW_LANG_C89
;
12203 add_AT_unsigned (die
, DW_AT_language
, language
);
12207 /* Generate a DIE for a string type. */
12210 gen_string_type_die (tree type
, dw_die_ref context_die
)
12212 dw_die_ref type_die
12213 = new_die (DW_TAG_string_type
, scope_die_for (type
, context_die
), type
);
12215 equate_type_number_to_die (type
, type_die
);
12217 /* ??? Fudge the string length attribute for now.
12218 TODO: add string length info. */
12220 string_length_attribute (TYPE_MAX_VALUE (TYPE_DOMAIN (type
)));
12221 bound_representation (upper_bound
, 0, 'u');
12225 /* Generate the DIE for a base class. */
12228 gen_inheritance_die (tree binfo
, tree access
, dw_die_ref context_die
)
12230 dw_die_ref die
= new_die (DW_TAG_inheritance
, context_die
, binfo
);
12232 add_type_attribute (die
, BINFO_TYPE (binfo
), 0, 0, context_die
);
12233 add_data_member_location_attribute (die
, binfo
);
12235 if (BINFO_VIRTUAL_P (binfo
))
12236 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
12238 if (access
== access_public_node
)
12239 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_public
);
12240 else if (access
== access_protected_node
)
12241 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_protected
);
12244 /* Generate a DIE for a class member. */
12247 gen_member_die (tree type
, dw_die_ref context_die
)
12250 tree binfo
= TYPE_BINFO (type
);
12253 /* If this is not an incomplete type, output descriptions of each of its
12254 members. Note that as we output the DIEs necessary to represent the
12255 members of this record or union type, we will also be trying to output
12256 DIEs to represent the *types* of those members. However the `type'
12257 function (above) will specifically avoid generating type DIEs for member
12258 types *within* the list of member DIEs for this (containing) type except
12259 for those types (of members) which are explicitly marked as also being
12260 members of this (containing) type themselves. The g++ front- end can
12261 force any given type to be treated as a member of some other (containing)
12262 type by setting the TYPE_CONTEXT of the given (member) type to point to
12263 the TREE node representing the appropriate (containing) type. */
12265 /* First output info about the base classes. */
12268 VEC(tree
,gc
) *accesses
= BINFO_BASE_ACCESSES (binfo
);
12272 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base
); i
++)
12273 gen_inheritance_die (base
,
12274 (accesses
? VEC_index (tree
, accesses
, i
)
12275 : access_public_node
), context_die
);
12278 /* Now output info about the data members and type members. */
12279 for (member
= TYPE_FIELDS (type
); member
; member
= TREE_CHAIN (member
))
12281 /* If we thought we were generating minimal debug info for TYPE
12282 and then changed our minds, some of the member declarations
12283 may have already been defined. Don't define them again, but
12284 do put them in the right order. */
12286 child
= lookup_decl_die (member
);
12288 splice_child_die (context_die
, child
);
12290 gen_decl_die (member
, context_die
);
12293 /* Now output info about the function members (if any). */
12294 for (member
= TYPE_METHODS (type
); member
; member
= TREE_CHAIN (member
))
12296 /* Don't include clones in the member list. */
12297 if (DECL_ABSTRACT_ORIGIN (member
))
12300 child
= lookup_decl_die (member
);
12302 splice_child_die (context_die
, child
);
12304 gen_decl_die (member
, context_die
);
12308 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
12309 is set, we pretend that the type was never defined, so we only get the
12310 member DIEs needed by later specification DIEs. */
12313 gen_struct_or_union_type_die (tree type
, dw_die_ref context_die
)
12315 dw_die_ref type_die
= lookup_type_die (type
);
12316 dw_die_ref scope_die
= 0;
12318 int complete
= (TYPE_SIZE (type
)
12319 && (! TYPE_STUB_DECL (type
)
12320 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))));
12321 int ns_decl
= (context_die
&& context_die
->die_tag
== DW_TAG_namespace
);
12323 if (type_die
&& ! complete
)
12326 if (TYPE_CONTEXT (type
) != NULL_TREE
12327 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
12328 || TREE_CODE (TYPE_CONTEXT (type
)) == NAMESPACE_DECL
))
12331 scope_die
= scope_die_for (type
, context_die
);
12333 if (! type_die
|| (nested
&& scope_die
== comp_unit_die
))
12334 /* First occurrence of type or toplevel definition of nested class. */
12336 dw_die_ref old_die
= type_die
;
12338 type_die
= new_die (TREE_CODE (type
) == RECORD_TYPE
12339 ? DW_TAG_structure_type
: DW_TAG_union_type
,
12341 equate_type_number_to_die (type
, type_die
);
12343 add_AT_specification (type_die
, old_die
);
12345 add_name_attribute (type_die
, type_tag (type
));
12348 remove_AT (type_die
, DW_AT_declaration
);
12350 /* If this type has been completed, then give it a byte_size attribute and
12351 then give a list of members. */
12352 if (complete
&& !ns_decl
)
12354 /* Prevent infinite recursion in cases where the type of some member of
12355 this type is expressed in terms of this type itself. */
12356 TREE_ASM_WRITTEN (type
) = 1;
12357 add_byte_size_attribute (type_die
, type
);
12358 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
12359 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
12361 /* If the first reference to this type was as the return type of an
12362 inline function, then it may not have a parent. Fix this now. */
12363 if (type_die
->die_parent
== NULL
)
12364 add_child_die (scope_die
, type_die
);
12366 push_decl_scope (type
);
12367 gen_member_die (type
, type_die
);
12370 /* GNU extension: Record what type our vtable lives in. */
12371 if (TYPE_VFIELD (type
))
12373 tree vtype
= DECL_FCONTEXT (TYPE_VFIELD (type
));
12375 gen_type_die (vtype
, context_die
);
12376 add_AT_die_ref (type_die
, DW_AT_containing_type
,
12377 lookup_type_die (vtype
));
12382 add_AT_flag (type_die
, DW_AT_declaration
, 1);
12384 /* We don't need to do this for function-local types. */
12385 if (TYPE_STUB_DECL (type
)
12386 && ! decl_function_context (TYPE_STUB_DECL (type
)))
12387 VEC_safe_push (tree
, gc
, incomplete_types
, type
);
12391 /* Generate a DIE for a subroutine _type_. */
12394 gen_subroutine_type_die (tree type
, dw_die_ref context_die
)
12396 tree return_type
= TREE_TYPE (type
);
12397 dw_die_ref subr_die
12398 = new_die (DW_TAG_subroutine_type
,
12399 scope_die_for (type
, context_die
), type
);
12401 equate_type_number_to_die (type
, subr_die
);
12402 add_prototyped_attribute (subr_die
, type
);
12403 add_type_attribute (subr_die
, return_type
, 0, 0, context_die
);
12404 gen_formal_types_die (type
, subr_die
);
12407 /* Generate a DIE for a type definition. */
12410 gen_typedef_die (tree decl
, dw_die_ref context_die
)
12412 dw_die_ref type_die
;
12415 if (TREE_ASM_WRITTEN (decl
))
12418 TREE_ASM_WRITTEN (decl
) = 1;
12419 type_die
= new_die (DW_TAG_typedef
, context_die
, decl
);
12420 origin
= decl_ultimate_origin (decl
);
12421 if (origin
!= NULL
)
12422 add_abstract_origin_attribute (type_die
, origin
);
12427 add_name_and_src_coords_attributes (type_die
, decl
);
12428 if (DECL_ORIGINAL_TYPE (decl
))
12430 type
= DECL_ORIGINAL_TYPE (decl
);
12432 gcc_assert (type
!= TREE_TYPE (decl
));
12433 equate_type_number_to_die (TREE_TYPE (decl
), type_die
);
12436 type
= TREE_TYPE (decl
);
12438 add_type_attribute (type_die
, type
, TREE_READONLY (decl
),
12439 TREE_THIS_VOLATILE (decl
), context_die
);
12442 if (DECL_ABSTRACT (decl
))
12443 equate_decl_number_to_die (decl
, type_die
);
12446 /* Generate a type description DIE. */
12449 gen_type_die (tree type
, dw_die_ref context_die
)
12453 if (type
== NULL_TREE
|| type
== error_mark_node
)
12456 if (TYPE_NAME (type
) && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
12457 && DECL_ORIGINAL_TYPE (TYPE_NAME (type
)))
12459 if (TREE_ASM_WRITTEN (type
))
12462 /* Prevent broken recursion; we can't hand off to the same type. */
12463 gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type
)) != type
);
12465 TREE_ASM_WRITTEN (type
) = 1;
12466 gen_decl_die (TYPE_NAME (type
), context_die
);
12470 /* We are going to output a DIE to represent the unqualified version
12471 of this type (i.e. without any const or volatile qualifiers) so
12472 get the main variant (i.e. the unqualified version) of this type
12473 now. (Vectors are special because the debugging info is in the
12474 cloned type itself). */
12475 if (TREE_CODE (type
) != VECTOR_TYPE
)
12476 type
= type_main_variant (type
);
12478 if (TREE_ASM_WRITTEN (type
))
12481 switch (TREE_CODE (type
))
12487 case REFERENCE_TYPE
:
12488 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
12489 ensures that the gen_type_die recursion will terminate even if the
12490 type is recursive. Recursive types are possible in Ada. */
12491 /* ??? We could perhaps do this for all types before the switch
12493 TREE_ASM_WRITTEN (type
) = 1;
12495 /* For these types, all that is required is that we output a DIE (or a
12496 set of DIEs) to represent the "basis" type. */
12497 gen_type_die (TREE_TYPE (type
), context_die
);
12501 /* This code is used for C++ pointer-to-data-member types.
12502 Output a description of the relevant class type. */
12503 gen_type_die (TYPE_OFFSET_BASETYPE (type
), context_die
);
12505 /* Output a description of the type of the object pointed to. */
12506 gen_type_die (TREE_TYPE (type
), context_die
);
12508 /* Now output a DIE to represent this pointer-to-data-member type
12510 gen_ptr_to_mbr_type_die (type
, context_die
);
12513 case FUNCTION_TYPE
:
12514 /* Force out return type (in case it wasn't forced out already). */
12515 gen_type_die (TREE_TYPE (type
), context_die
);
12516 gen_subroutine_type_die (type
, context_die
);
12520 /* Force out return type (in case it wasn't forced out already). */
12521 gen_type_die (TREE_TYPE (type
), context_die
);
12522 gen_subroutine_type_die (type
, context_die
);
12526 if (TYPE_STRING_FLAG (type
) && TREE_CODE (TREE_TYPE (type
)) == CHAR_TYPE
)
12528 gen_type_die (TREE_TYPE (type
), context_die
);
12529 gen_string_type_die (type
, context_die
);
12532 gen_array_type_die (type
, context_die
);
12536 gen_array_type_die (type
, context_die
);
12539 case ENUMERAL_TYPE
:
12542 case QUAL_UNION_TYPE
:
12543 /* If this is a nested type whose containing class hasn't been written
12544 out yet, writing it out will cover this one, too. This does not apply
12545 to instantiations of member class templates; they need to be added to
12546 the containing class as they are generated. FIXME: This hurts the
12547 idea of combining type decls from multiple TUs, since we can't predict
12548 what set of template instantiations we'll get. */
12549 if (TYPE_CONTEXT (type
)
12550 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
12551 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type
)))
12553 gen_type_die (TYPE_CONTEXT (type
), context_die
);
12555 if (TREE_ASM_WRITTEN (type
))
12558 /* If that failed, attach ourselves to the stub. */
12559 push_decl_scope (TYPE_CONTEXT (type
));
12560 context_die
= lookup_type_die (TYPE_CONTEXT (type
));
12565 declare_in_namespace (type
, context_die
);
12569 if (TREE_CODE (type
) == ENUMERAL_TYPE
)
12570 gen_enumeration_type_die (type
, context_die
);
12572 gen_struct_or_union_type_die (type
, context_die
);
12577 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
12578 it up if it is ever completed. gen_*_type_die will set it for us
12579 when appropriate. */
12588 /* No DIEs needed for fundamental types. */
12592 /* No Dwarf representation currently defined. */
12596 gcc_unreachable ();
12599 TREE_ASM_WRITTEN (type
) = 1;
12602 /* Generate a DIE for a tagged type instantiation. */
12605 gen_tagged_type_instantiation_die (tree type
, dw_die_ref context_die
)
12607 if (type
== NULL_TREE
|| type
== error_mark_node
)
12610 /* We are going to output a DIE to represent the unqualified version of
12611 this type (i.e. without any const or volatile qualifiers) so make sure
12612 that we have the main variant (i.e. the unqualified version) of this
12614 gcc_assert (type
== type_main_variant (type
));
12616 /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
12617 an instance of an unresolved type. */
12619 switch (TREE_CODE (type
))
12624 case ENUMERAL_TYPE
:
12625 gen_inlined_enumeration_type_die (type
, context_die
);
12629 gen_inlined_structure_type_die (type
, context_die
);
12633 case QUAL_UNION_TYPE
:
12634 gen_inlined_union_type_die (type
, context_die
);
12638 gcc_unreachable ();
12642 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
12643 things which are local to the given block. */
12646 gen_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
12648 int must_output_die
= 0;
12651 enum tree_code origin_code
;
12653 /* Ignore blocks that are NULL. */
12654 if (stmt
== NULL_TREE
)
12657 /* If the block is one fragment of a non-contiguous block, do not
12658 process the variables, since they will have been done by the
12659 origin block. Do process subblocks. */
12660 if (BLOCK_FRAGMENT_ORIGIN (stmt
))
12664 for (sub
= BLOCK_SUBBLOCKS (stmt
); sub
; sub
= BLOCK_CHAIN (sub
))
12665 gen_block_die (sub
, context_die
, depth
+ 1);
12670 /* Determine the "ultimate origin" of this block. This block may be an
12671 inlined instance of an inlined instance of inline function, so we have
12672 to trace all of the way back through the origin chain to find out what
12673 sort of node actually served as the original seed for the creation of
12674 the current block. */
12675 origin
= block_ultimate_origin (stmt
);
12676 origin_code
= (origin
!= NULL
) ? TREE_CODE (origin
) : ERROR_MARK
;
12678 /* Determine if we need to output any Dwarf DIEs at all to represent this
12680 if (origin_code
== FUNCTION_DECL
)
12681 /* The outer scopes for inlinings *must* always be represented. We
12682 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
12683 must_output_die
= 1;
12686 /* In the case where the current block represents an inlining of the
12687 "body block" of an inline function, we must *NOT* output any DIE for
12688 this block because we have already output a DIE to represent the whole
12689 inlined function scope and the "body block" of any function doesn't
12690 really represent a different scope according to ANSI C rules. So we
12691 check here to make sure that this block does not represent a "body
12692 block inlining" before trying to set the MUST_OUTPUT_DIE flag. */
12693 if (! is_body_block (origin
? origin
: stmt
))
12695 /* Determine if this block directly contains any "significant"
12696 local declarations which we will need to output DIEs for. */
12697 if (debug_info_level
> DINFO_LEVEL_TERSE
)
12698 /* We are not in terse mode so *any* local declaration counts
12699 as being a "significant" one. */
12700 must_output_die
= (BLOCK_VARS (stmt
) != NULL
12701 && (TREE_USED (stmt
)
12702 || TREE_ASM_WRITTEN (stmt
)
12703 || BLOCK_ABSTRACT (stmt
)));
12705 /* We are in terse mode, so only local (nested) function
12706 definitions count as "significant" local declarations. */
12707 for (decl
= BLOCK_VARS (stmt
);
12708 decl
!= NULL
; decl
= TREE_CHAIN (decl
))
12709 if (TREE_CODE (decl
) == FUNCTION_DECL
12710 && DECL_INITIAL (decl
))
12712 must_output_die
= 1;
12718 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
12719 DIE for any block which contains no significant local declarations at
12720 all. Rather, in such cases we just call `decls_for_scope' so that any
12721 needed Dwarf info for any sub-blocks will get properly generated. Note
12722 that in terse mode, our definition of what constitutes a "significant"
12723 local declaration gets restricted to include only inlined function
12724 instances and local (nested) function definitions. */
12725 if (must_output_die
)
12727 if (origin_code
== FUNCTION_DECL
)
12728 gen_inlined_subroutine_die (stmt
, context_die
, depth
);
12730 gen_lexical_block_die (stmt
, context_die
, depth
);
12733 decls_for_scope (stmt
, context_die
, depth
);
12736 /* Generate all of the decls declared within a given scope and (recursively)
12737 all of its sub-blocks. */
12740 decls_for_scope (tree stmt
, dw_die_ref context_die
, int depth
)
12745 /* Ignore NULL blocks. */
12746 if (stmt
== NULL_TREE
)
12749 if (TREE_USED (stmt
))
12751 /* Output the DIEs to represent all of the data objects and typedefs
12752 declared directly within this block but not within any nested
12753 sub-blocks. Also, nested function and tag DIEs have been
12754 generated with a parent of NULL; fix that up now. */
12755 for (decl
= BLOCK_VARS (stmt
); decl
!= NULL
; decl
= TREE_CHAIN (decl
))
12759 if (TREE_CODE (decl
) == FUNCTION_DECL
)
12760 die
= lookup_decl_die (decl
);
12761 else if (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
))
12762 die
= lookup_type_die (TREE_TYPE (decl
));
12766 if (die
!= NULL
&& die
->die_parent
== NULL
)
12767 add_child_die (context_die
, die
);
12768 /* Do not produce debug information for static variables since
12769 these might be optimized out. We are called for these later
12770 in cgraph_varpool_analyze_pending_decls. */
12771 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
))
12774 gen_decl_die (decl
, context_die
);
12778 /* If we're at -g1, we're not interested in subblocks. */
12779 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
12782 /* Output the DIEs to represent all sub-blocks (and the items declared
12783 therein) of this block. */
12784 for (subblocks
= BLOCK_SUBBLOCKS (stmt
);
12786 subblocks
= BLOCK_CHAIN (subblocks
))
12787 gen_block_die (subblocks
, context_die
, depth
+ 1);
12790 /* Is this a typedef we can avoid emitting? */
12793 is_redundant_typedef (tree decl
)
12795 if (TYPE_DECL_IS_STUB (decl
))
12798 if (DECL_ARTIFICIAL (decl
)
12799 && DECL_CONTEXT (decl
)
12800 && is_tagged_type (DECL_CONTEXT (decl
))
12801 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl
))) == TYPE_DECL
12802 && DECL_NAME (decl
) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl
))))
12803 /* Also ignore the artificial member typedef for the class name. */
12809 /* Returns the DIE for decl. A DIE will always be returned. */
12812 force_decl_die (tree decl
)
12814 dw_die_ref decl_die
;
12815 unsigned saved_external_flag
;
12816 tree save_fn
= NULL_TREE
;
12817 decl_die
= lookup_decl_die (decl
);
12820 dw_die_ref context_die
;
12821 tree decl_context
= DECL_CONTEXT (decl
);
12824 /* Find die that represents this context. */
12825 if (TYPE_P (decl_context
))
12826 context_die
= force_type_die (decl_context
);
12828 context_die
= force_decl_die (decl_context
);
12831 context_die
= comp_unit_die
;
12833 decl_die
= lookup_decl_die (decl
);
12837 switch (TREE_CODE (decl
))
12839 case FUNCTION_DECL
:
12840 /* Clear current_function_decl, so that gen_subprogram_die thinks
12841 that this is a declaration. At this point, we just want to force
12842 declaration die. */
12843 save_fn
= current_function_decl
;
12844 current_function_decl
= NULL_TREE
;
12845 gen_subprogram_die (decl
, context_die
);
12846 current_function_decl
= save_fn
;
12850 /* Set external flag to force declaration die. Restore it after
12851 gen_decl_die() call. */
12852 saved_external_flag
= DECL_EXTERNAL (decl
);
12853 DECL_EXTERNAL (decl
) = 1;
12854 gen_decl_die (decl
, context_die
);
12855 DECL_EXTERNAL (decl
) = saved_external_flag
;
12858 case NAMESPACE_DECL
:
12859 dwarf2out_decl (decl
);
12863 gcc_unreachable ();
12866 /* We should be able to find the DIE now. */
12868 decl_die
= lookup_decl_die (decl
);
12869 gcc_assert (decl_die
);
12875 /* Returns the DIE for TYPE. A DIE is always returned. */
12878 force_type_die (tree type
)
12880 dw_die_ref type_die
;
12882 type_die
= lookup_type_die (type
);
12885 dw_die_ref context_die
;
12886 if (TYPE_CONTEXT (type
))
12888 if (TYPE_P (TYPE_CONTEXT (type
)))
12889 context_die
= force_type_die (TYPE_CONTEXT (type
));
12891 context_die
= force_decl_die (TYPE_CONTEXT (type
));
12894 context_die
= comp_unit_die
;
12896 type_die
= lookup_type_die (type
);
12899 gen_type_die (type
, context_die
);
12900 type_die
= lookup_type_die (type
);
12901 gcc_assert (type_die
);
12906 /* Force out any required namespaces to be able to output DECL,
12907 and return the new context_die for it, if it's changed. */
12910 setup_namespace_context (tree thing
, dw_die_ref context_die
)
12912 tree context
= (DECL_P (thing
)
12913 ? DECL_CONTEXT (thing
) : TYPE_CONTEXT (thing
));
12914 if (context
&& TREE_CODE (context
) == NAMESPACE_DECL
)
12915 /* Force out the namespace. */
12916 context_die
= force_decl_die (context
);
12918 return context_die
;
12921 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
12922 type) within its namespace, if appropriate.
12924 For compatibility with older debuggers, namespace DIEs only contain
12925 declarations; all definitions are emitted at CU scope. */
12928 declare_in_namespace (tree thing
, dw_die_ref context_die
)
12930 dw_die_ref ns_context
;
12932 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
12935 /* If this decl is from an inlined function, then don't try to emit it in its
12936 namespace, as we will get confused. It would have already been emitted
12937 when the abstract instance of the inline function was emitted anyways. */
12938 if (DECL_P (thing
) && DECL_ABSTRACT_ORIGIN (thing
))
12941 ns_context
= setup_namespace_context (thing
, context_die
);
12943 if (ns_context
!= context_die
)
12945 if (DECL_P (thing
))
12946 gen_decl_die (thing
, ns_context
);
12948 gen_type_die (thing
, ns_context
);
12952 /* Generate a DIE for a namespace or namespace alias. */
12955 gen_namespace_die (tree decl
)
12957 dw_die_ref context_die
= setup_namespace_context (decl
, comp_unit_die
);
12959 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
12960 they are an alias of. */
12961 if (DECL_ABSTRACT_ORIGIN (decl
) == NULL
)
12963 /* Output a real namespace. */
12964 dw_die_ref namespace_die
12965 = new_die (DW_TAG_namespace
, context_die
, decl
);
12966 add_name_and_src_coords_attributes (namespace_die
, decl
);
12967 equate_decl_number_to_die (decl
, namespace_die
);
12971 /* Output a namespace alias. */
12973 /* Force out the namespace we are an alias of, if necessary. */
12974 dw_die_ref origin_die
12975 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl
));
12977 /* Now create the namespace alias DIE. */
12978 dw_die_ref namespace_die
12979 = new_die (DW_TAG_imported_declaration
, context_die
, decl
);
12980 add_name_and_src_coords_attributes (namespace_die
, decl
);
12981 add_AT_die_ref (namespace_die
, DW_AT_import
, origin_die
);
12982 equate_decl_number_to_die (decl
, namespace_die
);
12986 /* Generate Dwarf debug information for a decl described by DECL. */
12989 gen_decl_die (tree decl
, dw_die_ref context_die
)
12993 if (DECL_P (decl
) && DECL_IGNORED_P (decl
))
12996 switch (TREE_CODE (decl
))
13002 /* The individual enumerators of an enum type get output when we output
13003 the Dwarf representation of the relevant enum type itself. */
13006 case FUNCTION_DECL
:
13007 /* Don't output any DIEs to represent mere function declarations,
13008 unless they are class members or explicit block externs. */
13009 if (DECL_INITIAL (decl
) == NULL_TREE
&& DECL_CONTEXT (decl
) == NULL_TREE
13010 && (current_function_decl
== NULL_TREE
|| DECL_ARTIFICIAL (decl
)))
13015 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
13016 on local redeclarations of global functions. That seems broken. */
13017 if (current_function_decl
!= decl
)
13018 /* This is only a declaration. */;
13021 /* If we're emitting a clone, emit info for the abstract instance. */
13022 if (DECL_ORIGIN (decl
) != decl
)
13023 dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl
));
13025 /* If we're emitting an out-of-line copy of an inline function,
13026 emit info for the abstract instance and set up to refer to it. */
13027 else if (cgraph_function_possibly_inlined_p (decl
)
13028 && ! DECL_ABSTRACT (decl
)
13029 && ! class_or_namespace_scope_p (context_die
)
13030 /* dwarf2out_abstract_function won't emit a die if this is just
13031 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
13032 that case, because that works only if we have a die. */
13033 && DECL_INITIAL (decl
) != NULL_TREE
)
13035 dwarf2out_abstract_function (decl
);
13036 set_decl_origin_self (decl
);
13039 /* Otherwise we're emitting the primary DIE for this decl. */
13040 else if (debug_info_level
> DINFO_LEVEL_TERSE
)
13042 /* Before we describe the FUNCTION_DECL itself, make sure that we
13043 have described its return type. */
13044 gen_type_die (TREE_TYPE (TREE_TYPE (decl
)), context_die
);
13046 /* And its virtual context. */
13047 if (DECL_VINDEX (decl
) != NULL_TREE
)
13048 gen_type_die (DECL_CONTEXT (decl
), context_die
);
13050 /* And its containing type. */
13051 origin
= decl_class_context (decl
);
13052 if (origin
!= NULL_TREE
)
13053 gen_type_die_for_member (origin
, decl
, context_die
);
13055 /* And its containing namespace. */
13056 declare_in_namespace (decl
, context_die
);
13059 /* Now output a DIE to represent the function itself. */
13060 gen_subprogram_die (decl
, context_die
);
13064 /* If we are in terse mode, don't generate any DIEs to represent any
13065 actual typedefs. */
13066 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13069 /* In the special case of a TYPE_DECL node representing the declaration
13070 of some type tag, if the given TYPE_DECL is marked as having been
13071 instantiated from some other (original) TYPE_DECL node (e.g. one which
13072 was generated within the original definition of an inline function) we
13073 have to generate a special (abbreviated) DW_TAG_structure_type,
13074 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. */
13075 if (TYPE_DECL_IS_STUB (decl
) && decl_ultimate_origin (decl
) != NULL_TREE
)
13077 gen_tagged_type_instantiation_die (TREE_TYPE (decl
), context_die
);
13081 if (is_redundant_typedef (decl
))
13082 gen_type_die (TREE_TYPE (decl
), context_die
);
13084 /* Output a DIE to represent the typedef itself. */
13085 gen_typedef_die (decl
, context_die
);
13089 if (debug_info_level
>= DINFO_LEVEL_NORMAL
)
13090 gen_label_die (decl
, context_die
);
13095 /* If we are in terse mode, don't generate any DIEs to represent any
13096 variable declarations or definitions. */
13097 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13100 /* Output any DIEs that are needed to specify the type of this data
13102 gen_type_die (TREE_TYPE (decl
), context_die
);
13104 /* And its containing type. */
13105 origin
= decl_class_context (decl
);
13106 if (origin
!= NULL_TREE
)
13107 gen_type_die_for_member (origin
, decl
, context_die
);
13109 /* And its containing namespace. */
13110 declare_in_namespace (decl
, context_die
);
13112 /* Now output the DIE to represent the data object itself. This gets
13113 complicated because of the possibility that the VAR_DECL really
13114 represents an inlined instance of a formal parameter for an inline
13116 origin
= decl_ultimate_origin (decl
);
13117 if (origin
!= NULL_TREE
&& TREE_CODE (origin
) == PARM_DECL
)
13118 gen_formal_parameter_die (decl
, context_die
);
13120 gen_variable_die (decl
, context_die
);
13124 /* Ignore the nameless fields that are used to skip bits but handle C++
13125 anonymous unions and structs. */
13126 if (DECL_NAME (decl
) != NULL_TREE
13127 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
13128 || TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
)
13130 gen_type_die (member_declared_type (decl
), context_die
);
13131 gen_field_die (decl
, context_die
);
13136 gen_type_die (TREE_TYPE (decl
), context_die
);
13137 gen_formal_parameter_die (decl
, context_die
);
13140 case NAMESPACE_DECL
:
13141 gen_namespace_die (decl
);
13145 /* Probably some frontend-internal decl. Assume we don't care. */
13146 gcc_assert ((int)TREE_CODE (decl
) > NUM_TREE_CODES
);
13151 /* Add Ada "use" clause information for SGI Workshop debugger. */
13154 dwarf2out_add_library_unit_info (const char *filename
, const char *context_list
)
13156 unsigned int file_index
;
13158 if (filename
!= NULL
)
13160 dw_die_ref unit_die
= new_die (DW_TAG_module
, comp_unit_die
, NULL
);
13161 tree context_list_decl
13162 = build_decl (LABEL_DECL
, get_identifier (context_list
),
13165 TREE_PUBLIC (context_list_decl
) = TRUE
;
13166 add_name_attribute (unit_die
, context_list
);
13167 file_index
= lookup_filename (filename
);
13168 add_AT_unsigned (unit_die
, DW_AT_decl_file
, file_index
);
13169 add_pubname (context_list_decl
, unit_die
);
13173 /* Output debug information for global decl DECL. Called from toplev.c after
13174 compilation proper has finished. */
13177 dwarf2out_global_decl (tree decl
)
13179 /* Output DWARF2 information for file-scope tentative data object
13180 declarations, file-scope (extern) function declarations (which had no
13181 corresponding body) and file-scope tagged type declarations and
13182 definitions which have not yet been forced out. */
13183 if (TREE_CODE (decl
) != FUNCTION_DECL
|| !DECL_INITIAL (decl
))
13184 dwarf2out_decl (decl
);
13187 /* Output debug information for type decl DECL. Called from toplev.c
13188 and from language front ends (to record built-in types). */
13190 dwarf2out_type_decl (tree decl
, int local
)
13193 dwarf2out_decl (decl
);
13196 /* Output debug information for imported module or decl. */
13199 dwarf2out_imported_module_or_decl (tree decl
, tree context
)
13201 dw_die_ref imported_die
, at_import_die
;
13202 dw_die_ref scope_die
;
13203 unsigned file_index
;
13204 expanded_location xloc
;
13206 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13211 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
13212 We need decl DIE for reference and scope die. First, get DIE for the decl
13215 /* Get the scope die for decl context. Use comp_unit_die for global module
13216 or decl. If die is not found for non globals, force new die. */
13218 scope_die
= comp_unit_die
;
13219 else if (TYPE_P (context
))
13220 scope_die
= force_type_die (context
);
13222 scope_die
= force_decl_die (context
);
13224 /* For TYPE_DECL or CONST_DECL, lookup TREE_TYPE. */
13225 if (TREE_CODE (decl
) == TYPE_DECL
|| TREE_CODE (decl
) == CONST_DECL
)
13226 at_import_die
= force_type_die (TREE_TYPE (decl
));
13229 at_import_die
= lookup_decl_die (decl
);
13230 if (!at_import_die
)
13232 /* If we're trying to avoid duplicate debug info, we may not have
13233 emitted the member decl for this field. Emit it now. */
13234 if (TREE_CODE (decl
) == FIELD_DECL
)
13236 tree type
= DECL_CONTEXT (decl
);
13237 dw_die_ref type_context_die
;
13239 if (TYPE_CONTEXT (type
))
13240 if (TYPE_P (TYPE_CONTEXT (type
)))
13241 type_context_die
= force_type_die (TYPE_CONTEXT (type
));
13243 type_context_die
= force_decl_die (TYPE_CONTEXT (type
));
13245 type_context_die
= comp_unit_die
;
13246 gen_type_die_for_member (type
, decl
, type_context_die
);
13248 at_import_die
= force_decl_die (decl
);
13252 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
13253 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
13254 imported_die
= new_die (DW_TAG_imported_module
, scope_die
, context
);
13256 imported_die
= new_die (DW_TAG_imported_declaration
, scope_die
, context
);
13258 xloc
= expand_location (input_location
);
13259 file_index
= lookup_filename (xloc
.file
);
13260 add_AT_unsigned (imported_die
, DW_AT_decl_file
, file_index
);
13261 add_AT_unsigned (imported_die
, DW_AT_decl_line
, xloc
.line
);
13262 add_AT_die_ref (imported_die
, DW_AT_import
, at_import_die
);
13265 /* Write the debugging output for DECL. */
13268 dwarf2out_decl (tree decl
)
13270 dw_die_ref context_die
= comp_unit_die
;
13272 switch (TREE_CODE (decl
))
13277 case FUNCTION_DECL
:
13278 /* What we would really like to do here is to filter out all mere
13279 file-scope declarations of file-scope functions which are never
13280 referenced later within this translation unit (and keep all of ones
13281 that *are* referenced later on) but we aren't clairvoyant, so we have
13282 no idea which functions will be referenced in the future (i.e. later
13283 on within the current translation unit). So here we just ignore all
13284 file-scope function declarations which are not also definitions. If
13285 and when the debugger needs to know something about these functions,
13286 it will have to hunt around and find the DWARF information associated
13287 with the definition of the function.
13289 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
13290 nodes represent definitions and which ones represent mere
13291 declarations. We have to check DECL_INITIAL instead. That's because
13292 the C front-end supports some weird semantics for "extern inline"
13293 function definitions. These can get inlined within the current
13294 translation unit (and thus, we need to generate Dwarf info for their
13295 abstract instances so that the Dwarf info for the concrete inlined
13296 instances can have something to refer to) but the compiler never
13297 generates any out-of-lines instances of such things (despite the fact
13298 that they *are* definitions).
13300 The important point is that the C front-end marks these "extern
13301 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
13302 them anyway. Note that the C++ front-end also plays some similar games
13303 for inline function definitions appearing within include files which
13304 also contain `#pragma interface' pragmas. */
13305 if (DECL_INITIAL (decl
) == NULL_TREE
)
13308 /* If we're a nested function, initially use a parent of NULL; if we're
13309 a plain function, this will be fixed up in decls_for_scope. If
13310 we're a method, it will be ignored, since we already have a DIE. */
13311 if (decl_function_context (decl
)
13312 /* But if we're in terse mode, we don't care about scope. */
13313 && debug_info_level
> DINFO_LEVEL_TERSE
)
13314 context_die
= NULL
;
13318 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
13319 declaration and if the declaration was never even referenced from
13320 within this entire compilation unit. We suppress these DIEs in
13321 order to save space in the .debug section (by eliminating entries
13322 which are probably useless). Note that we must not suppress
13323 block-local extern declarations (whether used or not) because that
13324 would screw-up the debugger's name lookup mechanism and cause it to
13325 miss things which really ought to be in scope at a given point. */
13326 if (DECL_EXTERNAL (decl
) && !TREE_USED (decl
))
13329 /* For local statics lookup proper context die. */
13330 if (TREE_STATIC (decl
) && decl_function_context (decl
))
13331 context_die
= lookup_decl_die (DECL_CONTEXT (decl
));
13333 /* If we are in terse mode, don't generate any DIEs to represent any
13334 variable declarations or definitions. */
13335 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13339 case NAMESPACE_DECL
:
13340 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13342 if (lookup_decl_die (decl
) != NULL
)
13347 /* Don't emit stubs for types unless they are needed by other DIEs. */
13348 if (TYPE_DECL_SUPPRESS_DEBUG (decl
))
13351 /* Don't bother trying to generate any DIEs to represent any of the
13352 normal built-in types for the language we are compiling. */
13353 if (DECL_IS_BUILTIN (decl
))
13355 /* OK, we need to generate one for `bool' so GDB knows what type
13356 comparisons have. */
13357 if ((get_AT_unsigned (comp_unit_die
, DW_AT_language
)
13358 == DW_LANG_C_plus_plus
)
13359 && TREE_CODE (TREE_TYPE (decl
)) == BOOLEAN_TYPE
13360 && ! DECL_IGNORED_P (decl
))
13361 modified_type_die (TREE_TYPE (decl
), 0, 0, NULL
);
13366 /* If we are in terse mode, don't generate any DIEs for types. */
13367 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13370 /* If we're a function-scope tag, initially use a parent of NULL;
13371 this will be fixed up in decls_for_scope. */
13372 if (decl_function_context (decl
))
13373 context_die
= NULL
;
13381 gen_decl_die (decl
, context_die
);
13384 /* Output a marker (i.e. a label) for the beginning of the generated code for
13385 a lexical block. */
13388 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED
,
13389 unsigned int blocknum
)
13391 switch_to_section (current_function_section ());
13392 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_BEGIN_LABEL
, blocknum
);
13395 /* Output a marker (i.e. a label) for the end of the generated code for a
13399 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED
, unsigned int blocknum
)
13401 switch_to_section (current_function_section ());
13402 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_END_LABEL
, blocknum
);
13405 /* Returns nonzero if it is appropriate not to emit any debugging
13406 information for BLOCK, because it doesn't contain any instructions.
13408 Don't allow this for blocks with nested functions or local classes
13409 as we would end up with orphans, and in the presence of scheduling
13410 we may end up calling them anyway. */
13413 dwarf2out_ignore_block (tree block
)
13417 for (decl
= BLOCK_VARS (block
); decl
; decl
= TREE_CHAIN (decl
))
13418 if (TREE_CODE (decl
) == FUNCTION_DECL
13419 || (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
)))
13425 /* Lookup FILE_NAME (in the list of filenames that we know about here in
13426 dwarf2out.c) and return its "index". The index of each (known) filename is
13427 just a unique number which is associated with only that one filename. We
13428 need such numbers for the sake of generating labels (in the .debug_sfnames
13429 section) and references to those files numbers (in the .debug_srcinfo
13430 and.debug_macinfo sections). If the filename given as an argument is not
13431 found in our current list, add it to the list and assign it the next
13432 available unique index number. In order to speed up searches, we remember
13433 the index of the filename was looked up last. This handles the majority of
13437 lookup_filename (const char *file_name
)
13440 char *save_file_name
;
13442 /* Check to see if the file name that was searched on the previous
13443 call matches this file name. If so, return the index. */
13444 if (file_table_last_lookup_index
!= 0)
13447 = VARRAY_CHAR_PTR (file_table
, file_table_last_lookup_index
);
13448 if (strcmp (file_name
, last
) == 0)
13449 return file_table_last_lookup_index
;
13452 /* Didn't match the previous lookup, search the table. */
13453 n
= VARRAY_ACTIVE_SIZE (file_table
);
13454 for (i
= 1; i
< n
; i
++)
13455 if (strcmp (file_name
, VARRAY_CHAR_PTR (file_table
, i
)) == 0)
13457 file_table_last_lookup_index
= i
;
13461 /* Add the new entry to the end of the filename table. */
13462 file_table_last_lookup_index
= n
;
13463 save_file_name
= (char *) ggc_strdup (file_name
);
13464 VARRAY_PUSH_CHAR_PTR (file_table
, save_file_name
);
13465 VARRAY_PUSH_UINT (file_table_emitted
, 0);
13467 /* If the assembler is emitting the file table, and we aren't eliminating
13468 unused debug types, then we must emit .file here. If we are eliminating
13469 unused debug types, then this will be done by the maybe_emit_file call in
13470 prune_unused_types_walk_attribs. */
13472 if (DWARF2_ASM_LINE_DEBUG_INFO
&& ! flag_eliminate_unused_debug_types
)
13473 return maybe_emit_file (i
);
13478 /* If the assembler will construct the file table, then translate the compiler
13479 internal file table number into the assembler file table number, and emit
13480 a .file directive if we haven't already emitted one yet. The file table
13481 numbers are different because we prune debug info for unused variables and
13482 types, which may include filenames. */
13485 maybe_emit_file (int fileno
)
13487 if (DWARF2_ASM_LINE_DEBUG_INFO
&& fileno
> 0)
13489 if (!VARRAY_UINT (file_table_emitted
, fileno
))
13491 VARRAY_UINT (file_table_emitted
, fileno
) = ++emitcount
;
13492 fprintf (asm_out_file
, "\t.file %u ",
13493 VARRAY_UINT (file_table_emitted
, fileno
));
13494 output_quoted_string (asm_out_file
,
13495 VARRAY_CHAR_PTR (file_table
, fileno
));
13496 fputc ('\n', asm_out_file
);
13498 return VARRAY_UINT (file_table_emitted
, fileno
);
13504 /* Initialize the compiler internal file table. */
13507 init_file_table (void)
13509 /* Allocate the initial hunk of the file_table. */
13510 VARRAY_CHAR_PTR_INIT (file_table
, 64, "file_table");
13511 VARRAY_UINT_INIT (file_table_emitted
, 64, "file_table_emitted");
13513 /* Skip the first entry - file numbers begin at 1. */
13514 VARRAY_PUSH_CHAR_PTR (file_table
, NULL
);
13515 VARRAY_PUSH_UINT (file_table_emitted
, 0);
13516 file_table_last_lookup_index
= 0;
13519 /* Called by the final INSN scan whenever we see a var location. We
13520 use it to drop labels in the right places, and throw the location in
13521 our lookup table. */
13524 dwarf2out_var_location (rtx loc_note
)
13526 char loclabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
13527 struct var_loc_node
*newloc
;
13529 static rtx last_insn
;
13530 static const char *last_label
;
13533 if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note
)))
13535 prev_insn
= PREV_INSN (loc_note
);
13537 newloc
= ggc_alloc_cleared (sizeof (struct var_loc_node
));
13538 /* If the insn we processed last time is the previous insn
13539 and it is also a var location note, use the label we emitted
13541 if (last_insn
!= NULL_RTX
13542 && last_insn
== prev_insn
13543 && NOTE_P (prev_insn
)
13544 && NOTE_LINE_NUMBER (prev_insn
) == NOTE_INSN_VAR_LOCATION
)
13546 newloc
->label
= last_label
;
13550 ASM_GENERATE_INTERNAL_LABEL (loclabel
, "LVL", loclabel_num
);
13551 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, "LVL", loclabel_num
);
13553 newloc
->label
= ggc_strdup (loclabel
);
13555 newloc
->var_loc_note
= loc_note
;
13556 newloc
->next
= NULL
;
13558 if (cfun
&& in_cold_section_p
)
13559 newloc
->section_label
= cfun
->cold_section_label
;
13561 newloc
->section_label
= text_section_label
;
13563 last_insn
= loc_note
;
13564 last_label
= newloc
->label
;
13565 decl
= NOTE_VAR_LOCATION_DECL (loc_note
);
13566 if (DECL_DEBUG_EXPR_IS_FROM (decl
) && DECL_DEBUG_EXPR (decl
)
13567 && DECL_P (DECL_DEBUG_EXPR (decl
)))
13568 decl
= DECL_DEBUG_EXPR (decl
);
13569 add_var_loc_to_decl (decl
, newloc
);
13572 /* We need to reset the locations at the beginning of each
13573 function. We can't do this in the end_function hook, because the
13574 declarations that use the locations won't have been output when
13575 that hook is called. Also compute have_multiple_function_sections here. */
13578 dwarf2out_begin_function (tree fun
)
13580 htab_empty (decl_loc_table
);
13582 if (function_section (fun
) != text_section
)
13583 have_multiple_function_sections
= true;
13586 /* Output a label to mark the beginning of a source code line entry
13587 and record information relating to this source line, in
13588 'line_info_table' for later output of the .debug_line section. */
13591 dwarf2out_source_line (unsigned int line
, const char *filename
)
13593 if (debug_info_level
>= DINFO_LEVEL_NORMAL
13596 switch_to_section (current_function_section ());
13598 /* If requested, emit something human-readable. */
13599 if (flag_debug_asm
)
13600 fprintf (asm_out_file
, "\t%s %s:%d\n", ASM_COMMENT_START
,
13603 if (DWARF2_ASM_LINE_DEBUG_INFO
)
13605 unsigned file_num
= lookup_filename (filename
);
13607 file_num
= maybe_emit_file (file_num
);
13609 /* Emit the .loc directive understood by GNU as. */
13610 fprintf (asm_out_file
, "\t.loc %d %d 0\n", file_num
, line
);
13612 /* Indicate that line number info exists. */
13613 line_info_table_in_use
++;
13615 else if (function_section (current_function_decl
) != text_section
)
13617 dw_separate_line_info_ref line_info
;
13618 targetm
.asm_out
.internal_label (asm_out_file
, SEPARATE_LINE_CODE_LABEL
,
13619 separate_line_info_table_in_use
);
13621 /* Expand the line info table if necessary. */
13622 if (separate_line_info_table_in_use
13623 == separate_line_info_table_allocated
)
13625 separate_line_info_table_allocated
+= LINE_INFO_TABLE_INCREMENT
;
13626 separate_line_info_table
13627 = ggc_realloc (separate_line_info_table
,
13628 separate_line_info_table_allocated
13629 * sizeof (dw_separate_line_info_entry
));
13630 memset (separate_line_info_table
13631 + separate_line_info_table_in_use
,
13633 (LINE_INFO_TABLE_INCREMENT
13634 * sizeof (dw_separate_line_info_entry
)));
13637 /* Add the new entry at the end of the line_info_table. */
13639 = &separate_line_info_table
[separate_line_info_table_in_use
++];
13640 line_info
->dw_file_num
= lookup_filename (filename
);
13641 line_info
->dw_line_num
= line
;
13642 line_info
->function
= current_function_funcdef_no
;
13646 dw_line_info_ref line_info
;
13648 targetm
.asm_out
.internal_label (asm_out_file
, LINE_CODE_LABEL
,
13649 line_info_table_in_use
);
13651 /* Expand the line info table if necessary. */
13652 if (line_info_table_in_use
== line_info_table_allocated
)
13654 line_info_table_allocated
+= LINE_INFO_TABLE_INCREMENT
;
13656 = ggc_realloc (line_info_table
,
13657 (line_info_table_allocated
13658 * sizeof (dw_line_info_entry
)));
13659 memset (line_info_table
+ line_info_table_in_use
, 0,
13660 LINE_INFO_TABLE_INCREMENT
* sizeof (dw_line_info_entry
));
13663 /* Add the new entry at the end of the line_info_table. */
13664 line_info
= &line_info_table
[line_info_table_in_use
++];
13665 line_info
->dw_file_num
= lookup_filename (filename
);
13666 line_info
->dw_line_num
= line
;
13671 /* Record the beginning of a new source file. */
13674 dwarf2out_start_source_file (unsigned int lineno
, const char *filename
)
13676 if (flag_eliminate_dwarf2_dups
)
13678 /* Record the beginning of the file for break_out_includes. */
13679 dw_die_ref bincl_die
;
13681 bincl_die
= new_die (DW_TAG_GNU_BINCL
, comp_unit_die
, NULL
);
13682 add_AT_string (bincl_die
, DW_AT_name
, filename
);
13685 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13689 switch_to_section (debug_macinfo_section
);
13690 dw2_asm_output_data (1, DW_MACINFO_start_file
, "Start new file");
13691 dw2_asm_output_data_uleb128 (lineno
, "Included from line number %d",
13694 fileno
= maybe_emit_file (lookup_filename (filename
));
13695 dw2_asm_output_data_uleb128 (fileno
, "Filename we just started");
13699 /* Record the end of a source file. */
13702 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED
)
13704 if (flag_eliminate_dwarf2_dups
)
13705 /* Record the end of the file for break_out_includes. */
13706 new_die (DW_TAG_GNU_EINCL
, comp_unit_die
, NULL
);
13708 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13710 switch_to_section (debug_macinfo_section
);
13711 dw2_asm_output_data (1, DW_MACINFO_end_file
, "End file");
13715 /* Called from debug_define in toplev.c. The `buffer' parameter contains
13716 the tail part of the directive line, i.e. the part which is past the
13717 initial whitespace, #, whitespace, directive-name, whitespace part. */
13720 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED
,
13721 const char *buffer ATTRIBUTE_UNUSED
)
13723 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13725 switch_to_section (debug_macinfo_section
);
13726 dw2_asm_output_data (1, DW_MACINFO_define
, "Define macro");
13727 dw2_asm_output_data_uleb128 (lineno
, "At line number %d", lineno
);
13728 dw2_asm_output_nstring (buffer
, -1, "The macro");
13732 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
13733 the tail part of the directive line, i.e. the part which is past the
13734 initial whitespace, #, whitespace, directive-name, whitespace part. */
13737 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED
,
13738 const char *buffer ATTRIBUTE_UNUSED
)
13740 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13742 switch_to_section (debug_macinfo_section
);
13743 dw2_asm_output_data (1, DW_MACINFO_undef
, "Undefine macro");
13744 dw2_asm_output_data_uleb128 (lineno
, "At line number %d", lineno
);
13745 dw2_asm_output_nstring (buffer
, -1, "The macro");
13749 /* Set up for Dwarf output at the start of compilation. */
13752 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED
)
13754 init_file_table ();
13756 /* Allocate the decl_die_table. */
13757 decl_die_table
= htab_create_ggc (10, decl_die_table_hash
,
13758 decl_die_table_eq
, NULL
);
13760 /* Allocate the decl_loc_table. */
13761 decl_loc_table
= htab_create_ggc (10, decl_loc_table_hash
,
13762 decl_loc_table_eq
, NULL
);
13764 /* Allocate the initial hunk of the decl_scope_table. */
13765 decl_scope_table
= VEC_alloc (tree
, gc
, 256);
13767 /* Allocate the initial hunk of the abbrev_die_table. */
13768 abbrev_die_table
= ggc_alloc_cleared (ABBREV_DIE_TABLE_INCREMENT
13769 * sizeof (dw_die_ref
));
13770 abbrev_die_table_allocated
= ABBREV_DIE_TABLE_INCREMENT
;
13771 /* Zero-th entry is allocated, but unused. */
13772 abbrev_die_table_in_use
= 1;
13774 /* Allocate the initial hunk of the line_info_table. */
13775 line_info_table
= ggc_alloc_cleared (LINE_INFO_TABLE_INCREMENT
13776 * sizeof (dw_line_info_entry
));
13777 line_info_table_allocated
= LINE_INFO_TABLE_INCREMENT
;
13779 /* Zero-th entry is allocated, but unused. */
13780 line_info_table_in_use
= 1;
13782 /* Generate the initial DIE for the .debug section. Note that the (string)
13783 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
13784 will (typically) be a relative pathname and that this pathname should be
13785 taken as being relative to the directory from which the compiler was
13786 invoked when the given (base) source file was compiled. We will fill
13787 in this value in dwarf2out_finish. */
13788 comp_unit_die
= gen_compile_unit_die (NULL
);
13790 incomplete_types
= VEC_alloc (tree
, gc
, 64);
13792 used_rtx_array
= VEC_alloc (rtx
, gc
, 32);
13794 debug_info_section
= get_section (DEBUG_INFO_SECTION
,
13795 SECTION_DEBUG
, NULL
);
13796 debug_abbrev_section
= get_section (DEBUG_ABBREV_SECTION
,
13797 SECTION_DEBUG
, NULL
);
13798 debug_aranges_section
= get_section (DEBUG_ARANGES_SECTION
,
13799 SECTION_DEBUG
, NULL
);
13800 debug_macinfo_section
= get_section (DEBUG_MACINFO_SECTION
,
13801 SECTION_DEBUG
, NULL
);
13802 debug_line_section
= get_section (DEBUG_LINE_SECTION
,
13803 SECTION_DEBUG
, NULL
);
13804 debug_loc_section
= get_section (DEBUG_LOC_SECTION
,
13805 SECTION_DEBUG
, NULL
);
13806 debug_pubnames_section
= get_section (DEBUG_PUBNAMES_SECTION
,
13807 SECTION_DEBUG
, NULL
);
13808 debug_str_section
= get_section (DEBUG_STR_SECTION
,
13809 DEBUG_STR_SECTION_FLAGS
, NULL
);
13810 debug_ranges_section
= get_section (DEBUG_RANGES_SECTION
,
13811 SECTION_DEBUG
, NULL
);
13813 ASM_GENERATE_INTERNAL_LABEL (text_end_label
, TEXT_END_LABEL
, 0);
13814 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label
,
13815 DEBUG_ABBREV_SECTION_LABEL
, 0);
13816 ASM_GENERATE_INTERNAL_LABEL (text_section_label
, TEXT_SECTION_LABEL
, 0);
13817 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label
,
13818 COLD_TEXT_SECTION_LABEL
, 0);
13819 ASM_GENERATE_INTERNAL_LABEL (cold_end_label
, COLD_END_LABEL
, 0);
13821 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label
,
13822 DEBUG_INFO_SECTION_LABEL
, 0);
13823 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label
,
13824 DEBUG_LINE_SECTION_LABEL
, 0);
13825 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label
,
13826 DEBUG_RANGES_SECTION_LABEL
, 0);
13827 switch_to_section (debug_abbrev_section
);
13828 ASM_OUTPUT_LABEL (asm_out_file
, abbrev_section_label
);
13829 switch_to_section (debug_info_section
);
13830 ASM_OUTPUT_LABEL (asm_out_file
, debug_info_section_label
);
13831 switch_to_section (debug_line_section
);
13832 ASM_OUTPUT_LABEL (asm_out_file
, debug_line_section_label
);
13834 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13836 switch_to_section (debug_macinfo_section
);
13837 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label
,
13838 DEBUG_MACINFO_SECTION_LABEL
, 0);
13839 ASM_OUTPUT_LABEL (asm_out_file
, macinfo_section_label
);
13842 switch_to_section (text_section
);
13843 ASM_OUTPUT_LABEL (asm_out_file
, text_section_label
);
13844 if (flag_reorder_blocks_and_partition
)
13846 switch_to_section (unlikely_text_section ());
13847 ASM_OUTPUT_LABEL (asm_out_file
, cold_text_section_label
);
13851 /* A helper function for dwarf2out_finish called through
13852 ht_forall. Emit one queued .debug_str string. */
13855 output_indirect_string (void **h
, void *v ATTRIBUTE_UNUSED
)
13857 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
13859 if (node
->form
== DW_FORM_strp
)
13861 switch_to_section (debug_str_section
);
13862 ASM_OUTPUT_LABEL (asm_out_file
, node
->label
);
13863 assemble_string (node
->str
, strlen (node
->str
) + 1);
13871 /* Clear the marks for a die and its children.
13872 Be cool if the mark isn't set. */
13875 prune_unmark_dies (dw_die_ref die
)
13879 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
13880 prune_unmark_dies (c
);
13884 /* Given DIE that we're marking as used, find any other dies
13885 it references as attributes and mark them as used. */
13888 prune_unused_types_walk_attribs (dw_die_ref die
)
13892 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
13894 if (a
->dw_attr_val
.val_class
== dw_val_class_die_ref
)
13896 /* A reference to another DIE.
13897 Make sure that it will get emitted. */
13898 prune_unused_types_mark (a
->dw_attr_val
.v
.val_die_ref
.die
, 1);
13900 else if (a
->dw_attr
== DW_AT_decl_file
|| a
->dw_attr
== DW_AT_call_file
)
13902 /* A reference to a file. Make sure the file name is emitted. */
13903 a
->dw_attr_val
.v
.val_unsigned
=
13904 maybe_emit_file (a
->dw_attr_val
.v
.val_unsigned
);
13910 /* Mark DIE as being used. If DOKIDS is true, then walk down
13911 to DIE's children. */
13914 prune_unused_types_mark (dw_die_ref die
, int dokids
)
13918 if (die
->die_mark
== 0)
13920 /* We haven't done this node yet. Mark it as used. */
13923 /* We also have to mark its parents as used.
13924 (But we don't want to mark our parents' kids due to this.) */
13925 if (die
->die_parent
)
13926 prune_unused_types_mark (die
->die_parent
, 0);
13928 /* Mark any referenced nodes. */
13929 prune_unused_types_walk_attribs (die
);
13931 /* If this node is a specification,
13932 also mark the definition, if it exists. */
13933 if (get_AT_flag (die
, DW_AT_declaration
) && die
->die_definition
)
13934 prune_unused_types_mark (die
->die_definition
, 1);
13937 if (dokids
&& die
->die_mark
!= 2)
13939 /* We need to walk the children, but haven't done so yet.
13940 Remember that we've walked the kids. */
13944 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
13946 /* If this is an array type, we need to make sure our
13947 kids get marked, even if they're types. */
13948 if (die
->die_tag
== DW_TAG_array_type
)
13949 prune_unused_types_mark (c
, 1);
13951 prune_unused_types_walk (c
);
13957 /* Walk the tree DIE and mark types that we actually use. */
13960 prune_unused_types_walk (dw_die_ref die
)
13964 /* Don't do anything if this node is already marked. */
13968 switch (die
->die_tag
) {
13969 case DW_TAG_const_type
:
13970 case DW_TAG_packed_type
:
13971 case DW_TAG_pointer_type
:
13972 case DW_TAG_reference_type
:
13973 case DW_TAG_volatile_type
:
13974 case DW_TAG_typedef
:
13975 case DW_TAG_array_type
:
13976 case DW_TAG_structure_type
:
13977 case DW_TAG_union_type
:
13978 case DW_TAG_class_type
:
13979 case DW_TAG_friend
:
13980 case DW_TAG_variant_part
:
13981 case DW_TAG_enumeration_type
:
13982 case DW_TAG_subroutine_type
:
13983 case DW_TAG_string_type
:
13984 case DW_TAG_set_type
:
13985 case DW_TAG_subrange_type
:
13986 case DW_TAG_ptr_to_member_type
:
13987 case DW_TAG_file_type
:
13988 /* It's a type node --- don't mark it. */
13992 /* Mark everything else. */
13998 /* Now, mark any dies referenced from here. */
13999 prune_unused_types_walk_attribs (die
);
14001 /* Mark children. */
14002 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
14003 prune_unused_types_walk (c
);
14007 /* Remove from the tree DIE any dies that aren't marked. */
14010 prune_unused_types_prune (dw_die_ref die
)
14012 dw_die_ref c
, p
, n
;
14014 gcc_assert (die
->die_mark
);
14017 for (c
= die
->die_child
; c
; c
= n
)
14022 prune_unused_types_prune (c
);
14030 die
->die_child
= n
;
14037 /* Remove dies representing declarations that we never use. */
14040 prune_unused_types (void)
14043 limbo_die_node
*node
;
14045 /* Clear all the marks. */
14046 prune_unmark_dies (comp_unit_die
);
14047 for (node
= limbo_die_list
; node
; node
= node
->next
)
14048 prune_unmark_dies (node
->die
);
14050 /* Set the mark on nodes that are actually used. */
14051 prune_unused_types_walk (comp_unit_die
);
14052 for (node
= limbo_die_list
; node
; node
= node
->next
)
14053 prune_unused_types_walk (node
->die
);
14055 /* Also set the mark on nodes referenced from the
14056 pubname_table or arange_table. */
14057 for (i
= 0; i
< pubname_table_in_use
; i
++)
14058 prune_unused_types_mark (pubname_table
[i
].die
, 1);
14059 for (i
= 0; i
< arange_table_in_use
; i
++)
14060 prune_unused_types_mark (arange_table
[i
], 1);
14062 /* Get rid of nodes that aren't marked. */
14063 prune_unused_types_prune (comp_unit_die
);
14064 for (node
= limbo_die_list
; node
; node
= node
->next
)
14065 prune_unused_types_prune (node
->die
);
14067 /* Leave the marks clear. */
14068 prune_unmark_dies (comp_unit_die
);
14069 for (node
= limbo_die_list
; node
; node
= node
->next
)
14070 prune_unmark_dies (node
->die
);
14073 /* Output stuff that dwarf requires at the end of every file,
14074 and generate the DWARF-2 debugging info. */
14077 dwarf2out_finish (const char *filename
)
14079 limbo_die_node
*node
, *next_node
;
14080 dw_die_ref die
= 0;
14082 /* Add the name for the main input file now. We delayed this from
14083 dwarf2out_init to avoid complications with PCH. */
14084 add_name_attribute (comp_unit_die
, filename
);
14085 if (filename
[0] != DIR_SEPARATOR
)
14086 add_comp_dir_attribute (comp_unit_die
);
14087 else if (get_AT (comp_unit_die
, DW_AT_comp_dir
) == NULL
)
14090 for (i
= 1; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
14091 if (VARRAY_CHAR_PTR (file_table
, i
)[0] != DIR_SEPARATOR
14092 /* Don't add cwd for <built-in>. */
14093 && VARRAY_CHAR_PTR (file_table
, i
)[0] != '<')
14095 add_comp_dir_attribute (comp_unit_die
);
14100 /* Traverse the limbo die list, and add parent/child links. The only
14101 dies without parents that should be here are concrete instances of
14102 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
14103 For concrete instances, we can get the parent die from the abstract
14105 for (node
= limbo_die_list
; node
; node
= next_node
)
14107 next_node
= node
->next
;
14110 if (die
->die_parent
== NULL
)
14112 dw_die_ref origin
= get_AT_ref (die
, DW_AT_abstract_origin
);
14115 add_child_die (origin
->die_parent
, die
);
14116 else if (die
== comp_unit_die
)
14118 else if (errorcount
> 0 || sorrycount
> 0)
14119 /* It's OK to be confused by errors in the input. */
14120 add_child_die (comp_unit_die
, die
);
14123 /* In certain situations, the lexical block containing a
14124 nested function can be optimized away, which results
14125 in the nested function die being orphaned. Likewise
14126 with the return type of that nested function. Force
14127 this to be a child of the containing function.
14129 It may happen that even the containing function got fully
14130 inlined and optimized out. In that case we are lost and
14131 assign the empty child. This should not be big issue as
14132 the function is likely unreachable too. */
14133 tree context
= NULL_TREE
;
14135 gcc_assert (node
->created_for
);
14137 if (DECL_P (node
->created_for
))
14138 context
= DECL_CONTEXT (node
->created_for
);
14139 else if (TYPE_P (node
->created_for
))
14140 context
= TYPE_CONTEXT (node
->created_for
);
14142 gcc_assert (context
&& TREE_CODE (context
) == FUNCTION_DECL
);
14144 origin
= lookup_decl_die (context
);
14146 add_child_die (origin
, die
);
14148 add_child_die (comp_unit_die
, die
);
14153 limbo_die_list
= NULL
;
14155 /* Walk through the list of incomplete types again, trying once more to
14156 emit full debugging info for them. */
14157 retry_incomplete_types ();
14159 /* We need to reverse all the dies before break_out_includes, or
14160 we'll see the end of an include file before the beginning. */
14161 reverse_all_dies (comp_unit_die
);
14163 if (flag_eliminate_unused_debug_types
)
14164 prune_unused_types ();
14166 /* Generate separate CUs for each of the include files we've seen.
14167 They will go into limbo_die_list. */
14168 if (flag_eliminate_dwarf2_dups
)
14169 break_out_includes (comp_unit_die
);
14171 /* Traverse the DIE's and add add sibling attributes to those DIE's
14172 that have children. */
14173 add_sibling_attributes (comp_unit_die
);
14174 for (node
= limbo_die_list
; node
; node
= node
->next
)
14175 add_sibling_attributes (node
->die
);
14177 /* Output a terminator label for the .text section. */
14178 switch_to_section (text_section
);
14179 targetm
.asm_out
.internal_label (asm_out_file
, TEXT_END_LABEL
, 0);
14180 if (flag_reorder_blocks_and_partition
)
14182 switch_to_section (unlikely_text_section ());
14183 targetm
.asm_out
.internal_label (asm_out_file
, COLD_END_LABEL
, 0);
14186 /* Output the source line correspondence table. We must do this
14187 even if there is no line information. Otherwise, on an empty
14188 translation unit, we will generate a present, but empty,
14189 .debug_info section. IRIX 6.5 `nm' will then complain when
14190 examining the file. */
14191 if (! DWARF2_ASM_LINE_DEBUG_INFO
)
14193 switch_to_section (debug_line_section
);
14194 output_line_info ();
14197 /* We can only use the low/high_pc attributes if all of the code was
14199 if (!have_multiple_function_sections
)
14201 add_AT_lbl_id (comp_unit_die
, DW_AT_low_pc
, text_section_label
);
14202 add_AT_lbl_id (comp_unit_die
, DW_AT_high_pc
, text_end_label
);
14205 /* If it wasn't, we need to give .debug_loc and .debug_ranges an appropriate
14206 "base address". Use zero so that these addresses become absolute. */
14207 else if (have_location_lists
|| ranges_table_in_use
)
14208 add_AT_addr (comp_unit_die
, DW_AT_entry_pc
, const0_rtx
);
14210 /* Output location list section if necessary. */
14211 if (have_location_lists
)
14213 /* Output the location lists info. */
14214 switch_to_section (debug_loc_section
);
14215 ASM_GENERATE_INTERNAL_LABEL (loc_section_label
,
14216 DEBUG_LOC_SECTION_LABEL
, 0);
14217 ASM_OUTPUT_LABEL (asm_out_file
, loc_section_label
);
14218 output_location_lists (die
);
14221 if (debug_info_level
>= DINFO_LEVEL_NORMAL
)
14222 add_AT_lbl_offset (comp_unit_die
, DW_AT_stmt_list
,
14223 debug_line_section_label
);
14225 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
14226 add_AT_lbl_offset (comp_unit_die
, DW_AT_macro_info
, macinfo_section_label
);
14228 /* Output all of the compilation units. We put the main one last so that
14229 the offsets are available to output_pubnames. */
14230 for (node
= limbo_die_list
; node
; node
= node
->next
)
14231 output_comp_unit (node
->die
, 0);
14233 output_comp_unit (comp_unit_die
, 0);
14235 /* Output the abbreviation table. */
14236 switch_to_section (debug_abbrev_section
);
14237 output_abbrev_section ();
14239 /* Output public names table if necessary. */
14240 if (pubname_table_in_use
)
14242 switch_to_section (debug_pubnames_section
);
14243 output_pubnames ();
14246 /* Output the address range information. We only put functions in the arange
14247 table, so don't write it out if we don't have any. */
14248 if (fde_table_in_use
)
14250 switch_to_section (debug_aranges_section
);
14254 /* Output ranges section if necessary. */
14255 if (ranges_table_in_use
)
14257 switch_to_section (debug_ranges_section
);
14258 ASM_OUTPUT_LABEL (asm_out_file
, ranges_section_label
);
14262 /* Have to end the macro section. */
14263 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
14265 switch_to_section (debug_macinfo_section
);
14266 dw2_asm_output_data (1, 0, "End compilation unit");
14269 /* If we emitted any DW_FORM_strp form attribute, output the string
14271 if (debug_str_hash
)
14272 htab_traverse (debug_str_hash
, output_indirect_string
, NULL
);
14276 /* This should never be used, but its address is needed for comparisons. */
14277 const struct gcc_debug_hooks dwarf2_debug_hooks
;
14279 #endif /* DWARF2_DEBUGGING_INFO */
14281 #include "gt-dwarf2out.h"