1 /* Output Dwarf2 format symbol table information from GCC.
2 Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006 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 #ifndef DWARF2_FRAME_INFO
94 # ifdef DWARF2_DEBUGGING_INFO
95 # define DWARF2_FRAME_INFO \
96 (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
98 # define DWARF2_FRAME_INFO 0
102 /* Decide whether we want to emit frame unwind information for the current
106 dwarf2out_do_frame (void)
108 /* We want to emit correct CFA location expressions or lists, so we
109 have to return true if we're going to output debug info, even if
110 we're not going to output frame or unwind info. */
111 return (write_symbols
== DWARF2_DEBUG
112 || write_symbols
== VMS_AND_DWARF2_DEBUG
114 #ifdef DWARF2_UNWIND_INFO
115 || (DWARF2_UNWIND_INFO
116 && (flag_unwind_tables
117 || (flag_exceptions
&& ! USING_SJLJ_EXCEPTIONS
)))
122 /* The size of the target's pointer type. */
124 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
128 DEF_VEC_ALLOC_P(rtx
,gc
);
130 /* Array of RTXes referenced by the debugging information, which therefore
131 must be kept around forever. */
132 static GTY(()) VEC(rtx
,gc
) *used_rtx_array
;
134 /* A pointer to the base of a list of incomplete types which might be
135 completed at some later time. incomplete_types_list needs to be a
136 VEC(tree,gc) because we want to tell the garbage collector about
138 static GTY(()) VEC(tree
,gc
) *incomplete_types
;
140 /* A pointer to the base of a table of references to declaration
141 scopes. This table is a display which tracks the nesting
142 of declaration scopes at the current scope and containing
143 scopes. This table is used to find the proper place to
144 define type declaration DIE's. */
145 static GTY(()) VEC(tree
,gc
) *decl_scope_table
;
147 /* Pointers to various DWARF2 sections. */
148 static GTY(()) section
*debug_info_section
;
149 static GTY(()) section
*debug_abbrev_section
;
150 static GTY(()) section
*debug_aranges_section
;
151 static GTY(()) section
*debug_macinfo_section
;
152 static GTY(()) section
*debug_line_section
;
153 static GTY(()) section
*debug_loc_section
;
154 static GTY(()) section
*debug_pubnames_section
;
155 static GTY(()) section
*debug_str_section
;
156 static GTY(()) section
*debug_ranges_section
;
158 /* How to start an assembler comment. */
159 #ifndef ASM_COMMENT_START
160 #define ASM_COMMENT_START ";#"
163 typedef struct dw_cfi_struct
*dw_cfi_ref
;
164 typedef struct dw_fde_struct
*dw_fde_ref
;
165 typedef union dw_cfi_oprnd_struct
*dw_cfi_oprnd_ref
;
167 /* Call frames are described using a sequence of Call Frame
168 Information instructions. The register number, offset
169 and address fields are provided as possible operands;
170 their use is selected by the opcode field. */
172 enum dw_cfi_oprnd_type
{
174 dw_cfi_oprnd_reg_num
,
180 typedef union dw_cfi_oprnd_struct
GTY(())
182 unsigned int GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num
;
183 HOST_WIDE_INT
GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset
;
184 const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr
;
185 struct dw_loc_descr_struct
* GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc
;
189 typedef struct dw_cfi_struct
GTY(())
191 dw_cfi_ref dw_cfi_next
;
192 enum dwarf_call_frame_info dw_cfi_opc
;
193 dw_cfi_oprnd
GTY ((desc ("dw_cfi_oprnd1_desc (%1.dw_cfi_opc)")))
195 dw_cfi_oprnd
GTY ((desc ("dw_cfi_oprnd2_desc (%1.dw_cfi_opc)")))
200 /* This is how we define the location of the CFA. We use to handle it
201 as REG + OFFSET all the time, but now it can be more complex.
202 It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
203 Instead of passing around REG and OFFSET, we pass a copy
204 of this structure. */
205 typedef struct cfa_loc
GTY(())
207 HOST_WIDE_INT offset
;
208 HOST_WIDE_INT base_offset
;
210 int indirect
; /* 1 if CFA is accessed via a dereference. */
213 /* All call frame descriptions (FDE's) in the GCC generated DWARF
214 refer to a single Common Information Entry (CIE), defined at
215 the beginning of the .debug_frame section. This use of a single
216 CIE obviates the need to keep track of multiple CIE's
217 in the DWARF generation routines below. */
219 typedef struct dw_fde_struct
GTY(())
222 const char *dw_fde_begin
;
223 const char *dw_fde_current_label
;
224 const char *dw_fde_end
;
225 const char *dw_fde_hot_section_label
;
226 const char *dw_fde_hot_section_end_label
;
227 const char *dw_fde_unlikely_section_label
;
228 const char *dw_fde_unlikely_section_end_label
;
229 bool dw_fde_switched_sections
;
230 dw_cfi_ref dw_fde_cfi
;
231 unsigned funcdef_number
;
232 unsigned all_throwers_are_sibcalls
: 1;
233 unsigned nothrow
: 1;
234 unsigned uses_eh_lsda
: 1;
238 /* Maximum size (in bytes) of an artificially generated label. */
239 #define MAX_ARTIFICIAL_LABEL_BYTES 30
241 /* The size of addresses as they appear in the Dwarf 2 data.
242 Some architectures use word addresses to refer to code locations,
243 but Dwarf 2 info always uses byte addresses. On such machines,
244 Dwarf 2 addresses need to be larger than the architecture's
246 #ifndef DWARF2_ADDR_SIZE
247 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
250 /* The size in bytes of a DWARF field indicating an offset or length
251 relative to a debug info section, specified to be 4 bytes in the
252 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
255 #ifndef DWARF_OFFSET_SIZE
256 #define DWARF_OFFSET_SIZE 4
259 /* According to the (draft) DWARF 3 specification, the initial length
260 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
261 bytes are 0xffffffff, followed by the length stored in the next 8
264 However, the SGI/MIPS ABI uses an initial length which is equal to
265 DWARF_OFFSET_SIZE. It is defined (elsewhere) accordingly. */
267 #ifndef DWARF_INITIAL_LENGTH_SIZE
268 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
271 #define DWARF_VERSION 2
273 /* Round SIZE up to the nearest BOUNDARY. */
274 #define DWARF_ROUND(SIZE,BOUNDARY) \
275 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
277 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
278 #ifndef DWARF_CIE_DATA_ALIGNMENT
279 #ifdef STACK_GROWS_DOWNWARD
280 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
282 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
286 /* A pointer to the base of a table that contains frame description
287 information for each routine. */
288 static GTY((length ("fde_table_allocated"))) dw_fde_ref fde_table
;
290 /* Number of elements currently allocated for fde_table. */
291 static GTY(()) unsigned fde_table_allocated
;
293 /* Number of elements in fde_table currently in use. */
294 static GTY(()) unsigned fde_table_in_use
;
296 /* Size (in elements) of increments by which we may expand the
298 #define FDE_TABLE_INCREMENT 256
300 /* A list of call frame insns for the CIE. */
301 static GTY(()) dw_cfi_ref cie_cfi_head
;
303 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
304 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
305 attribute that accelerates the lookup of the FDE associated
306 with the subprogram. This variable holds the table index of the FDE
307 associated with the current function (body) definition. */
308 static unsigned current_funcdef_fde
;
311 struct indirect_string_node
GTY(())
314 unsigned int refcount
;
319 static GTY ((param_is (struct indirect_string_node
))) htab_t debug_str_hash
;
321 static GTY(()) int dw2_string_counter
;
322 static GTY(()) unsigned long dwarf2out_cfi_label_num
;
324 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
326 /* Forward declarations for functions defined in this file. */
328 static char *stripattributes (const char *);
329 static const char *dwarf_cfi_name (unsigned);
330 static dw_cfi_ref
new_cfi (void);
331 static void add_cfi (dw_cfi_ref
*, dw_cfi_ref
);
332 static void add_fde_cfi (const char *, dw_cfi_ref
);
333 static void lookup_cfa_1 (dw_cfi_ref
, dw_cfa_location
*);
334 static void lookup_cfa (dw_cfa_location
*);
335 static void reg_save (const char *, unsigned, unsigned, HOST_WIDE_INT
);
336 static void initial_return_save (rtx
);
337 static HOST_WIDE_INT
stack_adjust_offset (rtx
);
338 static void output_cfi (dw_cfi_ref
, dw_fde_ref
, int);
339 static void output_call_frame_info (int);
340 static void dwarf2out_stack_adjust (rtx
, bool);
341 static void flush_queued_reg_saves (void);
342 static bool clobbers_queued_reg_save (rtx
);
343 static void dwarf2out_frame_debug_expr (rtx
, const char *);
345 /* Support for complex CFA locations. */
346 static void output_cfa_loc (dw_cfi_ref
);
347 static void get_cfa_from_loc_descr (dw_cfa_location
*,
348 struct dw_loc_descr_struct
*);
349 static struct dw_loc_descr_struct
*build_cfa_loc
351 static void def_cfa_1 (const char *, dw_cfa_location
*);
353 /* How to start an assembler comment. */
354 #ifndef ASM_COMMENT_START
355 #define ASM_COMMENT_START ";#"
358 /* Data and reference forms for relocatable data. */
359 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
360 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
362 #ifndef DEBUG_FRAME_SECTION
363 #define DEBUG_FRAME_SECTION ".debug_frame"
366 #ifndef FUNC_BEGIN_LABEL
367 #define FUNC_BEGIN_LABEL "LFB"
370 #ifndef FUNC_END_LABEL
371 #define FUNC_END_LABEL "LFE"
374 #ifndef FRAME_BEGIN_LABEL
375 #define FRAME_BEGIN_LABEL "Lframe"
377 #define CIE_AFTER_SIZE_LABEL "LSCIE"
378 #define CIE_END_LABEL "LECIE"
379 #define FDE_LABEL "LSFDE"
380 #define FDE_AFTER_SIZE_LABEL "LASFDE"
381 #define FDE_END_LABEL "LEFDE"
382 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
383 #define LINE_NUMBER_END_LABEL "LELT"
384 #define LN_PROLOG_AS_LABEL "LASLTP"
385 #define LN_PROLOG_END_LABEL "LELTP"
386 #define DIE_LABEL_PREFIX "DW"
388 /* The DWARF 2 CFA column which tracks the return address. Normally this
389 is the column for PC, or the first column after all of the hard
391 #ifndef DWARF_FRAME_RETURN_COLUMN
393 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
395 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
399 /* The mapping from gcc register number to DWARF 2 CFA column number. By
400 default, we just provide columns for all registers. */
401 #ifndef DWARF_FRAME_REGNUM
402 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
405 /* Hook used by __throw. */
408 expand_builtin_dwarf_sp_column (void)
410 return GEN_INT (DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM
));
413 /* Return a pointer to a copy of the section string name S with all
414 attributes stripped off, and an asterisk prepended (for assemble_name). */
417 stripattributes (const char *s
)
419 char *stripped
= XNEWVEC (char, strlen (s
) + 2);
424 while (*s
&& *s
!= ',')
431 /* Generate code to initialize the register size table. */
434 expand_builtin_init_dwarf_reg_sizes (tree address
)
437 enum machine_mode mode
= TYPE_MODE (char_type_node
);
438 rtx addr
= expand_normal (address
);
439 rtx mem
= gen_rtx_MEM (BLKmode
, addr
);
440 bool wrote_return_column
= false;
442 for (i
= 0; i
< FIRST_PSEUDO_REGISTER
; i
++)
443 if (DWARF_FRAME_REGNUM (i
) < DWARF_FRAME_REGISTERS
)
445 HOST_WIDE_INT offset
= DWARF_FRAME_REGNUM (i
) * GET_MODE_SIZE (mode
);
446 enum machine_mode save_mode
= reg_raw_mode
[i
];
449 if (HARD_REGNO_CALL_PART_CLOBBERED (i
, save_mode
))
450 save_mode
= choose_hard_reg_mode (i
, 1, true);
451 if (DWARF_FRAME_REGNUM (i
) == DWARF_FRAME_RETURN_COLUMN
)
453 if (save_mode
== VOIDmode
)
455 wrote_return_column
= true;
457 size
= GET_MODE_SIZE (save_mode
);
461 emit_move_insn (adjust_address (mem
, mode
, offset
),
462 gen_int_mode (size
, mode
));
465 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
466 gcc_assert (wrote_return_column
);
467 i
= DWARF_ALT_FRAME_RETURN_COLUMN
;
468 wrote_return_column
= false;
470 i
= DWARF_FRAME_RETURN_COLUMN
;
473 if (! wrote_return_column
)
475 enum machine_mode save_mode
= Pmode
;
476 HOST_WIDE_INT offset
= i
* GET_MODE_SIZE (mode
);
477 HOST_WIDE_INT size
= GET_MODE_SIZE (save_mode
);
478 emit_move_insn (adjust_address (mem
, mode
, offset
), GEN_INT (size
));
482 /* Convert a DWARF call frame info. operation to its string name */
485 dwarf_cfi_name (unsigned int cfi_opc
)
489 case DW_CFA_advance_loc
:
490 return "DW_CFA_advance_loc";
492 return "DW_CFA_offset";
494 return "DW_CFA_restore";
498 return "DW_CFA_set_loc";
499 case DW_CFA_advance_loc1
:
500 return "DW_CFA_advance_loc1";
501 case DW_CFA_advance_loc2
:
502 return "DW_CFA_advance_loc2";
503 case DW_CFA_advance_loc4
:
504 return "DW_CFA_advance_loc4";
505 case DW_CFA_offset_extended
:
506 return "DW_CFA_offset_extended";
507 case DW_CFA_restore_extended
:
508 return "DW_CFA_restore_extended";
509 case DW_CFA_undefined
:
510 return "DW_CFA_undefined";
511 case DW_CFA_same_value
:
512 return "DW_CFA_same_value";
513 case DW_CFA_register
:
514 return "DW_CFA_register";
515 case DW_CFA_remember_state
:
516 return "DW_CFA_remember_state";
517 case DW_CFA_restore_state
:
518 return "DW_CFA_restore_state";
520 return "DW_CFA_def_cfa";
521 case DW_CFA_def_cfa_register
:
522 return "DW_CFA_def_cfa_register";
523 case DW_CFA_def_cfa_offset
:
524 return "DW_CFA_def_cfa_offset";
527 case DW_CFA_def_cfa_expression
:
528 return "DW_CFA_def_cfa_expression";
529 case DW_CFA_expression
:
530 return "DW_CFA_expression";
531 case DW_CFA_offset_extended_sf
:
532 return "DW_CFA_offset_extended_sf";
533 case DW_CFA_def_cfa_sf
:
534 return "DW_CFA_def_cfa_sf";
535 case DW_CFA_def_cfa_offset_sf
:
536 return "DW_CFA_def_cfa_offset_sf";
538 /* SGI/MIPS specific */
539 case DW_CFA_MIPS_advance_loc8
:
540 return "DW_CFA_MIPS_advance_loc8";
543 case DW_CFA_GNU_window_save
:
544 return "DW_CFA_GNU_window_save";
545 case DW_CFA_GNU_args_size
:
546 return "DW_CFA_GNU_args_size";
547 case DW_CFA_GNU_negative_offset_extended
:
548 return "DW_CFA_GNU_negative_offset_extended";
551 return "DW_CFA_<unknown>";
555 /* Return a pointer to a newly allocated Call Frame Instruction. */
557 static inline dw_cfi_ref
560 dw_cfi_ref cfi
= ggc_alloc (sizeof (dw_cfi_node
));
562 cfi
->dw_cfi_next
= NULL
;
563 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= 0;
564 cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
= 0;
569 /* Add a Call Frame Instruction to list of instructions. */
572 add_cfi (dw_cfi_ref
*list_head
, dw_cfi_ref cfi
)
576 /* Find the end of the chain. */
577 for (p
= list_head
; (*p
) != NULL
; p
= &(*p
)->dw_cfi_next
)
583 /* Generate a new label for the CFI info to refer to. */
586 dwarf2out_cfi_label (void)
588 static char label
[20];
590 ASM_GENERATE_INTERNAL_LABEL (label
, "LCFI", dwarf2out_cfi_label_num
++);
591 ASM_OUTPUT_LABEL (asm_out_file
, label
);
595 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
596 or to the CIE if LABEL is NULL. */
599 add_fde_cfi (const char *label
, dw_cfi_ref cfi
)
603 dw_fde_ref fde
= &fde_table
[fde_table_in_use
- 1];
606 label
= dwarf2out_cfi_label ();
608 if (fde
->dw_fde_current_label
== NULL
609 || strcmp (label
, fde
->dw_fde_current_label
) != 0)
613 fde
->dw_fde_current_label
= label
= xstrdup (label
);
615 /* Set the location counter to the new label. */
617 xcfi
->dw_cfi_opc
= DW_CFA_advance_loc4
;
618 xcfi
->dw_cfi_oprnd1
.dw_cfi_addr
= label
;
619 add_cfi (&fde
->dw_fde_cfi
, xcfi
);
622 add_cfi (&fde
->dw_fde_cfi
, cfi
);
626 add_cfi (&cie_cfi_head
, cfi
);
629 /* Subroutine of lookup_cfa. */
632 lookup_cfa_1 (dw_cfi_ref cfi
, dw_cfa_location
*loc
)
634 switch (cfi
->dw_cfi_opc
)
636 case DW_CFA_def_cfa_offset
:
637 loc
->offset
= cfi
->dw_cfi_oprnd1
.dw_cfi_offset
;
639 case DW_CFA_def_cfa_offset_sf
:
641 = cfi
->dw_cfi_oprnd1
.dw_cfi_offset
* DWARF_CIE_DATA_ALIGNMENT
;
643 case DW_CFA_def_cfa_register
:
644 loc
->reg
= cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
;
647 loc
->reg
= cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
;
648 loc
->offset
= cfi
->dw_cfi_oprnd2
.dw_cfi_offset
;
650 case DW_CFA_def_cfa_sf
:
651 loc
->reg
= cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
;
653 = cfi
->dw_cfi_oprnd2
.dw_cfi_offset
* DWARF_CIE_DATA_ALIGNMENT
;
655 case DW_CFA_def_cfa_expression
:
656 get_cfa_from_loc_descr (loc
, cfi
->dw_cfi_oprnd1
.dw_cfi_loc
);
663 /* Find the previous value for the CFA. */
666 lookup_cfa (dw_cfa_location
*loc
)
670 loc
->reg
= INVALID_REGNUM
;
673 loc
->base_offset
= 0;
675 for (cfi
= cie_cfi_head
; cfi
; cfi
= cfi
->dw_cfi_next
)
676 lookup_cfa_1 (cfi
, loc
);
678 if (fde_table_in_use
)
680 dw_fde_ref fde
= &fde_table
[fde_table_in_use
- 1];
681 for (cfi
= fde
->dw_fde_cfi
; cfi
; cfi
= cfi
->dw_cfi_next
)
682 lookup_cfa_1 (cfi
, loc
);
686 /* The current rule for calculating the DWARF2 canonical frame address. */
687 static dw_cfa_location cfa
;
689 /* The register used for saving registers to the stack, and its offset
691 static dw_cfa_location cfa_store
;
693 /* The running total of the size of arguments pushed onto the stack. */
694 static HOST_WIDE_INT args_size
;
696 /* The last args_size we actually output. */
697 static HOST_WIDE_INT old_args_size
;
699 /* Entry point to update the canonical frame address (CFA).
700 LABEL is passed to add_fde_cfi. The value of CFA is now to be
701 calculated from REG+OFFSET. */
704 dwarf2out_def_cfa (const char *label
, unsigned int reg
, HOST_WIDE_INT offset
)
711 def_cfa_1 (label
, &loc
);
714 /* Determine if two dw_cfa_location structures define the same data. */
717 cfa_equal_p (const dw_cfa_location
*loc1
, const dw_cfa_location
*loc2
)
719 return (loc1
->reg
== loc2
->reg
720 && loc1
->offset
== loc2
->offset
721 && loc1
->indirect
== loc2
->indirect
722 && (loc1
->indirect
== 0
723 || loc1
->base_offset
== loc2
->base_offset
));
726 /* This routine does the actual work. The CFA is now calculated from
727 the dw_cfa_location structure. */
730 def_cfa_1 (const char *label
, dw_cfa_location
*loc_p
)
733 dw_cfa_location old_cfa
, loc
;
738 if (cfa_store
.reg
== loc
.reg
&& loc
.indirect
== 0)
739 cfa_store
.offset
= loc
.offset
;
741 loc
.reg
= DWARF_FRAME_REGNUM (loc
.reg
);
742 lookup_cfa (&old_cfa
);
744 /* If nothing changed, no need to issue any call frame instructions. */
745 if (cfa_equal_p (&loc
, &old_cfa
))
750 if (loc
.reg
== old_cfa
.reg
&& !loc
.indirect
)
752 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction, indicating
753 the CFA register did not change but the offset did. */
756 HOST_WIDE_INT f_offset
= loc
.offset
/ DWARF_CIE_DATA_ALIGNMENT
;
757 gcc_assert (f_offset
* DWARF_CIE_DATA_ALIGNMENT
== loc
.offset
);
759 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_offset_sf
;
760 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
= f_offset
;
764 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_offset
;
765 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
= loc
.offset
;
769 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
770 else if (loc
.offset
== old_cfa
.offset
771 && old_cfa
.reg
!= INVALID_REGNUM
774 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
775 indicating the CFA register has changed to <register> but the
776 offset has not changed. */
777 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_register
;
778 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= loc
.reg
;
782 else if (loc
.indirect
== 0)
784 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
785 indicating the CFA register has changed to <register> with
786 the specified offset. */
789 HOST_WIDE_INT f_offset
= loc
.offset
/ DWARF_CIE_DATA_ALIGNMENT
;
790 gcc_assert (f_offset
* DWARF_CIE_DATA_ALIGNMENT
== loc
.offset
);
792 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_sf
;
793 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= loc
.reg
;
794 cfi
->dw_cfi_oprnd2
.dw_cfi_offset
= f_offset
;
798 cfi
->dw_cfi_opc
= DW_CFA_def_cfa
;
799 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= loc
.reg
;
800 cfi
->dw_cfi_oprnd2
.dw_cfi_offset
= loc
.offset
;
805 /* Construct a DW_CFA_def_cfa_expression instruction to
806 calculate the CFA using a full location expression since no
807 register-offset pair is available. */
808 struct dw_loc_descr_struct
*loc_list
;
810 cfi
->dw_cfi_opc
= DW_CFA_def_cfa_expression
;
811 loc_list
= build_cfa_loc (&loc
);
812 cfi
->dw_cfi_oprnd1
.dw_cfi_loc
= loc_list
;
815 add_fde_cfi (label
, cfi
);
818 /* Add the CFI for saving a register. REG is the CFA column number.
819 LABEL is passed to add_fde_cfi.
820 If SREG is -1, the register is saved at OFFSET from the CFA;
821 otherwise it is saved in SREG. */
824 reg_save (const char *label
, unsigned int reg
, unsigned int sreg
, HOST_WIDE_INT offset
)
826 dw_cfi_ref cfi
= new_cfi ();
828 cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
= reg
;
830 if (sreg
== INVALID_REGNUM
)
833 /* The register number won't fit in 6 bits, so we have to use
835 cfi
->dw_cfi_opc
= DW_CFA_offset_extended
;
837 cfi
->dw_cfi_opc
= DW_CFA_offset
;
839 #ifdef ENABLE_CHECKING
841 /* If we get an offset that is not a multiple of
842 DWARF_CIE_DATA_ALIGNMENT, there is either a bug in the
843 definition of DWARF_CIE_DATA_ALIGNMENT, or a bug in the machine
845 HOST_WIDE_INT check_offset
= offset
/ DWARF_CIE_DATA_ALIGNMENT
;
847 gcc_assert (check_offset
* DWARF_CIE_DATA_ALIGNMENT
== offset
);
850 offset
/= DWARF_CIE_DATA_ALIGNMENT
;
852 cfi
->dw_cfi_opc
= DW_CFA_offset_extended_sf
;
854 cfi
->dw_cfi_oprnd2
.dw_cfi_offset
= offset
;
856 else if (sreg
== reg
)
857 cfi
->dw_cfi_opc
= DW_CFA_same_value
;
860 cfi
->dw_cfi_opc
= DW_CFA_register
;
861 cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
= sreg
;
864 add_fde_cfi (label
, cfi
);
867 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
868 This CFI tells the unwinder that it needs to restore the window registers
869 from the previous frame's window save area.
871 ??? Perhaps we should note in the CIE where windows are saved (instead of
872 assuming 0(cfa)) and what registers are in the window. */
875 dwarf2out_window_save (const char *label
)
877 dw_cfi_ref cfi
= new_cfi ();
879 cfi
->dw_cfi_opc
= DW_CFA_GNU_window_save
;
880 add_fde_cfi (label
, cfi
);
883 /* Add a CFI to update the running total of the size of arguments
884 pushed onto the stack. */
887 dwarf2out_args_size (const char *label
, HOST_WIDE_INT size
)
891 if (size
== old_args_size
)
894 old_args_size
= size
;
897 cfi
->dw_cfi_opc
= DW_CFA_GNU_args_size
;
898 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
= size
;
899 add_fde_cfi (label
, cfi
);
902 /* Entry point for saving a register to the stack. REG is the GCC register
903 number. LABEL and OFFSET are passed to reg_save. */
906 dwarf2out_reg_save (const char *label
, unsigned int reg
, HOST_WIDE_INT offset
)
908 reg_save (label
, DWARF_FRAME_REGNUM (reg
), INVALID_REGNUM
, offset
);
911 /* Entry point for saving the return address in the stack.
912 LABEL and OFFSET are passed to reg_save. */
915 dwarf2out_return_save (const char *label
, HOST_WIDE_INT offset
)
917 reg_save (label
, DWARF_FRAME_RETURN_COLUMN
, INVALID_REGNUM
, offset
);
920 /* Entry point for saving the return address in a register.
921 LABEL and SREG are passed to reg_save. */
924 dwarf2out_return_reg (const char *label
, unsigned int sreg
)
926 reg_save (label
, DWARF_FRAME_RETURN_COLUMN
, DWARF_FRAME_REGNUM (sreg
), 0);
929 /* Record the initial position of the return address. RTL is
930 INCOMING_RETURN_ADDR_RTX. */
933 initial_return_save (rtx rtl
)
935 unsigned int reg
= INVALID_REGNUM
;
936 HOST_WIDE_INT offset
= 0;
938 switch (GET_CODE (rtl
))
941 /* RA is in a register. */
942 reg
= DWARF_FRAME_REGNUM (REGNO (rtl
));
946 /* RA is on the stack. */
948 switch (GET_CODE (rtl
))
951 gcc_assert (REGNO (rtl
) == STACK_POINTER_REGNUM
);
956 gcc_assert (REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
);
957 offset
= INTVAL (XEXP (rtl
, 1));
961 gcc_assert (REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
);
962 offset
= -INTVAL (XEXP (rtl
, 1));
972 /* The return address is at some offset from any value we can
973 actually load. For instance, on the SPARC it is in %i7+8. Just
974 ignore the offset for now; it doesn't matter for unwinding frames. */
975 gcc_assert (GET_CODE (XEXP (rtl
, 1)) == CONST_INT
);
976 initial_return_save (XEXP (rtl
, 0));
983 if (reg
!= DWARF_FRAME_RETURN_COLUMN
)
984 reg_save (NULL
, DWARF_FRAME_RETURN_COLUMN
, reg
, offset
- cfa
.offset
);
987 /* Given a SET, calculate the amount of stack adjustment it
991 stack_adjust_offset (rtx pattern
)
993 rtx src
= SET_SRC (pattern
);
994 rtx dest
= SET_DEST (pattern
);
995 HOST_WIDE_INT offset
= 0;
998 if (dest
== stack_pointer_rtx
)
1000 /* (set (reg sp) (plus (reg sp) (const_int))) */
1001 code
= GET_CODE (src
);
1002 if (! (code
== PLUS
|| code
== MINUS
)
1003 || XEXP (src
, 0) != stack_pointer_rtx
1004 || GET_CODE (XEXP (src
, 1)) != CONST_INT
)
1007 offset
= INTVAL (XEXP (src
, 1));
1011 else if (MEM_P (dest
))
1013 /* (set (mem (pre_dec (reg sp))) (foo)) */
1014 src
= XEXP (dest
, 0);
1015 code
= GET_CODE (src
);
1021 if (XEXP (src
, 0) == stack_pointer_rtx
)
1023 rtx val
= XEXP (XEXP (src
, 1), 1);
1024 /* We handle only adjustments by constant amount. */
1025 gcc_assert (GET_CODE (XEXP (src
, 1)) == PLUS
1026 && GET_CODE (val
) == CONST_INT
);
1027 offset
= -INTVAL (val
);
1034 if (XEXP (src
, 0) == stack_pointer_rtx
)
1036 offset
= GET_MODE_SIZE (GET_MODE (dest
));
1043 if (XEXP (src
, 0) == stack_pointer_rtx
)
1045 offset
= -GET_MODE_SIZE (GET_MODE (dest
));
1060 /* Check INSN to see if it looks like a push or a stack adjustment, and
1061 make a note of it if it does. EH uses this information to find out how
1062 much extra space it needs to pop off the stack. */
1065 dwarf2out_stack_adjust (rtx insn
, bool after_p
)
1067 HOST_WIDE_INT offset
;
1071 /* Don't handle epilogues at all. Certainly it would be wrong to do so
1072 with this function. Proper support would require all frame-related
1073 insns to be marked, and to be able to handle saving state around
1074 epilogues textually in the middle of the function. */
1075 if (prologue_epilogue_contains (insn
) || sibcall_epilogue_contains (insn
))
1078 /* If only calls can throw, and we have a frame pointer,
1079 save up adjustments until we see the CALL_INSN. */
1080 if (!flag_asynchronous_unwind_tables
&& cfa
.reg
!= STACK_POINTER_REGNUM
)
1082 if (CALL_P (insn
) && !after_p
)
1084 /* Extract the size of the args from the CALL rtx itself. */
1085 insn
= PATTERN (insn
);
1086 if (GET_CODE (insn
) == PARALLEL
)
1087 insn
= XVECEXP (insn
, 0, 0);
1088 if (GET_CODE (insn
) == SET
)
1089 insn
= SET_SRC (insn
);
1090 gcc_assert (GET_CODE (insn
) == CALL
);
1091 dwarf2out_args_size ("", INTVAL (XEXP (insn
, 1)));
1096 if (CALL_P (insn
) && !after_p
)
1098 if (!flag_asynchronous_unwind_tables
)
1099 dwarf2out_args_size ("", args_size
);
1102 else if (BARRIER_P (insn
))
1104 /* When we see a BARRIER, we know to reset args_size to 0. Usually
1105 the compiler will have already emitted a stack adjustment, but
1106 doesn't bother for calls to noreturn functions. */
1107 #ifdef STACK_GROWS_DOWNWARD
1108 offset
= -args_size
;
1113 else if (GET_CODE (PATTERN (insn
)) == SET
)
1114 offset
= stack_adjust_offset (PATTERN (insn
));
1115 else if (GET_CODE (PATTERN (insn
)) == PARALLEL
1116 || GET_CODE (PATTERN (insn
)) == SEQUENCE
)
1118 /* There may be stack adjustments inside compound insns. Search
1120 for (offset
= 0, i
= XVECLEN (PATTERN (insn
), 0) - 1; i
>= 0; i
--)
1121 if (GET_CODE (XVECEXP (PATTERN (insn
), 0, i
)) == SET
)
1122 offset
+= stack_adjust_offset (XVECEXP (PATTERN (insn
), 0, i
));
1130 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1131 cfa
.offset
+= offset
;
1133 #ifndef STACK_GROWS_DOWNWARD
1137 args_size
+= offset
;
1141 label
= dwarf2out_cfi_label ();
1142 def_cfa_1 (label
, &cfa
);
1143 if (flag_asynchronous_unwind_tables
)
1144 dwarf2out_args_size (label
, args_size
);
1149 /* We delay emitting a register save until either (a) we reach the end
1150 of the prologue or (b) the register is clobbered. This clusters
1151 register saves so that there are fewer pc advances. */
1153 struct queued_reg_save
GTY(())
1155 struct queued_reg_save
*next
;
1157 HOST_WIDE_INT cfa_offset
;
1161 static GTY(()) struct queued_reg_save
*queued_reg_saves
;
1163 /* The caller's ORIG_REG is saved in SAVED_IN_REG. */
1164 struct reg_saved_in_data
GTY(()) {
1169 /* A list of registers saved in other registers.
1170 The list intentionally has a small maximum capacity of 4; if your
1171 port needs more than that, you might consider implementing a
1172 more efficient data structure. */
1173 static GTY(()) struct reg_saved_in_data regs_saved_in_regs
[4];
1174 static GTY(()) size_t num_regs_saved_in_regs
;
1176 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1177 static const char *last_reg_save_label
;
1179 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1180 SREG, or if SREG is NULL then it is saved at OFFSET to the CFA. */
1183 queue_reg_save (const char *label
, rtx reg
, rtx sreg
, HOST_WIDE_INT offset
)
1185 struct queued_reg_save
*q
;
1187 /* Duplicates waste space, but it's also necessary to remove them
1188 for correctness, since the queue gets output in reverse
1190 for (q
= queued_reg_saves
; q
!= NULL
; q
= q
->next
)
1191 if (REGNO (q
->reg
) == REGNO (reg
))
1196 q
= ggc_alloc (sizeof (*q
));
1197 q
->next
= queued_reg_saves
;
1198 queued_reg_saves
= q
;
1202 q
->cfa_offset
= offset
;
1203 q
->saved_reg
= sreg
;
1205 last_reg_save_label
= label
;
1208 /* Output all the entries in QUEUED_REG_SAVES. */
1211 flush_queued_reg_saves (void)
1213 struct queued_reg_save
*q
;
1215 for (q
= queued_reg_saves
; q
; q
= q
->next
)
1218 unsigned int reg
, sreg
;
1220 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1221 if (REGNO (regs_saved_in_regs
[i
].orig_reg
) == REGNO (q
->reg
))
1223 if (q
->saved_reg
&& i
== num_regs_saved_in_regs
)
1225 gcc_assert (i
!= ARRAY_SIZE (regs_saved_in_regs
));
1226 num_regs_saved_in_regs
++;
1228 if (i
!= num_regs_saved_in_regs
)
1230 regs_saved_in_regs
[i
].orig_reg
= q
->reg
;
1231 regs_saved_in_regs
[i
].saved_in_reg
= q
->saved_reg
;
1234 reg
= DWARF_FRAME_REGNUM (REGNO (q
->reg
));
1236 sreg
= DWARF_FRAME_REGNUM (REGNO (q
->saved_reg
));
1238 sreg
= INVALID_REGNUM
;
1239 reg_save (last_reg_save_label
, reg
, sreg
, q
->cfa_offset
);
1242 queued_reg_saves
= NULL
;
1243 last_reg_save_label
= NULL
;
1246 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1247 location for? Or, does it clobber a register which we've previously
1248 said that some other register is saved in, and for which we now
1249 have a new location for? */
1252 clobbers_queued_reg_save (rtx insn
)
1254 struct queued_reg_save
*q
;
1256 for (q
= queued_reg_saves
; q
; q
= q
->next
)
1259 if (modified_in_p (q
->reg
, insn
))
1261 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1262 if (REGNO (q
->reg
) == REGNO (regs_saved_in_regs
[i
].orig_reg
)
1263 && modified_in_p (regs_saved_in_regs
[i
].saved_in_reg
, insn
))
1270 /* Entry point for saving the first register into the second. */
1273 dwarf2out_reg_save_reg (const char *label
, rtx reg
, rtx sreg
)
1276 unsigned int regno
, sregno
;
1278 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1279 if (REGNO (regs_saved_in_regs
[i
].orig_reg
) == REGNO (reg
))
1281 if (i
== num_regs_saved_in_regs
)
1283 gcc_assert (i
!= ARRAY_SIZE (regs_saved_in_regs
));
1284 num_regs_saved_in_regs
++;
1286 regs_saved_in_regs
[i
].orig_reg
= reg
;
1287 regs_saved_in_regs
[i
].saved_in_reg
= sreg
;
1289 regno
= DWARF_FRAME_REGNUM (REGNO (reg
));
1290 sregno
= DWARF_FRAME_REGNUM (REGNO (sreg
));
1291 reg_save (label
, regno
, sregno
, 0);
1294 /* What register, if any, is currently saved in REG? */
1297 reg_saved_in (rtx reg
)
1299 unsigned int regn
= REGNO (reg
);
1301 struct queued_reg_save
*q
;
1303 for (q
= queued_reg_saves
; q
; q
= q
->next
)
1304 if (q
->saved_reg
&& regn
== REGNO (q
->saved_reg
))
1307 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1308 if (regs_saved_in_regs
[i
].saved_in_reg
1309 && regn
== REGNO (regs_saved_in_regs
[i
].saved_in_reg
))
1310 return regs_saved_in_regs
[i
].orig_reg
;
1316 /* A temporary register holding an integral value used in adjusting SP
1317 or setting up the store_reg. The "offset" field holds the integer
1318 value, not an offset. */
1319 static dw_cfa_location cfa_temp
;
1321 /* Record call frame debugging information for an expression EXPR,
1322 which either sets SP or FP (adjusting how we calculate the frame
1323 address) or saves a register to the stack or another register.
1324 LABEL indicates the address of EXPR.
1326 This function encodes a state machine mapping rtxes to actions on
1327 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1328 users need not read the source code.
1330 The High-Level Picture
1332 Changes in the register we use to calculate the CFA: Currently we
1333 assume that if you copy the CFA register into another register, we
1334 should take the other one as the new CFA register; this seems to
1335 work pretty well. If it's wrong for some target, it's simple
1336 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1338 Changes in the register we use for saving registers to the stack:
1339 This is usually SP, but not always. Again, we deduce that if you
1340 copy SP into another register (and SP is not the CFA register),
1341 then the new register is the one we will be using for register
1342 saves. This also seems to work.
1344 Register saves: There's not much guesswork about this one; if
1345 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1346 register save, and the register used to calculate the destination
1347 had better be the one we think we're using for this purpose.
1348 It's also assumed that a copy from a call-saved register to another
1349 register is saving that register if RTX_FRAME_RELATED_P is set on
1350 that instruction. If the copy is from a call-saved register to
1351 the *same* register, that means that the register is now the same
1352 value as in the caller.
1354 Except: If the register being saved is the CFA register, and the
1355 offset is nonzero, we are saving the CFA, so we assume we have to
1356 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
1357 the intent is to save the value of SP from the previous frame.
1359 In addition, if a register has previously been saved to a different
1362 Invariants / Summaries of Rules
1364 cfa current rule for calculating the CFA. It usually
1365 consists of a register and an offset.
1366 cfa_store register used by prologue code to save things to the stack
1367 cfa_store.offset is the offset from the value of
1368 cfa_store.reg to the actual CFA
1369 cfa_temp register holding an integral value. cfa_temp.offset
1370 stores the value, which will be used to adjust the
1371 stack pointer. cfa_temp is also used like cfa_store,
1372 to track stores to the stack via fp or a temp reg.
1374 Rules 1- 4: Setting a register's value to cfa.reg or an expression
1375 with cfa.reg as the first operand changes the cfa.reg and its
1376 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
1379 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
1380 expression yielding a constant. This sets cfa_temp.reg
1381 and cfa_temp.offset.
1383 Rule 5: Create a new register cfa_store used to save items to the
1386 Rules 10-14: Save a register to the stack. Define offset as the
1387 difference of the original location and cfa_store's
1388 location (or cfa_temp's location if cfa_temp is used).
1392 "{a,b}" indicates a choice of a xor b.
1393 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1396 (set <reg1> <reg2>:cfa.reg)
1397 effects: cfa.reg = <reg1>
1398 cfa.offset unchanged
1399 cfa_temp.reg = <reg1>
1400 cfa_temp.offset = cfa.offset
1403 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
1404 {<const_int>,<reg>:cfa_temp.reg}))
1405 effects: cfa.reg = sp if fp used
1406 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1407 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1408 if cfa_store.reg==sp
1411 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1412 effects: cfa.reg = fp
1413 cfa_offset += +/- <const_int>
1416 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1417 constraints: <reg1> != fp
1419 effects: cfa.reg = <reg1>
1420 cfa_temp.reg = <reg1>
1421 cfa_temp.offset = cfa.offset
1424 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1425 constraints: <reg1> != fp
1427 effects: cfa_store.reg = <reg1>
1428 cfa_store.offset = cfa.offset - cfa_temp.offset
1431 (set <reg> <const_int>)
1432 effects: cfa_temp.reg = <reg>
1433 cfa_temp.offset = <const_int>
1436 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1437 effects: cfa_temp.reg = <reg1>
1438 cfa_temp.offset |= <const_int>
1441 (set <reg> (high <exp>))
1445 (set <reg> (lo_sum <exp> <const_int>))
1446 effects: cfa_temp.reg = <reg>
1447 cfa_temp.offset = <const_int>
1450 (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1451 effects: cfa_store.offset -= <const_int>
1452 cfa.offset = cfa_store.offset if cfa.reg == sp
1454 cfa.base_offset = -cfa_store.offset
1457 (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
1458 effects: cfa_store.offset += -/+ mode_size(mem)
1459 cfa.offset = cfa_store.offset if cfa.reg == sp
1461 cfa.base_offset = -cfa_store.offset
1464 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
1467 effects: cfa.reg = <reg1>
1468 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1471 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1472 effects: cfa.reg = <reg1>
1473 cfa.base_offset = -{cfa_store,cfa_temp}.offset
1476 (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
1477 effects: cfa.reg = <reg1>
1478 cfa.base_offset = -cfa_temp.offset
1479 cfa_temp.offset -= mode_size(mem)
1482 Â (set <reg> {unspec, unspec_volatile})
1483 Â effects: target-dependent */
1486 dwarf2out_frame_debug_expr (rtx expr
, const char *label
)
1489 HOST_WIDE_INT offset
;
1491 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1492 the PARALLEL independently. The first element is always processed if
1493 it is a SET. This is for backward compatibility. Other elements
1494 are processed only if they are SETs and the RTX_FRAME_RELATED_P
1495 flag is set in them. */
1496 if (GET_CODE (expr
) == PARALLEL
|| GET_CODE (expr
) == SEQUENCE
)
1499 int limit
= XVECLEN (expr
, 0);
1501 for (par_index
= 0; par_index
< limit
; par_index
++)
1502 if (GET_CODE (XVECEXP (expr
, 0, par_index
)) == SET
1503 && (RTX_FRAME_RELATED_P (XVECEXP (expr
, 0, par_index
))
1505 dwarf2out_frame_debug_expr (XVECEXP (expr
, 0, par_index
), label
);
1510 gcc_assert (GET_CODE (expr
) == SET
);
1512 src
= SET_SRC (expr
);
1513 dest
= SET_DEST (expr
);
1517 rtx rsi
= reg_saved_in (src
);
1522 switch (GET_CODE (dest
))
1525 switch (GET_CODE (src
))
1527 /* Setting FP from SP. */
1529 if (cfa
.reg
== (unsigned) REGNO (src
))
1532 /* Update the CFA rule wrt SP or FP. Make sure src is
1533 relative to the current CFA register.
1535 We used to require that dest be either SP or FP, but the
1536 ARM copies SP to a temporary register, and from there to
1537 FP. So we just rely on the backends to only set
1538 RTX_FRAME_RELATED_P on appropriate insns. */
1539 cfa
.reg
= REGNO (dest
);
1540 cfa_temp
.reg
= cfa
.reg
;
1541 cfa_temp
.offset
= cfa
.offset
;
1545 /* Saving a register in a register. */
1546 gcc_assert (!fixed_regs
[REGNO (dest
)]
1547 /* For the SPARC and its register window. */
1548 || (DWARF_FRAME_REGNUM (REGNO (src
))
1549 == DWARF_FRAME_RETURN_COLUMN
));
1550 queue_reg_save (label
, src
, dest
, 0);
1557 if (dest
== stack_pointer_rtx
)
1561 switch (GET_CODE (XEXP (src
, 1)))
1564 offset
= INTVAL (XEXP (src
, 1));
1567 gcc_assert ((unsigned) REGNO (XEXP (src
, 1))
1569 offset
= cfa_temp
.offset
;
1575 if (XEXP (src
, 0) == hard_frame_pointer_rtx
)
1577 /* Restoring SP from FP in the epilogue. */
1578 gcc_assert (cfa
.reg
== (unsigned) HARD_FRAME_POINTER_REGNUM
);
1579 cfa
.reg
= STACK_POINTER_REGNUM
;
1581 else if (GET_CODE (src
) == LO_SUM
)
1582 /* Assume we've set the source reg of the LO_SUM from sp. */
1585 gcc_assert (XEXP (src
, 0) == stack_pointer_rtx
);
1587 if (GET_CODE (src
) != MINUS
)
1589 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1590 cfa
.offset
+= offset
;
1591 if (cfa_store
.reg
== STACK_POINTER_REGNUM
)
1592 cfa_store
.offset
+= offset
;
1594 else if (dest
== hard_frame_pointer_rtx
)
1597 /* Either setting the FP from an offset of the SP,
1598 or adjusting the FP */
1599 gcc_assert (frame_pointer_needed
);
1601 gcc_assert (REG_P (XEXP (src
, 0))
1602 && (unsigned) REGNO (XEXP (src
, 0)) == cfa
.reg
1603 && GET_CODE (XEXP (src
, 1)) == CONST_INT
);
1604 offset
= INTVAL (XEXP (src
, 1));
1605 if (GET_CODE (src
) != MINUS
)
1607 cfa
.offset
+= offset
;
1608 cfa
.reg
= HARD_FRAME_POINTER_REGNUM
;
1612 gcc_assert (GET_CODE (src
) != MINUS
);
1615 if (REG_P (XEXP (src
, 0))
1616 && REGNO (XEXP (src
, 0)) == cfa
.reg
1617 && GET_CODE (XEXP (src
, 1)) == CONST_INT
)
1619 /* Setting a temporary CFA register that will be copied
1620 into the FP later on. */
1621 offset
= - INTVAL (XEXP (src
, 1));
1622 cfa
.offset
+= offset
;
1623 cfa
.reg
= REGNO (dest
);
1624 /* Or used to save regs to the stack. */
1625 cfa_temp
.reg
= cfa
.reg
;
1626 cfa_temp
.offset
= cfa
.offset
;
1630 else if (REG_P (XEXP (src
, 0))
1631 && REGNO (XEXP (src
, 0)) == cfa_temp
.reg
1632 && XEXP (src
, 1) == stack_pointer_rtx
)
1634 /* Setting a scratch register that we will use instead
1635 of SP for saving registers to the stack. */
1636 gcc_assert (cfa
.reg
== STACK_POINTER_REGNUM
);
1637 cfa_store
.reg
= REGNO (dest
);
1638 cfa_store
.offset
= cfa
.offset
- cfa_temp
.offset
;
1642 else if (GET_CODE (src
) == LO_SUM
1643 && GET_CODE (XEXP (src
, 1)) == CONST_INT
)
1645 cfa_temp
.reg
= REGNO (dest
);
1646 cfa_temp
.offset
= INTVAL (XEXP (src
, 1));
1655 cfa_temp
.reg
= REGNO (dest
);
1656 cfa_temp
.offset
= INTVAL (src
);
1661 gcc_assert (REG_P (XEXP (src
, 0))
1662 && (unsigned) REGNO (XEXP (src
, 0)) == cfa_temp
.reg
1663 && GET_CODE (XEXP (src
, 1)) == CONST_INT
);
1665 if ((unsigned) REGNO (dest
) != cfa_temp
.reg
)
1666 cfa_temp
.reg
= REGNO (dest
);
1667 cfa_temp
.offset
|= INTVAL (XEXP (src
, 1));
1670 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
1671 which will fill in all of the bits. */
1678 case UNSPEC_VOLATILE
:
1679 gcc_assert (targetm
.dwarf_handle_frame_unspec
);
1680 targetm
.dwarf_handle_frame_unspec (label
, expr
, XINT (src
, 1));
1687 def_cfa_1 (label
, &cfa
);
1691 gcc_assert (REG_P (src
));
1693 /* Saving a register to the stack. Make sure dest is relative to the
1695 switch (GET_CODE (XEXP (dest
, 0)))
1700 /* We can't handle variable size modifications. */
1701 gcc_assert (GET_CODE (XEXP (XEXP (XEXP (dest
, 0), 1), 1))
1703 offset
= -INTVAL (XEXP (XEXP (XEXP (dest
, 0), 1), 1));
1705 gcc_assert (REGNO (XEXP (XEXP (dest
, 0), 0)) == STACK_POINTER_REGNUM
1706 && cfa_store
.reg
== STACK_POINTER_REGNUM
);
1708 cfa_store
.offset
+= offset
;
1709 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1710 cfa
.offset
= cfa_store
.offset
;
1712 offset
= -cfa_store
.offset
;
1718 offset
= GET_MODE_SIZE (GET_MODE (dest
));
1719 if (GET_CODE (XEXP (dest
, 0)) == PRE_INC
)
1722 gcc_assert (REGNO (XEXP (XEXP (dest
, 0), 0)) == STACK_POINTER_REGNUM
1723 && cfa_store
.reg
== STACK_POINTER_REGNUM
);
1725 cfa_store
.offset
+= offset
;
1726 if (cfa
.reg
== STACK_POINTER_REGNUM
)
1727 cfa
.offset
= cfa_store
.offset
;
1729 offset
= -cfa_store
.offset
;
1733 /* With an offset. */
1740 gcc_assert (GET_CODE (XEXP (XEXP (dest
, 0), 1)) == CONST_INT
1741 && REG_P (XEXP (XEXP (dest
, 0), 0)));
1742 offset
= INTVAL (XEXP (XEXP (dest
, 0), 1));
1743 if (GET_CODE (XEXP (dest
, 0)) == MINUS
)
1746 regno
= REGNO (XEXP (XEXP (dest
, 0), 0));
1748 if (cfa_store
.reg
== (unsigned) regno
)
1749 offset
-= cfa_store
.offset
;
1752 gcc_assert (cfa_temp
.reg
== (unsigned) regno
);
1753 offset
-= cfa_temp
.offset
;
1759 /* Without an offset. */
1762 int regno
= REGNO (XEXP (dest
, 0));
1764 if (cfa_store
.reg
== (unsigned) regno
)
1765 offset
= -cfa_store
.offset
;
1768 gcc_assert (cfa_temp
.reg
== (unsigned) regno
);
1769 offset
= -cfa_temp
.offset
;
1776 gcc_assert (cfa_temp
.reg
1777 == (unsigned) REGNO (XEXP (XEXP (dest
, 0), 0)));
1778 offset
= -cfa_temp
.offset
;
1779 cfa_temp
.offset
-= GET_MODE_SIZE (GET_MODE (dest
));
1786 if (REGNO (src
) != STACK_POINTER_REGNUM
1787 && REGNO (src
) != HARD_FRAME_POINTER_REGNUM
1788 && (unsigned) REGNO (src
) == cfa
.reg
)
1790 /* We're storing the current CFA reg into the stack. */
1792 if (cfa
.offset
== 0)
1794 /* If the source register is exactly the CFA, assume
1795 we're saving SP like any other register; this happens
1797 def_cfa_1 (label
, &cfa
);
1798 queue_reg_save (label
, stack_pointer_rtx
, NULL_RTX
, offset
);
1803 /* Otherwise, we'll need to look in the stack to
1804 calculate the CFA. */
1805 rtx x
= XEXP (dest
, 0);
1809 gcc_assert (REG_P (x
));
1811 cfa
.reg
= REGNO (x
);
1812 cfa
.base_offset
= offset
;
1814 def_cfa_1 (label
, &cfa
);
1819 def_cfa_1 (label
, &cfa
);
1820 queue_reg_save (label
, src
, NULL_RTX
, offset
);
1828 /* Record call frame debugging information for INSN, which either
1829 sets SP or FP (adjusting how we calculate the frame address) or saves a
1830 register to the stack. If INSN is NULL_RTX, initialize our state.
1832 If AFTER_P is false, we're being called before the insn is emitted,
1833 otherwise after. Call instructions get invoked twice. */
1836 dwarf2out_frame_debug (rtx insn
, bool after_p
)
1841 if (insn
== NULL_RTX
)
1845 /* Flush any queued register saves. */
1846 flush_queued_reg_saves ();
1848 /* Set up state for generating call frame debug info. */
1851 == (unsigned long)DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM
));
1853 cfa
.reg
= STACK_POINTER_REGNUM
;
1856 cfa_temp
.offset
= 0;
1858 for (i
= 0; i
< num_regs_saved_in_regs
; i
++)
1860 regs_saved_in_regs
[i
].orig_reg
= NULL_RTX
;
1861 regs_saved_in_regs
[i
].saved_in_reg
= NULL_RTX
;
1863 num_regs_saved_in_regs
= 0;
1867 if (!NONJUMP_INSN_P (insn
) || clobbers_queued_reg_save (insn
))
1868 flush_queued_reg_saves ();
1870 if (! RTX_FRAME_RELATED_P (insn
))
1872 if (!ACCUMULATE_OUTGOING_ARGS
)
1873 dwarf2out_stack_adjust (insn
, after_p
);
1877 label
= dwarf2out_cfi_label ();
1878 src
= find_reg_note (insn
, REG_FRAME_RELATED_EXPR
, NULL_RTX
);
1880 insn
= XEXP (src
, 0);
1882 insn
= PATTERN (insn
);
1884 dwarf2out_frame_debug_expr (insn
, label
);
1889 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
1890 static enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
1891 (enum dwarf_call_frame_info cfi
);
1893 static enum dw_cfi_oprnd_type
1894 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi
)
1899 case DW_CFA_GNU_window_save
:
1900 return dw_cfi_oprnd_unused
;
1902 case DW_CFA_set_loc
:
1903 case DW_CFA_advance_loc1
:
1904 case DW_CFA_advance_loc2
:
1905 case DW_CFA_advance_loc4
:
1906 case DW_CFA_MIPS_advance_loc8
:
1907 return dw_cfi_oprnd_addr
;
1910 case DW_CFA_offset_extended
:
1911 case DW_CFA_def_cfa
:
1912 case DW_CFA_offset_extended_sf
:
1913 case DW_CFA_def_cfa_sf
:
1914 case DW_CFA_restore_extended
:
1915 case DW_CFA_undefined
:
1916 case DW_CFA_same_value
:
1917 case DW_CFA_def_cfa_register
:
1918 case DW_CFA_register
:
1919 return dw_cfi_oprnd_reg_num
;
1921 case DW_CFA_def_cfa_offset
:
1922 case DW_CFA_GNU_args_size
:
1923 case DW_CFA_def_cfa_offset_sf
:
1924 return dw_cfi_oprnd_offset
;
1926 case DW_CFA_def_cfa_expression
:
1927 case DW_CFA_expression
:
1928 return dw_cfi_oprnd_loc
;
1935 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
1936 static enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
1937 (enum dwarf_call_frame_info cfi
);
1939 static enum dw_cfi_oprnd_type
1940 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi
)
1944 case DW_CFA_def_cfa
:
1945 case DW_CFA_def_cfa_sf
:
1947 case DW_CFA_offset_extended_sf
:
1948 case DW_CFA_offset_extended
:
1949 return dw_cfi_oprnd_offset
;
1951 case DW_CFA_register
:
1952 return dw_cfi_oprnd_reg_num
;
1955 return dw_cfi_oprnd_unused
;
1959 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1961 /* Switch to eh_frame_section. If we don't have an eh_frame_section,
1962 switch to the data section instead, and write out a synthetic label
1966 switch_to_eh_frame_section (void)
1970 #ifdef EH_FRAME_SECTION_NAME
1971 if (eh_frame_section
== 0)
1975 if (EH_TABLES_CAN_BE_READ_ONLY
)
1981 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
1983 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
1985 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
1987 flags
= ((! flag_pic
1988 || ((fde_encoding
& 0x70) != DW_EH_PE_absptr
1989 && (fde_encoding
& 0x70) != DW_EH_PE_aligned
1990 && (per_encoding
& 0x70) != DW_EH_PE_absptr
1991 && (per_encoding
& 0x70) != DW_EH_PE_aligned
1992 && (lsda_encoding
& 0x70) != DW_EH_PE_absptr
1993 && (lsda_encoding
& 0x70) != DW_EH_PE_aligned
))
1994 ? 0 : SECTION_WRITE
);
1997 flags
= SECTION_WRITE
;
1998 eh_frame_section
= get_section (EH_FRAME_SECTION_NAME
, flags
, NULL
);
2002 if (eh_frame_section
)
2003 switch_to_section (eh_frame_section
);
2006 /* We have no special eh_frame section. Put the information in
2007 the data section and emit special labels to guide collect2. */
2008 switch_to_section (data_section
);
2009 label
= get_file_function_name ('F');
2010 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
2011 targetm
.asm_out
.globalize_label (asm_out_file
,
2012 IDENTIFIER_POINTER (label
));
2013 ASM_OUTPUT_LABEL (asm_out_file
, IDENTIFIER_POINTER (label
));
2017 /* Map register numbers held in the call frame info that gcc has
2018 collected using DWARF_FRAME_REGNUM to those that should be output in
2019 .debug_frame and .eh_frame. */
2020 #ifndef DWARF2_FRAME_REG_OUT
2021 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
2024 /* Output a Call Frame Information opcode and its operand(s). */
2027 output_cfi (dw_cfi_ref cfi
, dw_fde_ref fde
, int for_eh
)
2030 if (cfi
->dw_cfi_opc
== DW_CFA_advance_loc
)
2031 dw2_asm_output_data (1, (cfi
->dw_cfi_opc
2032 | (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
& 0x3f)),
2033 "DW_CFA_advance_loc " HOST_WIDE_INT_PRINT_HEX
,
2034 cfi
->dw_cfi_oprnd1
.dw_cfi_offset
);
2035 else if (cfi
->dw_cfi_opc
== DW_CFA_offset
)
2037 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2038 dw2_asm_output_data (1, (cfi
->dw_cfi_opc
| (r
& 0x3f)),
2039 "DW_CFA_offset, column 0x%lx", r
);
2040 dw2_asm_output_data_uleb128 (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
, NULL
);
2042 else if (cfi
->dw_cfi_opc
== DW_CFA_restore
)
2044 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2045 dw2_asm_output_data (1, (cfi
->dw_cfi_opc
| (r
& 0x3f)),
2046 "DW_CFA_restore, column 0x%lx", r
);
2050 dw2_asm_output_data (1, cfi
->dw_cfi_opc
,
2051 "%s", dwarf_cfi_name (cfi
->dw_cfi_opc
));
2053 switch (cfi
->dw_cfi_opc
)
2055 case DW_CFA_set_loc
:
2057 dw2_asm_output_encoded_addr_rtx (
2058 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
2059 gen_rtx_SYMBOL_REF (Pmode
, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
),
2062 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
2063 cfi
->dw_cfi_oprnd1
.dw_cfi_addr
, NULL
);
2066 case DW_CFA_advance_loc1
:
2067 dw2_asm_output_delta (1, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2068 fde
->dw_fde_current_label
, NULL
);
2069 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2072 case DW_CFA_advance_loc2
:
2073 dw2_asm_output_delta (2, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2074 fde
->dw_fde_current_label
, NULL
);
2075 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2078 case DW_CFA_advance_loc4
:
2079 dw2_asm_output_delta (4, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2080 fde
->dw_fde_current_label
, NULL
);
2081 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2084 case DW_CFA_MIPS_advance_loc8
:
2085 dw2_asm_output_delta (8, cfi
->dw_cfi_oprnd1
.dw_cfi_addr
,
2086 fde
->dw_fde_current_label
, NULL
);
2087 fde
->dw_fde_current_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
2090 case DW_CFA_offset_extended
:
2091 case DW_CFA_def_cfa
:
2092 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2093 dw2_asm_output_data_uleb128 (r
, NULL
);
2094 dw2_asm_output_data_uleb128 (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
, NULL
);
2097 case DW_CFA_offset_extended_sf
:
2098 case DW_CFA_def_cfa_sf
:
2099 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2100 dw2_asm_output_data_uleb128 (r
, NULL
);
2101 dw2_asm_output_data_sleb128 (cfi
->dw_cfi_oprnd2
.dw_cfi_offset
, NULL
);
2104 case DW_CFA_restore_extended
:
2105 case DW_CFA_undefined
:
2106 case DW_CFA_same_value
:
2107 case DW_CFA_def_cfa_register
:
2108 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2109 dw2_asm_output_data_uleb128 (r
, NULL
);
2112 case DW_CFA_register
:
2113 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd1
.dw_cfi_reg_num
, for_eh
);
2114 dw2_asm_output_data_uleb128 (r
, NULL
);
2115 r
= DWARF2_FRAME_REG_OUT (cfi
->dw_cfi_oprnd2
.dw_cfi_reg_num
, for_eh
);
2116 dw2_asm_output_data_uleb128 (r
, NULL
);
2119 case DW_CFA_def_cfa_offset
:
2120 case DW_CFA_GNU_args_size
:
2121 dw2_asm_output_data_uleb128 (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
, NULL
);
2124 case DW_CFA_def_cfa_offset_sf
:
2125 dw2_asm_output_data_sleb128 (cfi
->dw_cfi_oprnd1
.dw_cfi_offset
, NULL
);
2128 case DW_CFA_GNU_window_save
:
2131 case DW_CFA_def_cfa_expression
:
2132 case DW_CFA_expression
:
2133 output_cfa_loc (cfi
);
2136 case DW_CFA_GNU_negative_offset_extended
:
2137 /* Obsoleted by DW_CFA_offset_extended_sf. */
2146 /* Output the call frame information used to record information
2147 that relates to calculating the frame pointer, and records the
2148 location of saved registers. */
2151 output_call_frame_info (int for_eh
)
2156 char l1
[20], l2
[20], section_start_label
[20];
2157 bool any_lsda_needed
= false;
2158 char augmentation
[6];
2159 int augmentation_size
;
2160 int fde_encoding
= DW_EH_PE_absptr
;
2161 int per_encoding
= DW_EH_PE_absptr
;
2162 int lsda_encoding
= DW_EH_PE_absptr
;
2165 /* Don't emit a CIE if there won't be any FDEs. */
2166 if (fde_table_in_use
== 0)
2169 /* If we make FDEs linkonce, we may have to emit an empty label for
2170 an FDE that wouldn't otherwise be emitted. We want to avoid
2171 having an FDE kept around when the function it refers to is
2172 discarded. Example where this matters: a primary function
2173 template in C++ requires EH information, but an explicit
2174 specialization doesn't. */
2175 if (TARGET_USES_WEAK_UNWIND_INFO
2176 && ! flag_asynchronous_unwind_tables
2178 for (i
= 0; i
< fde_table_in_use
; i
++)
2179 if ((fde_table
[i
].nothrow
|| fde_table
[i
].all_throwers_are_sibcalls
)
2180 && !fde_table
[i
].uses_eh_lsda
2181 && ! DECL_WEAK (fde_table
[i
].decl
))
2182 targetm
.asm_out
.unwind_label (asm_out_file
, fde_table
[i
].decl
,
2183 for_eh
, /* empty */ 1);
2185 /* If we don't have any functions we'll want to unwind out of, don't
2186 emit any EH unwind information. Note that if exceptions aren't
2187 enabled, we won't have collected nothrow information, and if we
2188 asked for asynchronous tables, we always want this info. */
2191 bool any_eh_needed
= !flag_exceptions
|| flag_asynchronous_unwind_tables
;
2193 for (i
= 0; i
< fde_table_in_use
; i
++)
2194 if (fde_table
[i
].uses_eh_lsda
)
2195 any_eh_needed
= any_lsda_needed
= true;
2196 else if (TARGET_USES_WEAK_UNWIND_INFO
&& DECL_WEAK (fde_table
[i
].decl
))
2197 any_eh_needed
= true;
2198 else if (! fde_table
[i
].nothrow
2199 && ! fde_table
[i
].all_throwers_are_sibcalls
)
2200 any_eh_needed
= true;
2202 if (! any_eh_needed
)
2206 /* We're going to be generating comments, so turn on app. */
2211 switch_to_eh_frame_section ();
2213 switch_to_section (get_section (DEBUG_FRAME_SECTION
, SECTION_DEBUG
, NULL
));
2215 ASM_GENERATE_INTERNAL_LABEL (section_start_label
, FRAME_BEGIN_LABEL
, for_eh
);
2216 ASM_OUTPUT_LABEL (asm_out_file
, section_start_label
);
2218 /* Output the CIE. */
2219 ASM_GENERATE_INTERNAL_LABEL (l1
, CIE_AFTER_SIZE_LABEL
, for_eh
);
2220 ASM_GENERATE_INTERNAL_LABEL (l2
, CIE_END_LABEL
, for_eh
);
2221 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
2222 "Length of Common Information Entry");
2223 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
2225 /* Now that the CIE pointer is PC-relative for EH,
2226 use 0 to identify the CIE. */
2227 dw2_asm_output_data ((for_eh
? 4 : DWARF_OFFSET_SIZE
),
2228 (for_eh
? 0 : DW_CIE_ID
),
2229 "CIE Identifier Tag");
2231 dw2_asm_output_data (1, DW_CIE_VERSION
, "CIE Version");
2233 augmentation
[0] = 0;
2234 augmentation_size
= 0;
2240 z Indicates that a uleb128 is present to size the
2241 augmentation section.
2242 L Indicates the encoding (and thus presence) of
2243 an LSDA pointer in the FDE augmentation.
2244 R Indicates a non-default pointer encoding for
2246 P Indicates the presence of an encoding + language
2247 personality routine in the CIE augmentation. */
2249 fde_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
2250 per_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
2251 lsda_encoding
= ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
2253 p
= augmentation
+ 1;
2254 if (eh_personality_libfunc
)
2257 augmentation_size
+= 1 + size_of_encoded_value (per_encoding
);
2259 if (any_lsda_needed
)
2262 augmentation_size
+= 1;
2264 if (fde_encoding
!= DW_EH_PE_absptr
)
2267 augmentation_size
+= 1;
2269 if (p
> augmentation
+ 1)
2271 augmentation
[0] = 'z';
2275 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
2276 if (eh_personality_libfunc
&& per_encoding
== DW_EH_PE_aligned
)
2278 int offset
= ( 4 /* Length */
2280 + 1 /* CIE version */
2281 + strlen (augmentation
) + 1 /* Augmentation */
2282 + size_of_uleb128 (1) /* Code alignment */
2283 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT
)
2285 + 1 /* Augmentation size */
2286 + 1 /* Personality encoding */ );
2287 int pad
= -offset
& (PTR_SIZE
- 1);
2289 augmentation_size
+= pad
;
2291 /* Augmentations should be small, so there's scarce need to
2292 iterate for a solution. Die if we exceed one uleb128 byte. */
2293 gcc_assert (size_of_uleb128 (augmentation_size
) == 1);
2297 dw2_asm_output_nstring (augmentation
, -1, "CIE Augmentation");
2298 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
2299 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT
,
2300 "CIE Data Alignment Factor");
2302 return_reg
= DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN
, for_eh
);
2303 if (DW_CIE_VERSION
== 1)
2304 dw2_asm_output_data (1, return_reg
, "CIE RA Column");
2306 dw2_asm_output_data_uleb128 (return_reg
, "CIE RA Column");
2308 if (augmentation
[0])
2310 dw2_asm_output_data_uleb128 (augmentation_size
, "Augmentation size");
2311 if (eh_personality_libfunc
)
2313 dw2_asm_output_data (1, per_encoding
, "Personality (%s)",
2314 eh_data_format_name (per_encoding
));
2315 dw2_asm_output_encoded_addr_rtx (per_encoding
,
2316 eh_personality_libfunc
,
2320 if (any_lsda_needed
)
2321 dw2_asm_output_data (1, lsda_encoding
, "LSDA Encoding (%s)",
2322 eh_data_format_name (lsda_encoding
));
2324 if (fde_encoding
!= DW_EH_PE_absptr
)
2325 dw2_asm_output_data (1, fde_encoding
, "FDE Encoding (%s)",
2326 eh_data_format_name (fde_encoding
));
2329 for (cfi
= cie_cfi_head
; cfi
!= NULL
; cfi
= cfi
->dw_cfi_next
)
2330 output_cfi (cfi
, NULL
, for_eh
);
2332 /* Pad the CIE out to an address sized boundary. */
2333 ASM_OUTPUT_ALIGN (asm_out_file
,
2334 floor_log2 (for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
));
2335 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
2337 /* Loop through all of the FDE's. */
2338 for (i
= 0; i
< fde_table_in_use
; i
++)
2340 fde
= &fde_table
[i
];
2342 /* Don't emit EH unwind info for leaf functions that don't need it. */
2343 if (for_eh
&& !flag_asynchronous_unwind_tables
&& flag_exceptions
2344 && (fde
->nothrow
|| fde
->all_throwers_are_sibcalls
)
2345 && ! (TARGET_USES_WEAK_UNWIND_INFO
&& DECL_WEAK (fde_table
[i
].decl
))
2346 && !fde
->uses_eh_lsda
)
2349 targetm
.asm_out
.unwind_label (asm_out_file
, fde
->decl
, for_eh
, /* empty */ 0);
2350 targetm
.asm_out
.internal_label (asm_out_file
, FDE_LABEL
, for_eh
+ i
* 2);
2351 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_AFTER_SIZE_LABEL
, for_eh
+ i
* 2);
2352 ASM_GENERATE_INTERNAL_LABEL (l2
, FDE_END_LABEL
, for_eh
+ i
* 2);
2353 dw2_asm_output_delta (for_eh
? 4 : DWARF_OFFSET_SIZE
, l2
, l1
,
2355 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
2358 dw2_asm_output_delta (4, l1
, section_start_label
, "FDE CIE offset");
2360 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, section_start_label
,
2365 rtx sym_ref
= gen_rtx_SYMBOL_REF (Pmode
, fde
->dw_fde_begin
);
2366 SYMBOL_REF_FLAGS (sym_ref
) |= SYMBOL_FLAG_LOCAL
;
2367 dw2_asm_output_encoded_addr_rtx (fde_encoding
,
2370 "FDE initial location");
2371 if (fde
->dw_fde_switched_sections
)
2373 rtx sym_ref2
= gen_rtx_SYMBOL_REF (Pmode
,
2374 fde
->dw_fde_unlikely_section_label
);
2375 rtx sym_ref3
= gen_rtx_SYMBOL_REF (Pmode
,
2376 fde
->dw_fde_hot_section_label
);
2377 SYMBOL_REF_FLAGS (sym_ref2
) |= SYMBOL_FLAG_LOCAL
;
2378 SYMBOL_REF_FLAGS (sym_ref3
) |= SYMBOL_FLAG_LOCAL
;
2379 dw2_asm_output_encoded_addr_rtx (fde_encoding
, sym_ref3
, false,
2380 "FDE initial location");
2381 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
2382 fde
->dw_fde_hot_section_end_label
,
2383 fde
->dw_fde_hot_section_label
,
2384 "FDE address range");
2385 dw2_asm_output_encoded_addr_rtx (fde_encoding
, sym_ref2
, false,
2386 "FDE initial location");
2387 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
2388 fde
->dw_fde_unlikely_section_end_label
,
2389 fde
->dw_fde_unlikely_section_label
,
2390 "FDE address range");
2393 dw2_asm_output_delta (size_of_encoded_value (fde_encoding
),
2394 fde
->dw_fde_end
, fde
->dw_fde_begin
,
2395 "FDE address range");
2399 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, fde
->dw_fde_begin
,
2400 "FDE initial location");
2401 if (fde
->dw_fde_switched_sections
)
2403 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
2404 fde
->dw_fde_hot_section_label
,
2405 "FDE initial location");
2406 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
2407 fde
->dw_fde_hot_section_end_label
,
2408 fde
->dw_fde_hot_section_label
,
2409 "FDE address range");
2410 dw2_asm_output_addr (DWARF2_ADDR_SIZE
,
2411 fde
->dw_fde_unlikely_section_label
,
2412 "FDE initial location");
2413 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
2414 fde
->dw_fde_unlikely_section_end_label
,
2415 fde
->dw_fde_unlikely_section_label
,
2416 "FDE address range");
2419 dw2_asm_output_delta (DWARF2_ADDR_SIZE
,
2420 fde
->dw_fde_end
, fde
->dw_fde_begin
,
2421 "FDE address range");
2424 if (augmentation
[0])
2426 if (any_lsda_needed
)
2428 int size
= size_of_encoded_value (lsda_encoding
);
2430 if (lsda_encoding
== DW_EH_PE_aligned
)
2432 int offset
= ( 4 /* Length */
2433 + 4 /* CIE offset */
2434 + 2 * size_of_encoded_value (fde_encoding
)
2435 + 1 /* Augmentation size */ );
2436 int pad
= -offset
& (PTR_SIZE
- 1);
2439 gcc_assert (size_of_uleb128 (size
) == 1);
2442 dw2_asm_output_data_uleb128 (size
, "Augmentation size");
2444 if (fde
->uses_eh_lsda
)
2446 ASM_GENERATE_INTERNAL_LABEL (l1
, "LLSDA",
2447 fde
->funcdef_number
);
2448 dw2_asm_output_encoded_addr_rtx (
2449 lsda_encoding
, gen_rtx_SYMBOL_REF (Pmode
, l1
),
2450 false, "Language Specific Data Area");
2454 if (lsda_encoding
== DW_EH_PE_aligned
)
2455 ASM_OUTPUT_ALIGN (asm_out_file
, floor_log2 (PTR_SIZE
));
2457 (size_of_encoded_value (lsda_encoding
), 0,
2458 "Language Specific Data Area (none)");
2462 dw2_asm_output_data_uleb128 (0, "Augmentation size");
2465 /* Loop through the Call Frame Instructions associated with
2467 fde
->dw_fde_current_label
= fde
->dw_fde_begin
;
2468 for (cfi
= fde
->dw_fde_cfi
; cfi
!= NULL
; cfi
= cfi
->dw_cfi_next
)
2469 output_cfi (cfi
, fde
, for_eh
);
2471 /* Pad the FDE out to an address sized boundary. */
2472 ASM_OUTPUT_ALIGN (asm_out_file
,
2473 floor_log2 ((for_eh
? PTR_SIZE
: DWARF2_ADDR_SIZE
)));
2474 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
2477 if (for_eh
&& targetm
.terminate_dw2_eh_frame_info
)
2478 dw2_asm_output_data (4, 0, "End of Table");
2479 #ifdef MIPS_DEBUGGING_INFO
2480 /* Work around Irix 6 assembler bug whereby labels at the end of a section
2481 get a value of 0. Putting .align 0 after the label fixes it. */
2482 ASM_OUTPUT_ALIGN (asm_out_file
, 0);
2485 /* Turn off app to make assembly quicker. */
2490 /* Output a marker (i.e. a label) for the beginning of a function, before
2494 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED
,
2495 const char *file ATTRIBUTE_UNUSED
)
2497 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
2501 current_function_func_begin_label
= NULL
;
2503 #ifdef TARGET_UNWIND_INFO
2504 /* ??? current_function_func_begin_label is also used by except.c
2505 for call-site information. We must emit this label if it might
2507 if ((! flag_exceptions
|| USING_SJLJ_EXCEPTIONS
)
2508 && ! dwarf2out_do_frame ())
2511 if (! dwarf2out_do_frame ())
2515 switch_to_section (function_section (current_function_decl
));
2516 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_BEGIN_LABEL
,
2517 current_function_funcdef_no
);
2518 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, FUNC_BEGIN_LABEL
,
2519 current_function_funcdef_no
);
2520 dup_label
= xstrdup (label
);
2521 current_function_func_begin_label
= dup_label
;
2523 #ifdef TARGET_UNWIND_INFO
2524 /* We can elide the fde allocation if we're not emitting debug info. */
2525 if (! dwarf2out_do_frame ())
2529 /* Expand the fde table if necessary. */
2530 if (fde_table_in_use
== fde_table_allocated
)
2532 fde_table_allocated
+= FDE_TABLE_INCREMENT
;
2533 fde_table
= ggc_realloc (fde_table
,
2534 fde_table_allocated
* sizeof (dw_fde_node
));
2535 memset (fde_table
+ fde_table_in_use
, 0,
2536 FDE_TABLE_INCREMENT
* sizeof (dw_fde_node
));
2539 /* Record the FDE associated with this function. */
2540 current_funcdef_fde
= fde_table_in_use
;
2542 /* Add the new FDE at the end of the fde_table. */
2543 fde
= &fde_table
[fde_table_in_use
++];
2544 fde
->decl
= current_function_decl
;
2545 fde
->dw_fde_begin
= dup_label
;
2546 fde
->dw_fde_current_label
= NULL
;
2547 fde
->dw_fde_hot_section_label
= NULL
;
2548 fde
->dw_fde_hot_section_end_label
= NULL
;
2549 fde
->dw_fde_unlikely_section_label
= NULL
;
2550 fde
->dw_fde_unlikely_section_end_label
= NULL
;
2551 fde
->dw_fde_switched_sections
= false;
2552 fde
->dw_fde_end
= NULL
;
2553 fde
->dw_fde_cfi
= NULL
;
2554 fde
->funcdef_number
= current_function_funcdef_no
;
2555 fde
->nothrow
= TREE_NOTHROW (current_function_decl
);
2556 fde
->uses_eh_lsda
= cfun
->uses_eh_lsda
;
2557 fde
->all_throwers_are_sibcalls
= cfun
->all_throwers_are_sibcalls
;
2559 args_size
= old_args_size
= 0;
2561 /* We only want to output line number information for the genuine dwarf2
2562 prologue case, not the eh frame case. */
2563 #ifdef DWARF2_DEBUGGING_INFO
2565 dwarf2out_source_line (line
, file
);
2569 /* Output a marker (i.e. a label) for the absolute end of the generated code
2570 for a function definition. This gets called *after* the epilogue code has
2574 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED
,
2575 const char *file ATTRIBUTE_UNUSED
)
2578 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
2580 /* Output a label to mark the endpoint of the code generated for this
2582 ASM_GENERATE_INTERNAL_LABEL (label
, FUNC_END_LABEL
,
2583 current_function_funcdef_no
);
2584 ASM_OUTPUT_LABEL (asm_out_file
, label
);
2585 fde
= &fde_table
[fde_table_in_use
- 1];
2586 fde
->dw_fde_end
= xstrdup (label
);
2590 dwarf2out_frame_init (void)
2592 /* Allocate the initial hunk of the fde_table. */
2593 fde_table
= ggc_alloc_cleared (FDE_TABLE_INCREMENT
* sizeof (dw_fde_node
));
2594 fde_table_allocated
= FDE_TABLE_INCREMENT
;
2595 fde_table_in_use
= 0;
2597 /* Generate the CFA instructions common to all FDE's. Do it now for the
2598 sake of lookup_cfa. */
2600 /* On entry, the Canonical Frame Address is at SP. */
2601 dwarf2out_def_cfa (NULL
, STACK_POINTER_REGNUM
, INCOMING_FRAME_SP_OFFSET
);
2603 #ifdef DWARF2_UNWIND_INFO
2604 if (DWARF2_UNWIND_INFO
)
2605 initial_return_save (INCOMING_RETURN_ADDR_RTX
);
2610 dwarf2out_frame_finish (void)
2612 /* Output call frame information. */
2613 if (DWARF2_FRAME_INFO
)
2614 output_call_frame_info (0);
2616 #ifndef TARGET_UNWIND_INFO
2617 /* Output another copy for the unwinder. */
2618 if (! USING_SJLJ_EXCEPTIONS
&& (flag_unwind_tables
|| flag_exceptions
))
2619 output_call_frame_info (1);
2624 /* And now, the subset of the debugging information support code necessary
2625 for emitting location expressions. */
2627 /* We need some way to distinguish DW_OP_addr with a direct symbol
2628 relocation from DW_OP_addr with a dtp-relative symbol relocation. */
2629 #define INTERNAL_DW_OP_tls_addr (0x100 + DW_OP_addr)
2632 typedef struct dw_val_struct
*dw_val_ref
;
2633 typedef struct die_struct
*dw_die_ref
;
2634 typedef struct dw_loc_descr_struct
*dw_loc_descr_ref
;
2635 typedef struct dw_loc_list_struct
*dw_loc_list_ref
;
2637 /* Each DIE may have a series of attribute/value pairs. Values
2638 can take on several forms. The forms that are used in this
2639 implementation are listed below. */
2644 dw_val_class_offset
,
2646 dw_val_class_loc_list
,
2647 dw_val_class_range_list
,
2649 dw_val_class_unsigned_const
,
2650 dw_val_class_long_long
,
2653 dw_val_class_die_ref
,
2654 dw_val_class_fde_ref
,
2655 dw_val_class_lbl_id
,
2656 dw_val_class_lbl_offset
,
2660 /* Describe a double word constant value. */
2661 /* ??? Every instance of long_long in the code really means CONST_DOUBLE. */
2663 typedef struct dw_long_long_struct
GTY(())
2670 /* Describe a floating point constant value, or a vector constant value. */
2672 typedef struct dw_vec_struct
GTY(())
2674 unsigned char * GTY((length ("%h.length"))) array
;
2680 /* The dw_val_node describes an attribute's value, as it is
2681 represented internally. */
2683 typedef struct dw_val_struct
GTY(())
2685 enum dw_val_class val_class
;
2686 union dw_val_struct_union
2688 rtx
GTY ((tag ("dw_val_class_addr"))) val_addr
;
2689 unsigned HOST_WIDE_INT
GTY ((tag ("dw_val_class_offset"))) val_offset
;
2690 dw_loc_list_ref
GTY ((tag ("dw_val_class_loc_list"))) val_loc_list
;
2691 dw_loc_descr_ref
GTY ((tag ("dw_val_class_loc"))) val_loc
;
2692 HOST_WIDE_INT
GTY ((default)) val_int
;
2693 unsigned HOST_WIDE_INT
GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned
;
2694 dw_long_long_const
GTY ((tag ("dw_val_class_long_long"))) val_long_long
;
2695 dw_vec_const
GTY ((tag ("dw_val_class_vec"))) val_vec
;
2696 struct dw_val_die_union
2700 } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref
;
2701 unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index
;
2702 struct indirect_string_node
* GTY ((tag ("dw_val_class_str"))) val_str
;
2703 char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id
;
2704 unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag
;
2706 GTY ((desc ("%1.val_class"))) v
;
2710 /* Locations in memory are described using a sequence of stack machine
2713 typedef struct dw_loc_descr_struct
GTY(())
2715 dw_loc_descr_ref dw_loc_next
;
2716 enum dwarf_location_atom dw_loc_opc
;
2717 dw_val_node dw_loc_oprnd1
;
2718 dw_val_node dw_loc_oprnd2
;
2723 /* Location lists are ranges + location descriptions for that range,
2724 so you can track variables that are in different places over
2725 their entire life. */
2726 typedef struct dw_loc_list_struct
GTY(())
2728 dw_loc_list_ref dw_loc_next
;
2729 const char *begin
; /* Label for begin address of range */
2730 const char *end
; /* Label for end address of range */
2731 char *ll_symbol
; /* Label for beginning of location list.
2732 Only on head of list */
2733 const char *section
; /* Section this loclist is relative to */
2734 dw_loc_descr_ref expr
;
2737 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
2739 static const char *dwarf_stack_op_name (unsigned);
2740 static dw_loc_descr_ref
new_loc_descr (enum dwarf_location_atom
,
2741 unsigned HOST_WIDE_INT
, unsigned HOST_WIDE_INT
);
2742 static void add_loc_descr (dw_loc_descr_ref
*, dw_loc_descr_ref
);
2743 static unsigned long size_of_loc_descr (dw_loc_descr_ref
);
2744 static unsigned long size_of_locs (dw_loc_descr_ref
);
2745 static void output_loc_operands (dw_loc_descr_ref
);
2746 static void output_loc_sequence (dw_loc_descr_ref
);
2748 /* Convert a DWARF stack opcode into its string name. */
2751 dwarf_stack_op_name (unsigned int op
)
2756 case INTERNAL_DW_OP_tls_addr
:
2757 return "DW_OP_addr";
2759 return "DW_OP_deref";
2761 return "DW_OP_const1u";
2763 return "DW_OP_const1s";
2765 return "DW_OP_const2u";
2767 return "DW_OP_const2s";
2769 return "DW_OP_const4u";
2771 return "DW_OP_const4s";
2773 return "DW_OP_const8u";
2775 return "DW_OP_const8s";
2777 return "DW_OP_constu";
2779 return "DW_OP_consts";
2783 return "DW_OP_drop";
2785 return "DW_OP_over";
2787 return "DW_OP_pick";
2789 return "DW_OP_swap";
2793 return "DW_OP_xderef";
2801 return "DW_OP_minus";
2813 return "DW_OP_plus";
2814 case DW_OP_plus_uconst
:
2815 return "DW_OP_plus_uconst";
2821 return "DW_OP_shra";
2839 return "DW_OP_skip";
2841 return "DW_OP_lit0";
2843 return "DW_OP_lit1";
2845 return "DW_OP_lit2";
2847 return "DW_OP_lit3";
2849 return "DW_OP_lit4";
2851 return "DW_OP_lit5";
2853 return "DW_OP_lit6";
2855 return "DW_OP_lit7";
2857 return "DW_OP_lit8";
2859 return "DW_OP_lit9";
2861 return "DW_OP_lit10";
2863 return "DW_OP_lit11";
2865 return "DW_OP_lit12";
2867 return "DW_OP_lit13";
2869 return "DW_OP_lit14";
2871 return "DW_OP_lit15";
2873 return "DW_OP_lit16";
2875 return "DW_OP_lit17";
2877 return "DW_OP_lit18";
2879 return "DW_OP_lit19";
2881 return "DW_OP_lit20";
2883 return "DW_OP_lit21";
2885 return "DW_OP_lit22";
2887 return "DW_OP_lit23";
2889 return "DW_OP_lit24";
2891 return "DW_OP_lit25";
2893 return "DW_OP_lit26";
2895 return "DW_OP_lit27";
2897 return "DW_OP_lit28";
2899 return "DW_OP_lit29";
2901 return "DW_OP_lit30";
2903 return "DW_OP_lit31";
2905 return "DW_OP_reg0";
2907 return "DW_OP_reg1";
2909 return "DW_OP_reg2";
2911 return "DW_OP_reg3";
2913 return "DW_OP_reg4";
2915 return "DW_OP_reg5";
2917 return "DW_OP_reg6";
2919 return "DW_OP_reg7";
2921 return "DW_OP_reg8";
2923 return "DW_OP_reg9";
2925 return "DW_OP_reg10";
2927 return "DW_OP_reg11";
2929 return "DW_OP_reg12";
2931 return "DW_OP_reg13";
2933 return "DW_OP_reg14";
2935 return "DW_OP_reg15";
2937 return "DW_OP_reg16";
2939 return "DW_OP_reg17";
2941 return "DW_OP_reg18";
2943 return "DW_OP_reg19";
2945 return "DW_OP_reg20";
2947 return "DW_OP_reg21";
2949 return "DW_OP_reg22";
2951 return "DW_OP_reg23";
2953 return "DW_OP_reg24";
2955 return "DW_OP_reg25";
2957 return "DW_OP_reg26";
2959 return "DW_OP_reg27";
2961 return "DW_OP_reg28";
2963 return "DW_OP_reg29";
2965 return "DW_OP_reg30";
2967 return "DW_OP_reg31";
2969 return "DW_OP_breg0";
2971 return "DW_OP_breg1";
2973 return "DW_OP_breg2";
2975 return "DW_OP_breg3";
2977 return "DW_OP_breg4";
2979 return "DW_OP_breg5";
2981 return "DW_OP_breg6";
2983 return "DW_OP_breg7";
2985 return "DW_OP_breg8";
2987 return "DW_OP_breg9";
2989 return "DW_OP_breg10";
2991 return "DW_OP_breg11";
2993 return "DW_OP_breg12";
2995 return "DW_OP_breg13";
2997 return "DW_OP_breg14";
2999 return "DW_OP_breg15";
3001 return "DW_OP_breg16";
3003 return "DW_OP_breg17";
3005 return "DW_OP_breg18";
3007 return "DW_OP_breg19";
3009 return "DW_OP_breg20";
3011 return "DW_OP_breg21";
3013 return "DW_OP_breg22";
3015 return "DW_OP_breg23";
3017 return "DW_OP_breg24";
3019 return "DW_OP_breg25";
3021 return "DW_OP_breg26";
3023 return "DW_OP_breg27";
3025 return "DW_OP_breg28";
3027 return "DW_OP_breg29";
3029 return "DW_OP_breg30";
3031 return "DW_OP_breg31";
3033 return "DW_OP_regx";
3035 return "DW_OP_fbreg";
3037 return "DW_OP_bregx";
3039 return "DW_OP_piece";
3040 case DW_OP_deref_size
:
3041 return "DW_OP_deref_size";
3042 case DW_OP_xderef_size
:
3043 return "DW_OP_xderef_size";
3046 case DW_OP_push_object_address
:
3047 return "DW_OP_push_object_address";
3049 return "DW_OP_call2";
3051 return "DW_OP_call4";
3052 case DW_OP_call_ref
:
3053 return "DW_OP_call_ref";
3054 case DW_OP_GNU_push_tls_address
:
3055 return "DW_OP_GNU_push_tls_address";
3057 return "OP_<unknown>";
3061 /* Return a pointer to a newly allocated location description. Location
3062 descriptions are simple expression terms that can be strung
3063 together to form more complicated location (address) descriptions. */
3065 static inline dw_loc_descr_ref
3066 new_loc_descr (enum dwarf_location_atom op
, unsigned HOST_WIDE_INT oprnd1
,
3067 unsigned HOST_WIDE_INT oprnd2
)
3069 dw_loc_descr_ref descr
= ggc_alloc_cleared (sizeof (dw_loc_descr_node
));
3071 descr
->dw_loc_opc
= op
;
3072 descr
->dw_loc_oprnd1
.val_class
= dw_val_class_unsigned_const
;
3073 descr
->dw_loc_oprnd1
.v
.val_unsigned
= oprnd1
;
3074 descr
->dw_loc_oprnd2
.val_class
= dw_val_class_unsigned_const
;
3075 descr
->dw_loc_oprnd2
.v
.val_unsigned
= oprnd2
;
3080 /* Add a location description term to a location description expression. */
3083 add_loc_descr (dw_loc_descr_ref
*list_head
, dw_loc_descr_ref descr
)
3085 dw_loc_descr_ref
*d
;
3087 /* Find the end of the chain. */
3088 for (d
= list_head
; (*d
) != NULL
; d
= &(*d
)->dw_loc_next
)
3094 /* Return the size of a location descriptor. */
3096 static unsigned long
3097 size_of_loc_descr (dw_loc_descr_ref loc
)
3099 unsigned long size
= 1;
3101 switch (loc
->dw_loc_opc
)
3104 case INTERNAL_DW_OP_tls_addr
:
3105 size
+= DWARF2_ADDR_SIZE
;
3124 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3127 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
3132 case DW_OP_plus_uconst
:
3133 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3171 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
3174 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3177 size
+= size_of_sleb128 (loc
->dw_loc_oprnd1
.v
.val_int
);
3180 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3181 size
+= size_of_sleb128 (loc
->dw_loc_oprnd2
.v
.val_int
);
3184 size
+= size_of_uleb128 (loc
->dw_loc_oprnd1
.v
.val_unsigned
);
3186 case DW_OP_deref_size
:
3187 case DW_OP_xderef_size
:
3196 case DW_OP_call_ref
:
3197 size
+= DWARF2_ADDR_SIZE
;
3206 /* Return the size of a series of location descriptors. */
3208 static unsigned long
3209 size_of_locs (dw_loc_descr_ref loc
)
3213 for (size
= 0; loc
!= NULL
; loc
= loc
->dw_loc_next
)
3215 loc
->dw_loc_addr
= size
;
3216 size
+= size_of_loc_descr (loc
);
3222 /* Output location description stack opcode's operands (if any). */
3225 output_loc_operands (dw_loc_descr_ref loc
)
3227 dw_val_ref val1
= &loc
->dw_loc_oprnd1
;
3228 dw_val_ref val2
= &loc
->dw_loc_oprnd2
;
3230 switch (loc
->dw_loc_opc
)
3232 #ifdef DWARF2_DEBUGGING_INFO
3234 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, val1
->v
.val_addr
, NULL
);
3238 dw2_asm_output_data (2, val1
->v
.val_int
, NULL
);
3242 dw2_asm_output_data (4, val1
->v
.val_int
, NULL
);
3246 gcc_assert (HOST_BITS_PER_LONG
>= 64);
3247 dw2_asm_output_data (8, val1
->v
.val_int
, NULL
);
3254 gcc_assert (val1
->val_class
== dw_val_class_loc
);
3255 offset
= val1
->v
.val_loc
->dw_loc_addr
- (loc
->dw_loc_addr
+ 3);
3257 dw2_asm_output_data (2, offset
, NULL
);
3270 /* We currently don't make any attempt to make sure these are
3271 aligned properly like we do for the main unwind info, so
3272 don't support emitting things larger than a byte if we're
3273 only doing unwinding. */
3278 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
3281 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3284 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
3287 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
3289 case DW_OP_plus_uconst
:
3290 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3324 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
3327 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3330 dw2_asm_output_data_sleb128 (val1
->v
.val_int
, NULL
);
3333 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3334 dw2_asm_output_data_sleb128 (val2
->v
.val_int
, NULL
);
3337 dw2_asm_output_data_uleb128 (val1
->v
.val_unsigned
, NULL
);
3339 case DW_OP_deref_size
:
3340 case DW_OP_xderef_size
:
3341 dw2_asm_output_data (1, val1
->v
.val_int
, NULL
);
3344 case INTERNAL_DW_OP_tls_addr
:
3345 if (targetm
.asm_out
.output_dwarf_dtprel
)
3347 targetm
.asm_out
.output_dwarf_dtprel (asm_out_file
,
3350 fputc ('\n', asm_out_file
);
3357 /* Other codes have no operands. */
3362 /* Output a sequence of location operations. */
3365 output_loc_sequence (dw_loc_descr_ref loc
)
3367 for (; loc
!= NULL
; loc
= loc
->dw_loc_next
)
3369 /* Output the opcode. */
3370 dw2_asm_output_data (1, loc
->dw_loc_opc
,
3371 "%s", dwarf_stack_op_name (loc
->dw_loc_opc
));
3373 /* Output the operand(s) (if any). */
3374 output_loc_operands (loc
);
3378 /* This routine will generate the correct assembly data for a location
3379 description based on a cfi entry with a complex address. */
3382 output_cfa_loc (dw_cfi_ref cfi
)
3384 dw_loc_descr_ref loc
;
3387 /* Output the size of the block. */
3388 loc
= cfi
->dw_cfi_oprnd1
.dw_cfi_loc
;
3389 size
= size_of_locs (loc
);
3390 dw2_asm_output_data_uleb128 (size
, NULL
);
3392 /* Now output the operations themselves. */
3393 output_loc_sequence (loc
);
3396 /* This function builds a dwarf location descriptor sequence from
3397 a dw_cfa_location. */
3399 static struct dw_loc_descr_struct
*
3400 build_cfa_loc (dw_cfa_location
*cfa
)
3402 struct dw_loc_descr_struct
*head
, *tmp
;
3406 if (cfa
->base_offset
)
3409 head
= new_loc_descr (DW_OP_breg0
+ cfa
->reg
, cfa
->base_offset
, 0);
3411 head
= new_loc_descr (DW_OP_bregx
, cfa
->reg
, cfa
->base_offset
);
3413 else if (cfa
->reg
<= 31)
3414 head
= new_loc_descr (DW_OP_reg0
+ cfa
->reg
, 0, 0);
3416 head
= new_loc_descr (DW_OP_regx
, cfa
->reg
, 0);
3418 head
->dw_loc_oprnd1
.val_class
= dw_val_class_const
;
3419 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
3420 add_loc_descr (&head
, tmp
);
3421 if (cfa
->offset
!= 0)
3423 tmp
= new_loc_descr (DW_OP_plus_uconst
, cfa
->offset
, 0);
3424 add_loc_descr (&head
, tmp
);
3429 if (cfa
->offset
== 0)
3431 head
= new_loc_descr (DW_OP_reg0
+ cfa
->reg
, 0, 0);
3433 head
= new_loc_descr (DW_OP_regx
, cfa
->reg
, 0);
3434 else if (cfa
->reg
<= 31)
3435 head
= new_loc_descr (DW_OP_breg0
+ cfa
->reg
, cfa
->offset
, 0);
3437 head
= new_loc_descr (DW_OP_bregx
, cfa
->reg
, cfa
->offset
);
3443 /* This function fills in aa dw_cfa_location structure from a dwarf location
3444 descriptor sequence. */
3447 get_cfa_from_loc_descr (dw_cfa_location
*cfa
, struct dw_loc_descr_struct
*loc
)
3449 struct dw_loc_descr_struct
*ptr
;
3451 cfa
->base_offset
= 0;
3455 for (ptr
= loc
; ptr
!= NULL
; ptr
= ptr
->dw_loc_next
)
3457 enum dwarf_location_atom op
= ptr
->dw_loc_opc
;
3493 cfa
->reg
= op
- DW_OP_reg0
;
3496 cfa
->reg
= ptr
->dw_loc_oprnd1
.v
.val_int
;
3530 cfa
->reg
= op
- DW_OP_breg0
;
3531 cfa
->base_offset
= ptr
->dw_loc_oprnd1
.v
.val_int
;
3534 cfa
->reg
= ptr
->dw_loc_oprnd1
.v
.val_int
;
3535 cfa
->base_offset
= ptr
->dw_loc_oprnd2
.v
.val_int
;
3540 case DW_OP_plus_uconst
:
3541 cfa
->offset
= ptr
->dw_loc_oprnd1
.v
.val_unsigned
;
3544 internal_error ("DW_LOC_OP %s not implemented",
3545 dwarf_stack_op_name (ptr
->dw_loc_opc
));
3549 #endif /* .debug_frame support */
3551 /* And now, the support for symbolic debugging information. */
3552 #ifdef DWARF2_DEBUGGING_INFO
3554 /* .debug_str support. */
3555 static int output_indirect_string (void **, void *);
3557 static void dwarf2out_init (const char *);
3558 static void dwarf2out_finish (const char *);
3559 static void dwarf2out_define (unsigned int, const char *);
3560 static void dwarf2out_undef (unsigned int, const char *);
3561 static void dwarf2out_start_source_file (unsigned, const char *);
3562 static void dwarf2out_end_source_file (unsigned);
3563 static void dwarf2out_begin_block (unsigned, unsigned);
3564 static void dwarf2out_end_block (unsigned, unsigned);
3565 static bool dwarf2out_ignore_block (tree
);
3566 static void dwarf2out_global_decl (tree
);
3567 static void dwarf2out_type_decl (tree
, int);
3568 static void dwarf2out_imported_module_or_decl (tree
, tree
);
3569 static void dwarf2out_abstract_function (tree
);
3570 static void dwarf2out_var_location (rtx
);
3571 static void dwarf2out_begin_function (tree
);
3572 static void dwarf2out_switch_text_section (void);
3574 /* The debug hooks structure. */
3576 const struct gcc_debug_hooks dwarf2_debug_hooks
=
3582 dwarf2out_start_source_file
,
3583 dwarf2out_end_source_file
,
3584 dwarf2out_begin_block
,
3585 dwarf2out_end_block
,
3586 dwarf2out_ignore_block
,
3587 dwarf2out_source_line
,
3588 dwarf2out_begin_prologue
,
3589 debug_nothing_int_charstar
, /* end_prologue */
3590 dwarf2out_end_epilogue
,
3591 dwarf2out_begin_function
,
3592 debug_nothing_int
, /* end_function */
3593 dwarf2out_decl
, /* function_decl */
3594 dwarf2out_global_decl
,
3595 dwarf2out_type_decl
, /* type_decl */
3596 dwarf2out_imported_module_or_decl
,
3597 debug_nothing_tree
, /* deferred_inline_function */
3598 /* The DWARF 2 backend tries to reduce debugging bloat by not
3599 emitting the abstract description of inline functions until
3600 something tries to reference them. */
3601 dwarf2out_abstract_function
, /* outlining_inline_function */
3602 debug_nothing_rtx
, /* label */
3603 debug_nothing_int
, /* handle_pch */
3604 dwarf2out_var_location
,
3605 dwarf2out_switch_text_section
,
3606 1 /* start_end_main_source_file */
3610 /* NOTE: In the comments in this file, many references are made to
3611 "Debugging Information Entries". This term is abbreviated as `DIE'
3612 throughout the remainder of this file. */
3614 /* An internal representation of the DWARF output is built, and then
3615 walked to generate the DWARF debugging info. The walk of the internal
3616 representation is done after the entire program has been compiled.
3617 The types below are used to describe the internal representation. */
3619 /* Various DIE's use offsets relative to the beginning of the
3620 .debug_info section to refer to each other. */
3622 typedef long int dw_offset
;
3624 /* Define typedefs here to avoid circular dependencies. */
3626 typedef struct dw_attr_struct
*dw_attr_ref
;
3627 typedef struct dw_line_info_struct
*dw_line_info_ref
;
3628 typedef struct dw_separate_line_info_struct
*dw_separate_line_info_ref
;
3629 typedef struct pubname_struct
*pubname_ref
;
3630 typedef struct dw_ranges_struct
*dw_ranges_ref
;
3632 /* Each entry in the line_info_table maintains the file and
3633 line number associated with the label generated for that
3634 entry. The label gives the PC value associated with
3635 the line number entry. */
3637 typedef struct dw_line_info_struct
GTY(())
3639 unsigned long dw_file_num
;
3640 unsigned long dw_line_num
;
3644 /* Line information for functions in separate sections; each one gets its
3646 typedef struct dw_separate_line_info_struct
GTY(())
3648 unsigned long dw_file_num
;
3649 unsigned long dw_line_num
;
3650 unsigned long function
;
3652 dw_separate_line_info_entry
;
3654 /* Each DIE attribute has a field specifying the attribute kind,
3655 a link to the next attribute in the chain, and an attribute value.
3656 Attributes are typically linked below the DIE they modify. */
3658 typedef struct dw_attr_struct
GTY(())
3660 enum dwarf_attribute dw_attr
;
3661 dw_attr_ref dw_attr_next
;
3662 dw_val_node dw_attr_val
;
3666 /* The Debugging Information Entry (DIE) structure */
3668 typedef struct die_struct
GTY(())
3670 enum dwarf_tag die_tag
;
3672 dw_attr_ref die_attr
;
3673 dw_die_ref die_parent
;
3674 dw_die_ref die_child
;
3676 dw_die_ref die_definition
; /* ref from a specification to its definition */
3677 dw_offset die_offset
;
3678 unsigned long die_abbrev
;
3680 unsigned int decl_id
;
3684 /* The pubname structure */
3686 typedef struct pubname_struct
GTY(())
3693 struct dw_ranges_struct
GTY(())
3698 /* The limbo die list structure. */
3699 typedef struct limbo_die_struct
GTY(())
3703 struct limbo_die_struct
*next
;
3707 /* How to start an assembler comment. */
3708 #ifndef ASM_COMMENT_START
3709 #define ASM_COMMENT_START ";#"
3712 /* Define a macro which returns nonzero for a TYPE_DECL which was
3713 implicitly generated for a tagged type.
3715 Note that unlike the gcc front end (which generates a NULL named
3716 TYPE_DECL node for each complete tagged type, each array type, and
3717 each function type node created) the g++ front end generates a
3718 _named_ TYPE_DECL node for each tagged type node created.
3719 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3720 generate a DW_TAG_typedef DIE for them. */
3722 #define TYPE_DECL_IS_STUB(decl) \
3723 (DECL_NAME (decl) == NULL_TREE \
3724 || (DECL_ARTIFICIAL (decl) \
3725 && is_tagged_type (TREE_TYPE (decl)) \
3726 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3727 /* This is necessary for stub decls that \
3728 appear in nested inline functions. */ \
3729 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3730 && (decl_ultimate_origin (decl) \
3731 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3733 /* Information concerning the compilation unit's programming
3734 language, and compiler version. */
3736 /* Fixed size portion of the DWARF compilation unit header. */
3737 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3738 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
3740 /* Fixed size portion of public names info. */
3741 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3743 /* Fixed size portion of the address range info. */
3744 #define DWARF_ARANGES_HEADER_SIZE \
3745 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3746 DWARF2_ADDR_SIZE * 2) \
3747 - DWARF_INITIAL_LENGTH_SIZE)
3749 /* Size of padding portion in the address range info. It must be
3750 aligned to twice the pointer size. */
3751 #define DWARF_ARANGES_PAD_SIZE \
3752 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3753 DWARF2_ADDR_SIZE * 2) \
3754 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
3756 /* Use assembler line directives if available. */
3757 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3758 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3759 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3761 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3765 /* Minimum line offset in a special line info. opcode.
3766 This value was chosen to give a reasonable range of values. */
3767 #define DWARF_LINE_BASE -10
3769 /* First special line opcode - leave room for the standard opcodes. */
3770 #define DWARF_LINE_OPCODE_BASE 10
3772 /* Range of line offsets in a special line info. opcode. */
3773 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3775 /* Flag that indicates the initial value of the is_stmt_start flag.
3776 In the present implementation, we do not mark any lines as
3777 the beginning of a source statement, because that information
3778 is not made available by the GCC front-end. */
3779 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3781 #ifdef DWARF2_DEBUGGING_INFO
3782 /* This location is used by calc_die_sizes() to keep track
3783 the offset of each DIE within the .debug_info section. */
3784 static unsigned long next_die_offset
;
3787 /* Record the root of the DIE's built for the current compilation unit. */
3788 static GTY(()) dw_die_ref comp_unit_die
;
3790 /* A list of DIEs with a NULL parent waiting to be relocated. */
3791 static GTY(()) limbo_die_node
*limbo_die_list
;
3793 /* Filenames referenced by this compilation unit. */
3794 static GTY(()) varray_type file_table
;
3795 static GTY(()) varray_type file_table_emitted
;
3796 static GTY(()) size_t file_table_last_lookup_index
;
3798 /* A hash table of references to DIE's that describe declarations.
3799 The key is a DECL_UID() which is a unique number identifying each decl. */
3800 static GTY ((param_is (struct die_struct
))) htab_t decl_die_table
;
3802 /* Node of the variable location list. */
3803 struct var_loc_node
GTY ((chain_next ("%h.next")))
3805 rtx
GTY (()) var_loc_note
;
3806 const char * GTY (()) label
;
3807 const char * GTY (()) section_label
;
3808 struct var_loc_node
* GTY (()) next
;
3811 /* Variable location list. */
3812 struct var_loc_list_def
GTY (())
3814 struct var_loc_node
* GTY (()) first
;
3816 /* Do not mark the last element of the chained list because
3817 it is marked through the chain. */
3818 struct var_loc_node
* GTY ((skip ("%h"))) last
;
3820 /* DECL_UID of the variable decl. */
3821 unsigned int decl_id
;
3823 typedef struct var_loc_list_def var_loc_list
;
3826 /* Table of decl location linked lists. */
3827 static GTY ((param_is (var_loc_list
))) htab_t decl_loc_table
;
3829 /* A pointer to the base of a list of references to DIE's that
3830 are uniquely identified by their tag, presence/absence of
3831 children DIE's, and list of attribute/value pairs. */
3832 static GTY((length ("abbrev_die_table_allocated")))
3833 dw_die_ref
*abbrev_die_table
;
3835 /* Number of elements currently allocated for abbrev_die_table. */
3836 static GTY(()) unsigned abbrev_die_table_allocated
;
3838 /* Number of elements in type_die_table currently in use. */
3839 static GTY(()) unsigned abbrev_die_table_in_use
;
3841 /* Size (in elements) of increments by which we may expand the
3842 abbrev_die_table. */
3843 #define ABBREV_DIE_TABLE_INCREMENT 256
3845 /* A pointer to the base of a table that contains line information
3846 for each source code line in .text in the compilation unit. */
3847 static GTY((length ("line_info_table_allocated")))
3848 dw_line_info_ref line_info_table
;
3850 /* Number of elements currently allocated for line_info_table. */
3851 static GTY(()) unsigned line_info_table_allocated
;
3853 /* Number of elements in line_info_table currently in use. */
3854 static GTY(()) unsigned line_info_table_in_use
;
3856 /* True if the compilation unit places functions in more than one section. */
3857 static GTY(()) bool have_multiple_function_sections
= false;
3859 /* A pointer to the base of a table that contains line information
3860 for each source code line outside of .text in the compilation unit. */
3861 static GTY ((length ("separate_line_info_table_allocated")))
3862 dw_separate_line_info_ref separate_line_info_table
;
3864 /* Number of elements currently allocated for separate_line_info_table. */
3865 static GTY(()) unsigned separate_line_info_table_allocated
;
3867 /* Number of elements in separate_line_info_table currently in use. */
3868 static GTY(()) unsigned separate_line_info_table_in_use
;
3870 /* Size (in elements) of increments by which we may expand the
3872 #define LINE_INFO_TABLE_INCREMENT 1024
3874 /* A pointer to the base of a table that contains a list of publicly
3875 accessible names. */
3876 static GTY ((length ("pubname_table_allocated"))) pubname_ref pubname_table
;
3878 /* Number of elements currently allocated for pubname_table. */
3879 static GTY(()) unsigned pubname_table_allocated
;
3881 /* Number of elements in pubname_table currently in use. */
3882 static GTY(()) unsigned pubname_table_in_use
;
3884 /* Size (in elements) of increments by which we may expand the
3886 #define PUBNAME_TABLE_INCREMENT 64
3888 /* Array of dies for which we should generate .debug_arange info. */
3889 static GTY((length ("arange_table_allocated"))) dw_die_ref
*arange_table
;
3891 /* Number of elements currently allocated for arange_table. */
3892 static GTY(()) unsigned arange_table_allocated
;
3894 /* Number of elements in arange_table currently in use. */
3895 static GTY(()) unsigned arange_table_in_use
;
3897 /* Size (in elements) of increments by which we may expand the
3899 #define ARANGE_TABLE_INCREMENT 64
3901 /* Array of dies for which we should generate .debug_ranges info. */
3902 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table
;
3904 /* Number of elements currently allocated for ranges_table. */
3905 static GTY(()) unsigned ranges_table_allocated
;
3907 /* Number of elements in ranges_table currently in use. */
3908 static GTY(()) unsigned ranges_table_in_use
;
3910 /* Size (in elements) of increments by which we may expand the
3912 #define RANGES_TABLE_INCREMENT 64
3914 /* Whether we have location lists that need outputting */
3915 static GTY(()) bool have_location_lists
;
3917 /* Unique label counter. */
3918 static GTY(()) unsigned int loclabel_num
;
3920 #ifdef DWARF2_DEBUGGING_INFO
3921 /* Record whether the function being analyzed contains inlined functions. */
3922 static int current_function_has_inlines
;
3924 #if 0 && defined (MIPS_DEBUGGING_INFO)
3925 static int comp_unit_has_inlines
;
3928 /* Number of file tables emitted in maybe_emit_file(). */
3929 static GTY(()) int emitcount
= 0;
3931 /* Number of internal labels generated by gen_internal_sym(). */
3932 static GTY(()) int label_num
;
3934 #ifdef DWARF2_DEBUGGING_INFO
3936 /* Offset from the "steady-state frame pointer" to the CFA,
3937 within the current function. */
3938 static HOST_WIDE_INT frame_pointer_cfa_offset
;
3940 /* Forward declarations for functions defined in this file. */
3942 static int is_pseudo_reg (rtx
);
3943 static tree
type_main_variant (tree
);
3944 static int is_tagged_type (tree
);
3945 static const char *dwarf_tag_name (unsigned);
3946 static const char *dwarf_attr_name (unsigned);
3947 static const char *dwarf_form_name (unsigned);
3948 static tree
decl_ultimate_origin (tree
);
3949 static tree
block_ultimate_origin (tree
);
3950 static tree
decl_class_context (tree
);
3951 static void add_dwarf_attr (dw_die_ref
, dw_attr_ref
);
3952 static inline enum dw_val_class
AT_class (dw_attr_ref
);
3953 static void add_AT_flag (dw_die_ref
, enum dwarf_attribute
, unsigned);
3954 static inline unsigned AT_flag (dw_attr_ref
);
3955 static void add_AT_int (dw_die_ref
, enum dwarf_attribute
, HOST_WIDE_INT
);
3956 static inline HOST_WIDE_INT
AT_int (dw_attr_ref
);
3957 static void add_AT_unsigned (dw_die_ref
, enum dwarf_attribute
, unsigned HOST_WIDE_INT
);
3958 static inline unsigned HOST_WIDE_INT
AT_unsigned (dw_attr_ref
);
3959 static void add_AT_long_long (dw_die_ref
, enum dwarf_attribute
, unsigned long,
3961 static inline void add_AT_vec (dw_die_ref
, enum dwarf_attribute
, unsigned int,
3962 unsigned int, unsigned char *);
3963 static hashval_t
debug_str_do_hash (const void *);
3964 static int debug_str_eq (const void *, const void *);
3965 static void add_AT_string (dw_die_ref
, enum dwarf_attribute
, const char *);
3966 static inline const char *AT_string (dw_attr_ref
);
3967 static int AT_string_form (dw_attr_ref
);
3968 static void add_AT_die_ref (dw_die_ref
, enum dwarf_attribute
, dw_die_ref
);
3969 static void add_AT_specification (dw_die_ref
, dw_die_ref
);
3970 static inline dw_die_ref
AT_ref (dw_attr_ref
);
3971 static inline int AT_ref_external (dw_attr_ref
);
3972 static inline void set_AT_ref_external (dw_attr_ref
, int);
3973 static void add_AT_fde_ref (dw_die_ref
, enum dwarf_attribute
, unsigned);
3974 static void add_AT_loc (dw_die_ref
, enum dwarf_attribute
, dw_loc_descr_ref
);
3975 static inline dw_loc_descr_ref
AT_loc (dw_attr_ref
);
3976 static void add_AT_loc_list (dw_die_ref
, enum dwarf_attribute
,
3978 static inline dw_loc_list_ref
AT_loc_list (dw_attr_ref
);
3979 static void add_AT_addr (dw_die_ref
, enum dwarf_attribute
, rtx
);
3980 static inline rtx
AT_addr (dw_attr_ref
);
3981 static void add_AT_lbl_id (dw_die_ref
, enum dwarf_attribute
, const char *);
3982 static void add_AT_lbl_offset (dw_die_ref
, enum dwarf_attribute
, const char *);
3983 static void add_AT_offset (dw_die_ref
, enum dwarf_attribute
,
3984 unsigned HOST_WIDE_INT
);
3985 static void add_AT_range_list (dw_die_ref
, enum dwarf_attribute
,
3987 static inline const char *AT_lbl (dw_attr_ref
);
3988 static dw_attr_ref
get_AT (dw_die_ref
, enum dwarf_attribute
);
3989 static const char *get_AT_low_pc (dw_die_ref
);
3990 static const char *get_AT_hi_pc (dw_die_ref
);
3991 static const char *get_AT_string (dw_die_ref
, enum dwarf_attribute
);
3992 static int get_AT_flag (dw_die_ref
, enum dwarf_attribute
);
3993 static unsigned get_AT_unsigned (dw_die_ref
, enum dwarf_attribute
);
3994 static inline dw_die_ref
get_AT_ref (dw_die_ref
, enum dwarf_attribute
);
3995 static bool is_c_family (void);
3996 static bool is_cxx (void);
3997 static bool is_java (void);
3998 static bool is_fortran (void);
3999 static bool is_ada (void);
4000 static void remove_AT (dw_die_ref
, enum dwarf_attribute
);
4001 static void remove_child_TAG (dw_die_ref
, enum dwarf_tag
);
4002 static inline void free_die (dw_die_ref
);
4003 static void remove_children (dw_die_ref
);
4004 static void add_child_die (dw_die_ref
, dw_die_ref
);
4005 static dw_die_ref
new_die (enum dwarf_tag
, dw_die_ref
, tree
);
4006 static dw_die_ref
lookup_type_die (tree
);
4007 static void equate_type_number_to_die (tree
, dw_die_ref
);
4008 static hashval_t
decl_die_table_hash (const void *);
4009 static int decl_die_table_eq (const void *, const void *);
4010 static dw_die_ref
lookup_decl_die (tree
);
4011 static hashval_t
decl_loc_table_hash (const void *);
4012 static int decl_loc_table_eq (const void *, const void *);
4013 static var_loc_list
*lookup_decl_loc (tree
);
4014 static void equate_decl_number_to_die (tree
, dw_die_ref
);
4015 static void add_var_loc_to_decl (tree
, struct var_loc_node
*);
4016 static void print_spaces (FILE *);
4017 static void print_die (dw_die_ref
, FILE *);
4018 static void print_dwarf_line_table (FILE *);
4019 static void reverse_die_lists (dw_die_ref
);
4020 static void reverse_all_dies (dw_die_ref
);
4021 static dw_die_ref
push_new_compile_unit (dw_die_ref
, dw_die_ref
);
4022 static dw_die_ref
pop_compile_unit (dw_die_ref
);
4023 static void loc_checksum (dw_loc_descr_ref
, struct md5_ctx
*);
4024 static void attr_checksum (dw_attr_ref
, struct md5_ctx
*, int *);
4025 static void die_checksum (dw_die_ref
, struct md5_ctx
*, int *);
4026 static int same_loc_p (dw_loc_descr_ref
, dw_loc_descr_ref
, int *);
4027 static int same_dw_val_p (dw_val_node
*, dw_val_node
*, int *);
4028 static int same_attr_p (dw_attr_ref
, dw_attr_ref
, int *);
4029 static int same_die_p (dw_die_ref
, dw_die_ref
, int *);
4030 static int same_die_p_wrap (dw_die_ref
, dw_die_ref
);
4031 static void compute_section_prefix (dw_die_ref
);
4032 static int is_type_die (dw_die_ref
);
4033 static int is_comdat_die (dw_die_ref
);
4034 static int is_symbol_die (dw_die_ref
);
4035 static void assign_symbol_names (dw_die_ref
);
4036 static void break_out_includes (dw_die_ref
);
4037 static hashval_t
htab_cu_hash (const void *);
4038 static int htab_cu_eq (const void *, const void *);
4039 static void htab_cu_del (void *);
4040 static int check_duplicate_cu (dw_die_ref
, htab_t
, unsigned *);
4041 static void record_comdat_symbol_number (dw_die_ref
, htab_t
, unsigned);
4042 static void add_sibling_attributes (dw_die_ref
);
4043 static void build_abbrev_table (dw_die_ref
);
4044 static void output_location_lists (dw_die_ref
);
4045 static int constant_size (long unsigned);
4046 static unsigned long size_of_die (dw_die_ref
);
4047 static void calc_die_sizes (dw_die_ref
);
4048 static void mark_dies (dw_die_ref
);
4049 static void unmark_dies (dw_die_ref
);
4050 static void unmark_all_dies (dw_die_ref
);
4051 static unsigned long size_of_pubnames (void);
4052 static unsigned long size_of_aranges (void);
4053 static enum dwarf_form
value_format (dw_attr_ref
);
4054 static void output_value_format (dw_attr_ref
);
4055 static void output_abbrev_section (void);
4056 static void output_die_symbol (dw_die_ref
);
4057 static void output_die (dw_die_ref
);
4058 static void output_compilation_unit_header (void);
4059 static void output_comp_unit (dw_die_ref
, int);
4060 static const char *dwarf2_name (tree
, int);
4061 static void add_pubname (tree
, dw_die_ref
);
4062 static void output_pubnames (void);
4063 static void add_arange (tree
, dw_die_ref
);
4064 static void output_aranges (void);
4065 static unsigned int add_ranges (tree
);
4066 static void output_ranges (void);
4067 static void output_line_info (void);
4068 static void output_file_names (void);
4069 static dw_die_ref
base_type_die (tree
);
4070 static tree
root_type (tree
);
4071 static int is_base_type (tree
);
4072 static bool is_subrange_type (tree
);
4073 static dw_die_ref
subrange_type_die (tree
, dw_die_ref
);
4074 static dw_die_ref
modified_type_die (tree
, int, int, dw_die_ref
);
4075 static int type_is_enum (tree
);
4076 static unsigned int dbx_reg_number (rtx
);
4077 static void add_loc_descr_op_piece (dw_loc_descr_ref
*, int);
4078 static dw_loc_descr_ref
reg_loc_descriptor (rtx
);
4079 static dw_loc_descr_ref
one_reg_loc_descriptor (unsigned int);
4080 static dw_loc_descr_ref
multiple_reg_loc_descriptor (rtx
, rtx
);
4081 static dw_loc_descr_ref
int_loc_descriptor (HOST_WIDE_INT
);
4082 static dw_loc_descr_ref
based_loc_descr (rtx
, HOST_WIDE_INT
);
4083 static int is_based_loc (rtx
);
4084 static dw_loc_descr_ref
mem_loc_descriptor (rtx
, enum machine_mode mode
);
4085 static dw_loc_descr_ref
concat_loc_descriptor (rtx
, rtx
);
4086 static dw_loc_descr_ref
loc_descriptor (rtx
);
4087 static dw_loc_descr_ref
loc_descriptor_from_tree_1 (tree
, int);
4088 static dw_loc_descr_ref
loc_descriptor_from_tree (tree
);
4089 static HOST_WIDE_INT
ceiling (HOST_WIDE_INT
, unsigned int);
4090 static tree
field_type (tree
);
4091 static unsigned int simple_type_align_in_bits (tree
);
4092 static unsigned int simple_decl_align_in_bits (tree
);
4093 static unsigned HOST_WIDE_INT
simple_type_size_in_bits (tree
);
4094 static HOST_WIDE_INT
field_byte_offset (tree
);
4095 static void add_AT_location_description (dw_die_ref
, enum dwarf_attribute
,
4097 static void add_data_member_location_attribute (dw_die_ref
, tree
);
4098 static void add_const_value_attribute (dw_die_ref
, rtx
);
4099 static void insert_int (HOST_WIDE_INT
, unsigned, unsigned char *);
4100 static HOST_WIDE_INT
extract_int (const unsigned char *, unsigned);
4101 static void insert_float (rtx
, unsigned char *);
4102 static rtx
rtl_for_decl_location (tree
);
4103 static void add_location_or_const_value_attribute (dw_die_ref
, tree
,
4104 enum dwarf_attribute
);
4105 static void tree_add_const_value_attribute (dw_die_ref
, tree
);
4106 static void add_name_attribute (dw_die_ref
, const char *);
4107 static void add_comp_dir_attribute (dw_die_ref
);
4108 static void add_bound_info (dw_die_ref
, enum dwarf_attribute
, tree
);
4109 static void add_subscript_info (dw_die_ref
, tree
);
4110 static void add_byte_size_attribute (dw_die_ref
, tree
);
4111 static void add_bit_offset_attribute (dw_die_ref
, tree
);
4112 static void add_bit_size_attribute (dw_die_ref
, tree
);
4113 static void add_prototyped_attribute (dw_die_ref
, tree
);
4114 static void add_abstract_origin_attribute (dw_die_ref
, tree
);
4115 static void add_pure_or_virtual_attribute (dw_die_ref
, tree
);
4116 static void add_src_coords_attributes (dw_die_ref
, tree
);
4117 static void add_name_and_src_coords_attributes (dw_die_ref
, tree
);
4118 static void push_decl_scope (tree
);
4119 static void pop_decl_scope (void);
4120 static dw_die_ref
scope_die_for (tree
, dw_die_ref
);
4121 static inline int local_scope_p (dw_die_ref
);
4122 static inline int class_or_namespace_scope_p (dw_die_ref
);
4123 static void add_type_attribute (dw_die_ref
, tree
, int, int, dw_die_ref
);
4124 static void add_calling_convention_attribute (dw_die_ref
, tree
);
4125 static const char *type_tag (tree
);
4126 static tree
member_declared_type (tree
);
4128 static const char *decl_start_label (tree
);
4130 static void gen_array_type_die (tree
, dw_die_ref
);
4132 static void gen_entry_point_die (tree
, dw_die_ref
);
4134 static void gen_inlined_enumeration_type_die (tree
, dw_die_ref
);
4135 static void gen_inlined_structure_type_die (tree
, dw_die_ref
);
4136 static void gen_inlined_union_type_die (tree
, dw_die_ref
);
4137 static dw_die_ref
gen_enumeration_type_die (tree
, dw_die_ref
);
4138 static dw_die_ref
gen_formal_parameter_die (tree
, dw_die_ref
);
4139 static void gen_unspecified_parameters_die (tree
, dw_die_ref
);
4140 static void gen_formal_types_die (tree
, dw_die_ref
);
4141 static void gen_subprogram_die (tree
, dw_die_ref
);
4142 static void gen_variable_die (tree
, dw_die_ref
);
4143 static void gen_label_die (tree
, dw_die_ref
);
4144 static void gen_lexical_block_die (tree
, dw_die_ref
, int);
4145 static void gen_inlined_subroutine_die (tree
, dw_die_ref
, int);
4146 static void gen_field_die (tree
, dw_die_ref
);
4147 static void gen_ptr_to_mbr_type_die (tree
, dw_die_ref
);
4148 static dw_die_ref
gen_compile_unit_die (const char *);
4149 static void gen_inheritance_die (tree
, tree
, dw_die_ref
);
4150 static void gen_member_die (tree
, dw_die_ref
);
4151 static void gen_struct_or_union_type_die (tree
, dw_die_ref
);
4152 static void gen_subroutine_type_die (tree
, dw_die_ref
);
4153 static void gen_typedef_die (tree
, dw_die_ref
);
4154 static void gen_type_die (tree
, dw_die_ref
);
4155 static void gen_tagged_type_instantiation_die (tree
, dw_die_ref
);
4156 static void gen_block_die (tree
, dw_die_ref
, int);
4157 static void decls_for_scope (tree
, dw_die_ref
, int);
4158 static int is_redundant_typedef (tree
);
4159 static void gen_namespace_die (tree
);
4160 static void gen_decl_die (tree
, dw_die_ref
);
4161 static dw_die_ref
force_decl_die (tree
);
4162 static dw_die_ref
force_type_die (tree
);
4163 static dw_die_ref
setup_namespace_context (tree
, dw_die_ref
);
4164 static void declare_in_namespace (tree
, dw_die_ref
);
4165 static unsigned lookup_filename (const char *);
4166 static void init_file_table (void);
4167 static void retry_incomplete_types (void);
4168 static void gen_type_die_for_member (tree
, tree
, dw_die_ref
);
4169 static void splice_child_die (dw_die_ref
, dw_die_ref
);
4170 static int file_info_cmp (const void *, const void *);
4171 static dw_loc_list_ref
new_loc_list (dw_loc_descr_ref
, const char *,
4172 const char *, const char *, unsigned);
4173 static void add_loc_descr_to_loc_list (dw_loc_list_ref
*, dw_loc_descr_ref
,
4174 const char *, const char *,
4176 static void output_loc_list (dw_loc_list_ref
);
4177 static char *gen_internal_sym (const char *);
4179 static void prune_unmark_dies (dw_die_ref
);
4180 static void prune_unused_types_mark (dw_die_ref
, int);
4181 static void prune_unused_types_walk (dw_die_ref
);
4182 static void prune_unused_types_walk_attribs (dw_die_ref
);
4183 static void prune_unused_types_prune (dw_die_ref
);
4184 static void prune_unused_types (void);
4185 static int maybe_emit_file (int);
4187 /* Section names used to hold DWARF debugging information. */
4188 #ifndef DEBUG_INFO_SECTION
4189 #define DEBUG_INFO_SECTION ".debug_info"
4191 #ifndef DEBUG_ABBREV_SECTION
4192 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
4194 #ifndef DEBUG_ARANGES_SECTION
4195 #define DEBUG_ARANGES_SECTION ".debug_aranges"
4197 #ifndef DEBUG_MACINFO_SECTION
4198 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
4200 #ifndef DEBUG_LINE_SECTION
4201 #define DEBUG_LINE_SECTION ".debug_line"
4203 #ifndef DEBUG_LOC_SECTION
4204 #define DEBUG_LOC_SECTION ".debug_loc"
4206 #ifndef DEBUG_PUBNAMES_SECTION
4207 #define DEBUG_PUBNAMES_SECTION ".debug_pubnames"
4209 #ifndef DEBUG_STR_SECTION
4210 #define DEBUG_STR_SECTION ".debug_str"
4212 #ifndef DEBUG_RANGES_SECTION
4213 #define DEBUG_RANGES_SECTION ".debug_ranges"
4216 /* Standard ELF section names for compiled code and data. */
4217 #ifndef TEXT_SECTION_NAME
4218 #define TEXT_SECTION_NAME ".text"
4221 /* Section flags for .debug_str section. */
4222 #define DEBUG_STR_SECTION_FLAGS \
4223 (HAVE_GAS_SHF_MERGE && flag_merge_constants \
4224 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
4227 /* Labels we insert at beginning sections we can reference instead of
4228 the section names themselves. */
4230 #ifndef TEXT_SECTION_LABEL
4231 #define TEXT_SECTION_LABEL "Ltext"
4233 #ifndef COLD_TEXT_SECTION_LABEL
4234 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
4236 #ifndef DEBUG_LINE_SECTION_LABEL
4237 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
4239 #ifndef DEBUG_INFO_SECTION_LABEL
4240 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
4242 #ifndef DEBUG_ABBREV_SECTION_LABEL
4243 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
4245 #ifndef DEBUG_LOC_SECTION_LABEL
4246 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
4248 #ifndef DEBUG_RANGES_SECTION_LABEL
4249 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
4251 #ifndef DEBUG_MACINFO_SECTION_LABEL
4252 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
4255 /* Definitions of defaults for formats and names of various special
4256 (artificial) labels which may be generated within this file (when the -g
4257 options is used and DWARF2_DEBUGGING_INFO is in effect.
4258 If necessary, these may be overridden from within the tm.h file, but
4259 typically, overriding these defaults is unnecessary. */
4261 static char text_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4262 static char text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4263 static char cold_text_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4264 static char cold_end_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4265 static char abbrev_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4266 static char debug_info_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4267 static char debug_line_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4268 static char macinfo_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4269 static char loc_section_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
4270 static char ranges_section_label
[2 * MAX_ARTIFICIAL_LABEL_BYTES
];
4272 #ifndef TEXT_END_LABEL
4273 #define TEXT_END_LABEL "Letext"
4275 #ifndef COLD_END_LABEL
4276 #define COLD_END_LABEL "Letext_cold"
4278 #ifndef BLOCK_BEGIN_LABEL
4279 #define BLOCK_BEGIN_LABEL "LBB"
4281 #ifndef BLOCK_END_LABEL
4282 #define BLOCK_END_LABEL "LBE"
4284 #ifndef LINE_CODE_LABEL
4285 #define LINE_CODE_LABEL "LM"
4287 #ifndef SEPARATE_LINE_CODE_LABEL
4288 #define SEPARATE_LINE_CODE_LABEL "LSM"
4291 /* We allow a language front-end to designate a function that is to be
4292 called to "demangle" any name before it is put into a DIE. */
4294 static const char *(*demangle_name_func
) (const char *);
4297 dwarf2out_set_demangle_name_func (const char *(*func
) (const char *))
4299 demangle_name_func
= func
;
4302 /* Test if rtl node points to a pseudo register. */
4305 is_pseudo_reg (rtx rtl
)
4307 return ((REG_P (rtl
) && REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
4308 || (GET_CODE (rtl
) == SUBREG
4309 && REGNO (SUBREG_REG (rtl
)) >= FIRST_PSEUDO_REGISTER
));
4312 /* Return a reference to a type, with its const and volatile qualifiers
4316 type_main_variant (tree type
)
4318 type
= TYPE_MAIN_VARIANT (type
);
4320 /* ??? There really should be only one main variant among any group of
4321 variants of a given type (and all of the MAIN_VARIANT values for all
4322 members of the group should point to that one type) but sometimes the C
4323 front-end messes this up for array types, so we work around that bug
4325 if (TREE_CODE (type
) == ARRAY_TYPE
)
4326 while (type
!= TYPE_MAIN_VARIANT (type
))
4327 type
= TYPE_MAIN_VARIANT (type
);
4332 /* Return nonzero if the given type node represents a tagged type. */
4335 is_tagged_type (tree type
)
4337 enum tree_code code
= TREE_CODE (type
);
4339 return (code
== RECORD_TYPE
|| code
== UNION_TYPE
4340 || code
== QUAL_UNION_TYPE
|| code
== ENUMERAL_TYPE
);
4343 /* Convert a DIE tag into its string name. */
4346 dwarf_tag_name (unsigned int tag
)
4350 case DW_TAG_padding
:
4351 return "DW_TAG_padding";
4352 case DW_TAG_array_type
:
4353 return "DW_TAG_array_type";
4354 case DW_TAG_class_type
:
4355 return "DW_TAG_class_type";
4356 case DW_TAG_entry_point
:
4357 return "DW_TAG_entry_point";
4358 case DW_TAG_enumeration_type
:
4359 return "DW_TAG_enumeration_type";
4360 case DW_TAG_formal_parameter
:
4361 return "DW_TAG_formal_parameter";
4362 case DW_TAG_imported_declaration
:
4363 return "DW_TAG_imported_declaration";
4365 return "DW_TAG_label";
4366 case DW_TAG_lexical_block
:
4367 return "DW_TAG_lexical_block";
4369 return "DW_TAG_member";
4370 case DW_TAG_pointer_type
:
4371 return "DW_TAG_pointer_type";
4372 case DW_TAG_reference_type
:
4373 return "DW_TAG_reference_type";
4374 case DW_TAG_compile_unit
:
4375 return "DW_TAG_compile_unit";
4376 case DW_TAG_string_type
:
4377 return "DW_TAG_string_type";
4378 case DW_TAG_structure_type
:
4379 return "DW_TAG_structure_type";
4380 case DW_TAG_subroutine_type
:
4381 return "DW_TAG_subroutine_type";
4382 case DW_TAG_typedef
:
4383 return "DW_TAG_typedef";
4384 case DW_TAG_union_type
:
4385 return "DW_TAG_union_type";
4386 case DW_TAG_unspecified_parameters
:
4387 return "DW_TAG_unspecified_parameters";
4388 case DW_TAG_variant
:
4389 return "DW_TAG_variant";
4390 case DW_TAG_common_block
:
4391 return "DW_TAG_common_block";
4392 case DW_TAG_common_inclusion
:
4393 return "DW_TAG_common_inclusion";
4394 case DW_TAG_inheritance
:
4395 return "DW_TAG_inheritance";
4396 case DW_TAG_inlined_subroutine
:
4397 return "DW_TAG_inlined_subroutine";
4399 return "DW_TAG_module";
4400 case DW_TAG_ptr_to_member_type
:
4401 return "DW_TAG_ptr_to_member_type";
4402 case DW_TAG_set_type
:
4403 return "DW_TAG_set_type";
4404 case DW_TAG_subrange_type
:
4405 return "DW_TAG_subrange_type";
4406 case DW_TAG_with_stmt
:
4407 return "DW_TAG_with_stmt";
4408 case DW_TAG_access_declaration
:
4409 return "DW_TAG_access_declaration";
4410 case DW_TAG_base_type
:
4411 return "DW_TAG_base_type";
4412 case DW_TAG_catch_block
:
4413 return "DW_TAG_catch_block";
4414 case DW_TAG_const_type
:
4415 return "DW_TAG_const_type";
4416 case DW_TAG_constant
:
4417 return "DW_TAG_constant";
4418 case DW_TAG_enumerator
:
4419 return "DW_TAG_enumerator";
4420 case DW_TAG_file_type
:
4421 return "DW_TAG_file_type";
4423 return "DW_TAG_friend";
4424 case DW_TAG_namelist
:
4425 return "DW_TAG_namelist";
4426 case DW_TAG_namelist_item
:
4427 return "DW_TAG_namelist_item";
4428 case DW_TAG_namespace
:
4429 return "DW_TAG_namespace";
4430 case DW_TAG_packed_type
:
4431 return "DW_TAG_packed_type";
4432 case DW_TAG_subprogram
:
4433 return "DW_TAG_subprogram";
4434 case DW_TAG_template_type_param
:
4435 return "DW_TAG_template_type_param";
4436 case DW_TAG_template_value_param
:
4437 return "DW_TAG_template_value_param";
4438 case DW_TAG_thrown_type
:
4439 return "DW_TAG_thrown_type";
4440 case DW_TAG_try_block
:
4441 return "DW_TAG_try_block";
4442 case DW_TAG_variant_part
:
4443 return "DW_TAG_variant_part";
4444 case DW_TAG_variable
:
4445 return "DW_TAG_variable";
4446 case DW_TAG_volatile_type
:
4447 return "DW_TAG_volatile_type";
4448 case DW_TAG_imported_module
:
4449 return "DW_TAG_imported_module";
4450 case DW_TAG_MIPS_loop
:
4451 return "DW_TAG_MIPS_loop";
4452 case DW_TAG_format_label
:
4453 return "DW_TAG_format_label";
4454 case DW_TAG_function_template
:
4455 return "DW_TAG_function_template";
4456 case DW_TAG_class_template
:
4457 return "DW_TAG_class_template";
4458 case DW_TAG_GNU_BINCL
:
4459 return "DW_TAG_GNU_BINCL";
4460 case DW_TAG_GNU_EINCL
:
4461 return "DW_TAG_GNU_EINCL";
4463 return "DW_TAG_<unknown>";
4467 /* Convert a DWARF attribute code into its string name. */
4470 dwarf_attr_name (unsigned int attr
)
4475 return "DW_AT_sibling";
4476 case DW_AT_location
:
4477 return "DW_AT_location";
4479 return "DW_AT_name";
4480 case DW_AT_ordering
:
4481 return "DW_AT_ordering";
4482 case DW_AT_subscr_data
:
4483 return "DW_AT_subscr_data";
4484 case DW_AT_byte_size
:
4485 return "DW_AT_byte_size";
4486 case DW_AT_bit_offset
:
4487 return "DW_AT_bit_offset";
4488 case DW_AT_bit_size
:
4489 return "DW_AT_bit_size";
4490 case DW_AT_element_list
:
4491 return "DW_AT_element_list";
4492 case DW_AT_stmt_list
:
4493 return "DW_AT_stmt_list";
4495 return "DW_AT_low_pc";
4497 return "DW_AT_high_pc";
4498 case DW_AT_language
:
4499 return "DW_AT_language";
4501 return "DW_AT_member";
4503 return "DW_AT_discr";
4504 case DW_AT_discr_value
:
4505 return "DW_AT_discr_value";
4506 case DW_AT_visibility
:
4507 return "DW_AT_visibility";
4509 return "DW_AT_import";
4510 case DW_AT_string_length
:
4511 return "DW_AT_string_length";
4512 case DW_AT_common_reference
:
4513 return "DW_AT_common_reference";
4514 case DW_AT_comp_dir
:
4515 return "DW_AT_comp_dir";
4516 case DW_AT_const_value
:
4517 return "DW_AT_const_value";
4518 case DW_AT_containing_type
:
4519 return "DW_AT_containing_type";
4520 case DW_AT_default_value
:
4521 return "DW_AT_default_value";
4523 return "DW_AT_inline";
4524 case DW_AT_is_optional
:
4525 return "DW_AT_is_optional";
4526 case DW_AT_lower_bound
:
4527 return "DW_AT_lower_bound";
4528 case DW_AT_producer
:
4529 return "DW_AT_producer";
4530 case DW_AT_prototyped
:
4531 return "DW_AT_prototyped";
4532 case DW_AT_return_addr
:
4533 return "DW_AT_return_addr";
4534 case DW_AT_start_scope
:
4535 return "DW_AT_start_scope";
4536 case DW_AT_stride_size
:
4537 return "DW_AT_stride_size";
4538 case DW_AT_upper_bound
:
4539 return "DW_AT_upper_bound";
4540 case DW_AT_abstract_origin
:
4541 return "DW_AT_abstract_origin";
4542 case DW_AT_accessibility
:
4543 return "DW_AT_accessibility";
4544 case DW_AT_address_class
:
4545 return "DW_AT_address_class";
4546 case DW_AT_artificial
:
4547 return "DW_AT_artificial";
4548 case DW_AT_base_types
:
4549 return "DW_AT_base_types";
4550 case DW_AT_calling_convention
:
4551 return "DW_AT_calling_convention";
4553 return "DW_AT_count";
4554 case DW_AT_data_member_location
:
4555 return "DW_AT_data_member_location";
4556 case DW_AT_decl_column
:
4557 return "DW_AT_decl_column";
4558 case DW_AT_decl_file
:
4559 return "DW_AT_decl_file";
4560 case DW_AT_decl_line
:
4561 return "DW_AT_decl_line";
4562 case DW_AT_declaration
:
4563 return "DW_AT_declaration";
4564 case DW_AT_discr_list
:
4565 return "DW_AT_discr_list";
4566 case DW_AT_encoding
:
4567 return "DW_AT_encoding";
4568 case DW_AT_external
:
4569 return "DW_AT_external";
4570 case DW_AT_frame_base
:
4571 return "DW_AT_frame_base";
4573 return "DW_AT_friend";
4574 case DW_AT_identifier_case
:
4575 return "DW_AT_identifier_case";
4576 case DW_AT_macro_info
:
4577 return "DW_AT_macro_info";
4578 case DW_AT_namelist_items
:
4579 return "DW_AT_namelist_items";
4580 case DW_AT_priority
:
4581 return "DW_AT_priority";
4583 return "DW_AT_segment";
4584 case DW_AT_specification
:
4585 return "DW_AT_specification";
4586 case DW_AT_static_link
:
4587 return "DW_AT_static_link";
4589 return "DW_AT_type";
4590 case DW_AT_use_location
:
4591 return "DW_AT_use_location";
4592 case DW_AT_variable_parameter
:
4593 return "DW_AT_variable_parameter";
4594 case DW_AT_virtuality
:
4595 return "DW_AT_virtuality";
4596 case DW_AT_vtable_elem_location
:
4597 return "DW_AT_vtable_elem_location";
4599 case DW_AT_allocated
:
4600 return "DW_AT_allocated";
4601 case DW_AT_associated
:
4602 return "DW_AT_associated";
4603 case DW_AT_data_location
:
4604 return "DW_AT_data_location";
4606 return "DW_AT_stride";
4607 case DW_AT_entry_pc
:
4608 return "DW_AT_entry_pc";
4609 case DW_AT_use_UTF8
:
4610 return "DW_AT_use_UTF8";
4611 case DW_AT_extension
:
4612 return "DW_AT_extension";
4614 return "DW_AT_ranges";
4615 case DW_AT_trampoline
:
4616 return "DW_AT_trampoline";
4617 case DW_AT_call_column
:
4618 return "DW_AT_call_column";
4619 case DW_AT_call_file
:
4620 return "DW_AT_call_file";
4621 case DW_AT_call_line
:
4622 return "DW_AT_call_line";
4624 case DW_AT_MIPS_fde
:
4625 return "DW_AT_MIPS_fde";
4626 case DW_AT_MIPS_loop_begin
:
4627 return "DW_AT_MIPS_loop_begin";
4628 case DW_AT_MIPS_tail_loop_begin
:
4629 return "DW_AT_MIPS_tail_loop_begin";
4630 case DW_AT_MIPS_epilog_begin
:
4631 return "DW_AT_MIPS_epilog_begin";
4632 case DW_AT_MIPS_loop_unroll_factor
:
4633 return "DW_AT_MIPS_loop_unroll_factor";
4634 case DW_AT_MIPS_software_pipeline_depth
:
4635 return "DW_AT_MIPS_software_pipeline_depth";
4636 case DW_AT_MIPS_linkage_name
:
4637 return "DW_AT_MIPS_linkage_name";
4638 case DW_AT_MIPS_stride
:
4639 return "DW_AT_MIPS_stride";
4640 case DW_AT_MIPS_abstract_name
:
4641 return "DW_AT_MIPS_abstract_name";
4642 case DW_AT_MIPS_clone_origin
:
4643 return "DW_AT_MIPS_clone_origin";
4644 case DW_AT_MIPS_has_inlines
:
4645 return "DW_AT_MIPS_has_inlines";
4647 case DW_AT_sf_names
:
4648 return "DW_AT_sf_names";
4649 case DW_AT_src_info
:
4650 return "DW_AT_src_info";
4651 case DW_AT_mac_info
:
4652 return "DW_AT_mac_info";
4653 case DW_AT_src_coords
:
4654 return "DW_AT_src_coords";
4655 case DW_AT_body_begin
:
4656 return "DW_AT_body_begin";
4657 case DW_AT_body_end
:
4658 return "DW_AT_body_end";
4659 case DW_AT_GNU_vector
:
4660 return "DW_AT_GNU_vector";
4662 case DW_AT_VMS_rtnbeg_pd_address
:
4663 return "DW_AT_VMS_rtnbeg_pd_address";
4666 return "DW_AT_<unknown>";
4670 /* Convert a DWARF value form code into its string name. */
4673 dwarf_form_name (unsigned int form
)
4678 return "DW_FORM_addr";
4679 case DW_FORM_block2
:
4680 return "DW_FORM_block2";
4681 case DW_FORM_block4
:
4682 return "DW_FORM_block4";
4684 return "DW_FORM_data2";
4686 return "DW_FORM_data4";
4688 return "DW_FORM_data8";
4689 case DW_FORM_string
:
4690 return "DW_FORM_string";
4692 return "DW_FORM_block";
4693 case DW_FORM_block1
:
4694 return "DW_FORM_block1";
4696 return "DW_FORM_data1";
4698 return "DW_FORM_flag";
4700 return "DW_FORM_sdata";
4702 return "DW_FORM_strp";
4704 return "DW_FORM_udata";
4705 case DW_FORM_ref_addr
:
4706 return "DW_FORM_ref_addr";
4708 return "DW_FORM_ref1";
4710 return "DW_FORM_ref2";
4712 return "DW_FORM_ref4";
4714 return "DW_FORM_ref8";
4715 case DW_FORM_ref_udata
:
4716 return "DW_FORM_ref_udata";
4717 case DW_FORM_indirect
:
4718 return "DW_FORM_indirect";
4720 return "DW_FORM_<unknown>";
4724 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4725 instance of an inlined instance of a decl which is local to an inline
4726 function, so we have to trace all of the way back through the origin chain
4727 to find out what sort of node actually served as the original seed for the
4731 decl_ultimate_origin (tree decl
)
4733 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl
), TS_DECL_COMMON
))
4736 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
4737 nodes in the function to point to themselves; ignore that if
4738 we're trying to output the abstract instance of this function. */
4739 if (DECL_ABSTRACT (decl
) && DECL_ABSTRACT_ORIGIN (decl
) == decl
)
4742 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4743 most distant ancestor, this should never happen. */
4744 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl
)));
4746 return DECL_ABSTRACT_ORIGIN (decl
);
4749 /* Determine the "ultimate origin" of a block. The block may be an inlined
4750 instance of an inlined instance of a block which is local to an inline
4751 function, so we have to trace all of the way back through the origin chain
4752 to find out what sort of node actually served as the original seed for the
4756 block_ultimate_origin (tree block
)
4758 tree immediate_origin
= BLOCK_ABSTRACT_ORIGIN (block
);
4760 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
4761 nodes in the function to point to themselves; ignore that if
4762 we're trying to output the abstract instance of this function. */
4763 if (BLOCK_ABSTRACT (block
) && immediate_origin
== block
)
4766 if (immediate_origin
== NULL_TREE
)
4771 tree lookahead
= immediate_origin
;
4775 ret_val
= lookahead
;
4776 lookahead
= (TREE_CODE (ret_val
) == BLOCK
4777 ? BLOCK_ABSTRACT_ORIGIN (ret_val
) : NULL
);
4779 while (lookahead
!= NULL
&& lookahead
!= ret_val
);
4781 /* The block's abstract origin chain may not be the *ultimate* origin of
4782 the block. It could lead to a DECL that has an abstract origin set.
4783 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
4784 will give us if it has one). Note that DECL's abstract origins are
4785 supposed to be the most distant ancestor (or so decl_ultimate_origin
4786 claims), so we don't need to loop following the DECL origins. */
4787 if (DECL_P (ret_val
))
4788 return DECL_ORIGIN (ret_val
);
4794 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4795 of a virtual function may refer to a base class, so we check the 'this'
4799 decl_class_context (tree decl
)
4801 tree context
= NULL_TREE
;
4803 if (TREE_CODE (decl
) != FUNCTION_DECL
|| ! DECL_VINDEX (decl
))
4804 context
= DECL_CONTEXT (decl
);
4806 context
= TYPE_MAIN_VARIANT
4807 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl
)))));
4809 if (context
&& !TYPE_P (context
))
4810 context
= NULL_TREE
;
4815 /* Add an attribute/value pair to a DIE. We build the lists up in reverse
4816 addition order, and correct that in reverse_all_dies. */
4819 add_dwarf_attr (dw_die_ref die
, dw_attr_ref attr
)
4821 if (die
!= NULL
&& attr
!= NULL
)
4823 attr
->dw_attr_next
= die
->die_attr
;
4824 die
->die_attr
= attr
;
4828 static inline enum dw_val_class
4829 AT_class (dw_attr_ref a
)
4831 return a
->dw_attr_val
.val_class
;
4834 /* Add a flag value attribute to a DIE. */
4837 add_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int flag
)
4839 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4841 attr
->dw_attr_next
= NULL
;
4842 attr
->dw_attr
= attr_kind
;
4843 attr
->dw_attr_val
.val_class
= dw_val_class_flag
;
4844 attr
->dw_attr_val
.v
.val_flag
= flag
;
4845 add_dwarf_attr (die
, attr
);
4848 static inline unsigned
4849 AT_flag (dw_attr_ref a
)
4851 gcc_assert (a
&& AT_class (a
) == dw_val_class_flag
);
4852 return a
->dw_attr_val
.v
.val_flag
;
4855 /* Add a signed integer attribute value to a DIE. */
4858 add_AT_int (dw_die_ref die
, enum dwarf_attribute attr_kind
, HOST_WIDE_INT int_val
)
4860 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4862 attr
->dw_attr_next
= NULL
;
4863 attr
->dw_attr
= attr_kind
;
4864 attr
->dw_attr_val
.val_class
= dw_val_class_const
;
4865 attr
->dw_attr_val
.v
.val_int
= int_val
;
4866 add_dwarf_attr (die
, attr
);
4869 static inline HOST_WIDE_INT
4870 AT_int (dw_attr_ref a
)
4872 gcc_assert (a
&& AT_class (a
) == dw_val_class_const
);
4873 return a
->dw_attr_val
.v
.val_int
;
4876 /* Add an unsigned integer attribute value to a DIE. */
4879 add_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4880 unsigned HOST_WIDE_INT unsigned_val
)
4882 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4884 attr
->dw_attr_next
= NULL
;
4885 attr
->dw_attr
= attr_kind
;
4886 attr
->dw_attr_val
.val_class
= dw_val_class_unsigned_const
;
4887 attr
->dw_attr_val
.v
.val_unsigned
= unsigned_val
;
4888 add_dwarf_attr (die
, attr
);
4891 static inline unsigned HOST_WIDE_INT
4892 AT_unsigned (dw_attr_ref a
)
4894 gcc_assert (a
&& AT_class (a
) == dw_val_class_unsigned_const
);
4895 return a
->dw_attr_val
.v
.val_unsigned
;
4898 /* Add an unsigned double integer attribute value to a DIE. */
4901 add_AT_long_long (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4902 long unsigned int val_hi
, long unsigned int val_low
)
4904 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4906 attr
->dw_attr_next
= NULL
;
4907 attr
->dw_attr
= attr_kind
;
4908 attr
->dw_attr_val
.val_class
= dw_val_class_long_long
;
4909 attr
->dw_attr_val
.v
.val_long_long
.hi
= val_hi
;
4910 attr
->dw_attr_val
.v
.val_long_long
.low
= val_low
;
4911 add_dwarf_attr (die
, attr
);
4914 /* Add a floating point attribute value to a DIE and return it. */
4917 add_AT_vec (dw_die_ref die
, enum dwarf_attribute attr_kind
,
4918 unsigned int length
, unsigned int elt_size
, unsigned char *array
)
4920 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4922 attr
->dw_attr_next
= NULL
;
4923 attr
->dw_attr
= attr_kind
;
4924 attr
->dw_attr_val
.val_class
= dw_val_class_vec
;
4925 attr
->dw_attr_val
.v
.val_vec
.length
= length
;
4926 attr
->dw_attr_val
.v
.val_vec
.elt_size
= elt_size
;
4927 attr
->dw_attr_val
.v
.val_vec
.array
= array
;
4928 add_dwarf_attr (die
, attr
);
4931 /* Hash and equality functions for debug_str_hash. */
4934 debug_str_do_hash (const void *x
)
4936 return htab_hash_string (((const struct indirect_string_node
*)x
)->str
);
4940 debug_str_eq (const void *x1
, const void *x2
)
4942 return strcmp ((((const struct indirect_string_node
*)x1
)->str
),
4943 (const char *)x2
) == 0;
4946 /* Add a string attribute value to a DIE. */
4949 add_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *str
)
4951 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
4952 struct indirect_string_node
*node
;
4955 if (! debug_str_hash
)
4956 debug_str_hash
= htab_create_ggc (10, debug_str_do_hash
,
4957 debug_str_eq
, NULL
);
4959 slot
= htab_find_slot_with_hash (debug_str_hash
, str
,
4960 htab_hash_string (str
), INSERT
);
4962 *slot
= ggc_alloc_cleared (sizeof (struct indirect_string_node
));
4963 node
= (struct indirect_string_node
*) *slot
;
4964 node
->str
= ggc_strdup (str
);
4967 attr
->dw_attr_next
= NULL
;
4968 attr
->dw_attr
= attr_kind
;
4969 attr
->dw_attr_val
.val_class
= dw_val_class_str
;
4970 attr
->dw_attr_val
.v
.val_str
= node
;
4971 add_dwarf_attr (die
, attr
);
4974 static inline const char *
4975 AT_string (dw_attr_ref a
)
4977 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
4978 return a
->dw_attr_val
.v
.val_str
->str
;
4981 /* Find out whether a string should be output inline in DIE
4982 or out-of-line in .debug_str section. */
4985 AT_string_form (dw_attr_ref a
)
4987 struct indirect_string_node
*node
;
4991 gcc_assert (a
&& AT_class (a
) == dw_val_class_str
);
4993 node
= a
->dw_attr_val
.v
.val_str
;
4997 len
= strlen (node
->str
) + 1;
4999 /* If the string is shorter or equal to the size of the reference, it is
5000 always better to put it inline. */
5001 if (len
<= DWARF_OFFSET_SIZE
|| node
->refcount
== 0)
5002 return node
->form
= DW_FORM_string
;
5004 /* If we cannot expect the linker to merge strings in .debug_str
5005 section, only put it into .debug_str if it is worth even in this
5007 if ((debug_str_section
->common
.flags
& SECTION_MERGE
) == 0
5008 && (len
- DWARF_OFFSET_SIZE
) * node
->refcount
<= len
)
5009 return node
->form
= DW_FORM_string
;
5011 ASM_GENERATE_INTERNAL_LABEL (label
, "LASF", dw2_string_counter
);
5012 ++dw2_string_counter
;
5013 node
->label
= xstrdup (label
);
5015 return node
->form
= DW_FORM_strp
;
5018 /* Add a DIE reference attribute value to a DIE. */
5021 add_AT_die_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_die_ref targ_die
)
5023 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5025 attr
->dw_attr_next
= NULL
;
5026 attr
->dw_attr
= attr_kind
;
5027 attr
->dw_attr_val
.val_class
= dw_val_class_die_ref
;
5028 attr
->dw_attr_val
.v
.val_die_ref
.die
= targ_die
;
5029 attr
->dw_attr_val
.v
.val_die_ref
.external
= 0;
5030 add_dwarf_attr (die
, attr
);
5033 /* Add an AT_specification attribute to a DIE, and also make the back
5034 pointer from the specification to the definition. */
5037 add_AT_specification (dw_die_ref die
, dw_die_ref targ_die
)
5039 add_AT_die_ref (die
, DW_AT_specification
, targ_die
);
5040 gcc_assert (!targ_die
->die_definition
);
5041 targ_die
->die_definition
= die
;
5044 static inline dw_die_ref
5045 AT_ref (dw_attr_ref a
)
5047 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
5048 return a
->dw_attr_val
.v
.val_die_ref
.die
;
5052 AT_ref_external (dw_attr_ref a
)
5054 if (a
&& AT_class (a
) == dw_val_class_die_ref
)
5055 return a
->dw_attr_val
.v
.val_die_ref
.external
;
5061 set_AT_ref_external (dw_attr_ref a
, int i
)
5063 gcc_assert (a
&& AT_class (a
) == dw_val_class_die_ref
);
5064 a
->dw_attr_val
.v
.val_die_ref
.external
= i
;
5067 /* Add an FDE reference attribute value to a DIE. */
5070 add_AT_fde_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
, unsigned int targ_fde
)
5072 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5074 attr
->dw_attr_next
= NULL
;
5075 attr
->dw_attr
= attr_kind
;
5076 attr
->dw_attr_val
.val_class
= dw_val_class_fde_ref
;
5077 attr
->dw_attr_val
.v
.val_fde_index
= targ_fde
;
5078 add_dwarf_attr (die
, attr
);
5081 /* Add a location description attribute value to a DIE. */
5084 add_AT_loc (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_descr_ref loc
)
5086 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5088 attr
->dw_attr_next
= NULL
;
5089 attr
->dw_attr
= attr_kind
;
5090 attr
->dw_attr_val
.val_class
= dw_val_class_loc
;
5091 attr
->dw_attr_val
.v
.val_loc
= loc
;
5092 add_dwarf_attr (die
, attr
);
5095 static inline dw_loc_descr_ref
5096 AT_loc (dw_attr_ref a
)
5098 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc
);
5099 return a
->dw_attr_val
.v
.val_loc
;
5103 add_AT_loc_list (dw_die_ref die
, enum dwarf_attribute attr_kind
, dw_loc_list_ref loc_list
)
5105 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5107 attr
->dw_attr_next
= NULL
;
5108 attr
->dw_attr
= attr_kind
;
5109 attr
->dw_attr_val
.val_class
= dw_val_class_loc_list
;
5110 attr
->dw_attr_val
.v
.val_loc_list
= loc_list
;
5111 add_dwarf_attr (die
, attr
);
5112 have_location_lists
= true;
5115 static inline dw_loc_list_ref
5116 AT_loc_list (dw_attr_ref a
)
5118 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc_list
);
5119 return a
->dw_attr_val
.v
.val_loc_list
;
5122 /* Add an address constant attribute value to a DIE. */
5125 add_AT_addr (dw_die_ref die
, enum dwarf_attribute attr_kind
, rtx addr
)
5127 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5129 attr
->dw_attr_next
= NULL
;
5130 attr
->dw_attr
= attr_kind
;
5131 attr
->dw_attr_val
.val_class
= dw_val_class_addr
;
5132 attr
->dw_attr_val
.v
.val_addr
= addr
;
5133 add_dwarf_attr (die
, attr
);
5137 AT_addr (dw_attr_ref a
)
5139 gcc_assert (a
&& AT_class (a
) == dw_val_class_addr
);
5140 return a
->dw_attr_val
.v
.val_addr
;
5143 /* Add a label identifier attribute value to a DIE. */
5146 add_AT_lbl_id (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *lbl_id
)
5148 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5150 attr
->dw_attr_next
= NULL
;
5151 attr
->dw_attr
= attr_kind
;
5152 attr
->dw_attr_val
.val_class
= dw_val_class_lbl_id
;
5153 attr
->dw_attr_val
.v
.val_lbl_id
= xstrdup (lbl_id
);
5154 add_dwarf_attr (die
, attr
);
5157 /* Add a section offset attribute value to a DIE. */
5160 add_AT_lbl_offset (dw_die_ref die
, enum dwarf_attribute attr_kind
, const char *label
)
5162 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5164 attr
->dw_attr_next
= NULL
;
5165 attr
->dw_attr
= attr_kind
;
5166 attr
->dw_attr_val
.val_class
= dw_val_class_lbl_offset
;
5167 attr
->dw_attr_val
.v
.val_lbl_id
= xstrdup (label
);
5168 add_dwarf_attr (die
, attr
);
5171 /* Add an offset attribute value to a DIE. */
5174 add_AT_offset (dw_die_ref die
, enum dwarf_attribute attr_kind
,
5175 unsigned HOST_WIDE_INT offset
)
5177 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5179 attr
->dw_attr_next
= NULL
;
5180 attr
->dw_attr
= attr_kind
;
5181 attr
->dw_attr_val
.val_class
= dw_val_class_offset
;
5182 attr
->dw_attr_val
.v
.val_offset
= offset
;
5183 add_dwarf_attr (die
, attr
);
5186 /* Add an range_list attribute value to a DIE. */
5189 add_AT_range_list (dw_die_ref die
, enum dwarf_attribute attr_kind
,
5190 long unsigned int offset
)
5192 dw_attr_ref attr
= ggc_alloc (sizeof (dw_attr_node
));
5194 attr
->dw_attr_next
= NULL
;
5195 attr
->dw_attr
= attr_kind
;
5196 attr
->dw_attr_val
.val_class
= dw_val_class_range_list
;
5197 attr
->dw_attr_val
.v
.val_offset
= offset
;
5198 add_dwarf_attr (die
, attr
);
5201 static inline const char *
5202 AT_lbl (dw_attr_ref a
)
5204 gcc_assert (a
&& (AT_class (a
) == dw_val_class_lbl_id
5205 || AT_class (a
) == dw_val_class_lbl_offset
));
5206 return a
->dw_attr_val
.v
.val_lbl_id
;
5209 /* Get the attribute of type attr_kind. */
5212 get_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5215 dw_die_ref spec
= NULL
;
5219 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
5220 if (a
->dw_attr
== attr_kind
)
5222 else if (a
->dw_attr
== DW_AT_specification
5223 || a
->dw_attr
== DW_AT_abstract_origin
)
5227 return get_AT (spec
, attr_kind
);
5233 /* Return the "low pc" attribute value, typically associated with a subprogram
5234 DIE. Return null if the "low pc" attribute is either not present, or if it
5235 cannot be represented as an assembler label identifier. */
5237 static inline const char *
5238 get_AT_low_pc (dw_die_ref die
)
5240 dw_attr_ref a
= get_AT (die
, DW_AT_low_pc
);
5242 return a
? AT_lbl (a
) : NULL
;
5245 /* Return the "high pc" attribute value, typically associated with a subprogram
5246 DIE. Return null if the "high pc" attribute is either not present, or if it
5247 cannot be represented as an assembler label identifier. */
5249 static inline const char *
5250 get_AT_hi_pc (dw_die_ref die
)
5252 dw_attr_ref a
= get_AT (die
, DW_AT_high_pc
);
5254 return a
? AT_lbl (a
) : NULL
;
5257 /* Return the value of the string attribute designated by ATTR_KIND, or
5258 NULL if it is not present. */
5260 static inline const char *
5261 get_AT_string (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5263 dw_attr_ref a
= get_AT (die
, attr_kind
);
5265 return a
? AT_string (a
) : NULL
;
5268 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
5269 if it is not present. */
5272 get_AT_flag (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5274 dw_attr_ref a
= get_AT (die
, attr_kind
);
5276 return a
? AT_flag (a
) : 0;
5279 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
5280 if it is not present. */
5282 static inline unsigned
5283 get_AT_unsigned (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5285 dw_attr_ref a
= get_AT (die
, attr_kind
);
5287 return a
? AT_unsigned (a
) : 0;
5290 static inline dw_die_ref
5291 get_AT_ref (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5293 dw_attr_ref a
= get_AT (die
, attr_kind
);
5295 return a
? AT_ref (a
) : NULL
;
5298 /* Return TRUE if the language is C or C++. */
5303 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
5305 return (lang
== DW_LANG_C
|| lang
== DW_LANG_C89
5306 || lang
== DW_LANG_C_plus_plus
);
5309 /* Return TRUE if the language is C++. */
5314 return (get_AT_unsigned (comp_unit_die
, DW_AT_language
)
5315 == DW_LANG_C_plus_plus
);
5318 /* Return TRUE if the language is Fortran. */
5323 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
5325 return (lang
== DW_LANG_Fortran77
5326 || lang
== DW_LANG_Fortran90
5327 || lang
== DW_LANG_Fortran95
);
5330 /* Return TRUE if the language is Java. */
5335 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
5337 return lang
== DW_LANG_Java
;
5340 /* Return TRUE if the language is Ada. */
5345 unsigned int lang
= get_AT_unsigned (comp_unit_die
, DW_AT_language
);
5347 return lang
== DW_LANG_Ada95
|| lang
== DW_LANG_Ada83
;
5350 /* Free up the memory used by A. */
5352 static inline void free_AT (dw_attr_ref
);
5354 free_AT (dw_attr_ref a
)
5356 if (AT_class (a
) == dw_val_class_str
)
5357 if (a
->dw_attr_val
.v
.val_str
->refcount
)
5358 a
->dw_attr_val
.v
.val_str
->refcount
--;
5361 /* Remove the specified attribute if present. */
5364 remove_AT (dw_die_ref die
, enum dwarf_attribute attr_kind
)
5367 dw_attr_ref removed
= NULL
;
5371 for (p
= &(die
->die_attr
); *p
; p
= &((*p
)->dw_attr_next
))
5372 if ((*p
)->dw_attr
== attr_kind
)
5375 *p
= (*p
)->dw_attr_next
;
5384 /* Remove child die whose die_tag is specified tag. */
5387 remove_child_TAG (dw_die_ref die
, enum dwarf_tag tag
)
5389 dw_die_ref current
, prev
, next
;
5390 current
= die
->die_child
;
5392 while (current
!= NULL
)
5394 if (current
->die_tag
== tag
)
5396 next
= current
->die_sib
;
5398 die
->die_child
= next
;
5400 prev
->die_sib
= next
;
5407 current
= current
->die_sib
;
5412 /* Free up the memory used by DIE. */
5415 free_die (dw_die_ref die
)
5417 remove_children (die
);
5420 /* Discard the children of this DIE. */
5423 remove_children (dw_die_ref die
)
5425 dw_die_ref child_die
= die
->die_child
;
5427 die
->die_child
= NULL
;
5429 while (child_die
!= NULL
)
5431 dw_die_ref tmp_die
= child_die
;
5434 child_die
= child_die
->die_sib
;
5436 for (a
= tmp_die
->die_attr
; a
!= NULL
;)
5438 dw_attr_ref tmp_a
= a
;
5440 a
= a
->dw_attr_next
;
5448 /* Add a child DIE below its parent. We build the lists up in reverse
5449 addition order, and correct that in reverse_all_dies. */
5452 add_child_die (dw_die_ref die
, dw_die_ref child_die
)
5454 if (die
!= NULL
&& child_die
!= NULL
)
5456 gcc_assert (die
!= child_die
);
5458 child_die
->die_parent
= die
;
5459 child_die
->die_sib
= die
->die_child
;
5460 die
->die_child
= child_die
;
5464 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5465 is the specification, to the front of PARENT's list of children. */
5468 splice_child_die (dw_die_ref parent
, dw_die_ref child
)
5472 /* We want the declaration DIE from inside the class, not the
5473 specification DIE at toplevel. */
5474 if (child
->die_parent
!= parent
)
5476 dw_die_ref tmp
= get_AT_ref (child
, DW_AT_specification
);
5482 gcc_assert (child
->die_parent
== parent
5483 || (child
->die_parent
5484 == get_AT_ref (parent
, DW_AT_specification
)));
5486 for (p
= &(child
->die_parent
->die_child
); *p
; p
= &((*p
)->die_sib
))
5489 *p
= child
->die_sib
;
5493 child
->die_parent
= parent
;
5494 child
->die_sib
= parent
->die_child
;
5495 parent
->die_child
= child
;
5498 /* Return a pointer to a newly created DIE node. */
5500 static inline dw_die_ref
5501 new_die (enum dwarf_tag tag_value
, dw_die_ref parent_die
, tree t
)
5503 dw_die_ref die
= ggc_alloc_cleared (sizeof (die_node
));
5505 die
->die_tag
= tag_value
;
5507 if (parent_die
!= NULL
)
5508 add_child_die (parent_die
, die
);
5511 limbo_die_node
*limbo_node
;
5513 limbo_node
= ggc_alloc_cleared (sizeof (limbo_die_node
));
5514 limbo_node
->die
= die
;
5515 limbo_node
->created_for
= t
;
5516 limbo_node
->next
= limbo_die_list
;
5517 limbo_die_list
= limbo_node
;
5523 /* Return the DIE associated with the given type specifier. */
5525 static inline dw_die_ref
5526 lookup_type_die (tree type
)
5528 return TYPE_SYMTAB_DIE (type
);
5531 /* Equate a DIE to a given type specifier. */
5534 equate_type_number_to_die (tree type
, dw_die_ref type_die
)
5536 TYPE_SYMTAB_DIE (type
) = type_die
;
5539 /* Returns a hash value for X (which really is a die_struct). */
5542 decl_die_table_hash (const void *x
)
5544 return (hashval_t
) ((const dw_die_ref
) x
)->decl_id
;
5547 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
5550 decl_die_table_eq (const void *x
, const void *y
)
5552 return (((const dw_die_ref
) x
)->decl_id
== DECL_UID ((const tree
) y
));
5555 /* Return the DIE associated with a given declaration. */
5557 static inline dw_die_ref
5558 lookup_decl_die (tree decl
)
5560 return htab_find_with_hash (decl_die_table
, decl
, DECL_UID (decl
));
5563 /* Returns a hash value for X (which really is a var_loc_list). */
5566 decl_loc_table_hash (const void *x
)
5568 return (hashval_t
) ((const var_loc_list
*) x
)->decl_id
;
5571 /* Return nonzero if decl_id of var_loc_list X is the same as
5575 decl_loc_table_eq (const void *x
, const void *y
)
5577 return (((const var_loc_list
*) x
)->decl_id
== DECL_UID ((const tree
) y
));
5580 /* Return the var_loc list associated with a given declaration. */
5582 static inline var_loc_list
*
5583 lookup_decl_loc (tree decl
)
5585 return htab_find_with_hash (decl_loc_table
, decl
, DECL_UID (decl
));
5588 /* Equate a DIE to a particular declaration. */
5591 equate_decl_number_to_die (tree decl
, dw_die_ref decl_die
)
5593 unsigned int decl_id
= DECL_UID (decl
);
5596 slot
= htab_find_slot_with_hash (decl_die_table
, decl
, decl_id
, INSERT
);
5598 decl_die
->decl_id
= decl_id
;
5601 /* Add a variable location node to the linked list for DECL. */
5604 add_var_loc_to_decl (tree decl
, struct var_loc_node
*loc
)
5606 unsigned int decl_id
= DECL_UID (decl
);
5610 slot
= htab_find_slot_with_hash (decl_loc_table
, decl
, decl_id
, INSERT
);
5613 temp
= ggc_alloc_cleared (sizeof (var_loc_list
));
5614 temp
->decl_id
= decl_id
;
5622 /* If the current location is the same as the end of the list,
5623 we have nothing to do. */
5624 if (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp
->last
->var_loc_note
),
5625 NOTE_VAR_LOCATION_LOC (loc
->var_loc_note
)))
5627 /* Add LOC to the end of list and update LAST. */
5628 temp
->last
->next
= loc
;
5632 /* Do not add empty location to the beginning of the list. */
5633 else if (NOTE_VAR_LOCATION_LOC (loc
->var_loc_note
) != NULL_RTX
)
5640 /* Keep track of the number of spaces used to indent the
5641 output of the debugging routines that print the structure of
5642 the DIE internal representation. */
5643 static int print_indent
;
5645 /* Indent the line the number of spaces given by print_indent. */
5648 print_spaces (FILE *outfile
)
5650 fprintf (outfile
, "%*s", print_indent
, "");
5653 /* Print the information associated with a given DIE, and its children.
5654 This routine is a debugging aid only. */
5657 print_die (dw_die_ref die
, FILE *outfile
)
5662 print_spaces (outfile
);
5663 fprintf (outfile
, "DIE %4lu: %s\n",
5664 die
->die_offset
, dwarf_tag_name (die
->die_tag
));
5665 print_spaces (outfile
);
5666 fprintf (outfile
, " abbrev id: %lu", die
->die_abbrev
);
5667 fprintf (outfile
, " offset: %lu\n", die
->die_offset
);
5669 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
5671 print_spaces (outfile
);
5672 fprintf (outfile
, " %s: ", dwarf_attr_name (a
->dw_attr
));
5674 switch (AT_class (a
))
5676 case dw_val_class_addr
:
5677 fprintf (outfile
, "address");
5679 case dw_val_class_offset
:
5680 fprintf (outfile
, "offset");
5682 case dw_val_class_loc
:
5683 fprintf (outfile
, "location descriptor");
5685 case dw_val_class_loc_list
:
5686 fprintf (outfile
, "location list -> label:%s",
5687 AT_loc_list (a
)->ll_symbol
);
5689 case dw_val_class_range_list
:
5690 fprintf (outfile
, "range list");
5692 case dw_val_class_const
:
5693 fprintf (outfile
, HOST_WIDE_INT_PRINT_DEC
, AT_int (a
));
5695 case dw_val_class_unsigned_const
:
5696 fprintf (outfile
, HOST_WIDE_INT_PRINT_UNSIGNED
, AT_unsigned (a
));
5698 case dw_val_class_long_long
:
5699 fprintf (outfile
, "constant (%lu,%lu)",
5700 a
->dw_attr_val
.v
.val_long_long
.hi
,
5701 a
->dw_attr_val
.v
.val_long_long
.low
);
5703 case dw_val_class_vec
:
5704 fprintf (outfile
, "floating-point or vector constant");
5706 case dw_val_class_flag
:
5707 fprintf (outfile
, "%u", AT_flag (a
));
5709 case dw_val_class_die_ref
:
5710 if (AT_ref (a
) != NULL
)
5712 if (AT_ref (a
)->die_symbol
)
5713 fprintf (outfile
, "die -> label: %s", AT_ref (a
)->die_symbol
);
5715 fprintf (outfile
, "die -> %lu", AT_ref (a
)->die_offset
);
5718 fprintf (outfile
, "die -> <null>");
5720 case dw_val_class_lbl_id
:
5721 case dw_val_class_lbl_offset
:
5722 fprintf (outfile
, "label: %s", AT_lbl (a
));
5724 case dw_val_class_str
:
5725 if (AT_string (a
) != NULL
)
5726 fprintf (outfile
, "\"%s\"", AT_string (a
));
5728 fprintf (outfile
, "<null>");
5734 fprintf (outfile
, "\n");
5737 if (die
->die_child
!= NULL
)
5740 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
5741 print_die (c
, outfile
);
5745 if (print_indent
== 0)
5746 fprintf (outfile
, "\n");
5749 /* Print the contents of the source code line number correspondence table.
5750 This routine is a debugging aid only. */
5753 print_dwarf_line_table (FILE *outfile
)
5756 dw_line_info_ref line_info
;
5758 fprintf (outfile
, "\n\nDWARF source line information\n");
5759 for (i
= 1; i
< line_info_table_in_use
; i
++)
5761 line_info
= &line_info_table
[i
];
5762 fprintf (outfile
, "%5d: ", i
);
5763 fprintf (outfile
, "%-20s",
5764 VARRAY_CHAR_PTR (file_table
, line_info
->dw_file_num
));
5765 fprintf (outfile
, "%6ld", line_info
->dw_line_num
);
5766 fprintf (outfile
, "\n");
5769 fprintf (outfile
, "\n\n");
5772 /* Print the information collected for a given DIE. */
5775 debug_dwarf_die (dw_die_ref die
)
5777 print_die (die
, stderr
);
5780 /* Print all DWARF information collected for the compilation unit.
5781 This routine is a debugging aid only. */
5787 print_die (comp_unit_die
, stderr
);
5788 if (! DWARF2_ASM_LINE_DEBUG_INFO
)
5789 print_dwarf_line_table (stderr
);
5792 /* We build up the lists of children and attributes by pushing new ones
5793 onto the beginning of the list. Reverse the lists for DIE so that
5794 they are in order of addition. */
5797 reverse_die_lists (dw_die_ref die
)
5799 dw_die_ref c
, cp
, cn
;
5800 dw_attr_ref a
, ap
, an
;
5802 for (a
= die
->die_attr
, ap
= 0; a
; a
= an
)
5804 an
= a
->dw_attr_next
;
5805 a
->dw_attr_next
= ap
;
5811 for (c
= die
->die_child
, cp
= 0; c
; c
= cn
)
5818 die
->die_child
= cp
;
5821 /* reverse_die_lists only reverses the single die you pass it. Since we used to
5822 reverse all dies in add_sibling_attributes, which runs through all the dies,
5823 it would reverse all the dies. Now, however, since we don't call
5824 reverse_die_lists in add_sibling_attributes, we need a routine to
5825 recursively reverse all the dies. This is that routine. */
5828 reverse_all_dies (dw_die_ref die
)
5832 reverse_die_lists (die
);
5834 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
5835 reverse_all_dies (c
);
5838 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
5839 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
5840 DIE that marks the start of the DIEs for this include file. */
5843 push_new_compile_unit (dw_die_ref old_unit
, dw_die_ref bincl_die
)
5845 const char *filename
= get_AT_string (bincl_die
, DW_AT_name
);
5846 dw_die_ref new_unit
= gen_compile_unit_die (filename
);
5848 new_unit
->die_sib
= old_unit
;
5852 /* Close an include-file CU and reopen the enclosing one. */
5855 pop_compile_unit (dw_die_ref old_unit
)
5857 dw_die_ref new_unit
= old_unit
->die_sib
;
5859 old_unit
->die_sib
= NULL
;
5863 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5864 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5866 /* Calculate the checksum of a location expression. */
5869 loc_checksum (dw_loc_descr_ref loc
, struct md5_ctx
*ctx
)
5871 CHECKSUM (loc
->dw_loc_opc
);
5872 CHECKSUM (loc
->dw_loc_oprnd1
);
5873 CHECKSUM (loc
->dw_loc_oprnd2
);
5876 /* Calculate the checksum of an attribute. */
5879 attr_checksum (dw_attr_ref at
, struct md5_ctx
*ctx
, int *mark
)
5881 dw_loc_descr_ref loc
;
5884 CHECKSUM (at
->dw_attr
);
5886 /* We don't care about differences in file numbering. */
5887 if (at
->dw_attr
== DW_AT_decl_file
5888 /* Or that this was compiled with a different compiler snapshot; if
5889 the output is the same, that's what matters. */
5890 || at
->dw_attr
== DW_AT_producer
)
5893 switch (AT_class (at
))
5895 case dw_val_class_const
:
5896 CHECKSUM (at
->dw_attr_val
.v
.val_int
);
5898 case dw_val_class_unsigned_const
:
5899 CHECKSUM (at
->dw_attr_val
.v
.val_unsigned
);
5901 case dw_val_class_long_long
:
5902 CHECKSUM (at
->dw_attr_val
.v
.val_long_long
);
5904 case dw_val_class_vec
:
5905 CHECKSUM (at
->dw_attr_val
.v
.val_vec
);
5907 case dw_val_class_flag
:
5908 CHECKSUM (at
->dw_attr_val
.v
.val_flag
);
5910 case dw_val_class_str
:
5911 CHECKSUM_STRING (AT_string (at
));
5914 case dw_val_class_addr
:
5916 gcc_assert (GET_CODE (r
) == SYMBOL_REF
);
5917 CHECKSUM_STRING (XSTR (r
, 0));
5920 case dw_val_class_offset
:
5921 CHECKSUM (at
->dw_attr_val
.v
.val_offset
);
5924 case dw_val_class_loc
:
5925 for (loc
= AT_loc (at
); loc
; loc
= loc
->dw_loc_next
)
5926 loc_checksum (loc
, ctx
);
5929 case dw_val_class_die_ref
:
5930 die_checksum (AT_ref (at
), ctx
, mark
);
5933 case dw_val_class_fde_ref
:
5934 case dw_val_class_lbl_id
:
5935 case dw_val_class_lbl_offset
:
5943 /* Calculate the checksum of a DIE. */
5946 die_checksum (dw_die_ref die
, struct md5_ctx
*ctx
, int *mark
)
5951 /* To avoid infinite recursion. */
5954 CHECKSUM (die
->die_mark
);
5957 die
->die_mark
= ++(*mark
);
5959 CHECKSUM (die
->die_tag
);
5961 for (a
= die
->die_attr
; a
; a
= a
->dw_attr_next
)
5962 attr_checksum (a
, ctx
, mark
);
5964 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
5965 die_checksum (c
, ctx
, mark
);
5969 #undef CHECKSUM_STRING
5971 /* Do the location expressions look same? */
5973 same_loc_p (dw_loc_descr_ref loc1
, dw_loc_descr_ref loc2
, int *mark
)
5975 return loc1
->dw_loc_opc
== loc2
->dw_loc_opc
5976 && same_dw_val_p (&loc1
->dw_loc_oprnd1
, &loc2
->dw_loc_oprnd1
, mark
)
5977 && same_dw_val_p (&loc1
->dw_loc_oprnd2
, &loc2
->dw_loc_oprnd2
, mark
);
5980 /* Do the values look the same? */
5982 same_dw_val_p (dw_val_node
*v1
, dw_val_node
*v2
, int *mark
)
5984 dw_loc_descr_ref loc1
, loc2
;
5987 if (v1
->val_class
!= v2
->val_class
)
5990 switch (v1
->val_class
)
5992 case dw_val_class_const
:
5993 return v1
->v
.val_int
== v2
->v
.val_int
;
5994 case dw_val_class_unsigned_const
:
5995 return v1
->v
.val_unsigned
== v2
->v
.val_unsigned
;
5996 case dw_val_class_long_long
:
5997 return v1
->v
.val_long_long
.hi
== v2
->v
.val_long_long
.hi
5998 && v1
->v
.val_long_long
.low
== v2
->v
.val_long_long
.low
;
5999 case dw_val_class_vec
:
6000 if (v1
->v
.val_vec
.length
!= v2
->v
.val_vec
.length
6001 || v1
->v
.val_vec
.elt_size
!= v2
->v
.val_vec
.elt_size
)
6003 if (memcmp (v1
->v
.val_vec
.array
, v2
->v
.val_vec
.array
,
6004 v1
->v
.val_vec
.length
* v1
->v
.val_vec
.elt_size
))
6007 case dw_val_class_flag
:
6008 return v1
->v
.val_flag
== v2
->v
.val_flag
;
6009 case dw_val_class_str
:
6010 return !strcmp(v1
->v
.val_str
->str
, v2
->v
.val_str
->str
);
6012 case dw_val_class_addr
:
6013 r1
= v1
->v
.val_addr
;
6014 r2
= v2
->v
.val_addr
;
6015 if (GET_CODE (r1
) != GET_CODE (r2
))
6017 gcc_assert (GET_CODE (r1
) == SYMBOL_REF
);
6018 return !strcmp (XSTR (r1
, 0), XSTR (r2
, 0));
6020 case dw_val_class_offset
:
6021 return v1
->v
.val_offset
== v2
->v
.val_offset
;
6023 case dw_val_class_loc
:
6024 for (loc1
= v1
->v
.val_loc
, loc2
= v2
->v
.val_loc
;
6026 loc1
= loc1
->dw_loc_next
, loc2
= loc2
->dw_loc_next
)
6027 if (!same_loc_p (loc1
, loc2
, mark
))
6029 return !loc1
&& !loc2
;
6031 case dw_val_class_die_ref
:
6032 return same_die_p (v1
->v
.val_die_ref
.die
, v2
->v
.val_die_ref
.die
, mark
);
6034 case dw_val_class_fde_ref
:
6035 case dw_val_class_lbl_id
:
6036 case dw_val_class_lbl_offset
:
6044 /* Do the attributes look the same? */
6047 same_attr_p (dw_attr_ref at1
, dw_attr_ref at2
, int *mark
)
6049 if (at1
->dw_attr
!= at2
->dw_attr
)
6052 /* We don't care about differences in file numbering. */
6053 if (at1
->dw_attr
== DW_AT_decl_file
6054 /* Or that this was compiled with a different compiler snapshot; if
6055 the output is the same, that's what matters. */
6056 || at1
->dw_attr
== DW_AT_producer
)
6059 return same_dw_val_p (&at1
->dw_attr_val
, &at2
->dw_attr_val
, mark
);
6062 /* Do the dies look the same? */
6065 same_die_p (dw_die_ref die1
, dw_die_ref die2
, int *mark
)
6070 /* To avoid infinite recursion. */
6072 return die1
->die_mark
== die2
->die_mark
;
6073 die1
->die_mark
= die2
->die_mark
= ++(*mark
);
6075 if (die1
->die_tag
!= die2
->die_tag
)
6078 for (a1
= die1
->die_attr
, a2
= die2
->die_attr
;
6080 a1
= a1
->dw_attr_next
, a2
= a2
->dw_attr_next
)
6081 if (!same_attr_p (a1
, a2
, mark
))
6086 for (c1
= die1
->die_child
, c2
= die2
->die_child
;
6088 c1
= c1
->die_sib
, c2
= c2
->die_sib
)
6089 if (!same_die_p (c1
, c2
, mark
))
6097 /* Do the dies look the same? Wrapper around same_die_p. */
6100 same_die_p_wrap (dw_die_ref die1
, dw_die_ref die2
)
6103 int ret
= same_die_p (die1
, die2
, &mark
);
6105 unmark_all_dies (die1
);
6106 unmark_all_dies (die2
);
6111 /* The prefix to attach to symbols on DIEs in the current comdat debug
6113 static char *comdat_symbol_id
;
6115 /* The index of the current symbol within the current comdat CU. */
6116 static unsigned int comdat_symbol_number
;
6118 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
6119 children, and set comdat_symbol_id accordingly. */
6122 compute_section_prefix (dw_die_ref unit_die
)
6124 const char *die_name
= get_AT_string (unit_die
, DW_AT_name
);
6125 const char *base
= die_name
? lbasename (die_name
) : "anonymous";
6126 char *name
= alloca (strlen (base
) + 64);
6129 unsigned char checksum
[16];
6132 /* Compute the checksum of the DIE, then append part of it as hex digits to
6133 the name filename of the unit. */
6135 md5_init_ctx (&ctx
);
6137 die_checksum (unit_die
, &ctx
, &mark
);
6138 unmark_all_dies (unit_die
);
6139 md5_finish_ctx (&ctx
, checksum
);
6141 sprintf (name
, "%s.", base
);
6142 clean_symbol_name (name
);
6144 p
= name
+ strlen (name
);
6145 for (i
= 0; i
< 4; i
++)
6147 sprintf (p
, "%.2x", checksum
[i
]);
6151 comdat_symbol_id
= unit_die
->die_symbol
= xstrdup (name
);
6152 comdat_symbol_number
= 0;
6155 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
6158 is_type_die (dw_die_ref die
)
6160 switch (die
->die_tag
)
6162 case DW_TAG_array_type
:
6163 case DW_TAG_class_type
:
6164 case DW_TAG_enumeration_type
:
6165 case DW_TAG_pointer_type
:
6166 case DW_TAG_reference_type
:
6167 case DW_TAG_string_type
:
6168 case DW_TAG_structure_type
:
6169 case DW_TAG_subroutine_type
:
6170 case DW_TAG_union_type
:
6171 case DW_TAG_ptr_to_member_type
:
6172 case DW_TAG_set_type
:
6173 case DW_TAG_subrange_type
:
6174 case DW_TAG_base_type
:
6175 case DW_TAG_const_type
:
6176 case DW_TAG_file_type
:
6177 case DW_TAG_packed_type
:
6178 case DW_TAG_volatile_type
:
6179 case DW_TAG_typedef
:
6186 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
6187 Basically, we want to choose the bits that are likely to be shared between
6188 compilations (types) and leave out the bits that are specific to individual
6189 compilations (functions). */
6192 is_comdat_die (dw_die_ref c
)
6194 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
6195 we do for stabs. The advantage is a greater likelihood of sharing between
6196 objects that don't include headers in the same order (and therefore would
6197 put the base types in a different comdat). jason 8/28/00 */
6199 if (c
->die_tag
== DW_TAG_base_type
)
6202 if (c
->die_tag
== DW_TAG_pointer_type
6203 || c
->die_tag
== DW_TAG_reference_type
6204 || c
->die_tag
== DW_TAG_const_type
6205 || c
->die_tag
== DW_TAG_volatile_type
)
6207 dw_die_ref t
= get_AT_ref (c
, DW_AT_type
);
6209 return t
? is_comdat_die (t
) : 0;
6212 return is_type_die (c
);
6215 /* Returns 1 iff C is the sort of DIE that might be referred to from another
6216 compilation unit. */
6219 is_symbol_die (dw_die_ref c
)
6221 return (is_type_die (c
)
6222 || (get_AT (c
, DW_AT_declaration
)
6223 && !get_AT (c
, DW_AT_specification
)));
6227 gen_internal_sym (const char *prefix
)
6231 ASM_GENERATE_INTERNAL_LABEL (buf
, prefix
, label_num
++);
6232 return xstrdup (buf
);
6235 /* Assign symbols to all worthy DIEs under DIE. */
6238 assign_symbol_names (dw_die_ref die
)
6242 if (is_symbol_die (die
))
6244 if (comdat_symbol_id
)
6246 char *p
= alloca (strlen (comdat_symbol_id
) + 64);
6248 sprintf (p
, "%s.%s.%x", DIE_LABEL_PREFIX
,
6249 comdat_symbol_id
, comdat_symbol_number
++);
6250 die
->die_symbol
= xstrdup (p
);
6253 die
->die_symbol
= gen_internal_sym ("LDIE");
6256 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6257 assign_symbol_names (c
);
6260 struct cu_hash_table_entry
6263 unsigned min_comdat_num
, max_comdat_num
;
6264 struct cu_hash_table_entry
*next
;
6267 /* Routines to manipulate hash table of CUs. */
6269 htab_cu_hash (const void *of
)
6271 const struct cu_hash_table_entry
*entry
= of
;
6273 return htab_hash_string (entry
->cu
->die_symbol
);
6277 htab_cu_eq (const void *of1
, const void *of2
)
6279 const struct cu_hash_table_entry
*entry1
= of1
;
6280 const struct die_struct
*entry2
= of2
;
6282 return !strcmp (entry1
->cu
->die_symbol
, entry2
->die_symbol
);
6286 htab_cu_del (void *what
)
6288 struct cu_hash_table_entry
*next
, *entry
= what
;
6298 /* Check whether we have already seen this CU and set up SYM_NUM
6301 check_duplicate_cu (dw_die_ref cu
, htab_t htable
, unsigned int *sym_num
)
6303 struct cu_hash_table_entry dummy
;
6304 struct cu_hash_table_entry
**slot
, *entry
, *last
= &dummy
;
6306 dummy
.max_comdat_num
= 0;
6308 slot
= (struct cu_hash_table_entry
**)
6309 htab_find_slot_with_hash (htable
, cu
, htab_hash_string (cu
->die_symbol
),
6313 for (; entry
; last
= entry
, entry
= entry
->next
)
6315 if (same_die_p_wrap (cu
, entry
->cu
))
6321 *sym_num
= entry
->min_comdat_num
;
6325 entry
= XCNEW (struct cu_hash_table_entry
);
6327 entry
->min_comdat_num
= *sym_num
= last
->max_comdat_num
;
6328 entry
->next
= *slot
;
6334 /* Record SYM_NUM to record of CU in HTABLE. */
6336 record_comdat_symbol_number (dw_die_ref cu
, htab_t htable
, unsigned int sym_num
)
6338 struct cu_hash_table_entry
**slot
, *entry
;
6340 slot
= (struct cu_hash_table_entry
**)
6341 htab_find_slot_with_hash (htable
, cu
, htab_hash_string (cu
->die_symbol
),
6345 entry
->max_comdat_num
= sym_num
;
6348 /* Traverse the DIE (which is always comp_unit_die), and set up
6349 additional compilation units for each of the include files we see
6350 bracketed by BINCL/EINCL. */
6353 break_out_includes (dw_die_ref die
)
6356 dw_die_ref unit
= NULL
;
6357 limbo_die_node
*node
, **pnode
;
6358 htab_t cu_hash_table
;
6360 for (ptr
= &(die
->die_child
); *ptr
;)
6362 dw_die_ref c
= *ptr
;
6364 if (c
->die_tag
== DW_TAG_GNU_BINCL
|| c
->die_tag
== DW_TAG_GNU_EINCL
6365 || (unit
&& is_comdat_die (c
)))
6367 /* This DIE is for a secondary CU; remove it from the main one. */
6370 if (c
->die_tag
== DW_TAG_GNU_BINCL
)
6372 unit
= push_new_compile_unit (unit
, c
);
6375 else if (c
->die_tag
== DW_TAG_GNU_EINCL
)
6377 unit
= pop_compile_unit (unit
);
6381 add_child_die (unit
, c
);
6385 /* Leave this DIE in the main CU. */
6386 ptr
= &(c
->die_sib
);
6392 /* We can only use this in debugging, since the frontend doesn't check
6393 to make sure that we leave every include file we enter. */
6397 assign_symbol_names (die
);
6398 cu_hash_table
= htab_create (10, htab_cu_hash
, htab_cu_eq
, htab_cu_del
);
6399 for (node
= limbo_die_list
, pnode
= &limbo_die_list
;
6405 compute_section_prefix (node
->die
);
6406 is_dupl
= check_duplicate_cu (node
->die
, cu_hash_table
,
6407 &comdat_symbol_number
);
6408 assign_symbol_names (node
->die
);
6410 *pnode
= node
->next
;
6413 pnode
= &node
->next
;
6414 record_comdat_symbol_number (node
->die
, cu_hash_table
,
6415 comdat_symbol_number
);
6418 htab_delete (cu_hash_table
);
6421 /* Traverse the DIE and add a sibling attribute if it may have the
6422 effect of speeding up access to siblings. To save some space,
6423 avoid generating sibling attributes for DIE's without children. */
6426 add_sibling_attributes (dw_die_ref die
)
6430 if (die
->die_tag
!= DW_TAG_compile_unit
6431 && die
->die_sib
&& die
->die_child
!= NULL
)
6432 /* Add the sibling link to the front of the attribute list. */
6433 add_AT_die_ref (die
, DW_AT_sibling
, die
->die_sib
);
6435 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6436 add_sibling_attributes (c
);
6439 /* Output all location lists for the DIE and its children. */
6442 output_location_lists (dw_die_ref die
)
6447 for (d_attr
= die
->die_attr
; d_attr
; d_attr
= d_attr
->dw_attr_next
)
6448 if (AT_class (d_attr
) == dw_val_class_loc_list
)
6449 output_loc_list (AT_loc_list (d_attr
));
6451 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6452 output_location_lists (c
);
6456 /* The format of each DIE (and its attribute value pairs) is encoded in an
6457 abbreviation table. This routine builds the abbreviation table and assigns
6458 a unique abbreviation id for each abbreviation entry. The children of each
6459 die are visited recursively. */
6462 build_abbrev_table (dw_die_ref die
)
6464 unsigned long abbrev_id
;
6465 unsigned int n_alloc
;
6467 dw_attr_ref d_attr
, a_attr
;
6469 /* Scan the DIE references, and mark as external any that refer to
6470 DIEs from other CUs (i.e. those which are not marked). */
6471 for (d_attr
= die
->die_attr
; d_attr
; d_attr
= d_attr
->dw_attr_next
)
6472 if (AT_class (d_attr
) == dw_val_class_die_ref
6473 && AT_ref (d_attr
)->die_mark
== 0)
6475 gcc_assert (AT_ref (d_attr
)->die_symbol
);
6477 set_AT_ref_external (d_attr
, 1);
6480 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
6482 dw_die_ref abbrev
= abbrev_die_table
[abbrev_id
];
6484 if (abbrev
->die_tag
== die
->die_tag
)
6486 if ((abbrev
->die_child
!= NULL
) == (die
->die_child
!= NULL
))
6488 a_attr
= abbrev
->die_attr
;
6489 d_attr
= die
->die_attr
;
6491 while (a_attr
!= NULL
&& d_attr
!= NULL
)
6493 if ((a_attr
->dw_attr
!= d_attr
->dw_attr
)
6494 || (value_format (a_attr
) != value_format (d_attr
)))
6497 a_attr
= a_attr
->dw_attr_next
;
6498 d_attr
= d_attr
->dw_attr_next
;
6501 if (a_attr
== NULL
&& d_attr
== NULL
)
6507 if (abbrev_id
>= abbrev_die_table_in_use
)
6509 if (abbrev_die_table_in_use
>= abbrev_die_table_allocated
)
6511 n_alloc
= abbrev_die_table_allocated
+ ABBREV_DIE_TABLE_INCREMENT
;
6512 abbrev_die_table
= ggc_realloc (abbrev_die_table
,
6513 sizeof (dw_die_ref
) * n_alloc
);
6515 memset (&abbrev_die_table
[abbrev_die_table_allocated
], 0,
6516 (n_alloc
- abbrev_die_table_allocated
) * sizeof (dw_die_ref
));
6517 abbrev_die_table_allocated
= n_alloc
;
6520 ++abbrev_die_table_in_use
;
6521 abbrev_die_table
[abbrev_id
] = die
;
6524 die
->die_abbrev
= abbrev_id
;
6525 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6526 build_abbrev_table (c
);
6529 /* Return the power-of-two number of bytes necessary to represent VALUE. */
6532 constant_size (long unsigned int value
)
6539 log
= floor_log2 (value
);
6542 log
= 1 << (floor_log2 (log
) + 1);
6547 /* Return the size of a DIE as it is represented in the
6548 .debug_info section. */
6550 static unsigned long
6551 size_of_die (dw_die_ref die
)
6553 unsigned long size
= 0;
6556 size
+= size_of_uleb128 (die
->die_abbrev
);
6557 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
6559 switch (AT_class (a
))
6561 case dw_val_class_addr
:
6562 size
+= DWARF2_ADDR_SIZE
;
6564 case dw_val_class_offset
:
6565 size
+= DWARF_OFFSET_SIZE
;
6567 case dw_val_class_loc
:
6569 unsigned long lsize
= size_of_locs (AT_loc (a
));
6572 size
+= constant_size (lsize
);
6576 case dw_val_class_loc_list
:
6577 size
+= DWARF_OFFSET_SIZE
;
6579 case dw_val_class_range_list
:
6580 size
+= DWARF_OFFSET_SIZE
;
6582 case dw_val_class_const
:
6583 size
+= size_of_sleb128 (AT_int (a
));
6585 case dw_val_class_unsigned_const
:
6586 size
+= constant_size (AT_unsigned (a
));
6588 case dw_val_class_long_long
:
6589 size
+= 1 + 2*HOST_BITS_PER_LONG
/HOST_BITS_PER_CHAR
; /* block */
6591 case dw_val_class_vec
:
6592 size
+= 1 + (a
->dw_attr_val
.v
.val_vec
.length
6593 * a
->dw_attr_val
.v
.val_vec
.elt_size
); /* block */
6595 case dw_val_class_flag
:
6598 case dw_val_class_die_ref
:
6599 if (AT_ref_external (a
))
6600 size
+= DWARF2_ADDR_SIZE
;
6602 size
+= DWARF_OFFSET_SIZE
;
6604 case dw_val_class_fde_ref
:
6605 size
+= DWARF_OFFSET_SIZE
;
6607 case dw_val_class_lbl_id
:
6608 size
+= DWARF2_ADDR_SIZE
;
6610 case dw_val_class_lbl_offset
:
6611 size
+= DWARF_OFFSET_SIZE
;
6613 case dw_val_class_str
:
6614 if (AT_string_form (a
) == DW_FORM_strp
)
6615 size
+= DWARF_OFFSET_SIZE
;
6617 size
+= strlen (a
->dw_attr_val
.v
.val_str
->str
) + 1;
6627 /* Size the debugging information associated with a given DIE. Visits the
6628 DIE's children recursively. Updates the global variable next_die_offset, on
6629 each time through. Uses the current value of next_die_offset to update the
6630 die_offset field in each DIE. */
6633 calc_die_sizes (dw_die_ref die
)
6637 die
->die_offset
= next_die_offset
;
6638 next_die_offset
+= size_of_die (die
);
6640 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
6643 if (die
->die_child
!= NULL
)
6644 /* Count the null byte used to terminate sibling lists. */
6645 next_die_offset
+= 1;
6648 /* Set the marks for a die and its children. We do this so
6649 that we know whether or not a reference needs to use FORM_ref_addr; only
6650 DIEs in the same CU will be marked. We used to clear out the offset
6651 and use that as the flag, but ran into ordering problems. */
6654 mark_dies (dw_die_ref die
)
6658 gcc_assert (!die
->die_mark
);
6661 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
6665 /* Clear the marks for a die and its children. */
6668 unmark_dies (dw_die_ref die
)
6672 gcc_assert (die
->die_mark
);
6675 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
6679 /* Clear the marks for a die, its children and referred dies. */
6682 unmark_all_dies (dw_die_ref die
)
6691 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
6692 unmark_all_dies (c
);
6694 for (a
= die
->die_attr
; a
; a
= a
->dw_attr_next
)
6695 if (AT_class (a
) == dw_val_class_die_ref
)
6696 unmark_all_dies (AT_ref (a
));
6699 /* Return the size of the .debug_pubnames table generated for the
6700 compilation unit. */
6702 static unsigned long
6703 size_of_pubnames (void)
6708 size
= DWARF_PUBNAMES_HEADER_SIZE
;
6709 for (i
= 0; i
< pubname_table_in_use
; i
++)
6711 pubname_ref p
= &pubname_table
[i
];
6712 size
+= DWARF_OFFSET_SIZE
+ strlen (p
->name
) + 1;
6715 size
+= DWARF_OFFSET_SIZE
;
6719 /* Return the size of the information in the .debug_aranges section. */
6721 static unsigned long
6722 size_of_aranges (void)
6726 size
= DWARF_ARANGES_HEADER_SIZE
;
6728 /* Count the address/length pair for this compilation unit. */
6729 size
+= 2 * DWARF2_ADDR_SIZE
;
6730 size
+= 2 * DWARF2_ADDR_SIZE
* arange_table_in_use
;
6732 /* Count the two zero words used to terminated the address range table. */
6733 size
+= 2 * DWARF2_ADDR_SIZE
;
6737 /* Select the encoding of an attribute value. */
6739 static enum dwarf_form
6740 value_format (dw_attr_ref a
)
6742 switch (a
->dw_attr_val
.val_class
)
6744 case dw_val_class_addr
:
6745 return DW_FORM_addr
;
6746 case dw_val_class_range_list
:
6747 case dw_val_class_offset
:
6748 switch (DWARF_OFFSET_SIZE
)
6751 return DW_FORM_data4
;
6753 return DW_FORM_data8
;
6757 case dw_val_class_loc_list
:
6758 /* FIXME: Could be DW_FORM_data8, with a > 32 bit size
6759 .debug_loc section */
6760 return DW_FORM_data4
;
6761 case dw_val_class_loc
:
6762 switch (constant_size (size_of_locs (AT_loc (a
))))
6765 return DW_FORM_block1
;
6767 return DW_FORM_block2
;
6771 case dw_val_class_const
:
6772 return DW_FORM_sdata
;
6773 case dw_val_class_unsigned_const
:
6774 switch (constant_size (AT_unsigned (a
)))
6777 return DW_FORM_data1
;
6779 return DW_FORM_data2
;
6781 return DW_FORM_data4
;
6783 return DW_FORM_data8
;
6787 case dw_val_class_long_long
:
6788 return DW_FORM_block1
;
6789 case dw_val_class_vec
:
6790 return DW_FORM_block1
;
6791 case dw_val_class_flag
:
6792 return DW_FORM_flag
;
6793 case dw_val_class_die_ref
:
6794 if (AT_ref_external (a
))
6795 return DW_FORM_ref_addr
;
6798 case dw_val_class_fde_ref
:
6799 return DW_FORM_data
;
6800 case dw_val_class_lbl_id
:
6801 return DW_FORM_addr
;
6802 case dw_val_class_lbl_offset
:
6803 return DW_FORM_data
;
6804 case dw_val_class_str
:
6805 return AT_string_form (a
);
6812 /* Output the encoding of an attribute value. */
6815 output_value_format (dw_attr_ref a
)
6817 enum dwarf_form form
= value_format (a
);
6819 dw2_asm_output_data_uleb128 (form
, "(%s)", dwarf_form_name (form
));
6822 /* Output the .debug_abbrev section which defines the DIE abbreviation
6826 output_abbrev_section (void)
6828 unsigned long abbrev_id
;
6832 for (abbrev_id
= 1; abbrev_id
< abbrev_die_table_in_use
; ++abbrev_id
)
6834 dw_die_ref abbrev
= abbrev_die_table
[abbrev_id
];
6836 dw2_asm_output_data_uleb128 (abbrev_id
, "(abbrev code)");
6837 dw2_asm_output_data_uleb128 (abbrev
->die_tag
, "(TAG: %s)",
6838 dwarf_tag_name (abbrev
->die_tag
));
6840 if (abbrev
->die_child
!= NULL
)
6841 dw2_asm_output_data (1, DW_children_yes
, "DW_children_yes");
6843 dw2_asm_output_data (1, DW_children_no
, "DW_children_no");
6845 for (a_attr
= abbrev
->die_attr
; a_attr
!= NULL
;
6846 a_attr
= a_attr
->dw_attr_next
)
6848 dw2_asm_output_data_uleb128 (a_attr
->dw_attr
, "(%s)",
6849 dwarf_attr_name (a_attr
->dw_attr
));
6850 output_value_format (a_attr
);
6853 dw2_asm_output_data (1, 0, NULL
);
6854 dw2_asm_output_data (1, 0, NULL
);
6857 /* Terminate the table. */
6858 dw2_asm_output_data (1, 0, NULL
);
6861 /* Output a symbol we can use to refer to this DIE from another CU. */
6864 output_die_symbol (dw_die_ref die
)
6866 char *sym
= die
->die_symbol
;
6871 if (strncmp (sym
, DIE_LABEL_PREFIX
, sizeof (DIE_LABEL_PREFIX
) - 1) == 0)
6872 /* We make these global, not weak; if the target doesn't support
6873 .linkonce, it doesn't support combining the sections, so debugging
6875 targetm
.asm_out
.globalize_label (asm_out_file
, sym
);
6877 ASM_OUTPUT_LABEL (asm_out_file
, sym
);
6880 /* Return a new location list, given the begin and end range, and the
6881 expression. gensym tells us whether to generate a new internal symbol for
6882 this location list node, which is done for the head of the list only. */
6884 static inline dw_loc_list_ref
6885 new_loc_list (dw_loc_descr_ref expr
, const char *begin
, const char *end
,
6886 const char *section
, unsigned int gensym
)
6888 dw_loc_list_ref retlist
= ggc_alloc_cleared (sizeof (dw_loc_list_node
));
6890 retlist
->begin
= begin
;
6892 retlist
->expr
= expr
;
6893 retlist
->section
= section
;
6895 retlist
->ll_symbol
= gen_internal_sym ("LLST");
6900 /* Add a location description expression to a location list. */
6903 add_loc_descr_to_loc_list (dw_loc_list_ref
*list_head
, dw_loc_descr_ref descr
,
6904 const char *begin
, const char *end
,
6905 const char *section
)
6909 /* Find the end of the chain. */
6910 for (d
= list_head
; (*d
) != NULL
; d
= &(*d
)->dw_loc_next
)
6913 /* Add a new location list node to the list. */
6914 *d
= new_loc_list (descr
, begin
, end
, section
, 0);
6918 dwarf2out_switch_text_section (void)
6924 fde
= &fde_table
[fde_table_in_use
- 1];
6925 fde
->dw_fde_switched_sections
= true;
6926 fde
->dw_fde_hot_section_label
= cfun
->hot_section_label
;
6927 fde
->dw_fde_hot_section_end_label
= cfun
->hot_section_end_label
;
6928 fde
->dw_fde_unlikely_section_label
= cfun
->cold_section_label
;
6929 fde
->dw_fde_unlikely_section_end_label
= cfun
->cold_section_end_label
;
6930 have_multiple_function_sections
= true;
6933 /* Output the location list given to us. */
6936 output_loc_list (dw_loc_list_ref list_head
)
6938 dw_loc_list_ref curr
= list_head
;
6940 ASM_OUTPUT_LABEL (asm_out_file
, list_head
->ll_symbol
);
6942 /* Walk the location list, and output each range + expression. */
6943 for (curr
= list_head
; curr
!= NULL
; curr
= curr
->dw_loc_next
)
6946 if (!have_multiple_function_sections
)
6948 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->begin
, curr
->section
,
6949 "Location list begin address (%s)",
6950 list_head
->ll_symbol
);
6951 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, curr
->end
, curr
->section
,
6952 "Location list end address (%s)",
6953 list_head
->ll_symbol
);
6957 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->begin
,
6958 "Location list begin address (%s)",
6959 list_head
->ll_symbol
);
6960 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, curr
->end
,
6961 "Location list end address (%s)",
6962 list_head
->ll_symbol
);
6964 size
= size_of_locs (curr
->expr
);
6966 /* Output the block length for this list of location operations. */
6967 gcc_assert (size
<= 0xffff);
6968 dw2_asm_output_data (2, size
, "%s", "Location expression size");
6970 output_loc_sequence (curr
->expr
);
6973 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
6974 "Location list terminator begin (%s)",
6975 list_head
->ll_symbol
);
6976 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0,
6977 "Location list terminator end (%s)",
6978 list_head
->ll_symbol
);
6981 /* Output the DIE and its attributes. Called recursively to generate
6982 the definitions of each child DIE. */
6985 output_die (dw_die_ref die
)
6991 /* If someone in another CU might refer to us, set up a symbol for
6992 them to point to. */
6993 if (die
->die_symbol
)
6994 output_die_symbol (die
);
6996 dw2_asm_output_data_uleb128 (die
->die_abbrev
, "(DIE (0x%lx) %s)",
6997 die
->die_offset
, dwarf_tag_name (die
->die_tag
));
6999 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
7001 const char *name
= dwarf_attr_name (a
->dw_attr
);
7003 switch (AT_class (a
))
7005 case dw_val_class_addr
:
7006 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
, AT_addr (a
), "%s", name
);
7009 case dw_val_class_offset
:
7010 dw2_asm_output_data (DWARF_OFFSET_SIZE
, a
->dw_attr_val
.v
.val_offset
,
7014 case dw_val_class_range_list
:
7016 char *p
= strchr (ranges_section_label
, '\0');
7018 sprintf (p
, "+" HOST_WIDE_INT_PRINT_HEX
,
7019 a
->dw_attr_val
.v
.val_offset
);
7020 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, ranges_section_label
,
7026 case dw_val_class_loc
:
7027 size
= size_of_locs (AT_loc (a
));
7029 /* Output the block length for this list of location operations. */
7030 dw2_asm_output_data (constant_size (size
), size
, "%s", name
);
7032 output_loc_sequence (AT_loc (a
));
7035 case dw_val_class_const
:
7036 /* ??? It would be slightly more efficient to use a scheme like is
7037 used for unsigned constants below, but gdb 4.x does not sign
7038 extend. Gdb 5.x does sign extend. */
7039 dw2_asm_output_data_sleb128 (AT_int (a
), "%s", name
);
7042 case dw_val_class_unsigned_const
:
7043 dw2_asm_output_data (constant_size (AT_unsigned (a
)),
7044 AT_unsigned (a
), "%s", name
);
7047 case dw_val_class_long_long
:
7049 unsigned HOST_WIDE_INT first
, second
;
7051 dw2_asm_output_data (1,
7052 2 * HOST_BITS_PER_LONG
/ HOST_BITS_PER_CHAR
,
7055 if (WORDS_BIG_ENDIAN
)
7057 first
= a
->dw_attr_val
.v
.val_long_long
.hi
;
7058 second
= a
->dw_attr_val
.v
.val_long_long
.low
;
7062 first
= a
->dw_attr_val
.v
.val_long_long
.low
;
7063 second
= a
->dw_attr_val
.v
.val_long_long
.hi
;
7066 dw2_asm_output_data (HOST_BITS_PER_LONG
/ HOST_BITS_PER_CHAR
,
7067 first
, "long long constant");
7068 dw2_asm_output_data (HOST_BITS_PER_LONG
/ HOST_BITS_PER_CHAR
,
7073 case dw_val_class_vec
:
7075 unsigned int elt_size
= a
->dw_attr_val
.v
.val_vec
.elt_size
;
7076 unsigned int len
= a
->dw_attr_val
.v
.val_vec
.length
;
7080 dw2_asm_output_data (1, len
* elt_size
, "%s", name
);
7081 if (elt_size
> sizeof (HOST_WIDE_INT
))
7086 for (i
= 0, p
= a
->dw_attr_val
.v
.val_vec
.array
;
7089 dw2_asm_output_data (elt_size
, extract_int (p
, elt_size
),
7090 "fp or vector constant word %u", i
);
7094 case dw_val_class_flag
:
7095 dw2_asm_output_data (1, AT_flag (a
), "%s", name
);
7098 case dw_val_class_loc_list
:
7100 char *sym
= AT_loc_list (a
)->ll_symbol
;
7103 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, sym
, "%s", name
);
7107 case dw_val_class_die_ref
:
7108 if (AT_ref_external (a
))
7110 char *sym
= AT_ref (a
)->die_symbol
;
7113 dw2_asm_output_offset (DWARF2_ADDR_SIZE
, sym
, "%s", name
);
7117 gcc_assert (AT_ref (a
)->die_offset
);
7118 dw2_asm_output_data (DWARF_OFFSET_SIZE
, AT_ref (a
)->die_offset
,
7123 case dw_val_class_fde_ref
:
7127 ASM_GENERATE_INTERNAL_LABEL (l1
, FDE_LABEL
,
7128 a
->dw_attr_val
.v
.val_fde_index
* 2);
7129 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, l1
, "%s", name
);
7133 case dw_val_class_lbl_id
:
7134 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, AT_lbl (a
), "%s", name
);
7137 case dw_val_class_lbl_offset
:
7138 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, AT_lbl (a
), "%s", name
);
7141 case dw_val_class_str
:
7142 if (AT_string_form (a
) == DW_FORM_strp
)
7143 dw2_asm_output_offset (DWARF_OFFSET_SIZE
,
7144 a
->dw_attr_val
.v
.val_str
->label
,
7145 "%s: \"%s\"", name
, AT_string (a
));
7147 dw2_asm_output_nstring (AT_string (a
), -1, "%s", name
);
7155 for (c
= die
->die_child
; c
!= NULL
; c
= c
->die_sib
)
7158 /* Add null byte to terminate sibling list. */
7159 if (die
->die_child
!= NULL
)
7160 dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
7164 /* Output the compilation unit that appears at the beginning of the
7165 .debug_info section, and precedes the DIE descriptions. */
7168 output_compilation_unit_header (void)
7170 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
7171 dw2_asm_output_data (4, 0xffffffff,
7172 "Initial length escape value indicating 64-bit DWARF extension");
7173 dw2_asm_output_data (DWARF_OFFSET_SIZE
,
7174 next_die_offset
- DWARF_INITIAL_LENGTH_SIZE
,
7175 "Length of Compilation Unit Info");
7176 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF version number");
7177 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, abbrev_section_label
,
7178 "Offset Into Abbrev. Section");
7179 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Pointer Size (in bytes)");
7182 /* Output the compilation unit DIE and its children. */
7185 output_comp_unit (dw_die_ref die
, int output_if_empty
)
7187 const char *secname
;
7190 /* Unless we are outputting main CU, we may throw away empty ones. */
7191 if (!output_if_empty
&& die
->die_child
== NULL
)
7194 /* Even if there are no children of this DIE, we must output the information
7195 about the compilation unit. Otherwise, on an empty translation unit, we
7196 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
7197 will then complain when examining the file. First mark all the DIEs in
7198 this CU so we know which get local refs. */
7201 build_abbrev_table (die
);
7203 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
7204 next_die_offset
= DWARF_COMPILE_UNIT_HEADER_SIZE
;
7205 calc_die_sizes (die
);
7207 oldsym
= die
->die_symbol
;
7210 tmp
= alloca (strlen (oldsym
) + 24);
7212 sprintf (tmp
, ".gnu.linkonce.wi.%s", oldsym
);
7214 die
->die_symbol
= NULL
;
7215 switch_to_section (get_section (secname
, SECTION_DEBUG
, NULL
));
7218 switch_to_section (debug_info_section
);
7220 /* Output debugging information. */
7221 output_compilation_unit_header ();
7224 /* Leave the marks on the main CU, so we can check them in
7229 die
->die_symbol
= oldsym
;
7233 /* The DWARF2 pubname for a nested thingy looks like "A::f". The
7234 output of lang_hooks.decl_printable_name for C++ looks like
7235 "A::f(int)". Let's drop the argument list, and maybe the scope. */
7238 dwarf2_name (tree decl
, int scope
)
7240 return lang_hooks
.decl_printable_name (decl
, scope
? 1 : 0);
7243 /* Add a new entry to .debug_pubnames if appropriate. */
7246 add_pubname (tree decl
, dw_die_ref die
)
7250 if (! TREE_PUBLIC (decl
))
7253 if (pubname_table_in_use
== pubname_table_allocated
)
7255 pubname_table_allocated
+= PUBNAME_TABLE_INCREMENT
;
7257 = ggc_realloc (pubname_table
,
7258 (pubname_table_allocated
* sizeof (pubname_entry
)));
7259 memset (pubname_table
+ pubname_table_in_use
, 0,
7260 PUBNAME_TABLE_INCREMENT
* sizeof (pubname_entry
));
7263 p
= &pubname_table
[pubname_table_in_use
++];
7265 p
->name
= xstrdup (dwarf2_name (decl
, 1));
7268 /* Output the public names table used to speed up access to externally
7269 visible names. For now, only generate entries for externally
7270 visible procedures. */
7273 output_pubnames (void)
7276 unsigned long pubnames_length
= size_of_pubnames ();
7278 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
7279 dw2_asm_output_data (4, 0xffffffff,
7280 "Initial length escape value indicating 64-bit DWARF extension");
7281 dw2_asm_output_data (DWARF_OFFSET_SIZE
, pubnames_length
,
7282 "Length of Public Names Info");
7283 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF Version");
7284 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
7285 "Offset of Compilation Unit Info");
7286 dw2_asm_output_data (DWARF_OFFSET_SIZE
, next_die_offset
,
7287 "Compilation Unit Length");
7289 for (i
= 0; i
< pubname_table_in_use
; i
++)
7291 pubname_ref pub
= &pubname_table
[i
];
7293 /* We shouldn't see pubnames for DIEs outside of the main CU. */
7294 gcc_assert (pub
->die
->die_mark
);
7296 dw2_asm_output_data (DWARF_OFFSET_SIZE
, pub
->die
->die_offset
,
7299 dw2_asm_output_nstring (pub
->name
, -1, "external name");
7302 dw2_asm_output_data (DWARF_OFFSET_SIZE
, 0, NULL
);
7305 /* Add a new entry to .debug_aranges if appropriate. */
7308 add_arange (tree decl
, dw_die_ref die
)
7310 if (! DECL_SECTION_NAME (decl
))
7313 if (arange_table_in_use
== arange_table_allocated
)
7315 arange_table_allocated
+= ARANGE_TABLE_INCREMENT
;
7316 arange_table
= ggc_realloc (arange_table
,
7317 (arange_table_allocated
7318 * sizeof (dw_die_ref
)));
7319 memset (arange_table
+ arange_table_in_use
, 0,
7320 ARANGE_TABLE_INCREMENT
* sizeof (dw_die_ref
));
7323 arange_table
[arange_table_in_use
++] = die
;
7326 /* Output the information that goes into the .debug_aranges table.
7327 Namely, define the beginning and ending address range of the
7328 text section generated for this compilation unit. */
7331 output_aranges (void)
7334 unsigned long aranges_length
= size_of_aranges ();
7336 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
7337 dw2_asm_output_data (4, 0xffffffff,
7338 "Initial length escape value indicating 64-bit DWARF extension");
7339 dw2_asm_output_data (DWARF_OFFSET_SIZE
, aranges_length
,
7340 "Length of Address Ranges Info");
7341 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF Version");
7342 dw2_asm_output_offset (DWARF_OFFSET_SIZE
, debug_info_section_label
,
7343 "Offset of Compilation Unit Info");
7344 dw2_asm_output_data (1, DWARF2_ADDR_SIZE
, "Size of Address");
7345 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
7347 /* We need to align to twice the pointer size here. */
7348 if (DWARF_ARANGES_PAD_SIZE
)
7350 /* Pad using a 2 byte words so that padding is correct for any
7352 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
7353 2 * DWARF2_ADDR_SIZE
);
7354 for (i
= 2; i
< (unsigned) DWARF_ARANGES_PAD_SIZE
; i
+= 2)
7355 dw2_asm_output_data (2, 0, NULL
);
7358 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, text_section_label
, "Address");
7359 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, text_end_label
,
7360 text_section_label
, "Length");
7361 if (flag_reorder_blocks_and_partition
)
7363 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, cold_text_section_label
,
7365 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, cold_end_label
,
7366 cold_text_section_label
, "Length");
7369 for (i
= 0; i
< arange_table_in_use
; i
++)
7371 dw_die_ref die
= arange_table
[i
];
7373 /* We shouldn't see aranges for DIEs outside of the main CU. */
7374 gcc_assert (die
->die_mark
);
7376 if (die
->die_tag
== DW_TAG_subprogram
)
7378 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, get_AT_low_pc (die
),
7380 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, get_AT_hi_pc (die
),
7381 get_AT_low_pc (die
), "Length");
7385 /* A static variable; extract the symbol from DW_AT_location.
7386 Note that this code isn't currently hit, as we only emit
7387 aranges for functions (jason 9/23/99). */
7388 dw_attr_ref a
= get_AT (die
, DW_AT_location
);
7389 dw_loc_descr_ref loc
;
7391 gcc_assert (a
&& AT_class (a
) == dw_val_class_loc
);
7394 gcc_assert (loc
->dw_loc_opc
== DW_OP_addr
);
7396 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE
,
7397 loc
->dw_loc_oprnd1
.v
.val_addr
, "Address");
7398 dw2_asm_output_data (DWARF2_ADDR_SIZE
,
7399 get_AT_unsigned (die
, DW_AT_byte_size
),
7404 /* Output the terminator words. */
7405 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
7406 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
7409 /* Add a new entry to .debug_ranges. Return the offset at which it
7413 add_ranges (tree block
)
7415 unsigned int in_use
= ranges_table_in_use
;
7417 if (in_use
== ranges_table_allocated
)
7419 ranges_table_allocated
+= RANGES_TABLE_INCREMENT
;
7421 = ggc_realloc (ranges_table
, (ranges_table_allocated
7422 * sizeof (struct dw_ranges_struct
)));
7423 memset (ranges_table
+ ranges_table_in_use
, 0,
7424 RANGES_TABLE_INCREMENT
* sizeof (struct dw_ranges_struct
));
7427 ranges_table
[in_use
].block_num
= (block
? BLOCK_NUMBER (block
) : 0);
7428 ranges_table_in_use
= in_use
+ 1;
7430 return in_use
* 2 * DWARF2_ADDR_SIZE
;
7434 output_ranges (void)
7437 static const char *const start_fmt
= "Offset 0x%x";
7438 const char *fmt
= start_fmt
;
7440 for (i
= 0; i
< ranges_table_in_use
; i
++)
7442 int block_num
= ranges_table
[i
].block_num
;
7446 char blabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
7447 char elabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
7449 ASM_GENERATE_INTERNAL_LABEL (blabel
, BLOCK_BEGIN_LABEL
, block_num
);
7450 ASM_GENERATE_INTERNAL_LABEL (elabel
, BLOCK_END_LABEL
, block_num
);
7452 /* If all code is in the text section, then the compilation
7453 unit base address defaults to DW_AT_low_pc, which is the
7454 base of the text section. */
7455 if (!have_multiple_function_sections
)
7457 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, blabel
,
7459 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
7460 dw2_asm_output_delta (DWARF2_ADDR_SIZE
, elabel
,
7461 text_section_label
, NULL
);
7464 /* Otherwise, we add a DW_AT_entry_pc attribute to force the
7465 compilation unit base address to zero, which allows us to
7466 use absolute addresses, and not worry about whether the
7467 target supports cross-section arithmetic. */
7470 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, blabel
,
7471 fmt
, i
* 2 * DWARF2_ADDR_SIZE
);
7472 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, elabel
, NULL
);
7479 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
7480 dw2_asm_output_data (DWARF2_ADDR_SIZE
, 0, NULL
);
7486 /* Data structure containing information about input files. */
7489 char *path
; /* Complete file name. */
7490 char *fname
; /* File name part. */
7491 int length
; /* Length of entire string. */
7492 int file_idx
; /* Index in input file table. */
7493 int dir_idx
; /* Index in directory table. */
7496 /* Data structure containing information about directories with source
7500 char *path
; /* Path including directory name. */
7501 int length
; /* Path length. */
7502 int prefix
; /* Index of directory entry which is a prefix. */
7503 int count
; /* Number of files in this directory. */
7504 int dir_idx
; /* Index of directory used as base. */
7505 int used
; /* Used in the end? */
7508 /* Callback function for file_info comparison. We sort by looking at
7509 the directories in the path. */
7512 file_info_cmp (const void *p1
, const void *p2
)
7514 const struct file_info
*s1
= p1
;
7515 const struct file_info
*s2
= p2
;
7519 /* Take care of file names without directories. We need to make sure that
7520 we return consistent values to qsort since some will get confused if
7521 we return the same value when identical operands are passed in opposite
7522 orders. So if neither has a directory, return 0 and otherwise return
7523 1 or -1 depending on which one has the directory. */
7524 if ((s1
->path
== s1
->fname
|| s2
->path
== s2
->fname
))
7525 return (s2
->path
== s2
->fname
) - (s1
->path
== s1
->fname
);
7527 cp1
= (unsigned char *) s1
->path
;
7528 cp2
= (unsigned char *) s2
->path
;
7534 /* Reached the end of the first path? If so, handle like above. */
7535 if ((cp1
== (unsigned char *) s1
->fname
)
7536 || (cp2
== (unsigned char *) s2
->fname
))
7537 return ((cp2
== (unsigned char *) s2
->fname
)
7538 - (cp1
== (unsigned char *) s1
->fname
));
7540 /* Character of current path component the same? */
7541 else if (*cp1
!= *cp2
)
7546 /* Output the directory table and the file name table. We try to minimize
7547 the total amount of memory needed. A heuristic is used to avoid large
7548 slowdowns with many input files. */
7551 output_file_names (void)
7553 struct file_info
*files
;
7554 struct dir_info
*dirs
;
7563 /* Handle the case where file_table is empty. */
7564 if (VARRAY_ACTIVE_SIZE (file_table
) <= 1)
7566 dw2_asm_output_data (1, 0, "End directory table");
7567 dw2_asm_output_data (1, 0, "End file name table");
7571 /* Allocate the various arrays we need. */
7572 files
= alloca (VARRAY_ACTIVE_SIZE (file_table
) * sizeof (struct file_info
));
7573 dirs
= alloca (VARRAY_ACTIVE_SIZE (file_table
) * sizeof (struct dir_info
));
7575 /* Sort the file names. */
7576 for (i
= 1; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
7580 /* Skip all leading "./". */
7581 f
= VARRAY_CHAR_PTR (file_table
, i
);
7582 while (f
[0] == '.' && f
[1] == '/')
7585 /* Create a new array entry. */
7587 files
[i
].length
= strlen (f
);
7588 files
[i
].file_idx
= i
;
7590 /* Search for the file name part. */
7591 f
= strrchr (f
, '/');
7592 files
[i
].fname
= f
== NULL
? files
[i
].path
: f
+ 1;
7595 qsort (files
+ 1, VARRAY_ACTIVE_SIZE (file_table
) - 1,
7596 sizeof (files
[0]), file_info_cmp
);
7598 /* Find all the different directories used. */
7599 dirs
[0].path
= files
[1].path
;
7600 dirs
[0].length
= files
[1].fname
- files
[1].path
;
7601 dirs
[0].prefix
= -1;
7603 dirs
[0].dir_idx
= 0;
7605 files
[1].dir_idx
= 0;
7608 for (i
= 2; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
7609 if (files
[i
].fname
- files
[i
].path
== dirs
[ndirs
- 1].length
7610 && memcmp (dirs
[ndirs
- 1].path
, files
[i
].path
,
7611 dirs
[ndirs
- 1].length
) == 0)
7613 /* Same directory as last entry. */
7614 files
[i
].dir_idx
= ndirs
- 1;
7615 ++dirs
[ndirs
- 1].count
;
7621 /* This is a new directory. */
7622 dirs
[ndirs
].path
= files
[i
].path
;
7623 dirs
[ndirs
].length
= files
[i
].fname
- files
[i
].path
;
7624 dirs
[ndirs
].count
= 1;
7625 dirs
[ndirs
].dir_idx
= ndirs
;
7626 dirs
[ndirs
].used
= 0;
7627 files
[i
].dir_idx
= ndirs
;
7629 /* Search for a prefix. */
7630 dirs
[ndirs
].prefix
= -1;
7631 for (j
= 0; j
< ndirs
; j
++)
7632 if (dirs
[j
].length
< dirs
[ndirs
].length
7633 && dirs
[j
].length
> 1
7634 && (dirs
[ndirs
].prefix
== -1
7635 || dirs
[j
].length
> dirs
[dirs
[ndirs
].prefix
].length
)
7636 && memcmp (dirs
[j
].path
, dirs
[ndirs
].path
, dirs
[j
].length
) == 0)
7637 dirs
[ndirs
].prefix
= j
;
7642 /* Now to the actual work. We have to find a subset of the directories which
7643 allow expressing the file name using references to the directory table
7644 with the least amount of characters. We do not do an exhaustive search
7645 where we would have to check out every combination of every single
7646 possible prefix. Instead we use a heuristic which provides nearly optimal
7647 results in most cases and never is much off. */
7648 saved
= alloca (ndirs
* sizeof (int));
7649 savehere
= alloca (ndirs
* sizeof (int));
7651 memset (saved
, '\0', ndirs
* sizeof (saved
[0]));
7652 for (i
= 0; i
< ndirs
; i
++)
7657 /* We can always save some space for the current directory. But this
7658 does not mean it will be enough to justify adding the directory. */
7659 savehere
[i
] = dirs
[i
].length
;
7660 total
= (savehere
[i
] - saved
[i
]) * dirs
[i
].count
;
7662 for (j
= i
+ 1; j
< ndirs
; j
++)
7665 if (saved
[j
] < dirs
[i
].length
)
7667 /* Determine whether the dirs[i] path is a prefix of the
7672 while (k
!= -1 && k
!= (int) i
)
7677 /* Yes it is. We can possibly safe some memory but
7678 writing the filenames in dirs[j] relative to
7680 savehere
[j
] = dirs
[i
].length
;
7681 total
+= (savehere
[j
] - saved
[j
]) * dirs
[j
].count
;
7686 /* Check whether we can safe enough to justify adding the dirs[i]
7688 if (total
> dirs
[i
].length
+ 1)
7690 /* It's worthwhile adding. */
7691 for (j
= i
; j
< ndirs
; j
++)
7692 if (savehere
[j
] > 0)
7694 /* Remember how much we saved for this directory so far. */
7695 saved
[j
] = savehere
[j
];
7697 /* Remember the prefix directory. */
7698 dirs
[j
].dir_idx
= i
;
7703 /* We have to emit them in the order they appear in the file_table array
7704 since the index is used in the debug info generation. To do this
7705 efficiently we generate a back-mapping of the indices first. */
7706 backmap
= alloca (VARRAY_ACTIVE_SIZE (file_table
) * sizeof (int));
7707 for (i
= 1; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
7709 backmap
[files
[i
].file_idx
] = i
;
7711 /* Mark this directory as used. */
7712 dirs
[dirs
[files
[i
].dir_idx
].dir_idx
].used
= 1;
7715 /* That was it. We are ready to emit the information. First emit the
7716 directory name table. We have to make sure the first actually emitted
7717 directory name has index one; zero is reserved for the current working
7718 directory. Make sure we do not confuse these indices with the one for the
7719 constructed table (even though most of the time they are identical). */
7721 idx_offset
= dirs
[0].length
> 0 ? 1 : 0;
7722 for (i
= 1 - idx_offset
; i
< ndirs
; i
++)
7723 if (dirs
[i
].used
!= 0)
7725 dirs
[i
].used
= idx
++;
7726 dw2_asm_output_nstring (dirs
[i
].path
, dirs
[i
].length
- 1,
7727 "Directory Entry: 0x%x", dirs
[i
].used
);
7730 dw2_asm_output_data (1, 0, "End directory table");
7732 /* Correct the index for the current working directory entry if it
7734 if (idx_offset
== 0)
7737 /* Now write all the file names. */
7738 for (i
= 1; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
7740 int file_idx
= backmap
[i
];
7741 int dir_idx
= dirs
[files
[file_idx
].dir_idx
].dir_idx
;
7743 dw2_asm_output_nstring (files
[file_idx
].path
+ dirs
[dir_idx
].length
, -1,
7744 "File Entry: 0x%lx", (unsigned long) i
);
7746 /* Include directory index. */
7747 dw2_asm_output_data_uleb128 (dirs
[dir_idx
].used
, NULL
);
7749 /* Modification time. */
7750 dw2_asm_output_data_uleb128 (0, NULL
);
7752 /* File length in bytes. */
7753 dw2_asm_output_data_uleb128 (0, NULL
);
7756 dw2_asm_output_data (1, 0, "End file name table");
7760 /* Output the source line number correspondence information. This
7761 information goes into the .debug_line section. */
7764 output_line_info (void)
7766 char l1
[20], l2
[20], p1
[20], p2
[20];
7767 char line_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
7768 char prev_line_label
[MAX_ARTIFICIAL_LABEL_BYTES
];
7771 unsigned long lt_index
;
7772 unsigned long current_line
;
7775 unsigned long current_file
;
7776 unsigned long function
;
7778 ASM_GENERATE_INTERNAL_LABEL (l1
, LINE_NUMBER_BEGIN_LABEL
, 0);
7779 ASM_GENERATE_INTERNAL_LABEL (l2
, LINE_NUMBER_END_LABEL
, 0);
7780 ASM_GENERATE_INTERNAL_LABEL (p1
, LN_PROLOG_AS_LABEL
, 0);
7781 ASM_GENERATE_INTERNAL_LABEL (p2
, LN_PROLOG_END_LABEL
, 0);
7783 if (DWARF_INITIAL_LENGTH_SIZE
- DWARF_OFFSET_SIZE
== 4)
7784 dw2_asm_output_data (4, 0xffffffff,
7785 "Initial length escape value indicating 64-bit DWARF extension");
7786 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, l2
, l1
,
7787 "Length of Source Line Info");
7788 ASM_OUTPUT_LABEL (asm_out_file
, l1
);
7790 dw2_asm_output_data (2, DWARF_VERSION
, "DWARF Version");
7791 dw2_asm_output_delta (DWARF_OFFSET_SIZE
, p2
, p1
, "Prolog Length");
7792 ASM_OUTPUT_LABEL (asm_out_file
, p1
);
7794 /* Define the architecture-dependent minimum instruction length (in
7795 bytes). In this implementation of DWARF, this field is used for
7796 information purposes only. Since GCC generates assembly language,
7797 we have no a priori knowledge of how many instruction bytes are
7798 generated for each source line, and therefore can use only the
7799 DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
7800 commands. Accordingly, we fix this as `1', which is "correct
7801 enough" for all architectures, and don't let the target override. */
7802 dw2_asm_output_data (1, 1,
7803 "Minimum Instruction Length");
7805 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START
,
7806 "Default is_stmt_start flag");
7807 dw2_asm_output_data (1, DWARF_LINE_BASE
,
7808 "Line Base Value (Special Opcodes)");
7809 dw2_asm_output_data (1, DWARF_LINE_RANGE
,
7810 "Line Range Value (Special Opcodes)");
7811 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
,
7812 "Special Opcode Base");
7814 for (opc
= 1; opc
< DWARF_LINE_OPCODE_BASE
; opc
++)
7818 case DW_LNS_advance_pc
:
7819 case DW_LNS_advance_line
:
7820 case DW_LNS_set_file
:
7821 case DW_LNS_set_column
:
7822 case DW_LNS_fixed_advance_pc
:
7830 dw2_asm_output_data (1, n_op_args
, "opcode: 0x%x has %d args",
7834 /* Write out the information about the files we use. */
7835 output_file_names ();
7836 ASM_OUTPUT_LABEL (asm_out_file
, p2
);
7838 /* We used to set the address register to the first location in the text
7839 section here, but that didn't accomplish anything since we already
7840 have a line note for the opening brace of the first function. */
7842 /* Generate the line number to PC correspondence table, encoded as
7843 a series of state machine operations. */
7847 if (cfun
&& in_cold_section_p
)
7848 strcpy (prev_line_label
, cfun
->cold_section_label
);
7850 strcpy (prev_line_label
, text_section_label
);
7851 for (lt_index
= 1; lt_index
< line_info_table_in_use
; ++lt_index
)
7853 dw_line_info_ref line_info
= &line_info_table
[lt_index
];
7856 /* Disable this optimization for now; GDB wants to see two line notes
7857 at the beginning of a function so it can find the end of the
7860 /* Don't emit anything for redundant notes. Just updating the
7861 address doesn't accomplish anything, because we already assume
7862 that anything after the last address is this line. */
7863 if (line_info
->dw_line_num
== current_line
7864 && line_info
->dw_file_num
== current_file
)
7868 /* Emit debug info for the address of the current line.
7870 Unfortunately, we have little choice here currently, and must always
7871 use the most general form. GCC does not know the address delta
7872 itself, so we can't use DW_LNS_advance_pc. Many ports do have length
7873 attributes which will give an upper bound on the address range. We
7874 could perhaps use length attributes to determine when it is safe to
7875 use DW_LNS_fixed_advance_pc. */
7877 ASM_GENERATE_INTERNAL_LABEL (line_label
, LINE_CODE_LABEL
, lt_index
);
7880 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
7881 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
7882 "DW_LNS_fixed_advance_pc");
7883 dw2_asm_output_delta (2, line_label
, prev_line_label
, NULL
);
7887 /* This can handle any delta. This takes
7888 4+DWARF2_ADDR_SIZE bytes. */
7889 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7890 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
7891 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
7892 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
7895 strcpy (prev_line_label
, line_label
);
7897 /* Emit debug info for the source file of the current line, if
7898 different from the previous line. */
7899 if (line_info
->dw_file_num
!= current_file
)
7901 current_file
= line_info
->dw_file_num
;
7902 dw2_asm_output_data (1, DW_LNS_set_file
, "DW_LNS_set_file");
7903 dw2_asm_output_data_uleb128 (current_file
, "(\"%s\")",
7904 VARRAY_CHAR_PTR (file_table
,
7908 /* Emit debug info for the current line number, choosing the encoding
7909 that uses the least amount of space. */
7910 if (line_info
->dw_line_num
!= current_line
)
7912 line_offset
= line_info
->dw_line_num
- current_line
;
7913 line_delta
= line_offset
- DWARF_LINE_BASE
;
7914 current_line
= line_info
->dw_line_num
;
7915 if (line_delta
>= 0 && line_delta
< (DWARF_LINE_RANGE
- 1))
7916 /* This can handle deltas from -10 to 234, using the current
7917 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
7919 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
+ line_delta
,
7920 "line %lu", current_line
);
7923 /* This can handle any delta. This takes at least 4 bytes,
7924 depending on the value being encoded. */
7925 dw2_asm_output_data (1, DW_LNS_advance_line
,
7926 "advance to line %lu", current_line
);
7927 dw2_asm_output_data_sleb128 (line_offset
, NULL
);
7928 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
7932 /* We still need to start a new row, so output a copy insn. */
7933 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
7936 /* Emit debug info for the address of the end of the function. */
7939 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
7940 "DW_LNS_fixed_advance_pc");
7941 dw2_asm_output_delta (2, text_end_label
, prev_line_label
, NULL
);
7945 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7946 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
7947 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
7948 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, text_end_label
, NULL
);
7951 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7952 dw2_asm_output_data_uleb128 (1, NULL
);
7953 dw2_asm_output_data (1, DW_LNE_end_sequence
, NULL
);
7958 for (lt_index
= 0; lt_index
< separate_line_info_table_in_use
;)
7960 dw_separate_line_info_ref line_info
7961 = &separate_line_info_table
[lt_index
];
7964 /* Don't emit anything for redundant notes. */
7965 if (line_info
->dw_line_num
== current_line
7966 && line_info
->dw_file_num
== current_file
7967 && line_info
->function
== function
)
7971 /* Emit debug info for the address of the current line. If this is
7972 a new function, or the first line of a function, then we need
7973 to handle it differently. */
7974 ASM_GENERATE_INTERNAL_LABEL (line_label
, SEPARATE_LINE_CODE_LABEL
,
7976 if (function
!= line_info
->function
)
7978 function
= line_info
->function
;
7980 /* Set the address register to the first line in the function. */
7981 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7982 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
7983 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
7984 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
7988 /* ??? See the DW_LNS_advance_pc comment above. */
7991 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
7992 "DW_LNS_fixed_advance_pc");
7993 dw2_asm_output_delta (2, line_label
, prev_line_label
, NULL
);
7997 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7998 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
7999 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
8000 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
8004 strcpy (prev_line_label
, line_label
);
8006 /* Emit debug info for the source file of the current line, if
8007 different from the previous line. */
8008 if (line_info
->dw_file_num
!= current_file
)
8010 current_file
= line_info
->dw_file_num
;
8011 dw2_asm_output_data (1, DW_LNS_set_file
, "DW_LNS_set_file");
8012 dw2_asm_output_data_uleb128 (current_file
, "(\"%s\")",
8013 VARRAY_CHAR_PTR (file_table
,
8017 /* Emit debug info for the current line number, choosing the encoding
8018 that uses the least amount of space. */
8019 if (line_info
->dw_line_num
!= current_line
)
8021 line_offset
= line_info
->dw_line_num
- current_line
;
8022 line_delta
= line_offset
- DWARF_LINE_BASE
;
8023 current_line
= line_info
->dw_line_num
;
8024 if (line_delta
>= 0 && line_delta
< (DWARF_LINE_RANGE
- 1))
8025 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE
+ line_delta
,
8026 "line %lu", current_line
);
8029 dw2_asm_output_data (1, DW_LNS_advance_line
,
8030 "advance to line %lu", current_line
);
8031 dw2_asm_output_data_sleb128 (line_offset
, NULL
);
8032 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
8036 dw2_asm_output_data (1, DW_LNS_copy
, "DW_LNS_copy");
8044 /* If we're done with a function, end its sequence. */
8045 if (lt_index
== separate_line_info_table_in_use
8046 || separate_line_info_table
[lt_index
].function
!= function
)
8051 /* Emit debug info for the address of the end of the function. */
8052 ASM_GENERATE_INTERNAL_LABEL (line_label
, FUNC_END_LABEL
, function
);
8055 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc
,
8056 "DW_LNS_fixed_advance_pc");
8057 dw2_asm_output_delta (2, line_label
, prev_line_label
, NULL
);
8061 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
8062 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE
, NULL
);
8063 dw2_asm_output_data (1, DW_LNE_set_address
, NULL
);
8064 dw2_asm_output_addr (DWARF2_ADDR_SIZE
, line_label
, NULL
);
8067 /* Output the marker for the end of this sequence. */
8068 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
8069 dw2_asm_output_data_uleb128 (1, NULL
);
8070 dw2_asm_output_data (1, DW_LNE_end_sequence
, NULL
);
8074 /* Output the marker for the end of the line number info. */
8075 ASM_OUTPUT_LABEL (asm_out_file
, l2
);
8078 /* Given a pointer to a tree node for some base type, return a pointer to
8079 a DIE that describes the given type.
8081 This routine must only be called for GCC type nodes that correspond to
8082 Dwarf base (fundamental) types. */
8085 base_type_die (tree type
)
8087 dw_die_ref base_type_result
;
8088 const char *type_name
;
8089 enum dwarf_type encoding
;
8090 tree name
= TYPE_NAME (type
);
8092 if (TREE_CODE (type
) == ERROR_MARK
|| TREE_CODE (type
) == VOID_TYPE
)
8097 if (TREE_CODE (name
) == TYPE_DECL
)
8098 name
= DECL_NAME (name
);
8100 type_name
= IDENTIFIER_POINTER (name
);
8103 type_name
= "__unknown__";
8105 switch (TREE_CODE (type
))
8108 if (TYPE_STRING_FLAG (type
))
8110 if (TYPE_UNSIGNED (type
))
8111 encoding
= DW_ATE_unsigned_char
;
8113 encoding
= DW_ATE_signed_char
;
8115 else if (TYPE_UNSIGNED (type
))
8116 encoding
= DW_ATE_unsigned
;
8118 encoding
= DW_ATE_signed
;
8122 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type
)))
8123 encoding
= DW_ATE_decimal_float
;
8125 encoding
= DW_ATE_float
;
8128 /* Dwarf2 doesn't know anything about complex ints, so use
8129 a user defined type for it. */
8131 if (TREE_CODE (TREE_TYPE (type
)) == REAL_TYPE
)
8132 encoding
= DW_ATE_complex_float
;
8134 encoding
= DW_ATE_lo_user
;
8138 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
8139 encoding
= DW_ATE_boolean
;
8143 /* No other TREE_CODEs are Dwarf fundamental types. */
8147 base_type_result
= new_die (DW_TAG_base_type
, comp_unit_die
, type
);
8148 if (demangle_name_func
)
8149 type_name
= (*demangle_name_func
) (type_name
);
8151 add_AT_string (base_type_result
, DW_AT_name
, type_name
);
8152 add_AT_unsigned (base_type_result
, DW_AT_byte_size
,
8153 int_size_in_bytes (type
));
8154 add_AT_unsigned (base_type_result
, DW_AT_encoding
, encoding
);
8156 return base_type_result
;
8159 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
8160 the Dwarf "root" type for the given input type. The Dwarf "root" type of
8161 a given type is generally the same as the given type, except that if the
8162 given type is a pointer or reference type, then the root type of the given
8163 type is the root type of the "basis" type for the pointer or reference
8164 type. (This definition of the "root" type is recursive.) Also, the root
8165 type of a `const' qualified type or a `volatile' qualified type is the
8166 root type of the given type without the qualifiers. */
8169 root_type (tree type
)
8171 if (TREE_CODE (type
) == ERROR_MARK
)
8172 return error_mark_node
;
8174 switch (TREE_CODE (type
))
8177 return error_mark_node
;
8180 case REFERENCE_TYPE
:
8181 return type_main_variant (root_type (TREE_TYPE (type
)));
8184 return type_main_variant (type
);
8188 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
8189 given input type is a Dwarf "fundamental" type. Otherwise return null. */
8192 is_base_type (tree type
)
8194 switch (TREE_CODE (type
))
8207 case QUAL_UNION_TYPE
:
8212 case REFERENCE_TYPE
:
8225 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
8226 node, return the size in bits for the type if it is a constant, or else
8227 return the alignment for the type if the type's size is not constant, or
8228 else return BITS_PER_WORD if the type actually turns out to be an
8231 static inline unsigned HOST_WIDE_INT
8232 simple_type_size_in_bits (tree type
)
8234 if (TREE_CODE (type
) == ERROR_MARK
)
8235 return BITS_PER_WORD
;
8236 else if (TYPE_SIZE (type
) == NULL_TREE
)
8238 else if (host_integerp (TYPE_SIZE (type
), 1))
8239 return tree_low_cst (TYPE_SIZE (type
), 1);
8241 return TYPE_ALIGN (type
);
8244 /* Return true if the debug information for the given type should be
8245 emitted as a subrange type. */
8248 is_subrange_type (tree type
)
8250 tree subtype
= TREE_TYPE (type
);
8252 /* Subrange types are identified by the fact that they are integer
8253 types, and that they have a subtype which is either an integer type
8254 or an enumeral type. */
8256 if (TREE_CODE (type
) != INTEGER_TYPE
8257 || subtype
== NULL_TREE
)
8260 if (TREE_CODE (subtype
) != INTEGER_TYPE
8261 && TREE_CODE (subtype
) != ENUMERAL_TYPE
)
8264 if (TREE_CODE (type
) == TREE_CODE (subtype
)
8265 && int_size_in_bytes (type
) == int_size_in_bytes (subtype
)
8266 && TYPE_MIN_VALUE (type
) != NULL
8267 && TYPE_MIN_VALUE (subtype
) != NULL
8268 && tree_int_cst_equal (TYPE_MIN_VALUE (type
), TYPE_MIN_VALUE (subtype
))
8269 && TYPE_MAX_VALUE (type
) != NULL
8270 && TYPE_MAX_VALUE (subtype
) != NULL
8271 && tree_int_cst_equal (TYPE_MAX_VALUE (type
), TYPE_MAX_VALUE (subtype
)))
8273 /* The type and its subtype have the same representation. If in
8274 addition the two types also have the same name, then the given
8275 type is not a subrange type, but rather a plain base type. */
8276 /* FIXME: brobecker/2004-03-22:
8277 Sizetype INTEGER_CSTs nodes are canonicalized. It should
8278 therefore be sufficient to check the TYPE_SIZE node pointers
8279 rather than checking the actual size. Unfortunately, we have
8280 found some cases, such as in the Ada "integer" type, where
8281 this is not the case. Until this problem is solved, we need to
8282 keep checking the actual size. */
8283 tree type_name
= TYPE_NAME (type
);
8284 tree subtype_name
= TYPE_NAME (subtype
);
8286 if (type_name
!= NULL
&& TREE_CODE (type_name
) == TYPE_DECL
)
8287 type_name
= DECL_NAME (type_name
);
8289 if (subtype_name
!= NULL
&& TREE_CODE (subtype_name
) == TYPE_DECL
)
8290 subtype_name
= DECL_NAME (subtype_name
);
8292 if (type_name
== subtype_name
)
8299 /* Given a pointer to a tree node for a subrange type, return a pointer
8300 to a DIE that describes the given type. */
8303 subrange_type_die (tree type
, dw_die_ref context_die
)
8305 dw_die_ref subtype_die
;
8306 dw_die_ref subrange_die
;
8307 tree name
= TYPE_NAME (type
);
8308 const HOST_WIDE_INT size_in_bytes
= int_size_in_bytes (type
);
8309 tree subtype
= TREE_TYPE (type
);
8311 if (context_die
== NULL
)
8312 context_die
= comp_unit_die
;
8314 if (TREE_CODE (subtype
) == ENUMERAL_TYPE
)
8315 subtype_die
= gen_enumeration_type_die (subtype
, context_die
);
8317 subtype_die
= base_type_die (subtype
);
8319 subrange_die
= new_die (DW_TAG_subrange_type
, context_die
, type
);
8323 if (TREE_CODE (name
) == TYPE_DECL
)
8324 name
= DECL_NAME (name
);
8325 add_name_attribute (subrange_die
, IDENTIFIER_POINTER (name
));
8328 if (int_size_in_bytes (subtype
) != size_in_bytes
)
8330 /* The size of the subrange type and its base type do not match,
8331 so we need to generate a size attribute for the subrange type. */
8332 add_AT_unsigned (subrange_die
, DW_AT_byte_size
, size_in_bytes
);
8335 if (TYPE_MIN_VALUE (type
) != NULL
)
8336 add_bound_info (subrange_die
, DW_AT_lower_bound
,
8337 TYPE_MIN_VALUE (type
));
8338 if (TYPE_MAX_VALUE (type
) != NULL
)
8339 add_bound_info (subrange_die
, DW_AT_upper_bound
,
8340 TYPE_MAX_VALUE (type
));
8341 add_AT_die_ref (subrange_die
, DW_AT_type
, subtype_die
);
8343 return subrange_die
;
8346 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
8347 entry that chains various modifiers in front of the given type. */
8350 modified_type_die (tree type
, int is_const_type
, int is_volatile_type
,
8351 dw_die_ref context_die
)
8353 enum tree_code code
= TREE_CODE (type
);
8354 dw_die_ref mod_type_die
= NULL
;
8355 dw_die_ref sub_die
= NULL
;
8356 tree item_type
= NULL
;
8358 if (code
!= ERROR_MARK
)
8360 tree qualified_type
;
8362 /* See if we already have the appropriately qualified variant of
8365 = get_qualified_type (type
,
8366 ((is_const_type
? TYPE_QUAL_CONST
: 0)
8368 ? TYPE_QUAL_VOLATILE
: 0)));
8370 /* If we do, then we can just use its DIE, if it exists. */
8373 mod_type_die
= lookup_type_die (qualified_type
);
8375 return mod_type_die
;
8378 /* Handle C typedef types. */
8379 if (qualified_type
&& TYPE_NAME (qualified_type
)
8380 && TREE_CODE (TYPE_NAME (qualified_type
)) == TYPE_DECL
8381 && DECL_ORIGINAL_TYPE (TYPE_NAME (qualified_type
)))
8383 tree type_name
= TYPE_NAME (qualified_type
);
8384 tree dtype
= TREE_TYPE (type_name
);
8386 if (qualified_type
== dtype
)
8388 /* For a named type, use the typedef. */
8389 gen_type_die (qualified_type
, context_die
);
8390 mod_type_die
= lookup_type_die (qualified_type
);
8392 else if (is_const_type
< TYPE_READONLY (dtype
)
8393 || is_volatile_type
< TYPE_VOLATILE (dtype
))
8394 /* cv-unqualified version of named type. Just use the unnamed
8395 type to which it refers. */
8397 = modified_type_die (DECL_ORIGINAL_TYPE (type_name
),
8398 is_const_type
, is_volatile_type
,
8401 /* Else cv-qualified version of named type; fall through. */
8407 else if (is_const_type
)
8409 mod_type_die
= new_die (DW_TAG_const_type
, comp_unit_die
, type
);
8410 sub_die
= modified_type_die (type
, 0, is_volatile_type
, context_die
);
8412 else if (is_volatile_type
)
8414 mod_type_die
= new_die (DW_TAG_volatile_type
, comp_unit_die
, type
);
8415 sub_die
= modified_type_die (type
, 0, 0, context_die
);
8417 else if (code
== POINTER_TYPE
)
8419 mod_type_die
= new_die (DW_TAG_pointer_type
, comp_unit_die
, type
);
8420 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
8421 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
8423 add_AT_unsigned (mod_type_die
, DW_AT_address_class
, 0);
8425 item_type
= TREE_TYPE (type
);
8427 else if (code
== REFERENCE_TYPE
)
8429 mod_type_die
= new_die (DW_TAG_reference_type
, comp_unit_die
, type
);
8430 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
,
8431 simple_type_size_in_bits (type
) / BITS_PER_UNIT
);
8433 add_AT_unsigned (mod_type_die
, DW_AT_address_class
, 0);
8435 item_type
= TREE_TYPE (type
);
8437 else if (is_subrange_type (type
))
8438 mod_type_die
= subrange_type_die (type
, context_die
);
8439 else if (is_base_type (type
))
8440 mod_type_die
= base_type_die (type
);
8443 gen_type_die (type
, context_die
);
8445 /* We have to get the type_main_variant here (and pass that to the
8446 `lookup_type_die' routine) because the ..._TYPE node we have
8447 might simply be a *copy* of some original type node (where the
8448 copy was created to help us keep track of typedef names) and
8449 that copy might have a different TYPE_UID from the original
8451 if (TREE_CODE (type
) != VECTOR_TYPE
)
8452 mod_type_die
= lookup_type_die (type_main_variant (type
));
8454 /* Vectors have the debugging information in the type,
8455 not the main variant. */
8456 mod_type_die
= lookup_type_die (type
);
8457 gcc_assert (mod_type_die
);
8460 /* We want to equate the qualified type to the die below. */
8461 type
= qualified_type
;
8465 equate_type_number_to_die (type
, mod_type_die
);
8467 /* We must do this after the equate_type_number_to_die call, in case
8468 this is a recursive type. This ensures that the modified_type_die
8469 recursion will terminate even if the type is recursive. Recursive
8470 types are possible in Ada. */
8471 sub_die
= modified_type_die (item_type
,
8472 TYPE_READONLY (item_type
),
8473 TYPE_VOLATILE (item_type
),
8476 if (sub_die
!= NULL
)
8477 add_AT_die_ref (mod_type_die
, DW_AT_type
, sub_die
);
8479 return mod_type_die
;
8482 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
8483 an enumerated type. */
8486 type_is_enum (tree type
)
8488 return TREE_CODE (type
) == ENUMERAL_TYPE
;
8491 /* Return the DBX register number described by a given RTL node. */
8494 dbx_reg_number (rtx rtl
)
8496 unsigned regno
= REGNO (rtl
);
8498 gcc_assert (regno
< FIRST_PSEUDO_REGISTER
);
8500 #ifdef LEAF_REG_REMAP
8501 regno
= LEAF_REG_REMAP (regno
);
8504 return DBX_REGISTER_NUMBER (regno
);
8507 /* Optionally add a DW_OP_piece term to a location description expression.
8508 DW_OP_piece is only added if the location description expression already
8509 doesn't end with DW_OP_piece. */
8512 add_loc_descr_op_piece (dw_loc_descr_ref
*list_head
, int size
)
8514 dw_loc_descr_ref loc
;
8516 if (*list_head
!= NULL
)
8518 /* Find the end of the chain. */
8519 for (loc
= *list_head
; loc
->dw_loc_next
!= NULL
; loc
= loc
->dw_loc_next
)
8522 if (loc
->dw_loc_opc
!= DW_OP_piece
)
8523 loc
->dw_loc_next
= new_loc_descr (DW_OP_piece
, size
, 0);
8527 /* Return a location descriptor that designates a machine register or
8528 zero if there is none. */
8530 static dw_loc_descr_ref
8531 reg_loc_descriptor (rtx rtl
)
8535 if (REGNO (rtl
) >= FIRST_PSEUDO_REGISTER
)
8538 regs
= targetm
.dwarf_register_span (rtl
);
8540 if (hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)] > 1 || regs
)
8541 return multiple_reg_loc_descriptor (rtl
, regs
);
8543 return one_reg_loc_descriptor (dbx_reg_number (rtl
));
8546 /* Return a location descriptor that designates a machine register for
8547 a given hard register number. */
8549 static dw_loc_descr_ref
8550 one_reg_loc_descriptor (unsigned int regno
)
8553 return new_loc_descr (DW_OP_reg0
+ regno
, 0, 0);
8555 return new_loc_descr (DW_OP_regx
, regno
, 0);
8558 /* Given an RTL of a register, return a location descriptor that
8559 designates a value that spans more than one register. */
8561 static dw_loc_descr_ref
8562 multiple_reg_loc_descriptor (rtx rtl
, rtx regs
)
8566 dw_loc_descr_ref loc_result
= NULL
;
8569 #ifdef LEAF_REG_REMAP
8570 reg
= LEAF_REG_REMAP (reg
);
8572 gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg
) == dbx_reg_number (rtl
));
8573 nregs
= hard_regno_nregs
[REGNO (rtl
)][GET_MODE (rtl
)];
8575 /* Simple, contiguous registers. */
8576 if (regs
== NULL_RTX
)
8578 size
= GET_MODE_SIZE (GET_MODE (rtl
)) / nregs
;
8585 t
= one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg
));
8586 add_loc_descr (&loc_result
, t
);
8587 add_loc_descr_op_piece (&loc_result
, size
);
8593 /* Now onto stupid register sets in non contiguous locations. */
8595 gcc_assert (GET_CODE (regs
) == PARALLEL
);
8597 size
= GET_MODE_SIZE (GET_MODE (XVECEXP (regs
, 0, 0)));
8600 for (i
= 0; i
< XVECLEN (regs
, 0); ++i
)
8604 t
= one_reg_loc_descriptor (REGNO (XVECEXP (regs
, 0, i
)));
8605 add_loc_descr (&loc_result
, t
);
8606 size
= GET_MODE_SIZE (GET_MODE (XVECEXP (regs
, 0, 0)));
8607 add_loc_descr_op_piece (&loc_result
, size
);
8612 /* Return a location descriptor that designates a constant. */
8614 static dw_loc_descr_ref
8615 int_loc_descriptor (HOST_WIDE_INT i
)
8617 enum dwarf_location_atom op
;
8619 /* Pick the smallest representation of a constant, rather than just
8620 defaulting to the LEB encoding. */
8624 op
= DW_OP_lit0
+ i
;
8627 else if (i
<= 0xffff)
8629 else if (HOST_BITS_PER_WIDE_INT
== 32
8639 else if (i
>= -0x8000)
8641 else if (HOST_BITS_PER_WIDE_INT
== 32
8642 || i
>= -0x80000000)
8648 return new_loc_descr (op
, i
, 0);
8651 /* Return a location descriptor that designates a base+offset location. */
8653 static dw_loc_descr_ref
8654 based_loc_descr (rtx reg
, HOST_WIDE_INT offset
)
8658 /* We only use "frame base" when we're sure we're talking about the
8659 post-prologue local stack frame. We do this by *not* running
8660 register elimination until this point, and recognizing the special
8661 argument pointer and soft frame pointer rtx's. */
8662 if (reg
== arg_pointer_rtx
|| reg
== frame_pointer_rtx
)
8664 rtx elim
= eliminate_regs (reg
, VOIDmode
, NULL_RTX
);
8668 if (GET_CODE (elim
) == PLUS
)
8670 offset
+= INTVAL (XEXP (elim
, 1));
8671 elim
= XEXP (elim
, 0);
8673 gcc_assert (elim
== (frame_pointer_needed
? hard_frame_pointer_rtx
8674 : stack_pointer_rtx
));
8675 offset
+= frame_pointer_cfa_offset
;
8677 return new_loc_descr (DW_OP_fbreg
, offset
, 0);
8681 regno
= dbx_reg_number (reg
);
8683 return new_loc_descr (DW_OP_breg0
+ regno
, offset
, 0);
8685 return new_loc_descr (DW_OP_bregx
, regno
, offset
);
8688 /* Return true if this RTL expression describes a base+offset calculation. */
8691 is_based_loc (rtx rtl
)
8693 return (GET_CODE (rtl
) == PLUS
8694 && ((REG_P (XEXP (rtl
, 0))
8695 && REGNO (XEXP (rtl
, 0)) < FIRST_PSEUDO_REGISTER
8696 && GET_CODE (XEXP (rtl
, 1)) == CONST_INT
)));
8699 /* The following routine converts the RTL for a variable or parameter
8700 (resident in memory) into an equivalent Dwarf representation of a
8701 mechanism for getting the address of that same variable onto the top of a
8702 hypothetical "address evaluation" stack.
8704 When creating memory location descriptors, we are effectively transforming
8705 the RTL for a memory-resident object into its Dwarf postfix expression
8706 equivalent. This routine recursively descends an RTL tree, turning
8707 it into Dwarf postfix code as it goes.
8709 MODE is the mode of the memory reference, needed to handle some
8710 autoincrement addressing modes.
8712 CAN_USE_FBREG is a flag whether we can use DW_AT_frame_base in the
8713 location list for RTL.
8715 Return 0 if we can't represent the location. */
8717 static dw_loc_descr_ref
8718 mem_loc_descriptor (rtx rtl
, enum machine_mode mode
)
8720 dw_loc_descr_ref mem_loc_result
= NULL
;
8721 enum dwarf_location_atom op
;
8723 /* Note that for a dynamically sized array, the location we will generate a
8724 description of here will be the lowest numbered location which is
8725 actually within the array. That's *not* necessarily the same as the
8726 zeroth element of the array. */
8728 rtl
= targetm
.delegitimize_address (rtl
);
8730 switch (GET_CODE (rtl
))
8735 /* POST_INC and POST_DEC can be handled just like a SUBREG. So we
8736 just fall into the SUBREG code. */
8738 /* ... fall through ... */
8741 /* The case of a subreg may arise when we have a local (register)
8742 variable or a formal (register) parameter which doesn't quite fill
8743 up an entire register. For now, just assume that it is
8744 legitimate to make the Dwarf info refer to the whole register which
8745 contains the given subreg. */
8746 rtl
= XEXP (rtl
, 0);
8748 /* ... fall through ... */
8751 /* Whenever a register number forms a part of the description of the
8752 method for calculating the (dynamic) address of a memory resident
8753 object, DWARF rules require the register number be referred to as
8754 a "base register". This distinction is not based in any way upon
8755 what category of register the hardware believes the given register
8756 belongs to. This is strictly DWARF terminology we're dealing with
8757 here. Note that in cases where the location of a memory-resident
8758 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
8759 OP_CONST (0)) the actual DWARF location descriptor that we generate
8760 may just be OP_BASEREG (basereg). This may look deceptively like
8761 the object in question was allocated to a register (rather than in
8762 memory) so DWARF consumers need to be aware of the subtle
8763 distinction between OP_REG and OP_BASEREG. */
8764 if (REGNO (rtl
) < FIRST_PSEUDO_REGISTER
)
8765 mem_loc_result
= based_loc_descr (rtl
, 0);
8769 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (rtl
));
8770 if (mem_loc_result
!= 0)
8771 add_loc_descr (&mem_loc_result
, new_loc_descr (DW_OP_deref
, 0, 0));
8775 rtl
= XEXP (rtl
, 1);
8777 /* ... fall through ... */
8780 /* Some ports can transform a symbol ref into a label ref, because
8781 the symbol ref is too far away and has to be dumped into a constant
8785 /* Alternatively, the symbol in the constant pool might be referenced
8786 by a different symbol. */
8787 if (GET_CODE (rtl
) == SYMBOL_REF
&& CONSTANT_POOL_ADDRESS_P (rtl
))
8790 rtx tmp
= get_pool_constant_mark (rtl
, &marked
);
8792 if (GET_CODE (tmp
) == SYMBOL_REF
)
8795 if (CONSTANT_POOL_ADDRESS_P (tmp
))
8796 get_pool_constant_mark (tmp
, &marked
);
8801 /* If all references to this pool constant were optimized away,
8802 it was not output and thus we can't represent it.
8803 FIXME: might try to use DW_OP_const_value here, though
8804 DW_OP_piece complicates it. */
8809 mem_loc_result
= new_loc_descr (DW_OP_addr
, 0, 0);
8810 mem_loc_result
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
8811 mem_loc_result
->dw_loc_oprnd1
.v
.val_addr
= rtl
;
8812 VEC_safe_push (rtx
, gc
, used_rtx_array
, rtl
);
8816 /* Extract the PLUS expression nested inside and fall into
8818 rtl
= XEXP (rtl
, 1);
8823 /* Turn these into a PLUS expression and fall into the PLUS code
8825 rtl
= gen_rtx_PLUS (word_mode
, XEXP (rtl
, 0),
8826 GEN_INT (GET_CODE (rtl
) == PRE_INC
8827 ? GET_MODE_UNIT_SIZE (mode
)
8828 : -GET_MODE_UNIT_SIZE (mode
)));
8830 /* ... fall through ... */
8834 if (is_based_loc (rtl
))
8835 mem_loc_result
= based_loc_descr (XEXP (rtl
, 0),
8836 INTVAL (XEXP (rtl
, 1)));
8839 mem_loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), mode
);
8840 if (mem_loc_result
== 0)
8843 if (GET_CODE (XEXP (rtl
, 1)) == CONST_INT
8844 && INTVAL (XEXP (rtl
, 1)) >= 0)
8845 add_loc_descr (&mem_loc_result
,
8846 new_loc_descr (DW_OP_plus_uconst
,
8847 INTVAL (XEXP (rtl
, 1)), 0));
8850 add_loc_descr (&mem_loc_result
,
8851 mem_loc_descriptor (XEXP (rtl
, 1), mode
));
8852 add_loc_descr (&mem_loc_result
,
8853 new_loc_descr (DW_OP_plus
, 0, 0));
8858 /* If a pseudo-reg is optimized away, it is possible for it to
8859 be replaced with a MEM containing a multiply or shift. */
8878 dw_loc_descr_ref op0
= mem_loc_descriptor (XEXP (rtl
, 0), mode
);
8879 dw_loc_descr_ref op1
= mem_loc_descriptor (XEXP (rtl
, 1), mode
);
8881 if (op0
== 0 || op1
== 0)
8884 mem_loc_result
= op0
;
8885 add_loc_descr (&mem_loc_result
, op1
);
8886 add_loc_descr (&mem_loc_result
, new_loc_descr (op
, 0, 0));
8891 mem_loc_result
= int_loc_descriptor (INTVAL (rtl
));
8898 return mem_loc_result
;
8901 /* Return a descriptor that describes the concatenation of two locations.
8902 This is typically a complex variable. */
8904 static dw_loc_descr_ref
8905 concat_loc_descriptor (rtx x0
, rtx x1
)
8907 dw_loc_descr_ref cc_loc_result
= NULL
;
8908 dw_loc_descr_ref x0_ref
= loc_descriptor (x0
);
8909 dw_loc_descr_ref x1_ref
= loc_descriptor (x1
);
8911 if (x0_ref
== 0 || x1_ref
== 0)
8914 cc_loc_result
= x0_ref
;
8915 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x0
)));
8917 add_loc_descr (&cc_loc_result
, x1_ref
);
8918 add_loc_descr_op_piece (&cc_loc_result
, GET_MODE_SIZE (GET_MODE (x1
)));
8920 return cc_loc_result
;
8923 /* Output a proper Dwarf location descriptor for a variable or parameter
8924 which is either allocated in a register or in a memory location. For a
8925 register, we just generate an OP_REG and the register number. For a
8926 memory location we provide a Dwarf postfix expression describing how to
8927 generate the (dynamic) address of the object onto the address stack.
8929 If we don't know how to describe it, return 0. */
8931 static dw_loc_descr_ref
8932 loc_descriptor (rtx rtl
)
8934 dw_loc_descr_ref loc_result
= NULL
;
8936 switch (GET_CODE (rtl
))
8939 /* The case of a subreg may arise when we have a local (register)
8940 variable or a formal (register) parameter which doesn't quite fill
8941 up an entire register. For now, just assume that it is
8942 legitimate to make the Dwarf info refer to the whole register which
8943 contains the given subreg. */
8944 rtl
= SUBREG_REG (rtl
);
8946 /* ... fall through ... */
8949 loc_result
= reg_loc_descriptor (rtl
);
8953 loc_result
= mem_loc_descriptor (XEXP (rtl
, 0), GET_MODE (rtl
));
8957 loc_result
= concat_loc_descriptor (XEXP (rtl
, 0), XEXP (rtl
, 1));
8962 if (GET_CODE (XEXP (rtl
, 1)) != PARALLEL
)
8964 loc_result
= loc_descriptor (XEXP (XEXP (rtl
, 1), 0));
8968 rtl
= XEXP (rtl
, 1);
8973 rtvec par_elems
= XVEC (rtl
, 0);
8974 int num_elem
= GET_NUM_ELEM (par_elems
);
8975 enum machine_mode mode
;
8978 /* Create the first one, so we have something to add to. */
8979 loc_result
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, 0), 0));
8980 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, 0), 0));
8981 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
8982 for (i
= 1; i
< num_elem
; i
++)
8984 dw_loc_descr_ref temp
;
8986 temp
= loc_descriptor (XEXP (RTVEC_ELT (par_elems
, i
), 0));
8987 add_loc_descr (&loc_result
, temp
);
8988 mode
= GET_MODE (XEXP (RTVEC_ELT (par_elems
, i
), 0));
8989 add_loc_descr_op_piece (&loc_result
, GET_MODE_SIZE (mode
));
9001 /* Similar, but generate the descriptor from trees instead of rtl. This comes
9002 up particularly with variable length arrays. WANT_ADDRESS is 2 if this is
9003 a top-level invocation of loc_descriptor_from_tree; is 1 if this is not a
9004 top-level invocation, and we require the address of LOC; is 0 if we require
9005 the value of LOC. */
9007 static dw_loc_descr_ref
9008 loc_descriptor_from_tree_1 (tree loc
, int want_address
)
9010 dw_loc_descr_ref ret
, ret1
;
9011 int have_address
= 0;
9012 enum dwarf_location_atom op
;
9014 /* ??? Most of the time we do not take proper care for sign/zero
9015 extending the values properly. Hopefully this won't be a real
9018 switch (TREE_CODE (loc
))
9023 case PLACEHOLDER_EXPR
:
9024 /* This case involves extracting fields from an object to determine the
9025 position of other fields. We don't try to encode this here. The
9026 only user of this is Ada, which encodes the needed information using
9027 the names of types. */
9033 case PREINCREMENT_EXPR
:
9034 case PREDECREMENT_EXPR
:
9035 case POSTINCREMENT_EXPR
:
9036 case POSTDECREMENT_EXPR
:
9037 /* There are no opcodes for these operations. */
9041 /* If we already want an address, there's nothing we can do. */
9045 /* Otherwise, process the argument and look for the address. */
9046 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 1);
9049 if (DECL_THREAD_LOCAL_P (loc
))
9053 /* If this is not defined, we have no way to emit the data. */
9054 if (!targetm
.asm_out
.output_dwarf_dtprel
)
9057 /* The way DW_OP_GNU_push_tls_address is specified, we can only
9058 look up addresses of objects in the current module. */
9059 if (DECL_EXTERNAL (loc
))
9062 rtl
= rtl_for_decl_location (loc
);
9063 if (rtl
== NULL_RTX
)
9068 rtl
= XEXP (rtl
, 0);
9069 if (! CONSTANT_P (rtl
))
9072 ret
= new_loc_descr (INTERNAL_DW_OP_tls_addr
, 0, 0);
9073 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
9074 ret
->dw_loc_oprnd1
.v
.val_addr
= rtl
;
9076 ret1
= new_loc_descr (DW_OP_GNU_push_tls_address
, 0, 0);
9077 add_loc_descr (&ret
, ret1
);
9085 if (DECL_HAS_VALUE_EXPR_P (loc
))
9086 return loc_descriptor_from_tree_1 (DECL_VALUE_EXPR (loc
),
9092 rtx rtl
= rtl_for_decl_location (loc
);
9094 if (rtl
== NULL_RTX
)
9096 else if (GET_CODE (rtl
) == CONST_INT
)
9098 HOST_WIDE_INT val
= INTVAL (rtl
);
9099 if (TYPE_UNSIGNED (TREE_TYPE (loc
)))
9100 val
&= GET_MODE_MASK (DECL_MODE (loc
));
9101 ret
= int_loc_descriptor (val
);
9103 else if (GET_CODE (rtl
) == CONST_STRING
)
9105 else if (CONSTANT_P (rtl
))
9107 ret
= new_loc_descr (DW_OP_addr
, 0, 0);
9108 ret
->dw_loc_oprnd1
.val_class
= dw_val_class_addr
;
9109 ret
->dw_loc_oprnd1
.v
.val_addr
= rtl
;
9113 enum machine_mode mode
;
9115 /* Certain constructs can only be represented at top-level. */
9116 if (want_address
== 2)
9117 return loc_descriptor (rtl
);
9119 mode
= GET_MODE (rtl
);
9122 rtl
= XEXP (rtl
, 0);
9125 ret
= mem_loc_descriptor (rtl
, mode
);
9131 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9136 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 1), want_address
);
9140 case NON_LVALUE_EXPR
:
9141 case VIEW_CONVERT_EXPR
:
9144 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), want_address
);
9149 case ARRAY_RANGE_REF
:
9152 HOST_WIDE_INT bitsize
, bitpos
, bytepos
;
9153 enum machine_mode mode
;
9155 int unsignedp
= TYPE_UNSIGNED (TREE_TYPE (loc
));
9157 obj
= get_inner_reference (loc
, &bitsize
, &bitpos
, &offset
, &mode
,
9158 &unsignedp
, &volatilep
, false);
9163 ret
= loc_descriptor_from_tree_1 (obj
, 1);
9165 || bitpos
% BITS_PER_UNIT
!= 0 || bitsize
% BITS_PER_UNIT
!= 0)
9168 if (offset
!= NULL_TREE
)
9170 /* Variable offset. */
9171 add_loc_descr (&ret
, loc_descriptor_from_tree_1 (offset
, 0));
9172 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus
, 0, 0));
9175 bytepos
= bitpos
/ BITS_PER_UNIT
;
9177 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus_uconst
, bytepos
, 0));
9178 else if (bytepos
< 0)
9180 add_loc_descr (&ret
, int_loc_descriptor (bytepos
));
9181 add_loc_descr (&ret
, new_loc_descr (DW_OP_plus
, 0, 0));
9189 if (host_integerp (loc
, 0))
9190 ret
= int_loc_descriptor (tree_low_cst (loc
, 0));
9197 /* Get an RTL for this, if something has been emitted. */
9198 rtx rtl
= lookup_constant_def (loc
);
9199 enum machine_mode mode
;
9201 if (!rtl
|| !MEM_P (rtl
))
9203 mode
= GET_MODE (rtl
);
9204 rtl
= XEXP (rtl
, 0);
9205 ret
= mem_loc_descriptor (rtl
, mode
);
9210 case TRUTH_AND_EXPR
:
9211 case TRUTH_ANDIF_EXPR
:
9216 case TRUTH_XOR_EXPR
:
9222 case TRUTH_ORIF_EXPR
:
9227 case FLOOR_DIV_EXPR
:
9229 case ROUND_DIV_EXPR
:
9230 case TRUNC_DIV_EXPR
:
9238 case FLOOR_MOD_EXPR
:
9240 case ROUND_MOD_EXPR
:
9241 case TRUNC_MOD_EXPR
:
9254 op
= (TYPE_UNSIGNED (TREE_TYPE (loc
)) ? DW_OP_shr
: DW_OP_shra
);
9258 if (TREE_CODE (TREE_OPERAND (loc
, 1)) == INTEGER_CST
9259 && host_integerp (TREE_OPERAND (loc
, 1), 0))
9261 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9265 add_loc_descr (&ret
,
9266 new_loc_descr (DW_OP_plus_uconst
,
9267 tree_low_cst (TREE_OPERAND (loc
, 1),
9277 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
9284 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
9291 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
9298 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc
, 0))))
9313 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9314 ret1
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 1), 0);
9315 if (ret
== 0 || ret1
== 0)
9318 add_loc_descr (&ret
, ret1
);
9319 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
9322 case TRUTH_NOT_EXPR
:
9336 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9340 add_loc_descr (&ret
, new_loc_descr (op
, 0, 0));
9346 const enum tree_code code
=
9347 TREE_CODE (loc
) == MIN_EXPR
? GT_EXPR
: LT_EXPR
;
9349 loc
= build3 (COND_EXPR
, TREE_TYPE (loc
),
9350 build2 (code
, integer_type_node
,
9351 TREE_OPERAND (loc
, 0), TREE_OPERAND (loc
, 1)),
9352 TREE_OPERAND (loc
, 1), TREE_OPERAND (loc
, 0));
9355 /* ... fall through ... */
9359 dw_loc_descr_ref lhs
9360 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 1), 0);
9361 dw_loc_descr_ref rhs
9362 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 2), 0);
9363 dw_loc_descr_ref bra_node
, jump_node
, tmp
;
9365 ret
= loc_descriptor_from_tree_1 (TREE_OPERAND (loc
, 0), 0);
9366 if (ret
== 0 || lhs
== 0 || rhs
== 0)
9369 bra_node
= new_loc_descr (DW_OP_bra
, 0, 0);
9370 add_loc_descr (&ret
, bra_node
);
9372 add_loc_descr (&ret
, rhs
);
9373 jump_node
= new_loc_descr (DW_OP_skip
, 0, 0);
9374 add_loc_descr (&ret
, jump_node
);
9376 add_loc_descr (&ret
, lhs
);
9377 bra_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
9378 bra_node
->dw_loc_oprnd1
.v
.val_loc
= lhs
;
9380 /* ??? Need a node to point the skip at. Use a nop. */
9381 tmp
= new_loc_descr (DW_OP_nop
, 0, 0);
9382 add_loc_descr (&ret
, tmp
);
9383 jump_node
->dw_loc_oprnd1
.val_class
= dw_val_class_loc
;
9384 jump_node
->dw_loc_oprnd1
.v
.val_loc
= tmp
;
9388 case FIX_TRUNC_EXPR
:
9390 case FIX_FLOOR_EXPR
:
9391 case FIX_ROUND_EXPR
:
9395 /* Leave front-end specific codes as simply unknown. This comes
9396 up, for instance, with the C STMT_EXPR. */
9397 if ((unsigned int) TREE_CODE (loc
)
9398 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE
)
9401 #ifdef ENABLE_CHECKING
9402 /* Otherwise this is a generic code; we should just lists all of
9403 these explicitly. We forgot one. */
9406 /* In a release build, we want to degrade gracefully: better to
9407 generate incomplete debugging information than to crash. */
9412 /* Show if we can't fill the request for an address. */
9413 if (want_address
&& !have_address
)
9416 /* If we've got an address and don't want one, dereference. */
9417 if (!want_address
&& have_address
&& ret
)
9419 HOST_WIDE_INT size
= int_size_in_bytes (TREE_TYPE (loc
));
9421 if (size
> DWARF2_ADDR_SIZE
|| size
== -1)
9423 else if (size
== DWARF2_ADDR_SIZE
)
9426 op
= DW_OP_deref_size
;
9428 add_loc_descr (&ret
, new_loc_descr (op
, size
, 0));
9434 static inline dw_loc_descr_ref
9435 loc_descriptor_from_tree (tree loc
)
9437 return loc_descriptor_from_tree_1 (loc
, 2);
9440 /* Given a value, round it up to the lowest multiple of `boundary'
9441 which is not less than the value itself. */
9443 static inline HOST_WIDE_INT
9444 ceiling (HOST_WIDE_INT value
, unsigned int boundary
)
9446 return (((value
+ boundary
- 1) / boundary
) * boundary
);
9449 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
9450 pointer to the declared type for the relevant field variable, or return
9451 `integer_type_node' if the given node turns out to be an
9455 field_type (tree decl
)
9459 if (TREE_CODE (decl
) == ERROR_MARK
)
9460 return integer_type_node
;
9462 type
= DECL_BIT_FIELD_TYPE (decl
);
9463 if (type
== NULL_TREE
)
9464 type
= TREE_TYPE (decl
);
9469 /* Given a pointer to a tree node, return the alignment in bits for
9470 it, or else return BITS_PER_WORD if the node actually turns out to
9471 be an ERROR_MARK node. */
9473 static inline unsigned
9474 simple_type_align_in_bits (tree type
)
9476 return (TREE_CODE (type
) != ERROR_MARK
) ? TYPE_ALIGN (type
) : BITS_PER_WORD
;
9479 static inline unsigned
9480 simple_decl_align_in_bits (tree decl
)
9482 return (TREE_CODE (decl
) != ERROR_MARK
) ? DECL_ALIGN (decl
) : BITS_PER_WORD
;
9485 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
9486 lowest addressed byte of the "containing object" for the given FIELD_DECL,
9487 or return 0 if we are unable to determine what that offset is, either
9488 because the argument turns out to be a pointer to an ERROR_MARK node, or
9489 because the offset is actually variable. (We can't handle the latter case
9492 static HOST_WIDE_INT
9493 field_byte_offset (tree decl
)
9495 unsigned int type_align_in_bits
;
9496 unsigned int decl_align_in_bits
;
9497 unsigned HOST_WIDE_INT type_size_in_bits
;
9498 HOST_WIDE_INT object_offset_in_bits
;
9500 tree field_size_tree
;
9501 HOST_WIDE_INT bitpos_int
;
9502 HOST_WIDE_INT deepest_bitpos
;
9503 unsigned HOST_WIDE_INT field_size_in_bits
;
9505 if (TREE_CODE (decl
) == ERROR_MARK
)
9508 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
);
9510 type
= field_type (decl
);
9511 field_size_tree
= DECL_SIZE (decl
);
9513 /* The size could be unspecified if there was an error, or for
9514 a flexible array member. */
9515 if (! field_size_tree
)
9516 field_size_tree
= bitsize_zero_node
;
9518 /* We cannot yet cope with fields whose positions are variable, so
9519 for now, when we see such things, we simply return 0. Someday, we may
9520 be able to handle such cases, but it will be damn difficult. */
9521 if (! host_integerp (bit_position (decl
), 0))
9524 bitpos_int
= int_bit_position (decl
);
9526 /* If we don't know the size of the field, pretend it's a full word. */
9527 if (host_integerp (field_size_tree
, 1))
9528 field_size_in_bits
= tree_low_cst (field_size_tree
, 1);
9530 field_size_in_bits
= BITS_PER_WORD
;
9532 type_size_in_bits
= simple_type_size_in_bits (type
);
9533 type_align_in_bits
= simple_type_align_in_bits (type
);
9534 decl_align_in_bits
= simple_decl_align_in_bits (decl
);
9536 /* The GCC front-end doesn't make any attempt to keep track of the starting
9537 bit offset (relative to the start of the containing structure type) of the
9538 hypothetical "containing object" for a bit-field. Thus, when computing
9539 the byte offset value for the start of the "containing object" of a
9540 bit-field, we must deduce this information on our own. This can be rather
9541 tricky to do in some cases. For example, handling the following structure
9542 type definition when compiling for an i386/i486 target (which only aligns
9543 long long's to 32-bit boundaries) can be very tricky:
9545 struct S { int field1; long long field2:31; };
9547 Fortunately, there is a simple rule-of-thumb which can be used in such
9548 cases. When compiling for an i386/i486, GCC will allocate 8 bytes for the
9549 structure shown above. It decides to do this based upon one simple rule
9550 for bit-field allocation. GCC allocates each "containing object" for each
9551 bit-field at the first (i.e. lowest addressed) legitimate alignment
9552 boundary (based upon the required minimum alignment for the declared type
9553 of the field) which it can possibly use, subject to the condition that
9554 there is still enough available space remaining in the containing object
9555 (when allocated at the selected point) to fully accommodate all of the
9556 bits of the bit-field itself.
9558 This simple rule makes it obvious why GCC allocates 8 bytes for each
9559 object of the structure type shown above. When looking for a place to
9560 allocate the "containing object" for `field2', the compiler simply tries
9561 to allocate a 64-bit "containing object" at each successive 32-bit
9562 boundary (starting at zero) until it finds a place to allocate that 64-
9563 bit field such that at least 31 contiguous (and previously unallocated)
9564 bits remain within that selected 64 bit field. (As it turns out, for the
9565 example above, the compiler finds it is OK to allocate the "containing
9566 object" 64-bit field at bit-offset zero within the structure type.)
9568 Here we attempt to work backwards from the limited set of facts we're
9569 given, and we try to deduce from those facts, where GCC must have believed
9570 that the containing object started (within the structure type). The value
9571 we deduce is then used (by the callers of this routine) to generate
9572 DW_AT_location and DW_AT_bit_offset attributes for fields (both bit-fields
9573 and, in the case of DW_AT_location, regular fields as well). */
9575 /* Figure out the bit-distance from the start of the structure to the
9576 "deepest" bit of the bit-field. */
9577 deepest_bitpos
= bitpos_int
+ field_size_in_bits
;
9579 /* This is the tricky part. Use some fancy footwork to deduce where the
9580 lowest addressed bit of the containing object must be. */
9581 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
9583 /* Round up to type_align by default. This works best for bitfields. */
9584 object_offset_in_bits
+= type_align_in_bits
- 1;
9585 object_offset_in_bits
/= type_align_in_bits
;
9586 object_offset_in_bits
*= type_align_in_bits
;
9588 if (object_offset_in_bits
> bitpos_int
)
9590 /* Sigh, the decl must be packed. */
9591 object_offset_in_bits
= deepest_bitpos
- type_size_in_bits
;
9593 /* Round up to decl_align instead. */
9594 object_offset_in_bits
+= decl_align_in_bits
- 1;
9595 object_offset_in_bits
/= decl_align_in_bits
;
9596 object_offset_in_bits
*= decl_align_in_bits
;
9599 return object_offset_in_bits
/ BITS_PER_UNIT
;
9602 /* The following routines define various Dwarf attributes and any data
9603 associated with them. */
9605 /* Add a location description attribute value to a DIE.
9607 This emits location attributes suitable for whole variables and
9608 whole parameters. Note that the location attributes for struct fields are
9609 generated by the routine `data_member_location_attribute' below. */
9612 add_AT_location_description (dw_die_ref die
, enum dwarf_attribute attr_kind
,
9613 dw_loc_descr_ref descr
)
9616 add_AT_loc (die
, attr_kind
, descr
);
9619 /* Attach the specialized form of location attribute used for data members of
9620 struct and union types. In the special case of a FIELD_DECL node which
9621 represents a bit-field, the "offset" part of this special location
9622 descriptor must indicate the distance in bytes from the lowest-addressed
9623 byte of the containing struct or union type to the lowest-addressed byte of
9624 the "containing object" for the bit-field. (See the `field_byte_offset'
9627 For any given bit-field, the "containing object" is a hypothetical object
9628 (of some integral or enum type) within which the given bit-field lives. The
9629 type of this hypothetical "containing object" is always the same as the
9630 declared type of the individual bit-field itself (for GCC anyway... the
9631 DWARF spec doesn't actually mandate this). Note that it is the size (in
9632 bytes) of the hypothetical "containing object" which will be given in the
9633 DW_AT_byte_size attribute for this bit-field. (See the
9634 `byte_size_attribute' function below.) It is also used when calculating the
9635 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
9639 add_data_member_location_attribute (dw_die_ref die
, tree decl
)
9641 HOST_WIDE_INT offset
;
9642 dw_loc_descr_ref loc_descr
= 0;
9644 if (TREE_CODE (decl
) == TREE_BINFO
)
9646 /* We're working on the TAG_inheritance for a base class. */
9647 if (BINFO_VIRTUAL_P (decl
) && is_cxx ())
9649 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
9650 aren't at a fixed offset from all (sub)objects of the same
9651 type. We need to extract the appropriate offset from our
9652 vtable. The following dwarf expression means
9654 BaseAddr = ObAddr + *((*ObAddr) - Offset)
9656 This is specific to the V3 ABI, of course. */
9658 dw_loc_descr_ref tmp
;
9660 /* Make a copy of the object address. */
9661 tmp
= new_loc_descr (DW_OP_dup
, 0, 0);
9662 add_loc_descr (&loc_descr
, tmp
);
9664 /* Extract the vtable address. */
9665 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
9666 add_loc_descr (&loc_descr
, tmp
);
9668 /* Calculate the address of the offset. */
9669 offset
= tree_low_cst (BINFO_VPTR_FIELD (decl
), 0);
9670 gcc_assert (offset
< 0);
9672 tmp
= int_loc_descriptor (-offset
);
9673 add_loc_descr (&loc_descr
, tmp
);
9674 tmp
= new_loc_descr (DW_OP_minus
, 0, 0);
9675 add_loc_descr (&loc_descr
, tmp
);
9677 /* Extract the offset. */
9678 tmp
= new_loc_descr (DW_OP_deref
, 0, 0);
9679 add_loc_descr (&loc_descr
, tmp
);
9681 /* Add it to the object address. */
9682 tmp
= new_loc_descr (DW_OP_plus
, 0, 0);
9683 add_loc_descr (&loc_descr
, tmp
);
9686 offset
= tree_low_cst (BINFO_OFFSET (decl
), 0);
9689 offset
= field_byte_offset (decl
);
9693 enum dwarf_location_atom op
;
9695 /* The DWARF2 standard says that we should assume that the structure
9696 address is already on the stack, so we can specify a structure field
9697 address by using DW_OP_plus_uconst. */
9699 #ifdef MIPS_DEBUGGING_INFO
9700 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
9701 operator correctly. It works only if we leave the offset on the
9705 op
= DW_OP_plus_uconst
;
9708 loc_descr
= new_loc_descr (op
, offset
, 0);
9711 add_AT_loc (die
, DW_AT_data_member_location
, loc_descr
);
9714 /* Writes integer values to dw_vec_const array. */
9717 insert_int (HOST_WIDE_INT val
, unsigned int size
, unsigned char *dest
)
9721 *dest
++ = val
& 0xff;
9727 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
9729 static HOST_WIDE_INT
9730 extract_int (const unsigned char *src
, unsigned int size
)
9732 HOST_WIDE_INT val
= 0;
9738 val
|= *--src
& 0xff;
9744 /* Writes floating point values to dw_vec_const array. */
9747 insert_float (rtx rtl
, unsigned char *array
)
9753 REAL_VALUE_FROM_CONST_DOUBLE (rv
, rtl
);
9754 real_to_target (val
, &rv
, GET_MODE (rtl
));
9756 /* real_to_target puts 32-bit pieces in each long. Pack them. */
9757 for (i
= 0; i
< GET_MODE_SIZE (GET_MODE (rtl
)) / 4; i
++)
9759 insert_int (val
[i
], 4, array
);
9764 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
9765 does not have a "location" either in memory or in a register. These
9766 things can arise in GNU C when a constant is passed as an actual parameter
9767 to an inlined function. They can also arise in C++ where declared
9768 constants do not necessarily get memory "homes". */
9771 add_const_value_attribute (dw_die_ref die
, rtx rtl
)
9773 switch (GET_CODE (rtl
))
9777 HOST_WIDE_INT val
= INTVAL (rtl
);
9780 add_AT_int (die
, DW_AT_const_value
, val
);
9782 add_AT_unsigned (die
, DW_AT_const_value
, (unsigned HOST_WIDE_INT
) val
);
9787 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
9788 floating-point constant. A CONST_DOUBLE is used whenever the
9789 constant requires more than one word in order to be adequately
9790 represented. We output CONST_DOUBLEs as blocks. */
9792 enum machine_mode mode
= GET_MODE (rtl
);
9794 if (SCALAR_FLOAT_MODE_P (mode
))
9796 unsigned int length
= GET_MODE_SIZE (mode
);
9797 unsigned char *array
= ggc_alloc (length
);
9799 insert_float (rtl
, array
);
9800 add_AT_vec (die
, DW_AT_const_value
, length
/ 4, 4, array
);
9804 /* ??? We really should be using HOST_WIDE_INT throughout. */
9805 gcc_assert (HOST_BITS_PER_LONG
== HOST_BITS_PER_WIDE_INT
);
9807 add_AT_long_long (die
, DW_AT_const_value
,
9808 CONST_DOUBLE_HIGH (rtl
), CONST_DOUBLE_LOW (rtl
));
9815 enum machine_mode mode
= GET_MODE (rtl
);
9816 unsigned int elt_size
= GET_MODE_UNIT_SIZE (mode
);
9817 unsigned int length
= CONST_VECTOR_NUNITS (rtl
);
9818 unsigned char *array
= ggc_alloc (length
* elt_size
);
9822 switch (GET_MODE_CLASS (mode
))
9824 case MODE_VECTOR_INT
:
9825 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
9827 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
9828 HOST_WIDE_INT lo
, hi
;
9830 switch (GET_CODE (elt
))
9838 lo
= CONST_DOUBLE_LOW (elt
);
9839 hi
= CONST_DOUBLE_HIGH (elt
);
9846 if (elt_size
<= sizeof (HOST_WIDE_INT
))
9847 insert_int (lo
, elt_size
, p
);
9850 unsigned char *p0
= p
;
9851 unsigned char *p1
= p
+ sizeof (HOST_WIDE_INT
);
9853 gcc_assert (elt_size
== 2 * sizeof (HOST_WIDE_INT
));
9854 if (WORDS_BIG_ENDIAN
)
9859 insert_int (lo
, sizeof (HOST_WIDE_INT
), p0
);
9860 insert_int (hi
, sizeof (HOST_WIDE_INT
), p1
);
9865 case MODE_VECTOR_FLOAT
:
9866 for (i
= 0, p
= array
; i
< length
; i
++, p
+= elt_size
)
9868 rtx elt
= CONST_VECTOR_ELT (rtl
, i
);
9869 insert_float (elt
, p
);
9877 add_AT_vec (die
, DW_AT_const_value
, length
, elt_size
, array
);
9882 add_AT_string (die
, DW_AT_const_value
, XSTR (rtl
, 0));
9888 add_AT_addr (die
, DW_AT_const_value
, rtl
);
9889 VEC_safe_push (rtx
, gc
, used_rtx_array
, rtl
);
9893 /* In cases where an inlined instance of an inline function is passed
9894 the address of an `auto' variable (which is local to the caller) we
9895 can get a situation where the DECL_RTL of the artificial local
9896 variable (for the inlining) which acts as a stand-in for the
9897 corresponding formal parameter (of the inline function) will look
9898 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
9899 exactly a compile-time constant expression, but it isn't the address
9900 of the (artificial) local variable either. Rather, it represents the
9901 *value* which the artificial local variable always has during its
9902 lifetime. We currently have no way to represent such quasi-constant
9903 values in Dwarf, so for now we just punt and generate nothing. */
9907 /* No other kinds of rtx should be possible here. */
9913 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
9914 for use in a later add_const_value_attribute call. */
9917 rtl_for_decl_init (tree init
, tree type
)
9921 /* If a variable is initialized with a string constant without embedded
9922 zeros, build CONST_STRING. */
9923 if (TREE_CODE (init
) == STRING_CST
&& TREE_CODE (type
) == ARRAY_TYPE
)
9925 tree enttype
= TREE_TYPE (type
);
9926 tree domain
= TYPE_DOMAIN (type
);
9927 enum machine_mode mode
= TYPE_MODE (enttype
);
9929 if (GET_MODE_CLASS (mode
) == MODE_INT
&& GET_MODE_SIZE (mode
) == 1
9931 && integer_zerop (TYPE_MIN_VALUE (domain
))
9932 && compare_tree_int (TYPE_MAX_VALUE (domain
),
9933 TREE_STRING_LENGTH (init
) - 1) == 0
9934 && ((size_t) TREE_STRING_LENGTH (init
)
9935 == strlen (TREE_STRING_POINTER (init
)) + 1))
9936 rtl
= gen_rtx_CONST_STRING (VOIDmode
,
9937 ggc_strdup (TREE_STRING_POINTER (init
)));
9939 /* If the initializer is something that we know will expand into an
9940 immediate RTL constant, expand it now. Expanding anything else
9941 tends to produce unresolved symbols; see debug/5770 and c++/6381. */
9942 /* Aggregate, vector, and complex types may contain constructors that may
9943 result in code being generated when expand_expr is called, so we can't
9944 handle them here. Integer and float are useful and safe types to handle
9946 else if ((INTEGRAL_TYPE_P (type
) || SCALAR_FLOAT_TYPE_P (type
))
9947 && initializer_constant_valid_p (init
, type
) == null_pointer_node
)
9949 rtl
= expand_expr (init
, NULL_RTX
, VOIDmode
, EXPAND_INITIALIZER
);
9951 /* If expand_expr returns a MEM, it wasn't immediate. */
9952 gcc_assert (!rtl
|| !MEM_P (rtl
));
9958 /* Generate RTL for the variable DECL to represent its location. */
9961 rtl_for_decl_location (tree decl
)
9965 /* Here we have to decide where we are going to say the parameter "lives"
9966 (as far as the debugger is concerned). We only have a couple of
9967 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
9969 DECL_RTL normally indicates where the parameter lives during most of the
9970 activation of the function. If optimization is enabled however, this
9971 could be either NULL or else a pseudo-reg. Both of those cases indicate
9972 that the parameter doesn't really live anywhere (as far as the code
9973 generation parts of GCC are concerned) during most of the function's
9974 activation. That will happen (for example) if the parameter is never
9975 referenced within the function.
9977 We could just generate a location descriptor here for all non-NULL
9978 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
9979 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
9980 where DECL_RTL is NULL or is a pseudo-reg.
9982 Note however that we can only get away with using DECL_INCOMING_RTL as
9983 a backup substitute for DECL_RTL in certain limited cases. In cases
9984 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
9985 we can be sure that the parameter was passed using the same type as it is
9986 declared to have within the function, and that its DECL_INCOMING_RTL
9987 points us to a place where a value of that type is passed.
9989 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
9990 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
9991 because in these cases DECL_INCOMING_RTL points us to a value of some
9992 type which is *different* from the type of the parameter itself. Thus,
9993 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
9994 such cases, the debugger would end up (for example) trying to fetch a
9995 `float' from a place which actually contains the first part of a
9996 `double'. That would lead to really incorrect and confusing
9997 output at debug-time.
9999 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
10000 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
10001 are a couple of exceptions however. On little-endian machines we can
10002 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
10003 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
10004 an integral type that is smaller than TREE_TYPE (decl). These cases arise
10005 when (on a little-endian machine) a non-prototyped function has a
10006 parameter declared to be of type `short' or `char'. In such cases,
10007 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
10008 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
10009 passed `int' value. If the debugger then uses that address to fetch
10010 a `short' or a `char' (on a little-endian machine) the result will be
10011 the correct data, so we allow for such exceptional cases below.
10013 Note that our goal here is to describe the place where the given formal
10014 parameter lives during most of the function's activation (i.e. between the
10015 end of the prologue and the start of the epilogue). We'll do that as best
10016 as we can. Note however that if the given formal parameter is modified
10017 sometime during the execution of the function, then a stack backtrace (at
10018 debug-time) will show the function as having been called with the *new*
10019 value rather than the value which was originally passed in. This happens
10020 rarely enough that it is not a major problem, but it *is* a problem, and
10021 I'd like to fix it.
10023 A future version of dwarf2out.c may generate two additional attributes for
10024 any given DW_TAG_formal_parameter DIE which will describe the "passed
10025 type" and the "passed location" for the given formal parameter in addition
10026 to the attributes we now generate to indicate the "declared type" and the
10027 "active location" for each parameter. This additional set of attributes
10028 could be used by debuggers for stack backtraces. Separately, note that
10029 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
10030 This happens (for example) for inlined-instances of inline function formal
10031 parameters which are never referenced. This really shouldn't be
10032 happening. All PARM_DECL nodes should get valid non-NULL
10033 DECL_INCOMING_RTL values. FIXME. */
10035 /* Use DECL_RTL as the "location" unless we find something better. */
10036 rtl
= DECL_RTL_IF_SET (decl
);
10038 /* When generating abstract instances, ignore everything except
10039 constants, symbols living in memory, and symbols living in
10040 fixed registers. */
10041 if (! reload_completed
)
10044 && (CONSTANT_P (rtl
)
10046 && CONSTANT_P (XEXP (rtl
, 0)))
10048 && TREE_CODE (decl
) == VAR_DECL
10049 && TREE_STATIC (decl
))))
10051 rtl
= targetm
.delegitimize_address (rtl
);
10056 else if (TREE_CODE (decl
) == PARM_DECL
)
10058 if (rtl
== NULL_RTX
|| is_pseudo_reg (rtl
))
10060 tree declared_type
= TREE_TYPE (decl
);
10061 tree passed_type
= DECL_ARG_TYPE (decl
);
10062 enum machine_mode dmode
= TYPE_MODE (declared_type
);
10063 enum machine_mode pmode
= TYPE_MODE (passed_type
);
10065 /* This decl represents a formal parameter which was optimized out.
10066 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
10067 all cases where (rtl == NULL_RTX) just below. */
10068 if (dmode
== pmode
)
10069 rtl
= DECL_INCOMING_RTL (decl
);
10070 else if (SCALAR_INT_MODE_P (dmode
)
10071 && GET_MODE_SIZE (dmode
) <= GET_MODE_SIZE (pmode
)
10072 && DECL_INCOMING_RTL (decl
))
10074 rtx inc
= DECL_INCOMING_RTL (decl
);
10077 else if (MEM_P (inc
))
10079 if (BYTES_BIG_ENDIAN
)
10080 rtl
= adjust_address_nv (inc
, dmode
,
10081 GET_MODE_SIZE (pmode
)
10082 - GET_MODE_SIZE (dmode
));
10089 /* If the parm was passed in registers, but lives on the stack, then
10090 make a big endian correction if the mode of the type of the
10091 parameter is not the same as the mode of the rtl. */
10092 /* ??? This is the same series of checks that are made in dbxout.c before
10093 we reach the big endian correction code there. It isn't clear if all
10094 of these checks are necessary here, but keeping them all is the safe
10096 else if (MEM_P (rtl
)
10097 && XEXP (rtl
, 0) != const0_rtx
10098 && ! CONSTANT_P (XEXP (rtl
, 0))
10099 /* Not passed in memory. */
10100 && !MEM_P (DECL_INCOMING_RTL (decl
))
10101 /* Not passed by invisible reference. */
10102 && (!REG_P (XEXP (rtl
, 0))
10103 || REGNO (XEXP (rtl
, 0)) == HARD_FRAME_POINTER_REGNUM
10104 || REGNO (XEXP (rtl
, 0)) == STACK_POINTER_REGNUM
10105 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
10106 || REGNO (XEXP (rtl
, 0)) == ARG_POINTER_REGNUM
10109 /* Big endian correction check. */
10110 && BYTES_BIG_ENDIAN
10111 && TYPE_MODE (TREE_TYPE (decl
)) != GET_MODE (rtl
)
10112 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)))
10115 int offset
= (UNITS_PER_WORD
10116 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
))));
10118 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
10119 plus_constant (XEXP (rtl
, 0), offset
));
10122 else if (TREE_CODE (decl
) == VAR_DECL
10125 && GET_MODE (rtl
) != TYPE_MODE (TREE_TYPE (decl
))
10126 && BYTES_BIG_ENDIAN
)
10128 int rsize
= GET_MODE_SIZE (GET_MODE (rtl
));
10129 int dsize
= GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl
)));
10131 /* If a variable is declared "register" yet is smaller than
10132 a register, then if we store the variable to memory, it
10133 looks like we're storing a register-sized value, when in
10134 fact we are not. We need to adjust the offset of the
10135 storage location to reflect the actual value's bytes,
10136 else gdb will not be able to display it. */
10138 rtl
= gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl
)),
10139 plus_constant (XEXP (rtl
, 0), rsize
-dsize
));
10142 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
10143 and will have been substituted directly into all expressions that use it.
10144 C does not have such a concept, but C++ and other languages do. */
10145 if (!rtl
&& TREE_CODE (decl
) == VAR_DECL
&& DECL_INITIAL (decl
))
10146 rtl
= rtl_for_decl_init (DECL_INITIAL (decl
), TREE_TYPE (decl
));
10149 rtl
= targetm
.delegitimize_address (rtl
);
10151 /* If we don't look past the constant pool, we risk emitting a
10152 reference to a constant pool entry that isn't referenced from
10153 code, and thus is not emitted. */
10155 rtl
= avoid_constant_pool_reference (rtl
);
10160 /* We need to figure out what section we should use as the base for the
10161 address ranges where a given location is valid.
10162 1. If this particular DECL has a section associated with it, use that.
10163 2. If this function has a section associated with it, use that.
10164 3. Otherwise, use the text section.
10165 XXX: If you split a variable across multiple sections, we won't notice. */
10167 static const char *
10168 secname_for_decl (tree decl
)
10170 const char *secname
;
10172 if (VAR_OR_FUNCTION_DECL_P (decl
) && DECL_SECTION_NAME (decl
))
10174 tree sectree
= DECL_SECTION_NAME (decl
);
10175 secname
= TREE_STRING_POINTER (sectree
);
10177 else if (current_function_decl
&& DECL_SECTION_NAME (current_function_decl
))
10179 tree sectree
= DECL_SECTION_NAME (current_function_decl
);
10180 secname
= TREE_STRING_POINTER (sectree
);
10182 else if (cfun
&& in_cold_section_p
)
10183 secname
= cfun
->cold_section_label
;
10185 secname
= text_section_label
;
10190 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
10191 data attribute for a variable or a parameter. We generate the
10192 DW_AT_const_value attribute only in those cases where the given variable
10193 or parameter does not have a true "location" either in memory or in a
10194 register. This can happen (for example) when a constant is passed as an
10195 actual argument in a call to an inline function. (It's possible that
10196 these things can crop up in other ways also.) Note that one type of
10197 constant value which can be passed into an inlined function is a constant
10198 pointer. This can happen for example if an actual argument in an inlined
10199 function call evaluates to a compile-time constant address. */
10202 add_location_or_const_value_attribute (dw_die_ref die
, tree decl
,
10203 enum dwarf_attribute attr
)
10206 dw_loc_descr_ref descr
;
10207 var_loc_list
*loc_list
;
10208 struct var_loc_node
*node
;
10209 if (TREE_CODE (decl
) == ERROR_MARK
)
10212 gcc_assert (TREE_CODE (decl
) == VAR_DECL
|| TREE_CODE (decl
) == PARM_DECL
10213 || TREE_CODE (decl
) == RESULT_DECL
);
10215 /* See if we possibly have multiple locations for this variable. */
10216 loc_list
= lookup_decl_loc (decl
);
10218 /* If it truly has multiple locations, the first and last node will
10220 if (loc_list
&& loc_list
->first
!= loc_list
->last
)
10222 const char *endname
, *secname
;
10223 dw_loc_list_ref list
;
10226 /* Now that we know what section we are using for a base,
10227 actually construct the list of locations.
10228 The first location information is what is passed to the
10229 function that creates the location list, and the remaining
10230 locations just get added on to that list.
10231 Note that we only know the start address for a location
10232 (IE location changes), so to build the range, we use
10233 the range [current location start, next location start].
10234 This means we have to special case the last node, and generate
10235 a range of [last location start, end of function label]. */
10237 node
= loc_list
->first
;
10238 varloc
= NOTE_VAR_LOCATION (node
->var_loc_note
);
10239 secname
= secname_for_decl (decl
);
10241 list
= new_loc_list (loc_descriptor (varloc
),
10242 node
->label
, node
->next
->label
, secname
, 1);
10245 for (; node
->next
; node
= node
->next
)
10246 if (NOTE_VAR_LOCATION_LOC (node
->var_loc_note
) != NULL_RTX
)
10248 /* The variable has a location between NODE->LABEL and
10249 NODE->NEXT->LABEL. */
10250 varloc
= NOTE_VAR_LOCATION (node
->var_loc_note
);
10251 add_loc_descr_to_loc_list (&list
, loc_descriptor (varloc
),
10252 node
->label
, node
->next
->label
, secname
);
10255 /* If the variable has a location at the last label
10256 it keeps its location until the end of function. */
10257 if (NOTE_VAR_LOCATION_LOC (node
->var_loc_note
) != NULL_RTX
)
10259 char label_id
[MAX_ARTIFICIAL_LABEL_BYTES
];
10261 varloc
= NOTE_VAR_LOCATION (node
->var_loc_note
);
10262 if (!current_function_decl
)
10263 endname
= text_end_label
;
10266 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_END_LABEL
,
10267 current_function_funcdef_no
);
10268 endname
= ggc_strdup (label_id
);
10270 add_loc_descr_to_loc_list (&list
, loc_descriptor (varloc
),
10271 node
->label
, endname
, secname
);
10274 /* Finally, add the location list to the DIE, and we are done. */
10275 add_AT_loc_list (die
, attr
, list
);
10279 /* Try to get some constant RTL for this decl, and use that as the value of
10282 rtl
= rtl_for_decl_location (decl
);
10283 if (rtl
&& (CONSTANT_P (rtl
) || GET_CODE (rtl
) == CONST_STRING
))
10285 add_const_value_attribute (die
, rtl
);
10289 /* If we have tried to generate the location otherwise, and it
10290 didn't work out (we wouldn't be here if we did), and we have a one entry
10291 location list, try generating a location from that. */
10292 if (loc_list
&& loc_list
->first
)
10294 node
= loc_list
->first
;
10295 descr
= loc_descriptor (NOTE_VAR_LOCATION (node
->var_loc_note
));
10298 add_AT_location_description (die
, attr
, descr
);
10303 /* We couldn't get any rtl, so try directly generating the location
10304 description from the tree. */
10305 descr
= loc_descriptor_from_tree (decl
);
10308 add_AT_location_description (die
, attr
, descr
);
10313 /* If we don't have a copy of this variable in memory for some reason (such
10314 as a C++ member constant that doesn't have an out-of-line definition),
10315 we should tell the debugger about the constant value. */
10318 tree_add_const_value_attribute (dw_die_ref var_die
, tree decl
)
10320 tree init
= DECL_INITIAL (decl
);
10321 tree type
= TREE_TYPE (decl
);
10324 if (TREE_READONLY (decl
) && ! TREE_THIS_VOLATILE (decl
) && init
)
10329 rtl
= rtl_for_decl_init (init
, type
);
10331 add_const_value_attribute (var_die
, rtl
);
10334 /* Convert the CFI instructions for the current function into a location
10335 list. This is used for DW_AT_frame_base when we targeting a dwarf2
10336 consumer that does not support the dwarf3 DW_OP_call_frame_cfa. */
10338 static dw_loc_list_ref
10339 convert_cfa_to_loc_list (void)
10342 dw_loc_list_ref list
, *list_tail
;
10344 dw_cfa_location last_cfa
, next_cfa
;
10345 const char *start_label
, *last_label
, *section
;
10347 fde
= &fde_table
[fde_table_in_use
- 1];
10349 section
= secname_for_decl (current_function_decl
);
10353 next_cfa
.reg
= INVALID_REGNUM
;
10354 next_cfa
.offset
= 0;
10355 next_cfa
.indirect
= 0;
10356 next_cfa
.base_offset
= 0;
10358 start_label
= fde
->dw_fde_begin
;
10360 /* ??? Bald assumption that the CIE opcode list does not contain
10361 advance opcodes. */
10362 for (cfi
= cie_cfi_head
; cfi
; cfi
= cfi
->dw_cfi_next
)
10363 lookup_cfa_1 (cfi
, &next_cfa
);
10365 last_cfa
= next_cfa
;
10366 last_label
= start_label
;
10368 for (cfi
= fde
->dw_fde_cfi
; cfi
; cfi
= cfi
->dw_cfi_next
)
10369 switch (cfi
->dw_cfi_opc
)
10371 case DW_CFA_advance_loc1
:
10372 case DW_CFA_advance_loc2
:
10373 case DW_CFA_advance_loc4
:
10374 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
10376 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
), start_label
,
10377 last_label
, section
, list
== NULL
);
10379 list_tail
= &(*list_tail
)->dw_loc_next
;
10380 last_cfa
= next_cfa
;
10381 start_label
= last_label
;
10383 last_label
= cfi
->dw_cfi_oprnd1
.dw_cfi_addr
;
10386 case DW_CFA_advance_loc
:
10387 /* The encoding is complex enough that we should never emit this. */
10388 case DW_CFA_remember_state
:
10389 case DW_CFA_restore_state
:
10390 /* We don't handle these two in this function. It would be possible
10391 if it were to be required. */
10392 gcc_unreachable ();
10395 lookup_cfa_1 (cfi
, &next_cfa
);
10399 if (!cfa_equal_p (&last_cfa
, &next_cfa
))
10401 *list_tail
= new_loc_list (build_cfa_loc (&last_cfa
), start_label
,
10402 last_label
, section
, list
== NULL
);
10403 list_tail
= &(*list_tail
)->dw_loc_next
;
10404 start_label
= last_label
;
10406 *list_tail
= new_loc_list (build_cfa_loc (&next_cfa
), start_label
,
10407 fde
->dw_fde_end
, section
, list
== NULL
);
10412 /* Compute a displacement from the "steady-state frame pointer" to
10413 the CFA, and store it in frame_pointer_cfa_offset. */
10416 compute_frame_pointer_to_cfa_displacement (void)
10418 HOST_WIDE_INT offset
;
10421 #ifdef FRAME_POINTER_CFA_OFFSET
10422 reg
= frame_pointer_rtx
;
10423 offset
= FRAME_POINTER_CFA_OFFSET (current_function_decl
);
10425 reg
= arg_pointer_rtx
;
10426 offset
= ARG_POINTER_CFA_OFFSET (current_function_decl
);
10429 elim
= eliminate_regs (reg
, VOIDmode
, NULL_RTX
);
10430 if (GET_CODE (elim
) == PLUS
)
10432 offset
+= INTVAL (XEXP (elim
, 1));
10433 elim
= XEXP (elim
, 0);
10435 gcc_assert (elim
== (frame_pointer_needed
? hard_frame_pointer_rtx
10436 : stack_pointer_rtx
));
10438 frame_pointer_cfa_offset
= -offset
;
10441 /* Generate a DW_AT_name attribute given some string value to be included as
10442 the value of the attribute. */
10445 add_name_attribute (dw_die_ref die
, const char *name_string
)
10447 if (name_string
!= NULL
&& *name_string
!= 0)
10449 if (demangle_name_func
)
10450 name_string
= (*demangle_name_func
) (name_string
);
10452 add_AT_string (die
, DW_AT_name
, name_string
);
10456 /* Generate a DW_AT_comp_dir attribute for DIE. */
10459 add_comp_dir_attribute (dw_die_ref die
)
10461 const char *wd
= get_src_pwd ();
10463 add_AT_string (die
, DW_AT_comp_dir
, wd
);
10466 /* Given a tree node describing an array bound (either lower or upper) output
10467 a representation for that bound. */
10470 add_bound_info (dw_die_ref subrange_die
, enum dwarf_attribute bound_attr
, tree bound
)
10472 switch (TREE_CODE (bound
))
10477 /* All fixed-bounds are represented by INTEGER_CST nodes. */
10479 if (! host_integerp (bound
, 0)
10480 || (bound_attr
== DW_AT_lower_bound
10481 && (((is_c_family () || is_java ()) && integer_zerop (bound
))
10482 || (is_fortran () && integer_onep (bound
)))))
10483 /* Use the default. */
10486 add_AT_unsigned (subrange_die
, bound_attr
, tree_low_cst (bound
, 0));
10491 case NON_LVALUE_EXPR
:
10492 case VIEW_CONVERT_EXPR
:
10493 add_bound_info (subrange_die
, bound_attr
, TREE_OPERAND (bound
, 0));
10503 dw_die_ref decl_die
= lookup_decl_die (bound
);
10505 /* ??? Can this happen, or should the variable have been bound
10506 first? Probably it can, since I imagine that we try to create
10507 the types of parameters in the order in which they exist in
10508 the list, and won't have created a forward reference to a
10509 later parameter. */
10510 if (decl_die
!= NULL
)
10511 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
10517 /* Otherwise try to create a stack operation procedure to
10518 evaluate the value of the array bound. */
10520 dw_die_ref ctx
, decl_die
;
10521 dw_loc_descr_ref loc
;
10523 loc
= loc_descriptor_from_tree (bound
);
10527 if (current_function_decl
== 0)
10528 ctx
= comp_unit_die
;
10530 ctx
= lookup_decl_die (current_function_decl
);
10532 decl_die
= new_die (DW_TAG_variable
, ctx
, bound
);
10533 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
10534 add_type_attribute (decl_die
, TREE_TYPE (bound
), 1, 0, ctx
);
10535 add_AT_loc (decl_die
, DW_AT_location
, loc
);
10537 add_AT_die_ref (subrange_die
, bound_attr
, decl_die
);
10543 /* Note that the block of subscript information for an array type also
10544 includes information about the element type of type given array type. */
10547 add_subscript_info (dw_die_ref type_die
, tree type
)
10549 #ifndef MIPS_DEBUGGING_INFO
10550 unsigned dimension_number
;
10553 dw_die_ref subrange_die
;
10555 /* The GNU compilers represent multidimensional array types as sequences of
10556 one dimensional array types whose element types are themselves array
10557 types. Here we squish that down, so that each multidimensional array
10558 type gets only one array_type DIE in the Dwarf debugging info. The draft
10559 Dwarf specification say that we are allowed to do this kind of
10560 compression in C (because there is no difference between an array or
10561 arrays and a multidimensional array in C) but for other source languages
10562 (e.g. Ada) we probably shouldn't do this. */
10564 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
10565 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
10566 We work around this by disabling this feature. See also
10567 gen_array_type_die. */
10568 #ifndef MIPS_DEBUGGING_INFO
10569 for (dimension_number
= 0;
10570 TREE_CODE (type
) == ARRAY_TYPE
;
10571 type
= TREE_TYPE (type
), dimension_number
++)
10574 tree domain
= TYPE_DOMAIN (type
);
10576 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
10577 and (in GNU C only) variable bounds. Handle all three forms
10579 subrange_die
= new_die (DW_TAG_subrange_type
, type_die
, NULL
);
10582 /* We have an array type with specified bounds. */
10583 lower
= TYPE_MIN_VALUE (domain
);
10584 upper
= TYPE_MAX_VALUE (domain
);
10586 /* Define the index type. */
10587 if (TREE_TYPE (domain
))
10589 /* ??? This is probably an Ada unnamed subrange type. Ignore the
10590 TREE_TYPE field. We can't emit debug info for this
10591 because it is an unnamed integral type. */
10592 if (TREE_CODE (domain
) == INTEGER_TYPE
10593 && TYPE_NAME (domain
) == NULL_TREE
10594 && TREE_CODE (TREE_TYPE (domain
)) == INTEGER_TYPE
10595 && TYPE_NAME (TREE_TYPE (domain
)) == NULL_TREE
)
10598 add_type_attribute (subrange_die
, TREE_TYPE (domain
), 0, 0,
10602 /* ??? If upper is NULL, the array has unspecified length,
10603 but it does have a lower bound. This happens with Fortran
10605 Since the debugger is definitely going to need to know N
10606 to produce useful results, go ahead and output the lower
10607 bound solo, and hope the debugger can cope. */
10609 add_bound_info (subrange_die
, DW_AT_lower_bound
, lower
);
10611 add_bound_info (subrange_die
, DW_AT_upper_bound
, upper
);
10614 /* Otherwise we have an array type with an unspecified length. The
10615 DWARF-2 spec does not say how to handle this; let's just leave out the
10621 add_byte_size_attribute (dw_die_ref die
, tree tree_node
)
10625 switch (TREE_CODE (tree_node
))
10630 case ENUMERAL_TYPE
:
10633 case QUAL_UNION_TYPE
:
10634 size
= int_size_in_bytes (tree_node
);
10637 /* For a data member of a struct or union, the DW_AT_byte_size is
10638 generally given as the number of bytes normally allocated for an
10639 object of the *declared* type of the member itself. This is true
10640 even for bit-fields. */
10641 size
= simple_type_size_in_bits (field_type (tree_node
)) / BITS_PER_UNIT
;
10644 gcc_unreachable ();
10647 /* Note that `size' might be -1 when we get to this point. If it is, that
10648 indicates that the byte size of the entity in question is variable. We
10649 have no good way of expressing this fact in Dwarf at the present time,
10650 so just let the -1 pass on through. */
10651 add_AT_unsigned (die
, DW_AT_byte_size
, size
);
10654 /* For a FIELD_DECL node which represents a bit-field, output an attribute
10655 which specifies the distance in bits from the highest order bit of the
10656 "containing object" for the bit-field to the highest order bit of the
10659 For any given bit-field, the "containing object" is a hypothetical object
10660 (of some integral or enum type) within which the given bit-field lives. The
10661 type of this hypothetical "containing object" is always the same as the
10662 declared type of the individual bit-field itself. The determination of the
10663 exact location of the "containing object" for a bit-field is rather
10664 complicated. It's handled by the `field_byte_offset' function (above).
10666 Note that it is the size (in bytes) of the hypothetical "containing object"
10667 which will be given in the DW_AT_byte_size attribute for this bit-field.
10668 (See `byte_size_attribute' above). */
10671 add_bit_offset_attribute (dw_die_ref die
, tree decl
)
10673 HOST_WIDE_INT object_offset_in_bytes
= field_byte_offset (decl
);
10674 tree type
= DECL_BIT_FIELD_TYPE (decl
);
10675 HOST_WIDE_INT bitpos_int
;
10676 HOST_WIDE_INT highest_order_object_bit_offset
;
10677 HOST_WIDE_INT highest_order_field_bit_offset
;
10678 HOST_WIDE_INT
unsigned bit_offset
;
10680 /* Must be a field and a bit field. */
10681 gcc_assert (type
&& TREE_CODE (decl
) == FIELD_DECL
);
10683 /* We can't yet handle bit-fields whose offsets are variable, so if we
10684 encounter such things, just return without generating any attribute
10685 whatsoever. Likewise for variable or too large size. */
10686 if (! host_integerp (bit_position (decl
), 0)
10687 || ! host_integerp (DECL_SIZE (decl
), 1))
10690 bitpos_int
= int_bit_position (decl
);
10692 /* Note that the bit offset is always the distance (in bits) from the
10693 highest-order bit of the "containing object" to the highest-order bit of
10694 the bit-field itself. Since the "high-order end" of any object or field
10695 is different on big-endian and little-endian machines, the computation
10696 below must take account of these differences. */
10697 highest_order_object_bit_offset
= object_offset_in_bytes
* BITS_PER_UNIT
;
10698 highest_order_field_bit_offset
= bitpos_int
;
10700 if (! BYTES_BIG_ENDIAN
)
10702 highest_order_field_bit_offset
+= tree_low_cst (DECL_SIZE (decl
), 0);
10703 highest_order_object_bit_offset
+= simple_type_size_in_bits (type
);
10707 = (! BYTES_BIG_ENDIAN
10708 ? highest_order_object_bit_offset
- highest_order_field_bit_offset
10709 : highest_order_field_bit_offset
- highest_order_object_bit_offset
);
10711 add_AT_unsigned (die
, DW_AT_bit_offset
, bit_offset
);
10714 /* For a FIELD_DECL node which represents a bit field, output an attribute
10715 which specifies the length in bits of the given field. */
10718 add_bit_size_attribute (dw_die_ref die
, tree decl
)
10720 /* Must be a field and a bit field. */
10721 gcc_assert (TREE_CODE (decl
) == FIELD_DECL
10722 && DECL_BIT_FIELD_TYPE (decl
));
10724 if (host_integerp (DECL_SIZE (decl
), 1))
10725 add_AT_unsigned (die
, DW_AT_bit_size
, tree_low_cst (DECL_SIZE (decl
), 1));
10728 /* If the compiled language is ANSI C, then add a 'prototyped'
10729 attribute, if arg types are given for the parameters of a function. */
10732 add_prototyped_attribute (dw_die_ref die
, tree func_type
)
10734 if (get_AT_unsigned (comp_unit_die
, DW_AT_language
) == DW_LANG_C89
10735 && TYPE_ARG_TYPES (func_type
) != NULL
)
10736 add_AT_flag (die
, DW_AT_prototyped
, 1);
10739 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
10740 by looking in either the type declaration or object declaration
10744 add_abstract_origin_attribute (dw_die_ref die
, tree origin
)
10746 dw_die_ref origin_die
= NULL
;
10748 if (TREE_CODE (origin
) != FUNCTION_DECL
)
10750 /* We may have gotten separated from the block for the inlined
10751 function, if we're in an exception handler or some such; make
10752 sure that the abstract function has been written out.
10754 Doing this for nested functions is wrong, however; functions are
10755 distinct units, and our context might not even be inline. */
10759 fn
= TYPE_STUB_DECL (fn
);
10761 fn
= decl_function_context (fn
);
10763 dwarf2out_abstract_function (fn
);
10766 if (DECL_P (origin
))
10767 origin_die
= lookup_decl_die (origin
);
10768 else if (TYPE_P (origin
))
10769 origin_die
= lookup_type_die (origin
);
10771 /* XXX: Functions that are never lowered don't always have correct block
10772 trees (in the case of java, they simply have no block tree, in some other
10773 languages). For these functions, there is nothing we can really do to
10774 output correct debug info for inlined functions in all cases. Rather
10775 than die, we'll just produce deficient debug info now, in that we will
10776 have variables without a proper abstract origin. In the future, when all
10777 functions are lowered, we should re-add a gcc_assert (origin_die)
10781 add_AT_die_ref (die
, DW_AT_abstract_origin
, origin_die
);
10784 /* We do not currently support the pure_virtual attribute. */
10787 add_pure_or_virtual_attribute (dw_die_ref die
, tree func_decl
)
10789 if (DECL_VINDEX (func_decl
))
10791 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
10793 if (host_integerp (DECL_VINDEX (func_decl
), 0))
10794 add_AT_loc (die
, DW_AT_vtable_elem_location
,
10795 new_loc_descr (DW_OP_constu
,
10796 tree_low_cst (DECL_VINDEX (func_decl
), 0),
10799 /* GNU extension: Record what type this method came from originally. */
10800 if (debug_info_level
> DINFO_LEVEL_TERSE
)
10801 add_AT_die_ref (die
, DW_AT_containing_type
,
10802 lookup_type_die (DECL_CONTEXT (func_decl
)));
10806 /* Add source coordinate attributes for the given decl. */
10809 add_src_coords_attributes (dw_die_ref die
, tree decl
)
10811 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
10812 unsigned file_index
= lookup_filename (s
.file
);
10814 add_AT_unsigned (die
, DW_AT_decl_file
, file_index
);
10815 add_AT_unsigned (die
, DW_AT_decl_line
, s
.line
);
10818 /* Add a DW_AT_name attribute and source coordinate attribute for the
10819 given decl, but only if it actually has a name. */
10822 add_name_and_src_coords_attributes (dw_die_ref die
, tree decl
)
10826 decl_name
= DECL_NAME (decl
);
10827 if (decl_name
!= NULL
&& IDENTIFIER_POINTER (decl_name
) != NULL
)
10829 add_name_attribute (die
, dwarf2_name (decl
, 0));
10830 if (! DECL_ARTIFICIAL (decl
))
10831 add_src_coords_attributes (die
, decl
);
10833 if ((TREE_CODE (decl
) == FUNCTION_DECL
|| TREE_CODE (decl
) == VAR_DECL
)
10834 && TREE_PUBLIC (decl
)
10835 && DECL_ASSEMBLER_NAME (decl
) != DECL_NAME (decl
)
10836 && !DECL_ABSTRACT (decl
)
10837 && !(TREE_CODE (decl
) == VAR_DECL
&& DECL_REGISTER (decl
)))
10838 add_AT_string (die
, DW_AT_MIPS_linkage_name
,
10839 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl
)));
10842 #ifdef VMS_DEBUGGING_INFO
10843 /* Get the function's name, as described by its RTL. This may be different
10844 from the DECL_NAME name used in the source file. */
10845 if (TREE_CODE (decl
) == FUNCTION_DECL
&& TREE_ASM_WRITTEN (decl
))
10847 add_AT_addr (die
, DW_AT_VMS_rtnbeg_pd_address
,
10848 XEXP (DECL_RTL (decl
), 0));
10849 VEC_safe_push (tree
, gc
, used_rtx_array
, XEXP (DECL_RTL (decl
), 0));
10854 /* Push a new declaration scope. */
10857 push_decl_scope (tree scope
)
10859 VEC_safe_push (tree
, gc
, decl_scope_table
, scope
);
10862 /* Pop a declaration scope. */
10865 pop_decl_scope (void)
10867 VEC_pop (tree
, decl_scope_table
);
10870 /* Return the DIE for the scope that immediately contains this type.
10871 Non-named types get global scope. Named types nested in other
10872 types get their containing scope if it's open, or global scope
10873 otherwise. All other types (i.e. function-local named types) get
10874 the current active scope. */
10877 scope_die_for (tree t
, dw_die_ref context_die
)
10879 dw_die_ref scope_die
= NULL
;
10880 tree containing_scope
;
10883 /* Non-types always go in the current scope. */
10884 gcc_assert (TYPE_P (t
));
10886 containing_scope
= TYPE_CONTEXT (t
);
10888 /* Use the containing namespace if it was passed in (for a declaration). */
10889 if (containing_scope
&& TREE_CODE (containing_scope
) == NAMESPACE_DECL
)
10891 if (context_die
== lookup_decl_die (containing_scope
))
10894 containing_scope
= NULL_TREE
;
10897 /* Ignore function type "scopes" from the C frontend. They mean that
10898 a tagged type is local to a parmlist of a function declarator, but
10899 that isn't useful to DWARF. */
10900 if (containing_scope
&& TREE_CODE (containing_scope
) == FUNCTION_TYPE
)
10901 containing_scope
= NULL_TREE
;
10903 if (containing_scope
== NULL_TREE
)
10904 scope_die
= comp_unit_die
;
10905 else if (TYPE_P (containing_scope
))
10907 /* For types, we can just look up the appropriate DIE. But
10908 first we check to see if we're in the middle of emitting it
10909 so we know where the new DIE should go. */
10910 for (i
= VEC_length (tree
, decl_scope_table
) - 1; i
>= 0; --i
)
10911 if (VEC_index (tree
, decl_scope_table
, i
) == containing_scope
)
10916 gcc_assert (debug_info_level
<= DINFO_LEVEL_TERSE
10917 || TREE_ASM_WRITTEN (containing_scope
));
10919 /* If none of the current dies are suitable, we get file scope. */
10920 scope_die
= comp_unit_die
;
10923 scope_die
= lookup_type_die (containing_scope
);
10926 scope_die
= context_die
;
10931 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
10934 local_scope_p (dw_die_ref context_die
)
10936 for (; context_die
; context_die
= context_die
->die_parent
)
10937 if (context_die
->die_tag
== DW_TAG_inlined_subroutine
10938 || context_die
->die_tag
== DW_TAG_subprogram
)
10944 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
10945 whether or not to treat a DIE in this context as a declaration. */
10948 class_or_namespace_scope_p (dw_die_ref context_die
)
10950 return (context_die
10951 && (context_die
->die_tag
== DW_TAG_structure_type
10952 || context_die
->die_tag
== DW_TAG_union_type
10953 || context_die
->die_tag
== DW_TAG_namespace
));
10956 /* Many forms of DIEs require a "type description" attribute. This
10957 routine locates the proper "type descriptor" die for the type given
10958 by 'type', and adds a DW_AT_type attribute below the given die. */
10961 add_type_attribute (dw_die_ref object_die
, tree type
, int decl_const
,
10962 int decl_volatile
, dw_die_ref context_die
)
10964 enum tree_code code
= TREE_CODE (type
);
10965 dw_die_ref type_die
= NULL
;
10967 /* ??? If this type is an unnamed subrange type of an integral or
10968 floating-point type, use the inner type. This is because we have no
10969 support for unnamed types in base_type_die. This can happen if this is
10970 an Ada subrange type. Correct solution is emit a subrange type die. */
10971 if ((code
== INTEGER_TYPE
|| code
== REAL_TYPE
)
10972 && TREE_TYPE (type
) != 0 && TYPE_NAME (type
) == 0)
10973 type
= TREE_TYPE (type
), code
= TREE_CODE (type
);
10975 if (code
== ERROR_MARK
10976 /* Handle a special case. For functions whose return type is void, we
10977 generate *no* type attribute. (Note that no object may have type
10978 `void', so this only applies to function return types). */
10979 || code
== VOID_TYPE
)
10982 type_die
= modified_type_die (type
,
10983 decl_const
|| TYPE_READONLY (type
),
10984 decl_volatile
|| TYPE_VOLATILE (type
),
10987 if (type_die
!= NULL
)
10988 add_AT_die_ref (object_die
, DW_AT_type
, type_die
);
10991 /* Given an object die, add the calling convention attribute for the
10992 function call type. */
10994 add_calling_convention_attribute (dw_die_ref subr_die
, tree type
)
10996 enum dwarf_calling_convention value
= DW_CC_normal
;
10998 value
= targetm
.dwarf_calling_convention (type
);
11000 /* Only add the attribute if the backend requests it, and
11001 is not DW_CC_normal. */
11002 if (value
&& (value
!= DW_CC_normal
))
11003 add_AT_unsigned (subr_die
, DW_AT_calling_convention
, value
);
11006 /* Given a tree pointer to a struct, class, union, or enum type node, return
11007 a pointer to the (string) tag name for the given type, or zero if the type
11008 was declared without a tag. */
11010 static const char *
11011 type_tag (tree type
)
11013 const char *name
= 0;
11015 if (TYPE_NAME (type
) != 0)
11019 /* Find the IDENTIFIER_NODE for the type name. */
11020 if (TREE_CODE (TYPE_NAME (type
)) == IDENTIFIER_NODE
)
11021 t
= TYPE_NAME (type
);
11023 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
11024 a TYPE_DECL node, regardless of whether or not a `typedef' was
11026 else if (TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
11027 && ! DECL_IGNORED_P (TYPE_NAME (type
)))
11028 t
= DECL_NAME (TYPE_NAME (type
));
11030 /* Now get the name as a string, or invent one. */
11032 name
= IDENTIFIER_POINTER (t
);
11035 return (name
== 0 || *name
== '\0') ? 0 : name
;
11038 /* Return the type associated with a data member, make a special check
11039 for bit field types. */
11042 member_declared_type (tree member
)
11044 return (DECL_BIT_FIELD_TYPE (member
)
11045 ? DECL_BIT_FIELD_TYPE (member
) : TREE_TYPE (member
));
11048 /* Get the decl's label, as described by its RTL. This may be different
11049 from the DECL_NAME name used in the source file. */
11052 static const char *
11053 decl_start_label (tree decl
)
11056 const char *fnname
;
11058 x
= DECL_RTL (decl
);
11059 gcc_assert (MEM_P (x
));
11062 gcc_assert (GET_CODE (x
) == SYMBOL_REF
);
11064 fnname
= XSTR (x
, 0);
11069 /* These routines generate the internal representation of the DIE's for
11070 the compilation unit. Debugging information is collected by walking
11071 the declaration trees passed in from dwarf2out_decl(). */
11074 gen_array_type_die (tree type
, dw_die_ref context_die
)
11076 dw_die_ref scope_die
= scope_die_for (type
, context_die
);
11077 dw_die_ref array_die
;
11080 /* ??? The SGI dwarf reader fails for array of array of enum types unless
11081 the inner array type comes before the outer array type. Thus we must
11082 call gen_type_die before we call new_die. See below also. */
11083 #ifdef MIPS_DEBUGGING_INFO
11084 gen_type_die (TREE_TYPE (type
), context_die
);
11087 array_die
= new_die (DW_TAG_array_type
, scope_die
, type
);
11088 add_name_attribute (array_die
, type_tag (type
));
11089 equate_type_number_to_die (type
, array_die
);
11091 if (TREE_CODE (type
) == VECTOR_TYPE
)
11093 /* The frontend feeds us a representation for the vector as a struct
11094 containing an array. Pull out the array type. */
11095 type
= TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type
)));
11096 add_AT_flag (array_die
, DW_AT_GNU_vector
, 1);
11100 /* We default the array ordering. SDB will probably do
11101 the right things even if DW_AT_ordering is not present. It's not even
11102 an issue until we start to get into multidimensional arrays anyway. If
11103 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
11104 then we'll have to put the DW_AT_ordering attribute back in. (But if
11105 and when we find out that we need to put these in, we will only do so
11106 for multidimensional arrays. */
11107 add_AT_unsigned (array_die
, DW_AT_ordering
, DW_ORD_row_major
);
11110 #ifdef MIPS_DEBUGGING_INFO
11111 /* The SGI compilers handle arrays of unknown bound by setting
11112 AT_declaration and not emitting any subrange DIEs. */
11113 if (! TYPE_DOMAIN (type
))
11114 add_AT_flag (array_die
, DW_AT_declaration
, 1);
11117 add_subscript_info (array_die
, type
);
11119 /* Add representation of the type of the elements of this array type. */
11120 element_type
= TREE_TYPE (type
);
11122 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
11123 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
11124 We work around this by disabling this feature. See also
11125 add_subscript_info. */
11126 #ifndef MIPS_DEBUGGING_INFO
11127 while (TREE_CODE (element_type
) == ARRAY_TYPE
)
11128 element_type
= TREE_TYPE (element_type
);
11130 gen_type_die (element_type
, context_die
);
11133 add_type_attribute (array_die
, element_type
, 0, 0, context_die
);
11138 gen_entry_point_die (tree decl
, dw_die_ref context_die
)
11140 tree origin
= decl_ultimate_origin (decl
);
11141 dw_die_ref decl_die
= new_die (DW_TAG_entry_point
, context_die
, decl
);
11143 if (origin
!= NULL
)
11144 add_abstract_origin_attribute (decl_die
, origin
);
11147 add_name_and_src_coords_attributes (decl_die
, decl
);
11148 add_type_attribute (decl_die
, TREE_TYPE (TREE_TYPE (decl
)),
11149 0, 0, context_die
);
11152 if (DECL_ABSTRACT (decl
))
11153 equate_decl_number_to_die (decl
, decl_die
);
11155 add_AT_lbl_id (decl_die
, DW_AT_low_pc
, decl_start_label (decl
));
11159 /* Walk through the list of incomplete types again, trying once more to
11160 emit full debugging info for them. */
11163 retry_incomplete_types (void)
11167 for (i
= VEC_length (tree
, incomplete_types
) - 1; i
>= 0; i
--)
11168 gen_type_die (VEC_index (tree
, incomplete_types
, i
), comp_unit_die
);
11171 /* Generate a DIE to represent an inlined instance of an enumeration type. */
11174 gen_inlined_enumeration_type_die (tree type
, dw_die_ref context_die
)
11176 dw_die_ref type_die
= new_die (DW_TAG_enumeration_type
, context_die
, type
);
11178 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11179 be incomplete and such types are not marked. */
11180 add_abstract_origin_attribute (type_die
, type
);
11183 /* Generate a DIE to represent an inlined instance of a structure type. */
11186 gen_inlined_structure_type_die (tree type
, dw_die_ref context_die
)
11188 dw_die_ref type_die
= new_die (DW_TAG_structure_type
, context_die
, type
);
11190 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11191 be incomplete and such types are not marked. */
11192 add_abstract_origin_attribute (type_die
, type
);
11195 /* Generate a DIE to represent an inlined instance of a union type. */
11198 gen_inlined_union_type_die (tree type
, dw_die_ref context_die
)
11200 dw_die_ref type_die
= new_die (DW_TAG_union_type
, context_die
, type
);
11202 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11203 be incomplete and such types are not marked. */
11204 add_abstract_origin_attribute (type_die
, type
);
11207 /* Generate a DIE to represent an enumeration type. Note that these DIEs
11208 include all of the information about the enumeration values also. Each
11209 enumerated type name/value is listed as a child of the enumerated type
11213 gen_enumeration_type_die (tree type
, dw_die_ref context_die
)
11215 dw_die_ref type_die
= lookup_type_die (type
);
11217 if (type_die
== NULL
)
11219 type_die
= new_die (DW_TAG_enumeration_type
,
11220 scope_die_for (type
, context_die
), type
);
11221 equate_type_number_to_die (type
, type_die
);
11222 add_name_attribute (type_die
, type_tag (type
));
11224 else if (! TYPE_SIZE (type
))
11227 remove_AT (type_die
, DW_AT_declaration
);
11229 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
11230 given enum type is incomplete, do not generate the DW_AT_byte_size
11231 attribute or the DW_AT_element_list attribute. */
11232 if (TYPE_SIZE (type
))
11236 TREE_ASM_WRITTEN (type
) = 1;
11237 add_byte_size_attribute (type_die
, type
);
11238 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
11239 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
11241 /* If the first reference to this type was as the return type of an
11242 inline function, then it may not have a parent. Fix this now. */
11243 if (type_die
->die_parent
== NULL
)
11244 add_child_die (scope_die_for (type
, context_die
), type_die
);
11246 for (link
= TYPE_VALUES (type
);
11247 link
!= NULL
; link
= TREE_CHAIN (link
))
11249 dw_die_ref enum_die
= new_die (DW_TAG_enumerator
, type_die
, link
);
11250 tree value
= TREE_VALUE (link
);
11252 add_name_attribute (enum_die
,
11253 IDENTIFIER_POINTER (TREE_PURPOSE (link
)));
11255 if (host_integerp (value
, TYPE_UNSIGNED (TREE_TYPE (value
))))
11256 /* DWARF2 does not provide a way of indicating whether or
11257 not enumeration constants are signed or unsigned. GDB
11258 always assumes the values are signed, so we output all
11259 values as if they were signed. That means that
11260 enumeration constants with very large unsigned values
11261 will appear to have negative values in the debugger. */
11262 add_AT_int (enum_die
, DW_AT_const_value
,
11263 tree_low_cst (value
, tree_int_cst_sgn (value
) > 0));
11267 add_AT_flag (type_die
, DW_AT_declaration
, 1);
11272 /* Generate a DIE to represent either a real live formal parameter decl or to
11273 represent just the type of some formal parameter position in some function
11276 Note that this routine is a bit unusual because its argument may be a
11277 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
11278 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
11279 node. If it's the former then this function is being called to output a
11280 DIE to represent a formal parameter object (or some inlining thereof). If
11281 it's the latter, then this function is only being called to output a
11282 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
11283 argument type of some subprogram type. */
11286 gen_formal_parameter_die (tree node
, dw_die_ref context_die
)
11288 dw_die_ref parm_die
11289 = new_die (DW_TAG_formal_parameter
, context_die
, node
);
11292 switch (TREE_CODE_CLASS (TREE_CODE (node
)))
11294 case tcc_declaration
:
11295 origin
= decl_ultimate_origin (node
);
11296 if (origin
!= NULL
)
11297 add_abstract_origin_attribute (parm_die
, origin
);
11300 add_name_and_src_coords_attributes (parm_die
, node
);
11301 add_type_attribute (parm_die
, TREE_TYPE (node
),
11302 TREE_READONLY (node
),
11303 TREE_THIS_VOLATILE (node
),
11305 if (DECL_ARTIFICIAL (node
))
11306 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
11309 equate_decl_number_to_die (node
, parm_die
);
11310 if (! DECL_ABSTRACT (node
))
11311 add_location_or_const_value_attribute (parm_die
, node
, DW_AT_location
);
11316 /* We were called with some kind of a ..._TYPE node. */
11317 add_type_attribute (parm_die
, node
, 0, 0, context_die
);
11321 gcc_unreachable ();
11327 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
11328 at the end of an (ANSI prototyped) formal parameters list. */
11331 gen_unspecified_parameters_die (tree decl_or_type
, dw_die_ref context_die
)
11333 new_die (DW_TAG_unspecified_parameters
, context_die
, decl_or_type
);
11336 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
11337 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
11338 parameters as specified in some function type specification (except for
11339 those which appear as part of a function *definition*). */
11342 gen_formal_types_die (tree function_or_method_type
, dw_die_ref context_die
)
11345 tree formal_type
= NULL
;
11346 tree first_parm_type
;
11349 if (TREE_CODE (function_or_method_type
) == FUNCTION_DECL
)
11351 arg
= DECL_ARGUMENTS (function_or_method_type
);
11352 function_or_method_type
= TREE_TYPE (function_or_method_type
);
11357 first_parm_type
= TYPE_ARG_TYPES (function_or_method_type
);
11359 /* Make our first pass over the list of formal parameter types and output a
11360 DW_TAG_formal_parameter DIE for each one. */
11361 for (link
= first_parm_type
; link
; )
11363 dw_die_ref parm_die
;
11365 formal_type
= TREE_VALUE (link
);
11366 if (formal_type
== void_type_node
)
11369 /* Output a (nameless) DIE to represent the formal parameter itself. */
11370 parm_die
= gen_formal_parameter_die (formal_type
, context_die
);
11371 if ((TREE_CODE (function_or_method_type
) == METHOD_TYPE
11372 && link
== first_parm_type
)
11373 || (arg
&& DECL_ARTIFICIAL (arg
)))
11374 add_AT_flag (parm_die
, DW_AT_artificial
, 1);
11376 link
= TREE_CHAIN (link
);
11378 arg
= TREE_CHAIN (arg
);
11381 /* If this function type has an ellipsis, add a
11382 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
11383 if (formal_type
!= void_type_node
)
11384 gen_unspecified_parameters_die (function_or_method_type
, context_die
);
11386 /* Make our second (and final) pass over the list of formal parameter types
11387 and output DIEs to represent those types (as necessary). */
11388 for (link
= TYPE_ARG_TYPES (function_or_method_type
);
11389 link
&& TREE_VALUE (link
);
11390 link
= TREE_CHAIN (link
))
11391 gen_type_die (TREE_VALUE (link
), context_die
);
11394 /* We want to generate the DIE for TYPE so that we can generate the
11395 die for MEMBER, which has been defined; we will need to refer back
11396 to the member declaration nested within TYPE. If we're trying to
11397 generate minimal debug info for TYPE, processing TYPE won't do the
11398 trick; we need to attach the member declaration by hand. */
11401 gen_type_die_for_member (tree type
, tree member
, dw_die_ref context_die
)
11403 gen_type_die (type
, context_die
);
11405 /* If we're trying to avoid duplicate debug info, we may not have
11406 emitted the member decl for this function. Emit it now. */
11407 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))
11408 && ! lookup_decl_die (member
))
11410 dw_die_ref type_die
;
11411 gcc_assert (!decl_ultimate_origin (member
));
11413 push_decl_scope (type
);
11414 type_die
= lookup_type_die (type
);
11415 if (TREE_CODE (member
) == FUNCTION_DECL
)
11416 gen_subprogram_die (member
, type_die
);
11417 else if (TREE_CODE (member
) == FIELD_DECL
)
11419 /* Ignore the nameless fields that are used to skip bits but handle
11420 C++ anonymous unions and structs. */
11421 if (DECL_NAME (member
) != NULL_TREE
11422 || TREE_CODE (TREE_TYPE (member
)) == UNION_TYPE
11423 || TREE_CODE (TREE_TYPE (member
)) == RECORD_TYPE
)
11425 gen_type_die (member_declared_type (member
), type_die
);
11426 gen_field_die (member
, type_die
);
11430 gen_variable_die (member
, type_die
);
11436 /* Generate the DWARF2 info for the "abstract" instance of a function which we
11437 may later generate inlined and/or out-of-line instances of. */
11440 dwarf2out_abstract_function (tree decl
)
11442 dw_die_ref old_die
;
11445 int was_abstract
= DECL_ABSTRACT (decl
);
11447 /* Make sure we have the actual abstract inline, not a clone. */
11448 decl
= DECL_ORIGIN (decl
);
11450 old_die
= lookup_decl_die (decl
);
11451 if (old_die
&& get_AT (old_die
, DW_AT_inline
))
11452 /* We've already generated the abstract instance. */
11455 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
11456 we don't get confused by DECL_ABSTRACT. */
11457 if (debug_info_level
> DINFO_LEVEL_TERSE
)
11459 context
= decl_class_context (decl
);
11461 gen_type_die_for_member
11462 (context
, decl
, decl_function_context (decl
) ? NULL
: comp_unit_die
);
11465 /* Pretend we've just finished compiling this function. */
11466 save_fn
= current_function_decl
;
11467 current_function_decl
= decl
;
11469 set_decl_abstract_flags (decl
, 1);
11470 dwarf2out_decl (decl
);
11471 if (! was_abstract
)
11472 set_decl_abstract_flags (decl
, 0);
11474 current_function_decl
= save_fn
;
11477 /* Generate a DIE to represent a declared function (either file-scope or
11481 gen_subprogram_die (tree decl
, dw_die_ref context_die
)
11483 char label_id
[MAX_ARTIFICIAL_LABEL_BYTES
];
11484 tree origin
= decl_ultimate_origin (decl
);
11485 dw_die_ref subr_die
;
11488 dw_die_ref old_die
= lookup_decl_die (decl
);
11489 int declaration
= (current_function_decl
!= decl
11490 || class_or_namespace_scope_p (context_die
));
11492 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
11493 started to generate the abstract instance of an inline, decided to output
11494 its containing class, and proceeded to emit the declaration of the inline
11495 from the member list for the class. If so, DECLARATION takes priority;
11496 we'll get back to the abstract instance when done with the class. */
11498 /* The class-scope declaration DIE must be the primary DIE. */
11499 if (origin
&& declaration
&& class_or_namespace_scope_p (context_die
))
11502 gcc_assert (!old_die
);
11505 /* Now that the C++ front end lazily declares artificial member fns, we
11506 might need to retrofit the declaration into its class. */
11507 if (!declaration
&& !origin
&& !old_die
11508 && DECL_CONTEXT (decl
) && TYPE_P (DECL_CONTEXT (decl
))
11509 && !class_or_namespace_scope_p (context_die
)
11510 && debug_info_level
> DINFO_LEVEL_TERSE
)
11511 old_die
= force_decl_die (decl
);
11513 if (origin
!= NULL
)
11515 gcc_assert (!declaration
|| local_scope_p (context_die
));
11517 /* Fixup die_parent for the abstract instance of a nested
11518 inline function. */
11519 if (old_die
&& old_die
->die_parent
== NULL
)
11520 add_child_die (context_die
, old_die
);
11522 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
11523 add_abstract_origin_attribute (subr_die
, origin
);
11527 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
11528 unsigned file_index
= lookup_filename (s
.file
);
11530 if (!get_AT_flag (old_die
, DW_AT_declaration
)
11531 /* We can have a normal definition following an inline one in the
11532 case of redefinition of GNU C extern inlines.
11533 It seems reasonable to use AT_specification in this case. */
11534 && !get_AT (old_die
, DW_AT_inline
))
11536 /* Detect and ignore this case, where we are trying to output
11537 something we have already output. */
11541 /* If the definition comes from the same place as the declaration,
11542 maybe use the old DIE. We always want the DIE for this function
11543 that has the *_pc attributes to be under comp_unit_die so the
11544 debugger can find it. We also need to do this for abstract
11545 instances of inlines, since the spec requires the out-of-line copy
11546 to have the same parent. For local class methods, this doesn't
11547 apply; we just use the old DIE. */
11548 if ((old_die
->die_parent
== comp_unit_die
|| context_die
== NULL
)
11549 && (DECL_ARTIFICIAL (decl
)
11550 || (get_AT_unsigned (old_die
, DW_AT_decl_file
) == file_index
11551 && (get_AT_unsigned (old_die
, DW_AT_decl_line
)
11552 == (unsigned) s
.line
))))
11554 subr_die
= old_die
;
11556 /* Clear out the declaration attribute and the formal parameters.
11557 Do not remove all children, because it is possible that this
11558 declaration die was forced using force_decl_die(). In such
11559 cases die that forced declaration die (e.g. TAG_imported_module)
11560 is one of the children that we do not want to remove. */
11561 remove_AT (subr_die
, DW_AT_declaration
);
11562 remove_child_TAG (subr_die
, DW_TAG_formal_parameter
);
11566 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
11567 add_AT_specification (subr_die
, old_die
);
11568 if (get_AT_unsigned (old_die
, DW_AT_decl_file
) != file_index
)
11569 add_AT_unsigned (subr_die
, DW_AT_decl_file
, file_index
);
11570 if (get_AT_unsigned (old_die
, DW_AT_decl_line
)
11571 != (unsigned) s
.line
)
11573 (subr_die
, DW_AT_decl_line
, s
.line
);
11578 subr_die
= new_die (DW_TAG_subprogram
, context_die
, decl
);
11580 if (TREE_PUBLIC (decl
))
11581 add_AT_flag (subr_die
, DW_AT_external
, 1);
11583 add_name_and_src_coords_attributes (subr_die
, decl
);
11584 if (debug_info_level
> DINFO_LEVEL_TERSE
)
11586 add_prototyped_attribute (subr_die
, TREE_TYPE (decl
));
11587 add_type_attribute (subr_die
, TREE_TYPE (TREE_TYPE (decl
)),
11588 0, 0, context_die
);
11591 add_pure_or_virtual_attribute (subr_die
, decl
);
11592 if (DECL_ARTIFICIAL (decl
))
11593 add_AT_flag (subr_die
, DW_AT_artificial
, 1);
11595 if (TREE_PROTECTED (decl
))
11596 add_AT_unsigned (subr_die
, DW_AT_accessibility
, DW_ACCESS_protected
);
11597 else if (TREE_PRIVATE (decl
))
11598 add_AT_unsigned (subr_die
, DW_AT_accessibility
, DW_ACCESS_private
);
11603 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
11605 add_AT_flag (subr_die
, DW_AT_declaration
, 1);
11607 /* The first time we see a member function, it is in the context of
11608 the class to which it belongs. We make sure of this by emitting
11609 the class first. The next time is the definition, which is
11610 handled above. The two may come from the same source text.
11612 Note that force_decl_die() forces function declaration die. It is
11613 later reused to represent definition. */
11614 equate_decl_number_to_die (decl
, subr_die
);
11617 else if (DECL_ABSTRACT (decl
))
11619 if (DECL_DECLARED_INLINE_P (decl
))
11621 if (cgraph_function_possibly_inlined_p (decl
))
11622 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_inlined
);
11624 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_declared_not_inlined
);
11628 if (cgraph_function_possibly_inlined_p (decl
))
11629 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_inlined
);
11631 add_AT_unsigned (subr_die
, DW_AT_inline
, DW_INL_not_inlined
);
11634 equate_decl_number_to_die (decl
, subr_die
);
11636 else if (!DECL_EXTERNAL (decl
))
11638 if (!old_die
|| !get_AT (old_die
, DW_AT_inline
))
11639 equate_decl_number_to_die (decl
, subr_die
);
11641 if (!flag_reorder_blocks_and_partition
)
11643 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_BEGIN_LABEL
,
11644 current_function_funcdef_no
);
11645 add_AT_lbl_id (subr_die
, DW_AT_low_pc
, label_id
);
11646 ASM_GENERATE_INTERNAL_LABEL (label_id
, FUNC_END_LABEL
,
11647 current_function_funcdef_no
);
11648 add_AT_lbl_id (subr_die
, DW_AT_high_pc
, label_id
);
11650 add_pubname (decl
, subr_die
);
11651 add_arange (decl
, subr_die
);
11654 { /* Do nothing for now; maybe need to duplicate die, one for
11655 hot section and ond for cold section, then use the hot/cold
11656 section begin/end labels to generate the aranges... */
11658 add_AT_lbl_id (subr_die, DW_AT_low_pc, hot_section_label);
11659 add_AT_lbl_id (subr_die, DW_AT_high_pc, hot_section_end_label);
11660 add_AT_lbl_id (subr_die, DW_AT_lo_user, unlikely_section_label);
11661 add_AT_lbl_id (subr_die, DW_AT_hi_user, cold_section_end_label);
11663 add_pubname (decl, subr_die);
11664 add_arange (decl, subr_die);
11665 add_arange (decl, subr_die);
11669 #ifdef MIPS_DEBUGGING_INFO
11670 /* Add a reference to the FDE for this routine. */
11671 add_AT_fde_ref (subr_die
, DW_AT_MIPS_fde
, current_funcdef_fde
);
11674 /* We define the "frame base" as the function's CFA. This is more
11675 convenient for several reasons: (1) It's stable across the prologue
11676 and epilogue, which makes it better than just a frame pointer,
11677 (2) With dwarf3, there exists a one-byte encoding that allows us
11678 to reference the .debug_frame data by proxy, but failing that,
11679 (3) We can at least reuse the code inspection and interpretation
11680 code that determines the CFA position at various points in the
11682 /* ??? Use some command-line or configury switch to enable the use
11683 of dwarf3 DW_OP_call_frame_cfa. At present there are no dwarf
11684 consumers that understand it; fall back to "pure" dwarf2 and
11685 convert the CFA data into a location list. */
11687 dw_loc_list_ref list
= convert_cfa_to_loc_list ();
11688 if (list
->dw_loc_next
)
11689 add_AT_loc_list (subr_die
, DW_AT_frame_base
, list
);
11691 add_AT_loc (subr_die
, DW_AT_frame_base
, list
->expr
);
11694 /* Compute a displacement from the "steady-state frame pointer" to
11695 the CFA. The former is what all stack slots and argument slots
11696 will reference in the rtl; the later is what we've told the
11697 debugger about. We'll need to adjust all frame_base references
11698 by this displacement. */
11699 compute_frame_pointer_to_cfa_displacement ();
11701 if (cfun
->static_chain_decl
)
11702 add_AT_location_description (subr_die
, DW_AT_static_link
,
11703 loc_descriptor_from_tree (cfun
->static_chain_decl
));
11706 /* Now output descriptions of the arguments for this function. This gets
11707 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
11708 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
11709 `...' at the end of the formal parameter list. In order to find out if
11710 there was a trailing ellipsis or not, we must instead look at the type
11711 associated with the FUNCTION_DECL. This will be a node of type
11712 FUNCTION_TYPE. If the chain of type nodes hanging off of this
11713 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
11714 an ellipsis at the end. */
11716 /* In the case where we are describing a mere function declaration, all we
11717 need to do here (and all we *can* do here) is to describe the *types* of
11718 its formal parameters. */
11719 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
11721 else if (declaration
)
11722 gen_formal_types_die (decl
, subr_die
);
11725 /* Generate DIEs to represent all known formal parameters. */
11726 tree arg_decls
= DECL_ARGUMENTS (decl
);
11729 /* When generating DIEs, generate the unspecified_parameters DIE
11730 instead if we come across the arg "__builtin_va_alist" */
11731 for (parm
= arg_decls
; parm
; parm
= TREE_CHAIN (parm
))
11732 if (TREE_CODE (parm
) == PARM_DECL
)
11734 if (DECL_NAME (parm
)
11735 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm
)),
11736 "__builtin_va_alist"))
11737 gen_unspecified_parameters_die (parm
, subr_die
);
11739 gen_decl_die (parm
, subr_die
);
11742 /* Decide whether we need an unspecified_parameters DIE at the end.
11743 There are 2 more cases to do this for: 1) the ansi ... declaration -
11744 this is detectable when the end of the arg list is not a
11745 void_type_node 2) an unprototyped function declaration (not a
11746 definition). This just means that we have no info about the
11747 parameters at all. */
11748 fn_arg_types
= TYPE_ARG_TYPES (TREE_TYPE (decl
));
11749 if (fn_arg_types
!= NULL
)
11751 /* This is the prototyped case, check for.... */
11752 if (TREE_VALUE (tree_last (fn_arg_types
)) != void_type_node
)
11753 gen_unspecified_parameters_die (decl
, subr_die
);
11755 else if (DECL_INITIAL (decl
) == NULL_TREE
)
11756 gen_unspecified_parameters_die (decl
, subr_die
);
11759 /* Output Dwarf info for all of the stuff within the body of the function
11760 (if it has one - it may be just a declaration). */
11761 outer_scope
= DECL_INITIAL (decl
);
11763 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
11764 a function. This BLOCK actually represents the outermost binding contour
11765 for the function, i.e. the contour in which the function's formal
11766 parameters and labels get declared. Curiously, it appears that the front
11767 end doesn't actually put the PARM_DECL nodes for the current function onto
11768 the BLOCK_VARS list for this outer scope, but are strung off of the
11769 DECL_ARGUMENTS list for the function instead.
11771 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
11772 the LABEL_DECL nodes for the function however, and we output DWARF info
11773 for those in decls_for_scope. Just within the `outer_scope' there will be
11774 a BLOCK node representing the function's outermost pair of curly braces,
11775 and any blocks used for the base and member initializers of a C++
11776 constructor function. */
11777 if (! declaration
&& TREE_CODE (outer_scope
) != ERROR_MARK
)
11779 /* Emit a DW_TAG_variable DIE for a named return value. */
11780 if (DECL_NAME (DECL_RESULT (decl
)))
11781 gen_decl_die (DECL_RESULT (decl
), subr_die
);
11783 current_function_has_inlines
= 0;
11784 decls_for_scope (outer_scope
, subr_die
, 0);
11786 #if 0 && defined (MIPS_DEBUGGING_INFO)
11787 if (current_function_has_inlines
)
11789 add_AT_flag (subr_die
, DW_AT_MIPS_has_inlines
, 1);
11790 if (! comp_unit_has_inlines
)
11792 add_AT_flag (comp_unit_die
, DW_AT_MIPS_has_inlines
, 1);
11793 comp_unit_has_inlines
= 1;
11798 /* Add the calling convention attribute if requested. */
11799 add_calling_convention_attribute (subr_die
, TREE_TYPE (decl
));
11803 /* Generate a DIE to represent a declared data object. */
11806 gen_variable_die (tree decl
, dw_die_ref context_die
)
11808 tree origin
= decl_ultimate_origin (decl
);
11809 dw_die_ref var_die
= new_die (DW_TAG_variable
, context_die
, decl
);
11811 dw_die_ref old_die
= lookup_decl_die (decl
);
11812 int declaration
= (DECL_EXTERNAL (decl
)
11813 /* If DECL is COMDAT and has not actually been
11814 emitted, we cannot take its address; there
11815 might end up being no definition anywhere in
11816 the program. For example, consider the C++
11820 struct S { static const int i = 7; };
11825 int f() { return S<int>::i; }
11827 Here, S<int>::i is not DECL_EXTERNAL, but no
11828 definition is required, so the compiler will
11829 not emit a definition. */
11830 || (TREE_CODE (decl
) == VAR_DECL
11831 && DECL_COMDAT (decl
) && !TREE_ASM_WRITTEN (decl
))
11832 || class_or_namespace_scope_p (context_die
));
11834 if (origin
!= NULL
)
11835 add_abstract_origin_attribute (var_die
, origin
);
11837 /* Loop unrolling can create multiple blocks that refer to the same
11838 static variable, so we must test for the DW_AT_declaration flag.
11840 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
11841 copy decls and set the DECL_ABSTRACT flag on them instead of
11844 ??? Duplicated blocks have been rewritten to use .debug_ranges.
11846 ??? The declare_in_namespace support causes us to get two DIEs for one
11847 variable, both of which are declarations. We want to avoid considering
11848 one to be a specification, so we must test that this DIE is not a
11850 else if (old_die
&& TREE_STATIC (decl
) && ! declaration
11851 && get_AT_flag (old_die
, DW_AT_declaration
) == 1)
11853 /* This is a definition of a C++ class level static. */
11854 add_AT_specification (var_die
, old_die
);
11855 if (DECL_NAME (decl
))
11857 expanded_location s
= expand_location (DECL_SOURCE_LOCATION (decl
));
11858 unsigned file_index
= lookup_filename (s
.file
);
11860 if (get_AT_unsigned (old_die
, DW_AT_decl_file
) != file_index
)
11861 add_AT_unsigned (var_die
, DW_AT_decl_file
, file_index
);
11863 if (get_AT_unsigned (old_die
, DW_AT_decl_line
)
11864 != (unsigned) s
.line
)
11866 add_AT_unsigned (var_die
, DW_AT_decl_line
, s
.line
);
11871 add_name_and_src_coords_attributes (var_die
, decl
);
11872 add_type_attribute (var_die
, TREE_TYPE (decl
), TREE_READONLY (decl
),
11873 TREE_THIS_VOLATILE (decl
), context_die
);
11875 if (TREE_PUBLIC (decl
))
11876 add_AT_flag (var_die
, DW_AT_external
, 1);
11878 if (DECL_ARTIFICIAL (decl
))
11879 add_AT_flag (var_die
, DW_AT_artificial
, 1);
11881 if (TREE_PROTECTED (decl
))
11882 add_AT_unsigned (var_die
, DW_AT_accessibility
, DW_ACCESS_protected
);
11883 else if (TREE_PRIVATE (decl
))
11884 add_AT_unsigned (var_die
, DW_AT_accessibility
, DW_ACCESS_private
);
11888 add_AT_flag (var_die
, DW_AT_declaration
, 1);
11890 if (DECL_ABSTRACT (decl
) || declaration
)
11891 equate_decl_number_to_die (decl
, var_die
);
11893 if (! declaration
&& ! DECL_ABSTRACT (decl
))
11895 add_location_or_const_value_attribute (var_die
, decl
, DW_AT_location
);
11896 add_pubname (decl
, var_die
);
11899 tree_add_const_value_attribute (var_die
, decl
);
11902 /* Generate a DIE to represent a label identifier. */
11905 gen_label_die (tree decl
, dw_die_ref context_die
)
11907 tree origin
= decl_ultimate_origin (decl
);
11908 dw_die_ref lbl_die
= new_die (DW_TAG_label
, context_die
, decl
);
11910 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
11912 if (origin
!= NULL
)
11913 add_abstract_origin_attribute (lbl_die
, origin
);
11915 add_name_and_src_coords_attributes (lbl_die
, decl
);
11917 if (DECL_ABSTRACT (decl
))
11918 equate_decl_number_to_die (decl
, lbl_die
);
11921 insn
= DECL_RTL_IF_SET (decl
);
11923 /* Deleted labels are programmer specified labels which have been
11924 eliminated because of various optimizations. We still emit them
11925 here so that it is possible to put breakpoints on them. */
11929 && NOTE_LINE_NUMBER (insn
) == NOTE_INSN_DELETED_LABEL
))))
11931 /* When optimization is enabled (via -O) some parts of the compiler
11932 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
11933 represent source-level labels which were explicitly declared by
11934 the user. This really shouldn't be happening though, so catch
11935 it if it ever does happen. */
11936 gcc_assert (!INSN_DELETED_P (insn
));
11938 ASM_GENERATE_INTERNAL_LABEL (label
, "L", CODE_LABEL_NUMBER (insn
));
11939 add_AT_lbl_id (lbl_die
, DW_AT_low_pc
, label
);
11944 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
11945 attributes to the DIE for a block STMT, to describe where the inlined
11946 function was called from. This is similar to add_src_coords_attributes. */
11949 add_call_src_coords_attributes (tree stmt
, dw_die_ref die
)
11951 expanded_location s
= expand_location (BLOCK_SOURCE_LOCATION (stmt
));
11952 unsigned file_index
= lookup_filename (s
.file
);
11954 add_AT_unsigned (die
, DW_AT_call_file
, file_index
);
11955 add_AT_unsigned (die
, DW_AT_call_line
, s
.line
);
11958 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
11959 Add low_pc and high_pc attributes to the DIE for a block STMT. */
11962 add_high_low_attributes (tree stmt
, dw_die_ref die
)
11964 char label
[MAX_ARTIFICIAL_LABEL_BYTES
];
11966 if (BLOCK_FRAGMENT_CHAIN (stmt
))
11970 add_AT_range_list (die
, DW_AT_ranges
, add_ranges (stmt
));
11972 chain
= BLOCK_FRAGMENT_CHAIN (stmt
);
11975 add_ranges (chain
);
11976 chain
= BLOCK_FRAGMENT_CHAIN (chain
);
11983 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_BEGIN_LABEL
,
11984 BLOCK_NUMBER (stmt
));
11985 add_AT_lbl_id (die
, DW_AT_low_pc
, label
);
11986 ASM_GENERATE_INTERNAL_LABEL (label
, BLOCK_END_LABEL
,
11987 BLOCK_NUMBER (stmt
));
11988 add_AT_lbl_id (die
, DW_AT_high_pc
, label
);
11992 /* Generate a DIE for a lexical block. */
11995 gen_lexical_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
11997 dw_die_ref stmt_die
= new_die (DW_TAG_lexical_block
, context_die
, stmt
);
11999 if (! BLOCK_ABSTRACT (stmt
))
12000 add_high_low_attributes (stmt
, stmt_die
);
12002 decls_for_scope (stmt
, stmt_die
, depth
);
12005 /* Generate a DIE for an inlined subprogram. */
12008 gen_inlined_subroutine_die (tree stmt
, dw_die_ref context_die
, int depth
)
12010 tree decl
= block_ultimate_origin (stmt
);
12012 /* Emit info for the abstract instance first, if we haven't yet. We
12013 must emit this even if the block is abstract, otherwise when we
12014 emit the block below (or elsewhere), we may end up trying to emit
12015 a die whose origin die hasn't been emitted, and crashing. */
12016 dwarf2out_abstract_function (decl
);
12018 if (! BLOCK_ABSTRACT (stmt
))
12020 dw_die_ref subr_die
12021 = new_die (DW_TAG_inlined_subroutine
, context_die
, stmt
);
12023 add_abstract_origin_attribute (subr_die
, decl
);
12024 add_high_low_attributes (stmt
, subr_die
);
12025 add_call_src_coords_attributes (stmt
, subr_die
);
12027 decls_for_scope (stmt
, subr_die
, depth
);
12028 current_function_has_inlines
= 1;
12031 /* We may get here if we're the outer block of function A that was
12032 inlined into function B that was inlined into function C. When
12033 generating debugging info for C, dwarf2out_abstract_function(B)
12034 would mark all inlined blocks as abstract, including this one.
12035 So, we wouldn't (and shouldn't) expect labels to be generated
12036 for this one. Instead, just emit debugging info for
12037 declarations within the block. This is particularly important
12038 in the case of initializers of arguments passed from B to us:
12039 if they're statement expressions containing declarations, we
12040 wouldn't generate dies for their abstract variables, and then,
12041 when generating dies for the real variables, we'd die (pun
12043 gen_lexical_block_die (stmt
, context_die
, depth
);
12046 /* Generate a DIE for a field in a record, or structure. */
12049 gen_field_die (tree decl
, dw_die_ref context_die
)
12051 dw_die_ref decl_die
;
12053 if (TREE_TYPE (decl
) == error_mark_node
)
12056 decl_die
= new_die (DW_TAG_member
, context_die
, decl
);
12057 add_name_and_src_coords_attributes (decl_die
, decl
);
12058 add_type_attribute (decl_die
, member_declared_type (decl
),
12059 TREE_READONLY (decl
), TREE_THIS_VOLATILE (decl
),
12062 if (DECL_BIT_FIELD_TYPE (decl
))
12064 add_byte_size_attribute (decl_die
, decl
);
12065 add_bit_size_attribute (decl_die
, decl
);
12066 add_bit_offset_attribute (decl_die
, decl
);
12069 if (TREE_CODE (DECL_FIELD_CONTEXT (decl
)) != UNION_TYPE
)
12070 add_data_member_location_attribute (decl_die
, decl
);
12072 if (DECL_ARTIFICIAL (decl
))
12073 add_AT_flag (decl_die
, DW_AT_artificial
, 1);
12075 if (TREE_PROTECTED (decl
))
12076 add_AT_unsigned (decl_die
, DW_AT_accessibility
, DW_ACCESS_protected
);
12077 else if (TREE_PRIVATE (decl
))
12078 add_AT_unsigned (decl_die
, DW_AT_accessibility
, DW_ACCESS_private
);
12080 /* Equate decl number to die, so that we can look up this decl later on. */
12081 equate_decl_number_to_die (decl
, decl_die
);
12085 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
12086 Use modified_type_die instead.
12087 We keep this code here just in case these types of DIEs may be needed to
12088 represent certain things in other languages (e.g. Pascal) someday. */
12091 gen_pointer_type_die (tree type
, dw_die_ref context_die
)
12094 = new_die (DW_TAG_pointer_type
, scope_die_for (type
, context_die
), type
);
12096 equate_type_number_to_die (type
, ptr_die
);
12097 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
12098 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
12101 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
12102 Use modified_type_die instead.
12103 We keep this code here just in case these types of DIEs may be needed to
12104 represent certain things in other languages (e.g. Pascal) someday. */
12107 gen_reference_type_die (tree type
, dw_die_ref context_die
)
12110 = new_die (DW_TAG_reference_type
, scope_die_for (type
, context_die
), type
);
12112 equate_type_number_to_die (type
, ref_die
);
12113 add_type_attribute (ref_die
, TREE_TYPE (type
), 0, 0, context_die
);
12114 add_AT_unsigned (mod_type_die
, DW_AT_byte_size
, PTR_SIZE
);
12118 /* Generate a DIE for a pointer to a member type. */
12121 gen_ptr_to_mbr_type_die (tree type
, dw_die_ref context_die
)
12124 = new_die (DW_TAG_ptr_to_member_type
,
12125 scope_die_for (type
, context_die
), type
);
12127 equate_type_number_to_die (type
, ptr_die
);
12128 add_AT_die_ref (ptr_die
, DW_AT_containing_type
,
12129 lookup_type_die (TYPE_OFFSET_BASETYPE (type
)));
12130 add_type_attribute (ptr_die
, TREE_TYPE (type
), 0, 0, context_die
);
12133 /* Generate the DIE for the compilation unit. */
12136 gen_compile_unit_die (const char *filename
)
12139 char producer
[250];
12140 const char *language_string
= lang_hooks
.name
;
12143 die
= new_die (DW_TAG_compile_unit
, NULL
, NULL
);
12147 add_name_attribute (die
, filename
);
12148 /* Don't add cwd for <built-in>. */
12149 if (filename
[0] != DIR_SEPARATOR
&& filename
[0] != '<')
12150 add_comp_dir_attribute (die
);
12153 sprintf (producer
, "%s %s", language_string
, version_string
);
12155 #ifdef MIPS_DEBUGGING_INFO
12156 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
12157 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
12158 not appear in the producer string, the debugger reaches the conclusion
12159 that the object file is stripped and has no debugging information.
12160 To get the MIPS/SGI debugger to believe that there is debugging
12161 information in the object file, we add a -g to the producer string. */
12162 if (debug_info_level
> DINFO_LEVEL_TERSE
)
12163 strcat (producer
, " -g");
12166 add_AT_string (die
, DW_AT_producer
, producer
);
12168 if (strcmp (language_string
, "GNU C++") == 0)
12169 language
= DW_LANG_C_plus_plus
;
12170 else if (strcmp (language_string
, "GNU Ada") == 0)
12171 language
= DW_LANG_Ada95
;
12172 else if (strcmp (language_string
, "GNU F77") == 0)
12173 language
= DW_LANG_Fortran77
;
12174 else if (strcmp (language_string
, "GNU F95") == 0)
12175 language
= DW_LANG_Fortran95
;
12176 else if (strcmp (language_string
, "GNU Pascal") == 0)
12177 language
= DW_LANG_Pascal83
;
12178 else if (strcmp (language_string
, "GNU Java") == 0)
12179 language
= DW_LANG_Java
;
12181 language
= DW_LANG_C89
;
12183 add_AT_unsigned (die
, DW_AT_language
, language
);
12187 /* Generate the DIE for a base class. */
12190 gen_inheritance_die (tree binfo
, tree access
, dw_die_ref context_die
)
12192 dw_die_ref die
= new_die (DW_TAG_inheritance
, context_die
, binfo
);
12194 add_type_attribute (die
, BINFO_TYPE (binfo
), 0, 0, context_die
);
12195 add_data_member_location_attribute (die
, binfo
);
12197 if (BINFO_VIRTUAL_P (binfo
))
12198 add_AT_unsigned (die
, DW_AT_virtuality
, DW_VIRTUALITY_virtual
);
12200 if (access
== access_public_node
)
12201 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_public
);
12202 else if (access
== access_protected_node
)
12203 add_AT_unsigned (die
, DW_AT_accessibility
, DW_ACCESS_protected
);
12206 /* Generate a DIE for a class member. */
12209 gen_member_die (tree type
, dw_die_ref context_die
)
12212 tree binfo
= TYPE_BINFO (type
);
12215 /* If this is not an incomplete type, output descriptions of each of its
12216 members. Note that as we output the DIEs necessary to represent the
12217 members of this record or union type, we will also be trying to output
12218 DIEs to represent the *types* of those members. However the `type'
12219 function (above) will specifically avoid generating type DIEs for member
12220 types *within* the list of member DIEs for this (containing) type except
12221 for those types (of members) which are explicitly marked as also being
12222 members of this (containing) type themselves. The g++ front- end can
12223 force any given type to be treated as a member of some other (containing)
12224 type by setting the TYPE_CONTEXT of the given (member) type to point to
12225 the TREE node representing the appropriate (containing) type. */
12227 /* First output info about the base classes. */
12230 VEC(tree
,gc
) *accesses
= BINFO_BASE_ACCESSES (binfo
);
12234 for (i
= 0; BINFO_BASE_ITERATE (binfo
, i
, base
); i
++)
12235 gen_inheritance_die (base
,
12236 (accesses
? VEC_index (tree
, accesses
, i
)
12237 : access_public_node
), context_die
);
12240 /* Now output info about the data members and type members. */
12241 for (member
= TYPE_FIELDS (type
); member
; member
= TREE_CHAIN (member
))
12243 /* If we thought we were generating minimal debug info for TYPE
12244 and then changed our minds, some of the member declarations
12245 may have already been defined. Don't define them again, but
12246 do put them in the right order. */
12248 child
= lookup_decl_die (member
);
12250 splice_child_die (context_die
, child
);
12252 gen_decl_die (member
, context_die
);
12255 /* Now output info about the function members (if any). */
12256 for (member
= TYPE_METHODS (type
); member
; member
= TREE_CHAIN (member
))
12258 /* Don't include clones in the member list. */
12259 if (DECL_ABSTRACT_ORIGIN (member
))
12262 child
= lookup_decl_die (member
);
12264 splice_child_die (context_die
, child
);
12266 gen_decl_die (member
, context_die
);
12270 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
12271 is set, we pretend that the type was never defined, so we only get the
12272 member DIEs needed by later specification DIEs. */
12275 gen_struct_or_union_type_die (tree type
, dw_die_ref context_die
)
12277 dw_die_ref type_die
= lookup_type_die (type
);
12278 dw_die_ref scope_die
= 0;
12280 int complete
= (TYPE_SIZE (type
)
12281 && (! TYPE_STUB_DECL (type
)
12282 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type
))));
12283 int ns_decl
= (context_die
&& context_die
->die_tag
== DW_TAG_namespace
);
12285 if (type_die
&& ! complete
)
12288 if (TYPE_CONTEXT (type
) != NULL_TREE
12289 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
12290 || TREE_CODE (TYPE_CONTEXT (type
)) == NAMESPACE_DECL
))
12293 scope_die
= scope_die_for (type
, context_die
);
12295 if (! type_die
|| (nested
&& scope_die
== comp_unit_die
))
12296 /* First occurrence of type or toplevel definition of nested class. */
12298 dw_die_ref old_die
= type_die
;
12300 type_die
= new_die (TREE_CODE (type
) == RECORD_TYPE
12301 ? DW_TAG_structure_type
: DW_TAG_union_type
,
12303 equate_type_number_to_die (type
, type_die
);
12305 add_AT_specification (type_die
, old_die
);
12307 add_name_attribute (type_die
, type_tag (type
));
12310 remove_AT (type_die
, DW_AT_declaration
);
12312 /* If this type has been completed, then give it a byte_size attribute and
12313 then give a list of members. */
12314 if (complete
&& !ns_decl
)
12316 /* Prevent infinite recursion in cases where the type of some member of
12317 this type is expressed in terms of this type itself. */
12318 TREE_ASM_WRITTEN (type
) = 1;
12319 add_byte_size_attribute (type_die
, type
);
12320 if (TYPE_STUB_DECL (type
) != NULL_TREE
)
12321 add_src_coords_attributes (type_die
, TYPE_STUB_DECL (type
));
12323 /* If the first reference to this type was as the return type of an
12324 inline function, then it may not have a parent. Fix this now. */
12325 if (type_die
->die_parent
== NULL
)
12326 add_child_die (scope_die
, type_die
);
12328 push_decl_scope (type
);
12329 gen_member_die (type
, type_die
);
12332 /* GNU extension: Record what type our vtable lives in. */
12333 if (TYPE_VFIELD (type
))
12335 tree vtype
= DECL_FCONTEXT (TYPE_VFIELD (type
));
12337 gen_type_die (vtype
, context_die
);
12338 add_AT_die_ref (type_die
, DW_AT_containing_type
,
12339 lookup_type_die (vtype
));
12344 add_AT_flag (type_die
, DW_AT_declaration
, 1);
12346 /* We don't need to do this for function-local types. */
12347 if (TYPE_STUB_DECL (type
)
12348 && ! decl_function_context (TYPE_STUB_DECL (type
)))
12349 VEC_safe_push (tree
, gc
, incomplete_types
, type
);
12353 /* Generate a DIE for a subroutine _type_. */
12356 gen_subroutine_type_die (tree type
, dw_die_ref context_die
)
12358 tree return_type
= TREE_TYPE (type
);
12359 dw_die_ref subr_die
12360 = new_die (DW_TAG_subroutine_type
,
12361 scope_die_for (type
, context_die
), type
);
12363 equate_type_number_to_die (type
, subr_die
);
12364 add_prototyped_attribute (subr_die
, type
);
12365 add_type_attribute (subr_die
, return_type
, 0, 0, context_die
);
12366 gen_formal_types_die (type
, subr_die
);
12369 /* Generate a DIE for a type definition. */
12372 gen_typedef_die (tree decl
, dw_die_ref context_die
)
12374 dw_die_ref type_die
;
12377 if (TREE_ASM_WRITTEN (decl
))
12380 TREE_ASM_WRITTEN (decl
) = 1;
12381 type_die
= new_die (DW_TAG_typedef
, context_die
, decl
);
12382 origin
= decl_ultimate_origin (decl
);
12383 if (origin
!= NULL
)
12384 add_abstract_origin_attribute (type_die
, origin
);
12389 add_name_and_src_coords_attributes (type_die
, decl
);
12390 if (DECL_ORIGINAL_TYPE (decl
))
12392 type
= DECL_ORIGINAL_TYPE (decl
);
12394 gcc_assert (type
!= TREE_TYPE (decl
));
12395 equate_type_number_to_die (TREE_TYPE (decl
), type_die
);
12398 type
= TREE_TYPE (decl
);
12400 add_type_attribute (type_die
, type
, TREE_READONLY (decl
),
12401 TREE_THIS_VOLATILE (decl
), context_die
);
12404 if (DECL_ABSTRACT (decl
))
12405 equate_decl_number_to_die (decl
, type_die
);
12408 /* Generate a type description DIE. */
12411 gen_type_die (tree type
, dw_die_ref context_die
)
12415 if (type
== NULL_TREE
|| type
== error_mark_node
)
12418 if (TYPE_NAME (type
) && TREE_CODE (TYPE_NAME (type
)) == TYPE_DECL
12419 && DECL_ORIGINAL_TYPE (TYPE_NAME (type
)))
12421 if (TREE_ASM_WRITTEN (type
))
12424 /* Prevent broken recursion; we can't hand off to the same type. */
12425 gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type
)) != type
);
12427 TREE_ASM_WRITTEN (type
) = 1;
12428 gen_decl_die (TYPE_NAME (type
), context_die
);
12432 /* We are going to output a DIE to represent the unqualified version
12433 of this type (i.e. without any const or volatile qualifiers) so
12434 get the main variant (i.e. the unqualified version) of this type
12435 now. (Vectors are special because the debugging info is in the
12436 cloned type itself). */
12437 if (TREE_CODE (type
) != VECTOR_TYPE
)
12438 type
= type_main_variant (type
);
12440 if (TREE_ASM_WRITTEN (type
))
12443 switch (TREE_CODE (type
))
12449 case REFERENCE_TYPE
:
12450 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
12451 ensures that the gen_type_die recursion will terminate even if the
12452 type is recursive. Recursive types are possible in Ada. */
12453 /* ??? We could perhaps do this for all types before the switch
12455 TREE_ASM_WRITTEN (type
) = 1;
12457 /* For these types, all that is required is that we output a DIE (or a
12458 set of DIEs) to represent the "basis" type. */
12459 gen_type_die (TREE_TYPE (type
), context_die
);
12463 /* This code is used for C++ pointer-to-data-member types.
12464 Output a description of the relevant class type. */
12465 gen_type_die (TYPE_OFFSET_BASETYPE (type
), context_die
);
12467 /* Output a description of the type of the object pointed to. */
12468 gen_type_die (TREE_TYPE (type
), context_die
);
12470 /* Now output a DIE to represent this pointer-to-data-member type
12472 gen_ptr_to_mbr_type_die (type
, context_die
);
12475 case FUNCTION_TYPE
:
12476 /* Force out return type (in case it wasn't forced out already). */
12477 gen_type_die (TREE_TYPE (type
), context_die
);
12478 gen_subroutine_type_die (type
, context_die
);
12482 /* Force out return type (in case it wasn't forced out already). */
12483 gen_type_die (TREE_TYPE (type
), context_die
);
12484 gen_subroutine_type_die (type
, context_die
);
12488 gen_array_type_die (type
, context_die
);
12492 gen_array_type_die (type
, context_die
);
12495 case ENUMERAL_TYPE
:
12498 case QUAL_UNION_TYPE
:
12499 /* If this is a nested type whose containing class hasn't been written
12500 out yet, writing it out will cover this one, too. This does not apply
12501 to instantiations of member class templates; they need to be added to
12502 the containing class as they are generated. FIXME: This hurts the
12503 idea of combining type decls from multiple TUs, since we can't predict
12504 what set of template instantiations we'll get. */
12505 if (TYPE_CONTEXT (type
)
12506 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type
))
12507 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type
)))
12509 gen_type_die (TYPE_CONTEXT (type
), context_die
);
12511 if (TREE_ASM_WRITTEN (type
))
12514 /* If that failed, attach ourselves to the stub. */
12515 push_decl_scope (TYPE_CONTEXT (type
));
12516 context_die
= lookup_type_die (TYPE_CONTEXT (type
));
12521 declare_in_namespace (type
, context_die
);
12525 if (TREE_CODE (type
) == ENUMERAL_TYPE
)
12526 gen_enumeration_type_die (type
, context_die
);
12528 gen_struct_or_union_type_die (type
, context_die
);
12533 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
12534 it up if it is ever completed. gen_*_type_die will set it for us
12535 when appropriate. */
12543 /* No DIEs needed for fundamental types. */
12547 /* No Dwarf representation currently defined. */
12551 gcc_unreachable ();
12554 TREE_ASM_WRITTEN (type
) = 1;
12557 /* Generate a DIE for a tagged type instantiation. */
12560 gen_tagged_type_instantiation_die (tree type
, dw_die_ref context_die
)
12562 if (type
== NULL_TREE
|| type
== error_mark_node
)
12565 /* We are going to output a DIE to represent the unqualified version of
12566 this type (i.e. without any const or volatile qualifiers) so make sure
12567 that we have the main variant (i.e. the unqualified version) of this
12569 gcc_assert (type
== type_main_variant (type
));
12571 /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
12572 an instance of an unresolved type. */
12574 switch (TREE_CODE (type
))
12579 case ENUMERAL_TYPE
:
12580 gen_inlined_enumeration_type_die (type
, context_die
);
12584 gen_inlined_structure_type_die (type
, context_die
);
12588 case QUAL_UNION_TYPE
:
12589 gen_inlined_union_type_die (type
, context_die
);
12593 gcc_unreachable ();
12597 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
12598 things which are local to the given block. */
12601 gen_block_die (tree stmt
, dw_die_ref context_die
, int depth
)
12603 int must_output_die
= 0;
12606 enum tree_code origin_code
;
12608 /* Ignore blocks that are NULL. */
12609 if (stmt
== NULL_TREE
)
12612 /* If the block is one fragment of a non-contiguous block, do not
12613 process the variables, since they will have been done by the
12614 origin block. Do process subblocks. */
12615 if (BLOCK_FRAGMENT_ORIGIN (stmt
))
12619 for (sub
= BLOCK_SUBBLOCKS (stmt
); sub
; sub
= BLOCK_CHAIN (sub
))
12620 gen_block_die (sub
, context_die
, depth
+ 1);
12625 /* Determine the "ultimate origin" of this block. This block may be an
12626 inlined instance of an inlined instance of inline function, so we have
12627 to trace all of the way back through the origin chain to find out what
12628 sort of node actually served as the original seed for the creation of
12629 the current block. */
12630 origin
= block_ultimate_origin (stmt
);
12631 origin_code
= (origin
!= NULL
) ? TREE_CODE (origin
) : ERROR_MARK
;
12633 /* Determine if we need to output any Dwarf DIEs at all to represent this
12635 if (origin_code
== FUNCTION_DECL
)
12636 /* The outer scopes for inlinings *must* always be represented. We
12637 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
12638 must_output_die
= 1;
12641 /* In the case where the current block represents an inlining of the
12642 "body block" of an inline function, we must *NOT* output any DIE for
12643 this block because we have already output a DIE to represent the whole
12644 inlined function scope and the "body block" of any function doesn't
12645 really represent a different scope according to ANSI C rules. So we
12646 check here to make sure that this block does not represent a "body
12647 block inlining" before trying to set the MUST_OUTPUT_DIE flag. */
12648 if (! is_body_block (origin
? origin
: stmt
))
12650 /* Determine if this block directly contains any "significant"
12651 local declarations which we will need to output DIEs for. */
12652 if (debug_info_level
> DINFO_LEVEL_TERSE
)
12653 /* We are not in terse mode so *any* local declaration counts
12654 as being a "significant" one. */
12655 must_output_die
= (BLOCK_VARS (stmt
) != NULL
12656 && (TREE_USED (stmt
)
12657 || TREE_ASM_WRITTEN (stmt
)
12658 || BLOCK_ABSTRACT (stmt
)));
12660 /* We are in terse mode, so only local (nested) function
12661 definitions count as "significant" local declarations. */
12662 for (decl
= BLOCK_VARS (stmt
);
12663 decl
!= NULL
; decl
= TREE_CHAIN (decl
))
12664 if (TREE_CODE (decl
) == FUNCTION_DECL
12665 && DECL_INITIAL (decl
))
12667 must_output_die
= 1;
12673 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
12674 DIE for any block which contains no significant local declarations at
12675 all. Rather, in such cases we just call `decls_for_scope' so that any
12676 needed Dwarf info for any sub-blocks will get properly generated. Note
12677 that in terse mode, our definition of what constitutes a "significant"
12678 local declaration gets restricted to include only inlined function
12679 instances and local (nested) function definitions. */
12680 if (must_output_die
)
12682 if (origin_code
== FUNCTION_DECL
)
12683 gen_inlined_subroutine_die (stmt
, context_die
, depth
);
12685 gen_lexical_block_die (stmt
, context_die
, depth
);
12688 decls_for_scope (stmt
, context_die
, depth
);
12691 /* Generate all of the decls declared within a given scope and (recursively)
12692 all of its sub-blocks. */
12695 decls_for_scope (tree stmt
, dw_die_ref context_die
, int depth
)
12700 /* Ignore NULL blocks. */
12701 if (stmt
== NULL_TREE
)
12704 if (TREE_USED (stmt
))
12706 /* Output the DIEs to represent all of the data objects and typedefs
12707 declared directly within this block but not within any nested
12708 sub-blocks. Also, nested function and tag DIEs have been
12709 generated with a parent of NULL; fix that up now. */
12710 for (decl
= BLOCK_VARS (stmt
); decl
!= NULL
; decl
= TREE_CHAIN (decl
))
12714 if (TREE_CODE (decl
) == FUNCTION_DECL
)
12715 die
= lookup_decl_die (decl
);
12716 else if (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
))
12717 die
= lookup_type_die (TREE_TYPE (decl
));
12721 if (die
!= NULL
&& die
->die_parent
== NULL
)
12722 add_child_die (context_die
, die
);
12723 /* Do not produce debug information for static variables since
12724 these might be optimized out. We are called for these later
12725 in cgraph_varpool_analyze_pending_decls. */
12726 if (TREE_CODE (decl
) == VAR_DECL
&& TREE_STATIC (decl
))
12729 gen_decl_die (decl
, context_die
);
12733 /* If we're at -g1, we're not interested in subblocks. */
12734 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
12737 /* Output the DIEs to represent all sub-blocks (and the items declared
12738 therein) of this block. */
12739 for (subblocks
= BLOCK_SUBBLOCKS (stmt
);
12741 subblocks
= BLOCK_CHAIN (subblocks
))
12742 gen_block_die (subblocks
, context_die
, depth
+ 1);
12745 /* Is this a typedef we can avoid emitting? */
12748 is_redundant_typedef (tree decl
)
12750 if (TYPE_DECL_IS_STUB (decl
))
12753 if (DECL_ARTIFICIAL (decl
)
12754 && DECL_CONTEXT (decl
)
12755 && is_tagged_type (DECL_CONTEXT (decl
))
12756 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl
))) == TYPE_DECL
12757 && DECL_NAME (decl
) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl
))))
12758 /* Also ignore the artificial member typedef for the class name. */
12764 /* Returns the DIE for decl. A DIE will always be returned. */
12767 force_decl_die (tree decl
)
12769 dw_die_ref decl_die
;
12770 unsigned saved_external_flag
;
12771 tree save_fn
= NULL_TREE
;
12772 decl_die
= lookup_decl_die (decl
);
12775 dw_die_ref context_die
;
12776 tree decl_context
= DECL_CONTEXT (decl
);
12779 /* Find die that represents this context. */
12780 if (TYPE_P (decl_context
))
12781 context_die
= force_type_die (decl_context
);
12783 context_die
= force_decl_die (decl_context
);
12786 context_die
= comp_unit_die
;
12788 decl_die
= lookup_decl_die (decl
);
12792 switch (TREE_CODE (decl
))
12794 case FUNCTION_DECL
:
12795 /* Clear current_function_decl, so that gen_subprogram_die thinks
12796 that this is a declaration. At this point, we just want to force
12797 declaration die. */
12798 save_fn
= current_function_decl
;
12799 current_function_decl
= NULL_TREE
;
12800 gen_subprogram_die (decl
, context_die
);
12801 current_function_decl
= save_fn
;
12805 /* Set external flag to force declaration die. Restore it after
12806 gen_decl_die() call. */
12807 saved_external_flag
= DECL_EXTERNAL (decl
);
12808 DECL_EXTERNAL (decl
) = 1;
12809 gen_decl_die (decl
, context_die
);
12810 DECL_EXTERNAL (decl
) = saved_external_flag
;
12813 case NAMESPACE_DECL
:
12814 dwarf2out_decl (decl
);
12818 gcc_unreachable ();
12821 /* We should be able to find the DIE now. */
12823 decl_die
= lookup_decl_die (decl
);
12824 gcc_assert (decl_die
);
12830 /* Returns the DIE for TYPE. A DIE is always returned. */
12833 force_type_die (tree type
)
12835 dw_die_ref type_die
;
12837 type_die
= lookup_type_die (type
);
12840 dw_die_ref context_die
;
12841 if (TYPE_CONTEXT (type
))
12843 if (TYPE_P (TYPE_CONTEXT (type
)))
12844 context_die
= force_type_die (TYPE_CONTEXT (type
));
12846 context_die
= force_decl_die (TYPE_CONTEXT (type
));
12849 context_die
= comp_unit_die
;
12851 type_die
= lookup_type_die (type
);
12854 gen_type_die (type
, context_die
);
12855 type_die
= lookup_type_die (type
);
12856 gcc_assert (type_die
);
12861 /* Force out any required namespaces to be able to output DECL,
12862 and return the new context_die for it, if it's changed. */
12865 setup_namespace_context (tree thing
, dw_die_ref context_die
)
12867 tree context
= (DECL_P (thing
)
12868 ? DECL_CONTEXT (thing
) : TYPE_CONTEXT (thing
));
12869 if (context
&& TREE_CODE (context
) == NAMESPACE_DECL
)
12870 /* Force out the namespace. */
12871 context_die
= force_decl_die (context
);
12873 return context_die
;
12876 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
12877 type) within its namespace, if appropriate.
12879 For compatibility with older debuggers, namespace DIEs only contain
12880 declarations; all definitions are emitted at CU scope. */
12883 declare_in_namespace (tree thing
, dw_die_ref context_die
)
12885 dw_die_ref ns_context
;
12887 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
12890 /* If this decl is from an inlined function, then don't try to emit it in its
12891 namespace, as we will get confused. It would have already been emitted
12892 when the abstract instance of the inline function was emitted anyways. */
12893 if (DECL_P (thing
) && DECL_ABSTRACT_ORIGIN (thing
))
12896 ns_context
= setup_namespace_context (thing
, context_die
);
12898 if (ns_context
!= context_die
)
12900 if (DECL_P (thing
))
12901 gen_decl_die (thing
, ns_context
);
12903 gen_type_die (thing
, ns_context
);
12907 /* Generate a DIE for a namespace or namespace alias. */
12910 gen_namespace_die (tree decl
)
12912 dw_die_ref context_die
= setup_namespace_context (decl
, comp_unit_die
);
12914 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
12915 they are an alias of. */
12916 if (DECL_ABSTRACT_ORIGIN (decl
) == NULL
)
12918 /* Output a real namespace. */
12919 dw_die_ref namespace_die
12920 = new_die (DW_TAG_namespace
, context_die
, decl
);
12921 add_name_and_src_coords_attributes (namespace_die
, decl
);
12922 equate_decl_number_to_die (decl
, namespace_die
);
12926 /* Output a namespace alias. */
12928 /* Force out the namespace we are an alias of, if necessary. */
12929 dw_die_ref origin_die
12930 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl
));
12932 /* Now create the namespace alias DIE. */
12933 dw_die_ref namespace_die
12934 = new_die (DW_TAG_imported_declaration
, context_die
, decl
);
12935 add_name_and_src_coords_attributes (namespace_die
, decl
);
12936 add_AT_die_ref (namespace_die
, DW_AT_import
, origin_die
);
12937 equate_decl_number_to_die (decl
, namespace_die
);
12941 /* Generate Dwarf debug information for a decl described by DECL. */
12944 gen_decl_die (tree decl
, dw_die_ref context_die
)
12948 if (DECL_P (decl
) && DECL_IGNORED_P (decl
))
12951 switch (TREE_CODE (decl
))
12957 /* The individual enumerators of an enum type get output when we output
12958 the Dwarf representation of the relevant enum type itself. */
12961 case FUNCTION_DECL
:
12962 /* Don't output any DIEs to represent mere function declarations,
12963 unless they are class members or explicit block externs. */
12964 if (DECL_INITIAL (decl
) == NULL_TREE
&& DECL_CONTEXT (decl
) == NULL_TREE
12965 && (current_function_decl
== NULL_TREE
|| DECL_ARTIFICIAL (decl
)))
12970 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
12971 on local redeclarations of global functions. That seems broken. */
12972 if (current_function_decl
!= decl
)
12973 /* This is only a declaration. */;
12976 /* If we're emitting a clone, emit info for the abstract instance. */
12977 if (DECL_ORIGIN (decl
) != decl
)
12978 dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl
));
12980 /* If we're emitting an out-of-line copy of an inline function,
12981 emit info for the abstract instance and set up to refer to it. */
12982 else if (cgraph_function_possibly_inlined_p (decl
)
12983 && ! DECL_ABSTRACT (decl
)
12984 && ! class_or_namespace_scope_p (context_die
)
12985 /* dwarf2out_abstract_function won't emit a die if this is just
12986 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
12987 that case, because that works only if we have a die. */
12988 && DECL_INITIAL (decl
) != NULL_TREE
)
12990 dwarf2out_abstract_function (decl
);
12991 set_decl_origin_self (decl
);
12994 /* Otherwise we're emitting the primary DIE for this decl. */
12995 else if (debug_info_level
> DINFO_LEVEL_TERSE
)
12997 /* Before we describe the FUNCTION_DECL itself, make sure that we
12998 have described its return type. */
12999 gen_type_die (TREE_TYPE (TREE_TYPE (decl
)), context_die
);
13001 /* And its virtual context. */
13002 if (DECL_VINDEX (decl
) != NULL_TREE
)
13003 gen_type_die (DECL_CONTEXT (decl
), context_die
);
13005 /* And its containing type. */
13006 origin
= decl_class_context (decl
);
13007 if (origin
!= NULL_TREE
)
13008 gen_type_die_for_member (origin
, decl
, context_die
);
13010 /* And its containing namespace. */
13011 declare_in_namespace (decl
, context_die
);
13014 /* Now output a DIE to represent the function itself. */
13015 gen_subprogram_die (decl
, context_die
);
13019 /* If we are in terse mode, don't generate any DIEs to represent any
13020 actual typedefs. */
13021 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13024 /* In the special case of a TYPE_DECL node representing the declaration
13025 of some type tag, if the given TYPE_DECL is marked as having been
13026 instantiated from some other (original) TYPE_DECL node (e.g. one which
13027 was generated within the original definition of an inline function) we
13028 have to generate a special (abbreviated) DW_TAG_structure_type,
13029 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. */
13030 if (TYPE_DECL_IS_STUB (decl
) && decl_ultimate_origin (decl
) != NULL_TREE
)
13032 gen_tagged_type_instantiation_die (TREE_TYPE (decl
), context_die
);
13036 if (is_redundant_typedef (decl
))
13037 gen_type_die (TREE_TYPE (decl
), context_die
);
13039 /* Output a DIE to represent the typedef itself. */
13040 gen_typedef_die (decl
, context_die
);
13044 if (debug_info_level
>= DINFO_LEVEL_NORMAL
)
13045 gen_label_die (decl
, context_die
);
13050 /* If we are in terse mode, don't generate any DIEs to represent any
13051 variable declarations or definitions. */
13052 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13055 /* Output any DIEs that are needed to specify the type of this data
13057 gen_type_die (TREE_TYPE (decl
), context_die
);
13059 /* And its containing type. */
13060 origin
= decl_class_context (decl
);
13061 if (origin
!= NULL_TREE
)
13062 gen_type_die_for_member (origin
, decl
, context_die
);
13064 /* And its containing namespace. */
13065 declare_in_namespace (decl
, context_die
);
13067 /* Now output the DIE to represent the data object itself. This gets
13068 complicated because of the possibility that the VAR_DECL really
13069 represents an inlined instance of a formal parameter for an inline
13071 origin
= decl_ultimate_origin (decl
);
13072 if (origin
!= NULL_TREE
&& TREE_CODE (origin
) == PARM_DECL
)
13073 gen_formal_parameter_die (decl
, context_die
);
13075 gen_variable_die (decl
, context_die
);
13079 /* Ignore the nameless fields that are used to skip bits but handle C++
13080 anonymous unions and structs. */
13081 if (DECL_NAME (decl
) != NULL_TREE
13082 || TREE_CODE (TREE_TYPE (decl
)) == UNION_TYPE
13083 || TREE_CODE (TREE_TYPE (decl
)) == RECORD_TYPE
)
13085 gen_type_die (member_declared_type (decl
), context_die
);
13086 gen_field_die (decl
, context_die
);
13091 gen_type_die (TREE_TYPE (decl
), context_die
);
13092 gen_formal_parameter_die (decl
, context_die
);
13095 case NAMESPACE_DECL
:
13096 gen_namespace_die (decl
);
13100 /* Probably some frontend-internal decl. Assume we don't care. */
13101 gcc_assert ((int)TREE_CODE (decl
) > NUM_TREE_CODES
);
13106 /* Add Ada "use" clause information for SGI Workshop debugger. */
13109 dwarf2out_add_library_unit_info (const char *filename
, const char *context_list
)
13111 unsigned int file_index
;
13113 if (filename
!= NULL
)
13115 dw_die_ref unit_die
= new_die (DW_TAG_module
, comp_unit_die
, NULL
);
13116 tree context_list_decl
13117 = build_decl (LABEL_DECL
, get_identifier (context_list
),
13120 TREE_PUBLIC (context_list_decl
) = TRUE
;
13121 add_name_attribute (unit_die
, context_list
);
13122 file_index
= lookup_filename (filename
);
13123 add_AT_unsigned (unit_die
, DW_AT_decl_file
, file_index
);
13124 add_pubname (context_list_decl
, unit_die
);
13128 /* Output debug information for global decl DECL. Called from toplev.c after
13129 compilation proper has finished. */
13132 dwarf2out_global_decl (tree decl
)
13134 /* Output DWARF2 information for file-scope tentative data object
13135 declarations, file-scope (extern) function declarations (which had no
13136 corresponding body) and file-scope tagged type declarations and
13137 definitions which have not yet been forced out. */
13138 if (TREE_CODE (decl
) != FUNCTION_DECL
|| !DECL_INITIAL (decl
))
13139 dwarf2out_decl (decl
);
13142 /* Output debug information for type decl DECL. Called from toplev.c
13143 and from language front ends (to record built-in types). */
13145 dwarf2out_type_decl (tree decl
, int local
)
13148 dwarf2out_decl (decl
);
13151 /* Output debug information for imported module or decl. */
13154 dwarf2out_imported_module_or_decl (tree decl
, tree context
)
13156 dw_die_ref imported_die
, at_import_die
;
13157 dw_die_ref scope_die
;
13158 unsigned file_index
;
13159 expanded_location xloc
;
13161 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13166 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
13167 We need decl DIE for reference and scope die. First, get DIE for the decl
13170 /* Get the scope die for decl context. Use comp_unit_die for global module
13171 or decl. If die is not found for non globals, force new die. */
13173 scope_die
= comp_unit_die
;
13174 else if (TYPE_P (context
))
13175 scope_die
= force_type_die (context
);
13177 scope_die
= force_decl_die (context
);
13179 /* For TYPE_DECL or CONST_DECL, lookup TREE_TYPE. */
13180 if (TREE_CODE (decl
) == TYPE_DECL
|| TREE_CODE (decl
) == CONST_DECL
)
13181 at_import_die
= force_type_die (TREE_TYPE (decl
));
13184 at_import_die
= lookup_decl_die (decl
);
13185 if (!at_import_die
)
13187 /* If we're trying to avoid duplicate debug info, we may not have
13188 emitted the member decl for this field. Emit it now. */
13189 if (TREE_CODE (decl
) == FIELD_DECL
)
13191 tree type
= DECL_CONTEXT (decl
);
13192 dw_die_ref type_context_die
;
13194 if (TYPE_CONTEXT (type
))
13195 if (TYPE_P (TYPE_CONTEXT (type
)))
13196 type_context_die
= force_type_die (TYPE_CONTEXT (type
));
13198 type_context_die
= force_decl_die (TYPE_CONTEXT (type
));
13200 type_context_die
= comp_unit_die
;
13201 gen_type_die_for_member (type
, decl
, type_context_die
);
13203 at_import_die
= force_decl_die (decl
);
13207 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
13208 if (TREE_CODE (decl
) == NAMESPACE_DECL
)
13209 imported_die
= new_die (DW_TAG_imported_module
, scope_die
, context
);
13211 imported_die
= new_die (DW_TAG_imported_declaration
, scope_die
, context
);
13213 xloc
= expand_location (input_location
);
13214 file_index
= lookup_filename (xloc
.file
);
13215 add_AT_unsigned (imported_die
, DW_AT_decl_file
, file_index
);
13216 add_AT_unsigned (imported_die
, DW_AT_decl_line
, xloc
.line
);
13217 add_AT_die_ref (imported_die
, DW_AT_import
, at_import_die
);
13220 /* Write the debugging output for DECL. */
13223 dwarf2out_decl (tree decl
)
13225 dw_die_ref context_die
= comp_unit_die
;
13227 switch (TREE_CODE (decl
))
13232 case FUNCTION_DECL
:
13233 /* What we would really like to do here is to filter out all mere
13234 file-scope declarations of file-scope functions which are never
13235 referenced later within this translation unit (and keep all of ones
13236 that *are* referenced later on) but we aren't clairvoyant, so we have
13237 no idea which functions will be referenced in the future (i.e. later
13238 on within the current translation unit). So here we just ignore all
13239 file-scope function declarations which are not also definitions. If
13240 and when the debugger needs to know something about these functions,
13241 it will have to hunt around and find the DWARF information associated
13242 with the definition of the function.
13244 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
13245 nodes represent definitions and which ones represent mere
13246 declarations. We have to check DECL_INITIAL instead. That's because
13247 the C front-end supports some weird semantics for "extern inline"
13248 function definitions. These can get inlined within the current
13249 translation unit (and thus, we need to generate Dwarf info for their
13250 abstract instances so that the Dwarf info for the concrete inlined
13251 instances can have something to refer to) but the compiler never
13252 generates any out-of-lines instances of such things (despite the fact
13253 that they *are* definitions).
13255 The important point is that the C front-end marks these "extern
13256 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
13257 them anyway. Note that the C++ front-end also plays some similar games
13258 for inline function definitions appearing within include files which
13259 also contain `#pragma interface' pragmas. */
13260 if (DECL_INITIAL (decl
) == NULL_TREE
)
13263 /* If we're a nested function, initially use a parent of NULL; if we're
13264 a plain function, this will be fixed up in decls_for_scope. If
13265 we're a method, it will be ignored, since we already have a DIE. */
13266 if (decl_function_context (decl
)
13267 /* But if we're in terse mode, we don't care about scope. */
13268 && debug_info_level
> DINFO_LEVEL_TERSE
)
13269 context_die
= NULL
;
13273 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
13274 declaration and if the declaration was never even referenced from
13275 within this entire compilation unit. We suppress these DIEs in
13276 order to save space in the .debug section (by eliminating entries
13277 which are probably useless). Note that we must not suppress
13278 block-local extern declarations (whether used or not) because that
13279 would screw-up the debugger's name lookup mechanism and cause it to
13280 miss things which really ought to be in scope at a given point. */
13281 if (DECL_EXTERNAL (decl
) && !TREE_USED (decl
))
13284 /* For local statics lookup proper context die. */
13285 if (TREE_STATIC (decl
) && decl_function_context (decl
))
13286 context_die
= lookup_decl_die (DECL_CONTEXT (decl
));
13288 /* If we are in terse mode, don't generate any DIEs to represent any
13289 variable declarations or definitions. */
13290 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13294 case NAMESPACE_DECL
:
13295 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13297 if (lookup_decl_die (decl
) != NULL
)
13302 /* Don't emit stubs for types unless they are needed by other DIEs. */
13303 if (TYPE_DECL_SUPPRESS_DEBUG (decl
))
13306 /* Don't bother trying to generate any DIEs to represent any of the
13307 normal built-in types for the language we are compiling. */
13308 if (DECL_IS_BUILTIN (decl
))
13310 /* OK, we need to generate one for `bool' so GDB knows what type
13311 comparisons have. */
13312 if ((get_AT_unsigned (comp_unit_die
, DW_AT_language
)
13313 == DW_LANG_C_plus_plus
)
13314 && TREE_CODE (TREE_TYPE (decl
)) == BOOLEAN_TYPE
13315 && ! DECL_IGNORED_P (decl
))
13316 modified_type_die (TREE_TYPE (decl
), 0, 0, NULL
);
13321 /* If we are in terse mode, don't generate any DIEs for types. */
13322 if (debug_info_level
<= DINFO_LEVEL_TERSE
)
13325 /* If we're a function-scope tag, initially use a parent of NULL;
13326 this will be fixed up in decls_for_scope. */
13327 if (decl_function_context (decl
))
13328 context_die
= NULL
;
13336 gen_decl_die (decl
, context_die
);
13339 /* Output a marker (i.e. a label) for the beginning of the generated code for
13340 a lexical block. */
13343 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED
,
13344 unsigned int blocknum
)
13346 switch_to_section (current_function_section ());
13347 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_BEGIN_LABEL
, blocknum
);
13350 /* Output a marker (i.e. a label) for the end of the generated code for a
13354 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED
, unsigned int blocknum
)
13356 switch_to_section (current_function_section ());
13357 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, BLOCK_END_LABEL
, blocknum
);
13360 /* Returns nonzero if it is appropriate not to emit any debugging
13361 information for BLOCK, because it doesn't contain any instructions.
13363 Don't allow this for blocks with nested functions or local classes
13364 as we would end up with orphans, and in the presence of scheduling
13365 we may end up calling them anyway. */
13368 dwarf2out_ignore_block (tree block
)
13372 for (decl
= BLOCK_VARS (block
); decl
; decl
= TREE_CHAIN (decl
))
13373 if (TREE_CODE (decl
) == FUNCTION_DECL
13374 || (TREE_CODE (decl
) == TYPE_DECL
&& TYPE_DECL_IS_STUB (decl
)))
13380 /* Lookup FILE_NAME (in the list of filenames that we know about here in
13381 dwarf2out.c) and return its "index". The index of each (known) filename is
13382 just a unique number which is associated with only that one filename. We
13383 need such numbers for the sake of generating labels (in the .debug_sfnames
13384 section) and references to those files numbers (in the .debug_srcinfo
13385 and.debug_macinfo sections). If the filename given as an argument is not
13386 found in our current list, add it to the list and assign it the next
13387 available unique index number. In order to speed up searches, we remember
13388 the index of the filename was looked up last. This handles the majority of
13392 lookup_filename (const char *file_name
)
13395 char *save_file_name
;
13397 /* Check to see if the file name that was searched on the previous
13398 call matches this file name. If so, return the index. */
13399 if (file_table_last_lookup_index
!= 0)
13402 = VARRAY_CHAR_PTR (file_table
, file_table_last_lookup_index
);
13403 if (strcmp (file_name
, last
) == 0)
13404 return file_table_last_lookup_index
;
13407 /* Didn't match the previous lookup, search the table. */
13408 n
= VARRAY_ACTIVE_SIZE (file_table
);
13409 for (i
= 1; i
< n
; i
++)
13410 if (strcmp (file_name
, VARRAY_CHAR_PTR (file_table
, i
)) == 0)
13412 file_table_last_lookup_index
= i
;
13416 /* Add the new entry to the end of the filename table. */
13417 file_table_last_lookup_index
= n
;
13418 save_file_name
= (char *) ggc_strdup (file_name
);
13419 VARRAY_PUSH_CHAR_PTR (file_table
, save_file_name
);
13420 VARRAY_PUSH_UINT (file_table_emitted
, 0);
13422 /* If the assembler is emitting the file table, and we aren't eliminating
13423 unused debug types, then we must emit .file here. If we are eliminating
13424 unused debug types, then this will be done by the maybe_emit_file call in
13425 prune_unused_types_walk_attribs. */
13427 if (DWARF2_ASM_LINE_DEBUG_INFO
&& ! flag_eliminate_unused_debug_types
)
13428 return maybe_emit_file (i
);
13433 /* If the assembler will construct the file table, then translate the compiler
13434 internal file table number into the assembler file table number, and emit
13435 a .file directive if we haven't already emitted one yet. The file table
13436 numbers are different because we prune debug info for unused variables and
13437 types, which may include filenames. */
13440 maybe_emit_file (int fileno
)
13442 if (DWARF2_ASM_LINE_DEBUG_INFO
&& fileno
> 0)
13444 if (!VARRAY_UINT (file_table_emitted
, fileno
))
13446 VARRAY_UINT (file_table_emitted
, fileno
) = ++emitcount
;
13447 fprintf (asm_out_file
, "\t.file %u ",
13448 VARRAY_UINT (file_table_emitted
, fileno
));
13449 output_quoted_string (asm_out_file
,
13450 VARRAY_CHAR_PTR (file_table
, fileno
));
13451 fputc ('\n', asm_out_file
);
13453 return VARRAY_UINT (file_table_emitted
, fileno
);
13459 /* Initialize the compiler internal file table. */
13462 init_file_table (void)
13464 /* Allocate the initial hunk of the file_table. */
13465 VARRAY_CHAR_PTR_INIT (file_table
, 64, "file_table");
13466 VARRAY_UINT_INIT (file_table_emitted
, 64, "file_table_emitted");
13468 /* Skip the first entry - file numbers begin at 1. */
13469 VARRAY_PUSH_CHAR_PTR (file_table
, NULL
);
13470 VARRAY_PUSH_UINT (file_table_emitted
, 0);
13471 file_table_last_lookup_index
= 0;
13474 /* Called by the final INSN scan whenever we see a var location. We
13475 use it to drop labels in the right places, and throw the location in
13476 our lookup table. */
13479 dwarf2out_var_location (rtx loc_note
)
13481 char loclabel
[MAX_ARTIFICIAL_LABEL_BYTES
];
13482 struct var_loc_node
*newloc
;
13484 static rtx last_insn
;
13485 static const char *last_label
;
13488 if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note
)))
13490 prev_insn
= PREV_INSN (loc_note
);
13492 newloc
= ggc_alloc_cleared (sizeof (struct var_loc_node
));
13493 /* If the insn we processed last time is the previous insn
13494 and it is also a var location note, use the label we emitted
13496 if (last_insn
!= NULL_RTX
13497 && last_insn
== prev_insn
13498 && NOTE_P (prev_insn
)
13499 && NOTE_LINE_NUMBER (prev_insn
) == NOTE_INSN_VAR_LOCATION
)
13501 newloc
->label
= last_label
;
13505 ASM_GENERATE_INTERNAL_LABEL (loclabel
, "LVL", loclabel_num
);
13506 ASM_OUTPUT_DEBUG_LABEL (asm_out_file
, "LVL", loclabel_num
);
13508 newloc
->label
= ggc_strdup (loclabel
);
13510 newloc
->var_loc_note
= loc_note
;
13511 newloc
->next
= NULL
;
13513 if (cfun
&& in_cold_section_p
)
13514 newloc
->section_label
= cfun
->cold_section_label
;
13516 newloc
->section_label
= text_section_label
;
13518 last_insn
= loc_note
;
13519 last_label
= newloc
->label
;
13520 decl
= NOTE_VAR_LOCATION_DECL (loc_note
);
13521 if (DECL_DEBUG_EXPR_IS_FROM (decl
) && DECL_DEBUG_EXPR (decl
)
13522 && DECL_P (DECL_DEBUG_EXPR (decl
)))
13523 decl
= DECL_DEBUG_EXPR (decl
);
13524 add_var_loc_to_decl (decl
, newloc
);
13527 /* We need to reset the locations at the beginning of each
13528 function. We can't do this in the end_function hook, because the
13529 declarations that use the locations won't have been output when
13530 that hook is called. Also compute have_multiple_function_sections here. */
13533 dwarf2out_begin_function (tree fun
)
13535 htab_empty (decl_loc_table
);
13537 if (function_section (fun
) != text_section
)
13538 have_multiple_function_sections
= true;
13541 /* Output a label to mark the beginning of a source code line entry
13542 and record information relating to this source line, in
13543 'line_info_table' for later output of the .debug_line section. */
13546 dwarf2out_source_line (unsigned int line
, const char *filename
)
13548 if (debug_info_level
>= DINFO_LEVEL_NORMAL
13551 switch_to_section (current_function_section ());
13553 /* If requested, emit something human-readable. */
13554 if (flag_debug_asm
)
13555 fprintf (asm_out_file
, "\t%s %s:%d\n", ASM_COMMENT_START
,
13558 if (DWARF2_ASM_LINE_DEBUG_INFO
)
13560 unsigned file_num
= lookup_filename (filename
);
13562 file_num
= maybe_emit_file (file_num
);
13564 /* Emit the .loc directive understood by GNU as. */
13565 fprintf (asm_out_file
, "\t.loc %d %d 0\n", file_num
, line
);
13567 /* Indicate that line number info exists. */
13568 line_info_table_in_use
++;
13570 else if (function_section (current_function_decl
) != text_section
)
13572 dw_separate_line_info_ref line_info
;
13573 targetm
.asm_out
.internal_label (asm_out_file
, SEPARATE_LINE_CODE_LABEL
,
13574 separate_line_info_table_in_use
);
13576 /* Expand the line info table if necessary. */
13577 if (separate_line_info_table_in_use
13578 == separate_line_info_table_allocated
)
13580 separate_line_info_table_allocated
+= LINE_INFO_TABLE_INCREMENT
;
13581 separate_line_info_table
13582 = ggc_realloc (separate_line_info_table
,
13583 separate_line_info_table_allocated
13584 * sizeof (dw_separate_line_info_entry
));
13585 memset (separate_line_info_table
13586 + separate_line_info_table_in_use
,
13588 (LINE_INFO_TABLE_INCREMENT
13589 * sizeof (dw_separate_line_info_entry
)));
13592 /* Add the new entry at the end of the line_info_table. */
13594 = &separate_line_info_table
[separate_line_info_table_in_use
++];
13595 line_info
->dw_file_num
= lookup_filename (filename
);
13596 line_info
->dw_line_num
= line
;
13597 line_info
->function
= current_function_funcdef_no
;
13601 dw_line_info_ref line_info
;
13603 targetm
.asm_out
.internal_label (asm_out_file
, LINE_CODE_LABEL
,
13604 line_info_table_in_use
);
13606 /* Expand the line info table if necessary. */
13607 if (line_info_table_in_use
== line_info_table_allocated
)
13609 line_info_table_allocated
+= LINE_INFO_TABLE_INCREMENT
;
13611 = ggc_realloc (line_info_table
,
13612 (line_info_table_allocated
13613 * sizeof (dw_line_info_entry
)));
13614 memset (line_info_table
+ line_info_table_in_use
, 0,
13615 LINE_INFO_TABLE_INCREMENT
* sizeof (dw_line_info_entry
));
13618 /* Add the new entry at the end of the line_info_table. */
13619 line_info
= &line_info_table
[line_info_table_in_use
++];
13620 line_info
->dw_file_num
= lookup_filename (filename
);
13621 line_info
->dw_line_num
= line
;
13626 /* Record the beginning of a new source file. */
13629 dwarf2out_start_source_file (unsigned int lineno
, const char *filename
)
13631 if (flag_eliminate_dwarf2_dups
)
13633 /* Record the beginning of the file for break_out_includes. */
13634 dw_die_ref bincl_die
;
13636 bincl_die
= new_die (DW_TAG_GNU_BINCL
, comp_unit_die
, NULL
);
13637 add_AT_string (bincl_die
, DW_AT_name
, filename
);
13640 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13644 switch_to_section (debug_macinfo_section
);
13645 dw2_asm_output_data (1, DW_MACINFO_start_file
, "Start new file");
13646 dw2_asm_output_data_uleb128 (lineno
, "Included from line number %d",
13649 fileno
= maybe_emit_file (lookup_filename (filename
));
13650 dw2_asm_output_data_uleb128 (fileno
, "Filename we just started");
13654 /* Record the end of a source file. */
13657 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED
)
13659 if (flag_eliminate_dwarf2_dups
)
13660 /* Record the end of the file for break_out_includes. */
13661 new_die (DW_TAG_GNU_EINCL
, comp_unit_die
, NULL
);
13663 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13665 switch_to_section (debug_macinfo_section
);
13666 dw2_asm_output_data (1, DW_MACINFO_end_file
, "End file");
13670 /* Called from debug_define in toplev.c. The `buffer' parameter contains
13671 the tail part of the directive line, i.e. the part which is past the
13672 initial whitespace, #, whitespace, directive-name, whitespace part. */
13675 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED
,
13676 const char *buffer ATTRIBUTE_UNUSED
)
13678 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13680 switch_to_section (debug_macinfo_section
);
13681 dw2_asm_output_data (1, DW_MACINFO_define
, "Define macro");
13682 dw2_asm_output_data_uleb128 (lineno
, "At line number %d", lineno
);
13683 dw2_asm_output_nstring (buffer
, -1, "The macro");
13687 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
13688 the tail part of the directive line, i.e. the part which is past the
13689 initial whitespace, #, whitespace, directive-name, whitespace part. */
13692 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED
,
13693 const char *buffer ATTRIBUTE_UNUSED
)
13695 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13697 switch_to_section (debug_macinfo_section
);
13698 dw2_asm_output_data (1, DW_MACINFO_undef
, "Undefine macro");
13699 dw2_asm_output_data_uleb128 (lineno
, "At line number %d", lineno
);
13700 dw2_asm_output_nstring (buffer
, -1, "The macro");
13704 /* Set up for Dwarf output at the start of compilation. */
13707 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED
)
13709 init_file_table ();
13711 /* Allocate the decl_die_table. */
13712 decl_die_table
= htab_create_ggc (10, decl_die_table_hash
,
13713 decl_die_table_eq
, NULL
);
13715 /* Allocate the decl_loc_table. */
13716 decl_loc_table
= htab_create_ggc (10, decl_loc_table_hash
,
13717 decl_loc_table_eq
, NULL
);
13719 /* Allocate the initial hunk of the decl_scope_table. */
13720 decl_scope_table
= VEC_alloc (tree
, gc
, 256);
13722 /* Allocate the initial hunk of the abbrev_die_table. */
13723 abbrev_die_table
= ggc_alloc_cleared (ABBREV_DIE_TABLE_INCREMENT
13724 * sizeof (dw_die_ref
));
13725 abbrev_die_table_allocated
= ABBREV_DIE_TABLE_INCREMENT
;
13726 /* Zero-th entry is allocated, but unused. */
13727 abbrev_die_table_in_use
= 1;
13729 /* Allocate the initial hunk of the line_info_table. */
13730 line_info_table
= ggc_alloc_cleared (LINE_INFO_TABLE_INCREMENT
13731 * sizeof (dw_line_info_entry
));
13732 line_info_table_allocated
= LINE_INFO_TABLE_INCREMENT
;
13734 /* Zero-th entry is allocated, but unused. */
13735 line_info_table_in_use
= 1;
13737 /* Generate the initial DIE for the .debug section. Note that the (string)
13738 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
13739 will (typically) be a relative pathname and that this pathname should be
13740 taken as being relative to the directory from which the compiler was
13741 invoked when the given (base) source file was compiled. We will fill
13742 in this value in dwarf2out_finish. */
13743 comp_unit_die
= gen_compile_unit_die (NULL
);
13745 incomplete_types
= VEC_alloc (tree
, gc
, 64);
13747 used_rtx_array
= VEC_alloc (rtx
, gc
, 32);
13749 debug_info_section
= get_section (DEBUG_INFO_SECTION
,
13750 SECTION_DEBUG
, NULL
);
13751 debug_abbrev_section
= get_section (DEBUG_ABBREV_SECTION
,
13752 SECTION_DEBUG
, NULL
);
13753 debug_aranges_section
= get_section (DEBUG_ARANGES_SECTION
,
13754 SECTION_DEBUG
, NULL
);
13755 debug_macinfo_section
= get_section (DEBUG_MACINFO_SECTION
,
13756 SECTION_DEBUG
, NULL
);
13757 debug_line_section
= get_section (DEBUG_LINE_SECTION
,
13758 SECTION_DEBUG
, NULL
);
13759 debug_loc_section
= get_section (DEBUG_LOC_SECTION
,
13760 SECTION_DEBUG
, NULL
);
13761 debug_pubnames_section
= get_section (DEBUG_PUBNAMES_SECTION
,
13762 SECTION_DEBUG
, NULL
);
13763 debug_str_section
= get_section (DEBUG_STR_SECTION
,
13764 DEBUG_STR_SECTION_FLAGS
, NULL
);
13765 debug_ranges_section
= get_section (DEBUG_RANGES_SECTION
,
13766 SECTION_DEBUG
, NULL
);
13768 ASM_GENERATE_INTERNAL_LABEL (text_end_label
, TEXT_END_LABEL
, 0);
13769 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label
,
13770 DEBUG_ABBREV_SECTION_LABEL
, 0);
13771 ASM_GENERATE_INTERNAL_LABEL (text_section_label
, TEXT_SECTION_LABEL
, 0);
13772 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label
,
13773 COLD_TEXT_SECTION_LABEL
, 0);
13774 ASM_GENERATE_INTERNAL_LABEL (cold_end_label
, COLD_END_LABEL
, 0);
13776 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label
,
13777 DEBUG_INFO_SECTION_LABEL
, 0);
13778 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label
,
13779 DEBUG_LINE_SECTION_LABEL
, 0);
13780 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label
,
13781 DEBUG_RANGES_SECTION_LABEL
, 0);
13782 switch_to_section (debug_abbrev_section
);
13783 ASM_OUTPUT_LABEL (asm_out_file
, abbrev_section_label
);
13784 switch_to_section (debug_info_section
);
13785 ASM_OUTPUT_LABEL (asm_out_file
, debug_info_section_label
);
13786 switch_to_section (debug_line_section
);
13787 ASM_OUTPUT_LABEL (asm_out_file
, debug_line_section_label
);
13789 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
13791 switch_to_section (debug_macinfo_section
);
13792 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label
,
13793 DEBUG_MACINFO_SECTION_LABEL
, 0);
13794 ASM_OUTPUT_LABEL (asm_out_file
, macinfo_section_label
);
13797 switch_to_section (text_section
);
13798 ASM_OUTPUT_LABEL (asm_out_file
, text_section_label
);
13799 if (flag_reorder_blocks_and_partition
)
13801 switch_to_section (unlikely_text_section ());
13802 ASM_OUTPUT_LABEL (asm_out_file
, cold_text_section_label
);
13806 /* A helper function for dwarf2out_finish called through
13807 ht_forall. Emit one queued .debug_str string. */
13810 output_indirect_string (void **h
, void *v ATTRIBUTE_UNUSED
)
13812 struct indirect_string_node
*node
= (struct indirect_string_node
*) *h
;
13814 if (node
->form
== DW_FORM_strp
)
13816 switch_to_section (debug_str_section
);
13817 ASM_OUTPUT_LABEL (asm_out_file
, node
->label
);
13818 assemble_string (node
->str
, strlen (node
->str
) + 1);
13826 /* Clear the marks for a die and its children.
13827 Be cool if the mark isn't set. */
13830 prune_unmark_dies (dw_die_ref die
)
13834 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
13835 prune_unmark_dies (c
);
13839 /* Given DIE that we're marking as used, find any other dies
13840 it references as attributes and mark them as used. */
13843 prune_unused_types_walk_attribs (dw_die_ref die
)
13847 for (a
= die
->die_attr
; a
!= NULL
; a
= a
->dw_attr_next
)
13849 if (a
->dw_attr_val
.val_class
== dw_val_class_die_ref
)
13851 /* A reference to another DIE.
13852 Make sure that it will get emitted. */
13853 prune_unused_types_mark (a
->dw_attr_val
.v
.val_die_ref
.die
, 1);
13855 else if (a
->dw_attr
== DW_AT_decl_file
|| a
->dw_attr
== DW_AT_call_file
)
13857 /* A reference to a file. Make sure the file name is emitted. */
13858 a
->dw_attr_val
.v
.val_unsigned
=
13859 maybe_emit_file (a
->dw_attr_val
.v
.val_unsigned
);
13865 /* Mark DIE as being used. If DOKIDS is true, then walk down
13866 to DIE's children. */
13869 prune_unused_types_mark (dw_die_ref die
, int dokids
)
13873 if (die
->die_mark
== 0)
13875 /* We haven't done this node yet. Mark it as used. */
13878 /* We also have to mark its parents as used.
13879 (But we don't want to mark our parents' kids due to this.) */
13880 if (die
->die_parent
)
13881 prune_unused_types_mark (die
->die_parent
, 0);
13883 /* Mark any referenced nodes. */
13884 prune_unused_types_walk_attribs (die
);
13886 /* If this node is a specification,
13887 also mark the definition, if it exists. */
13888 if (get_AT_flag (die
, DW_AT_declaration
) && die
->die_definition
)
13889 prune_unused_types_mark (die
->die_definition
, 1);
13892 if (dokids
&& die
->die_mark
!= 2)
13894 /* We need to walk the children, but haven't done so yet.
13895 Remember that we've walked the kids. */
13899 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
13901 /* If this is an array type, we need to make sure our
13902 kids get marked, even if they're types. */
13903 if (die
->die_tag
== DW_TAG_array_type
)
13904 prune_unused_types_mark (c
, 1);
13906 prune_unused_types_walk (c
);
13912 /* Walk the tree DIE and mark types that we actually use. */
13915 prune_unused_types_walk (dw_die_ref die
)
13919 /* Don't do anything if this node is already marked. */
13923 switch (die
->die_tag
) {
13924 case DW_TAG_const_type
:
13925 case DW_TAG_packed_type
:
13926 case DW_TAG_pointer_type
:
13927 case DW_TAG_reference_type
:
13928 case DW_TAG_volatile_type
:
13929 case DW_TAG_typedef
:
13930 case DW_TAG_array_type
:
13931 case DW_TAG_structure_type
:
13932 case DW_TAG_union_type
:
13933 case DW_TAG_class_type
:
13934 case DW_TAG_friend
:
13935 case DW_TAG_variant_part
:
13936 case DW_TAG_enumeration_type
:
13937 case DW_TAG_subroutine_type
:
13938 case DW_TAG_string_type
:
13939 case DW_TAG_set_type
:
13940 case DW_TAG_subrange_type
:
13941 case DW_TAG_ptr_to_member_type
:
13942 case DW_TAG_file_type
:
13943 /* It's a type node --- don't mark it. */
13947 /* Mark everything else. */
13953 /* Now, mark any dies referenced from here. */
13954 prune_unused_types_walk_attribs (die
);
13956 /* Mark children. */
13957 for (c
= die
->die_child
; c
; c
= c
->die_sib
)
13958 prune_unused_types_walk (c
);
13962 /* Remove from the tree DIE any dies that aren't marked. */
13965 prune_unused_types_prune (dw_die_ref die
)
13967 dw_die_ref c
, p
, n
;
13969 gcc_assert (die
->die_mark
);
13972 for (c
= die
->die_child
; c
; c
= n
)
13977 prune_unused_types_prune (c
);
13985 die
->die_child
= n
;
13992 /* Remove dies representing declarations that we never use. */
13995 prune_unused_types (void)
13998 limbo_die_node
*node
;
14000 /* Clear all the marks. */
14001 prune_unmark_dies (comp_unit_die
);
14002 for (node
= limbo_die_list
; node
; node
= node
->next
)
14003 prune_unmark_dies (node
->die
);
14005 /* Set the mark on nodes that are actually used. */
14006 prune_unused_types_walk (comp_unit_die
);
14007 for (node
= limbo_die_list
; node
; node
= node
->next
)
14008 prune_unused_types_walk (node
->die
);
14010 /* Also set the mark on nodes referenced from the
14011 pubname_table or arange_table. */
14012 for (i
= 0; i
< pubname_table_in_use
; i
++)
14013 prune_unused_types_mark (pubname_table
[i
].die
, 1);
14014 for (i
= 0; i
< arange_table_in_use
; i
++)
14015 prune_unused_types_mark (arange_table
[i
], 1);
14017 /* Get rid of nodes that aren't marked. */
14018 prune_unused_types_prune (comp_unit_die
);
14019 for (node
= limbo_die_list
; node
; node
= node
->next
)
14020 prune_unused_types_prune (node
->die
);
14022 /* Leave the marks clear. */
14023 prune_unmark_dies (comp_unit_die
);
14024 for (node
= limbo_die_list
; node
; node
= node
->next
)
14025 prune_unmark_dies (node
->die
);
14028 /* Output stuff that dwarf requires at the end of every file,
14029 and generate the DWARF-2 debugging info. */
14032 dwarf2out_finish (const char *filename
)
14034 limbo_die_node
*node
, *next_node
;
14035 dw_die_ref die
= 0;
14037 /* Add the name for the main input file now. We delayed this from
14038 dwarf2out_init to avoid complications with PCH. */
14039 add_name_attribute (comp_unit_die
, filename
);
14040 if (filename
[0] != DIR_SEPARATOR
)
14041 add_comp_dir_attribute (comp_unit_die
);
14042 else if (get_AT (comp_unit_die
, DW_AT_comp_dir
) == NULL
)
14045 for (i
= 1; i
< VARRAY_ACTIVE_SIZE (file_table
); i
++)
14046 if (VARRAY_CHAR_PTR (file_table
, i
)[0] != DIR_SEPARATOR
14047 /* Don't add cwd for <built-in>. */
14048 && VARRAY_CHAR_PTR (file_table
, i
)[0] != '<')
14050 add_comp_dir_attribute (comp_unit_die
);
14055 /* Traverse the limbo die list, and add parent/child links. The only
14056 dies without parents that should be here are concrete instances of
14057 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
14058 For concrete instances, we can get the parent die from the abstract
14060 for (node
= limbo_die_list
; node
; node
= next_node
)
14062 next_node
= node
->next
;
14065 if (die
->die_parent
== NULL
)
14067 dw_die_ref origin
= get_AT_ref (die
, DW_AT_abstract_origin
);
14070 add_child_die (origin
->die_parent
, die
);
14071 else if (die
== comp_unit_die
)
14073 else if (errorcount
> 0 || sorrycount
> 0)
14074 /* It's OK to be confused by errors in the input. */
14075 add_child_die (comp_unit_die
, die
);
14078 /* In certain situations, the lexical block containing a
14079 nested function can be optimized away, which results
14080 in the nested function die being orphaned. Likewise
14081 with the return type of that nested function. Force
14082 this to be a child of the containing function.
14084 It may happen that even the containing function got fully
14085 inlined and optimized out. In that case we are lost and
14086 assign the empty child. This should not be big issue as
14087 the function is likely unreachable too. */
14088 tree context
= NULL_TREE
;
14090 gcc_assert (node
->created_for
);
14092 if (DECL_P (node
->created_for
))
14093 context
= DECL_CONTEXT (node
->created_for
);
14094 else if (TYPE_P (node
->created_for
))
14095 context
= TYPE_CONTEXT (node
->created_for
);
14097 gcc_assert (context
&& TREE_CODE (context
) == FUNCTION_DECL
);
14099 origin
= lookup_decl_die (context
);
14101 add_child_die (origin
, die
);
14103 add_child_die (comp_unit_die
, die
);
14108 limbo_die_list
= NULL
;
14110 /* Walk through the list of incomplete types again, trying once more to
14111 emit full debugging info for them. */
14112 retry_incomplete_types ();
14114 /* We need to reverse all the dies before break_out_includes, or
14115 we'll see the end of an include file before the beginning. */
14116 reverse_all_dies (comp_unit_die
);
14118 if (flag_eliminate_unused_debug_types
)
14119 prune_unused_types ();
14121 /* Generate separate CUs for each of the include files we've seen.
14122 They will go into limbo_die_list. */
14123 if (flag_eliminate_dwarf2_dups
)
14124 break_out_includes (comp_unit_die
);
14126 /* Traverse the DIE's and add add sibling attributes to those DIE's
14127 that have children. */
14128 add_sibling_attributes (comp_unit_die
);
14129 for (node
= limbo_die_list
; node
; node
= node
->next
)
14130 add_sibling_attributes (node
->die
);
14132 /* Output a terminator label for the .text section. */
14133 switch_to_section (text_section
);
14134 targetm
.asm_out
.internal_label (asm_out_file
, TEXT_END_LABEL
, 0);
14135 if (flag_reorder_blocks_and_partition
)
14137 switch_to_section (unlikely_text_section ());
14138 targetm
.asm_out
.internal_label (asm_out_file
, COLD_END_LABEL
, 0);
14141 /* Output the source line correspondence table. We must do this
14142 even if there is no line information. Otherwise, on an empty
14143 translation unit, we will generate a present, but empty,
14144 .debug_info section. IRIX 6.5 `nm' will then complain when
14145 examining the file. */
14146 if (! DWARF2_ASM_LINE_DEBUG_INFO
)
14148 switch_to_section (debug_line_section
);
14149 output_line_info ();
14152 /* We can only use the low/high_pc attributes if all of the code was
14154 if (!have_multiple_function_sections
)
14156 add_AT_lbl_id (comp_unit_die
, DW_AT_low_pc
, text_section_label
);
14157 add_AT_lbl_id (comp_unit_die
, DW_AT_high_pc
, text_end_label
);
14160 /* If it wasn't, we need to give .debug_loc and .debug_ranges an appropriate
14161 "base address". Use zero so that these addresses become absolute. */
14162 else if (have_location_lists
|| ranges_table_in_use
)
14163 add_AT_addr (comp_unit_die
, DW_AT_entry_pc
, const0_rtx
);
14165 /* Output location list section if necessary. */
14166 if (have_location_lists
)
14168 /* Output the location lists info. */
14169 switch_to_section (debug_loc_section
);
14170 ASM_GENERATE_INTERNAL_LABEL (loc_section_label
,
14171 DEBUG_LOC_SECTION_LABEL
, 0);
14172 ASM_OUTPUT_LABEL (asm_out_file
, loc_section_label
);
14173 output_location_lists (die
);
14176 if (debug_info_level
>= DINFO_LEVEL_NORMAL
)
14177 add_AT_lbl_offset (comp_unit_die
, DW_AT_stmt_list
,
14178 debug_line_section_label
);
14180 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
14181 add_AT_lbl_offset (comp_unit_die
, DW_AT_macro_info
, macinfo_section_label
);
14183 /* Output all of the compilation units. We put the main one last so that
14184 the offsets are available to output_pubnames. */
14185 for (node
= limbo_die_list
; node
; node
= node
->next
)
14186 output_comp_unit (node
->die
, 0);
14188 output_comp_unit (comp_unit_die
, 0);
14190 /* Output the abbreviation table. */
14191 switch_to_section (debug_abbrev_section
);
14192 output_abbrev_section ();
14194 /* Output public names table if necessary. */
14195 if (pubname_table_in_use
)
14197 switch_to_section (debug_pubnames_section
);
14198 output_pubnames ();
14201 /* Output the address range information. We only put functions in the arange
14202 table, so don't write it out if we don't have any. */
14203 if (fde_table_in_use
)
14205 switch_to_section (debug_aranges_section
);
14209 /* Output ranges section if necessary. */
14210 if (ranges_table_in_use
)
14212 switch_to_section (debug_ranges_section
);
14213 ASM_OUTPUT_LABEL (asm_out_file
, ranges_section_label
);
14217 /* Have to end the macro section. */
14218 if (debug_info_level
>= DINFO_LEVEL_VERBOSE
)
14220 switch_to_section (debug_macinfo_section
);
14221 dw2_asm_output_data (1, 0, "End compilation unit");
14224 /* If we emitted any DW_FORM_strp form attribute, output the string
14226 if (debug_str_hash
)
14227 htab_traverse (debug_str_hash
, output_indirect_string
, NULL
);
14231 /* This should never be used, but its address is needed for comparisons. */
14232 const struct gcc_debug_hooks dwarf2_debug_hooks
;
14234 #endif /* DWARF2_DEBUGGING_INFO */
14236 #include "gt-dwarf2out.h"