2006-03-25 Thomas Koenig <Thomas.Koenig@online.de>
[official-gcc.git] / gcc / dwarf2out.c
blob6255c40208f4f4b2fa369475a734ece388437f51
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
13 version.
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
18 for more details.
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
23 02110-1301, USA. */
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
35 information. */
37 #include "config.h"
38 #include "system.h"
39 #include "coretypes.h"
40 #include "tm.h"
41 #include "tree.h"
42 #include "version.h"
43 #include "flags.h"
44 #include "real.h"
45 #include "rtl.h"
46 #include "hard-reg-set.h"
47 #include "regs.h"
48 #include "insn-config.h"
49 #include "reload.h"
50 #include "function.h"
51 #include "output.h"
52 #include "expr.h"
53 #include "libfuncs.h"
54 #include "except.h"
55 #include "dwarf2.h"
56 #include "dwarf2out.h"
57 #include "dwarf2asm.h"
58 #include "toplev.h"
59 #include "varray.h"
60 #include "ggc.h"
61 #include "md5.h"
62 #include "tm_p.h"
63 #include "diagnostic.h"
64 #include "debug.h"
65 #include "target.h"
66 #include "langhooks.h"
67 #include "hashtab.h"
68 #include "cgraph.h"
69 #include "input.h"
71 #ifdef DWARF2_DEBUGGING_INFO
72 static void dwarf2out_source_line (unsigned int, const char *);
73 #endif
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)
97 # else
98 # define DWARF2_FRAME_INFO 0
99 # endif
100 #endif
102 /* Map register numbers held in the call frame info that gcc has
103 collected using DWARF_FRAME_REGNUM to those that should be output in
104 .debug_frame and .eh_frame. */
105 #ifndef DWARF2_FRAME_REG_OUT
106 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
107 #endif
109 /* Decide whether we want to emit frame unwind information for the current
110 translation unit. */
113 dwarf2out_do_frame (void)
115 /* We want to emit correct CFA location expressions or lists, so we
116 have to return true if we're going to output debug info, even if
117 we're not going to output frame or unwind info. */
118 return (write_symbols == DWARF2_DEBUG
119 || write_symbols == VMS_AND_DWARF2_DEBUG
120 || DWARF2_FRAME_INFO
121 #ifdef DWARF2_UNWIND_INFO
122 || (DWARF2_UNWIND_INFO
123 && (flag_unwind_tables
124 || (flag_exceptions && ! USING_SJLJ_EXCEPTIONS)))
125 #endif
129 /* The size of the target's pointer type. */
130 #ifndef PTR_SIZE
131 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
132 #endif
134 /* Array of RTXes referenced by the debugging information, which therefore
135 must be kept around forever. */
136 static GTY(()) VEC(rtx,gc) *used_rtx_array;
138 /* A pointer to the base of a list of incomplete types which might be
139 completed at some later time. incomplete_types_list needs to be a
140 VEC(tree,gc) because we want to tell the garbage collector about
141 it. */
142 static GTY(()) VEC(tree,gc) *incomplete_types;
144 /* A pointer to the base of a table of references to declaration
145 scopes. This table is a display which tracks the nesting
146 of declaration scopes at the current scope and containing
147 scopes. This table is used to find the proper place to
148 define type declaration DIE's. */
149 static GTY(()) VEC(tree,gc) *decl_scope_table;
151 /* Pointers to various DWARF2 sections. */
152 static GTY(()) section *debug_info_section;
153 static GTY(()) section *debug_abbrev_section;
154 static GTY(()) section *debug_aranges_section;
155 static GTY(()) section *debug_macinfo_section;
156 static GTY(()) section *debug_line_section;
157 static GTY(()) section *debug_loc_section;
158 static GTY(()) section *debug_pubnames_section;
159 static GTY(()) section *debug_str_section;
160 static GTY(()) section *debug_ranges_section;
161 static GTY(()) section *debug_frame_section;
163 /* How to start an assembler comment. */
164 #ifndef ASM_COMMENT_START
165 #define ASM_COMMENT_START ";#"
166 #endif
168 typedef struct dw_cfi_struct *dw_cfi_ref;
169 typedef struct dw_fde_struct *dw_fde_ref;
170 typedef union dw_cfi_oprnd_struct *dw_cfi_oprnd_ref;
172 /* Call frames are described using a sequence of Call Frame
173 Information instructions. The register number, offset
174 and address fields are provided as possible operands;
175 their use is selected by the opcode field. */
177 enum dw_cfi_oprnd_type {
178 dw_cfi_oprnd_unused,
179 dw_cfi_oprnd_reg_num,
180 dw_cfi_oprnd_offset,
181 dw_cfi_oprnd_addr,
182 dw_cfi_oprnd_loc
185 typedef union dw_cfi_oprnd_struct GTY(())
187 unsigned int GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num;
188 HOST_WIDE_INT GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset;
189 const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr;
190 struct dw_loc_descr_struct * GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc;
192 dw_cfi_oprnd;
194 typedef struct dw_cfi_struct GTY(())
196 dw_cfi_ref dw_cfi_next;
197 enum dwarf_call_frame_info dw_cfi_opc;
198 dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd1_desc (%1.dw_cfi_opc)")))
199 dw_cfi_oprnd1;
200 dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd2_desc (%1.dw_cfi_opc)")))
201 dw_cfi_oprnd2;
203 dw_cfi_node;
205 /* This is how we define the location of the CFA. We use to handle it
206 as REG + OFFSET all the time, but now it can be more complex.
207 It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
208 Instead of passing around REG and OFFSET, we pass a copy
209 of this structure. */
210 typedef struct cfa_loc GTY(())
212 HOST_WIDE_INT offset;
213 HOST_WIDE_INT base_offset;
214 unsigned int reg;
215 int indirect; /* 1 if CFA is accessed via a dereference. */
216 } dw_cfa_location;
218 /* All call frame descriptions (FDE's) in the GCC generated DWARF
219 refer to a single Common Information Entry (CIE), defined at
220 the beginning of the .debug_frame section. This use of a single
221 CIE obviates the need to keep track of multiple CIE's
222 in the DWARF generation routines below. */
224 typedef struct dw_fde_struct GTY(())
226 tree decl;
227 const char *dw_fde_begin;
228 const char *dw_fde_current_label;
229 const char *dw_fde_end;
230 const char *dw_fde_hot_section_label;
231 const char *dw_fde_hot_section_end_label;
232 const char *dw_fde_unlikely_section_label;
233 const char *dw_fde_unlikely_section_end_label;
234 bool dw_fde_switched_sections;
235 dw_cfi_ref dw_fde_cfi;
236 unsigned funcdef_number;
237 unsigned all_throwers_are_sibcalls : 1;
238 unsigned nothrow : 1;
239 unsigned uses_eh_lsda : 1;
241 dw_fde_node;
243 /* Maximum size (in bytes) of an artificially generated label. */
244 #define MAX_ARTIFICIAL_LABEL_BYTES 30
246 /* The size of addresses as they appear in the Dwarf 2 data.
247 Some architectures use word addresses to refer to code locations,
248 but Dwarf 2 info always uses byte addresses. On such machines,
249 Dwarf 2 addresses need to be larger than the architecture's
250 pointers. */
251 #ifndef DWARF2_ADDR_SIZE
252 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
253 #endif
255 /* The size in bytes of a DWARF field indicating an offset or length
256 relative to a debug info section, specified to be 4 bytes in the
257 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
258 as PTR_SIZE. */
260 #ifndef DWARF_OFFSET_SIZE
261 #define DWARF_OFFSET_SIZE 4
262 #endif
264 /* According to the (draft) DWARF 3 specification, the initial length
265 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
266 bytes are 0xffffffff, followed by the length stored in the next 8
267 bytes.
269 However, the SGI/MIPS ABI uses an initial length which is equal to
270 DWARF_OFFSET_SIZE. It is defined (elsewhere) accordingly. */
272 #ifndef DWARF_INITIAL_LENGTH_SIZE
273 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
274 #endif
276 #define DWARF_VERSION 2
278 /* Round SIZE up to the nearest BOUNDARY. */
279 #define DWARF_ROUND(SIZE,BOUNDARY) \
280 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
282 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
283 #ifndef DWARF_CIE_DATA_ALIGNMENT
284 #ifdef STACK_GROWS_DOWNWARD
285 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
286 #else
287 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
288 #endif
289 #endif
291 /* A pointer to the base of a table that contains frame description
292 information for each routine. */
293 static GTY((length ("fde_table_allocated"))) dw_fde_ref fde_table;
295 /* Number of elements currently allocated for fde_table. */
296 static GTY(()) unsigned fde_table_allocated;
298 /* Number of elements in fde_table currently in use. */
299 static GTY(()) unsigned fde_table_in_use;
301 /* Size (in elements) of increments by which we may expand the
302 fde_table. */
303 #define FDE_TABLE_INCREMENT 256
305 /* A list of call frame insns for the CIE. */
306 static GTY(()) dw_cfi_ref cie_cfi_head;
308 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
309 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
310 attribute that accelerates the lookup of the FDE associated
311 with the subprogram. This variable holds the table index of the FDE
312 associated with the current function (body) definition. */
313 static unsigned current_funcdef_fde;
314 #endif
316 struct indirect_string_node GTY(())
318 const char *str;
319 unsigned int refcount;
320 unsigned int form;
321 char *label;
324 static GTY ((param_is (struct indirect_string_node))) htab_t debug_str_hash;
326 static GTY(()) int dw2_string_counter;
327 static GTY(()) unsigned long dwarf2out_cfi_label_num;
329 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
331 /* Forward declarations for functions defined in this file. */
333 static char *stripattributes (const char *);
334 static const char *dwarf_cfi_name (unsigned);
335 static dw_cfi_ref new_cfi (void);
336 static void add_cfi (dw_cfi_ref *, dw_cfi_ref);
337 static void add_fde_cfi (const char *, dw_cfi_ref);
338 static void lookup_cfa_1 (dw_cfi_ref, dw_cfa_location *);
339 static void lookup_cfa (dw_cfa_location *);
340 static void reg_save (const char *, unsigned, unsigned, HOST_WIDE_INT);
341 static void initial_return_save (rtx);
342 static HOST_WIDE_INT stack_adjust_offset (rtx);
343 static void output_cfi (dw_cfi_ref, dw_fde_ref, int);
344 static void output_call_frame_info (int);
345 static void dwarf2out_stack_adjust (rtx, bool);
346 static void flush_queued_reg_saves (void);
347 static bool clobbers_queued_reg_save (rtx);
348 static void dwarf2out_frame_debug_expr (rtx, const char *);
350 /* Support for complex CFA locations. */
351 static void output_cfa_loc (dw_cfi_ref);
352 static void get_cfa_from_loc_descr (dw_cfa_location *,
353 struct dw_loc_descr_struct *);
354 static struct dw_loc_descr_struct *build_cfa_loc
355 (dw_cfa_location *, HOST_WIDE_INT);
356 static void def_cfa_1 (const char *, dw_cfa_location *);
358 /* How to start an assembler comment. */
359 #ifndef ASM_COMMENT_START
360 #define ASM_COMMENT_START ";#"
361 #endif
363 /* Data and reference forms for relocatable data. */
364 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
365 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
367 #ifndef DEBUG_FRAME_SECTION
368 #define DEBUG_FRAME_SECTION ".debug_frame"
369 #endif
371 #ifndef FUNC_BEGIN_LABEL
372 #define FUNC_BEGIN_LABEL "LFB"
373 #endif
375 #ifndef FUNC_END_LABEL
376 #define FUNC_END_LABEL "LFE"
377 #endif
379 #ifndef FRAME_BEGIN_LABEL
380 #define FRAME_BEGIN_LABEL "Lframe"
381 #endif
382 #define CIE_AFTER_SIZE_LABEL "LSCIE"
383 #define CIE_END_LABEL "LECIE"
384 #define FDE_LABEL "LSFDE"
385 #define FDE_AFTER_SIZE_LABEL "LASFDE"
386 #define FDE_END_LABEL "LEFDE"
387 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
388 #define LINE_NUMBER_END_LABEL "LELT"
389 #define LN_PROLOG_AS_LABEL "LASLTP"
390 #define LN_PROLOG_END_LABEL "LELTP"
391 #define DIE_LABEL_PREFIX "DW"
393 /* The DWARF 2 CFA column which tracks the return address. Normally this
394 is the column for PC, or the first column after all of the hard
395 registers. */
396 #ifndef DWARF_FRAME_RETURN_COLUMN
397 #ifdef PC_REGNUM
398 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
399 #else
400 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
401 #endif
402 #endif
404 /* The mapping from gcc register number to DWARF 2 CFA column number. By
405 default, we just provide columns for all registers. */
406 #ifndef DWARF_FRAME_REGNUM
407 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
408 #endif
410 /* Hook used by __throw. */
413 expand_builtin_dwarf_sp_column (void)
415 unsigned int dwarf_regnum = DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM);
416 return GEN_INT (DWARF2_FRAME_REG_OUT (dwarf_regnum, 1));
419 /* Return a pointer to a copy of the section string name S with all
420 attributes stripped off, and an asterisk prepended (for assemble_name). */
422 static inline char *
423 stripattributes (const char *s)
425 char *stripped = XNEWVEC (char, strlen (s) + 2);
426 char *p = stripped;
428 *p++ = '*';
430 while (*s && *s != ',')
431 *p++ = *s++;
433 *p = '\0';
434 return stripped;
437 /* Generate code to initialize the register size table. */
439 void
440 expand_builtin_init_dwarf_reg_sizes (tree address)
442 unsigned int i;
443 enum machine_mode mode = TYPE_MODE (char_type_node);
444 rtx addr = expand_normal (address);
445 rtx mem = gen_rtx_MEM (BLKmode, addr);
446 bool wrote_return_column = false;
448 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
450 int rnum = DWARF2_FRAME_REG_OUT (DWARF_FRAME_REGNUM (i), 1);
452 if (rnum < DWARF_FRAME_REGISTERS)
454 HOST_WIDE_INT offset = rnum * GET_MODE_SIZE (mode);
455 enum machine_mode save_mode = reg_raw_mode[i];
456 HOST_WIDE_INT size;
458 if (HARD_REGNO_CALL_PART_CLOBBERED (i, save_mode))
459 save_mode = choose_hard_reg_mode (i, 1, true);
460 if (DWARF_FRAME_REGNUM (i) == DWARF_FRAME_RETURN_COLUMN)
462 if (save_mode == VOIDmode)
463 continue;
464 wrote_return_column = true;
466 size = GET_MODE_SIZE (save_mode);
467 if (offset < 0)
468 continue;
470 emit_move_insn (adjust_address (mem, mode, offset),
471 gen_int_mode (size, mode));
475 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
476 gcc_assert (wrote_return_column);
477 i = DWARF_ALT_FRAME_RETURN_COLUMN;
478 wrote_return_column = false;
479 #else
480 i = DWARF_FRAME_RETURN_COLUMN;
481 #endif
483 if (! wrote_return_column)
485 enum machine_mode save_mode = Pmode;
486 HOST_WIDE_INT offset = i * GET_MODE_SIZE (mode);
487 HOST_WIDE_INT size = GET_MODE_SIZE (save_mode);
488 emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
492 /* Convert a DWARF call frame info. operation to its string name */
494 static const char *
495 dwarf_cfi_name (unsigned int cfi_opc)
497 switch (cfi_opc)
499 case DW_CFA_advance_loc:
500 return "DW_CFA_advance_loc";
501 case DW_CFA_offset:
502 return "DW_CFA_offset";
503 case DW_CFA_restore:
504 return "DW_CFA_restore";
505 case DW_CFA_nop:
506 return "DW_CFA_nop";
507 case DW_CFA_set_loc:
508 return "DW_CFA_set_loc";
509 case DW_CFA_advance_loc1:
510 return "DW_CFA_advance_loc1";
511 case DW_CFA_advance_loc2:
512 return "DW_CFA_advance_loc2";
513 case DW_CFA_advance_loc4:
514 return "DW_CFA_advance_loc4";
515 case DW_CFA_offset_extended:
516 return "DW_CFA_offset_extended";
517 case DW_CFA_restore_extended:
518 return "DW_CFA_restore_extended";
519 case DW_CFA_undefined:
520 return "DW_CFA_undefined";
521 case DW_CFA_same_value:
522 return "DW_CFA_same_value";
523 case DW_CFA_register:
524 return "DW_CFA_register";
525 case DW_CFA_remember_state:
526 return "DW_CFA_remember_state";
527 case DW_CFA_restore_state:
528 return "DW_CFA_restore_state";
529 case DW_CFA_def_cfa:
530 return "DW_CFA_def_cfa";
531 case DW_CFA_def_cfa_register:
532 return "DW_CFA_def_cfa_register";
533 case DW_CFA_def_cfa_offset:
534 return "DW_CFA_def_cfa_offset";
536 /* DWARF 3 */
537 case DW_CFA_def_cfa_expression:
538 return "DW_CFA_def_cfa_expression";
539 case DW_CFA_expression:
540 return "DW_CFA_expression";
541 case DW_CFA_offset_extended_sf:
542 return "DW_CFA_offset_extended_sf";
543 case DW_CFA_def_cfa_sf:
544 return "DW_CFA_def_cfa_sf";
545 case DW_CFA_def_cfa_offset_sf:
546 return "DW_CFA_def_cfa_offset_sf";
548 /* SGI/MIPS specific */
549 case DW_CFA_MIPS_advance_loc8:
550 return "DW_CFA_MIPS_advance_loc8";
552 /* GNU extensions */
553 case DW_CFA_GNU_window_save:
554 return "DW_CFA_GNU_window_save";
555 case DW_CFA_GNU_args_size:
556 return "DW_CFA_GNU_args_size";
557 case DW_CFA_GNU_negative_offset_extended:
558 return "DW_CFA_GNU_negative_offset_extended";
560 default:
561 return "DW_CFA_<unknown>";
565 /* Return a pointer to a newly allocated Call Frame Instruction. */
567 static inline dw_cfi_ref
568 new_cfi (void)
570 dw_cfi_ref cfi = ggc_alloc (sizeof (dw_cfi_node));
572 cfi->dw_cfi_next = NULL;
573 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
574 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
576 return cfi;
579 /* Add a Call Frame Instruction to list of instructions. */
581 static inline void
582 add_cfi (dw_cfi_ref *list_head, dw_cfi_ref cfi)
584 dw_cfi_ref *p;
586 /* Find the end of the chain. */
587 for (p = list_head; (*p) != NULL; p = &(*p)->dw_cfi_next)
590 *p = cfi;
593 /* Generate a new label for the CFI info to refer to. */
595 char *
596 dwarf2out_cfi_label (void)
598 static char label[20];
600 ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", dwarf2out_cfi_label_num++);
601 ASM_OUTPUT_LABEL (asm_out_file, label);
602 return label;
605 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
606 or to the CIE if LABEL is NULL. */
608 static void
609 add_fde_cfi (const char *label, dw_cfi_ref cfi)
611 if (label)
613 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
615 if (*label == 0)
616 label = dwarf2out_cfi_label ();
618 if (fde->dw_fde_current_label == NULL
619 || strcmp (label, fde->dw_fde_current_label) != 0)
621 dw_cfi_ref xcfi;
623 fde->dw_fde_current_label = label = xstrdup (label);
625 /* Set the location counter to the new label. */
626 xcfi = new_cfi ();
627 xcfi->dw_cfi_opc = DW_CFA_advance_loc4;
628 xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
629 add_cfi (&fde->dw_fde_cfi, xcfi);
632 add_cfi (&fde->dw_fde_cfi, cfi);
635 else
636 add_cfi (&cie_cfi_head, cfi);
639 /* Subroutine of lookup_cfa. */
641 static void
642 lookup_cfa_1 (dw_cfi_ref cfi, dw_cfa_location *loc)
644 switch (cfi->dw_cfi_opc)
646 case DW_CFA_def_cfa_offset:
647 loc->offset = cfi->dw_cfi_oprnd1.dw_cfi_offset;
648 break;
649 case DW_CFA_def_cfa_offset_sf:
650 loc->offset
651 = cfi->dw_cfi_oprnd1.dw_cfi_offset * DWARF_CIE_DATA_ALIGNMENT;
652 break;
653 case DW_CFA_def_cfa_register:
654 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
655 break;
656 case DW_CFA_def_cfa:
657 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
658 loc->offset = cfi->dw_cfi_oprnd2.dw_cfi_offset;
659 break;
660 case DW_CFA_def_cfa_sf:
661 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
662 loc->offset
663 = cfi->dw_cfi_oprnd2.dw_cfi_offset * DWARF_CIE_DATA_ALIGNMENT;
664 break;
665 case DW_CFA_def_cfa_expression:
666 get_cfa_from_loc_descr (loc, cfi->dw_cfi_oprnd1.dw_cfi_loc);
667 break;
668 default:
669 break;
673 /* Find the previous value for the CFA. */
675 static void
676 lookup_cfa (dw_cfa_location *loc)
678 dw_cfi_ref cfi;
680 loc->reg = INVALID_REGNUM;
681 loc->offset = 0;
682 loc->indirect = 0;
683 loc->base_offset = 0;
685 for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
686 lookup_cfa_1 (cfi, loc);
688 if (fde_table_in_use)
690 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
691 for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
692 lookup_cfa_1 (cfi, loc);
696 /* The current rule for calculating the DWARF2 canonical frame address. */
697 static dw_cfa_location cfa;
699 /* The register used for saving registers to the stack, and its offset
700 from the CFA. */
701 static dw_cfa_location cfa_store;
703 /* The running total of the size of arguments pushed onto the stack. */
704 static HOST_WIDE_INT args_size;
706 /* The last args_size we actually output. */
707 static HOST_WIDE_INT old_args_size;
709 /* Entry point to update the canonical frame address (CFA).
710 LABEL is passed to add_fde_cfi. The value of CFA is now to be
711 calculated from REG+OFFSET. */
713 void
714 dwarf2out_def_cfa (const char *label, unsigned int reg, HOST_WIDE_INT offset)
716 dw_cfa_location loc;
717 loc.indirect = 0;
718 loc.base_offset = 0;
719 loc.reg = reg;
720 loc.offset = offset;
721 def_cfa_1 (label, &loc);
724 /* Determine if two dw_cfa_location structures define the same data. */
726 static bool
727 cfa_equal_p (const dw_cfa_location *loc1, const dw_cfa_location *loc2)
729 return (loc1->reg == loc2->reg
730 && loc1->offset == loc2->offset
731 && loc1->indirect == loc2->indirect
732 && (loc1->indirect == 0
733 || loc1->base_offset == loc2->base_offset));
736 /* This routine does the actual work. The CFA is now calculated from
737 the dw_cfa_location structure. */
739 static void
740 def_cfa_1 (const char *label, dw_cfa_location *loc_p)
742 dw_cfi_ref cfi;
743 dw_cfa_location old_cfa, loc;
745 cfa = *loc_p;
746 loc = *loc_p;
748 if (cfa_store.reg == loc.reg && loc.indirect == 0)
749 cfa_store.offset = loc.offset;
751 loc.reg = DWARF_FRAME_REGNUM (loc.reg);
752 lookup_cfa (&old_cfa);
754 /* If nothing changed, no need to issue any call frame instructions. */
755 if (cfa_equal_p (&loc, &old_cfa))
756 return;
758 cfi = new_cfi ();
760 if (loc.reg == old_cfa.reg && !loc.indirect)
762 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction, indicating
763 the CFA register did not change but the offset did. */
764 if (loc.offset < 0)
766 HOST_WIDE_INT f_offset = loc.offset / DWARF_CIE_DATA_ALIGNMENT;
767 gcc_assert (f_offset * DWARF_CIE_DATA_ALIGNMENT == loc.offset);
769 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset_sf;
770 cfi->dw_cfi_oprnd1.dw_cfi_offset = f_offset;
772 else
774 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
775 cfi->dw_cfi_oprnd1.dw_cfi_offset = loc.offset;
779 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
780 else if (loc.offset == old_cfa.offset
781 && old_cfa.reg != INVALID_REGNUM
782 && !loc.indirect)
784 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
785 indicating the CFA register has changed to <register> but the
786 offset has not changed. */
787 cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
788 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
790 #endif
792 else if (loc.indirect == 0)
794 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
795 indicating the CFA register has changed to <register> with
796 the specified offset. */
797 if (loc.offset < 0)
799 HOST_WIDE_INT f_offset = loc.offset / DWARF_CIE_DATA_ALIGNMENT;
800 gcc_assert (f_offset * DWARF_CIE_DATA_ALIGNMENT == loc.offset);
802 cfi->dw_cfi_opc = DW_CFA_def_cfa_sf;
803 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
804 cfi->dw_cfi_oprnd2.dw_cfi_offset = f_offset;
806 else
808 cfi->dw_cfi_opc = DW_CFA_def_cfa;
809 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
810 cfi->dw_cfi_oprnd2.dw_cfi_offset = loc.offset;
813 else
815 /* Construct a DW_CFA_def_cfa_expression instruction to
816 calculate the CFA using a full location expression since no
817 register-offset pair is available. */
818 struct dw_loc_descr_struct *loc_list;
820 cfi->dw_cfi_opc = DW_CFA_def_cfa_expression;
821 loc_list = build_cfa_loc (&loc, 0);
822 cfi->dw_cfi_oprnd1.dw_cfi_loc = loc_list;
825 add_fde_cfi (label, cfi);
828 /* Add the CFI for saving a register. REG is the CFA column number.
829 LABEL is passed to add_fde_cfi.
830 If SREG is -1, the register is saved at OFFSET from the CFA;
831 otherwise it is saved in SREG. */
833 static void
834 reg_save (const char *label, unsigned int reg, unsigned int sreg, HOST_WIDE_INT offset)
836 dw_cfi_ref cfi = new_cfi ();
838 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
840 if (sreg == INVALID_REGNUM)
842 if (reg & ~0x3f)
843 /* The register number won't fit in 6 bits, so we have to use
844 the long form. */
845 cfi->dw_cfi_opc = DW_CFA_offset_extended;
846 else
847 cfi->dw_cfi_opc = DW_CFA_offset;
849 #ifdef ENABLE_CHECKING
851 /* If we get an offset that is not a multiple of
852 DWARF_CIE_DATA_ALIGNMENT, there is either a bug in the
853 definition of DWARF_CIE_DATA_ALIGNMENT, or a bug in the machine
854 description. */
855 HOST_WIDE_INT check_offset = offset / DWARF_CIE_DATA_ALIGNMENT;
857 gcc_assert (check_offset * DWARF_CIE_DATA_ALIGNMENT == offset);
859 #endif
860 offset /= DWARF_CIE_DATA_ALIGNMENT;
861 if (offset < 0)
862 cfi->dw_cfi_opc = DW_CFA_offset_extended_sf;
864 cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
866 else if (sreg == reg)
867 cfi->dw_cfi_opc = DW_CFA_same_value;
868 else
870 cfi->dw_cfi_opc = DW_CFA_register;
871 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
874 add_fde_cfi (label, cfi);
877 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
878 This CFI tells the unwinder that it needs to restore the window registers
879 from the previous frame's window save area.
881 ??? Perhaps we should note in the CIE where windows are saved (instead of
882 assuming 0(cfa)) and what registers are in the window. */
884 void
885 dwarf2out_window_save (const char *label)
887 dw_cfi_ref cfi = new_cfi ();
889 cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
890 add_fde_cfi (label, cfi);
893 /* Add a CFI to update the running total of the size of arguments
894 pushed onto the stack. */
896 void
897 dwarf2out_args_size (const char *label, HOST_WIDE_INT size)
899 dw_cfi_ref cfi;
901 if (size == old_args_size)
902 return;
904 old_args_size = size;
906 cfi = new_cfi ();
907 cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
908 cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
909 add_fde_cfi (label, cfi);
912 /* Entry point for saving a register to the stack. REG is the GCC register
913 number. LABEL and OFFSET are passed to reg_save. */
915 void
916 dwarf2out_reg_save (const char *label, unsigned int reg, HOST_WIDE_INT offset)
918 reg_save (label, DWARF_FRAME_REGNUM (reg), INVALID_REGNUM, offset);
921 /* Entry point for saving the return address in the stack.
922 LABEL and OFFSET are passed to reg_save. */
924 void
925 dwarf2out_return_save (const char *label, HOST_WIDE_INT offset)
927 reg_save (label, DWARF_FRAME_RETURN_COLUMN, INVALID_REGNUM, offset);
930 /* Entry point for saving the return address in a register.
931 LABEL and SREG are passed to reg_save. */
933 void
934 dwarf2out_return_reg (const char *label, unsigned int sreg)
936 reg_save (label, DWARF_FRAME_RETURN_COLUMN, DWARF_FRAME_REGNUM (sreg), 0);
939 /* Record the initial position of the return address. RTL is
940 INCOMING_RETURN_ADDR_RTX. */
942 static void
943 initial_return_save (rtx rtl)
945 unsigned int reg = INVALID_REGNUM;
946 HOST_WIDE_INT offset = 0;
948 switch (GET_CODE (rtl))
950 case REG:
951 /* RA is in a register. */
952 reg = DWARF_FRAME_REGNUM (REGNO (rtl));
953 break;
955 case MEM:
956 /* RA is on the stack. */
957 rtl = XEXP (rtl, 0);
958 switch (GET_CODE (rtl))
960 case REG:
961 gcc_assert (REGNO (rtl) == STACK_POINTER_REGNUM);
962 offset = 0;
963 break;
965 case PLUS:
966 gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
967 offset = INTVAL (XEXP (rtl, 1));
968 break;
970 case MINUS:
971 gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
972 offset = -INTVAL (XEXP (rtl, 1));
973 break;
975 default:
976 gcc_unreachable ();
979 break;
981 case PLUS:
982 /* The return address is at some offset from any value we can
983 actually load. For instance, on the SPARC it is in %i7+8. Just
984 ignore the offset for now; it doesn't matter for unwinding frames. */
985 gcc_assert (GET_CODE (XEXP (rtl, 1)) == CONST_INT);
986 initial_return_save (XEXP (rtl, 0));
987 return;
989 default:
990 gcc_unreachable ();
993 if (reg != DWARF_FRAME_RETURN_COLUMN)
994 reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa.offset);
997 /* Given a SET, calculate the amount of stack adjustment it
998 contains. */
1000 static HOST_WIDE_INT
1001 stack_adjust_offset (rtx pattern)
1003 rtx src = SET_SRC (pattern);
1004 rtx dest = SET_DEST (pattern);
1005 HOST_WIDE_INT offset = 0;
1006 enum rtx_code code;
1008 if (dest == stack_pointer_rtx)
1010 /* (set (reg sp) (plus (reg sp) (const_int))) */
1011 code = GET_CODE (src);
1012 if (! (code == PLUS || code == MINUS)
1013 || XEXP (src, 0) != stack_pointer_rtx
1014 || GET_CODE (XEXP (src, 1)) != CONST_INT)
1015 return 0;
1017 offset = INTVAL (XEXP (src, 1));
1018 if (code == PLUS)
1019 offset = -offset;
1021 else if (MEM_P (dest))
1023 /* (set (mem (pre_dec (reg sp))) (foo)) */
1024 src = XEXP (dest, 0);
1025 code = GET_CODE (src);
1027 switch (code)
1029 case PRE_MODIFY:
1030 case POST_MODIFY:
1031 if (XEXP (src, 0) == stack_pointer_rtx)
1033 rtx val = XEXP (XEXP (src, 1), 1);
1034 /* We handle only adjustments by constant amount. */
1035 gcc_assert (GET_CODE (XEXP (src, 1)) == PLUS
1036 && GET_CODE (val) == CONST_INT);
1037 offset = -INTVAL (val);
1038 break;
1040 return 0;
1042 case PRE_DEC:
1043 case POST_DEC:
1044 if (XEXP (src, 0) == stack_pointer_rtx)
1046 offset = GET_MODE_SIZE (GET_MODE (dest));
1047 break;
1049 return 0;
1051 case PRE_INC:
1052 case POST_INC:
1053 if (XEXP (src, 0) == stack_pointer_rtx)
1055 offset = -GET_MODE_SIZE (GET_MODE (dest));
1056 break;
1058 return 0;
1060 default:
1061 return 0;
1064 else
1065 return 0;
1067 return offset;
1070 /* Check INSN to see if it looks like a push or a stack adjustment, and
1071 make a note of it if it does. EH uses this information to find out how
1072 much extra space it needs to pop off the stack. */
1074 static void
1075 dwarf2out_stack_adjust (rtx insn, bool after_p ATTRIBUTE_UNUSED)
1077 HOST_WIDE_INT offset;
1078 const char *label;
1079 int i;
1081 /* Don't handle epilogues at all. Certainly it would be wrong to do so
1082 with this function. Proper support would require all frame-related
1083 insns to be marked, and to be able to handle saving state around
1084 epilogues textually in the middle of the function. */
1085 if (prologue_epilogue_contains (insn) || sibcall_epilogue_contains (insn))
1086 return;
1088 if (BARRIER_P (insn))
1090 /* When we see a BARRIER, we know to reset args_size to 0. Usually
1091 the compiler will have already emitted a stack adjustment, but
1092 doesn't bother for calls to noreturn functions. */
1093 #ifdef STACK_GROWS_DOWNWARD
1094 offset = -args_size;
1095 #else
1096 offset = args_size;
1097 #endif
1099 else if (GET_CODE (PATTERN (insn)) == SET)
1100 offset = stack_adjust_offset (PATTERN (insn));
1101 else if (GET_CODE (PATTERN (insn)) == PARALLEL
1102 || GET_CODE (PATTERN (insn)) == SEQUENCE)
1104 /* There may be stack adjustments inside compound insns. Search
1105 for them. */
1106 for (offset = 0, i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1107 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1108 offset += stack_adjust_offset (XVECEXP (PATTERN (insn), 0, i));
1110 else if (GET_CODE (insn) == CALL_INSN)
1111 offset = 0;
1112 else
1113 return;
1115 /* We handle this separately because we want stack adjustments in a
1116 CALL_INSN to be handled. */;
1117 if (GET_CODE (insn) == CALL_INSN)
1119 /* If only calls can throw, adjust args_size only at call sites. */
1120 if (!flag_asynchronous_unwind_tables)
1121 dwarf2out_args_size ("", args_size);
1124 if (offset == 0)
1125 return;
1127 if (cfa.reg == STACK_POINTER_REGNUM)
1128 cfa.offset += offset;
1130 #ifndef STACK_GROWS_DOWNWARD
1131 offset = -offset;
1132 #endif
1134 args_size += offset;
1135 if (args_size < 0)
1136 args_size = 0;
1138 /* If only calls can throw and we have a frame pointer, we'll save
1139 up adjustments until we see the CALL_INSN. We used to return
1140 early and derive args_size from NARGS in the CALL_INSN itself,
1141 but that doesn't compute the right value if we have nested call
1142 expansions, e.g., stack adjustments for a call have already been
1143 emitted, and then we issue another call to compute an argument
1144 for the enclosing call (i.e., bar (foo ())). */
1145 if (!flag_asynchronous_unwind_tables && cfa.reg != STACK_POINTER_REGNUM)
1146 return;
1148 label = dwarf2out_cfi_label ();
1149 def_cfa_1 (label, &cfa);
1150 if (flag_asynchronous_unwind_tables)
1151 dwarf2out_args_size (label, args_size);
1154 #endif
1156 /* We delay emitting a register save until either (a) we reach the end
1157 of the prologue or (b) the register is clobbered. This clusters
1158 register saves so that there are fewer pc advances. */
1160 struct queued_reg_save GTY(())
1162 struct queued_reg_save *next;
1163 rtx reg;
1164 HOST_WIDE_INT cfa_offset;
1165 rtx saved_reg;
1168 static GTY(()) struct queued_reg_save *queued_reg_saves;
1170 /* The caller's ORIG_REG is saved in SAVED_IN_REG. */
1171 struct reg_saved_in_data GTY(()) {
1172 rtx orig_reg;
1173 rtx saved_in_reg;
1176 /* A list of registers saved in other registers.
1177 The list intentionally has a small maximum capacity of 4; if your
1178 port needs more than that, you might consider implementing a
1179 more efficient data structure. */
1180 static GTY(()) struct reg_saved_in_data regs_saved_in_regs[4];
1181 static GTY(()) size_t num_regs_saved_in_regs;
1183 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1184 static const char *last_reg_save_label;
1186 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1187 SREG, or if SREG is NULL then it is saved at OFFSET to the CFA. */
1189 static void
1190 queue_reg_save (const char *label, rtx reg, rtx sreg, HOST_WIDE_INT offset)
1192 struct queued_reg_save *q;
1194 /* Duplicates waste space, but it's also necessary to remove them
1195 for correctness, since the queue gets output in reverse
1196 order. */
1197 for (q = queued_reg_saves; q != NULL; q = q->next)
1198 if (REGNO (q->reg) == REGNO (reg))
1199 break;
1201 if (q == NULL)
1203 q = ggc_alloc (sizeof (*q));
1204 q->next = queued_reg_saves;
1205 queued_reg_saves = q;
1208 q->reg = reg;
1209 q->cfa_offset = offset;
1210 q->saved_reg = sreg;
1212 last_reg_save_label = label;
1215 /* Output all the entries in QUEUED_REG_SAVES. */
1217 static void
1218 flush_queued_reg_saves (void)
1220 struct queued_reg_save *q;
1222 for (q = queued_reg_saves; q; q = q->next)
1224 size_t i;
1225 unsigned int reg, sreg;
1227 for (i = 0; i < num_regs_saved_in_regs; i++)
1228 if (REGNO (regs_saved_in_regs[i].orig_reg) == REGNO (q->reg))
1229 break;
1230 if (q->saved_reg && i == num_regs_saved_in_regs)
1232 gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1233 num_regs_saved_in_regs++;
1235 if (i != num_regs_saved_in_regs)
1237 regs_saved_in_regs[i].orig_reg = q->reg;
1238 regs_saved_in_regs[i].saved_in_reg = q->saved_reg;
1241 reg = DWARF_FRAME_REGNUM (REGNO (q->reg));
1242 if (q->saved_reg)
1243 sreg = DWARF_FRAME_REGNUM (REGNO (q->saved_reg));
1244 else
1245 sreg = INVALID_REGNUM;
1246 reg_save (last_reg_save_label, reg, sreg, q->cfa_offset);
1249 queued_reg_saves = NULL;
1250 last_reg_save_label = NULL;
1253 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1254 location for? Or, does it clobber a register which we've previously
1255 said that some other register is saved in, and for which we now
1256 have a new location for? */
1258 static bool
1259 clobbers_queued_reg_save (rtx insn)
1261 struct queued_reg_save *q;
1263 for (q = queued_reg_saves; q; q = q->next)
1265 size_t i;
1266 if (modified_in_p (q->reg, insn))
1267 return true;
1268 for (i = 0; i < num_regs_saved_in_regs; i++)
1269 if (REGNO (q->reg) == REGNO (regs_saved_in_regs[i].orig_reg)
1270 && modified_in_p (regs_saved_in_regs[i].saved_in_reg, insn))
1271 return true;
1274 return false;
1277 /* Entry point for saving the first register into the second. */
1279 void
1280 dwarf2out_reg_save_reg (const char *label, rtx reg, rtx sreg)
1282 size_t i;
1283 unsigned int regno, sregno;
1285 for (i = 0; i < num_regs_saved_in_regs; i++)
1286 if (REGNO (regs_saved_in_regs[i].orig_reg) == REGNO (reg))
1287 break;
1288 if (i == num_regs_saved_in_regs)
1290 gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1291 num_regs_saved_in_regs++;
1293 regs_saved_in_regs[i].orig_reg = reg;
1294 regs_saved_in_regs[i].saved_in_reg = sreg;
1296 regno = DWARF_FRAME_REGNUM (REGNO (reg));
1297 sregno = DWARF_FRAME_REGNUM (REGNO (sreg));
1298 reg_save (label, regno, sregno, 0);
1301 /* What register, if any, is currently saved in REG? */
1303 static rtx
1304 reg_saved_in (rtx reg)
1306 unsigned int regn = REGNO (reg);
1307 size_t i;
1308 struct queued_reg_save *q;
1310 for (q = queued_reg_saves; q; q = q->next)
1311 if (q->saved_reg && regn == REGNO (q->saved_reg))
1312 return q->reg;
1314 for (i = 0; i < num_regs_saved_in_regs; i++)
1315 if (regs_saved_in_regs[i].saved_in_reg
1316 && regn == REGNO (regs_saved_in_regs[i].saved_in_reg))
1317 return regs_saved_in_regs[i].orig_reg;
1319 return NULL_RTX;
1323 /* A temporary register holding an integral value used in adjusting SP
1324 or setting up the store_reg. The "offset" field holds the integer
1325 value, not an offset. */
1326 static dw_cfa_location cfa_temp;
1328 /* Record call frame debugging information for an expression EXPR,
1329 which either sets SP or FP (adjusting how we calculate the frame
1330 address) or saves a register to the stack or another register.
1331 LABEL indicates the address of EXPR.
1333 This function encodes a state machine mapping rtxes to actions on
1334 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1335 users need not read the source code.
1337 The High-Level Picture
1339 Changes in the register we use to calculate the CFA: Currently we
1340 assume that if you copy the CFA register into another register, we
1341 should take the other one as the new CFA register; this seems to
1342 work pretty well. If it's wrong for some target, it's simple
1343 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1345 Changes in the register we use for saving registers to the stack:
1346 This is usually SP, but not always. Again, we deduce that if you
1347 copy SP into another register (and SP is not the CFA register),
1348 then the new register is the one we will be using for register
1349 saves. This also seems to work.
1351 Register saves: There's not much guesswork about this one; if
1352 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1353 register save, and the register used to calculate the destination
1354 had better be the one we think we're using for this purpose.
1355 It's also assumed that a copy from a call-saved register to another
1356 register is saving that register if RTX_FRAME_RELATED_P is set on
1357 that instruction. If the copy is from a call-saved register to
1358 the *same* register, that means that the register is now the same
1359 value as in the caller.
1361 Except: If the register being saved is the CFA register, and the
1362 offset is nonzero, we are saving the CFA, so we assume we have to
1363 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
1364 the intent is to save the value of SP from the previous frame.
1366 In addition, if a register has previously been saved to a different
1367 register,
1369 Invariants / Summaries of Rules
1371 cfa current rule for calculating the CFA. It usually
1372 consists of a register and an offset.
1373 cfa_store register used by prologue code to save things to the stack
1374 cfa_store.offset is the offset from the value of
1375 cfa_store.reg to the actual CFA
1376 cfa_temp register holding an integral value. cfa_temp.offset
1377 stores the value, which will be used to adjust the
1378 stack pointer. cfa_temp is also used like cfa_store,
1379 to track stores to the stack via fp or a temp reg.
1381 Rules 1- 4: Setting a register's value to cfa.reg or an expression
1382 with cfa.reg as the first operand changes the cfa.reg and its
1383 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
1384 cfa_temp.offset.
1386 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
1387 expression yielding a constant. This sets cfa_temp.reg
1388 and cfa_temp.offset.
1390 Rule 5: Create a new register cfa_store used to save items to the
1391 stack.
1393 Rules 10-14: Save a register to the stack. Define offset as the
1394 difference of the original location and cfa_store's
1395 location (or cfa_temp's location if cfa_temp is used).
1397 The Rules
1399 "{a,b}" indicates a choice of a xor b.
1400 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1402 Rule 1:
1403 (set <reg1> <reg2>:cfa.reg)
1404 effects: cfa.reg = <reg1>
1405 cfa.offset unchanged
1406 cfa_temp.reg = <reg1>
1407 cfa_temp.offset = cfa.offset
1409 Rule 2:
1410 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
1411 {<const_int>,<reg>:cfa_temp.reg}))
1412 effects: cfa.reg = sp if fp used
1413 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1414 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1415 if cfa_store.reg==sp
1417 Rule 3:
1418 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1419 effects: cfa.reg = fp
1420 cfa_offset += +/- <const_int>
1422 Rule 4:
1423 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1424 constraints: <reg1> != fp
1425 <reg1> != sp
1426 effects: cfa.reg = <reg1>
1427 cfa_temp.reg = <reg1>
1428 cfa_temp.offset = cfa.offset
1430 Rule 5:
1431 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1432 constraints: <reg1> != fp
1433 <reg1> != sp
1434 effects: cfa_store.reg = <reg1>
1435 cfa_store.offset = cfa.offset - cfa_temp.offset
1437 Rule 6:
1438 (set <reg> <const_int>)
1439 effects: cfa_temp.reg = <reg>
1440 cfa_temp.offset = <const_int>
1442 Rule 7:
1443 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1444 effects: cfa_temp.reg = <reg1>
1445 cfa_temp.offset |= <const_int>
1447 Rule 8:
1448 (set <reg> (high <exp>))
1449 effects: none
1451 Rule 9:
1452 (set <reg> (lo_sum <exp> <const_int>))
1453 effects: cfa_temp.reg = <reg>
1454 cfa_temp.offset = <const_int>
1456 Rule 10:
1457 (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1458 effects: cfa_store.offset -= <const_int>
1459 cfa.offset = cfa_store.offset if cfa.reg == sp
1460 cfa.reg = sp
1461 cfa.base_offset = -cfa_store.offset
1463 Rule 11:
1464 (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
1465 effects: cfa_store.offset += -/+ mode_size(mem)
1466 cfa.offset = cfa_store.offset if cfa.reg == sp
1467 cfa.reg = sp
1468 cfa.base_offset = -cfa_store.offset
1470 Rule 12:
1471 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
1473 <reg2>)
1474 effects: cfa.reg = <reg1>
1475 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1477 Rule 13:
1478 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1479 effects: cfa.reg = <reg1>
1480 cfa.base_offset = -{cfa_store,cfa_temp}.offset
1482 Rule 14:
1483 (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
1484 effects: cfa.reg = <reg1>
1485 cfa.base_offset = -cfa_temp.offset
1486 cfa_temp.offset -= mode_size(mem)
1488   Rule 15:
1489   (set <reg> {unspec, unspec_volatile})
1490   effects: target-dependent */
1492 static void
1493 dwarf2out_frame_debug_expr (rtx expr, const char *label)
1495 rtx src, dest;
1496 HOST_WIDE_INT offset;
1498 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1499 the PARALLEL independently. The first element is always processed if
1500 it is a SET. This is for backward compatibility. Other elements
1501 are processed only if they are SETs and the RTX_FRAME_RELATED_P
1502 flag is set in them. */
1503 if (GET_CODE (expr) == PARALLEL || GET_CODE (expr) == SEQUENCE)
1505 int par_index;
1506 int limit = XVECLEN (expr, 0);
1508 for (par_index = 0; par_index < limit; par_index++)
1509 if (GET_CODE (XVECEXP (expr, 0, par_index)) == SET
1510 && (RTX_FRAME_RELATED_P (XVECEXP (expr, 0, par_index))
1511 || par_index == 0))
1512 dwarf2out_frame_debug_expr (XVECEXP (expr, 0, par_index), label);
1514 return;
1517 gcc_assert (GET_CODE (expr) == SET);
1519 src = SET_SRC (expr);
1520 dest = SET_DEST (expr);
1522 if (REG_P (src))
1524 rtx rsi = reg_saved_in (src);
1525 if (rsi)
1526 src = rsi;
1529 switch (GET_CODE (dest))
1531 case REG:
1532 switch (GET_CODE (src))
1534 /* Setting FP from SP. */
1535 case REG:
1536 if (cfa.reg == (unsigned) REGNO (src))
1538 /* Rule 1 */
1539 /* Update the CFA rule wrt SP or FP. Make sure src is
1540 relative to the current CFA register.
1542 We used to require that dest be either SP or FP, but the
1543 ARM copies SP to a temporary register, and from there to
1544 FP. So we just rely on the backends to only set
1545 RTX_FRAME_RELATED_P on appropriate insns. */
1546 cfa.reg = REGNO (dest);
1547 cfa_temp.reg = cfa.reg;
1548 cfa_temp.offset = cfa.offset;
1550 else
1552 /* Saving a register in a register. */
1553 gcc_assert (!fixed_regs [REGNO (dest)]
1554 /* For the SPARC and its register window. */
1555 || (DWARF_FRAME_REGNUM (REGNO (src))
1556 == DWARF_FRAME_RETURN_COLUMN));
1557 queue_reg_save (label, src, dest, 0);
1559 break;
1561 case PLUS:
1562 case MINUS:
1563 case LO_SUM:
1564 if (dest == stack_pointer_rtx)
1566 /* Rule 2 */
1567 /* Adjusting SP. */
1568 switch (GET_CODE (XEXP (src, 1)))
1570 case CONST_INT:
1571 offset = INTVAL (XEXP (src, 1));
1572 break;
1573 case REG:
1574 gcc_assert ((unsigned) REGNO (XEXP (src, 1))
1575 == cfa_temp.reg);
1576 offset = cfa_temp.offset;
1577 break;
1578 default:
1579 gcc_unreachable ();
1582 if (XEXP (src, 0) == hard_frame_pointer_rtx)
1584 /* Restoring SP from FP in the epilogue. */
1585 gcc_assert (cfa.reg == (unsigned) HARD_FRAME_POINTER_REGNUM);
1586 cfa.reg = STACK_POINTER_REGNUM;
1588 else if (GET_CODE (src) == LO_SUM)
1589 /* Assume we've set the source reg of the LO_SUM from sp. */
1591 else
1592 gcc_assert (XEXP (src, 0) == stack_pointer_rtx);
1594 if (GET_CODE (src) != MINUS)
1595 offset = -offset;
1596 if (cfa.reg == STACK_POINTER_REGNUM)
1597 cfa.offset += offset;
1598 if (cfa_store.reg == STACK_POINTER_REGNUM)
1599 cfa_store.offset += offset;
1601 else if (dest == hard_frame_pointer_rtx)
1603 /* Rule 3 */
1604 /* Either setting the FP from an offset of the SP,
1605 or adjusting the FP */
1606 gcc_assert (frame_pointer_needed);
1608 gcc_assert (REG_P (XEXP (src, 0))
1609 && (unsigned) REGNO (XEXP (src, 0)) == cfa.reg
1610 && GET_CODE (XEXP (src, 1)) == CONST_INT);
1611 offset = INTVAL (XEXP (src, 1));
1612 if (GET_CODE (src) != MINUS)
1613 offset = -offset;
1614 cfa.offset += offset;
1615 cfa.reg = HARD_FRAME_POINTER_REGNUM;
1617 else
1619 gcc_assert (GET_CODE (src) != MINUS);
1621 /* Rule 4 */
1622 if (REG_P (XEXP (src, 0))
1623 && REGNO (XEXP (src, 0)) == cfa.reg
1624 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1626 /* Setting a temporary CFA register that will be copied
1627 into the FP later on. */
1628 offset = - INTVAL (XEXP (src, 1));
1629 cfa.offset += offset;
1630 cfa.reg = REGNO (dest);
1631 /* Or used to save regs to the stack. */
1632 cfa_temp.reg = cfa.reg;
1633 cfa_temp.offset = cfa.offset;
1636 /* Rule 5 */
1637 else if (REG_P (XEXP (src, 0))
1638 && REGNO (XEXP (src, 0)) == cfa_temp.reg
1639 && XEXP (src, 1) == stack_pointer_rtx)
1641 /* Setting a scratch register that we will use instead
1642 of SP for saving registers to the stack. */
1643 gcc_assert (cfa.reg == STACK_POINTER_REGNUM);
1644 cfa_store.reg = REGNO (dest);
1645 cfa_store.offset = cfa.offset - cfa_temp.offset;
1648 /* Rule 9 */
1649 else if (GET_CODE (src) == LO_SUM
1650 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1652 cfa_temp.reg = REGNO (dest);
1653 cfa_temp.offset = INTVAL (XEXP (src, 1));
1655 else
1656 gcc_unreachable ();
1658 break;
1660 /* Rule 6 */
1661 case CONST_INT:
1662 cfa_temp.reg = REGNO (dest);
1663 cfa_temp.offset = INTVAL (src);
1664 break;
1666 /* Rule 7 */
1667 case IOR:
1668 gcc_assert (REG_P (XEXP (src, 0))
1669 && (unsigned) REGNO (XEXP (src, 0)) == cfa_temp.reg
1670 && GET_CODE (XEXP (src, 1)) == CONST_INT);
1672 if ((unsigned) REGNO (dest) != cfa_temp.reg)
1673 cfa_temp.reg = REGNO (dest);
1674 cfa_temp.offset |= INTVAL (XEXP (src, 1));
1675 break;
1677 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
1678 which will fill in all of the bits. */
1679 /* Rule 8 */
1680 case HIGH:
1681 break;
1683 /* Rule 15 */
1684 case UNSPEC:
1685 case UNSPEC_VOLATILE:
1686 gcc_assert (targetm.dwarf_handle_frame_unspec);
1687 targetm.dwarf_handle_frame_unspec (label, expr, XINT (src, 1));
1688 return;
1690 default:
1691 gcc_unreachable ();
1694 def_cfa_1 (label, &cfa);
1695 break;
1697 case MEM:
1698 gcc_assert (REG_P (src));
1700 /* Saving a register to the stack. Make sure dest is relative to the
1701 CFA register. */
1702 switch (GET_CODE (XEXP (dest, 0)))
1704 /* Rule 10 */
1705 /* With a push. */
1706 case PRE_MODIFY:
1707 /* We can't handle variable size modifications. */
1708 gcc_assert (GET_CODE (XEXP (XEXP (XEXP (dest, 0), 1), 1))
1709 == CONST_INT);
1710 offset = -INTVAL (XEXP (XEXP (XEXP (dest, 0), 1), 1));
1712 gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
1713 && cfa_store.reg == STACK_POINTER_REGNUM);
1715 cfa_store.offset += offset;
1716 if (cfa.reg == STACK_POINTER_REGNUM)
1717 cfa.offset = cfa_store.offset;
1719 offset = -cfa_store.offset;
1720 break;
1722 /* Rule 11 */
1723 case PRE_INC:
1724 case PRE_DEC:
1725 offset = GET_MODE_SIZE (GET_MODE (dest));
1726 if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
1727 offset = -offset;
1729 gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
1730 && cfa_store.reg == STACK_POINTER_REGNUM);
1732 cfa_store.offset += offset;
1733 if (cfa.reg == STACK_POINTER_REGNUM)
1734 cfa.offset = cfa_store.offset;
1736 offset = -cfa_store.offset;
1737 break;
1739 /* Rule 12 */
1740 /* With an offset. */
1741 case PLUS:
1742 case MINUS:
1743 case LO_SUM:
1745 int regno;
1747 gcc_assert (GET_CODE (XEXP (XEXP (dest, 0), 1)) == CONST_INT
1748 && REG_P (XEXP (XEXP (dest, 0), 0)));
1749 offset = INTVAL (XEXP (XEXP (dest, 0), 1));
1750 if (GET_CODE (XEXP (dest, 0)) == MINUS)
1751 offset = -offset;
1753 regno = REGNO (XEXP (XEXP (dest, 0), 0));
1755 if (cfa_store.reg == (unsigned) regno)
1756 offset -= cfa_store.offset;
1757 else
1759 gcc_assert (cfa_temp.reg == (unsigned) regno);
1760 offset -= cfa_temp.offset;
1763 break;
1765 /* Rule 13 */
1766 /* Without an offset. */
1767 case REG:
1769 int regno = REGNO (XEXP (dest, 0));
1771 if (cfa_store.reg == (unsigned) regno)
1772 offset = -cfa_store.offset;
1773 else
1775 gcc_assert (cfa_temp.reg == (unsigned) regno);
1776 offset = -cfa_temp.offset;
1779 break;
1781 /* Rule 14 */
1782 case POST_INC:
1783 gcc_assert (cfa_temp.reg
1784 == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)));
1785 offset = -cfa_temp.offset;
1786 cfa_temp.offset -= GET_MODE_SIZE (GET_MODE (dest));
1787 break;
1789 default:
1790 gcc_unreachable ();
1793 if (REGNO (src) != STACK_POINTER_REGNUM
1794 && REGNO (src) != HARD_FRAME_POINTER_REGNUM
1795 && (unsigned) REGNO (src) == cfa.reg)
1797 /* We're storing the current CFA reg into the stack. */
1799 if (cfa.offset == 0)
1801 /* If the source register is exactly the CFA, assume
1802 we're saving SP like any other register; this happens
1803 on the ARM. */
1804 def_cfa_1 (label, &cfa);
1805 queue_reg_save (label, stack_pointer_rtx, NULL_RTX, offset);
1806 break;
1808 else
1810 /* Otherwise, we'll need to look in the stack to
1811 calculate the CFA. */
1812 rtx x = XEXP (dest, 0);
1814 if (!REG_P (x))
1815 x = XEXP (x, 0);
1816 gcc_assert (REG_P (x));
1818 cfa.reg = REGNO (x);
1819 cfa.base_offset = offset;
1820 cfa.indirect = 1;
1821 def_cfa_1 (label, &cfa);
1822 break;
1826 def_cfa_1 (label, &cfa);
1827 queue_reg_save (label, src, NULL_RTX, offset);
1828 break;
1830 default:
1831 gcc_unreachable ();
1835 /* Record call frame debugging information for INSN, which either
1836 sets SP or FP (adjusting how we calculate the frame address) or saves a
1837 register to the stack. If INSN is NULL_RTX, initialize our state.
1839 If AFTER_P is false, we're being called before the insn is emitted,
1840 otherwise after. Call instructions get invoked twice. */
1842 void
1843 dwarf2out_frame_debug (rtx insn, bool after_p)
1845 const char *label;
1846 rtx src;
1848 if (insn == NULL_RTX)
1850 size_t i;
1852 /* Flush any queued register saves. */
1853 flush_queued_reg_saves ();
1855 /* Set up state for generating call frame debug info. */
1856 lookup_cfa (&cfa);
1857 gcc_assert (cfa.reg
1858 == (unsigned long)DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM));
1860 cfa.reg = STACK_POINTER_REGNUM;
1861 cfa_store = cfa;
1862 cfa_temp.reg = -1;
1863 cfa_temp.offset = 0;
1865 for (i = 0; i < num_regs_saved_in_regs; i++)
1867 regs_saved_in_regs[i].orig_reg = NULL_RTX;
1868 regs_saved_in_regs[i].saved_in_reg = NULL_RTX;
1870 num_regs_saved_in_regs = 0;
1871 return;
1874 if (!NONJUMP_INSN_P (insn) || clobbers_queued_reg_save (insn))
1875 flush_queued_reg_saves ();
1877 if (! RTX_FRAME_RELATED_P (insn))
1879 if (!ACCUMULATE_OUTGOING_ARGS)
1880 dwarf2out_stack_adjust (insn, after_p);
1881 return;
1884 label = dwarf2out_cfi_label ();
1885 src = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1886 if (src)
1887 insn = XEXP (src, 0);
1888 else
1889 insn = PATTERN (insn);
1891 dwarf2out_frame_debug_expr (insn, label);
1894 #endif
1896 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
1897 static enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
1898 (enum dwarf_call_frame_info cfi);
1900 static enum dw_cfi_oprnd_type
1901 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi)
1903 switch (cfi)
1905 case DW_CFA_nop:
1906 case DW_CFA_GNU_window_save:
1907 return dw_cfi_oprnd_unused;
1909 case DW_CFA_set_loc:
1910 case DW_CFA_advance_loc1:
1911 case DW_CFA_advance_loc2:
1912 case DW_CFA_advance_loc4:
1913 case DW_CFA_MIPS_advance_loc8:
1914 return dw_cfi_oprnd_addr;
1916 case DW_CFA_offset:
1917 case DW_CFA_offset_extended:
1918 case DW_CFA_def_cfa:
1919 case DW_CFA_offset_extended_sf:
1920 case DW_CFA_def_cfa_sf:
1921 case DW_CFA_restore_extended:
1922 case DW_CFA_undefined:
1923 case DW_CFA_same_value:
1924 case DW_CFA_def_cfa_register:
1925 case DW_CFA_register:
1926 return dw_cfi_oprnd_reg_num;
1928 case DW_CFA_def_cfa_offset:
1929 case DW_CFA_GNU_args_size:
1930 case DW_CFA_def_cfa_offset_sf:
1931 return dw_cfi_oprnd_offset;
1933 case DW_CFA_def_cfa_expression:
1934 case DW_CFA_expression:
1935 return dw_cfi_oprnd_loc;
1937 default:
1938 gcc_unreachable ();
1942 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
1943 static enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
1944 (enum dwarf_call_frame_info cfi);
1946 static enum dw_cfi_oprnd_type
1947 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi)
1949 switch (cfi)
1951 case DW_CFA_def_cfa:
1952 case DW_CFA_def_cfa_sf:
1953 case DW_CFA_offset:
1954 case DW_CFA_offset_extended_sf:
1955 case DW_CFA_offset_extended:
1956 return dw_cfi_oprnd_offset;
1958 case DW_CFA_register:
1959 return dw_cfi_oprnd_reg_num;
1961 default:
1962 return dw_cfi_oprnd_unused;
1966 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1968 /* Switch to eh_frame_section. If we don't have an eh_frame_section,
1969 switch to the data section instead, and write out a synthetic label
1970 for collect2. */
1972 static void
1973 switch_to_eh_frame_section (void)
1975 tree label;
1977 #ifdef EH_FRAME_SECTION_NAME
1978 if (eh_frame_section == 0)
1980 int flags;
1982 if (EH_TABLES_CAN_BE_READ_ONLY)
1984 int fde_encoding;
1985 int per_encoding;
1986 int lsda_encoding;
1988 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
1989 /*global=*/0);
1990 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
1991 /*global=*/1);
1992 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
1993 /*global=*/0);
1994 flags = ((! flag_pic
1995 || ((fde_encoding & 0x70) != DW_EH_PE_absptr
1996 && (fde_encoding & 0x70) != DW_EH_PE_aligned
1997 && (per_encoding & 0x70) != DW_EH_PE_absptr
1998 && (per_encoding & 0x70) != DW_EH_PE_aligned
1999 && (lsda_encoding & 0x70) != DW_EH_PE_absptr
2000 && (lsda_encoding & 0x70) != DW_EH_PE_aligned))
2001 ? 0 : SECTION_WRITE);
2003 else
2004 flags = SECTION_WRITE;
2005 eh_frame_section = get_section (EH_FRAME_SECTION_NAME, flags, NULL);
2007 #endif
2009 if (eh_frame_section)
2010 switch_to_section (eh_frame_section);
2011 else
2013 /* We have no special eh_frame section. Put the information in
2014 the data section and emit special labels to guide collect2. */
2015 switch_to_section (data_section);
2016 label = get_file_function_name ('F');
2017 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
2018 targetm.asm_out.globalize_label (asm_out_file,
2019 IDENTIFIER_POINTER (label));
2020 ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
2024 /* Output a Call Frame Information opcode and its operand(s). */
2026 static void
2027 output_cfi (dw_cfi_ref cfi, dw_fde_ref fde, int for_eh)
2029 unsigned long r;
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);
2048 else
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:
2056 if (for_eh)
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),
2060 false, NULL);
2061 else
2062 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
2063 cfi->dw_cfi_oprnd1.dw_cfi_addr, NULL);
2064 break;
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;
2070 break;
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;
2076 break;
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;
2082 break;
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;
2088 break;
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);
2095 break;
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);
2102 break;
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);
2110 break;
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);
2117 break;
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);
2122 break;
2124 case DW_CFA_def_cfa_offset_sf:
2125 dw2_asm_output_data_sleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
2126 break;
2128 case DW_CFA_GNU_window_save:
2129 break;
2131 case DW_CFA_def_cfa_expression:
2132 case DW_CFA_expression:
2133 output_cfa_loc (cfi);
2134 break;
2136 case DW_CFA_GNU_negative_offset_extended:
2137 /* Obsoleted by DW_CFA_offset_extended_sf. */
2138 gcc_unreachable ();
2140 default:
2141 break;
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. */
2150 static void
2151 output_call_frame_info (int for_eh)
2153 unsigned int i;
2154 dw_fde_ref fde;
2155 dw_cfi_ref cfi;
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;
2163 int return_reg;
2165 /* Don't emit a CIE if there won't be any FDEs. */
2166 if (fde_table_in_use == 0)
2167 return;
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
2177 && for_eh)
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. */
2189 if (for_eh)
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)
2203 return;
2206 /* We're going to be generating comments, so turn on app. */
2207 if (flag_debug_asm)
2208 app_enable ();
2210 if (for_eh)
2211 switch_to_eh_frame_section ();
2212 else
2213 switch_to_section (debug_frame_section);
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;
2235 if (for_eh)
2237 char *p;
2239 /* Augmentation:
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
2245 FDE code pointers.
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)
2256 *p++ = 'P';
2257 augmentation_size += 1 + size_of_encoded_value (per_encoding);
2259 if (any_lsda_needed)
2261 *p++ = 'L';
2262 augmentation_size += 1;
2264 if (fde_encoding != DW_EH_PE_absptr)
2266 *p++ = 'R';
2267 augmentation_size += 1;
2269 if (p > augmentation + 1)
2271 augmentation[0] = 'z';
2272 *p = '\0';
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 */
2279 + 4 /* CIE Id */
2280 + 1 /* CIE version */
2281 + strlen (augmentation) + 1 /* Augmentation */
2282 + size_of_uleb128 (1) /* Code alignment */
2283 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
2284 + 1 /* RA column */
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");
2305 else
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,
2317 true, NULL);
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)
2347 continue;
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,
2354 "FDE Length");
2355 ASM_OUTPUT_LABEL (asm_out_file, l1);
2357 if (for_eh)
2358 dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
2359 else
2360 dw2_asm_output_offset (DWARF_OFFSET_SIZE, section_start_label,
2361 debug_frame_section, "FDE CIE offset");
2363 if (for_eh)
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,
2368 sym_ref,
2369 false,
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");
2392 else
2393 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
2394 fde->dw_fde_end, fde->dw_fde_begin,
2395 "FDE address range");
2397 else
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");
2418 else
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);
2438 size += pad;
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");
2452 else
2454 if (lsda_encoding == DW_EH_PE_aligned)
2455 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
2456 dw2_asm_output_data
2457 (size_of_encoded_value (lsda_encoding), 0,
2458 "Language Specific Data Area (none)");
2461 else
2462 dw2_asm_output_data_uleb128 (0, "Augmentation size");
2465 /* Loop through the Call Frame Instructions associated with
2466 this FDE. */
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);
2483 #endif
2485 /* Turn off app to make assembly quicker. */
2486 if (flag_debug_asm)
2487 app_disable ();
2490 /* Output a marker (i.e. a label) for the beginning of a function, before
2491 the prologue. */
2493 void
2494 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED,
2495 const char *file ATTRIBUTE_UNUSED)
2497 char label[MAX_ARTIFICIAL_LABEL_BYTES];
2498 char * dup_label;
2499 dw_fde_ref fde;
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
2506 be used. */
2507 if ((! flag_exceptions || USING_SJLJ_EXCEPTIONS)
2508 && ! dwarf2out_do_frame ())
2509 return;
2510 #else
2511 if (! dwarf2out_do_frame ())
2512 return;
2513 #endif
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 ())
2526 return;
2527 #endif
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
2564 if (file)
2565 dwarf2out_source_line (line, file);
2566 #endif
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
2571 been generated. */
2573 void
2574 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
2575 const char *file ATTRIBUTE_UNUSED)
2577 dw_fde_ref fde;
2578 char label[MAX_ARTIFICIAL_LABEL_BYTES];
2580 /* Output a label to mark the endpoint of the code generated for this
2581 function. */
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);
2589 void
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);
2606 #endif
2609 void
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);
2620 #endif
2622 #endif
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. */
2641 enum dw_val_class
2643 dw_val_class_addr,
2644 dw_val_class_offset,
2645 dw_val_class_loc,
2646 dw_val_class_loc_list,
2647 dw_val_class_range_list,
2648 dw_val_class_const,
2649 dw_val_class_unsigned_const,
2650 dw_val_class_long_long,
2651 dw_val_class_vec,
2652 dw_val_class_flag,
2653 dw_val_class_die_ref,
2654 dw_val_class_fde_ref,
2655 dw_val_class_lbl_id,
2656 dw_val_class_lineptr,
2657 dw_val_class_str,
2658 dw_val_class_macptr
2661 /* Describe a double word constant value. */
2662 /* ??? Every instance of long_long in the code really means CONST_DOUBLE. */
2664 typedef struct dw_long_long_struct GTY(())
2666 unsigned long hi;
2667 unsigned long low;
2669 dw_long_long_const;
2671 /* Describe a floating point constant value, or a vector constant value. */
2673 typedef struct dw_vec_struct GTY(())
2675 unsigned char * GTY((length ("%h.length"))) array;
2676 unsigned length;
2677 unsigned elt_size;
2679 dw_vec_const;
2681 /* The dw_val_node describes an attribute's value, as it is
2682 represented internally. */
2684 typedef struct dw_val_struct GTY(())
2686 enum dw_val_class val_class;
2687 union dw_val_struct_union
2689 rtx GTY ((tag ("dw_val_class_addr"))) val_addr;
2690 unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_offset"))) val_offset;
2691 dw_loc_list_ref GTY ((tag ("dw_val_class_loc_list"))) val_loc_list;
2692 dw_loc_descr_ref GTY ((tag ("dw_val_class_loc"))) val_loc;
2693 HOST_WIDE_INT GTY ((default)) val_int;
2694 unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned;
2695 dw_long_long_const GTY ((tag ("dw_val_class_long_long"))) val_long_long;
2696 dw_vec_const GTY ((tag ("dw_val_class_vec"))) val_vec;
2697 struct dw_val_die_union
2699 dw_die_ref die;
2700 int external;
2701 } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref;
2702 unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index;
2703 struct indirect_string_node * GTY ((tag ("dw_val_class_str"))) val_str;
2704 char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id;
2705 unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag;
2707 GTY ((desc ("%1.val_class"))) v;
2709 dw_val_node;
2711 /* Locations in memory are described using a sequence of stack machine
2712 operations. */
2714 typedef struct dw_loc_descr_struct GTY(())
2716 dw_loc_descr_ref dw_loc_next;
2717 enum dwarf_location_atom dw_loc_opc;
2718 dw_val_node dw_loc_oprnd1;
2719 dw_val_node dw_loc_oprnd2;
2720 int dw_loc_addr;
2722 dw_loc_descr_node;
2724 /* Location lists are ranges + location descriptions for that range,
2725 so you can track variables that are in different places over
2726 their entire life. */
2727 typedef struct dw_loc_list_struct GTY(())
2729 dw_loc_list_ref dw_loc_next;
2730 const char *begin; /* Label for begin address of range */
2731 const char *end; /* Label for end address of range */
2732 char *ll_symbol; /* Label for beginning of location list.
2733 Only on head of list */
2734 const char *section; /* Section this loclist is relative to */
2735 dw_loc_descr_ref expr;
2736 } dw_loc_list_node;
2738 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
2740 static const char *dwarf_stack_op_name (unsigned);
2741 static dw_loc_descr_ref new_loc_descr (enum dwarf_location_atom,
2742 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
2743 static void add_loc_descr (dw_loc_descr_ref *, dw_loc_descr_ref);
2744 static unsigned long size_of_loc_descr (dw_loc_descr_ref);
2745 static unsigned long size_of_locs (dw_loc_descr_ref);
2746 static void output_loc_operands (dw_loc_descr_ref);
2747 static void output_loc_sequence (dw_loc_descr_ref);
2749 /* Convert a DWARF stack opcode into its string name. */
2751 static const char *
2752 dwarf_stack_op_name (unsigned int op)
2754 switch (op)
2756 case DW_OP_addr:
2757 case INTERNAL_DW_OP_tls_addr:
2758 return "DW_OP_addr";
2759 case DW_OP_deref:
2760 return "DW_OP_deref";
2761 case DW_OP_const1u:
2762 return "DW_OP_const1u";
2763 case DW_OP_const1s:
2764 return "DW_OP_const1s";
2765 case DW_OP_const2u:
2766 return "DW_OP_const2u";
2767 case DW_OP_const2s:
2768 return "DW_OP_const2s";
2769 case DW_OP_const4u:
2770 return "DW_OP_const4u";
2771 case DW_OP_const4s:
2772 return "DW_OP_const4s";
2773 case DW_OP_const8u:
2774 return "DW_OP_const8u";
2775 case DW_OP_const8s:
2776 return "DW_OP_const8s";
2777 case DW_OP_constu:
2778 return "DW_OP_constu";
2779 case DW_OP_consts:
2780 return "DW_OP_consts";
2781 case DW_OP_dup:
2782 return "DW_OP_dup";
2783 case DW_OP_drop:
2784 return "DW_OP_drop";
2785 case DW_OP_over:
2786 return "DW_OP_over";
2787 case DW_OP_pick:
2788 return "DW_OP_pick";
2789 case DW_OP_swap:
2790 return "DW_OP_swap";
2791 case DW_OP_rot:
2792 return "DW_OP_rot";
2793 case DW_OP_xderef:
2794 return "DW_OP_xderef";
2795 case DW_OP_abs:
2796 return "DW_OP_abs";
2797 case DW_OP_and:
2798 return "DW_OP_and";
2799 case DW_OP_div:
2800 return "DW_OP_div";
2801 case DW_OP_minus:
2802 return "DW_OP_minus";
2803 case DW_OP_mod:
2804 return "DW_OP_mod";
2805 case DW_OP_mul:
2806 return "DW_OP_mul";
2807 case DW_OP_neg:
2808 return "DW_OP_neg";
2809 case DW_OP_not:
2810 return "DW_OP_not";
2811 case DW_OP_or:
2812 return "DW_OP_or";
2813 case DW_OP_plus:
2814 return "DW_OP_plus";
2815 case DW_OP_plus_uconst:
2816 return "DW_OP_plus_uconst";
2817 case DW_OP_shl:
2818 return "DW_OP_shl";
2819 case DW_OP_shr:
2820 return "DW_OP_shr";
2821 case DW_OP_shra:
2822 return "DW_OP_shra";
2823 case DW_OP_xor:
2824 return "DW_OP_xor";
2825 case DW_OP_bra:
2826 return "DW_OP_bra";
2827 case DW_OP_eq:
2828 return "DW_OP_eq";
2829 case DW_OP_ge:
2830 return "DW_OP_ge";
2831 case DW_OP_gt:
2832 return "DW_OP_gt";
2833 case DW_OP_le:
2834 return "DW_OP_le";
2835 case DW_OP_lt:
2836 return "DW_OP_lt";
2837 case DW_OP_ne:
2838 return "DW_OP_ne";
2839 case DW_OP_skip:
2840 return "DW_OP_skip";
2841 case DW_OP_lit0:
2842 return "DW_OP_lit0";
2843 case DW_OP_lit1:
2844 return "DW_OP_lit1";
2845 case DW_OP_lit2:
2846 return "DW_OP_lit2";
2847 case DW_OP_lit3:
2848 return "DW_OP_lit3";
2849 case DW_OP_lit4:
2850 return "DW_OP_lit4";
2851 case DW_OP_lit5:
2852 return "DW_OP_lit5";
2853 case DW_OP_lit6:
2854 return "DW_OP_lit6";
2855 case DW_OP_lit7:
2856 return "DW_OP_lit7";
2857 case DW_OP_lit8:
2858 return "DW_OP_lit8";
2859 case DW_OP_lit9:
2860 return "DW_OP_lit9";
2861 case DW_OP_lit10:
2862 return "DW_OP_lit10";
2863 case DW_OP_lit11:
2864 return "DW_OP_lit11";
2865 case DW_OP_lit12:
2866 return "DW_OP_lit12";
2867 case DW_OP_lit13:
2868 return "DW_OP_lit13";
2869 case DW_OP_lit14:
2870 return "DW_OP_lit14";
2871 case DW_OP_lit15:
2872 return "DW_OP_lit15";
2873 case DW_OP_lit16:
2874 return "DW_OP_lit16";
2875 case DW_OP_lit17:
2876 return "DW_OP_lit17";
2877 case DW_OP_lit18:
2878 return "DW_OP_lit18";
2879 case DW_OP_lit19:
2880 return "DW_OP_lit19";
2881 case DW_OP_lit20:
2882 return "DW_OP_lit20";
2883 case DW_OP_lit21:
2884 return "DW_OP_lit21";
2885 case DW_OP_lit22:
2886 return "DW_OP_lit22";
2887 case DW_OP_lit23:
2888 return "DW_OP_lit23";
2889 case DW_OP_lit24:
2890 return "DW_OP_lit24";
2891 case DW_OP_lit25:
2892 return "DW_OP_lit25";
2893 case DW_OP_lit26:
2894 return "DW_OP_lit26";
2895 case DW_OP_lit27:
2896 return "DW_OP_lit27";
2897 case DW_OP_lit28:
2898 return "DW_OP_lit28";
2899 case DW_OP_lit29:
2900 return "DW_OP_lit29";
2901 case DW_OP_lit30:
2902 return "DW_OP_lit30";
2903 case DW_OP_lit31:
2904 return "DW_OP_lit31";
2905 case DW_OP_reg0:
2906 return "DW_OP_reg0";
2907 case DW_OP_reg1:
2908 return "DW_OP_reg1";
2909 case DW_OP_reg2:
2910 return "DW_OP_reg2";
2911 case DW_OP_reg3:
2912 return "DW_OP_reg3";
2913 case DW_OP_reg4:
2914 return "DW_OP_reg4";
2915 case DW_OP_reg5:
2916 return "DW_OP_reg5";
2917 case DW_OP_reg6:
2918 return "DW_OP_reg6";
2919 case DW_OP_reg7:
2920 return "DW_OP_reg7";
2921 case DW_OP_reg8:
2922 return "DW_OP_reg8";
2923 case DW_OP_reg9:
2924 return "DW_OP_reg9";
2925 case DW_OP_reg10:
2926 return "DW_OP_reg10";
2927 case DW_OP_reg11:
2928 return "DW_OP_reg11";
2929 case DW_OP_reg12:
2930 return "DW_OP_reg12";
2931 case DW_OP_reg13:
2932 return "DW_OP_reg13";
2933 case DW_OP_reg14:
2934 return "DW_OP_reg14";
2935 case DW_OP_reg15:
2936 return "DW_OP_reg15";
2937 case DW_OP_reg16:
2938 return "DW_OP_reg16";
2939 case DW_OP_reg17:
2940 return "DW_OP_reg17";
2941 case DW_OP_reg18:
2942 return "DW_OP_reg18";
2943 case DW_OP_reg19:
2944 return "DW_OP_reg19";
2945 case DW_OP_reg20:
2946 return "DW_OP_reg20";
2947 case DW_OP_reg21:
2948 return "DW_OP_reg21";
2949 case DW_OP_reg22:
2950 return "DW_OP_reg22";
2951 case DW_OP_reg23:
2952 return "DW_OP_reg23";
2953 case DW_OP_reg24:
2954 return "DW_OP_reg24";
2955 case DW_OP_reg25:
2956 return "DW_OP_reg25";
2957 case DW_OP_reg26:
2958 return "DW_OP_reg26";
2959 case DW_OP_reg27:
2960 return "DW_OP_reg27";
2961 case DW_OP_reg28:
2962 return "DW_OP_reg28";
2963 case DW_OP_reg29:
2964 return "DW_OP_reg29";
2965 case DW_OP_reg30:
2966 return "DW_OP_reg30";
2967 case DW_OP_reg31:
2968 return "DW_OP_reg31";
2969 case DW_OP_breg0:
2970 return "DW_OP_breg0";
2971 case DW_OP_breg1:
2972 return "DW_OP_breg1";
2973 case DW_OP_breg2:
2974 return "DW_OP_breg2";
2975 case DW_OP_breg3:
2976 return "DW_OP_breg3";
2977 case DW_OP_breg4:
2978 return "DW_OP_breg4";
2979 case DW_OP_breg5:
2980 return "DW_OP_breg5";
2981 case DW_OP_breg6:
2982 return "DW_OP_breg6";
2983 case DW_OP_breg7:
2984 return "DW_OP_breg7";
2985 case DW_OP_breg8:
2986 return "DW_OP_breg8";
2987 case DW_OP_breg9:
2988 return "DW_OP_breg9";
2989 case DW_OP_breg10:
2990 return "DW_OP_breg10";
2991 case DW_OP_breg11:
2992 return "DW_OP_breg11";
2993 case DW_OP_breg12:
2994 return "DW_OP_breg12";
2995 case DW_OP_breg13:
2996 return "DW_OP_breg13";
2997 case DW_OP_breg14:
2998 return "DW_OP_breg14";
2999 case DW_OP_breg15:
3000 return "DW_OP_breg15";
3001 case DW_OP_breg16:
3002 return "DW_OP_breg16";
3003 case DW_OP_breg17:
3004 return "DW_OP_breg17";
3005 case DW_OP_breg18:
3006 return "DW_OP_breg18";
3007 case DW_OP_breg19:
3008 return "DW_OP_breg19";
3009 case DW_OP_breg20:
3010 return "DW_OP_breg20";
3011 case DW_OP_breg21:
3012 return "DW_OP_breg21";
3013 case DW_OP_breg22:
3014 return "DW_OP_breg22";
3015 case DW_OP_breg23:
3016 return "DW_OP_breg23";
3017 case DW_OP_breg24:
3018 return "DW_OP_breg24";
3019 case DW_OP_breg25:
3020 return "DW_OP_breg25";
3021 case DW_OP_breg26:
3022 return "DW_OP_breg26";
3023 case DW_OP_breg27:
3024 return "DW_OP_breg27";
3025 case DW_OP_breg28:
3026 return "DW_OP_breg28";
3027 case DW_OP_breg29:
3028 return "DW_OP_breg29";
3029 case DW_OP_breg30:
3030 return "DW_OP_breg30";
3031 case DW_OP_breg31:
3032 return "DW_OP_breg31";
3033 case DW_OP_regx:
3034 return "DW_OP_regx";
3035 case DW_OP_fbreg:
3036 return "DW_OP_fbreg";
3037 case DW_OP_bregx:
3038 return "DW_OP_bregx";
3039 case DW_OP_piece:
3040 return "DW_OP_piece";
3041 case DW_OP_deref_size:
3042 return "DW_OP_deref_size";
3043 case DW_OP_xderef_size:
3044 return "DW_OP_xderef_size";
3045 case DW_OP_nop:
3046 return "DW_OP_nop";
3047 case DW_OP_push_object_address:
3048 return "DW_OP_push_object_address";
3049 case DW_OP_call2:
3050 return "DW_OP_call2";
3051 case DW_OP_call4:
3052 return "DW_OP_call4";
3053 case DW_OP_call_ref:
3054 return "DW_OP_call_ref";
3055 case DW_OP_GNU_push_tls_address:
3056 return "DW_OP_GNU_push_tls_address";
3057 default:
3058 return "OP_<unknown>";
3062 /* Return a pointer to a newly allocated location description. Location
3063 descriptions are simple expression terms that can be strung
3064 together to form more complicated location (address) descriptions. */
3066 static inline dw_loc_descr_ref
3067 new_loc_descr (enum dwarf_location_atom op, unsigned HOST_WIDE_INT oprnd1,
3068 unsigned HOST_WIDE_INT oprnd2)
3070 dw_loc_descr_ref descr = ggc_alloc_cleared (sizeof (dw_loc_descr_node));
3072 descr->dw_loc_opc = op;
3073 descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
3074 descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
3075 descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
3076 descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
3078 return descr;
3081 /* Add a location description term to a location description expression. */
3083 static inline void
3084 add_loc_descr (dw_loc_descr_ref *list_head, dw_loc_descr_ref descr)
3086 dw_loc_descr_ref *d;
3088 /* Find the end of the chain. */
3089 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
3092 *d = descr;
3095 /* Return the size of a location descriptor. */
3097 static unsigned long
3098 size_of_loc_descr (dw_loc_descr_ref loc)
3100 unsigned long size = 1;
3102 switch (loc->dw_loc_opc)
3104 case DW_OP_addr:
3105 case INTERNAL_DW_OP_tls_addr:
3106 size += DWARF2_ADDR_SIZE;
3107 break;
3108 case DW_OP_const1u:
3109 case DW_OP_const1s:
3110 size += 1;
3111 break;
3112 case DW_OP_const2u:
3113 case DW_OP_const2s:
3114 size += 2;
3115 break;
3116 case DW_OP_const4u:
3117 case DW_OP_const4s:
3118 size += 4;
3119 break;
3120 case DW_OP_const8u:
3121 case DW_OP_const8s:
3122 size += 8;
3123 break;
3124 case DW_OP_constu:
3125 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3126 break;
3127 case DW_OP_consts:
3128 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
3129 break;
3130 case DW_OP_pick:
3131 size += 1;
3132 break;
3133 case DW_OP_plus_uconst:
3134 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3135 break;
3136 case DW_OP_skip:
3137 case DW_OP_bra:
3138 size += 2;
3139 break;
3140 case DW_OP_breg0:
3141 case DW_OP_breg1:
3142 case DW_OP_breg2:
3143 case DW_OP_breg3:
3144 case DW_OP_breg4:
3145 case DW_OP_breg5:
3146 case DW_OP_breg6:
3147 case DW_OP_breg7:
3148 case DW_OP_breg8:
3149 case DW_OP_breg9:
3150 case DW_OP_breg10:
3151 case DW_OP_breg11:
3152 case DW_OP_breg12:
3153 case DW_OP_breg13:
3154 case DW_OP_breg14:
3155 case DW_OP_breg15:
3156 case DW_OP_breg16:
3157 case DW_OP_breg17:
3158 case DW_OP_breg18:
3159 case DW_OP_breg19:
3160 case DW_OP_breg20:
3161 case DW_OP_breg21:
3162 case DW_OP_breg22:
3163 case DW_OP_breg23:
3164 case DW_OP_breg24:
3165 case DW_OP_breg25:
3166 case DW_OP_breg26:
3167 case DW_OP_breg27:
3168 case DW_OP_breg28:
3169 case DW_OP_breg29:
3170 case DW_OP_breg30:
3171 case DW_OP_breg31:
3172 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
3173 break;
3174 case DW_OP_regx:
3175 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3176 break;
3177 case DW_OP_fbreg:
3178 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
3179 break;
3180 case DW_OP_bregx:
3181 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3182 size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
3183 break;
3184 case DW_OP_piece:
3185 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3186 break;
3187 case DW_OP_deref_size:
3188 case DW_OP_xderef_size:
3189 size += 1;
3190 break;
3191 case DW_OP_call2:
3192 size += 2;
3193 break;
3194 case DW_OP_call4:
3195 size += 4;
3196 break;
3197 case DW_OP_call_ref:
3198 size += DWARF2_ADDR_SIZE;
3199 break;
3200 default:
3201 break;
3204 return size;
3207 /* Return the size of a series of location descriptors. */
3209 static unsigned long
3210 size_of_locs (dw_loc_descr_ref loc)
3212 unsigned long size;
3214 for (size = 0; loc != NULL; loc = loc->dw_loc_next)
3216 loc->dw_loc_addr = size;
3217 size += size_of_loc_descr (loc);
3220 return size;
3223 /* Output location description stack opcode's operands (if any). */
3225 static void
3226 output_loc_operands (dw_loc_descr_ref loc)
3228 dw_val_ref val1 = &loc->dw_loc_oprnd1;
3229 dw_val_ref val2 = &loc->dw_loc_oprnd2;
3231 switch (loc->dw_loc_opc)
3233 #ifdef DWARF2_DEBUGGING_INFO
3234 case DW_OP_addr:
3235 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
3236 break;
3237 case DW_OP_const2u:
3238 case DW_OP_const2s:
3239 dw2_asm_output_data (2, val1->v.val_int, NULL);
3240 break;
3241 case DW_OP_const4u:
3242 case DW_OP_const4s:
3243 dw2_asm_output_data (4, val1->v.val_int, NULL);
3244 break;
3245 case DW_OP_const8u:
3246 case DW_OP_const8s:
3247 gcc_assert (HOST_BITS_PER_LONG >= 64);
3248 dw2_asm_output_data (8, val1->v.val_int, NULL);
3249 break;
3250 case DW_OP_skip:
3251 case DW_OP_bra:
3253 int offset;
3255 gcc_assert (val1->val_class == dw_val_class_loc);
3256 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
3258 dw2_asm_output_data (2, offset, NULL);
3260 break;
3261 #else
3262 case DW_OP_addr:
3263 case DW_OP_const2u:
3264 case DW_OP_const2s:
3265 case DW_OP_const4u:
3266 case DW_OP_const4s:
3267 case DW_OP_const8u:
3268 case DW_OP_const8s:
3269 case DW_OP_skip:
3270 case DW_OP_bra:
3271 /* We currently don't make any attempt to make sure these are
3272 aligned properly like we do for the main unwind info, so
3273 don't support emitting things larger than a byte if we're
3274 only doing unwinding. */
3275 gcc_unreachable ();
3276 #endif
3277 case DW_OP_const1u:
3278 case DW_OP_const1s:
3279 dw2_asm_output_data (1, val1->v.val_int, NULL);
3280 break;
3281 case DW_OP_constu:
3282 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3283 break;
3284 case DW_OP_consts:
3285 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3286 break;
3287 case DW_OP_pick:
3288 dw2_asm_output_data (1, val1->v.val_int, NULL);
3289 break;
3290 case DW_OP_plus_uconst:
3291 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3292 break;
3293 case DW_OP_breg0:
3294 case DW_OP_breg1:
3295 case DW_OP_breg2:
3296 case DW_OP_breg3:
3297 case DW_OP_breg4:
3298 case DW_OP_breg5:
3299 case DW_OP_breg6:
3300 case DW_OP_breg7:
3301 case DW_OP_breg8:
3302 case DW_OP_breg9:
3303 case DW_OP_breg10:
3304 case DW_OP_breg11:
3305 case DW_OP_breg12:
3306 case DW_OP_breg13:
3307 case DW_OP_breg14:
3308 case DW_OP_breg15:
3309 case DW_OP_breg16:
3310 case DW_OP_breg17:
3311 case DW_OP_breg18:
3312 case DW_OP_breg19:
3313 case DW_OP_breg20:
3314 case DW_OP_breg21:
3315 case DW_OP_breg22:
3316 case DW_OP_breg23:
3317 case DW_OP_breg24:
3318 case DW_OP_breg25:
3319 case DW_OP_breg26:
3320 case DW_OP_breg27:
3321 case DW_OP_breg28:
3322 case DW_OP_breg29:
3323 case DW_OP_breg30:
3324 case DW_OP_breg31:
3325 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3326 break;
3327 case DW_OP_regx:
3328 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3329 break;
3330 case DW_OP_fbreg:
3331 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3332 break;
3333 case DW_OP_bregx:
3334 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3335 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
3336 break;
3337 case DW_OP_piece:
3338 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3339 break;
3340 case DW_OP_deref_size:
3341 case DW_OP_xderef_size:
3342 dw2_asm_output_data (1, val1->v.val_int, NULL);
3343 break;
3345 case INTERNAL_DW_OP_tls_addr:
3346 if (targetm.asm_out.output_dwarf_dtprel)
3348 targetm.asm_out.output_dwarf_dtprel (asm_out_file,
3349 DWARF2_ADDR_SIZE,
3350 val1->v.val_addr);
3351 fputc ('\n', asm_out_file);
3353 else
3354 gcc_unreachable ();
3355 break;
3357 default:
3358 /* Other codes have no operands. */
3359 break;
3363 /* Output a sequence of location operations. */
3365 static void
3366 output_loc_sequence (dw_loc_descr_ref loc)
3368 for (; loc != NULL; loc = loc->dw_loc_next)
3370 /* Output the opcode. */
3371 dw2_asm_output_data (1, loc->dw_loc_opc,
3372 "%s", dwarf_stack_op_name (loc->dw_loc_opc));
3374 /* Output the operand(s) (if any). */
3375 output_loc_operands (loc);
3379 /* This routine will generate the correct assembly data for a location
3380 description based on a cfi entry with a complex address. */
3382 static void
3383 output_cfa_loc (dw_cfi_ref cfi)
3385 dw_loc_descr_ref loc;
3386 unsigned long size;
3388 /* Output the size of the block. */
3389 loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
3390 size = size_of_locs (loc);
3391 dw2_asm_output_data_uleb128 (size, NULL);
3393 /* Now output the operations themselves. */
3394 output_loc_sequence (loc);
3397 /* This function builds a dwarf location descriptor sequence from a
3398 dw_cfa_location, adding the given OFFSET to the result of the
3399 expression. */
3401 static struct dw_loc_descr_struct *
3402 build_cfa_loc (dw_cfa_location *cfa, HOST_WIDE_INT offset)
3404 struct dw_loc_descr_struct *head, *tmp;
3406 offset += cfa->offset;
3408 if (cfa->indirect)
3410 if (cfa->base_offset)
3412 if (cfa->reg <= 31)
3413 head = new_loc_descr (DW_OP_breg0 + cfa->reg, cfa->base_offset, 0);
3414 else
3415 head = new_loc_descr (DW_OP_bregx, cfa->reg, cfa->base_offset);
3417 else if (cfa->reg <= 31)
3418 head = new_loc_descr (DW_OP_reg0 + cfa->reg, 0, 0);
3419 else
3420 head = new_loc_descr (DW_OP_regx, cfa->reg, 0);
3422 head->dw_loc_oprnd1.val_class = dw_val_class_const;
3423 tmp = new_loc_descr (DW_OP_deref, 0, 0);
3424 add_loc_descr (&head, tmp);
3425 if (offset != 0)
3427 tmp = new_loc_descr (DW_OP_plus_uconst, offset, 0);
3428 add_loc_descr (&head, tmp);
3431 else
3433 if (offset == 0)
3434 if (cfa->reg <= 31)
3435 head = new_loc_descr (DW_OP_reg0 + cfa->reg, 0, 0);
3436 else
3437 head = new_loc_descr (DW_OP_regx, cfa->reg, 0);
3438 else if (cfa->reg <= 31)
3439 head = new_loc_descr (DW_OP_breg0 + cfa->reg, offset, 0);
3440 else
3441 head = new_loc_descr (DW_OP_bregx, cfa->reg, offset);
3444 return head;
3447 /* This function fills in aa dw_cfa_location structure from a dwarf location
3448 descriptor sequence. */
3450 static void
3451 get_cfa_from_loc_descr (dw_cfa_location *cfa, struct dw_loc_descr_struct *loc)
3453 struct dw_loc_descr_struct *ptr;
3454 cfa->offset = 0;
3455 cfa->base_offset = 0;
3456 cfa->indirect = 0;
3457 cfa->reg = -1;
3459 for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
3461 enum dwarf_location_atom op = ptr->dw_loc_opc;
3463 switch (op)
3465 case DW_OP_reg0:
3466 case DW_OP_reg1:
3467 case DW_OP_reg2:
3468 case DW_OP_reg3:
3469 case DW_OP_reg4:
3470 case DW_OP_reg5:
3471 case DW_OP_reg6:
3472 case DW_OP_reg7:
3473 case DW_OP_reg8:
3474 case DW_OP_reg9:
3475 case DW_OP_reg10:
3476 case DW_OP_reg11:
3477 case DW_OP_reg12:
3478 case DW_OP_reg13:
3479 case DW_OP_reg14:
3480 case DW_OP_reg15:
3481 case DW_OP_reg16:
3482 case DW_OP_reg17:
3483 case DW_OP_reg18:
3484 case DW_OP_reg19:
3485 case DW_OP_reg20:
3486 case DW_OP_reg21:
3487 case DW_OP_reg22:
3488 case DW_OP_reg23:
3489 case DW_OP_reg24:
3490 case DW_OP_reg25:
3491 case DW_OP_reg26:
3492 case DW_OP_reg27:
3493 case DW_OP_reg28:
3494 case DW_OP_reg29:
3495 case DW_OP_reg30:
3496 case DW_OP_reg31:
3497 cfa->reg = op - DW_OP_reg0;
3498 break;
3499 case DW_OP_regx:
3500 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3501 break;
3502 case DW_OP_breg0:
3503 case DW_OP_breg1:
3504 case DW_OP_breg2:
3505 case DW_OP_breg3:
3506 case DW_OP_breg4:
3507 case DW_OP_breg5:
3508 case DW_OP_breg6:
3509 case DW_OP_breg7:
3510 case DW_OP_breg8:
3511 case DW_OP_breg9:
3512 case DW_OP_breg10:
3513 case DW_OP_breg11:
3514 case DW_OP_breg12:
3515 case DW_OP_breg13:
3516 case DW_OP_breg14:
3517 case DW_OP_breg15:
3518 case DW_OP_breg16:
3519 case DW_OP_breg17:
3520 case DW_OP_breg18:
3521 case DW_OP_breg19:
3522 case DW_OP_breg20:
3523 case DW_OP_breg21:
3524 case DW_OP_breg22:
3525 case DW_OP_breg23:
3526 case DW_OP_breg24:
3527 case DW_OP_breg25:
3528 case DW_OP_breg26:
3529 case DW_OP_breg27:
3530 case DW_OP_breg28:
3531 case DW_OP_breg29:
3532 case DW_OP_breg30:
3533 case DW_OP_breg31:
3534 cfa->reg = op - DW_OP_breg0;
3535 cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
3536 break;
3537 case DW_OP_bregx:
3538 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3539 cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
3540 break;
3541 case DW_OP_deref:
3542 cfa->indirect = 1;
3543 break;
3544 case DW_OP_plus_uconst:
3545 cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
3546 break;
3547 default:
3548 internal_error ("DW_LOC_OP %s not implemented",
3549 dwarf_stack_op_name (ptr->dw_loc_opc));
3553 #endif /* .debug_frame support */
3555 /* And now, the support for symbolic debugging information. */
3556 #ifdef DWARF2_DEBUGGING_INFO
3558 /* .debug_str support. */
3559 static int output_indirect_string (void **, void *);
3561 static void dwarf2out_init (const char *);
3562 static void dwarf2out_finish (const char *);
3563 static void dwarf2out_define (unsigned int, const char *);
3564 static void dwarf2out_undef (unsigned int, const char *);
3565 static void dwarf2out_start_source_file (unsigned, const char *);
3566 static void dwarf2out_end_source_file (unsigned);
3567 static void dwarf2out_begin_block (unsigned, unsigned);
3568 static void dwarf2out_end_block (unsigned, unsigned);
3569 static bool dwarf2out_ignore_block (tree);
3570 static void dwarf2out_global_decl (tree);
3571 static void dwarf2out_type_decl (tree, int);
3572 static void dwarf2out_imported_module_or_decl (tree, tree);
3573 static void dwarf2out_abstract_function (tree);
3574 static void dwarf2out_var_location (rtx);
3575 static void dwarf2out_begin_function (tree);
3576 static void dwarf2out_switch_text_section (void);
3578 /* The debug hooks structure. */
3580 const struct gcc_debug_hooks dwarf2_debug_hooks =
3582 dwarf2out_init,
3583 dwarf2out_finish,
3584 dwarf2out_define,
3585 dwarf2out_undef,
3586 dwarf2out_start_source_file,
3587 dwarf2out_end_source_file,
3588 dwarf2out_begin_block,
3589 dwarf2out_end_block,
3590 dwarf2out_ignore_block,
3591 dwarf2out_source_line,
3592 dwarf2out_begin_prologue,
3593 debug_nothing_int_charstar, /* end_prologue */
3594 dwarf2out_end_epilogue,
3595 dwarf2out_begin_function,
3596 debug_nothing_int, /* end_function */
3597 dwarf2out_decl, /* function_decl */
3598 dwarf2out_global_decl,
3599 dwarf2out_type_decl, /* type_decl */
3600 dwarf2out_imported_module_or_decl,
3601 debug_nothing_tree, /* deferred_inline_function */
3602 /* The DWARF 2 backend tries to reduce debugging bloat by not
3603 emitting the abstract description of inline functions until
3604 something tries to reference them. */
3605 dwarf2out_abstract_function, /* outlining_inline_function */
3606 debug_nothing_rtx, /* label */
3607 debug_nothing_int, /* handle_pch */
3608 dwarf2out_var_location,
3609 dwarf2out_switch_text_section,
3610 1 /* start_end_main_source_file */
3612 #endif
3614 /* NOTE: In the comments in this file, many references are made to
3615 "Debugging Information Entries". This term is abbreviated as `DIE'
3616 throughout the remainder of this file. */
3618 /* An internal representation of the DWARF output is built, and then
3619 walked to generate the DWARF debugging info. The walk of the internal
3620 representation is done after the entire program has been compiled.
3621 The types below are used to describe the internal representation. */
3623 /* Various DIE's use offsets relative to the beginning of the
3624 .debug_info section to refer to each other. */
3626 typedef long int dw_offset;
3628 /* Define typedefs here to avoid circular dependencies. */
3630 typedef struct dw_attr_struct *dw_attr_ref;
3631 typedef struct dw_line_info_struct *dw_line_info_ref;
3632 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
3633 typedef struct pubname_struct *pubname_ref;
3634 typedef struct dw_ranges_struct *dw_ranges_ref;
3636 /* Each entry in the line_info_table maintains the file and
3637 line number associated with the label generated for that
3638 entry. The label gives the PC value associated with
3639 the line number entry. */
3641 typedef struct dw_line_info_struct GTY(())
3643 unsigned long dw_file_num;
3644 unsigned long dw_line_num;
3646 dw_line_info_entry;
3648 /* Line information for functions in separate sections; each one gets its
3649 own sequence. */
3650 typedef struct dw_separate_line_info_struct GTY(())
3652 unsigned long dw_file_num;
3653 unsigned long dw_line_num;
3654 unsigned long function;
3656 dw_separate_line_info_entry;
3658 /* Each DIE attribute has a field specifying the attribute kind,
3659 a link to the next attribute in the chain, and an attribute value.
3660 Attributes are typically linked below the DIE they modify. */
3662 typedef struct dw_attr_struct GTY(())
3664 enum dwarf_attribute dw_attr;
3665 dw_attr_ref dw_attr_next;
3666 dw_val_node dw_attr_val;
3668 dw_attr_node;
3670 /* The Debugging Information Entry (DIE) structure */
3672 typedef struct die_struct GTY(())
3674 enum dwarf_tag die_tag;
3675 char *die_symbol;
3676 dw_attr_ref die_attr;
3677 dw_die_ref die_parent;
3678 dw_die_ref die_child;
3679 dw_die_ref die_sib;
3680 dw_die_ref die_definition; /* ref from a specification to its definition */
3681 dw_offset die_offset;
3682 unsigned long die_abbrev;
3683 int die_mark;
3684 unsigned int decl_id;
3686 die_node;
3688 /* The pubname structure */
3690 typedef struct pubname_struct GTY(())
3692 dw_die_ref die;
3693 char *name;
3695 pubname_entry;
3697 struct dw_ranges_struct GTY(())
3699 int block_num;
3702 /* The limbo die list structure. */
3703 typedef struct limbo_die_struct GTY(())
3705 dw_die_ref die;
3706 tree created_for;
3707 struct limbo_die_struct *next;
3709 limbo_die_node;
3711 /* How to start an assembler comment. */
3712 #ifndef ASM_COMMENT_START
3713 #define ASM_COMMENT_START ";#"
3714 #endif
3716 /* Define a macro which returns nonzero for a TYPE_DECL which was
3717 implicitly generated for a tagged type.
3719 Note that unlike the gcc front end (which generates a NULL named
3720 TYPE_DECL node for each complete tagged type, each array type, and
3721 each function type node created) the g++ front end generates a
3722 _named_ TYPE_DECL node for each tagged type node created.
3723 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3724 generate a DW_TAG_typedef DIE for them. */
3726 #define TYPE_DECL_IS_STUB(decl) \
3727 (DECL_NAME (decl) == NULL_TREE \
3728 || (DECL_ARTIFICIAL (decl) \
3729 && is_tagged_type (TREE_TYPE (decl)) \
3730 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3731 /* This is necessary for stub decls that \
3732 appear in nested inline functions. */ \
3733 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3734 && (decl_ultimate_origin (decl) \
3735 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3737 /* Information concerning the compilation unit's programming
3738 language, and compiler version. */
3740 /* Fixed size portion of the DWARF compilation unit header. */
3741 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3742 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
3744 /* Fixed size portion of public names info. */
3745 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3747 /* Fixed size portion of the address range info. */
3748 #define DWARF_ARANGES_HEADER_SIZE \
3749 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3750 DWARF2_ADDR_SIZE * 2) \
3751 - DWARF_INITIAL_LENGTH_SIZE)
3753 /* Size of padding portion in the address range info. It must be
3754 aligned to twice the pointer size. */
3755 #define DWARF_ARANGES_PAD_SIZE \
3756 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3757 DWARF2_ADDR_SIZE * 2) \
3758 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
3760 /* Use assembler line directives if available. */
3761 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3762 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3763 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3764 #else
3765 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3766 #endif
3767 #endif
3769 /* Minimum line offset in a special line info. opcode.
3770 This value was chosen to give a reasonable range of values. */
3771 #define DWARF_LINE_BASE -10
3773 /* First special line opcode - leave room for the standard opcodes. */
3774 #define DWARF_LINE_OPCODE_BASE 10
3776 /* Range of line offsets in a special line info. opcode. */
3777 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3779 /* Flag that indicates the initial value of the is_stmt_start flag.
3780 In the present implementation, we do not mark any lines as
3781 the beginning of a source statement, because that information
3782 is not made available by the GCC front-end. */
3783 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3785 #ifdef DWARF2_DEBUGGING_INFO
3786 /* This location is used by calc_die_sizes() to keep track
3787 the offset of each DIE within the .debug_info section. */
3788 static unsigned long next_die_offset;
3789 #endif
3791 /* Record the root of the DIE's built for the current compilation unit. */
3792 static GTY(()) dw_die_ref comp_unit_die;
3794 /* A list of DIEs with a NULL parent waiting to be relocated. */
3795 static GTY(()) limbo_die_node *limbo_die_list;
3797 /* Filenames referenced by this compilation unit. */
3798 static GTY(()) varray_type file_table;
3799 static GTY(()) varray_type file_table_emitted;
3800 static GTY(()) size_t file_table_last_lookup_index;
3802 /* A hash table of references to DIE's that describe declarations.
3803 The key is a DECL_UID() which is a unique number identifying each decl. */
3804 static GTY ((param_is (struct die_struct))) htab_t decl_die_table;
3806 /* Node of the variable location list. */
3807 struct var_loc_node GTY ((chain_next ("%h.next")))
3809 rtx GTY (()) var_loc_note;
3810 const char * GTY (()) label;
3811 const char * GTY (()) section_label;
3812 struct var_loc_node * GTY (()) next;
3815 /* Variable location list. */
3816 struct var_loc_list_def GTY (())
3818 struct var_loc_node * GTY (()) first;
3820 /* Do not mark the last element of the chained list because
3821 it is marked through the chain. */
3822 struct var_loc_node * GTY ((skip ("%h"))) last;
3824 /* DECL_UID of the variable decl. */
3825 unsigned int decl_id;
3827 typedef struct var_loc_list_def var_loc_list;
3830 /* Table of decl location linked lists. */
3831 static GTY ((param_is (var_loc_list))) htab_t decl_loc_table;
3833 /* A pointer to the base of a list of references to DIE's that
3834 are uniquely identified by their tag, presence/absence of
3835 children DIE's, and list of attribute/value pairs. */
3836 static GTY((length ("abbrev_die_table_allocated")))
3837 dw_die_ref *abbrev_die_table;
3839 /* Number of elements currently allocated for abbrev_die_table. */
3840 static GTY(()) unsigned abbrev_die_table_allocated;
3842 /* Number of elements in type_die_table currently in use. */
3843 static GTY(()) unsigned abbrev_die_table_in_use;
3845 /* Size (in elements) of increments by which we may expand the
3846 abbrev_die_table. */
3847 #define ABBREV_DIE_TABLE_INCREMENT 256
3849 /* A pointer to the base of a table that contains line information
3850 for each source code line in .text in the compilation unit. */
3851 static GTY((length ("line_info_table_allocated")))
3852 dw_line_info_ref line_info_table;
3854 /* Number of elements currently allocated for line_info_table. */
3855 static GTY(()) unsigned line_info_table_allocated;
3857 /* Number of elements in line_info_table currently in use. */
3858 static GTY(()) unsigned line_info_table_in_use;
3860 /* True if the compilation unit places functions in more than one section. */
3861 static GTY(()) bool have_multiple_function_sections = false;
3863 /* A pointer to the base of a table that contains line information
3864 for each source code line outside of .text in the compilation unit. */
3865 static GTY ((length ("separate_line_info_table_allocated")))
3866 dw_separate_line_info_ref separate_line_info_table;
3868 /* Number of elements currently allocated for separate_line_info_table. */
3869 static GTY(()) unsigned separate_line_info_table_allocated;
3871 /* Number of elements in separate_line_info_table currently in use. */
3872 static GTY(()) unsigned separate_line_info_table_in_use;
3874 /* Size (in elements) of increments by which we may expand the
3875 line_info_table. */
3876 #define LINE_INFO_TABLE_INCREMENT 1024
3878 /* A pointer to the base of a table that contains a list of publicly
3879 accessible names. */
3880 static GTY ((length ("pubname_table_allocated"))) pubname_ref pubname_table;
3882 /* Number of elements currently allocated for pubname_table. */
3883 static GTY(()) unsigned pubname_table_allocated;
3885 /* Number of elements in pubname_table currently in use. */
3886 static GTY(()) unsigned pubname_table_in_use;
3888 /* Size (in elements) of increments by which we may expand the
3889 pubname_table. */
3890 #define PUBNAME_TABLE_INCREMENT 64
3892 /* Array of dies for which we should generate .debug_arange info. */
3893 static GTY((length ("arange_table_allocated"))) dw_die_ref *arange_table;
3895 /* Number of elements currently allocated for arange_table. */
3896 static GTY(()) unsigned arange_table_allocated;
3898 /* Number of elements in arange_table currently in use. */
3899 static GTY(()) unsigned arange_table_in_use;
3901 /* Size (in elements) of increments by which we may expand the
3902 arange_table. */
3903 #define ARANGE_TABLE_INCREMENT 64
3905 /* Array of dies for which we should generate .debug_ranges info. */
3906 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table;
3908 /* Number of elements currently allocated for ranges_table. */
3909 static GTY(()) unsigned ranges_table_allocated;
3911 /* Number of elements in ranges_table currently in use. */
3912 static GTY(()) unsigned ranges_table_in_use;
3914 /* Size (in elements) of increments by which we may expand the
3915 ranges_table. */
3916 #define RANGES_TABLE_INCREMENT 64
3918 /* Whether we have location lists that need outputting */
3919 static GTY(()) bool have_location_lists;
3921 /* Unique label counter. */
3922 static GTY(()) unsigned int loclabel_num;
3924 #ifdef DWARF2_DEBUGGING_INFO
3925 /* Record whether the function being analyzed contains inlined functions. */
3926 static int current_function_has_inlines;
3927 #endif
3928 #if 0 && defined (MIPS_DEBUGGING_INFO)
3929 static int comp_unit_has_inlines;
3930 #endif
3932 /* Number of file tables emitted in maybe_emit_file(). */
3933 static GTY(()) int emitcount = 0;
3935 /* Number of internal labels generated by gen_internal_sym(). */
3936 static GTY(()) int label_num;
3938 #ifdef DWARF2_DEBUGGING_INFO
3940 /* Offset from the "steady-state frame pointer" to the frame base,
3941 within the current function. */
3942 static HOST_WIDE_INT frame_pointer_fb_offset;
3944 /* Forward declarations for functions defined in this file. */
3946 static int is_pseudo_reg (rtx);
3947 static tree type_main_variant (tree);
3948 static int is_tagged_type (tree);
3949 static const char *dwarf_tag_name (unsigned);
3950 static const char *dwarf_attr_name (unsigned);
3951 static const char *dwarf_form_name (unsigned);
3952 static tree decl_ultimate_origin (tree);
3953 static tree block_ultimate_origin (tree);
3954 static tree decl_class_context (tree);
3955 static void add_dwarf_attr (dw_die_ref, dw_attr_ref);
3956 static inline enum dw_val_class AT_class (dw_attr_ref);
3957 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
3958 static inline unsigned AT_flag (dw_attr_ref);
3959 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
3960 static inline HOST_WIDE_INT AT_int (dw_attr_ref);
3961 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
3962 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_ref);
3963 static void add_AT_long_long (dw_die_ref, enum dwarf_attribute, unsigned long,
3964 unsigned long);
3965 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
3966 unsigned int, unsigned char *);
3967 static hashval_t debug_str_do_hash (const void *);
3968 static int debug_str_eq (const void *, const void *);
3969 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
3970 static inline const char *AT_string (dw_attr_ref);
3971 static int AT_string_form (dw_attr_ref);
3972 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
3973 static void add_AT_specification (dw_die_ref, dw_die_ref);
3974 static inline dw_die_ref AT_ref (dw_attr_ref);
3975 static inline int AT_ref_external (dw_attr_ref);
3976 static inline void set_AT_ref_external (dw_attr_ref, int);
3977 static void add_AT_fde_ref (dw_die_ref, enum dwarf_attribute, unsigned);
3978 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
3979 static inline dw_loc_descr_ref AT_loc (dw_attr_ref);
3980 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
3981 dw_loc_list_ref);
3982 static inline dw_loc_list_ref AT_loc_list (dw_attr_ref);
3983 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx);
3984 static inline rtx AT_addr (dw_attr_ref);
3985 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
3986 static void add_AT_lineptr (dw_die_ref, enum dwarf_attribute, const char *);
3987 static void add_AT_macptr (dw_die_ref, enum dwarf_attribute, const char *);
3988 static void add_AT_offset (dw_die_ref, enum dwarf_attribute,
3989 unsigned HOST_WIDE_INT);
3990 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
3991 unsigned long);
3992 static inline const char *AT_lbl (dw_attr_ref);
3993 static dw_attr_ref get_AT (dw_die_ref, enum dwarf_attribute);
3994 static const char *get_AT_low_pc (dw_die_ref);
3995 static const char *get_AT_hi_pc (dw_die_ref);
3996 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
3997 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
3998 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
3999 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
4000 static bool is_c_family (void);
4001 static bool is_cxx (void);
4002 static bool is_java (void);
4003 static bool is_fortran (void);
4004 static bool is_ada (void);
4005 static void remove_AT (dw_die_ref, enum dwarf_attribute);
4006 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
4007 static inline void free_die (dw_die_ref);
4008 static void remove_children (dw_die_ref);
4009 static void add_child_die (dw_die_ref, dw_die_ref);
4010 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
4011 static dw_die_ref lookup_type_die (tree);
4012 static void equate_type_number_to_die (tree, dw_die_ref);
4013 static hashval_t decl_die_table_hash (const void *);
4014 static int decl_die_table_eq (const void *, const void *);
4015 static dw_die_ref lookup_decl_die (tree);
4016 static hashval_t decl_loc_table_hash (const void *);
4017 static int decl_loc_table_eq (const void *, const void *);
4018 static var_loc_list *lookup_decl_loc (tree);
4019 static void equate_decl_number_to_die (tree, dw_die_ref);
4020 static void add_var_loc_to_decl (tree, struct var_loc_node *);
4021 static void print_spaces (FILE *);
4022 static void print_die (dw_die_ref, FILE *);
4023 static void print_dwarf_line_table (FILE *);
4024 static void reverse_die_lists (dw_die_ref);
4025 static void reverse_all_dies (dw_die_ref);
4026 static dw_die_ref push_new_compile_unit (dw_die_ref, dw_die_ref);
4027 static dw_die_ref pop_compile_unit (dw_die_ref);
4028 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
4029 static void attr_checksum (dw_attr_ref, struct md5_ctx *, int *);
4030 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
4031 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
4032 static int same_dw_val_p (dw_val_node *, dw_val_node *, int *);
4033 static int same_attr_p (dw_attr_ref, dw_attr_ref, int *);
4034 static int same_die_p (dw_die_ref, dw_die_ref, int *);
4035 static int same_die_p_wrap (dw_die_ref, dw_die_ref);
4036 static void compute_section_prefix (dw_die_ref);
4037 static int is_type_die (dw_die_ref);
4038 static int is_comdat_die (dw_die_ref);
4039 static int is_symbol_die (dw_die_ref);
4040 static void assign_symbol_names (dw_die_ref);
4041 static void break_out_includes (dw_die_ref);
4042 static hashval_t htab_cu_hash (const void *);
4043 static int htab_cu_eq (const void *, const void *);
4044 static void htab_cu_del (void *);
4045 static int check_duplicate_cu (dw_die_ref, htab_t, unsigned *);
4046 static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
4047 static void add_sibling_attributes (dw_die_ref);
4048 static void build_abbrev_table (dw_die_ref);
4049 static void output_location_lists (dw_die_ref);
4050 static int constant_size (long unsigned);
4051 static unsigned long size_of_die (dw_die_ref);
4052 static void calc_die_sizes (dw_die_ref);
4053 static void mark_dies (dw_die_ref);
4054 static void unmark_dies (dw_die_ref);
4055 static void unmark_all_dies (dw_die_ref);
4056 static unsigned long size_of_pubnames (void);
4057 static unsigned long size_of_aranges (void);
4058 static enum dwarf_form value_format (dw_attr_ref);
4059 static void output_value_format (dw_attr_ref);
4060 static void output_abbrev_section (void);
4061 static void output_die_symbol (dw_die_ref);
4062 static void output_die (dw_die_ref);
4063 static void output_compilation_unit_header (void);
4064 static void output_comp_unit (dw_die_ref, int);
4065 static const char *dwarf2_name (tree, int);
4066 static void add_pubname (tree, dw_die_ref);
4067 static void output_pubnames (void);
4068 static void add_arange (tree, dw_die_ref);
4069 static void output_aranges (void);
4070 static unsigned int add_ranges (tree);
4071 static void output_ranges (void);
4072 static void output_line_info (void);
4073 static void output_file_names (void);
4074 static dw_die_ref base_type_die (tree);
4075 static tree root_type (tree);
4076 static int is_base_type (tree);
4077 static bool is_subrange_type (tree);
4078 static dw_die_ref subrange_type_die (tree, dw_die_ref);
4079 static dw_die_ref modified_type_die (tree, int, int, dw_die_ref);
4080 static int type_is_enum (tree);
4081 static unsigned int dbx_reg_number (rtx);
4082 static void add_loc_descr_op_piece (dw_loc_descr_ref *, int);
4083 static dw_loc_descr_ref reg_loc_descriptor (rtx);
4084 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int);
4085 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx);
4086 static dw_loc_descr_ref int_loc_descriptor (HOST_WIDE_INT);
4087 static dw_loc_descr_ref based_loc_descr (rtx, HOST_WIDE_INT);
4088 static int is_based_loc (rtx);
4089 static dw_loc_descr_ref mem_loc_descriptor (rtx, enum machine_mode mode);
4090 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx);
4091 static dw_loc_descr_ref loc_descriptor (rtx);
4092 static dw_loc_descr_ref loc_descriptor_from_tree_1 (tree, int);
4093 static dw_loc_descr_ref loc_descriptor_from_tree (tree);
4094 static HOST_WIDE_INT ceiling (HOST_WIDE_INT, unsigned int);
4095 static tree field_type (tree);
4096 static unsigned int simple_type_align_in_bits (tree);
4097 static unsigned int simple_decl_align_in_bits (tree);
4098 static unsigned HOST_WIDE_INT simple_type_size_in_bits (tree);
4099 static HOST_WIDE_INT field_byte_offset (tree);
4100 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
4101 dw_loc_descr_ref);
4102 static void add_data_member_location_attribute (dw_die_ref, tree);
4103 static void add_const_value_attribute (dw_die_ref, rtx);
4104 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
4105 static HOST_WIDE_INT extract_int (const unsigned char *, unsigned);
4106 static void insert_float (rtx, unsigned char *);
4107 static rtx rtl_for_decl_location (tree);
4108 static void add_location_or_const_value_attribute (dw_die_ref, tree,
4109 enum dwarf_attribute);
4110 static void tree_add_const_value_attribute (dw_die_ref, tree);
4111 static void add_name_attribute (dw_die_ref, const char *);
4112 static void add_comp_dir_attribute (dw_die_ref);
4113 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree);
4114 static void add_subscript_info (dw_die_ref, tree);
4115 static void add_byte_size_attribute (dw_die_ref, tree);
4116 static void add_bit_offset_attribute (dw_die_ref, tree);
4117 static void add_bit_size_attribute (dw_die_ref, tree);
4118 static void add_prototyped_attribute (dw_die_ref, tree);
4119 static void add_abstract_origin_attribute (dw_die_ref, tree);
4120 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
4121 static void add_src_coords_attributes (dw_die_ref, tree);
4122 static void add_name_and_src_coords_attributes (dw_die_ref, tree);
4123 static void push_decl_scope (tree);
4124 static void pop_decl_scope (void);
4125 static dw_die_ref scope_die_for (tree, dw_die_ref);
4126 static inline int local_scope_p (dw_die_ref);
4127 static inline int class_or_namespace_scope_p (dw_die_ref);
4128 static void add_type_attribute (dw_die_ref, tree, int, int, dw_die_ref);
4129 static void add_calling_convention_attribute (dw_die_ref, tree);
4130 static const char *type_tag (tree);
4131 static tree member_declared_type (tree);
4132 #if 0
4133 static const char *decl_start_label (tree);
4134 #endif
4135 static void gen_array_type_die (tree, dw_die_ref);
4136 #if 0
4137 static void gen_entry_point_die (tree, dw_die_ref);
4138 #endif
4139 static void gen_inlined_enumeration_type_die (tree, dw_die_ref);
4140 static void gen_inlined_structure_type_die (tree, dw_die_ref);
4141 static void gen_inlined_union_type_die (tree, dw_die_ref);
4142 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
4143 static dw_die_ref gen_formal_parameter_die (tree, dw_die_ref);
4144 static void gen_unspecified_parameters_die (tree, dw_die_ref);
4145 static void gen_formal_types_die (tree, dw_die_ref);
4146 static void gen_subprogram_die (tree, dw_die_ref);
4147 static void gen_variable_die (tree, dw_die_ref);
4148 static void gen_label_die (tree, dw_die_ref);
4149 static void gen_lexical_block_die (tree, dw_die_ref, int);
4150 static void gen_inlined_subroutine_die (tree, dw_die_ref, int);
4151 static void gen_field_die (tree, dw_die_ref);
4152 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
4153 static dw_die_ref gen_compile_unit_die (const char *);
4154 static void gen_inheritance_die (tree, tree, dw_die_ref);
4155 static void gen_member_die (tree, dw_die_ref);
4156 static void gen_struct_or_union_type_die (tree, dw_die_ref);
4157 static void gen_subroutine_type_die (tree, dw_die_ref);
4158 static void gen_typedef_die (tree, dw_die_ref);
4159 static void gen_type_die (tree, dw_die_ref);
4160 static void gen_tagged_type_instantiation_die (tree, dw_die_ref);
4161 static void gen_block_die (tree, dw_die_ref, int);
4162 static void decls_for_scope (tree, dw_die_ref, int);
4163 static int is_redundant_typedef (tree);
4164 static void gen_namespace_die (tree);
4165 static void gen_decl_die (tree, dw_die_ref);
4166 static dw_die_ref force_decl_die (tree);
4167 static dw_die_ref force_type_die (tree);
4168 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
4169 static void declare_in_namespace (tree, dw_die_ref);
4170 static unsigned lookup_filename (const char *);
4171 static void init_file_table (void);
4172 static void retry_incomplete_types (void);
4173 static void gen_type_die_for_member (tree, tree, dw_die_ref);
4174 static void splice_child_die (dw_die_ref, dw_die_ref);
4175 static int file_info_cmp (const void *, const void *);
4176 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *,
4177 const char *, const char *, unsigned);
4178 static void add_loc_descr_to_loc_list (dw_loc_list_ref *, dw_loc_descr_ref,
4179 const char *, const char *,
4180 const char *);
4181 static void output_loc_list (dw_loc_list_ref);
4182 static char *gen_internal_sym (const char *);
4184 static void prune_unmark_dies (dw_die_ref);
4185 static void prune_unused_types_mark (dw_die_ref, int);
4186 static void prune_unused_types_walk (dw_die_ref);
4187 static void prune_unused_types_walk_attribs (dw_die_ref);
4188 static void prune_unused_types_prune (dw_die_ref);
4189 static void prune_unused_types (void);
4190 static int maybe_emit_file (int);
4192 /* Section names used to hold DWARF debugging information. */
4193 #ifndef DEBUG_INFO_SECTION
4194 #define DEBUG_INFO_SECTION ".debug_info"
4195 #endif
4196 #ifndef DEBUG_ABBREV_SECTION
4197 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
4198 #endif
4199 #ifndef DEBUG_ARANGES_SECTION
4200 #define DEBUG_ARANGES_SECTION ".debug_aranges"
4201 #endif
4202 #ifndef DEBUG_MACINFO_SECTION
4203 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
4204 #endif
4205 #ifndef DEBUG_LINE_SECTION
4206 #define DEBUG_LINE_SECTION ".debug_line"
4207 #endif
4208 #ifndef DEBUG_LOC_SECTION
4209 #define DEBUG_LOC_SECTION ".debug_loc"
4210 #endif
4211 #ifndef DEBUG_PUBNAMES_SECTION
4212 #define DEBUG_PUBNAMES_SECTION ".debug_pubnames"
4213 #endif
4214 #ifndef DEBUG_STR_SECTION
4215 #define DEBUG_STR_SECTION ".debug_str"
4216 #endif
4217 #ifndef DEBUG_RANGES_SECTION
4218 #define DEBUG_RANGES_SECTION ".debug_ranges"
4219 #endif
4221 /* Standard ELF section names for compiled code and data. */
4222 #ifndef TEXT_SECTION_NAME
4223 #define TEXT_SECTION_NAME ".text"
4224 #endif
4226 /* Section flags for .debug_str section. */
4227 #define DEBUG_STR_SECTION_FLAGS \
4228 (HAVE_GAS_SHF_MERGE && flag_merge_constants \
4229 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
4230 : SECTION_DEBUG)
4232 /* Labels we insert at beginning sections we can reference instead of
4233 the section names themselves. */
4235 #ifndef TEXT_SECTION_LABEL
4236 #define TEXT_SECTION_LABEL "Ltext"
4237 #endif
4238 #ifndef COLD_TEXT_SECTION_LABEL
4239 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
4240 #endif
4241 #ifndef DEBUG_LINE_SECTION_LABEL
4242 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
4243 #endif
4244 #ifndef DEBUG_INFO_SECTION_LABEL
4245 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
4246 #endif
4247 #ifndef DEBUG_ABBREV_SECTION_LABEL
4248 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
4249 #endif
4250 #ifndef DEBUG_LOC_SECTION_LABEL
4251 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
4252 #endif
4253 #ifndef DEBUG_RANGES_SECTION_LABEL
4254 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
4255 #endif
4256 #ifndef DEBUG_MACINFO_SECTION_LABEL
4257 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
4258 #endif
4260 /* Definitions of defaults for formats and names of various special
4261 (artificial) labels which may be generated within this file (when the -g
4262 options is used and DWARF2_DEBUGGING_INFO is in effect.
4263 If necessary, these may be overridden from within the tm.h file, but
4264 typically, overriding these defaults is unnecessary. */
4266 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4267 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4268 static char cold_text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4269 static char cold_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4270 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4271 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4272 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4273 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4274 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4275 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
4277 #ifndef TEXT_END_LABEL
4278 #define TEXT_END_LABEL "Letext"
4279 #endif
4280 #ifndef COLD_END_LABEL
4281 #define COLD_END_LABEL "Letext_cold"
4282 #endif
4283 #ifndef BLOCK_BEGIN_LABEL
4284 #define BLOCK_BEGIN_LABEL "LBB"
4285 #endif
4286 #ifndef BLOCK_END_LABEL
4287 #define BLOCK_END_LABEL "LBE"
4288 #endif
4289 #ifndef LINE_CODE_LABEL
4290 #define LINE_CODE_LABEL "LM"
4291 #endif
4292 #ifndef SEPARATE_LINE_CODE_LABEL
4293 #define SEPARATE_LINE_CODE_LABEL "LSM"
4294 #endif
4296 /* We allow a language front-end to designate a function that is to be
4297 called to "demangle" any name before it is put into a DIE. */
4299 static const char *(*demangle_name_func) (const char *);
4301 void
4302 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
4304 demangle_name_func = func;
4307 /* Test if rtl node points to a pseudo register. */
4309 static inline int
4310 is_pseudo_reg (rtx rtl)
4312 return ((REG_P (rtl) && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
4313 || (GET_CODE (rtl) == SUBREG
4314 && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
4317 /* Return a reference to a type, with its const and volatile qualifiers
4318 removed. */
4320 static inline tree
4321 type_main_variant (tree type)
4323 type = TYPE_MAIN_VARIANT (type);
4325 /* ??? There really should be only one main variant among any group of
4326 variants of a given type (and all of the MAIN_VARIANT values for all
4327 members of the group should point to that one type) but sometimes the C
4328 front-end messes this up for array types, so we work around that bug
4329 here. */
4330 if (TREE_CODE (type) == ARRAY_TYPE)
4331 while (type != TYPE_MAIN_VARIANT (type))
4332 type = TYPE_MAIN_VARIANT (type);
4334 return type;
4337 /* Return nonzero if the given type node represents a tagged type. */
4339 static inline int
4340 is_tagged_type (tree type)
4342 enum tree_code code = TREE_CODE (type);
4344 return (code == RECORD_TYPE || code == UNION_TYPE
4345 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
4348 /* Convert a DIE tag into its string name. */
4350 static const char *
4351 dwarf_tag_name (unsigned int tag)
4353 switch (tag)
4355 case DW_TAG_padding:
4356 return "DW_TAG_padding";
4357 case DW_TAG_array_type:
4358 return "DW_TAG_array_type";
4359 case DW_TAG_class_type:
4360 return "DW_TAG_class_type";
4361 case DW_TAG_entry_point:
4362 return "DW_TAG_entry_point";
4363 case DW_TAG_enumeration_type:
4364 return "DW_TAG_enumeration_type";
4365 case DW_TAG_formal_parameter:
4366 return "DW_TAG_formal_parameter";
4367 case DW_TAG_imported_declaration:
4368 return "DW_TAG_imported_declaration";
4369 case DW_TAG_label:
4370 return "DW_TAG_label";
4371 case DW_TAG_lexical_block:
4372 return "DW_TAG_lexical_block";
4373 case DW_TAG_member:
4374 return "DW_TAG_member";
4375 case DW_TAG_pointer_type:
4376 return "DW_TAG_pointer_type";
4377 case DW_TAG_reference_type:
4378 return "DW_TAG_reference_type";
4379 case DW_TAG_compile_unit:
4380 return "DW_TAG_compile_unit";
4381 case DW_TAG_string_type:
4382 return "DW_TAG_string_type";
4383 case DW_TAG_structure_type:
4384 return "DW_TAG_structure_type";
4385 case DW_TAG_subroutine_type:
4386 return "DW_TAG_subroutine_type";
4387 case DW_TAG_typedef:
4388 return "DW_TAG_typedef";
4389 case DW_TAG_union_type:
4390 return "DW_TAG_union_type";
4391 case DW_TAG_unspecified_parameters:
4392 return "DW_TAG_unspecified_parameters";
4393 case DW_TAG_variant:
4394 return "DW_TAG_variant";
4395 case DW_TAG_common_block:
4396 return "DW_TAG_common_block";
4397 case DW_TAG_common_inclusion:
4398 return "DW_TAG_common_inclusion";
4399 case DW_TAG_inheritance:
4400 return "DW_TAG_inheritance";
4401 case DW_TAG_inlined_subroutine:
4402 return "DW_TAG_inlined_subroutine";
4403 case DW_TAG_module:
4404 return "DW_TAG_module";
4405 case DW_TAG_ptr_to_member_type:
4406 return "DW_TAG_ptr_to_member_type";
4407 case DW_TAG_set_type:
4408 return "DW_TAG_set_type";
4409 case DW_TAG_subrange_type:
4410 return "DW_TAG_subrange_type";
4411 case DW_TAG_with_stmt:
4412 return "DW_TAG_with_stmt";
4413 case DW_TAG_access_declaration:
4414 return "DW_TAG_access_declaration";
4415 case DW_TAG_base_type:
4416 return "DW_TAG_base_type";
4417 case DW_TAG_catch_block:
4418 return "DW_TAG_catch_block";
4419 case DW_TAG_const_type:
4420 return "DW_TAG_const_type";
4421 case DW_TAG_constant:
4422 return "DW_TAG_constant";
4423 case DW_TAG_enumerator:
4424 return "DW_TAG_enumerator";
4425 case DW_TAG_file_type:
4426 return "DW_TAG_file_type";
4427 case DW_TAG_friend:
4428 return "DW_TAG_friend";
4429 case DW_TAG_namelist:
4430 return "DW_TAG_namelist";
4431 case DW_TAG_namelist_item:
4432 return "DW_TAG_namelist_item";
4433 case DW_TAG_namespace:
4434 return "DW_TAG_namespace";
4435 case DW_TAG_packed_type:
4436 return "DW_TAG_packed_type";
4437 case DW_TAG_subprogram:
4438 return "DW_TAG_subprogram";
4439 case DW_TAG_template_type_param:
4440 return "DW_TAG_template_type_param";
4441 case DW_TAG_template_value_param:
4442 return "DW_TAG_template_value_param";
4443 case DW_TAG_thrown_type:
4444 return "DW_TAG_thrown_type";
4445 case DW_TAG_try_block:
4446 return "DW_TAG_try_block";
4447 case DW_TAG_variant_part:
4448 return "DW_TAG_variant_part";
4449 case DW_TAG_variable:
4450 return "DW_TAG_variable";
4451 case DW_TAG_volatile_type:
4452 return "DW_TAG_volatile_type";
4453 case DW_TAG_imported_module:
4454 return "DW_TAG_imported_module";
4455 case DW_TAG_MIPS_loop:
4456 return "DW_TAG_MIPS_loop";
4457 case DW_TAG_format_label:
4458 return "DW_TAG_format_label";
4459 case DW_TAG_function_template:
4460 return "DW_TAG_function_template";
4461 case DW_TAG_class_template:
4462 return "DW_TAG_class_template";
4463 case DW_TAG_GNU_BINCL:
4464 return "DW_TAG_GNU_BINCL";
4465 case DW_TAG_GNU_EINCL:
4466 return "DW_TAG_GNU_EINCL";
4467 default:
4468 return "DW_TAG_<unknown>";
4472 /* Convert a DWARF attribute code into its string name. */
4474 static const char *
4475 dwarf_attr_name (unsigned int attr)
4477 switch (attr)
4479 case DW_AT_sibling:
4480 return "DW_AT_sibling";
4481 case DW_AT_location:
4482 return "DW_AT_location";
4483 case DW_AT_name:
4484 return "DW_AT_name";
4485 case DW_AT_ordering:
4486 return "DW_AT_ordering";
4487 case DW_AT_subscr_data:
4488 return "DW_AT_subscr_data";
4489 case DW_AT_byte_size:
4490 return "DW_AT_byte_size";
4491 case DW_AT_bit_offset:
4492 return "DW_AT_bit_offset";
4493 case DW_AT_bit_size:
4494 return "DW_AT_bit_size";
4495 case DW_AT_element_list:
4496 return "DW_AT_element_list";
4497 case DW_AT_stmt_list:
4498 return "DW_AT_stmt_list";
4499 case DW_AT_low_pc:
4500 return "DW_AT_low_pc";
4501 case DW_AT_high_pc:
4502 return "DW_AT_high_pc";
4503 case DW_AT_language:
4504 return "DW_AT_language";
4505 case DW_AT_member:
4506 return "DW_AT_member";
4507 case DW_AT_discr:
4508 return "DW_AT_discr";
4509 case DW_AT_discr_value:
4510 return "DW_AT_discr_value";
4511 case DW_AT_visibility:
4512 return "DW_AT_visibility";
4513 case DW_AT_import:
4514 return "DW_AT_import";
4515 case DW_AT_string_length:
4516 return "DW_AT_string_length";
4517 case DW_AT_common_reference:
4518 return "DW_AT_common_reference";
4519 case DW_AT_comp_dir:
4520 return "DW_AT_comp_dir";
4521 case DW_AT_const_value:
4522 return "DW_AT_const_value";
4523 case DW_AT_containing_type:
4524 return "DW_AT_containing_type";
4525 case DW_AT_default_value:
4526 return "DW_AT_default_value";
4527 case DW_AT_inline:
4528 return "DW_AT_inline";
4529 case DW_AT_is_optional:
4530 return "DW_AT_is_optional";
4531 case DW_AT_lower_bound:
4532 return "DW_AT_lower_bound";
4533 case DW_AT_producer:
4534 return "DW_AT_producer";
4535 case DW_AT_prototyped:
4536 return "DW_AT_prototyped";
4537 case DW_AT_return_addr:
4538 return "DW_AT_return_addr";
4539 case DW_AT_start_scope:
4540 return "DW_AT_start_scope";
4541 case DW_AT_stride_size:
4542 return "DW_AT_stride_size";
4543 case DW_AT_upper_bound:
4544 return "DW_AT_upper_bound";
4545 case DW_AT_abstract_origin:
4546 return "DW_AT_abstract_origin";
4547 case DW_AT_accessibility:
4548 return "DW_AT_accessibility";
4549 case DW_AT_address_class:
4550 return "DW_AT_address_class";
4551 case DW_AT_artificial:
4552 return "DW_AT_artificial";
4553 case DW_AT_base_types:
4554 return "DW_AT_base_types";
4555 case DW_AT_calling_convention:
4556 return "DW_AT_calling_convention";
4557 case DW_AT_count:
4558 return "DW_AT_count";
4559 case DW_AT_data_member_location:
4560 return "DW_AT_data_member_location";
4561 case DW_AT_decl_column:
4562 return "DW_AT_decl_column";
4563 case DW_AT_decl_file:
4564 return "DW_AT_decl_file";
4565 case DW_AT_decl_line:
4566 return "DW_AT_decl_line";
4567 case DW_AT_declaration:
4568 return "DW_AT_declaration";
4569 case DW_AT_discr_list:
4570 return "DW_AT_discr_list";
4571 case DW_AT_encoding:
4572 return "DW_AT_encoding";
4573 case DW_AT_external:
4574 return "DW_AT_external";
4575 case DW_AT_frame_base:
4576 return "DW_AT_frame_base";
4577 case DW_AT_friend:
4578 return "DW_AT_friend";
4579 case DW_AT_identifier_case:
4580 return "DW_AT_identifier_case";
4581 case DW_AT_macro_info:
4582 return "DW_AT_macro_info";
4583 case DW_AT_namelist_items:
4584 return "DW_AT_namelist_items";
4585 case DW_AT_priority:
4586 return "DW_AT_priority";
4587 case DW_AT_segment:
4588 return "DW_AT_segment";
4589 case DW_AT_specification:
4590 return "DW_AT_specification";
4591 case DW_AT_static_link:
4592 return "DW_AT_static_link";
4593 case DW_AT_type:
4594 return "DW_AT_type";
4595 case DW_AT_use_location:
4596 return "DW_AT_use_location";
4597 case DW_AT_variable_parameter:
4598 return "DW_AT_variable_parameter";
4599 case DW_AT_virtuality:
4600 return "DW_AT_virtuality";
4601 case DW_AT_vtable_elem_location:
4602 return "DW_AT_vtable_elem_location";
4604 case DW_AT_allocated:
4605 return "DW_AT_allocated";
4606 case DW_AT_associated:
4607 return "DW_AT_associated";
4608 case DW_AT_data_location:
4609 return "DW_AT_data_location";
4610 case DW_AT_stride:
4611 return "DW_AT_stride";
4612 case DW_AT_entry_pc:
4613 return "DW_AT_entry_pc";
4614 case DW_AT_use_UTF8:
4615 return "DW_AT_use_UTF8";
4616 case DW_AT_extension:
4617 return "DW_AT_extension";
4618 case DW_AT_ranges:
4619 return "DW_AT_ranges";
4620 case DW_AT_trampoline:
4621 return "DW_AT_trampoline";
4622 case DW_AT_call_column:
4623 return "DW_AT_call_column";
4624 case DW_AT_call_file:
4625 return "DW_AT_call_file";
4626 case DW_AT_call_line:
4627 return "DW_AT_call_line";
4629 case DW_AT_MIPS_fde:
4630 return "DW_AT_MIPS_fde";
4631 case DW_AT_MIPS_loop_begin:
4632 return "DW_AT_MIPS_loop_begin";
4633 case DW_AT_MIPS_tail_loop_begin:
4634 return "DW_AT_MIPS_tail_loop_begin";
4635 case DW_AT_MIPS_epilog_begin:
4636 return "DW_AT_MIPS_epilog_begin";
4637 case DW_AT_MIPS_loop_unroll_factor:
4638 return "DW_AT_MIPS_loop_unroll_factor";
4639 case DW_AT_MIPS_software_pipeline_depth:
4640 return "DW_AT_MIPS_software_pipeline_depth";
4641 case DW_AT_MIPS_linkage_name:
4642 return "DW_AT_MIPS_linkage_name";
4643 case DW_AT_MIPS_stride:
4644 return "DW_AT_MIPS_stride";
4645 case DW_AT_MIPS_abstract_name:
4646 return "DW_AT_MIPS_abstract_name";
4647 case DW_AT_MIPS_clone_origin:
4648 return "DW_AT_MIPS_clone_origin";
4649 case DW_AT_MIPS_has_inlines:
4650 return "DW_AT_MIPS_has_inlines";
4652 case DW_AT_sf_names:
4653 return "DW_AT_sf_names";
4654 case DW_AT_src_info:
4655 return "DW_AT_src_info";
4656 case DW_AT_mac_info:
4657 return "DW_AT_mac_info";
4658 case DW_AT_src_coords:
4659 return "DW_AT_src_coords";
4660 case DW_AT_body_begin:
4661 return "DW_AT_body_begin";
4662 case DW_AT_body_end:
4663 return "DW_AT_body_end";
4664 case DW_AT_GNU_vector:
4665 return "DW_AT_GNU_vector";
4667 case DW_AT_VMS_rtnbeg_pd_address:
4668 return "DW_AT_VMS_rtnbeg_pd_address";
4670 default:
4671 return "DW_AT_<unknown>";
4675 /* Convert a DWARF value form code into its string name. */
4677 static const char *
4678 dwarf_form_name (unsigned int form)
4680 switch (form)
4682 case DW_FORM_addr:
4683 return "DW_FORM_addr";
4684 case DW_FORM_block2:
4685 return "DW_FORM_block2";
4686 case DW_FORM_block4:
4687 return "DW_FORM_block4";
4688 case DW_FORM_data2:
4689 return "DW_FORM_data2";
4690 case DW_FORM_data4:
4691 return "DW_FORM_data4";
4692 case DW_FORM_data8:
4693 return "DW_FORM_data8";
4694 case DW_FORM_string:
4695 return "DW_FORM_string";
4696 case DW_FORM_block:
4697 return "DW_FORM_block";
4698 case DW_FORM_block1:
4699 return "DW_FORM_block1";
4700 case DW_FORM_data1:
4701 return "DW_FORM_data1";
4702 case DW_FORM_flag:
4703 return "DW_FORM_flag";
4704 case DW_FORM_sdata:
4705 return "DW_FORM_sdata";
4706 case DW_FORM_strp:
4707 return "DW_FORM_strp";
4708 case DW_FORM_udata:
4709 return "DW_FORM_udata";
4710 case DW_FORM_ref_addr:
4711 return "DW_FORM_ref_addr";
4712 case DW_FORM_ref1:
4713 return "DW_FORM_ref1";
4714 case DW_FORM_ref2:
4715 return "DW_FORM_ref2";
4716 case DW_FORM_ref4:
4717 return "DW_FORM_ref4";
4718 case DW_FORM_ref8:
4719 return "DW_FORM_ref8";
4720 case DW_FORM_ref_udata:
4721 return "DW_FORM_ref_udata";
4722 case DW_FORM_indirect:
4723 return "DW_FORM_indirect";
4724 default:
4725 return "DW_FORM_<unknown>";
4729 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4730 instance of an inlined instance of a decl which is local to an inline
4731 function, so we have to trace all of the way back through the origin chain
4732 to find out what sort of node actually served as the original seed for the
4733 given block. */
4735 static tree
4736 decl_ultimate_origin (tree decl)
4738 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_COMMON))
4739 return NULL_TREE;
4741 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
4742 nodes in the function to point to themselves; ignore that if
4743 we're trying to output the abstract instance of this function. */
4744 if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4745 return NULL_TREE;
4747 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4748 most distant ancestor, this should never happen. */
4749 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl)));
4751 return DECL_ABSTRACT_ORIGIN (decl);
4754 /* Determine the "ultimate origin" of a block. The block may be an inlined
4755 instance of an inlined instance of a block which is local to an inline
4756 function, so we have to trace all of the way back through the origin chain
4757 to find out what sort of node actually served as the original seed for the
4758 given block. */
4760 static tree
4761 block_ultimate_origin (tree block)
4763 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
4765 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
4766 nodes in the function to point to themselves; ignore that if
4767 we're trying to output the abstract instance of this function. */
4768 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
4769 return NULL_TREE;
4771 if (immediate_origin == NULL_TREE)
4772 return NULL_TREE;
4773 else
4775 tree ret_val;
4776 tree lookahead = immediate_origin;
4780 ret_val = lookahead;
4781 lookahead = (TREE_CODE (ret_val) == BLOCK
4782 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
4784 while (lookahead != NULL && lookahead != ret_val);
4786 /* The block's abstract origin chain may not be the *ultimate* origin of
4787 the block. It could lead to a DECL that has an abstract origin set.
4788 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
4789 will give us if it has one). Note that DECL's abstract origins are
4790 supposed to be the most distant ancestor (or so decl_ultimate_origin
4791 claims), so we don't need to loop following the DECL origins. */
4792 if (DECL_P (ret_val))
4793 return DECL_ORIGIN (ret_val);
4795 return ret_val;
4799 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4800 of a virtual function may refer to a base class, so we check the 'this'
4801 parameter. */
4803 static tree
4804 decl_class_context (tree decl)
4806 tree context = NULL_TREE;
4808 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4809 context = DECL_CONTEXT (decl);
4810 else
4811 context = TYPE_MAIN_VARIANT
4812 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4814 if (context && !TYPE_P (context))
4815 context = NULL_TREE;
4817 return context;
4820 /* Add an attribute/value pair to a DIE. We build the lists up in reverse
4821 addition order, and correct that in reverse_all_dies. */
4823 static inline void
4824 add_dwarf_attr (dw_die_ref die, dw_attr_ref attr)
4826 if (die != NULL && attr != NULL)
4828 attr->dw_attr_next = die->die_attr;
4829 die->die_attr = attr;
4833 static inline enum dw_val_class
4834 AT_class (dw_attr_ref a)
4836 return a->dw_attr_val.val_class;
4839 /* Add a flag value attribute to a DIE. */
4841 static inline void
4842 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
4844 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4846 attr->dw_attr_next = NULL;
4847 attr->dw_attr = attr_kind;
4848 attr->dw_attr_val.val_class = dw_val_class_flag;
4849 attr->dw_attr_val.v.val_flag = flag;
4850 add_dwarf_attr (die, attr);
4853 static inline unsigned
4854 AT_flag (dw_attr_ref a)
4856 gcc_assert (a && AT_class (a) == dw_val_class_flag);
4857 return a->dw_attr_val.v.val_flag;
4860 /* Add a signed integer attribute value to a DIE. */
4862 static inline void
4863 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
4865 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4867 attr->dw_attr_next = NULL;
4868 attr->dw_attr = attr_kind;
4869 attr->dw_attr_val.val_class = dw_val_class_const;
4870 attr->dw_attr_val.v.val_int = int_val;
4871 add_dwarf_attr (die, attr);
4874 static inline HOST_WIDE_INT
4875 AT_int (dw_attr_ref a)
4877 gcc_assert (a && AT_class (a) == dw_val_class_const);
4878 return a->dw_attr_val.v.val_int;
4881 /* Add an unsigned integer attribute value to a DIE. */
4883 static inline void
4884 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
4885 unsigned HOST_WIDE_INT unsigned_val)
4887 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4889 attr->dw_attr_next = NULL;
4890 attr->dw_attr = attr_kind;
4891 attr->dw_attr_val.val_class = dw_val_class_unsigned_const;
4892 attr->dw_attr_val.v.val_unsigned = unsigned_val;
4893 add_dwarf_attr (die, attr);
4896 static inline unsigned HOST_WIDE_INT
4897 AT_unsigned (dw_attr_ref a)
4899 gcc_assert (a && AT_class (a) == dw_val_class_unsigned_const);
4900 return a->dw_attr_val.v.val_unsigned;
4903 /* Add an unsigned double integer attribute value to a DIE. */
4905 static inline void
4906 add_AT_long_long (dw_die_ref die, enum dwarf_attribute attr_kind,
4907 long unsigned int val_hi, long unsigned int val_low)
4909 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4911 attr->dw_attr_next = NULL;
4912 attr->dw_attr = attr_kind;
4913 attr->dw_attr_val.val_class = dw_val_class_long_long;
4914 attr->dw_attr_val.v.val_long_long.hi = val_hi;
4915 attr->dw_attr_val.v.val_long_long.low = val_low;
4916 add_dwarf_attr (die, attr);
4919 /* Add a floating point attribute value to a DIE and return it. */
4921 static inline void
4922 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
4923 unsigned int length, unsigned int elt_size, unsigned char *array)
4925 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4927 attr->dw_attr_next = NULL;
4928 attr->dw_attr = attr_kind;
4929 attr->dw_attr_val.val_class = dw_val_class_vec;
4930 attr->dw_attr_val.v.val_vec.length = length;
4931 attr->dw_attr_val.v.val_vec.elt_size = elt_size;
4932 attr->dw_attr_val.v.val_vec.array = array;
4933 add_dwarf_attr (die, attr);
4936 /* Hash and equality functions for debug_str_hash. */
4938 static hashval_t
4939 debug_str_do_hash (const void *x)
4941 return htab_hash_string (((const struct indirect_string_node *)x)->str);
4944 static int
4945 debug_str_eq (const void *x1, const void *x2)
4947 return strcmp ((((const struct indirect_string_node *)x1)->str),
4948 (const char *)x2) == 0;
4951 /* Add a string attribute value to a DIE. */
4953 static inline void
4954 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
4956 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4957 struct indirect_string_node *node;
4958 void **slot;
4960 if (! debug_str_hash)
4961 debug_str_hash = htab_create_ggc (10, debug_str_do_hash,
4962 debug_str_eq, NULL);
4964 slot = htab_find_slot_with_hash (debug_str_hash, str,
4965 htab_hash_string (str), INSERT);
4966 if (*slot == NULL)
4967 *slot = ggc_alloc_cleared (sizeof (struct indirect_string_node));
4968 node = (struct indirect_string_node *) *slot;
4969 node->str = ggc_strdup (str);
4970 node->refcount++;
4972 attr->dw_attr_next = NULL;
4973 attr->dw_attr = attr_kind;
4974 attr->dw_attr_val.val_class = dw_val_class_str;
4975 attr->dw_attr_val.v.val_str = node;
4976 add_dwarf_attr (die, attr);
4979 static inline const char *
4980 AT_string (dw_attr_ref a)
4982 gcc_assert (a && AT_class (a) == dw_val_class_str);
4983 return a->dw_attr_val.v.val_str->str;
4986 /* Find out whether a string should be output inline in DIE
4987 or out-of-line in .debug_str section. */
4989 static int
4990 AT_string_form (dw_attr_ref a)
4992 struct indirect_string_node *node;
4993 unsigned int len;
4994 char label[32];
4996 gcc_assert (a && AT_class (a) == dw_val_class_str);
4998 node = a->dw_attr_val.v.val_str;
4999 if (node->form)
5000 return node->form;
5002 len = strlen (node->str) + 1;
5004 /* If the string is shorter or equal to the size of the reference, it is
5005 always better to put it inline. */
5006 if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
5007 return node->form = DW_FORM_string;
5009 /* If we cannot expect the linker to merge strings in .debug_str
5010 section, only put it into .debug_str if it is worth even in this
5011 single module. */
5012 if ((debug_str_section->common.flags & SECTION_MERGE) == 0
5013 && (len - DWARF_OFFSET_SIZE) * node->refcount <= len)
5014 return node->form = DW_FORM_string;
5016 ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
5017 ++dw2_string_counter;
5018 node->label = xstrdup (label);
5020 return node->form = DW_FORM_strp;
5023 /* Add a DIE reference attribute value to a DIE. */
5025 static inline void
5026 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
5028 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5030 attr->dw_attr_next = NULL;
5031 attr->dw_attr = attr_kind;
5032 attr->dw_attr_val.val_class = dw_val_class_die_ref;
5033 attr->dw_attr_val.v.val_die_ref.die = targ_die;
5034 attr->dw_attr_val.v.val_die_ref.external = 0;
5035 add_dwarf_attr (die, attr);
5038 /* Add an AT_specification attribute to a DIE, and also make the back
5039 pointer from the specification to the definition. */
5041 static inline void
5042 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
5044 add_AT_die_ref (die, DW_AT_specification, targ_die);
5045 gcc_assert (!targ_die->die_definition);
5046 targ_die->die_definition = die;
5049 static inline dw_die_ref
5050 AT_ref (dw_attr_ref a)
5052 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
5053 return a->dw_attr_val.v.val_die_ref.die;
5056 static inline int
5057 AT_ref_external (dw_attr_ref a)
5059 if (a && AT_class (a) == dw_val_class_die_ref)
5060 return a->dw_attr_val.v.val_die_ref.external;
5062 return 0;
5065 static inline void
5066 set_AT_ref_external (dw_attr_ref a, int i)
5068 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
5069 a->dw_attr_val.v.val_die_ref.external = i;
5072 /* Add an FDE reference attribute value to a DIE. */
5074 static inline void
5075 add_AT_fde_ref (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int targ_fde)
5077 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5079 attr->dw_attr_next = NULL;
5080 attr->dw_attr = attr_kind;
5081 attr->dw_attr_val.val_class = dw_val_class_fde_ref;
5082 attr->dw_attr_val.v.val_fde_index = targ_fde;
5083 add_dwarf_attr (die, attr);
5086 /* Add a location description attribute value to a DIE. */
5088 static inline void
5089 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
5091 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5093 attr->dw_attr_next = NULL;
5094 attr->dw_attr = attr_kind;
5095 attr->dw_attr_val.val_class = dw_val_class_loc;
5096 attr->dw_attr_val.v.val_loc = loc;
5097 add_dwarf_attr (die, attr);
5100 static inline dw_loc_descr_ref
5101 AT_loc (dw_attr_ref a)
5103 gcc_assert (a && AT_class (a) == dw_val_class_loc);
5104 return a->dw_attr_val.v.val_loc;
5107 static inline void
5108 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
5110 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5112 attr->dw_attr_next = NULL;
5113 attr->dw_attr = attr_kind;
5114 attr->dw_attr_val.val_class = dw_val_class_loc_list;
5115 attr->dw_attr_val.v.val_loc_list = loc_list;
5116 add_dwarf_attr (die, attr);
5117 have_location_lists = true;
5120 static inline dw_loc_list_ref
5121 AT_loc_list (dw_attr_ref a)
5123 gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
5124 return a->dw_attr_val.v.val_loc_list;
5127 /* Add an address constant attribute value to a DIE. */
5129 static inline void
5130 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr)
5132 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5134 attr->dw_attr_next = NULL;
5135 attr->dw_attr = attr_kind;
5136 attr->dw_attr_val.val_class = dw_val_class_addr;
5137 attr->dw_attr_val.v.val_addr = addr;
5138 add_dwarf_attr (die, attr);
5141 static inline rtx
5142 AT_addr (dw_attr_ref a)
5144 gcc_assert (a && AT_class (a) == dw_val_class_addr);
5145 return a->dw_attr_val.v.val_addr;
5148 /* Add a label identifier attribute value to a DIE. */
5150 static inline void
5151 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind, const char *lbl_id)
5153 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5155 attr->dw_attr_next = NULL;
5156 attr->dw_attr = attr_kind;
5157 attr->dw_attr_val.val_class = dw_val_class_lbl_id;
5158 attr->dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
5159 add_dwarf_attr (die, attr);
5162 /* Add a section offset attribute value to a DIE, an offset into the
5163 debug_line section. */
5165 static inline void
5166 add_AT_lineptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5167 const char *label)
5169 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5171 attr->dw_attr_next = NULL;
5172 attr->dw_attr = attr_kind;
5173 attr->dw_attr_val.val_class = dw_val_class_lineptr;
5174 attr->dw_attr_val.v.val_lbl_id = xstrdup (label);
5175 add_dwarf_attr (die, attr);
5178 /* Add a section offset attribute value to a DIE, an offset into the
5179 debug_macinfo section. */
5181 static inline void
5182 add_AT_macptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5183 const char *label)
5185 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5187 attr->dw_attr_next = NULL;
5188 attr->dw_attr = attr_kind;
5189 attr->dw_attr_val.val_class = dw_val_class_macptr;
5190 attr->dw_attr_val.v.val_lbl_id = xstrdup (label);
5191 add_dwarf_attr (die, attr);
5194 /* Add an offset attribute value to a DIE. */
5196 static inline void
5197 add_AT_offset (dw_die_ref die, enum dwarf_attribute attr_kind,
5198 unsigned HOST_WIDE_INT offset)
5200 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5202 attr->dw_attr_next = NULL;
5203 attr->dw_attr = attr_kind;
5204 attr->dw_attr_val.val_class = dw_val_class_offset;
5205 attr->dw_attr_val.v.val_offset = offset;
5206 add_dwarf_attr (die, attr);
5209 /* Add an range_list attribute value to a DIE. */
5211 static void
5212 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
5213 long unsigned int offset)
5215 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5217 attr->dw_attr_next = NULL;
5218 attr->dw_attr = attr_kind;
5219 attr->dw_attr_val.val_class = dw_val_class_range_list;
5220 attr->dw_attr_val.v.val_offset = offset;
5221 add_dwarf_attr (die, attr);
5224 static inline const char *
5225 AT_lbl (dw_attr_ref a)
5227 gcc_assert (a && (AT_class (a) == dw_val_class_lbl_id
5228 || AT_class (a) == dw_val_class_lineptr
5229 || AT_class (a) == dw_val_class_macptr));
5230 return a->dw_attr_val.v.val_lbl_id;
5233 /* Get the attribute of type attr_kind. */
5235 static dw_attr_ref
5236 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5238 dw_attr_ref a;
5239 dw_die_ref spec = NULL;
5241 if (die != NULL)
5243 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5244 if (a->dw_attr == attr_kind)
5245 return a;
5246 else if (a->dw_attr == DW_AT_specification
5247 || a->dw_attr == DW_AT_abstract_origin)
5248 spec = AT_ref (a);
5250 if (spec)
5251 return get_AT (spec, attr_kind);
5254 return NULL;
5257 /* Return the "low pc" attribute value, typically associated with a subprogram
5258 DIE. Return null if the "low pc" attribute is either not present, or if it
5259 cannot be represented as an assembler label identifier. */
5261 static inline const char *
5262 get_AT_low_pc (dw_die_ref die)
5264 dw_attr_ref a = get_AT (die, DW_AT_low_pc);
5266 return a ? AT_lbl (a) : NULL;
5269 /* Return the "high pc" attribute value, typically associated with a subprogram
5270 DIE. Return null if the "high pc" attribute is either not present, or if it
5271 cannot be represented as an assembler label identifier. */
5273 static inline const char *
5274 get_AT_hi_pc (dw_die_ref die)
5276 dw_attr_ref a = get_AT (die, DW_AT_high_pc);
5278 return a ? AT_lbl (a) : NULL;
5281 /* Return the value of the string attribute designated by ATTR_KIND, or
5282 NULL if it is not present. */
5284 static inline const char *
5285 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
5287 dw_attr_ref a = get_AT (die, attr_kind);
5289 return a ? AT_string (a) : NULL;
5292 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
5293 if it is not present. */
5295 static inline int
5296 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
5298 dw_attr_ref a = get_AT (die, attr_kind);
5300 return a ? AT_flag (a) : 0;
5303 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
5304 if it is not present. */
5306 static inline unsigned
5307 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
5309 dw_attr_ref a = get_AT (die, attr_kind);
5311 return a ? AT_unsigned (a) : 0;
5314 static inline dw_die_ref
5315 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
5317 dw_attr_ref a = get_AT (die, attr_kind);
5319 return a ? AT_ref (a) : NULL;
5322 /* Return TRUE if the language is C or C++. */
5324 static inline bool
5325 is_c_family (void)
5327 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5329 return (lang == DW_LANG_C || lang == DW_LANG_C89 || lang == DW_LANG_ObjC
5330 || lang == DW_LANG_C99
5331 || lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus);
5334 /* Return TRUE if the language is C++. */
5336 static inline bool
5337 is_cxx (void)
5339 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5341 return lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus;
5344 /* Return TRUE if the language is Fortran. */
5346 static inline bool
5347 is_fortran (void)
5349 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5351 return (lang == DW_LANG_Fortran77
5352 || lang == DW_LANG_Fortran90
5353 || lang == DW_LANG_Fortran95);
5356 /* Return TRUE if the language is Java. */
5358 static inline bool
5359 is_java (void)
5361 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5363 return lang == DW_LANG_Java;
5366 /* Return TRUE if the language is Ada. */
5368 static inline bool
5369 is_ada (void)
5371 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5373 return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
5376 /* Free up the memory used by A. */
5378 static inline void free_AT (dw_attr_ref);
5379 static inline void
5380 free_AT (dw_attr_ref a)
5382 if (AT_class (a) == dw_val_class_str)
5383 if (a->dw_attr_val.v.val_str->refcount)
5384 a->dw_attr_val.v.val_str->refcount--;
5387 /* Remove the specified attribute if present. */
5389 static void
5390 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5392 dw_attr_ref *p;
5393 dw_attr_ref removed = NULL;
5395 if (die != NULL)
5397 for (p = &(die->die_attr); *p; p = &((*p)->dw_attr_next))
5398 if ((*p)->dw_attr == attr_kind)
5400 removed = *p;
5401 *p = (*p)->dw_attr_next;
5402 break;
5405 if (removed != 0)
5406 free_AT (removed);
5410 /* Remove child die whose die_tag is specified tag. */
5412 static void
5413 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
5415 dw_die_ref current, prev, next;
5416 current = die->die_child;
5417 prev = NULL;
5418 while (current != NULL)
5420 if (current->die_tag == tag)
5422 next = current->die_sib;
5423 if (prev == NULL)
5424 die->die_child = next;
5425 else
5426 prev->die_sib = next;
5427 free_die (current);
5428 current = next;
5430 else
5432 prev = current;
5433 current = current->die_sib;
5438 /* Free up the memory used by DIE. */
5440 static inline void
5441 free_die (dw_die_ref die)
5443 remove_children (die);
5446 /* Discard the children of this DIE. */
5448 static void
5449 remove_children (dw_die_ref die)
5451 dw_die_ref child_die = die->die_child;
5453 die->die_child = NULL;
5455 while (child_die != NULL)
5457 dw_die_ref tmp_die = child_die;
5458 dw_attr_ref a;
5460 child_die = child_die->die_sib;
5462 for (a = tmp_die->die_attr; a != NULL;)
5464 dw_attr_ref tmp_a = a;
5466 a = a->dw_attr_next;
5467 free_AT (tmp_a);
5470 free_die (tmp_die);
5474 /* Add a child DIE below its parent. We build the lists up in reverse
5475 addition order, and correct that in reverse_all_dies. */
5477 static inline void
5478 add_child_die (dw_die_ref die, dw_die_ref child_die)
5480 if (die != NULL && child_die != NULL)
5482 gcc_assert (die != child_die);
5484 child_die->die_parent = die;
5485 child_die->die_sib = die->die_child;
5486 die->die_child = child_die;
5490 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5491 is the specification, to the front of PARENT's list of children. */
5493 static void
5494 splice_child_die (dw_die_ref parent, dw_die_ref child)
5496 dw_die_ref *p;
5498 /* We want the declaration DIE from inside the class, not the
5499 specification DIE at toplevel. */
5500 if (child->die_parent != parent)
5502 dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
5504 if (tmp)
5505 child = tmp;
5508 gcc_assert (child->die_parent == parent
5509 || (child->die_parent
5510 == get_AT_ref (parent, DW_AT_specification)));
5512 for (p = &(child->die_parent->die_child); *p; p = &((*p)->die_sib))
5513 if (*p == child)
5515 *p = child->die_sib;
5516 break;
5519 child->die_parent = parent;
5520 child->die_sib = parent->die_child;
5521 parent->die_child = child;
5524 /* Return a pointer to a newly created DIE node. */
5526 static inline dw_die_ref
5527 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
5529 dw_die_ref die = ggc_alloc_cleared (sizeof (die_node));
5531 die->die_tag = tag_value;
5533 if (parent_die != NULL)
5534 add_child_die (parent_die, die);
5535 else
5537 limbo_die_node *limbo_node;
5539 limbo_node = ggc_alloc_cleared (sizeof (limbo_die_node));
5540 limbo_node->die = die;
5541 limbo_node->created_for = t;
5542 limbo_node->next = limbo_die_list;
5543 limbo_die_list = limbo_node;
5546 return die;
5549 /* Return the DIE associated with the given type specifier. */
5551 static inline dw_die_ref
5552 lookup_type_die (tree type)
5554 return TYPE_SYMTAB_DIE (type);
5557 /* Equate a DIE to a given type specifier. */
5559 static inline void
5560 equate_type_number_to_die (tree type, dw_die_ref type_die)
5562 TYPE_SYMTAB_DIE (type) = type_die;
5565 /* Returns a hash value for X (which really is a die_struct). */
5567 static hashval_t
5568 decl_die_table_hash (const void *x)
5570 return (hashval_t) ((const dw_die_ref) x)->decl_id;
5573 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
5575 static int
5576 decl_die_table_eq (const void *x, const void *y)
5578 return (((const dw_die_ref) x)->decl_id == DECL_UID ((const tree) y));
5581 /* Return the DIE associated with a given declaration. */
5583 static inline dw_die_ref
5584 lookup_decl_die (tree decl)
5586 return htab_find_with_hash (decl_die_table, decl, DECL_UID (decl));
5589 /* Returns a hash value for X (which really is a var_loc_list). */
5591 static hashval_t
5592 decl_loc_table_hash (const void *x)
5594 return (hashval_t) ((const var_loc_list *) x)->decl_id;
5597 /* Return nonzero if decl_id of var_loc_list X is the same as
5598 UID of decl *Y. */
5600 static int
5601 decl_loc_table_eq (const void *x, const void *y)
5603 return (((const var_loc_list *) x)->decl_id == DECL_UID ((const tree) y));
5606 /* Return the var_loc list associated with a given declaration. */
5608 static inline var_loc_list *
5609 lookup_decl_loc (tree decl)
5611 return htab_find_with_hash (decl_loc_table, decl, DECL_UID (decl));
5614 /* Equate a DIE to a particular declaration. */
5616 static void
5617 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
5619 unsigned int decl_id = DECL_UID (decl);
5620 void **slot;
5622 slot = htab_find_slot_with_hash (decl_die_table, decl, decl_id, INSERT);
5623 *slot = decl_die;
5624 decl_die->decl_id = decl_id;
5627 /* Add a variable location node to the linked list for DECL. */
5629 static void
5630 add_var_loc_to_decl (tree decl, struct var_loc_node *loc)
5632 unsigned int decl_id = DECL_UID (decl);
5633 var_loc_list *temp;
5634 void **slot;
5636 slot = htab_find_slot_with_hash (decl_loc_table, decl, decl_id, INSERT);
5637 if (*slot == NULL)
5639 temp = ggc_alloc_cleared (sizeof (var_loc_list));
5640 temp->decl_id = decl_id;
5641 *slot = temp;
5643 else
5644 temp = *slot;
5646 if (temp->last)
5648 /* If the current location is the same as the end of the list,
5649 we have nothing to do. */
5650 if (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp->last->var_loc_note),
5651 NOTE_VAR_LOCATION_LOC (loc->var_loc_note)))
5653 /* Add LOC to the end of list and update LAST. */
5654 temp->last->next = loc;
5655 temp->last = loc;
5658 /* Do not add empty location to the beginning of the list. */
5659 else if (NOTE_VAR_LOCATION_LOC (loc->var_loc_note) != NULL_RTX)
5661 temp->first = loc;
5662 temp->last = loc;
5666 /* Keep track of the number of spaces used to indent the
5667 output of the debugging routines that print the structure of
5668 the DIE internal representation. */
5669 static int print_indent;
5671 /* Indent the line the number of spaces given by print_indent. */
5673 static inline void
5674 print_spaces (FILE *outfile)
5676 fprintf (outfile, "%*s", print_indent, "");
5679 /* Print the information associated with a given DIE, and its children.
5680 This routine is a debugging aid only. */
5682 static void
5683 print_die (dw_die_ref die, FILE *outfile)
5685 dw_attr_ref a;
5686 dw_die_ref c;
5688 print_spaces (outfile);
5689 fprintf (outfile, "DIE %4lu: %s\n",
5690 die->die_offset, dwarf_tag_name (die->die_tag));
5691 print_spaces (outfile);
5692 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
5693 fprintf (outfile, " offset: %lu\n", die->die_offset);
5695 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5697 print_spaces (outfile);
5698 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
5700 switch (AT_class (a))
5702 case dw_val_class_addr:
5703 fprintf (outfile, "address");
5704 break;
5705 case dw_val_class_offset:
5706 fprintf (outfile, "offset");
5707 break;
5708 case dw_val_class_loc:
5709 fprintf (outfile, "location descriptor");
5710 break;
5711 case dw_val_class_loc_list:
5712 fprintf (outfile, "location list -> label:%s",
5713 AT_loc_list (a)->ll_symbol);
5714 break;
5715 case dw_val_class_range_list:
5716 fprintf (outfile, "range list");
5717 break;
5718 case dw_val_class_const:
5719 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, AT_int (a));
5720 break;
5721 case dw_val_class_unsigned_const:
5722 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, AT_unsigned (a));
5723 break;
5724 case dw_val_class_long_long:
5725 fprintf (outfile, "constant (%lu,%lu)",
5726 a->dw_attr_val.v.val_long_long.hi,
5727 a->dw_attr_val.v.val_long_long.low);
5728 break;
5729 case dw_val_class_vec:
5730 fprintf (outfile, "floating-point or vector constant");
5731 break;
5732 case dw_val_class_flag:
5733 fprintf (outfile, "%u", AT_flag (a));
5734 break;
5735 case dw_val_class_die_ref:
5736 if (AT_ref (a) != NULL)
5738 if (AT_ref (a)->die_symbol)
5739 fprintf (outfile, "die -> label: %s", AT_ref (a)->die_symbol);
5740 else
5741 fprintf (outfile, "die -> %lu", AT_ref (a)->die_offset);
5743 else
5744 fprintf (outfile, "die -> <null>");
5745 break;
5746 case dw_val_class_lbl_id:
5747 case dw_val_class_lineptr:
5748 case dw_val_class_macptr:
5749 fprintf (outfile, "label: %s", AT_lbl (a));
5750 break;
5751 case dw_val_class_str:
5752 if (AT_string (a) != NULL)
5753 fprintf (outfile, "\"%s\"", AT_string (a));
5754 else
5755 fprintf (outfile, "<null>");
5756 break;
5757 default:
5758 break;
5761 fprintf (outfile, "\n");
5764 if (die->die_child != NULL)
5766 print_indent += 4;
5767 for (c = die->die_child; c != NULL; c = c->die_sib)
5768 print_die (c, outfile);
5770 print_indent -= 4;
5772 if (print_indent == 0)
5773 fprintf (outfile, "\n");
5776 /* Print the contents of the source code line number correspondence table.
5777 This routine is a debugging aid only. */
5779 static void
5780 print_dwarf_line_table (FILE *outfile)
5782 unsigned i;
5783 dw_line_info_ref line_info;
5785 fprintf (outfile, "\n\nDWARF source line information\n");
5786 for (i = 1; i < line_info_table_in_use; i++)
5788 line_info = &line_info_table[i];
5789 fprintf (outfile, "%5d: ", i);
5790 fprintf (outfile, "%-20s",
5791 VARRAY_CHAR_PTR (file_table, line_info->dw_file_num));
5792 fprintf (outfile, "%6ld", line_info->dw_line_num);
5793 fprintf (outfile, "\n");
5796 fprintf (outfile, "\n\n");
5799 /* Print the information collected for a given DIE. */
5801 void
5802 debug_dwarf_die (dw_die_ref die)
5804 print_die (die, stderr);
5807 /* Print all DWARF information collected for the compilation unit.
5808 This routine is a debugging aid only. */
5810 void
5811 debug_dwarf (void)
5813 print_indent = 0;
5814 print_die (comp_unit_die, stderr);
5815 if (! DWARF2_ASM_LINE_DEBUG_INFO)
5816 print_dwarf_line_table (stderr);
5819 /* We build up the lists of children and attributes by pushing new ones
5820 onto the beginning of the list. Reverse the lists for DIE so that
5821 they are in order of addition. */
5823 static void
5824 reverse_die_lists (dw_die_ref die)
5826 dw_die_ref c, cp, cn;
5827 dw_attr_ref a, ap, an;
5829 for (a = die->die_attr, ap = 0; a; a = an)
5831 an = a->dw_attr_next;
5832 a->dw_attr_next = ap;
5833 ap = a;
5836 die->die_attr = ap;
5838 for (c = die->die_child, cp = 0; c; c = cn)
5840 cn = c->die_sib;
5841 c->die_sib = cp;
5842 cp = c;
5845 die->die_child = cp;
5848 /* reverse_die_lists only reverses the single die you pass it. Since we used to
5849 reverse all dies in add_sibling_attributes, which runs through all the dies,
5850 it would reverse all the dies. Now, however, since we don't call
5851 reverse_die_lists in add_sibling_attributes, we need a routine to
5852 recursively reverse all the dies. This is that routine. */
5854 static void
5855 reverse_all_dies (dw_die_ref die)
5857 dw_die_ref c;
5859 reverse_die_lists (die);
5861 for (c = die->die_child; c; c = c->die_sib)
5862 reverse_all_dies (c);
5865 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
5866 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
5867 DIE that marks the start of the DIEs for this include file. */
5869 static dw_die_ref
5870 push_new_compile_unit (dw_die_ref old_unit, dw_die_ref bincl_die)
5872 const char *filename = get_AT_string (bincl_die, DW_AT_name);
5873 dw_die_ref new_unit = gen_compile_unit_die (filename);
5875 new_unit->die_sib = old_unit;
5876 return new_unit;
5879 /* Close an include-file CU and reopen the enclosing one. */
5881 static dw_die_ref
5882 pop_compile_unit (dw_die_ref old_unit)
5884 dw_die_ref new_unit = old_unit->die_sib;
5886 old_unit->die_sib = NULL;
5887 return new_unit;
5890 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5891 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5893 /* Calculate the checksum of a location expression. */
5895 static inline void
5896 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
5898 CHECKSUM (loc->dw_loc_opc);
5899 CHECKSUM (loc->dw_loc_oprnd1);
5900 CHECKSUM (loc->dw_loc_oprnd2);
5903 /* Calculate the checksum of an attribute. */
5905 static void
5906 attr_checksum (dw_attr_ref at, struct md5_ctx *ctx, int *mark)
5908 dw_loc_descr_ref loc;
5909 rtx r;
5911 CHECKSUM (at->dw_attr);
5913 /* We don't care about differences in file numbering. */
5914 if (at->dw_attr == DW_AT_decl_file
5915 /* Or that this was compiled with a different compiler snapshot; if
5916 the output is the same, that's what matters. */
5917 || at->dw_attr == DW_AT_producer)
5918 return;
5920 switch (AT_class (at))
5922 case dw_val_class_const:
5923 CHECKSUM (at->dw_attr_val.v.val_int);
5924 break;
5925 case dw_val_class_unsigned_const:
5926 CHECKSUM (at->dw_attr_val.v.val_unsigned);
5927 break;
5928 case dw_val_class_long_long:
5929 CHECKSUM (at->dw_attr_val.v.val_long_long);
5930 break;
5931 case dw_val_class_vec:
5932 CHECKSUM (at->dw_attr_val.v.val_vec);
5933 break;
5934 case dw_val_class_flag:
5935 CHECKSUM (at->dw_attr_val.v.val_flag);
5936 break;
5937 case dw_val_class_str:
5938 CHECKSUM_STRING (AT_string (at));
5939 break;
5941 case dw_val_class_addr:
5942 r = AT_addr (at);
5943 gcc_assert (GET_CODE (r) == SYMBOL_REF);
5944 CHECKSUM_STRING (XSTR (r, 0));
5945 break;
5947 case dw_val_class_offset:
5948 CHECKSUM (at->dw_attr_val.v.val_offset);
5949 break;
5951 case dw_val_class_loc:
5952 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
5953 loc_checksum (loc, ctx);
5954 break;
5956 case dw_val_class_die_ref:
5957 die_checksum (AT_ref (at), ctx, mark);
5958 break;
5960 case dw_val_class_fde_ref:
5961 case dw_val_class_lbl_id:
5962 case dw_val_class_lineptr:
5963 case dw_val_class_macptr:
5964 break;
5966 default:
5967 break;
5971 /* Calculate the checksum of a DIE. */
5973 static void
5974 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
5976 dw_die_ref c;
5977 dw_attr_ref a;
5979 /* To avoid infinite recursion. */
5980 if (die->die_mark)
5982 CHECKSUM (die->die_mark);
5983 return;
5985 die->die_mark = ++(*mark);
5987 CHECKSUM (die->die_tag);
5989 for (a = die->die_attr; a; a = a->dw_attr_next)
5990 attr_checksum (a, ctx, mark);
5992 for (c = die->die_child; c; c = c->die_sib)
5993 die_checksum (c, ctx, mark);
5996 #undef CHECKSUM
5997 #undef CHECKSUM_STRING
5999 /* Do the location expressions look same? */
6000 static inline int
6001 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
6003 return loc1->dw_loc_opc == loc2->dw_loc_opc
6004 && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
6005 && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
6008 /* Do the values look the same? */
6009 static int
6010 same_dw_val_p (dw_val_node *v1, dw_val_node *v2, int *mark)
6012 dw_loc_descr_ref loc1, loc2;
6013 rtx r1, r2;
6015 if (v1->val_class != v2->val_class)
6016 return 0;
6018 switch (v1->val_class)
6020 case dw_val_class_const:
6021 return v1->v.val_int == v2->v.val_int;
6022 case dw_val_class_unsigned_const:
6023 return v1->v.val_unsigned == v2->v.val_unsigned;
6024 case dw_val_class_long_long:
6025 return v1->v.val_long_long.hi == v2->v.val_long_long.hi
6026 && v1->v.val_long_long.low == v2->v.val_long_long.low;
6027 case dw_val_class_vec:
6028 if (v1->v.val_vec.length != v2->v.val_vec.length
6029 || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
6030 return 0;
6031 if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
6032 v1->v.val_vec.length * v1->v.val_vec.elt_size))
6033 return 0;
6034 return 1;
6035 case dw_val_class_flag:
6036 return v1->v.val_flag == v2->v.val_flag;
6037 case dw_val_class_str:
6038 return !strcmp(v1->v.val_str->str, v2->v.val_str->str);
6040 case dw_val_class_addr:
6041 r1 = v1->v.val_addr;
6042 r2 = v2->v.val_addr;
6043 if (GET_CODE (r1) != GET_CODE (r2))
6044 return 0;
6045 gcc_assert (GET_CODE (r1) == SYMBOL_REF);
6046 return !strcmp (XSTR (r1, 0), XSTR (r2, 0));
6048 case dw_val_class_offset:
6049 return v1->v.val_offset == v2->v.val_offset;
6051 case dw_val_class_loc:
6052 for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
6053 loc1 && loc2;
6054 loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
6055 if (!same_loc_p (loc1, loc2, mark))
6056 return 0;
6057 return !loc1 && !loc2;
6059 case dw_val_class_die_ref:
6060 return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
6062 case dw_val_class_fde_ref:
6063 case dw_val_class_lbl_id:
6064 case dw_val_class_lineptr:
6065 case dw_val_class_macptr:
6066 return 1;
6068 default:
6069 return 1;
6073 /* Do the attributes look the same? */
6075 static int
6076 same_attr_p (dw_attr_ref at1, dw_attr_ref at2, int *mark)
6078 if (at1->dw_attr != at2->dw_attr)
6079 return 0;
6081 /* We don't care about differences in file numbering. */
6082 if (at1->dw_attr == DW_AT_decl_file
6083 /* Or that this was compiled with a different compiler snapshot; if
6084 the output is the same, that's what matters. */
6085 || at1->dw_attr == DW_AT_producer)
6086 return 1;
6088 return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
6091 /* Do the dies look the same? */
6093 static int
6094 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
6096 dw_die_ref c1, c2;
6097 dw_attr_ref a1, a2;
6099 /* To avoid infinite recursion. */
6100 if (die1->die_mark)
6101 return die1->die_mark == die2->die_mark;
6102 die1->die_mark = die2->die_mark = ++(*mark);
6104 if (die1->die_tag != die2->die_tag)
6105 return 0;
6107 for (a1 = die1->die_attr, a2 = die2->die_attr;
6108 a1 && a2;
6109 a1 = a1->dw_attr_next, a2 = a2->dw_attr_next)
6110 if (!same_attr_p (a1, a2, mark))
6111 return 0;
6112 if (a1 || a2)
6113 return 0;
6115 for (c1 = die1->die_child, c2 = die2->die_child;
6116 c1 && c2;
6117 c1 = c1->die_sib, c2 = c2->die_sib)
6118 if (!same_die_p (c1, c2, mark))
6119 return 0;
6120 if (c1 || c2)
6121 return 0;
6123 return 1;
6126 /* Do the dies look the same? Wrapper around same_die_p. */
6128 static int
6129 same_die_p_wrap (dw_die_ref die1, dw_die_ref die2)
6131 int mark = 0;
6132 int ret = same_die_p (die1, die2, &mark);
6134 unmark_all_dies (die1);
6135 unmark_all_dies (die2);
6137 return ret;
6140 /* The prefix to attach to symbols on DIEs in the current comdat debug
6141 info section. */
6142 static char *comdat_symbol_id;
6144 /* The index of the current symbol within the current comdat CU. */
6145 static unsigned int comdat_symbol_number;
6147 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
6148 children, and set comdat_symbol_id accordingly. */
6150 static void
6151 compute_section_prefix (dw_die_ref unit_die)
6153 const char *die_name = get_AT_string (unit_die, DW_AT_name);
6154 const char *base = die_name ? lbasename (die_name) : "anonymous";
6155 char *name = alloca (strlen (base) + 64);
6156 char *p;
6157 int i, mark;
6158 unsigned char checksum[16];
6159 struct md5_ctx ctx;
6161 /* Compute the checksum of the DIE, then append part of it as hex digits to
6162 the name filename of the unit. */
6164 md5_init_ctx (&ctx);
6165 mark = 0;
6166 die_checksum (unit_die, &ctx, &mark);
6167 unmark_all_dies (unit_die);
6168 md5_finish_ctx (&ctx, checksum);
6170 sprintf (name, "%s.", base);
6171 clean_symbol_name (name);
6173 p = name + strlen (name);
6174 for (i = 0; i < 4; i++)
6176 sprintf (p, "%.2x", checksum[i]);
6177 p += 2;
6180 comdat_symbol_id = unit_die->die_symbol = xstrdup (name);
6181 comdat_symbol_number = 0;
6184 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
6186 static int
6187 is_type_die (dw_die_ref die)
6189 switch (die->die_tag)
6191 case DW_TAG_array_type:
6192 case DW_TAG_class_type:
6193 case DW_TAG_enumeration_type:
6194 case DW_TAG_pointer_type:
6195 case DW_TAG_reference_type:
6196 case DW_TAG_string_type:
6197 case DW_TAG_structure_type:
6198 case DW_TAG_subroutine_type:
6199 case DW_TAG_union_type:
6200 case DW_TAG_ptr_to_member_type:
6201 case DW_TAG_set_type:
6202 case DW_TAG_subrange_type:
6203 case DW_TAG_base_type:
6204 case DW_TAG_const_type:
6205 case DW_TAG_file_type:
6206 case DW_TAG_packed_type:
6207 case DW_TAG_volatile_type:
6208 case DW_TAG_typedef:
6209 return 1;
6210 default:
6211 return 0;
6215 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
6216 Basically, we want to choose the bits that are likely to be shared between
6217 compilations (types) and leave out the bits that are specific to individual
6218 compilations (functions). */
6220 static int
6221 is_comdat_die (dw_die_ref c)
6223 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
6224 we do for stabs. The advantage is a greater likelihood of sharing between
6225 objects that don't include headers in the same order (and therefore would
6226 put the base types in a different comdat). jason 8/28/00 */
6228 if (c->die_tag == DW_TAG_base_type)
6229 return 0;
6231 if (c->die_tag == DW_TAG_pointer_type
6232 || c->die_tag == DW_TAG_reference_type
6233 || c->die_tag == DW_TAG_const_type
6234 || c->die_tag == DW_TAG_volatile_type)
6236 dw_die_ref t = get_AT_ref (c, DW_AT_type);
6238 return t ? is_comdat_die (t) : 0;
6241 return is_type_die (c);
6244 /* Returns 1 iff C is the sort of DIE that might be referred to from another
6245 compilation unit. */
6247 static int
6248 is_symbol_die (dw_die_ref c)
6250 return (is_type_die (c)
6251 || (get_AT (c, DW_AT_declaration)
6252 && !get_AT (c, DW_AT_specification)));
6255 static char *
6256 gen_internal_sym (const char *prefix)
6258 char buf[256];
6260 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
6261 return xstrdup (buf);
6264 /* Assign symbols to all worthy DIEs under DIE. */
6266 static void
6267 assign_symbol_names (dw_die_ref die)
6269 dw_die_ref c;
6271 if (is_symbol_die (die))
6273 if (comdat_symbol_id)
6275 char *p = alloca (strlen (comdat_symbol_id) + 64);
6277 sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
6278 comdat_symbol_id, comdat_symbol_number++);
6279 die->die_symbol = xstrdup (p);
6281 else
6282 die->die_symbol = gen_internal_sym ("LDIE");
6285 for (c = die->die_child; c != NULL; c = c->die_sib)
6286 assign_symbol_names (c);
6289 struct cu_hash_table_entry
6291 dw_die_ref cu;
6292 unsigned min_comdat_num, max_comdat_num;
6293 struct cu_hash_table_entry *next;
6296 /* Routines to manipulate hash table of CUs. */
6297 static hashval_t
6298 htab_cu_hash (const void *of)
6300 const struct cu_hash_table_entry *entry = of;
6302 return htab_hash_string (entry->cu->die_symbol);
6305 static int
6306 htab_cu_eq (const void *of1, const void *of2)
6308 const struct cu_hash_table_entry *entry1 = of1;
6309 const struct die_struct *entry2 = of2;
6311 return !strcmp (entry1->cu->die_symbol, entry2->die_symbol);
6314 static void
6315 htab_cu_del (void *what)
6317 struct cu_hash_table_entry *next, *entry = what;
6319 while (entry)
6321 next = entry->next;
6322 free (entry);
6323 entry = next;
6327 /* Check whether we have already seen this CU and set up SYM_NUM
6328 accordingly. */
6329 static int
6330 check_duplicate_cu (dw_die_ref cu, htab_t htable, unsigned int *sym_num)
6332 struct cu_hash_table_entry dummy;
6333 struct cu_hash_table_entry **slot, *entry, *last = &dummy;
6335 dummy.max_comdat_num = 0;
6337 slot = (struct cu_hash_table_entry **)
6338 htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
6339 INSERT);
6340 entry = *slot;
6342 for (; entry; last = entry, entry = entry->next)
6344 if (same_die_p_wrap (cu, entry->cu))
6345 break;
6348 if (entry)
6350 *sym_num = entry->min_comdat_num;
6351 return 1;
6354 entry = XCNEW (struct cu_hash_table_entry);
6355 entry->cu = cu;
6356 entry->min_comdat_num = *sym_num = last->max_comdat_num;
6357 entry->next = *slot;
6358 *slot = entry;
6360 return 0;
6363 /* Record SYM_NUM to record of CU in HTABLE. */
6364 static void
6365 record_comdat_symbol_number (dw_die_ref cu, htab_t htable, unsigned int sym_num)
6367 struct cu_hash_table_entry **slot, *entry;
6369 slot = (struct cu_hash_table_entry **)
6370 htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
6371 NO_INSERT);
6372 entry = *slot;
6374 entry->max_comdat_num = sym_num;
6377 /* Traverse the DIE (which is always comp_unit_die), and set up
6378 additional compilation units for each of the include files we see
6379 bracketed by BINCL/EINCL. */
6381 static void
6382 break_out_includes (dw_die_ref die)
6384 dw_die_ref *ptr;
6385 dw_die_ref unit = NULL;
6386 limbo_die_node *node, **pnode;
6387 htab_t cu_hash_table;
6389 for (ptr = &(die->die_child); *ptr;)
6391 dw_die_ref c = *ptr;
6393 if (c->die_tag == DW_TAG_GNU_BINCL || c->die_tag == DW_TAG_GNU_EINCL
6394 || (unit && is_comdat_die (c)))
6396 /* This DIE is for a secondary CU; remove it from the main one. */
6397 *ptr = c->die_sib;
6399 if (c->die_tag == DW_TAG_GNU_BINCL)
6401 unit = push_new_compile_unit (unit, c);
6402 free_die (c);
6404 else if (c->die_tag == DW_TAG_GNU_EINCL)
6406 unit = pop_compile_unit (unit);
6407 free_die (c);
6409 else
6410 add_child_die (unit, c);
6412 else
6414 /* Leave this DIE in the main CU. */
6415 ptr = &(c->die_sib);
6416 continue;
6420 #if 0
6421 /* We can only use this in debugging, since the frontend doesn't check
6422 to make sure that we leave every include file we enter. */
6423 gcc_assert (!unit);
6424 #endif
6426 assign_symbol_names (die);
6427 cu_hash_table = htab_create (10, htab_cu_hash, htab_cu_eq, htab_cu_del);
6428 for (node = limbo_die_list, pnode = &limbo_die_list;
6429 node;
6430 node = node->next)
6432 int is_dupl;
6434 compute_section_prefix (node->die);
6435 is_dupl = check_duplicate_cu (node->die, cu_hash_table,
6436 &comdat_symbol_number);
6437 assign_symbol_names (node->die);
6438 if (is_dupl)
6439 *pnode = node->next;
6440 else
6442 pnode = &node->next;
6443 record_comdat_symbol_number (node->die, cu_hash_table,
6444 comdat_symbol_number);
6447 htab_delete (cu_hash_table);
6450 /* Traverse the DIE and add a sibling attribute if it may have the
6451 effect of speeding up access to siblings. To save some space,
6452 avoid generating sibling attributes for DIE's without children. */
6454 static void
6455 add_sibling_attributes (dw_die_ref die)
6457 dw_die_ref c;
6459 if (die->die_tag != DW_TAG_compile_unit
6460 && die->die_sib && die->die_child != NULL)
6461 /* Add the sibling link to the front of the attribute list. */
6462 add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
6464 for (c = die->die_child; c != NULL; c = c->die_sib)
6465 add_sibling_attributes (c);
6468 /* Output all location lists for the DIE and its children. */
6470 static void
6471 output_location_lists (dw_die_ref die)
6473 dw_die_ref c;
6474 dw_attr_ref d_attr;
6476 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
6477 if (AT_class (d_attr) == dw_val_class_loc_list)
6478 output_loc_list (AT_loc_list (d_attr));
6480 for (c = die->die_child; c != NULL; c = c->die_sib)
6481 output_location_lists (c);
6485 /* The format of each DIE (and its attribute value pairs) is encoded in an
6486 abbreviation table. This routine builds the abbreviation table and assigns
6487 a unique abbreviation id for each abbreviation entry. The children of each
6488 die are visited recursively. */
6490 static void
6491 build_abbrev_table (dw_die_ref die)
6493 unsigned long abbrev_id;
6494 unsigned int n_alloc;
6495 dw_die_ref c;
6496 dw_attr_ref d_attr, a_attr;
6498 /* Scan the DIE references, and mark as external any that refer to
6499 DIEs from other CUs (i.e. those which are not marked). */
6500 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
6501 if (AT_class (d_attr) == dw_val_class_die_ref
6502 && AT_ref (d_attr)->die_mark == 0)
6504 gcc_assert (AT_ref (d_attr)->die_symbol);
6506 set_AT_ref_external (d_attr, 1);
6509 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6511 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6513 if (abbrev->die_tag == die->die_tag)
6515 if ((abbrev->die_child != NULL) == (die->die_child != NULL))
6517 a_attr = abbrev->die_attr;
6518 d_attr = die->die_attr;
6520 while (a_attr != NULL && d_attr != NULL)
6522 if ((a_attr->dw_attr != d_attr->dw_attr)
6523 || (value_format (a_attr) != value_format (d_attr)))
6524 break;
6526 a_attr = a_attr->dw_attr_next;
6527 d_attr = d_attr->dw_attr_next;
6530 if (a_attr == NULL && d_attr == NULL)
6531 break;
6536 if (abbrev_id >= abbrev_die_table_in_use)
6538 if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
6540 n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
6541 abbrev_die_table = ggc_realloc (abbrev_die_table,
6542 sizeof (dw_die_ref) * n_alloc);
6544 memset (&abbrev_die_table[abbrev_die_table_allocated], 0,
6545 (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
6546 abbrev_die_table_allocated = n_alloc;
6549 ++abbrev_die_table_in_use;
6550 abbrev_die_table[abbrev_id] = die;
6553 die->die_abbrev = abbrev_id;
6554 for (c = die->die_child; c != NULL; c = c->die_sib)
6555 build_abbrev_table (c);
6558 /* Return the power-of-two number of bytes necessary to represent VALUE. */
6560 static int
6561 constant_size (long unsigned int value)
6563 int log;
6565 if (value == 0)
6566 log = 0;
6567 else
6568 log = floor_log2 (value);
6570 log = log / 8;
6571 log = 1 << (floor_log2 (log) + 1);
6573 return log;
6576 /* Return the size of a DIE as it is represented in the
6577 .debug_info section. */
6579 static unsigned long
6580 size_of_die (dw_die_ref die)
6582 unsigned long size = 0;
6583 dw_attr_ref a;
6585 size += size_of_uleb128 (die->die_abbrev);
6586 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
6588 switch (AT_class (a))
6590 case dw_val_class_addr:
6591 size += DWARF2_ADDR_SIZE;
6592 break;
6593 case dw_val_class_offset:
6594 size += DWARF_OFFSET_SIZE;
6595 break;
6596 case dw_val_class_loc:
6598 unsigned long lsize = size_of_locs (AT_loc (a));
6600 /* Block length. */
6601 size += constant_size (lsize);
6602 size += lsize;
6604 break;
6605 case dw_val_class_loc_list:
6606 size += DWARF_OFFSET_SIZE;
6607 break;
6608 case dw_val_class_range_list:
6609 size += DWARF_OFFSET_SIZE;
6610 break;
6611 case dw_val_class_const:
6612 size += size_of_sleb128 (AT_int (a));
6613 break;
6614 case dw_val_class_unsigned_const:
6615 size += constant_size (AT_unsigned (a));
6616 break;
6617 case dw_val_class_long_long:
6618 size += 1 + 2*HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR; /* block */
6619 break;
6620 case dw_val_class_vec:
6621 size += 1 + (a->dw_attr_val.v.val_vec.length
6622 * a->dw_attr_val.v.val_vec.elt_size); /* block */
6623 break;
6624 case dw_val_class_flag:
6625 size += 1;
6626 break;
6627 case dw_val_class_die_ref:
6628 if (AT_ref_external (a))
6629 size += DWARF2_ADDR_SIZE;
6630 else
6631 size += DWARF_OFFSET_SIZE;
6632 break;
6633 case dw_val_class_fde_ref:
6634 size += DWARF_OFFSET_SIZE;
6635 break;
6636 case dw_val_class_lbl_id:
6637 size += DWARF2_ADDR_SIZE;
6638 break;
6639 case dw_val_class_lineptr:
6640 case dw_val_class_macptr:
6641 size += DWARF_OFFSET_SIZE;
6642 break;
6643 case dw_val_class_str:
6644 if (AT_string_form (a) == DW_FORM_strp)
6645 size += DWARF_OFFSET_SIZE;
6646 else
6647 size += strlen (a->dw_attr_val.v.val_str->str) + 1;
6648 break;
6649 default:
6650 gcc_unreachable ();
6654 return size;
6657 /* Size the debugging information associated with a given DIE. Visits the
6658 DIE's children recursively. Updates the global variable next_die_offset, on
6659 each time through. Uses the current value of next_die_offset to update the
6660 die_offset field in each DIE. */
6662 static void
6663 calc_die_sizes (dw_die_ref die)
6665 dw_die_ref c;
6667 die->die_offset = next_die_offset;
6668 next_die_offset += size_of_die (die);
6670 for (c = die->die_child; c != NULL; c = c->die_sib)
6671 calc_die_sizes (c);
6673 if (die->die_child != NULL)
6674 /* Count the null byte used to terminate sibling lists. */
6675 next_die_offset += 1;
6678 /* Set the marks for a die and its children. We do this so
6679 that we know whether or not a reference needs to use FORM_ref_addr; only
6680 DIEs in the same CU will be marked. We used to clear out the offset
6681 and use that as the flag, but ran into ordering problems. */
6683 static void
6684 mark_dies (dw_die_ref die)
6686 dw_die_ref c;
6688 gcc_assert (!die->die_mark);
6690 die->die_mark = 1;
6691 for (c = die->die_child; c; c = c->die_sib)
6692 mark_dies (c);
6695 /* Clear the marks for a die and its children. */
6697 static void
6698 unmark_dies (dw_die_ref die)
6700 dw_die_ref c;
6702 gcc_assert (die->die_mark);
6704 die->die_mark = 0;
6705 for (c = die->die_child; c; c = c->die_sib)
6706 unmark_dies (c);
6709 /* Clear the marks for a die, its children and referred dies. */
6711 static void
6712 unmark_all_dies (dw_die_ref die)
6714 dw_die_ref c;
6715 dw_attr_ref a;
6717 if (!die->die_mark)
6718 return;
6719 die->die_mark = 0;
6721 for (c = die->die_child; c; c = c->die_sib)
6722 unmark_all_dies (c);
6724 for (a = die->die_attr; a; a = a->dw_attr_next)
6725 if (AT_class (a) == dw_val_class_die_ref)
6726 unmark_all_dies (AT_ref (a));
6729 /* Return the size of the .debug_pubnames table generated for the
6730 compilation unit. */
6732 static unsigned long
6733 size_of_pubnames (void)
6735 unsigned long size;
6736 unsigned i;
6738 size = DWARF_PUBNAMES_HEADER_SIZE;
6739 for (i = 0; i < pubname_table_in_use; i++)
6741 pubname_ref p = &pubname_table[i];
6742 size += DWARF_OFFSET_SIZE + strlen (p->name) + 1;
6745 size += DWARF_OFFSET_SIZE;
6746 return size;
6749 /* Return the size of the information in the .debug_aranges section. */
6751 static unsigned long
6752 size_of_aranges (void)
6754 unsigned long size;
6756 size = DWARF_ARANGES_HEADER_SIZE;
6758 /* Count the address/length pair for this compilation unit. */
6759 size += 2 * DWARF2_ADDR_SIZE;
6760 size += 2 * DWARF2_ADDR_SIZE * arange_table_in_use;
6762 /* Count the two zero words used to terminated the address range table. */
6763 size += 2 * DWARF2_ADDR_SIZE;
6764 return size;
6767 /* Select the encoding of an attribute value. */
6769 static enum dwarf_form
6770 value_format (dw_attr_ref a)
6772 switch (a->dw_attr_val.val_class)
6774 case dw_val_class_addr:
6775 return DW_FORM_addr;
6776 case dw_val_class_range_list:
6777 case dw_val_class_offset:
6778 switch (DWARF_OFFSET_SIZE)
6780 case 4:
6781 return DW_FORM_data4;
6782 case 8:
6783 return DW_FORM_data8;
6784 default:
6785 gcc_unreachable ();
6787 case dw_val_class_loc_list:
6788 /* FIXME: Could be DW_FORM_data8, with a > 32 bit size
6789 .debug_loc section */
6790 return DW_FORM_data4;
6791 case dw_val_class_loc:
6792 switch (constant_size (size_of_locs (AT_loc (a))))
6794 case 1:
6795 return DW_FORM_block1;
6796 case 2:
6797 return DW_FORM_block2;
6798 default:
6799 gcc_unreachable ();
6801 case dw_val_class_const:
6802 return DW_FORM_sdata;
6803 case dw_val_class_unsigned_const:
6804 switch (constant_size (AT_unsigned (a)))
6806 case 1:
6807 return DW_FORM_data1;
6808 case 2:
6809 return DW_FORM_data2;
6810 case 4:
6811 return DW_FORM_data4;
6812 case 8:
6813 return DW_FORM_data8;
6814 default:
6815 gcc_unreachable ();
6817 case dw_val_class_long_long:
6818 return DW_FORM_block1;
6819 case dw_val_class_vec:
6820 return DW_FORM_block1;
6821 case dw_val_class_flag:
6822 return DW_FORM_flag;
6823 case dw_val_class_die_ref:
6824 if (AT_ref_external (a))
6825 return DW_FORM_ref_addr;
6826 else
6827 return DW_FORM_ref;
6828 case dw_val_class_fde_ref:
6829 return DW_FORM_data;
6830 case dw_val_class_lbl_id:
6831 return DW_FORM_addr;
6832 case dw_val_class_lineptr:
6833 case dw_val_class_macptr:
6834 return DW_FORM_data;
6835 case dw_val_class_str:
6836 return AT_string_form (a);
6838 default:
6839 gcc_unreachable ();
6843 /* Output the encoding of an attribute value. */
6845 static void
6846 output_value_format (dw_attr_ref a)
6848 enum dwarf_form form = value_format (a);
6850 dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
6853 /* Output the .debug_abbrev section which defines the DIE abbreviation
6854 table. */
6856 static void
6857 output_abbrev_section (void)
6859 unsigned long abbrev_id;
6861 dw_attr_ref a_attr;
6863 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6865 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6867 dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
6868 dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
6869 dwarf_tag_name (abbrev->die_tag));
6871 if (abbrev->die_child != NULL)
6872 dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
6873 else
6874 dw2_asm_output_data (1, DW_children_no, "DW_children_no");
6876 for (a_attr = abbrev->die_attr; a_attr != NULL;
6877 a_attr = a_attr->dw_attr_next)
6879 dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
6880 dwarf_attr_name (a_attr->dw_attr));
6881 output_value_format (a_attr);
6884 dw2_asm_output_data (1, 0, NULL);
6885 dw2_asm_output_data (1, 0, NULL);
6888 /* Terminate the table. */
6889 dw2_asm_output_data (1, 0, NULL);
6892 /* Output a symbol we can use to refer to this DIE from another CU. */
6894 static inline void
6895 output_die_symbol (dw_die_ref die)
6897 char *sym = die->die_symbol;
6899 if (sym == 0)
6900 return;
6902 if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
6903 /* We make these global, not weak; if the target doesn't support
6904 .linkonce, it doesn't support combining the sections, so debugging
6905 will break. */
6906 targetm.asm_out.globalize_label (asm_out_file, sym);
6908 ASM_OUTPUT_LABEL (asm_out_file, sym);
6911 /* Return a new location list, given the begin and end range, and the
6912 expression. gensym tells us whether to generate a new internal symbol for
6913 this location list node, which is done for the head of the list only. */
6915 static inline dw_loc_list_ref
6916 new_loc_list (dw_loc_descr_ref expr, const char *begin, const char *end,
6917 const char *section, unsigned int gensym)
6919 dw_loc_list_ref retlist = ggc_alloc_cleared (sizeof (dw_loc_list_node));
6921 retlist->begin = begin;
6922 retlist->end = end;
6923 retlist->expr = expr;
6924 retlist->section = section;
6925 if (gensym)
6926 retlist->ll_symbol = gen_internal_sym ("LLST");
6928 return retlist;
6931 /* Add a location description expression to a location list. */
6933 static inline void
6934 add_loc_descr_to_loc_list (dw_loc_list_ref *list_head, dw_loc_descr_ref descr,
6935 const char *begin, const char *end,
6936 const char *section)
6938 dw_loc_list_ref *d;
6940 /* Find the end of the chain. */
6941 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
6944 /* Add a new location list node to the list. */
6945 *d = new_loc_list (descr, begin, end, section, 0);
6948 static void
6949 dwarf2out_switch_text_section (void)
6951 dw_fde_ref fde;
6953 gcc_assert (cfun);
6955 fde = &fde_table[fde_table_in_use - 1];
6956 fde->dw_fde_switched_sections = true;
6957 fde->dw_fde_hot_section_label = cfun->hot_section_label;
6958 fde->dw_fde_hot_section_end_label = cfun->hot_section_end_label;
6959 fde->dw_fde_unlikely_section_label = cfun->cold_section_label;
6960 fde->dw_fde_unlikely_section_end_label = cfun->cold_section_end_label;
6961 have_multiple_function_sections = true;
6964 /* Output the location list given to us. */
6966 static void
6967 output_loc_list (dw_loc_list_ref list_head)
6969 dw_loc_list_ref curr = list_head;
6971 ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
6973 /* Walk the location list, and output each range + expression. */
6974 for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
6976 unsigned long size;
6977 if (!have_multiple_function_sections)
6979 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
6980 "Location list begin address (%s)",
6981 list_head->ll_symbol);
6982 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
6983 "Location list end address (%s)",
6984 list_head->ll_symbol);
6986 else
6988 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
6989 "Location list begin address (%s)",
6990 list_head->ll_symbol);
6991 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
6992 "Location list end address (%s)",
6993 list_head->ll_symbol);
6995 size = size_of_locs (curr->expr);
6997 /* Output the block length for this list of location operations. */
6998 gcc_assert (size <= 0xffff);
6999 dw2_asm_output_data (2, size, "%s", "Location expression size");
7001 output_loc_sequence (curr->expr);
7004 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
7005 "Location list terminator begin (%s)",
7006 list_head->ll_symbol);
7007 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
7008 "Location list terminator end (%s)",
7009 list_head->ll_symbol);
7012 /* Output the DIE and its attributes. Called recursively to generate
7013 the definitions of each child DIE. */
7015 static void
7016 output_die (dw_die_ref die)
7018 dw_attr_ref a;
7019 dw_die_ref c;
7020 unsigned long size;
7022 /* If someone in another CU might refer to us, set up a symbol for
7023 them to point to. */
7024 if (die->die_symbol)
7025 output_die_symbol (die);
7027 dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (0x%lx) %s)",
7028 die->die_offset, dwarf_tag_name (die->die_tag));
7030 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
7032 const char *name = dwarf_attr_name (a->dw_attr);
7034 switch (AT_class (a))
7036 case dw_val_class_addr:
7037 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
7038 break;
7040 case dw_val_class_offset:
7041 dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
7042 "%s", name);
7043 break;
7045 case dw_val_class_range_list:
7047 char *p = strchr (ranges_section_label, '\0');
7049 sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
7050 a->dw_attr_val.v.val_offset);
7051 dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
7052 debug_ranges_section, "%s", name);
7053 *p = '\0';
7055 break;
7057 case dw_val_class_loc:
7058 size = size_of_locs (AT_loc (a));
7060 /* Output the block length for this list of location operations. */
7061 dw2_asm_output_data (constant_size (size), size, "%s", name);
7063 output_loc_sequence (AT_loc (a));
7064 break;
7066 case dw_val_class_const:
7067 /* ??? It would be slightly more efficient to use a scheme like is
7068 used for unsigned constants below, but gdb 4.x does not sign
7069 extend. Gdb 5.x does sign extend. */
7070 dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
7071 break;
7073 case dw_val_class_unsigned_const:
7074 dw2_asm_output_data (constant_size (AT_unsigned (a)),
7075 AT_unsigned (a), "%s", name);
7076 break;
7078 case dw_val_class_long_long:
7080 unsigned HOST_WIDE_INT first, second;
7082 dw2_asm_output_data (1,
7083 2 * HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
7084 "%s", name);
7086 if (WORDS_BIG_ENDIAN)
7088 first = a->dw_attr_val.v.val_long_long.hi;
7089 second = a->dw_attr_val.v.val_long_long.low;
7091 else
7093 first = a->dw_attr_val.v.val_long_long.low;
7094 second = a->dw_attr_val.v.val_long_long.hi;
7097 dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
7098 first, "long long constant");
7099 dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
7100 second, NULL);
7102 break;
7104 case dw_val_class_vec:
7106 unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
7107 unsigned int len = a->dw_attr_val.v.val_vec.length;
7108 unsigned int i;
7109 unsigned char *p;
7111 dw2_asm_output_data (1, len * elt_size, "%s", name);
7112 if (elt_size > sizeof (HOST_WIDE_INT))
7114 elt_size /= 2;
7115 len *= 2;
7117 for (i = 0, p = a->dw_attr_val.v.val_vec.array;
7118 i < len;
7119 i++, p += elt_size)
7120 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
7121 "fp or vector constant word %u", i);
7122 break;
7125 case dw_val_class_flag:
7126 dw2_asm_output_data (1, AT_flag (a), "%s", name);
7127 break;
7129 case dw_val_class_loc_list:
7131 char *sym = AT_loc_list (a)->ll_symbol;
7133 gcc_assert (sym);
7134 dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, debug_loc_section,
7135 "%s", name);
7137 break;
7139 case dw_val_class_die_ref:
7140 if (AT_ref_external (a))
7142 char *sym = AT_ref (a)->die_symbol;
7144 gcc_assert (sym);
7145 dw2_asm_output_offset (DWARF2_ADDR_SIZE, sym, debug_info_section,
7146 "%s", name);
7148 else
7150 gcc_assert (AT_ref (a)->die_offset);
7151 dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
7152 "%s", name);
7154 break;
7156 case dw_val_class_fde_ref:
7158 char l1[20];
7160 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
7161 a->dw_attr_val.v.val_fde_index * 2);
7162 dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, debug_frame_section,
7163 "%s", name);
7165 break;
7167 case dw_val_class_lbl_id:
7168 dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
7169 break;
7171 case dw_val_class_lineptr:
7172 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
7173 debug_line_section, "%s", name);
7174 break;
7176 case dw_val_class_macptr:
7177 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
7178 debug_macinfo_section, "%s", name);
7179 break;
7181 case dw_val_class_str:
7182 if (AT_string_form (a) == DW_FORM_strp)
7183 dw2_asm_output_offset (DWARF_OFFSET_SIZE,
7184 a->dw_attr_val.v.val_str->label,
7185 debug_str_section,
7186 "%s: \"%s\"", name, AT_string (a));
7187 else
7188 dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
7189 break;
7191 default:
7192 gcc_unreachable ();
7196 for (c = die->die_child; c != NULL; c = c->die_sib)
7197 output_die (c);
7199 /* Add null byte to terminate sibling list. */
7200 if (die->die_child != NULL)
7201 dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
7202 die->die_offset);
7205 /* Output the compilation unit that appears at the beginning of the
7206 .debug_info section, and precedes the DIE descriptions. */
7208 static void
7209 output_compilation_unit_header (void)
7211 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7212 dw2_asm_output_data (4, 0xffffffff,
7213 "Initial length escape value indicating 64-bit DWARF extension");
7214 dw2_asm_output_data (DWARF_OFFSET_SIZE,
7215 next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
7216 "Length of Compilation Unit Info");
7217 dw2_asm_output_data (2, DWARF_VERSION, "DWARF version number");
7218 dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
7219 debug_abbrev_section,
7220 "Offset Into Abbrev. Section");
7221 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
7224 /* Output the compilation unit DIE and its children. */
7226 static void
7227 output_comp_unit (dw_die_ref die, int output_if_empty)
7229 const char *secname;
7230 char *oldsym, *tmp;
7232 /* Unless we are outputting main CU, we may throw away empty ones. */
7233 if (!output_if_empty && die->die_child == NULL)
7234 return;
7236 /* Even if there are no children of this DIE, we must output the information
7237 about the compilation unit. Otherwise, on an empty translation unit, we
7238 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
7239 will then complain when examining the file. First mark all the DIEs in
7240 this CU so we know which get local refs. */
7241 mark_dies (die);
7243 build_abbrev_table (die);
7245 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
7246 next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
7247 calc_die_sizes (die);
7249 oldsym = die->die_symbol;
7250 if (oldsym)
7252 tmp = alloca (strlen (oldsym) + 24);
7254 sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
7255 secname = tmp;
7256 die->die_symbol = NULL;
7257 switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
7259 else
7260 switch_to_section (debug_info_section);
7262 /* Output debugging information. */
7263 output_compilation_unit_header ();
7264 output_die (die);
7266 /* Leave the marks on the main CU, so we can check them in
7267 output_pubnames. */
7268 if (oldsym)
7270 unmark_dies (die);
7271 die->die_symbol = oldsym;
7275 /* The DWARF2 pubname for a nested thingy looks like "A::f". The
7276 output of lang_hooks.decl_printable_name for C++ looks like
7277 "A::f(int)". Let's drop the argument list, and maybe the scope. */
7279 static const char *
7280 dwarf2_name (tree decl, int scope)
7282 return lang_hooks.decl_printable_name (decl, scope ? 1 : 0);
7285 /* Add a new entry to .debug_pubnames if appropriate. */
7287 static void
7288 add_pubname (tree decl, dw_die_ref die)
7290 pubname_ref p;
7292 if (! TREE_PUBLIC (decl))
7293 return;
7295 if (pubname_table_in_use == pubname_table_allocated)
7297 pubname_table_allocated += PUBNAME_TABLE_INCREMENT;
7298 pubname_table
7299 = ggc_realloc (pubname_table,
7300 (pubname_table_allocated * sizeof (pubname_entry)));
7301 memset (pubname_table + pubname_table_in_use, 0,
7302 PUBNAME_TABLE_INCREMENT * sizeof (pubname_entry));
7305 p = &pubname_table[pubname_table_in_use++];
7306 p->die = die;
7307 p->name = xstrdup (dwarf2_name (decl, 1));
7310 /* Output the public names table used to speed up access to externally
7311 visible names. For now, only generate entries for externally
7312 visible procedures. */
7314 static void
7315 output_pubnames (void)
7317 unsigned i;
7318 unsigned long pubnames_length = size_of_pubnames ();
7320 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7321 dw2_asm_output_data (4, 0xffffffff,
7322 "Initial length escape value indicating 64-bit DWARF extension");
7323 dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
7324 "Length of Public Names Info");
7325 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7326 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
7327 debug_info_section,
7328 "Offset of Compilation Unit Info");
7329 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
7330 "Compilation Unit Length");
7332 for (i = 0; i < pubname_table_in_use; i++)
7334 pubname_ref pub = &pubname_table[i];
7336 /* We shouldn't see pubnames for DIEs outside of the main CU. */
7337 gcc_assert (pub->die->die_mark);
7339 dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
7340 "DIE offset");
7342 dw2_asm_output_nstring (pub->name, -1, "external name");
7345 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
7348 /* Add a new entry to .debug_aranges if appropriate. */
7350 static void
7351 add_arange (tree decl, dw_die_ref die)
7353 if (! DECL_SECTION_NAME (decl))
7354 return;
7356 if (arange_table_in_use == arange_table_allocated)
7358 arange_table_allocated += ARANGE_TABLE_INCREMENT;
7359 arange_table = ggc_realloc (arange_table,
7360 (arange_table_allocated
7361 * sizeof (dw_die_ref)));
7362 memset (arange_table + arange_table_in_use, 0,
7363 ARANGE_TABLE_INCREMENT * sizeof (dw_die_ref));
7366 arange_table[arange_table_in_use++] = die;
7369 /* Output the information that goes into the .debug_aranges table.
7370 Namely, define the beginning and ending address range of the
7371 text section generated for this compilation unit. */
7373 static void
7374 output_aranges (void)
7376 unsigned i;
7377 unsigned long aranges_length = size_of_aranges ();
7379 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7380 dw2_asm_output_data (4, 0xffffffff,
7381 "Initial length escape value indicating 64-bit DWARF extension");
7382 dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
7383 "Length of Address Ranges Info");
7384 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7385 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
7386 debug_info_section,
7387 "Offset of Compilation Unit Info");
7388 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
7389 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
7391 /* We need to align to twice the pointer size here. */
7392 if (DWARF_ARANGES_PAD_SIZE)
7394 /* Pad using a 2 byte words so that padding is correct for any
7395 pointer size. */
7396 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
7397 2 * DWARF2_ADDR_SIZE);
7398 for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
7399 dw2_asm_output_data (2, 0, NULL);
7402 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
7403 dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
7404 text_section_label, "Length");
7405 if (flag_reorder_blocks_and_partition)
7407 dw2_asm_output_addr (DWARF2_ADDR_SIZE, cold_text_section_label,
7408 "Address");
7409 dw2_asm_output_delta (DWARF2_ADDR_SIZE, cold_end_label,
7410 cold_text_section_label, "Length");
7413 for (i = 0; i < arange_table_in_use; i++)
7415 dw_die_ref die = arange_table[i];
7417 /* We shouldn't see aranges for DIEs outside of the main CU. */
7418 gcc_assert (die->die_mark);
7420 if (die->die_tag == DW_TAG_subprogram)
7422 dw2_asm_output_addr (DWARF2_ADDR_SIZE, get_AT_low_pc (die),
7423 "Address");
7424 dw2_asm_output_delta (DWARF2_ADDR_SIZE, get_AT_hi_pc (die),
7425 get_AT_low_pc (die), "Length");
7427 else
7429 /* A static variable; extract the symbol from DW_AT_location.
7430 Note that this code isn't currently hit, as we only emit
7431 aranges for functions (jason 9/23/99). */
7432 dw_attr_ref a = get_AT (die, DW_AT_location);
7433 dw_loc_descr_ref loc;
7435 gcc_assert (a && AT_class (a) == dw_val_class_loc);
7437 loc = AT_loc (a);
7438 gcc_assert (loc->dw_loc_opc == DW_OP_addr);
7440 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE,
7441 loc->dw_loc_oprnd1.v.val_addr, "Address");
7442 dw2_asm_output_data (DWARF2_ADDR_SIZE,
7443 get_AT_unsigned (die, DW_AT_byte_size),
7444 "Length");
7448 /* Output the terminator words. */
7449 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7450 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7453 /* Add a new entry to .debug_ranges. Return the offset at which it
7454 was placed. */
7456 static unsigned int
7457 add_ranges (tree block)
7459 unsigned int in_use = ranges_table_in_use;
7461 if (in_use == ranges_table_allocated)
7463 ranges_table_allocated += RANGES_TABLE_INCREMENT;
7464 ranges_table
7465 = ggc_realloc (ranges_table, (ranges_table_allocated
7466 * sizeof (struct dw_ranges_struct)));
7467 memset (ranges_table + ranges_table_in_use, 0,
7468 RANGES_TABLE_INCREMENT * sizeof (struct dw_ranges_struct));
7471 ranges_table[in_use].block_num = (block ? BLOCK_NUMBER (block) : 0);
7472 ranges_table_in_use = in_use + 1;
7474 return in_use * 2 * DWARF2_ADDR_SIZE;
7477 static void
7478 output_ranges (void)
7480 unsigned i;
7481 static const char *const start_fmt = "Offset 0x%x";
7482 const char *fmt = start_fmt;
7484 for (i = 0; i < ranges_table_in_use; i++)
7486 int block_num = ranges_table[i].block_num;
7488 if (block_num)
7490 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
7491 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
7493 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
7494 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
7496 /* If all code is in the text section, then the compilation
7497 unit base address defaults to DW_AT_low_pc, which is the
7498 base of the text section. */
7499 if (!have_multiple_function_sections)
7501 dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
7502 text_section_label,
7503 fmt, i * 2 * DWARF2_ADDR_SIZE);
7504 dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
7505 text_section_label, NULL);
7508 /* Otherwise, we add a DW_AT_entry_pc attribute to force the
7509 compilation unit base address to zero, which allows us to
7510 use absolute addresses, and not worry about whether the
7511 target supports cross-section arithmetic. */
7512 else
7514 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
7515 fmt, i * 2 * DWARF2_ADDR_SIZE);
7516 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
7519 fmt = NULL;
7521 else
7523 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7524 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7525 fmt = start_fmt;
7530 /* Data structure containing information about input files. */
7531 struct file_info
7533 char *path; /* Complete file name. */
7534 char *fname; /* File name part. */
7535 int length; /* Length of entire string. */
7536 int file_idx; /* Index in input file table. */
7537 int dir_idx; /* Index in directory table. */
7540 /* Data structure containing information about directories with source
7541 files. */
7542 struct dir_info
7544 char *path; /* Path including directory name. */
7545 int length; /* Path length. */
7546 int prefix; /* Index of directory entry which is a prefix. */
7547 int count; /* Number of files in this directory. */
7548 int dir_idx; /* Index of directory used as base. */
7549 int used; /* Used in the end? */
7552 /* Callback function for file_info comparison. We sort by looking at
7553 the directories in the path. */
7555 static int
7556 file_info_cmp (const void *p1, const void *p2)
7558 const struct file_info *s1 = p1;
7559 const struct file_info *s2 = p2;
7560 unsigned char *cp1;
7561 unsigned char *cp2;
7563 /* Take care of file names without directories. We need to make sure that
7564 we return consistent values to qsort since some will get confused if
7565 we return the same value when identical operands are passed in opposite
7566 orders. So if neither has a directory, return 0 and otherwise return
7567 1 or -1 depending on which one has the directory. */
7568 if ((s1->path == s1->fname || s2->path == s2->fname))
7569 return (s2->path == s2->fname) - (s1->path == s1->fname);
7571 cp1 = (unsigned char *) s1->path;
7572 cp2 = (unsigned char *) s2->path;
7574 while (1)
7576 ++cp1;
7577 ++cp2;
7578 /* Reached the end of the first path? If so, handle like above. */
7579 if ((cp1 == (unsigned char *) s1->fname)
7580 || (cp2 == (unsigned char *) s2->fname))
7581 return ((cp2 == (unsigned char *) s2->fname)
7582 - (cp1 == (unsigned char *) s1->fname));
7584 /* Character of current path component the same? */
7585 else if (*cp1 != *cp2)
7586 return *cp1 - *cp2;
7590 /* Output the directory table and the file name table. We try to minimize
7591 the total amount of memory needed. A heuristic is used to avoid large
7592 slowdowns with many input files. */
7594 static void
7595 output_file_names (void)
7597 struct file_info *files;
7598 struct dir_info *dirs;
7599 int *saved;
7600 int *savehere;
7601 int *backmap;
7602 size_t ndirs;
7603 int idx_offset;
7604 size_t i;
7605 int idx;
7607 /* Handle the case where file_table is empty. */
7608 if (VARRAY_ACTIVE_SIZE (file_table) <= 1)
7610 dw2_asm_output_data (1, 0, "End directory table");
7611 dw2_asm_output_data (1, 0, "End file name table");
7612 return;
7615 /* Allocate the various arrays we need. */
7616 files = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct file_info));
7617 dirs = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct dir_info));
7619 /* Sort the file names. */
7620 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7622 char *f;
7624 /* Skip all leading "./". */
7625 f = VARRAY_CHAR_PTR (file_table, i);
7626 while (f[0] == '.' && f[1] == '/')
7627 f += 2;
7629 /* Create a new array entry. */
7630 files[i].path = f;
7631 files[i].length = strlen (f);
7632 files[i].file_idx = i;
7634 /* Search for the file name part. */
7635 f = strrchr (f, '/');
7636 files[i].fname = f == NULL ? files[i].path : f + 1;
7639 qsort (files + 1, VARRAY_ACTIVE_SIZE (file_table) - 1,
7640 sizeof (files[0]), file_info_cmp);
7642 /* Find all the different directories used. */
7643 dirs[0].path = files[1].path;
7644 dirs[0].length = files[1].fname - files[1].path;
7645 dirs[0].prefix = -1;
7646 dirs[0].count = 1;
7647 dirs[0].dir_idx = 0;
7648 dirs[0].used = 0;
7649 files[1].dir_idx = 0;
7650 ndirs = 1;
7652 for (i = 2; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7653 if (files[i].fname - files[i].path == dirs[ndirs - 1].length
7654 && memcmp (dirs[ndirs - 1].path, files[i].path,
7655 dirs[ndirs - 1].length) == 0)
7657 /* Same directory as last entry. */
7658 files[i].dir_idx = ndirs - 1;
7659 ++dirs[ndirs - 1].count;
7661 else
7663 size_t j;
7665 /* This is a new directory. */
7666 dirs[ndirs].path = files[i].path;
7667 dirs[ndirs].length = files[i].fname - files[i].path;
7668 dirs[ndirs].count = 1;
7669 dirs[ndirs].dir_idx = ndirs;
7670 dirs[ndirs].used = 0;
7671 files[i].dir_idx = ndirs;
7673 /* Search for a prefix. */
7674 dirs[ndirs].prefix = -1;
7675 for (j = 0; j < ndirs; j++)
7676 if (dirs[j].length < dirs[ndirs].length
7677 && dirs[j].length > 1
7678 && (dirs[ndirs].prefix == -1
7679 || dirs[j].length > dirs[dirs[ndirs].prefix].length)
7680 && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
7681 dirs[ndirs].prefix = j;
7683 ++ndirs;
7686 /* Now to the actual work. We have to find a subset of the directories which
7687 allow expressing the file name using references to the directory table
7688 with the least amount of characters. We do not do an exhaustive search
7689 where we would have to check out every combination of every single
7690 possible prefix. Instead we use a heuristic which provides nearly optimal
7691 results in most cases and never is much off. */
7692 saved = alloca (ndirs * sizeof (int));
7693 savehere = alloca (ndirs * sizeof (int));
7695 memset (saved, '\0', ndirs * sizeof (saved[0]));
7696 for (i = 0; i < ndirs; i++)
7698 size_t j;
7699 int total;
7701 /* We can always save some space for the current directory. But this
7702 does not mean it will be enough to justify adding the directory. */
7703 savehere[i] = dirs[i].length;
7704 total = (savehere[i] - saved[i]) * dirs[i].count;
7706 for (j = i + 1; j < ndirs; j++)
7708 savehere[j] = 0;
7709 if (saved[j] < dirs[i].length)
7711 /* Determine whether the dirs[i] path is a prefix of the
7712 dirs[j] path. */
7713 int k;
7715 k = dirs[j].prefix;
7716 while (k != -1 && k != (int) i)
7717 k = dirs[k].prefix;
7719 if (k == (int) i)
7721 /* Yes it is. We can possibly safe some memory but
7722 writing the filenames in dirs[j] relative to
7723 dirs[i]. */
7724 savehere[j] = dirs[i].length;
7725 total += (savehere[j] - saved[j]) * dirs[j].count;
7730 /* Check whether we can safe enough to justify adding the dirs[i]
7731 directory. */
7732 if (total > dirs[i].length + 1)
7734 /* It's worthwhile adding. */
7735 for (j = i; j < ndirs; j++)
7736 if (savehere[j] > 0)
7738 /* Remember how much we saved for this directory so far. */
7739 saved[j] = savehere[j];
7741 /* Remember the prefix directory. */
7742 dirs[j].dir_idx = i;
7747 /* We have to emit them in the order they appear in the file_table array
7748 since the index is used in the debug info generation. To do this
7749 efficiently we generate a back-mapping of the indices first. */
7750 backmap = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (int));
7751 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7753 backmap[files[i].file_idx] = i;
7755 /* Mark this directory as used. */
7756 dirs[dirs[files[i].dir_idx].dir_idx].used = 1;
7759 /* That was it. We are ready to emit the information. First emit the
7760 directory name table. We have to make sure the first actually emitted
7761 directory name has index one; zero is reserved for the current working
7762 directory. Make sure we do not confuse these indices with the one for the
7763 constructed table (even though most of the time they are identical). */
7764 idx = 1;
7765 idx_offset = dirs[0].length > 0 ? 1 : 0;
7766 for (i = 1 - idx_offset; i < ndirs; i++)
7767 if (dirs[i].used != 0)
7769 dirs[i].used = idx++;
7770 dw2_asm_output_nstring (dirs[i].path, dirs[i].length - 1,
7771 "Directory Entry: 0x%x", dirs[i].used);
7774 dw2_asm_output_data (1, 0, "End directory table");
7776 /* Correct the index for the current working directory entry if it
7777 exists. */
7778 if (idx_offset == 0)
7779 dirs[0].used = 0;
7781 /* Now write all the file names. */
7782 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7784 int file_idx = backmap[i];
7785 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
7787 dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
7788 "File Entry: 0x%lx", (unsigned long) i);
7790 /* Include directory index. */
7791 dw2_asm_output_data_uleb128 (dirs[dir_idx].used, NULL);
7793 /* Modification time. */
7794 dw2_asm_output_data_uleb128 (0, NULL);
7796 /* File length in bytes. */
7797 dw2_asm_output_data_uleb128 (0, NULL);
7800 dw2_asm_output_data (1, 0, "End file name table");
7804 /* Output the source line number correspondence information. This
7805 information goes into the .debug_line section. */
7807 static void
7808 output_line_info (void)
7810 char l1[20], l2[20], p1[20], p2[20];
7811 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7812 char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7813 unsigned opc;
7814 unsigned n_op_args;
7815 unsigned long lt_index;
7816 unsigned long current_line;
7817 long line_offset;
7818 long line_delta;
7819 unsigned long current_file;
7820 unsigned long function;
7822 ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
7823 ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
7824 ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
7825 ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
7827 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7828 dw2_asm_output_data (4, 0xffffffff,
7829 "Initial length escape value indicating 64-bit DWARF extension");
7830 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
7831 "Length of Source Line Info");
7832 ASM_OUTPUT_LABEL (asm_out_file, l1);
7834 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7835 dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
7836 ASM_OUTPUT_LABEL (asm_out_file, p1);
7838 /* Define the architecture-dependent minimum instruction length (in
7839 bytes). In this implementation of DWARF, this field is used for
7840 information purposes only. Since GCC generates assembly language,
7841 we have no a priori knowledge of how many instruction bytes are
7842 generated for each source line, and therefore can use only the
7843 DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
7844 commands. Accordingly, we fix this as `1', which is "correct
7845 enough" for all architectures, and don't let the target override. */
7846 dw2_asm_output_data (1, 1,
7847 "Minimum Instruction Length");
7849 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
7850 "Default is_stmt_start flag");
7851 dw2_asm_output_data (1, DWARF_LINE_BASE,
7852 "Line Base Value (Special Opcodes)");
7853 dw2_asm_output_data (1, DWARF_LINE_RANGE,
7854 "Line Range Value (Special Opcodes)");
7855 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
7856 "Special Opcode Base");
7858 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
7860 switch (opc)
7862 case DW_LNS_advance_pc:
7863 case DW_LNS_advance_line:
7864 case DW_LNS_set_file:
7865 case DW_LNS_set_column:
7866 case DW_LNS_fixed_advance_pc:
7867 n_op_args = 1;
7868 break;
7869 default:
7870 n_op_args = 0;
7871 break;
7874 dw2_asm_output_data (1, n_op_args, "opcode: 0x%x has %d args",
7875 opc, n_op_args);
7878 /* Write out the information about the files we use. */
7879 output_file_names ();
7880 ASM_OUTPUT_LABEL (asm_out_file, p2);
7882 /* We used to set the address register to the first location in the text
7883 section here, but that didn't accomplish anything since we already
7884 have a line note for the opening brace of the first function. */
7886 /* Generate the line number to PC correspondence table, encoded as
7887 a series of state machine operations. */
7888 current_file = 1;
7889 current_line = 1;
7891 if (cfun && in_cold_section_p)
7892 strcpy (prev_line_label, cfun->cold_section_label);
7893 else
7894 strcpy (prev_line_label, text_section_label);
7895 for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
7897 dw_line_info_ref line_info = &line_info_table[lt_index];
7899 #if 0
7900 /* Disable this optimization for now; GDB wants to see two line notes
7901 at the beginning of a function so it can find the end of the
7902 prologue. */
7904 /* Don't emit anything for redundant notes. Just updating the
7905 address doesn't accomplish anything, because we already assume
7906 that anything after the last address is this line. */
7907 if (line_info->dw_line_num == current_line
7908 && line_info->dw_file_num == current_file)
7909 continue;
7910 #endif
7912 /* Emit debug info for the address of the current line.
7914 Unfortunately, we have little choice here currently, and must always
7915 use the most general form. GCC does not know the address delta
7916 itself, so we can't use DW_LNS_advance_pc. Many ports do have length
7917 attributes which will give an upper bound on the address range. We
7918 could perhaps use length attributes to determine when it is safe to
7919 use DW_LNS_fixed_advance_pc. */
7921 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
7922 if (0)
7924 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
7925 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7926 "DW_LNS_fixed_advance_pc");
7927 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7929 else
7931 /* This can handle any delta. This takes
7932 4+DWARF2_ADDR_SIZE bytes. */
7933 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7934 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7935 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7936 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7939 strcpy (prev_line_label, line_label);
7941 /* Emit debug info for the source file of the current line, if
7942 different from the previous line. */
7943 if (line_info->dw_file_num != current_file)
7945 current_file = line_info->dw_file_num;
7946 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7947 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7948 VARRAY_CHAR_PTR (file_table,
7949 current_file));
7952 /* Emit debug info for the current line number, choosing the encoding
7953 that uses the least amount of space. */
7954 if (line_info->dw_line_num != current_line)
7956 line_offset = line_info->dw_line_num - current_line;
7957 line_delta = line_offset - DWARF_LINE_BASE;
7958 current_line = line_info->dw_line_num;
7959 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7960 /* This can handle deltas from -10 to 234, using the current
7961 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
7962 takes 1 byte. */
7963 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7964 "line %lu", current_line);
7965 else
7967 /* This can handle any delta. This takes at least 4 bytes,
7968 depending on the value being encoded. */
7969 dw2_asm_output_data (1, DW_LNS_advance_line,
7970 "advance to line %lu", current_line);
7971 dw2_asm_output_data_sleb128 (line_offset, NULL);
7972 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7975 else
7976 /* We still need to start a new row, so output a copy insn. */
7977 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7980 /* Emit debug info for the address of the end of the function. */
7981 if (0)
7983 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7984 "DW_LNS_fixed_advance_pc");
7985 dw2_asm_output_delta (2, text_end_label, prev_line_label, NULL);
7987 else
7989 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7990 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7991 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7992 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_end_label, NULL);
7995 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7996 dw2_asm_output_data_uleb128 (1, NULL);
7997 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7999 function = 0;
8000 current_file = 1;
8001 current_line = 1;
8002 for (lt_index = 0; lt_index < separate_line_info_table_in_use;)
8004 dw_separate_line_info_ref line_info
8005 = &separate_line_info_table[lt_index];
8007 #if 0
8008 /* Don't emit anything for redundant notes. */
8009 if (line_info->dw_line_num == current_line
8010 && line_info->dw_file_num == current_file
8011 && line_info->function == function)
8012 goto cont;
8013 #endif
8015 /* Emit debug info for the address of the current line. If this is
8016 a new function, or the first line of a function, then we need
8017 to handle it differently. */
8018 ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
8019 lt_index);
8020 if (function != line_info->function)
8022 function = line_info->function;
8024 /* Set the address register to the first line in the function. */
8025 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
8026 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
8027 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
8028 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
8030 else
8032 /* ??? See the DW_LNS_advance_pc comment above. */
8033 if (0)
8035 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
8036 "DW_LNS_fixed_advance_pc");
8037 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
8039 else
8041 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
8042 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
8043 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
8044 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
8048 strcpy (prev_line_label, line_label);
8050 /* Emit debug info for the source file of the current line, if
8051 different from the previous line. */
8052 if (line_info->dw_file_num != current_file)
8054 current_file = line_info->dw_file_num;
8055 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
8056 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
8057 VARRAY_CHAR_PTR (file_table,
8058 current_file));
8061 /* Emit debug info for the current line number, choosing the encoding
8062 that uses the least amount of space. */
8063 if (line_info->dw_line_num != current_line)
8065 line_offset = line_info->dw_line_num - current_line;
8066 line_delta = line_offset - DWARF_LINE_BASE;
8067 current_line = line_info->dw_line_num;
8068 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
8069 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
8070 "line %lu", current_line);
8071 else
8073 dw2_asm_output_data (1, DW_LNS_advance_line,
8074 "advance to line %lu", current_line);
8075 dw2_asm_output_data_sleb128 (line_offset, NULL);
8076 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
8079 else
8080 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
8082 #if 0
8083 cont:
8084 #endif
8086 lt_index++;
8088 /* If we're done with a function, end its sequence. */
8089 if (lt_index == separate_line_info_table_in_use
8090 || separate_line_info_table[lt_index].function != function)
8092 current_file = 1;
8093 current_line = 1;
8095 /* Emit debug info for the address of the end of the function. */
8096 ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
8097 if (0)
8099 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
8100 "DW_LNS_fixed_advance_pc");
8101 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
8103 else
8105 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
8106 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
8107 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
8108 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
8111 /* Output the marker for the end of this sequence. */
8112 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
8113 dw2_asm_output_data_uleb128 (1, NULL);
8114 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
8118 /* Output the marker for the end of the line number info. */
8119 ASM_OUTPUT_LABEL (asm_out_file, l2);
8122 /* Given a pointer to a tree node for some base type, return a pointer to
8123 a DIE that describes the given type.
8125 This routine must only be called for GCC type nodes that correspond to
8126 Dwarf base (fundamental) types. */
8128 static dw_die_ref
8129 base_type_die (tree type)
8131 dw_die_ref base_type_result;
8132 enum dwarf_type encoding;
8134 if (TREE_CODE (type) == ERROR_MARK || TREE_CODE (type) == VOID_TYPE)
8135 return 0;
8137 switch (TREE_CODE (type))
8139 case INTEGER_TYPE:
8140 if (TYPE_STRING_FLAG (type))
8142 if (TYPE_UNSIGNED (type))
8143 encoding = DW_ATE_unsigned_char;
8144 else
8145 encoding = DW_ATE_signed_char;
8147 else if (TYPE_UNSIGNED (type))
8148 encoding = DW_ATE_unsigned;
8149 else
8150 encoding = DW_ATE_signed;
8151 break;
8153 case REAL_TYPE:
8154 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type)))
8155 encoding = DW_ATE_decimal_float;
8156 else
8157 encoding = DW_ATE_float;
8158 break;
8160 /* Dwarf2 doesn't know anything about complex ints, so use
8161 a user defined type for it. */
8162 case COMPLEX_TYPE:
8163 if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
8164 encoding = DW_ATE_complex_float;
8165 else
8166 encoding = DW_ATE_lo_user;
8167 break;
8169 case BOOLEAN_TYPE:
8170 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
8171 encoding = DW_ATE_boolean;
8172 break;
8174 default:
8175 /* No other TREE_CODEs are Dwarf fundamental types. */
8176 gcc_unreachable ();
8179 base_type_result = new_die (DW_TAG_base_type, comp_unit_die, type);
8181 /* This probably indicates a bug. */
8182 if (! TYPE_NAME (type))
8183 add_name_attribute (base_type_result, "__unknown__");
8185 add_AT_unsigned (base_type_result, DW_AT_byte_size,
8186 int_size_in_bytes (type));
8187 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
8189 return base_type_result;
8192 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
8193 the Dwarf "root" type for the given input type. The Dwarf "root" type of
8194 a given type is generally the same as the given type, except that if the
8195 given type is a pointer or reference type, then the root type of the given
8196 type is the root type of the "basis" type for the pointer or reference
8197 type. (This definition of the "root" type is recursive.) Also, the root
8198 type of a `const' qualified type or a `volatile' qualified type is the
8199 root type of the given type without the qualifiers. */
8201 static tree
8202 root_type (tree type)
8204 if (TREE_CODE (type) == ERROR_MARK)
8205 return error_mark_node;
8207 switch (TREE_CODE (type))
8209 case ERROR_MARK:
8210 return error_mark_node;
8212 case POINTER_TYPE:
8213 case REFERENCE_TYPE:
8214 return type_main_variant (root_type (TREE_TYPE (type)));
8216 default:
8217 return type_main_variant (type);
8221 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
8222 given input type is a Dwarf "fundamental" type. Otherwise return null. */
8224 static inline int
8225 is_base_type (tree type)
8227 switch (TREE_CODE (type))
8229 case ERROR_MARK:
8230 case VOID_TYPE:
8231 case INTEGER_TYPE:
8232 case REAL_TYPE:
8233 case COMPLEX_TYPE:
8234 case BOOLEAN_TYPE:
8235 return 1;
8237 case ARRAY_TYPE:
8238 case RECORD_TYPE:
8239 case UNION_TYPE:
8240 case QUAL_UNION_TYPE:
8241 case ENUMERAL_TYPE:
8242 case FUNCTION_TYPE:
8243 case METHOD_TYPE:
8244 case POINTER_TYPE:
8245 case REFERENCE_TYPE:
8246 case OFFSET_TYPE:
8247 case LANG_TYPE:
8248 case VECTOR_TYPE:
8249 return 0;
8251 default:
8252 gcc_unreachable ();
8255 return 0;
8258 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
8259 node, return the size in bits for the type if it is a constant, or else
8260 return the alignment for the type if the type's size is not constant, or
8261 else return BITS_PER_WORD if the type actually turns out to be an
8262 ERROR_MARK node. */
8264 static inline unsigned HOST_WIDE_INT
8265 simple_type_size_in_bits (tree type)
8267 if (TREE_CODE (type) == ERROR_MARK)
8268 return BITS_PER_WORD;
8269 else if (TYPE_SIZE (type) == NULL_TREE)
8270 return 0;
8271 else if (host_integerp (TYPE_SIZE (type), 1))
8272 return tree_low_cst (TYPE_SIZE (type), 1);
8273 else
8274 return TYPE_ALIGN (type);
8277 /* Return true if the debug information for the given type should be
8278 emitted as a subrange type. */
8280 static inline bool
8281 is_subrange_type (tree type)
8283 tree subtype = TREE_TYPE (type);
8285 /* Subrange types are identified by the fact that they are integer
8286 types, and that they have a subtype which is either an integer type
8287 or an enumeral type. */
8289 if (TREE_CODE (type) != INTEGER_TYPE
8290 || subtype == NULL_TREE)
8291 return false;
8293 if (TREE_CODE (subtype) != INTEGER_TYPE
8294 && TREE_CODE (subtype) != ENUMERAL_TYPE)
8295 return false;
8297 if (TREE_CODE (type) == TREE_CODE (subtype)
8298 && int_size_in_bytes (type) == int_size_in_bytes (subtype)
8299 && TYPE_MIN_VALUE (type) != NULL
8300 && TYPE_MIN_VALUE (subtype) != NULL
8301 && tree_int_cst_equal (TYPE_MIN_VALUE (type), TYPE_MIN_VALUE (subtype))
8302 && TYPE_MAX_VALUE (type) != NULL
8303 && TYPE_MAX_VALUE (subtype) != NULL
8304 && tree_int_cst_equal (TYPE_MAX_VALUE (type), TYPE_MAX_VALUE (subtype)))
8306 /* The type and its subtype have the same representation. If in
8307 addition the two types also have the same name, then the given
8308 type is not a subrange type, but rather a plain base type. */
8309 /* FIXME: brobecker/2004-03-22:
8310 Sizetype INTEGER_CSTs nodes are canonicalized. It should
8311 therefore be sufficient to check the TYPE_SIZE node pointers
8312 rather than checking the actual size. Unfortunately, we have
8313 found some cases, such as in the Ada "integer" type, where
8314 this is not the case. Until this problem is solved, we need to
8315 keep checking the actual size. */
8316 tree type_name = TYPE_NAME (type);
8317 tree subtype_name = TYPE_NAME (subtype);
8319 if (type_name != NULL && TREE_CODE (type_name) == TYPE_DECL)
8320 type_name = DECL_NAME (type_name);
8322 if (subtype_name != NULL && TREE_CODE (subtype_name) == TYPE_DECL)
8323 subtype_name = DECL_NAME (subtype_name);
8325 if (type_name == subtype_name)
8326 return false;
8329 return true;
8332 /* Given a pointer to a tree node for a subrange type, return a pointer
8333 to a DIE that describes the given type. */
8335 static dw_die_ref
8336 subrange_type_die (tree type, dw_die_ref context_die)
8338 dw_die_ref subrange_die;
8339 const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
8341 if (context_die == NULL)
8342 context_die = comp_unit_die;
8344 subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
8346 if (int_size_in_bytes (TREE_TYPE (type)) != size_in_bytes)
8348 /* The size of the subrange type and its base type do not match,
8349 so we need to generate a size attribute for the subrange type. */
8350 add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
8353 if (TYPE_MIN_VALUE (type) != NULL)
8354 add_bound_info (subrange_die, DW_AT_lower_bound,
8355 TYPE_MIN_VALUE (type));
8356 if (TYPE_MAX_VALUE (type) != NULL)
8357 add_bound_info (subrange_die, DW_AT_upper_bound,
8358 TYPE_MAX_VALUE (type));
8360 return subrange_die;
8363 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
8364 entry that chains various modifiers in front of the given type. */
8366 static dw_die_ref
8367 modified_type_die (tree type, int is_const_type, int is_volatile_type,
8368 dw_die_ref context_die)
8370 enum tree_code code = TREE_CODE (type);
8371 dw_die_ref mod_type_die;
8372 dw_die_ref sub_die = NULL;
8373 tree item_type = NULL;
8374 tree qualified_type;
8375 tree name;
8377 if (code == ERROR_MARK)
8378 return NULL;
8380 /* See if we already have the appropriately qualified variant of
8381 this type. */
8382 qualified_type
8383 = get_qualified_type (type,
8384 ((is_const_type ? TYPE_QUAL_CONST : 0)
8385 | (is_volatile_type ? TYPE_QUAL_VOLATILE : 0)));
8387 /* If we do, then we can just use its DIE, if it exists. */
8388 if (qualified_type)
8390 mod_type_die = lookup_type_die (qualified_type);
8391 if (mod_type_die)
8392 return mod_type_die;
8395 name = qualified_type ? TYPE_NAME (qualified_type) : NULL;
8397 /* Handle C typedef types. */
8398 if (name && TREE_CODE (name) == TYPE_DECL && DECL_ORIGINAL_TYPE (name))
8400 tree dtype = TREE_TYPE (name);
8402 if (qualified_type == dtype)
8404 /* For a named type, use the typedef. */
8405 gen_type_die (qualified_type, context_die);
8406 return lookup_type_die (qualified_type);
8408 else if (DECL_ORIGINAL_TYPE (name)
8409 && (is_const_type < TYPE_READONLY (dtype)
8410 || is_volatile_type < TYPE_VOLATILE (dtype)))
8411 /* cv-unqualified version of named type. Just use the unnamed
8412 type to which it refers. */
8413 return modified_type_die (DECL_ORIGINAL_TYPE (name),
8414 is_const_type, is_volatile_type,
8415 context_die);
8416 /* Else cv-qualified version of named type; fall through. */
8419 if (is_const_type)
8421 mod_type_die = new_die (DW_TAG_const_type, comp_unit_die, type);
8422 sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
8424 else if (is_volatile_type)
8426 mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die, type);
8427 sub_die = modified_type_die (type, 0, 0, context_die);
8429 else if (code == POINTER_TYPE)
8431 mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die, type);
8432 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
8433 simple_type_size_in_bits (type) / BITS_PER_UNIT);
8434 item_type = TREE_TYPE (type);
8436 else if (code == REFERENCE_TYPE)
8438 mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die, type);
8439 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
8440 simple_type_size_in_bits (type) / BITS_PER_UNIT);
8441 item_type = TREE_TYPE (type);
8443 else if (is_subrange_type (type))
8445 mod_type_die = subrange_type_die (type, context_die);
8446 item_type = TREE_TYPE (type);
8448 else if (is_base_type (type))
8449 mod_type_die = base_type_die (type);
8450 else
8452 gen_type_die (type, context_die);
8454 /* We have to get the type_main_variant here (and pass that to the
8455 `lookup_type_die' routine) because the ..._TYPE node we have
8456 might simply be a *copy* of some original type node (where the
8457 copy was created to help us keep track of typedef names) and
8458 that copy might have a different TYPE_UID from the original
8459 ..._TYPE node. */
8460 if (TREE_CODE (type) != VECTOR_TYPE)
8461 return lookup_type_die (type_main_variant (type));
8462 else
8463 /* Vectors have the debugging information in the type,
8464 not the main variant. */
8465 return lookup_type_die (type);
8468 /* Builtin types don't have a DECL_ORIGINAL_TYPE. For those,
8469 don't output a DW_TAG_typedef, since there isn't one in the
8470 user's program; just attach a DW_AT_name to the type. */
8471 if (name
8472 && (TREE_CODE (name) != TYPE_DECL || TREE_TYPE (name) == qualified_type))
8474 if (TREE_CODE (name) == TYPE_DECL)
8475 /* Could just call add_name_and_src_coords_attributes here,
8476 but since this is a builtin type it doesn't have any
8477 useful source coordinates anyway. */
8478 name = DECL_NAME (name);
8479 add_name_attribute (mod_type_die, IDENTIFIER_POINTER (name));
8482 if (qualified_type)
8483 equate_type_number_to_die (qualified_type, mod_type_die);
8485 if (item_type)
8486 /* We must do this after the equate_type_number_to_die call, in case
8487 this is a recursive type. This ensures that the modified_type_die
8488 recursion will terminate even if the type is recursive. Recursive
8489 types are possible in Ada. */
8490 sub_die = modified_type_die (item_type,
8491 TYPE_READONLY (item_type),
8492 TYPE_VOLATILE (item_type),
8493 context_die);
8495 if (sub_die != NULL)
8496 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
8498 return mod_type_die;
8501 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
8502 an enumerated type. */
8504 static inline int
8505 type_is_enum (tree type)
8507 return TREE_CODE (type) == ENUMERAL_TYPE;
8510 /* Return the DBX register number described by a given RTL node. */
8512 static unsigned int
8513 dbx_reg_number (rtx rtl)
8515 unsigned regno = REGNO (rtl);
8517 gcc_assert (regno < FIRST_PSEUDO_REGISTER);
8519 #ifdef LEAF_REG_REMAP
8520 regno = LEAF_REG_REMAP (regno);
8521 #endif
8523 return DBX_REGISTER_NUMBER (regno);
8526 /* Optionally add a DW_OP_piece term to a location description expression.
8527 DW_OP_piece is only added if the location description expression already
8528 doesn't end with DW_OP_piece. */
8530 static void
8531 add_loc_descr_op_piece (dw_loc_descr_ref *list_head, int size)
8533 dw_loc_descr_ref loc;
8535 if (*list_head != NULL)
8537 /* Find the end of the chain. */
8538 for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
8541 if (loc->dw_loc_opc != DW_OP_piece)
8542 loc->dw_loc_next = new_loc_descr (DW_OP_piece, size, 0);
8546 /* Return a location descriptor that designates a machine register or
8547 zero if there is none. */
8549 static dw_loc_descr_ref
8550 reg_loc_descriptor (rtx rtl)
8552 rtx regs;
8554 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
8555 return 0;
8557 regs = targetm.dwarf_register_span (rtl);
8559 if (hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)] > 1 || regs)
8560 return multiple_reg_loc_descriptor (rtl, regs);
8561 else
8562 return one_reg_loc_descriptor (dbx_reg_number (rtl));
8565 /* Return a location descriptor that designates a machine register for
8566 a given hard register number. */
8568 static dw_loc_descr_ref
8569 one_reg_loc_descriptor (unsigned int regno)
8571 if (regno <= 31)
8572 return new_loc_descr (DW_OP_reg0 + regno, 0, 0);
8573 else
8574 return new_loc_descr (DW_OP_regx, regno, 0);
8577 /* Given an RTL of a register, return a location descriptor that
8578 designates a value that spans more than one register. */
8580 static dw_loc_descr_ref
8581 multiple_reg_loc_descriptor (rtx rtl, rtx regs)
8583 int nregs, size, i;
8584 unsigned reg;
8585 dw_loc_descr_ref loc_result = NULL;
8587 reg = REGNO (rtl);
8588 #ifdef LEAF_REG_REMAP
8589 reg = LEAF_REG_REMAP (reg);
8590 #endif
8591 gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg) == dbx_reg_number (rtl));
8592 nregs = hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)];
8594 /* Simple, contiguous registers. */
8595 if (regs == NULL_RTX)
8597 size = GET_MODE_SIZE (GET_MODE (rtl)) / nregs;
8599 loc_result = NULL;
8600 while (nregs--)
8602 dw_loc_descr_ref t;
8604 t = one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg));
8605 add_loc_descr (&loc_result, t);
8606 add_loc_descr_op_piece (&loc_result, size);
8607 ++reg;
8609 return loc_result;
8612 /* Now onto stupid register sets in non contiguous locations. */
8614 gcc_assert (GET_CODE (regs) == PARALLEL);
8616 size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8617 loc_result = NULL;
8619 for (i = 0; i < XVECLEN (regs, 0); ++i)
8621 dw_loc_descr_ref t;
8623 t = one_reg_loc_descriptor (REGNO (XVECEXP (regs, 0, i)));
8624 add_loc_descr (&loc_result, t);
8625 size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8626 add_loc_descr_op_piece (&loc_result, size);
8628 return loc_result;
8631 /* Return a location descriptor that designates a constant. */
8633 static dw_loc_descr_ref
8634 int_loc_descriptor (HOST_WIDE_INT i)
8636 enum dwarf_location_atom op;
8638 /* Pick the smallest representation of a constant, rather than just
8639 defaulting to the LEB encoding. */
8640 if (i >= 0)
8642 if (i <= 31)
8643 op = DW_OP_lit0 + i;
8644 else if (i <= 0xff)
8645 op = DW_OP_const1u;
8646 else if (i <= 0xffff)
8647 op = DW_OP_const2u;
8648 else if (HOST_BITS_PER_WIDE_INT == 32
8649 || i <= 0xffffffff)
8650 op = DW_OP_const4u;
8651 else
8652 op = DW_OP_constu;
8654 else
8656 if (i >= -0x80)
8657 op = DW_OP_const1s;
8658 else if (i >= -0x8000)
8659 op = DW_OP_const2s;
8660 else if (HOST_BITS_PER_WIDE_INT == 32
8661 || i >= -0x80000000)
8662 op = DW_OP_const4s;
8663 else
8664 op = DW_OP_consts;
8667 return new_loc_descr (op, i, 0);
8670 /* Return a location descriptor that designates a base+offset location. */
8672 static dw_loc_descr_ref
8673 based_loc_descr (rtx reg, HOST_WIDE_INT offset)
8675 unsigned int regno;
8677 /* We only use "frame base" when we're sure we're talking about the
8678 post-prologue local stack frame. We do this by *not* running
8679 register elimination until this point, and recognizing the special
8680 argument pointer and soft frame pointer rtx's. */
8681 if (reg == arg_pointer_rtx || reg == frame_pointer_rtx)
8683 rtx elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
8685 if (elim != reg)
8687 if (GET_CODE (elim) == PLUS)
8689 offset += INTVAL (XEXP (elim, 1));
8690 elim = XEXP (elim, 0);
8692 gcc_assert (elim == (frame_pointer_needed ? hard_frame_pointer_rtx
8693 : stack_pointer_rtx));
8694 offset += frame_pointer_fb_offset;
8696 return new_loc_descr (DW_OP_fbreg, offset, 0);
8700 regno = dbx_reg_number (reg);
8701 if (regno <= 31)
8702 return new_loc_descr (DW_OP_breg0 + regno, offset, 0);
8703 else
8704 return new_loc_descr (DW_OP_bregx, regno, offset);
8707 /* Return true if this RTL expression describes a base+offset calculation. */
8709 static inline int
8710 is_based_loc (rtx rtl)
8712 return (GET_CODE (rtl) == PLUS
8713 && ((REG_P (XEXP (rtl, 0))
8714 && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
8715 && GET_CODE (XEXP (rtl, 1)) == CONST_INT)));
8718 /* The following routine converts the RTL for a variable or parameter
8719 (resident in memory) into an equivalent Dwarf representation of a
8720 mechanism for getting the address of that same variable onto the top of a
8721 hypothetical "address evaluation" stack.
8723 When creating memory location descriptors, we are effectively transforming
8724 the RTL for a memory-resident object into its Dwarf postfix expression
8725 equivalent. This routine recursively descends an RTL tree, turning
8726 it into Dwarf postfix code as it goes.
8728 MODE is the mode of the memory reference, needed to handle some
8729 autoincrement addressing modes.
8731 CAN_USE_FBREG is a flag whether we can use DW_AT_frame_base in the
8732 location list for RTL.
8734 Return 0 if we can't represent the location. */
8736 static dw_loc_descr_ref
8737 mem_loc_descriptor (rtx rtl, enum machine_mode mode)
8739 dw_loc_descr_ref mem_loc_result = NULL;
8740 enum dwarf_location_atom op;
8742 /* Note that for a dynamically sized array, the location we will generate a
8743 description of here will be the lowest numbered location which is
8744 actually within the array. That's *not* necessarily the same as the
8745 zeroth element of the array. */
8747 rtl = targetm.delegitimize_address (rtl);
8749 switch (GET_CODE (rtl))
8751 case POST_INC:
8752 case POST_DEC:
8753 case POST_MODIFY:
8754 /* POST_INC and POST_DEC can be handled just like a SUBREG. So we
8755 just fall into the SUBREG code. */
8757 /* ... fall through ... */
8759 case SUBREG:
8760 /* The case of a subreg may arise when we have a local (register)
8761 variable or a formal (register) parameter which doesn't quite fill
8762 up an entire register. For now, just assume that it is
8763 legitimate to make the Dwarf info refer to the whole register which
8764 contains the given subreg. */
8765 rtl = XEXP (rtl, 0);
8767 /* ... fall through ... */
8769 case REG:
8770 /* Whenever a register number forms a part of the description of the
8771 method for calculating the (dynamic) address of a memory resident
8772 object, DWARF rules require the register number be referred to as
8773 a "base register". This distinction is not based in any way upon
8774 what category of register the hardware believes the given register
8775 belongs to. This is strictly DWARF terminology we're dealing with
8776 here. Note that in cases where the location of a memory-resident
8777 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
8778 OP_CONST (0)) the actual DWARF location descriptor that we generate
8779 may just be OP_BASEREG (basereg). This may look deceptively like
8780 the object in question was allocated to a register (rather than in
8781 memory) so DWARF consumers need to be aware of the subtle
8782 distinction between OP_REG and OP_BASEREG. */
8783 if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
8784 mem_loc_result = based_loc_descr (rtl, 0);
8785 break;
8787 case MEM:
8788 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
8789 if (mem_loc_result != 0)
8790 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
8791 break;
8793 case LO_SUM:
8794 rtl = XEXP (rtl, 1);
8796 /* ... fall through ... */
8798 case LABEL_REF:
8799 /* Some ports can transform a symbol ref into a label ref, because
8800 the symbol ref is too far away and has to be dumped into a constant
8801 pool. */
8802 case CONST:
8803 case SYMBOL_REF:
8804 /* Alternatively, the symbol in the constant pool might be referenced
8805 by a different symbol. */
8806 if (GET_CODE (rtl) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (rtl))
8808 bool marked;
8809 rtx tmp = get_pool_constant_mark (rtl, &marked);
8811 if (GET_CODE (tmp) == SYMBOL_REF)
8813 rtl = tmp;
8814 if (CONSTANT_POOL_ADDRESS_P (tmp))
8815 get_pool_constant_mark (tmp, &marked);
8816 else
8817 marked = true;
8820 /* If all references to this pool constant were optimized away,
8821 it was not output and thus we can't represent it.
8822 FIXME: might try to use DW_OP_const_value here, though
8823 DW_OP_piece complicates it. */
8824 if (!marked)
8825 return 0;
8828 mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
8829 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
8830 mem_loc_result->dw_loc_oprnd1.v.val_addr = rtl;
8831 VEC_safe_push (rtx, gc, used_rtx_array, rtl);
8832 break;
8834 case PRE_MODIFY:
8835 /* Extract the PLUS expression nested inside and fall into
8836 PLUS code below. */
8837 rtl = XEXP (rtl, 1);
8838 goto plus;
8840 case PRE_INC:
8841 case PRE_DEC:
8842 /* Turn these into a PLUS expression and fall into the PLUS code
8843 below. */
8844 rtl = gen_rtx_PLUS (word_mode, XEXP (rtl, 0),
8845 GEN_INT (GET_CODE (rtl) == PRE_INC
8846 ? GET_MODE_UNIT_SIZE (mode)
8847 : -GET_MODE_UNIT_SIZE (mode)));
8849 /* ... fall through ... */
8851 case PLUS:
8852 plus:
8853 if (is_based_loc (rtl))
8854 mem_loc_result = based_loc_descr (XEXP (rtl, 0),
8855 INTVAL (XEXP (rtl, 1)));
8856 else
8858 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode);
8859 if (mem_loc_result == 0)
8860 break;
8862 if (GET_CODE (XEXP (rtl, 1)) == CONST_INT
8863 && INTVAL (XEXP (rtl, 1)) >= 0)
8864 add_loc_descr (&mem_loc_result,
8865 new_loc_descr (DW_OP_plus_uconst,
8866 INTVAL (XEXP (rtl, 1)), 0));
8867 else
8869 add_loc_descr (&mem_loc_result,
8870 mem_loc_descriptor (XEXP (rtl, 1), mode));
8871 add_loc_descr (&mem_loc_result,
8872 new_loc_descr (DW_OP_plus, 0, 0));
8875 break;
8877 /* If a pseudo-reg is optimized away, it is possible for it to
8878 be replaced with a MEM containing a multiply or shift. */
8879 case MULT:
8880 op = DW_OP_mul;
8881 goto do_binop;
8883 case ASHIFT:
8884 op = DW_OP_shl;
8885 goto do_binop;
8887 case ASHIFTRT:
8888 op = DW_OP_shra;
8889 goto do_binop;
8891 case LSHIFTRT:
8892 op = DW_OP_shr;
8893 goto do_binop;
8895 do_binop:
8897 dw_loc_descr_ref op0 = mem_loc_descriptor (XEXP (rtl, 0), mode);
8898 dw_loc_descr_ref op1 = mem_loc_descriptor (XEXP (rtl, 1), mode);
8900 if (op0 == 0 || op1 == 0)
8901 break;
8903 mem_loc_result = op0;
8904 add_loc_descr (&mem_loc_result, op1);
8905 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
8906 break;
8909 case CONST_INT:
8910 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
8911 break;
8913 default:
8914 gcc_unreachable ();
8917 return mem_loc_result;
8920 /* Return a descriptor that describes the concatenation of two locations.
8921 This is typically a complex variable. */
8923 static dw_loc_descr_ref
8924 concat_loc_descriptor (rtx x0, rtx x1)
8926 dw_loc_descr_ref cc_loc_result = NULL;
8927 dw_loc_descr_ref x0_ref = loc_descriptor (x0);
8928 dw_loc_descr_ref x1_ref = loc_descriptor (x1);
8930 if (x0_ref == 0 || x1_ref == 0)
8931 return 0;
8933 cc_loc_result = x0_ref;
8934 add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x0)));
8936 add_loc_descr (&cc_loc_result, x1_ref);
8937 add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x1)));
8939 return cc_loc_result;
8942 /* Output a proper Dwarf location descriptor for a variable or parameter
8943 which is either allocated in a register or in a memory location. For a
8944 register, we just generate an OP_REG and the register number. For a
8945 memory location we provide a Dwarf postfix expression describing how to
8946 generate the (dynamic) address of the object onto the address stack.
8948 If we don't know how to describe it, return 0. */
8950 static dw_loc_descr_ref
8951 loc_descriptor (rtx rtl)
8953 dw_loc_descr_ref loc_result = NULL;
8955 switch (GET_CODE (rtl))
8957 case SUBREG:
8958 /* The case of a subreg may arise when we have a local (register)
8959 variable or a formal (register) parameter which doesn't quite fill
8960 up an entire register. For now, just assume that it is
8961 legitimate to make the Dwarf info refer to the whole register which
8962 contains the given subreg. */
8963 rtl = SUBREG_REG (rtl);
8965 /* ... fall through ... */
8967 case REG:
8968 loc_result = reg_loc_descriptor (rtl);
8969 break;
8971 case MEM:
8972 loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
8973 break;
8975 case CONCAT:
8976 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1));
8977 break;
8979 case VAR_LOCATION:
8980 /* Single part. */
8981 if (GET_CODE (XEXP (rtl, 1)) != PARALLEL)
8983 loc_result = loc_descriptor (XEXP (XEXP (rtl, 1), 0));
8984 break;
8987 rtl = XEXP (rtl, 1);
8988 /* FALLTHRU */
8990 case PARALLEL:
8992 rtvec par_elems = XVEC (rtl, 0);
8993 int num_elem = GET_NUM_ELEM (par_elems);
8994 enum machine_mode mode;
8995 int i;
8997 /* Create the first one, so we have something to add to. */
8998 loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0));
8999 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
9000 add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
9001 for (i = 1; i < num_elem; i++)
9003 dw_loc_descr_ref temp;
9005 temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0));
9006 add_loc_descr (&loc_result, temp);
9007 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
9008 add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
9011 break;
9013 default:
9014 gcc_unreachable ();
9017 return loc_result;
9020 /* Similar, but generate the descriptor from trees instead of rtl. This comes
9021 up particularly with variable length arrays. WANT_ADDRESS is 2 if this is
9022 a top-level invocation of loc_descriptor_from_tree; is 1 if this is not a
9023 top-level invocation, and we require the address of LOC; is 0 if we require
9024 the value of LOC. */
9026 static dw_loc_descr_ref
9027 loc_descriptor_from_tree_1 (tree loc, int want_address)
9029 dw_loc_descr_ref ret, ret1;
9030 int have_address = 0;
9031 enum dwarf_location_atom op;
9033 /* ??? Most of the time we do not take proper care for sign/zero
9034 extending the values properly. Hopefully this won't be a real
9035 problem... */
9037 switch (TREE_CODE (loc))
9039 case ERROR_MARK:
9040 return 0;
9042 case PLACEHOLDER_EXPR:
9043 /* This case involves extracting fields from an object to determine the
9044 position of other fields. We don't try to encode this here. The
9045 only user of this is Ada, which encodes the needed information using
9046 the names of types. */
9047 return 0;
9049 case CALL_EXPR:
9050 return 0;
9052 case PREINCREMENT_EXPR:
9053 case PREDECREMENT_EXPR:
9054 case POSTINCREMENT_EXPR:
9055 case POSTDECREMENT_EXPR:
9056 /* There are no opcodes for these operations. */
9057 return 0;
9059 case ADDR_EXPR:
9060 /* If we already want an address, there's nothing we can do. */
9061 if (want_address)
9062 return 0;
9064 /* Otherwise, process the argument and look for the address. */
9065 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 1);
9067 case VAR_DECL:
9068 if (DECL_THREAD_LOCAL_P (loc))
9070 rtx rtl;
9072 /* If this is not defined, we have no way to emit the data. */
9073 if (!targetm.asm_out.output_dwarf_dtprel)
9074 return 0;
9076 /* The way DW_OP_GNU_push_tls_address is specified, we can only
9077 look up addresses of objects in the current module. */
9078 if (DECL_EXTERNAL (loc))
9079 return 0;
9081 rtl = rtl_for_decl_location (loc);
9082 if (rtl == NULL_RTX)
9083 return 0;
9085 if (!MEM_P (rtl))
9086 return 0;
9087 rtl = XEXP (rtl, 0);
9088 if (! CONSTANT_P (rtl))
9089 return 0;
9091 ret = new_loc_descr (INTERNAL_DW_OP_tls_addr, 0, 0);
9092 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
9093 ret->dw_loc_oprnd1.v.val_addr = rtl;
9095 ret1 = new_loc_descr (DW_OP_GNU_push_tls_address, 0, 0);
9096 add_loc_descr (&ret, ret1);
9098 have_address = 1;
9099 break;
9101 /* FALLTHRU */
9103 case PARM_DECL:
9104 if (DECL_HAS_VALUE_EXPR_P (loc))
9105 return loc_descriptor_from_tree_1 (DECL_VALUE_EXPR (loc),
9106 want_address);
9107 /* FALLTHRU */
9109 case RESULT_DECL:
9111 rtx rtl = rtl_for_decl_location (loc);
9113 if (rtl == NULL_RTX)
9114 return 0;
9115 else if (GET_CODE (rtl) == CONST_INT)
9117 HOST_WIDE_INT val = INTVAL (rtl);
9118 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
9119 val &= GET_MODE_MASK (DECL_MODE (loc));
9120 ret = int_loc_descriptor (val);
9122 else if (GET_CODE (rtl) == CONST_STRING)
9123 return 0;
9124 else if (CONSTANT_P (rtl))
9126 ret = new_loc_descr (DW_OP_addr, 0, 0);
9127 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
9128 ret->dw_loc_oprnd1.v.val_addr = rtl;
9130 else
9132 enum machine_mode mode;
9134 /* Certain constructs can only be represented at top-level. */
9135 if (want_address == 2)
9136 return loc_descriptor (rtl);
9138 mode = GET_MODE (rtl);
9139 if (MEM_P (rtl))
9141 rtl = XEXP (rtl, 0);
9142 have_address = 1;
9144 ret = mem_loc_descriptor (rtl, mode);
9147 break;
9149 case INDIRECT_REF:
9150 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9151 have_address = 1;
9152 break;
9154 case COMPOUND_EXPR:
9155 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 1), want_address);
9157 case NOP_EXPR:
9158 case CONVERT_EXPR:
9159 case NON_LVALUE_EXPR:
9160 case VIEW_CONVERT_EXPR:
9161 case SAVE_EXPR:
9162 case MODIFY_EXPR:
9163 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), want_address);
9165 case COMPONENT_REF:
9166 case BIT_FIELD_REF:
9167 case ARRAY_REF:
9168 case ARRAY_RANGE_REF:
9170 tree obj, offset;
9171 HOST_WIDE_INT bitsize, bitpos, bytepos;
9172 enum machine_mode mode;
9173 int volatilep;
9174 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
9176 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
9177 &unsignedp, &volatilep, false);
9179 if (obj == loc)
9180 return 0;
9182 ret = loc_descriptor_from_tree_1 (obj, 1);
9183 if (ret == 0
9184 || bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
9185 return 0;
9187 if (offset != NULL_TREE)
9189 /* Variable offset. */
9190 add_loc_descr (&ret, loc_descriptor_from_tree_1 (offset, 0));
9191 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
9194 bytepos = bitpos / BITS_PER_UNIT;
9195 if (bytepos > 0)
9196 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
9197 else if (bytepos < 0)
9199 add_loc_descr (&ret, int_loc_descriptor (bytepos));
9200 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
9203 have_address = 1;
9204 break;
9207 case INTEGER_CST:
9208 if (host_integerp (loc, 0))
9209 ret = int_loc_descriptor (tree_low_cst (loc, 0));
9210 else
9211 return 0;
9212 break;
9214 case CONSTRUCTOR:
9216 /* Get an RTL for this, if something has been emitted. */
9217 rtx rtl = lookup_constant_def (loc);
9218 enum machine_mode mode;
9220 if (!rtl || !MEM_P (rtl))
9221 return 0;
9222 mode = GET_MODE (rtl);
9223 rtl = XEXP (rtl, 0);
9224 ret = mem_loc_descriptor (rtl, mode);
9225 have_address = 1;
9226 break;
9229 case TRUTH_AND_EXPR:
9230 case TRUTH_ANDIF_EXPR:
9231 case BIT_AND_EXPR:
9232 op = DW_OP_and;
9233 goto do_binop;
9235 case TRUTH_XOR_EXPR:
9236 case BIT_XOR_EXPR:
9237 op = DW_OP_xor;
9238 goto do_binop;
9240 case TRUTH_OR_EXPR:
9241 case TRUTH_ORIF_EXPR:
9242 case BIT_IOR_EXPR:
9243 op = DW_OP_or;
9244 goto do_binop;
9246 case FLOOR_DIV_EXPR:
9247 case CEIL_DIV_EXPR:
9248 case ROUND_DIV_EXPR:
9249 case TRUNC_DIV_EXPR:
9250 op = DW_OP_div;
9251 goto do_binop;
9253 case MINUS_EXPR:
9254 op = DW_OP_minus;
9255 goto do_binop;
9257 case FLOOR_MOD_EXPR:
9258 case CEIL_MOD_EXPR:
9259 case ROUND_MOD_EXPR:
9260 case TRUNC_MOD_EXPR:
9261 op = DW_OP_mod;
9262 goto do_binop;
9264 case MULT_EXPR:
9265 op = DW_OP_mul;
9266 goto do_binop;
9268 case LSHIFT_EXPR:
9269 op = DW_OP_shl;
9270 goto do_binop;
9272 case RSHIFT_EXPR:
9273 op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
9274 goto do_binop;
9276 case PLUS_EXPR:
9277 if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
9278 && host_integerp (TREE_OPERAND (loc, 1), 0))
9280 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9281 if (ret == 0)
9282 return 0;
9284 add_loc_descr (&ret,
9285 new_loc_descr (DW_OP_plus_uconst,
9286 tree_low_cst (TREE_OPERAND (loc, 1),
9288 0));
9289 break;
9292 op = DW_OP_plus;
9293 goto do_binop;
9295 case LE_EXPR:
9296 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9297 return 0;
9299 op = DW_OP_le;
9300 goto do_binop;
9302 case GE_EXPR:
9303 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9304 return 0;
9306 op = DW_OP_ge;
9307 goto do_binop;
9309 case LT_EXPR:
9310 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9311 return 0;
9313 op = DW_OP_lt;
9314 goto do_binop;
9316 case GT_EXPR:
9317 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9318 return 0;
9320 op = DW_OP_gt;
9321 goto do_binop;
9323 case EQ_EXPR:
9324 op = DW_OP_eq;
9325 goto do_binop;
9327 case NE_EXPR:
9328 op = DW_OP_ne;
9329 goto do_binop;
9331 do_binop:
9332 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9333 ret1 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 1), 0);
9334 if (ret == 0 || ret1 == 0)
9335 return 0;
9337 add_loc_descr (&ret, ret1);
9338 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
9339 break;
9341 case TRUTH_NOT_EXPR:
9342 case BIT_NOT_EXPR:
9343 op = DW_OP_not;
9344 goto do_unop;
9346 case ABS_EXPR:
9347 op = DW_OP_abs;
9348 goto do_unop;
9350 case NEGATE_EXPR:
9351 op = DW_OP_neg;
9352 goto do_unop;
9354 do_unop:
9355 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9356 if (ret == 0)
9357 return 0;
9359 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
9360 break;
9362 case MIN_EXPR:
9363 case MAX_EXPR:
9365 const enum tree_code code =
9366 TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
9368 loc = build3 (COND_EXPR, TREE_TYPE (loc),
9369 build2 (code, integer_type_node,
9370 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
9371 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
9374 /* ... fall through ... */
9376 case COND_EXPR:
9378 dw_loc_descr_ref lhs
9379 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 1), 0);
9380 dw_loc_descr_ref rhs
9381 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 2), 0);
9382 dw_loc_descr_ref bra_node, jump_node, tmp;
9384 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9385 if (ret == 0 || lhs == 0 || rhs == 0)
9386 return 0;
9388 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
9389 add_loc_descr (&ret, bra_node);
9391 add_loc_descr (&ret, rhs);
9392 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
9393 add_loc_descr (&ret, jump_node);
9395 add_loc_descr (&ret, lhs);
9396 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
9397 bra_node->dw_loc_oprnd1.v.val_loc = lhs;
9399 /* ??? Need a node to point the skip at. Use a nop. */
9400 tmp = new_loc_descr (DW_OP_nop, 0, 0);
9401 add_loc_descr (&ret, tmp);
9402 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
9403 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
9405 break;
9407 case FIX_TRUNC_EXPR:
9408 case FIX_CEIL_EXPR:
9409 case FIX_FLOOR_EXPR:
9410 case FIX_ROUND_EXPR:
9411 return 0;
9413 default:
9414 /* Leave front-end specific codes as simply unknown. This comes
9415 up, for instance, with the C STMT_EXPR. */
9416 if ((unsigned int) TREE_CODE (loc)
9417 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
9418 return 0;
9420 #ifdef ENABLE_CHECKING
9421 /* Otherwise this is a generic code; we should just lists all of
9422 these explicitly. We forgot one. */
9423 gcc_unreachable ();
9424 #else
9425 /* In a release build, we want to degrade gracefully: better to
9426 generate incomplete debugging information than to crash. */
9427 return NULL;
9428 #endif
9431 /* Show if we can't fill the request for an address. */
9432 if (want_address && !have_address)
9433 return 0;
9435 /* If we've got an address and don't want one, dereference. */
9436 if (!want_address && have_address && ret)
9438 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
9440 if (size > DWARF2_ADDR_SIZE || size == -1)
9441 return 0;
9442 else if (size == DWARF2_ADDR_SIZE)
9443 op = DW_OP_deref;
9444 else
9445 op = DW_OP_deref_size;
9447 add_loc_descr (&ret, new_loc_descr (op, size, 0));
9450 return ret;
9453 static inline dw_loc_descr_ref
9454 loc_descriptor_from_tree (tree loc)
9456 return loc_descriptor_from_tree_1 (loc, 2);
9459 /* Given a value, round it up to the lowest multiple of `boundary'
9460 which is not less than the value itself. */
9462 static inline HOST_WIDE_INT
9463 ceiling (HOST_WIDE_INT value, unsigned int boundary)
9465 return (((value + boundary - 1) / boundary) * boundary);
9468 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
9469 pointer to the declared type for the relevant field variable, or return
9470 `integer_type_node' if the given node turns out to be an
9471 ERROR_MARK node. */
9473 static inline tree
9474 field_type (tree decl)
9476 tree type;
9478 if (TREE_CODE (decl) == ERROR_MARK)
9479 return integer_type_node;
9481 type = DECL_BIT_FIELD_TYPE (decl);
9482 if (type == NULL_TREE)
9483 type = TREE_TYPE (decl);
9485 return type;
9488 /* Given a pointer to a tree node, return the alignment in bits for
9489 it, or else return BITS_PER_WORD if the node actually turns out to
9490 be an ERROR_MARK node. */
9492 static inline unsigned
9493 simple_type_align_in_bits (tree type)
9495 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
9498 static inline unsigned
9499 simple_decl_align_in_bits (tree decl)
9501 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
9504 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
9505 lowest addressed byte of the "containing object" for the given FIELD_DECL,
9506 or return 0 if we are unable to determine what that offset is, either
9507 because the argument turns out to be a pointer to an ERROR_MARK node, or
9508 because the offset is actually variable. (We can't handle the latter case
9509 just yet). */
9511 static HOST_WIDE_INT
9512 field_byte_offset (tree decl)
9514 unsigned int type_align_in_bits;
9515 unsigned int decl_align_in_bits;
9516 unsigned HOST_WIDE_INT type_size_in_bits;
9517 HOST_WIDE_INT object_offset_in_bits;
9518 tree type;
9519 tree field_size_tree;
9520 HOST_WIDE_INT bitpos_int;
9521 HOST_WIDE_INT deepest_bitpos;
9522 unsigned HOST_WIDE_INT field_size_in_bits;
9524 if (TREE_CODE (decl) == ERROR_MARK)
9525 return 0;
9527 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
9529 type = field_type (decl);
9530 field_size_tree = DECL_SIZE (decl);
9532 /* The size could be unspecified if there was an error, or for
9533 a flexible array member. */
9534 if (! field_size_tree)
9535 field_size_tree = bitsize_zero_node;
9537 /* We cannot yet cope with fields whose positions are variable, so
9538 for now, when we see such things, we simply return 0. Someday, we may
9539 be able to handle such cases, but it will be damn difficult. */
9540 if (! host_integerp (bit_position (decl), 0))
9541 return 0;
9543 bitpos_int = int_bit_position (decl);
9545 /* If we don't know the size of the field, pretend it's a full word. */
9546 if (host_integerp (field_size_tree, 1))
9547 field_size_in_bits = tree_low_cst (field_size_tree, 1);
9548 else
9549 field_size_in_bits = BITS_PER_WORD;
9551 type_size_in_bits = simple_type_size_in_bits (type);
9552 type_align_in_bits = simple_type_align_in_bits (type);
9553 decl_align_in_bits = simple_decl_align_in_bits (decl);
9555 /* The GCC front-end doesn't make any attempt to keep track of the starting
9556 bit offset (relative to the start of the containing structure type) of the
9557 hypothetical "containing object" for a bit-field. Thus, when computing
9558 the byte offset value for the start of the "containing object" of a
9559 bit-field, we must deduce this information on our own. This can be rather
9560 tricky to do in some cases. For example, handling the following structure
9561 type definition when compiling for an i386/i486 target (which only aligns
9562 long long's to 32-bit boundaries) can be very tricky:
9564 struct S { int field1; long long field2:31; };
9566 Fortunately, there is a simple rule-of-thumb which can be used in such
9567 cases. When compiling for an i386/i486, GCC will allocate 8 bytes for the
9568 structure shown above. It decides to do this based upon one simple rule
9569 for bit-field allocation. GCC allocates each "containing object" for each
9570 bit-field at the first (i.e. lowest addressed) legitimate alignment
9571 boundary (based upon the required minimum alignment for the declared type
9572 of the field) which it can possibly use, subject to the condition that
9573 there is still enough available space remaining in the containing object
9574 (when allocated at the selected point) to fully accommodate all of the
9575 bits of the bit-field itself.
9577 This simple rule makes it obvious why GCC allocates 8 bytes for each
9578 object of the structure type shown above. When looking for a place to
9579 allocate the "containing object" for `field2', the compiler simply tries
9580 to allocate a 64-bit "containing object" at each successive 32-bit
9581 boundary (starting at zero) until it finds a place to allocate that 64-
9582 bit field such that at least 31 contiguous (and previously unallocated)
9583 bits remain within that selected 64 bit field. (As it turns out, for the
9584 example above, the compiler finds it is OK to allocate the "containing
9585 object" 64-bit field at bit-offset zero within the structure type.)
9587 Here we attempt to work backwards from the limited set of facts we're
9588 given, and we try to deduce from those facts, where GCC must have believed
9589 that the containing object started (within the structure type). The value
9590 we deduce is then used (by the callers of this routine) to generate
9591 DW_AT_location and DW_AT_bit_offset attributes for fields (both bit-fields
9592 and, in the case of DW_AT_location, regular fields as well). */
9594 /* Figure out the bit-distance from the start of the structure to the
9595 "deepest" bit of the bit-field. */
9596 deepest_bitpos = bitpos_int + field_size_in_bits;
9598 /* This is the tricky part. Use some fancy footwork to deduce where the
9599 lowest addressed bit of the containing object must be. */
9600 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9602 /* Round up to type_align by default. This works best for bitfields. */
9603 object_offset_in_bits += type_align_in_bits - 1;
9604 object_offset_in_bits /= type_align_in_bits;
9605 object_offset_in_bits *= type_align_in_bits;
9607 if (object_offset_in_bits > bitpos_int)
9609 /* Sigh, the decl must be packed. */
9610 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9612 /* Round up to decl_align instead. */
9613 object_offset_in_bits += decl_align_in_bits - 1;
9614 object_offset_in_bits /= decl_align_in_bits;
9615 object_offset_in_bits *= decl_align_in_bits;
9618 return object_offset_in_bits / BITS_PER_UNIT;
9621 /* The following routines define various Dwarf attributes and any data
9622 associated with them. */
9624 /* Add a location description attribute value to a DIE.
9626 This emits location attributes suitable for whole variables and
9627 whole parameters. Note that the location attributes for struct fields are
9628 generated by the routine `data_member_location_attribute' below. */
9630 static inline void
9631 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
9632 dw_loc_descr_ref descr)
9634 if (descr != 0)
9635 add_AT_loc (die, attr_kind, descr);
9638 /* Attach the specialized form of location attribute used for data members of
9639 struct and union types. In the special case of a FIELD_DECL node which
9640 represents a bit-field, the "offset" part of this special location
9641 descriptor must indicate the distance in bytes from the lowest-addressed
9642 byte of the containing struct or union type to the lowest-addressed byte of
9643 the "containing object" for the bit-field. (See the `field_byte_offset'
9644 function above).
9646 For any given bit-field, the "containing object" is a hypothetical object
9647 (of some integral or enum type) within which the given bit-field lives. The
9648 type of this hypothetical "containing object" is always the same as the
9649 declared type of the individual bit-field itself (for GCC anyway... the
9650 DWARF spec doesn't actually mandate this). Note that it is the size (in
9651 bytes) of the hypothetical "containing object" which will be given in the
9652 DW_AT_byte_size attribute for this bit-field. (See the
9653 `byte_size_attribute' function below.) It is also used when calculating the
9654 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
9655 function below.) */
9657 static void
9658 add_data_member_location_attribute (dw_die_ref die, tree decl)
9660 HOST_WIDE_INT offset;
9661 dw_loc_descr_ref loc_descr = 0;
9663 if (TREE_CODE (decl) == TREE_BINFO)
9665 /* We're working on the TAG_inheritance for a base class. */
9666 if (BINFO_VIRTUAL_P (decl) && is_cxx ())
9668 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
9669 aren't at a fixed offset from all (sub)objects of the same
9670 type. We need to extract the appropriate offset from our
9671 vtable. The following dwarf expression means
9673 BaseAddr = ObAddr + *((*ObAddr) - Offset)
9675 This is specific to the V3 ABI, of course. */
9677 dw_loc_descr_ref tmp;
9679 /* Make a copy of the object address. */
9680 tmp = new_loc_descr (DW_OP_dup, 0, 0);
9681 add_loc_descr (&loc_descr, tmp);
9683 /* Extract the vtable address. */
9684 tmp = new_loc_descr (DW_OP_deref, 0, 0);
9685 add_loc_descr (&loc_descr, tmp);
9687 /* Calculate the address of the offset. */
9688 offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
9689 gcc_assert (offset < 0);
9691 tmp = int_loc_descriptor (-offset);
9692 add_loc_descr (&loc_descr, tmp);
9693 tmp = new_loc_descr (DW_OP_minus, 0, 0);
9694 add_loc_descr (&loc_descr, tmp);
9696 /* Extract the offset. */
9697 tmp = new_loc_descr (DW_OP_deref, 0, 0);
9698 add_loc_descr (&loc_descr, tmp);
9700 /* Add it to the object address. */
9701 tmp = new_loc_descr (DW_OP_plus, 0, 0);
9702 add_loc_descr (&loc_descr, tmp);
9704 else
9705 offset = tree_low_cst (BINFO_OFFSET (decl), 0);
9707 else
9708 offset = field_byte_offset (decl);
9710 if (! loc_descr)
9712 enum dwarf_location_atom op;
9714 /* The DWARF2 standard says that we should assume that the structure
9715 address is already on the stack, so we can specify a structure field
9716 address by using DW_OP_plus_uconst. */
9718 #ifdef MIPS_DEBUGGING_INFO
9719 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
9720 operator correctly. It works only if we leave the offset on the
9721 stack. */
9722 op = DW_OP_constu;
9723 #else
9724 op = DW_OP_plus_uconst;
9725 #endif
9727 loc_descr = new_loc_descr (op, offset, 0);
9730 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
9733 /* Writes integer values to dw_vec_const array. */
9735 static void
9736 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
9738 while (size != 0)
9740 *dest++ = val & 0xff;
9741 val >>= 8;
9742 --size;
9746 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
9748 static HOST_WIDE_INT
9749 extract_int (const unsigned char *src, unsigned int size)
9751 HOST_WIDE_INT val = 0;
9753 src += size;
9754 while (size != 0)
9756 val <<= 8;
9757 val |= *--src & 0xff;
9758 --size;
9760 return val;
9763 /* Writes floating point values to dw_vec_const array. */
9765 static void
9766 insert_float (rtx rtl, unsigned char *array)
9768 REAL_VALUE_TYPE rv;
9769 long val[4];
9770 int i;
9772 REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
9773 real_to_target (val, &rv, GET_MODE (rtl));
9775 /* real_to_target puts 32-bit pieces in each long. Pack them. */
9776 for (i = 0; i < GET_MODE_SIZE (GET_MODE (rtl)) / 4; i++)
9778 insert_int (val[i], 4, array);
9779 array += 4;
9783 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
9784 does not have a "location" either in memory or in a register. These
9785 things can arise in GNU C when a constant is passed as an actual parameter
9786 to an inlined function. They can also arise in C++ where declared
9787 constants do not necessarily get memory "homes". */
9789 static void
9790 add_const_value_attribute (dw_die_ref die, rtx rtl)
9792 switch (GET_CODE (rtl))
9794 case CONST_INT:
9796 HOST_WIDE_INT val = INTVAL (rtl);
9798 if (val < 0)
9799 add_AT_int (die, DW_AT_const_value, val);
9800 else
9801 add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
9803 break;
9805 case CONST_DOUBLE:
9806 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
9807 floating-point constant. A CONST_DOUBLE is used whenever the
9808 constant requires more than one word in order to be adequately
9809 represented. We output CONST_DOUBLEs as blocks. */
9811 enum machine_mode mode = GET_MODE (rtl);
9813 if (SCALAR_FLOAT_MODE_P (mode))
9815 unsigned int length = GET_MODE_SIZE (mode);
9816 unsigned char *array = ggc_alloc (length);
9818 insert_float (rtl, array);
9819 add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
9821 else
9823 /* ??? We really should be using HOST_WIDE_INT throughout. */
9824 gcc_assert (HOST_BITS_PER_LONG == HOST_BITS_PER_WIDE_INT);
9826 add_AT_long_long (die, DW_AT_const_value,
9827 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
9830 break;
9832 case CONST_VECTOR:
9834 enum machine_mode mode = GET_MODE (rtl);
9835 unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
9836 unsigned int length = CONST_VECTOR_NUNITS (rtl);
9837 unsigned char *array = ggc_alloc (length * elt_size);
9838 unsigned int i;
9839 unsigned char *p;
9841 switch (GET_MODE_CLASS (mode))
9843 case MODE_VECTOR_INT:
9844 for (i = 0, p = array; i < length; i++, p += elt_size)
9846 rtx elt = CONST_VECTOR_ELT (rtl, i);
9847 HOST_WIDE_INT lo, hi;
9849 switch (GET_CODE (elt))
9851 case CONST_INT:
9852 lo = INTVAL (elt);
9853 hi = -(lo < 0);
9854 break;
9856 case CONST_DOUBLE:
9857 lo = CONST_DOUBLE_LOW (elt);
9858 hi = CONST_DOUBLE_HIGH (elt);
9859 break;
9861 default:
9862 gcc_unreachable ();
9865 if (elt_size <= sizeof (HOST_WIDE_INT))
9866 insert_int (lo, elt_size, p);
9867 else
9869 unsigned char *p0 = p;
9870 unsigned char *p1 = p + sizeof (HOST_WIDE_INT);
9872 gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
9873 if (WORDS_BIG_ENDIAN)
9875 p0 = p1;
9876 p1 = p;
9878 insert_int (lo, sizeof (HOST_WIDE_INT), p0);
9879 insert_int (hi, sizeof (HOST_WIDE_INT), p1);
9882 break;
9884 case MODE_VECTOR_FLOAT:
9885 for (i = 0, p = array; i < length; i++, p += elt_size)
9887 rtx elt = CONST_VECTOR_ELT (rtl, i);
9888 insert_float (elt, p);
9890 break;
9892 default:
9893 gcc_unreachable ();
9896 add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
9898 break;
9900 case CONST_STRING:
9901 add_AT_string (die, DW_AT_const_value, XSTR (rtl, 0));
9902 break;
9904 case SYMBOL_REF:
9905 case LABEL_REF:
9906 case CONST:
9907 add_AT_addr (die, DW_AT_const_value, rtl);
9908 VEC_safe_push (rtx, gc, used_rtx_array, rtl);
9909 break;
9911 case PLUS:
9912 /* In cases where an inlined instance of an inline function is passed
9913 the address of an `auto' variable (which is local to the caller) we
9914 can get a situation where the DECL_RTL of the artificial local
9915 variable (for the inlining) which acts as a stand-in for the
9916 corresponding formal parameter (of the inline function) will look
9917 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
9918 exactly a compile-time constant expression, but it isn't the address
9919 of the (artificial) local variable either. Rather, it represents the
9920 *value* which the artificial local variable always has during its
9921 lifetime. We currently have no way to represent such quasi-constant
9922 values in Dwarf, so for now we just punt and generate nothing. */
9923 break;
9925 default:
9926 /* No other kinds of rtx should be possible here. */
9927 gcc_unreachable ();
9932 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
9933 for use in a later add_const_value_attribute call. */
9935 static rtx
9936 rtl_for_decl_init (tree init, tree type)
9938 rtx rtl = NULL_RTX;
9940 /* If a variable is initialized with a string constant without embedded
9941 zeros, build CONST_STRING. */
9942 if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
9944 tree enttype = TREE_TYPE (type);
9945 tree domain = TYPE_DOMAIN (type);
9946 enum machine_mode mode = TYPE_MODE (enttype);
9948 if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_SIZE (mode) == 1
9949 && domain
9950 && integer_zerop (TYPE_MIN_VALUE (domain))
9951 && compare_tree_int (TYPE_MAX_VALUE (domain),
9952 TREE_STRING_LENGTH (init) - 1) == 0
9953 && ((size_t) TREE_STRING_LENGTH (init)
9954 == strlen (TREE_STRING_POINTER (init)) + 1))
9955 rtl = gen_rtx_CONST_STRING (VOIDmode,
9956 ggc_strdup (TREE_STRING_POINTER (init)));
9958 /* If the initializer is something that we know will expand into an
9959 immediate RTL constant, expand it now. Expanding anything else
9960 tends to produce unresolved symbols; see debug/5770 and c++/6381. */
9961 /* Aggregate, vector, and complex types may contain constructors that may
9962 result in code being generated when expand_expr is called, so we can't
9963 handle them here. Integer and float are useful and safe types to handle
9964 here. */
9965 else if ((INTEGRAL_TYPE_P (type) || SCALAR_FLOAT_TYPE_P (type))
9966 && initializer_constant_valid_p (init, type) == null_pointer_node)
9968 rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
9970 /* If expand_expr returns a MEM, it wasn't immediate. */
9971 gcc_assert (!rtl || !MEM_P (rtl));
9974 return rtl;
9977 /* Generate RTL for the variable DECL to represent its location. */
9979 static rtx
9980 rtl_for_decl_location (tree decl)
9982 rtx rtl;
9984 /* Here we have to decide where we are going to say the parameter "lives"
9985 (as far as the debugger is concerned). We only have a couple of
9986 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
9988 DECL_RTL normally indicates where the parameter lives during most of the
9989 activation of the function. If optimization is enabled however, this
9990 could be either NULL or else a pseudo-reg. Both of those cases indicate
9991 that the parameter doesn't really live anywhere (as far as the code
9992 generation parts of GCC are concerned) during most of the function's
9993 activation. That will happen (for example) if the parameter is never
9994 referenced within the function.
9996 We could just generate a location descriptor here for all non-NULL
9997 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
9998 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
9999 where DECL_RTL is NULL or is a pseudo-reg.
10001 Note however that we can only get away with using DECL_INCOMING_RTL as
10002 a backup substitute for DECL_RTL in certain limited cases. In cases
10003 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
10004 we can be sure that the parameter was passed using the same type as it is
10005 declared to have within the function, and that its DECL_INCOMING_RTL
10006 points us to a place where a value of that type is passed.
10008 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
10009 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
10010 because in these cases DECL_INCOMING_RTL points us to a value of some
10011 type which is *different* from the type of the parameter itself. Thus,
10012 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
10013 such cases, the debugger would end up (for example) trying to fetch a
10014 `float' from a place which actually contains the first part of a
10015 `double'. That would lead to really incorrect and confusing
10016 output at debug-time.
10018 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
10019 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
10020 are a couple of exceptions however. On little-endian machines we can
10021 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
10022 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
10023 an integral type that is smaller than TREE_TYPE (decl). These cases arise
10024 when (on a little-endian machine) a non-prototyped function has a
10025 parameter declared to be of type `short' or `char'. In such cases,
10026 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
10027 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
10028 passed `int' value. If the debugger then uses that address to fetch
10029 a `short' or a `char' (on a little-endian machine) the result will be
10030 the correct data, so we allow for such exceptional cases below.
10032 Note that our goal here is to describe the place where the given formal
10033 parameter lives during most of the function's activation (i.e. between the
10034 end of the prologue and the start of the epilogue). We'll do that as best
10035 as we can. Note however that if the given formal parameter is modified
10036 sometime during the execution of the function, then a stack backtrace (at
10037 debug-time) will show the function as having been called with the *new*
10038 value rather than the value which was originally passed in. This happens
10039 rarely enough that it is not a major problem, but it *is* a problem, and
10040 I'd like to fix it.
10042 A future version of dwarf2out.c may generate two additional attributes for
10043 any given DW_TAG_formal_parameter DIE which will describe the "passed
10044 type" and the "passed location" for the given formal parameter in addition
10045 to the attributes we now generate to indicate the "declared type" and the
10046 "active location" for each parameter. This additional set of attributes
10047 could be used by debuggers for stack backtraces. Separately, note that
10048 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
10049 This happens (for example) for inlined-instances of inline function formal
10050 parameters which are never referenced. This really shouldn't be
10051 happening. All PARM_DECL nodes should get valid non-NULL
10052 DECL_INCOMING_RTL values. FIXME. */
10054 /* Use DECL_RTL as the "location" unless we find something better. */
10055 rtl = DECL_RTL_IF_SET (decl);
10057 /* When generating abstract instances, ignore everything except
10058 constants, symbols living in memory, and symbols living in
10059 fixed registers. */
10060 if (! reload_completed)
10062 if (rtl
10063 && (CONSTANT_P (rtl)
10064 || (MEM_P (rtl)
10065 && CONSTANT_P (XEXP (rtl, 0)))
10066 || (REG_P (rtl)
10067 && TREE_CODE (decl) == VAR_DECL
10068 && TREE_STATIC (decl))))
10070 rtl = targetm.delegitimize_address (rtl);
10071 return rtl;
10073 rtl = NULL_RTX;
10075 else if (TREE_CODE (decl) == PARM_DECL)
10077 if (rtl == NULL_RTX || is_pseudo_reg (rtl))
10079 tree declared_type = TREE_TYPE (decl);
10080 tree passed_type = DECL_ARG_TYPE (decl);
10081 enum machine_mode dmode = TYPE_MODE (declared_type);
10082 enum machine_mode pmode = TYPE_MODE (passed_type);
10084 /* This decl represents a formal parameter which was optimized out.
10085 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
10086 all cases where (rtl == NULL_RTX) just below. */
10087 if (dmode == pmode)
10088 rtl = DECL_INCOMING_RTL (decl);
10089 else if (SCALAR_INT_MODE_P (dmode)
10090 && GET_MODE_SIZE (dmode) <= GET_MODE_SIZE (pmode)
10091 && DECL_INCOMING_RTL (decl))
10093 rtx inc = DECL_INCOMING_RTL (decl);
10094 if (REG_P (inc))
10095 rtl = inc;
10096 else if (MEM_P (inc))
10098 if (BYTES_BIG_ENDIAN)
10099 rtl = adjust_address_nv (inc, dmode,
10100 GET_MODE_SIZE (pmode)
10101 - GET_MODE_SIZE (dmode));
10102 else
10103 rtl = inc;
10108 /* If the parm was passed in registers, but lives on the stack, then
10109 make a big endian correction if the mode of the type of the
10110 parameter is not the same as the mode of the rtl. */
10111 /* ??? This is the same series of checks that are made in dbxout.c before
10112 we reach the big endian correction code there. It isn't clear if all
10113 of these checks are necessary here, but keeping them all is the safe
10114 thing to do. */
10115 else if (MEM_P (rtl)
10116 && XEXP (rtl, 0) != const0_rtx
10117 && ! CONSTANT_P (XEXP (rtl, 0))
10118 /* Not passed in memory. */
10119 && !MEM_P (DECL_INCOMING_RTL (decl))
10120 /* Not passed by invisible reference. */
10121 && (!REG_P (XEXP (rtl, 0))
10122 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
10123 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
10124 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
10125 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
10126 #endif
10128 /* Big endian correction check. */
10129 && BYTES_BIG_ENDIAN
10130 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
10131 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
10132 < UNITS_PER_WORD))
10134 int offset = (UNITS_PER_WORD
10135 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
10137 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
10138 plus_constant (XEXP (rtl, 0), offset));
10141 else if (TREE_CODE (decl) == VAR_DECL
10142 && rtl
10143 && MEM_P (rtl)
10144 && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl))
10145 && BYTES_BIG_ENDIAN)
10147 int rsize = GET_MODE_SIZE (GET_MODE (rtl));
10148 int dsize = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)));
10150 /* If a variable is declared "register" yet is smaller than
10151 a register, then if we store the variable to memory, it
10152 looks like we're storing a register-sized value, when in
10153 fact we are not. We need to adjust the offset of the
10154 storage location to reflect the actual value's bytes,
10155 else gdb will not be able to display it. */
10156 if (rsize > dsize)
10157 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
10158 plus_constant (XEXP (rtl, 0), rsize-dsize));
10161 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
10162 and will have been substituted directly into all expressions that use it.
10163 C does not have such a concept, but C++ and other languages do. */
10164 if (!rtl && TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
10165 rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
10167 if (rtl)
10168 rtl = targetm.delegitimize_address (rtl);
10170 /* If we don't look past the constant pool, we risk emitting a
10171 reference to a constant pool entry that isn't referenced from
10172 code, and thus is not emitted. */
10173 if (rtl)
10174 rtl = avoid_constant_pool_reference (rtl);
10176 return rtl;
10179 /* We need to figure out what section we should use as the base for the
10180 address ranges where a given location is valid.
10181 1. If this particular DECL has a section associated with it, use that.
10182 2. If this function has a section associated with it, use that.
10183 3. Otherwise, use the text section.
10184 XXX: If you split a variable across multiple sections, we won't notice. */
10186 static const char *
10187 secname_for_decl (tree decl)
10189 const char *secname;
10191 if (VAR_OR_FUNCTION_DECL_P (decl) && DECL_SECTION_NAME (decl))
10193 tree sectree = DECL_SECTION_NAME (decl);
10194 secname = TREE_STRING_POINTER (sectree);
10196 else if (current_function_decl && DECL_SECTION_NAME (current_function_decl))
10198 tree sectree = DECL_SECTION_NAME (current_function_decl);
10199 secname = TREE_STRING_POINTER (sectree);
10201 else if (cfun && in_cold_section_p)
10202 secname = cfun->cold_section_label;
10203 else
10204 secname = text_section_label;
10206 return secname;
10209 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
10210 data attribute for a variable or a parameter. We generate the
10211 DW_AT_const_value attribute only in those cases where the given variable
10212 or parameter does not have a true "location" either in memory or in a
10213 register. This can happen (for example) when a constant is passed as an
10214 actual argument in a call to an inline function. (It's possible that
10215 these things can crop up in other ways also.) Note that one type of
10216 constant value which can be passed into an inlined function is a constant
10217 pointer. This can happen for example if an actual argument in an inlined
10218 function call evaluates to a compile-time constant address. */
10220 static void
10221 add_location_or_const_value_attribute (dw_die_ref die, tree decl,
10222 enum dwarf_attribute attr)
10224 rtx rtl;
10225 dw_loc_descr_ref descr;
10226 var_loc_list *loc_list;
10227 struct var_loc_node *node;
10228 if (TREE_CODE (decl) == ERROR_MARK)
10229 return;
10231 gcc_assert (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
10232 || TREE_CODE (decl) == RESULT_DECL);
10234 /* See if we possibly have multiple locations for this variable. */
10235 loc_list = lookup_decl_loc (decl);
10237 /* If it truly has multiple locations, the first and last node will
10238 differ. */
10239 if (loc_list && loc_list->first != loc_list->last)
10241 const char *endname, *secname;
10242 dw_loc_list_ref list;
10243 rtx varloc;
10245 /* Now that we know what section we are using for a base,
10246 actually construct the list of locations.
10247 The first location information is what is passed to the
10248 function that creates the location list, and the remaining
10249 locations just get added on to that list.
10250 Note that we only know the start address for a location
10251 (IE location changes), so to build the range, we use
10252 the range [current location start, next location start].
10253 This means we have to special case the last node, and generate
10254 a range of [last location start, end of function label]. */
10256 node = loc_list->first;
10257 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
10258 secname = secname_for_decl (decl);
10260 list = new_loc_list (loc_descriptor (varloc),
10261 node->label, node->next->label, secname, 1);
10262 node = node->next;
10264 for (; node->next; node = node->next)
10265 if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
10267 /* The variable has a location between NODE->LABEL and
10268 NODE->NEXT->LABEL. */
10269 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
10270 add_loc_descr_to_loc_list (&list, loc_descriptor (varloc),
10271 node->label, node->next->label, secname);
10274 /* If the variable has a location at the last label
10275 it keeps its location until the end of function. */
10276 if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
10278 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
10280 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
10281 if (!current_function_decl)
10282 endname = text_end_label;
10283 else
10285 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
10286 current_function_funcdef_no);
10287 endname = ggc_strdup (label_id);
10289 add_loc_descr_to_loc_list (&list, loc_descriptor (varloc),
10290 node->label, endname, secname);
10293 /* Finally, add the location list to the DIE, and we are done. */
10294 add_AT_loc_list (die, attr, list);
10295 return;
10298 /* Try to get some constant RTL for this decl, and use that as the value of
10299 the location. */
10301 rtl = rtl_for_decl_location (decl);
10302 if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING))
10304 add_const_value_attribute (die, rtl);
10305 return;
10308 /* If we have tried to generate the location otherwise, and it
10309 didn't work out (we wouldn't be here if we did), and we have a one entry
10310 location list, try generating a location from that. */
10311 if (loc_list && loc_list->first)
10313 node = loc_list->first;
10314 descr = loc_descriptor (NOTE_VAR_LOCATION (node->var_loc_note));
10315 if (descr)
10317 add_AT_location_description (die, attr, descr);
10318 return;
10322 /* We couldn't get any rtl, so try directly generating the location
10323 description from the tree. */
10324 descr = loc_descriptor_from_tree (decl);
10325 if (descr)
10327 add_AT_location_description (die, attr, descr);
10328 return;
10332 /* If we don't have a copy of this variable in memory for some reason (such
10333 as a C++ member constant that doesn't have an out-of-line definition),
10334 we should tell the debugger about the constant value. */
10336 static void
10337 tree_add_const_value_attribute (dw_die_ref var_die, tree decl)
10339 tree init = DECL_INITIAL (decl);
10340 tree type = TREE_TYPE (decl);
10341 rtx rtl;
10343 if (TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl) && init)
10344 /* OK */;
10345 else
10346 return;
10348 rtl = rtl_for_decl_init (init, type);
10349 if (rtl)
10350 add_const_value_attribute (var_die, rtl);
10353 /* Convert the CFI instructions for the current function into a
10354 location list. This is used for DW_AT_frame_base when we targeting
10355 a dwarf2 consumer that does not support the dwarf3
10356 DW_OP_call_frame_cfa. OFFSET is a constant to be added to all CFA
10357 expressions. */
10359 static dw_loc_list_ref
10360 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
10362 dw_fde_ref fde;
10363 dw_loc_list_ref list, *list_tail;
10364 dw_cfi_ref cfi;
10365 dw_cfa_location last_cfa, next_cfa;
10366 const char *start_label, *last_label, *section;
10368 fde = &fde_table[fde_table_in_use - 1];
10370 section = secname_for_decl (current_function_decl);
10371 list_tail = &list;
10372 list = NULL;
10374 next_cfa.reg = INVALID_REGNUM;
10375 next_cfa.offset = 0;
10376 next_cfa.indirect = 0;
10377 next_cfa.base_offset = 0;
10379 start_label = fde->dw_fde_begin;
10381 /* ??? Bald assumption that the CIE opcode list does not contain
10382 advance opcodes. */
10383 for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
10384 lookup_cfa_1 (cfi, &next_cfa);
10386 last_cfa = next_cfa;
10387 last_label = start_label;
10389 for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
10390 switch (cfi->dw_cfi_opc)
10392 case DW_CFA_advance_loc1:
10393 case DW_CFA_advance_loc2:
10394 case DW_CFA_advance_loc4:
10395 if (!cfa_equal_p (&last_cfa, &next_cfa))
10397 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
10398 start_label, last_label, section,
10399 list == NULL);
10401 list_tail = &(*list_tail)->dw_loc_next;
10402 last_cfa = next_cfa;
10403 start_label = last_label;
10405 last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
10406 break;
10408 case DW_CFA_advance_loc:
10409 /* The encoding is complex enough that we should never emit this. */
10410 case DW_CFA_remember_state:
10411 case DW_CFA_restore_state:
10412 /* We don't handle these two in this function. It would be possible
10413 if it were to be required. */
10414 gcc_unreachable ();
10416 default:
10417 lookup_cfa_1 (cfi, &next_cfa);
10418 break;
10421 if (!cfa_equal_p (&last_cfa, &next_cfa))
10423 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
10424 start_label, last_label, section,
10425 list == NULL);
10426 list_tail = &(*list_tail)->dw_loc_next;
10427 start_label = last_label;
10429 *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
10430 start_label, fde->dw_fde_end, section,
10431 list == NULL);
10433 return list;
10436 /* Compute a displacement from the "steady-state frame pointer" to the
10437 frame base (often the same as the CFA), and store it in
10438 frame_pointer_fb_offset. OFFSET is added to the displacement
10439 before the latter is negated. */
10441 static void
10442 compute_frame_pointer_to_fb_displacement (HOST_WIDE_INT offset)
10444 rtx reg, elim;
10446 #ifdef FRAME_POINTER_CFA_OFFSET
10447 reg = frame_pointer_rtx;
10448 offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
10449 #else
10450 reg = arg_pointer_rtx;
10451 offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
10452 #endif
10454 elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
10455 if (GET_CODE (elim) == PLUS)
10457 offset += INTVAL (XEXP (elim, 1));
10458 elim = XEXP (elim, 0);
10460 gcc_assert (elim == (frame_pointer_needed ? hard_frame_pointer_rtx
10461 : stack_pointer_rtx));
10463 frame_pointer_fb_offset = -offset;
10466 /* Generate a DW_AT_name attribute given some string value to be included as
10467 the value of the attribute. */
10469 static void
10470 add_name_attribute (dw_die_ref die, const char *name_string)
10472 if (name_string != NULL && *name_string != 0)
10474 if (demangle_name_func)
10475 name_string = (*demangle_name_func) (name_string);
10477 add_AT_string (die, DW_AT_name, name_string);
10481 /* Generate a DW_AT_comp_dir attribute for DIE. */
10483 static void
10484 add_comp_dir_attribute (dw_die_ref die)
10486 const char *wd = get_src_pwd ();
10487 if (wd != NULL)
10488 add_AT_string (die, DW_AT_comp_dir, wd);
10491 /* Given a tree node describing an array bound (either lower or upper) output
10492 a representation for that bound. */
10494 static void
10495 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree bound)
10497 switch (TREE_CODE (bound))
10499 case ERROR_MARK:
10500 return;
10502 /* All fixed-bounds are represented by INTEGER_CST nodes. */
10503 case INTEGER_CST:
10504 if (! host_integerp (bound, 0)
10505 || (bound_attr == DW_AT_lower_bound
10506 && (((is_c_family () || is_java ()) && integer_zerop (bound))
10507 || (is_fortran () && integer_onep (bound)))))
10508 /* Use the default. */
10510 else
10511 add_AT_unsigned (subrange_die, bound_attr, tree_low_cst (bound, 0));
10512 break;
10514 case CONVERT_EXPR:
10515 case NOP_EXPR:
10516 case NON_LVALUE_EXPR:
10517 case VIEW_CONVERT_EXPR:
10518 add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
10519 break;
10521 case SAVE_EXPR:
10522 break;
10524 case VAR_DECL:
10525 case PARM_DECL:
10526 case RESULT_DECL:
10528 dw_die_ref decl_die = lookup_decl_die (bound);
10530 /* ??? Can this happen, or should the variable have been bound
10531 first? Probably it can, since I imagine that we try to create
10532 the types of parameters in the order in which they exist in
10533 the list, and won't have created a forward reference to a
10534 later parameter. */
10535 if (decl_die != NULL)
10536 add_AT_die_ref (subrange_die, bound_attr, decl_die);
10537 break;
10540 default:
10542 /* Otherwise try to create a stack operation procedure to
10543 evaluate the value of the array bound. */
10545 dw_die_ref ctx, decl_die;
10546 dw_loc_descr_ref loc;
10548 loc = loc_descriptor_from_tree (bound);
10549 if (loc == NULL)
10550 break;
10552 if (current_function_decl == 0)
10553 ctx = comp_unit_die;
10554 else
10555 ctx = lookup_decl_die (current_function_decl);
10557 decl_die = new_die (DW_TAG_variable, ctx, bound);
10558 add_AT_flag (decl_die, DW_AT_artificial, 1);
10559 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
10560 add_AT_loc (decl_die, DW_AT_location, loc);
10562 add_AT_die_ref (subrange_die, bound_attr, decl_die);
10563 break;
10568 /* Note that the block of subscript information for an array type also
10569 includes information about the element type of type given array type. */
10571 static void
10572 add_subscript_info (dw_die_ref type_die, tree type)
10574 #ifndef MIPS_DEBUGGING_INFO
10575 unsigned dimension_number;
10576 #endif
10577 tree lower, upper;
10578 dw_die_ref subrange_die;
10580 /* The GNU compilers represent multidimensional array types as sequences of
10581 one dimensional array types whose element types are themselves array
10582 types. Here we squish that down, so that each multidimensional array
10583 type gets only one array_type DIE in the Dwarf debugging info. The draft
10584 Dwarf specification say that we are allowed to do this kind of
10585 compression in C (because there is no difference between an array or
10586 arrays and a multidimensional array in C) but for other source languages
10587 (e.g. Ada) we probably shouldn't do this. */
10589 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
10590 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
10591 We work around this by disabling this feature. See also
10592 gen_array_type_die. */
10593 #ifndef MIPS_DEBUGGING_INFO
10594 for (dimension_number = 0;
10595 TREE_CODE (type) == ARRAY_TYPE;
10596 type = TREE_TYPE (type), dimension_number++)
10597 #endif
10599 tree domain = TYPE_DOMAIN (type);
10601 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
10602 and (in GNU C only) variable bounds. Handle all three forms
10603 here. */
10604 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
10605 if (domain)
10607 /* We have an array type with specified bounds. */
10608 lower = TYPE_MIN_VALUE (domain);
10609 upper = TYPE_MAX_VALUE (domain);
10611 /* Define the index type. */
10612 if (TREE_TYPE (domain))
10614 /* ??? This is probably an Ada unnamed subrange type. Ignore the
10615 TREE_TYPE field. We can't emit debug info for this
10616 because it is an unnamed integral type. */
10617 if (TREE_CODE (domain) == INTEGER_TYPE
10618 && TYPE_NAME (domain) == NULL_TREE
10619 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
10620 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
10622 else
10623 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
10624 type_die);
10627 /* ??? If upper is NULL, the array has unspecified length,
10628 but it does have a lower bound. This happens with Fortran
10629 dimension arr(N:*)
10630 Since the debugger is definitely going to need to know N
10631 to produce useful results, go ahead and output the lower
10632 bound solo, and hope the debugger can cope. */
10634 add_bound_info (subrange_die, DW_AT_lower_bound, lower);
10635 if (upper)
10636 add_bound_info (subrange_die, DW_AT_upper_bound, upper);
10639 /* Otherwise we have an array type with an unspecified length. The
10640 DWARF-2 spec does not say how to handle this; let's just leave out the
10641 bounds. */
10645 static void
10646 add_byte_size_attribute (dw_die_ref die, tree tree_node)
10648 unsigned size;
10650 switch (TREE_CODE (tree_node))
10652 case ERROR_MARK:
10653 size = 0;
10654 break;
10655 case ENUMERAL_TYPE:
10656 case RECORD_TYPE:
10657 case UNION_TYPE:
10658 case QUAL_UNION_TYPE:
10659 size = int_size_in_bytes (tree_node);
10660 break;
10661 case FIELD_DECL:
10662 /* For a data member of a struct or union, the DW_AT_byte_size is
10663 generally given as the number of bytes normally allocated for an
10664 object of the *declared* type of the member itself. This is true
10665 even for bit-fields. */
10666 size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
10667 break;
10668 default:
10669 gcc_unreachable ();
10672 /* Note that `size' might be -1 when we get to this point. If it is, that
10673 indicates that the byte size of the entity in question is variable. We
10674 have no good way of expressing this fact in Dwarf at the present time,
10675 so just let the -1 pass on through. */
10676 add_AT_unsigned (die, DW_AT_byte_size, size);
10679 /* For a FIELD_DECL node which represents a bit-field, output an attribute
10680 which specifies the distance in bits from the highest order bit of the
10681 "containing object" for the bit-field to the highest order bit of the
10682 bit-field itself.
10684 For any given bit-field, the "containing object" is a hypothetical object
10685 (of some integral or enum type) within which the given bit-field lives. The
10686 type of this hypothetical "containing object" is always the same as the
10687 declared type of the individual bit-field itself. The determination of the
10688 exact location of the "containing object" for a bit-field is rather
10689 complicated. It's handled by the `field_byte_offset' function (above).
10691 Note that it is the size (in bytes) of the hypothetical "containing object"
10692 which will be given in the DW_AT_byte_size attribute for this bit-field.
10693 (See `byte_size_attribute' above). */
10695 static inline void
10696 add_bit_offset_attribute (dw_die_ref die, tree decl)
10698 HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
10699 tree type = DECL_BIT_FIELD_TYPE (decl);
10700 HOST_WIDE_INT bitpos_int;
10701 HOST_WIDE_INT highest_order_object_bit_offset;
10702 HOST_WIDE_INT highest_order_field_bit_offset;
10703 HOST_WIDE_INT unsigned bit_offset;
10705 /* Must be a field and a bit field. */
10706 gcc_assert (type && TREE_CODE (decl) == FIELD_DECL);
10708 /* We can't yet handle bit-fields whose offsets are variable, so if we
10709 encounter such things, just return without generating any attribute
10710 whatsoever. Likewise for variable or too large size. */
10711 if (! host_integerp (bit_position (decl), 0)
10712 || ! host_integerp (DECL_SIZE (decl), 1))
10713 return;
10715 bitpos_int = int_bit_position (decl);
10717 /* Note that the bit offset is always the distance (in bits) from the
10718 highest-order bit of the "containing object" to the highest-order bit of
10719 the bit-field itself. Since the "high-order end" of any object or field
10720 is different on big-endian and little-endian machines, the computation
10721 below must take account of these differences. */
10722 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
10723 highest_order_field_bit_offset = bitpos_int;
10725 if (! BYTES_BIG_ENDIAN)
10727 highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
10728 highest_order_object_bit_offset += simple_type_size_in_bits (type);
10731 bit_offset
10732 = (! BYTES_BIG_ENDIAN
10733 ? highest_order_object_bit_offset - highest_order_field_bit_offset
10734 : highest_order_field_bit_offset - highest_order_object_bit_offset);
10736 add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
10739 /* For a FIELD_DECL node which represents a bit field, output an attribute
10740 which specifies the length in bits of the given field. */
10742 static inline void
10743 add_bit_size_attribute (dw_die_ref die, tree decl)
10745 /* Must be a field and a bit field. */
10746 gcc_assert (TREE_CODE (decl) == FIELD_DECL
10747 && DECL_BIT_FIELD_TYPE (decl));
10749 if (host_integerp (DECL_SIZE (decl), 1))
10750 add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
10753 /* If the compiled language is ANSI C, then add a 'prototyped'
10754 attribute, if arg types are given for the parameters of a function. */
10756 static inline void
10757 add_prototyped_attribute (dw_die_ref die, tree func_type)
10759 if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
10760 && TYPE_ARG_TYPES (func_type) != NULL)
10761 add_AT_flag (die, DW_AT_prototyped, 1);
10764 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
10765 by looking in either the type declaration or object declaration
10766 equate table. */
10768 static inline void
10769 add_abstract_origin_attribute (dw_die_ref die, tree origin)
10771 dw_die_ref origin_die = NULL;
10773 if (TREE_CODE (origin) != FUNCTION_DECL)
10775 /* We may have gotten separated from the block for the inlined
10776 function, if we're in an exception handler or some such; make
10777 sure that the abstract function has been written out.
10779 Doing this for nested functions is wrong, however; functions are
10780 distinct units, and our context might not even be inline. */
10781 tree fn = origin;
10783 if (TYPE_P (fn))
10784 fn = TYPE_STUB_DECL (fn);
10786 fn = decl_function_context (fn);
10787 if (fn)
10788 dwarf2out_abstract_function (fn);
10791 if (DECL_P (origin))
10792 origin_die = lookup_decl_die (origin);
10793 else if (TYPE_P (origin))
10794 origin_die = lookup_type_die (origin);
10796 /* XXX: Functions that are never lowered don't always have correct block
10797 trees (in the case of java, they simply have no block tree, in some other
10798 languages). For these functions, there is nothing we can really do to
10799 output correct debug info for inlined functions in all cases. Rather
10800 than die, we'll just produce deficient debug info now, in that we will
10801 have variables without a proper abstract origin. In the future, when all
10802 functions are lowered, we should re-add a gcc_assert (origin_die)
10803 here. */
10805 if (origin_die)
10806 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
10809 /* We do not currently support the pure_virtual attribute. */
10811 static inline void
10812 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
10814 if (DECL_VINDEX (func_decl))
10816 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
10818 if (host_integerp (DECL_VINDEX (func_decl), 0))
10819 add_AT_loc (die, DW_AT_vtable_elem_location,
10820 new_loc_descr (DW_OP_constu,
10821 tree_low_cst (DECL_VINDEX (func_decl), 0),
10822 0));
10824 /* GNU extension: Record what type this method came from originally. */
10825 if (debug_info_level > DINFO_LEVEL_TERSE)
10826 add_AT_die_ref (die, DW_AT_containing_type,
10827 lookup_type_die (DECL_CONTEXT (func_decl)));
10831 /* Add source coordinate attributes for the given decl. */
10833 static void
10834 add_src_coords_attributes (dw_die_ref die, tree decl)
10836 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
10837 unsigned file_index = lookup_filename (s.file);
10839 add_AT_unsigned (die, DW_AT_decl_file, file_index);
10840 add_AT_unsigned (die, DW_AT_decl_line, s.line);
10843 /* Add a DW_AT_name attribute and source coordinate attribute for the
10844 given decl, but only if it actually has a name. */
10846 static void
10847 add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
10849 tree decl_name;
10851 decl_name = DECL_NAME (decl);
10852 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
10854 add_name_attribute (die, dwarf2_name (decl, 0));
10855 if (! DECL_ARTIFICIAL (decl))
10856 add_src_coords_attributes (die, decl);
10858 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
10859 && TREE_PUBLIC (decl)
10860 && DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
10861 && !DECL_ABSTRACT (decl)
10862 && !(TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl)))
10863 add_AT_string (die, DW_AT_MIPS_linkage_name,
10864 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
10867 #ifdef VMS_DEBUGGING_INFO
10868 /* Get the function's name, as described by its RTL. This may be different
10869 from the DECL_NAME name used in the source file. */
10870 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
10872 add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
10873 XEXP (DECL_RTL (decl), 0));
10874 VEC_safe_push (tree, gc, used_rtx_array, XEXP (DECL_RTL (decl), 0));
10876 #endif
10879 /* Push a new declaration scope. */
10881 static void
10882 push_decl_scope (tree scope)
10884 VEC_safe_push (tree, gc, decl_scope_table, scope);
10887 /* Pop a declaration scope. */
10889 static inline void
10890 pop_decl_scope (void)
10892 VEC_pop (tree, decl_scope_table);
10895 /* Return the DIE for the scope that immediately contains this type.
10896 Non-named types get global scope. Named types nested in other
10897 types get their containing scope if it's open, or global scope
10898 otherwise. All other types (i.e. function-local named types) get
10899 the current active scope. */
10901 static dw_die_ref
10902 scope_die_for (tree t, dw_die_ref context_die)
10904 dw_die_ref scope_die = NULL;
10905 tree containing_scope;
10906 int i;
10908 /* Non-types always go in the current scope. */
10909 gcc_assert (TYPE_P (t));
10911 containing_scope = TYPE_CONTEXT (t);
10913 /* Use the containing namespace if it was passed in (for a declaration). */
10914 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
10916 if (context_die == lookup_decl_die (containing_scope))
10917 /* OK */;
10918 else
10919 containing_scope = NULL_TREE;
10922 /* Ignore function type "scopes" from the C frontend. They mean that
10923 a tagged type is local to a parmlist of a function declarator, but
10924 that isn't useful to DWARF. */
10925 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
10926 containing_scope = NULL_TREE;
10928 if (containing_scope == NULL_TREE)
10929 scope_die = comp_unit_die;
10930 else if (TYPE_P (containing_scope))
10932 /* For types, we can just look up the appropriate DIE. But
10933 first we check to see if we're in the middle of emitting it
10934 so we know where the new DIE should go. */
10935 for (i = VEC_length (tree, decl_scope_table) - 1; i >= 0; --i)
10936 if (VEC_index (tree, decl_scope_table, i) == containing_scope)
10937 break;
10939 if (i < 0)
10941 gcc_assert (debug_info_level <= DINFO_LEVEL_TERSE
10942 || TREE_ASM_WRITTEN (containing_scope));
10944 /* If none of the current dies are suitable, we get file scope. */
10945 scope_die = comp_unit_die;
10947 else
10948 scope_die = lookup_type_die (containing_scope);
10950 else
10951 scope_die = context_die;
10953 return scope_die;
10956 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
10958 static inline int
10959 local_scope_p (dw_die_ref context_die)
10961 for (; context_die; context_die = context_die->die_parent)
10962 if (context_die->die_tag == DW_TAG_inlined_subroutine
10963 || context_die->die_tag == DW_TAG_subprogram)
10964 return 1;
10966 return 0;
10969 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
10970 whether or not to treat a DIE in this context as a declaration. */
10972 static inline int
10973 class_or_namespace_scope_p (dw_die_ref context_die)
10975 return (context_die
10976 && (context_die->die_tag == DW_TAG_structure_type
10977 || context_die->die_tag == DW_TAG_union_type
10978 || context_die->die_tag == DW_TAG_namespace));
10981 /* Many forms of DIEs require a "type description" attribute. This
10982 routine locates the proper "type descriptor" die for the type given
10983 by 'type', and adds a DW_AT_type attribute below the given die. */
10985 static void
10986 add_type_attribute (dw_die_ref object_die, tree type, int decl_const,
10987 int decl_volatile, dw_die_ref context_die)
10989 enum tree_code code = TREE_CODE (type);
10990 dw_die_ref type_die = NULL;
10992 /* ??? If this type is an unnamed subrange type of an integral or
10993 floating-point type, use the inner type. This is because we have no
10994 support for unnamed types in base_type_die. This can happen if this is
10995 an Ada subrange type. Correct solution is emit a subrange type die. */
10996 if ((code == INTEGER_TYPE || code == REAL_TYPE)
10997 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
10998 type = TREE_TYPE (type), code = TREE_CODE (type);
11000 if (code == ERROR_MARK
11001 /* Handle a special case. For functions whose return type is void, we
11002 generate *no* type attribute. (Note that no object may have type
11003 `void', so this only applies to function return types). */
11004 || code == VOID_TYPE)
11005 return;
11007 type_die = modified_type_die (type,
11008 decl_const || TYPE_READONLY (type),
11009 decl_volatile || TYPE_VOLATILE (type),
11010 context_die);
11012 if (type_die != NULL)
11013 add_AT_die_ref (object_die, DW_AT_type, type_die);
11016 /* Given an object die, add the calling convention attribute for the
11017 function call type. */
11018 static void
11019 add_calling_convention_attribute (dw_die_ref subr_die, tree type)
11021 enum dwarf_calling_convention value = DW_CC_normal;
11023 value = targetm.dwarf_calling_convention (type);
11025 /* Only add the attribute if the backend requests it, and
11026 is not DW_CC_normal. */
11027 if (value && (value != DW_CC_normal))
11028 add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
11031 /* Given a tree pointer to a struct, class, union, or enum type node, return
11032 a pointer to the (string) tag name for the given type, or zero if the type
11033 was declared without a tag. */
11035 static const char *
11036 type_tag (tree type)
11038 const char *name = 0;
11040 if (TYPE_NAME (type) != 0)
11042 tree t = 0;
11044 /* Find the IDENTIFIER_NODE for the type name. */
11045 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
11046 t = TYPE_NAME (type);
11048 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
11049 a TYPE_DECL node, regardless of whether or not a `typedef' was
11050 involved. */
11051 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11052 && ! DECL_IGNORED_P (TYPE_NAME (type)))
11053 t = DECL_NAME (TYPE_NAME (type));
11055 /* Now get the name as a string, or invent one. */
11056 if (t != 0)
11057 name = IDENTIFIER_POINTER (t);
11060 return (name == 0 || *name == '\0') ? 0 : name;
11063 /* Return the type associated with a data member, make a special check
11064 for bit field types. */
11066 static inline tree
11067 member_declared_type (tree member)
11069 return (DECL_BIT_FIELD_TYPE (member)
11070 ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
11073 /* Get the decl's label, as described by its RTL. This may be different
11074 from the DECL_NAME name used in the source file. */
11076 #if 0
11077 static const char *
11078 decl_start_label (tree decl)
11080 rtx x;
11081 const char *fnname;
11083 x = DECL_RTL (decl);
11084 gcc_assert (MEM_P (x));
11086 x = XEXP (x, 0);
11087 gcc_assert (GET_CODE (x) == SYMBOL_REF);
11089 fnname = XSTR (x, 0);
11090 return fnname;
11092 #endif
11094 /* These routines generate the internal representation of the DIE's for
11095 the compilation unit. Debugging information is collected by walking
11096 the declaration trees passed in from dwarf2out_decl(). */
11098 static void
11099 gen_array_type_die (tree type, dw_die_ref context_die)
11101 dw_die_ref scope_die = scope_die_for (type, context_die);
11102 dw_die_ref array_die;
11103 tree element_type;
11105 /* ??? The SGI dwarf reader fails for array of array of enum types unless
11106 the inner array type comes before the outer array type. Thus we must
11107 call gen_type_die before we call new_die. See below also. */
11108 #ifdef MIPS_DEBUGGING_INFO
11109 gen_type_die (TREE_TYPE (type), context_die);
11110 #endif
11112 array_die = new_die (DW_TAG_array_type, scope_die, type);
11113 add_name_attribute (array_die, type_tag (type));
11114 equate_type_number_to_die (type, array_die);
11116 if (TREE_CODE (type) == VECTOR_TYPE)
11118 /* The frontend feeds us a representation for the vector as a struct
11119 containing an array. Pull out the array type. */
11120 type = TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type)));
11121 add_AT_flag (array_die, DW_AT_GNU_vector, 1);
11124 #if 0
11125 /* We default the array ordering. SDB will probably do
11126 the right things even if DW_AT_ordering is not present. It's not even
11127 an issue until we start to get into multidimensional arrays anyway. If
11128 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
11129 then we'll have to put the DW_AT_ordering attribute back in. (But if
11130 and when we find out that we need to put these in, we will only do so
11131 for multidimensional arrays. */
11132 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
11133 #endif
11135 #ifdef MIPS_DEBUGGING_INFO
11136 /* The SGI compilers handle arrays of unknown bound by setting
11137 AT_declaration and not emitting any subrange DIEs. */
11138 if (! TYPE_DOMAIN (type))
11139 add_AT_flag (array_die, DW_AT_declaration, 1);
11140 else
11141 #endif
11142 add_subscript_info (array_die, type);
11144 /* Add representation of the type of the elements of this array type. */
11145 element_type = TREE_TYPE (type);
11147 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
11148 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
11149 We work around this by disabling this feature. See also
11150 add_subscript_info. */
11151 #ifndef MIPS_DEBUGGING_INFO
11152 while (TREE_CODE (element_type) == ARRAY_TYPE)
11153 element_type = TREE_TYPE (element_type);
11155 gen_type_die (element_type, context_die);
11156 #endif
11158 add_type_attribute (array_die, element_type, 0, 0, context_die);
11161 #if 0
11162 static void
11163 gen_entry_point_die (tree decl, dw_die_ref context_die)
11165 tree origin = decl_ultimate_origin (decl);
11166 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
11168 if (origin != NULL)
11169 add_abstract_origin_attribute (decl_die, origin);
11170 else
11172 add_name_and_src_coords_attributes (decl_die, decl);
11173 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
11174 0, 0, context_die);
11177 if (DECL_ABSTRACT (decl))
11178 equate_decl_number_to_die (decl, decl_die);
11179 else
11180 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
11182 #endif
11184 /* Walk through the list of incomplete types again, trying once more to
11185 emit full debugging info for them. */
11187 static void
11188 retry_incomplete_types (void)
11190 int i;
11192 for (i = VEC_length (tree, incomplete_types) - 1; i >= 0; i--)
11193 gen_type_die (VEC_index (tree, incomplete_types, i), comp_unit_die);
11196 /* Generate a DIE to represent an inlined instance of an enumeration type. */
11198 static void
11199 gen_inlined_enumeration_type_die (tree type, dw_die_ref context_die)
11201 dw_die_ref type_die = new_die (DW_TAG_enumeration_type, context_die, type);
11203 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11204 be incomplete and such types are not marked. */
11205 add_abstract_origin_attribute (type_die, type);
11208 /* Generate a DIE to represent an inlined instance of a structure type. */
11210 static void
11211 gen_inlined_structure_type_die (tree type, dw_die_ref context_die)
11213 dw_die_ref type_die = new_die (DW_TAG_structure_type, context_die, type);
11215 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11216 be incomplete and such types are not marked. */
11217 add_abstract_origin_attribute (type_die, type);
11220 /* Generate a DIE to represent an inlined instance of a union type. */
11222 static void
11223 gen_inlined_union_type_die (tree type, dw_die_ref context_die)
11225 dw_die_ref type_die = new_die (DW_TAG_union_type, context_die, type);
11227 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11228 be incomplete and such types are not marked. */
11229 add_abstract_origin_attribute (type_die, type);
11232 /* Generate a DIE to represent an enumeration type. Note that these DIEs
11233 include all of the information about the enumeration values also. Each
11234 enumerated type name/value is listed as a child of the enumerated type
11235 DIE. */
11237 static dw_die_ref
11238 gen_enumeration_type_die (tree type, dw_die_ref context_die)
11240 dw_die_ref type_die = lookup_type_die (type);
11242 if (type_die == NULL)
11244 type_die = new_die (DW_TAG_enumeration_type,
11245 scope_die_for (type, context_die), type);
11246 equate_type_number_to_die (type, type_die);
11247 add_name_attribute (type_die, type_tag (type));
11249 else if (! TYPE_SIZE (type))
11250 return type_die;
11251 else
11252 remove_AT (type_die, DW_AT_declaration);
11254 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
11255 given enum type is incomplete, do not generate the DW_AT_byte_size
11256 attribute or the DW_AT_element_list attribute. */
11257 if (TYPE_SIZE (type))
11259 tree link;
11261 TREE_ASM_WRITTEN (type) = 1;
11262 add_byte_size_attribute (type_die, type);
11263 if (TYPE_STUB_DECL (type) != NULL_TREE)
11264 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
11266 /* If the first reference to this type was as the return type of an
11267 inline function, then it may not have a parent. Fix this now. */
11268 if (type_die->die_parent == NULL)
11269 add_child_die (scope_die_for (type, context_die), type_die);
11271 for (link = TYPE_VALUES (type);
11272 link != NULL; link = TREE_CHAIN (link))
11274 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
11275 tree value = TREE_VALUE (link);
11277 add_name_attribute (enum_die,
11278 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
11280 if (host_integerp (value, TYPE_UNSIGNED (TREE_TYPE (value))))
11281 /* DWARF2 does not provide a way of indicating whether or
11282 not enumeration constants are signed or unsigned. GDB
11283 always assumes the values are signed, so we output all
11284 values as if they were signed. That means that
11285 enumeration constants with very large unsigned values
11286 will appear to have negative values in the debugger. */
11287 add_AT_int (enum_die, DW_AT_const_value,
11288 tree_low_cst (value, tree_int_cst_sgn (value) > 0));
11291 else
11292 add_AT_flag (type_die, DW_AT_declaration, 1);
11294 return type_die;
11297 /* Generate a DIE to represent either a real live formal parameter decl or to
11298 represent just the type of some formal parameter position in some function
11299 type.
11301 Note that this routine is a bit unusual because its argument may be a
11302 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
11303 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
11304 node. If it's the former then this function is being called to output a
11305 DIE to represent a formal parameter object (or some inlining thereof). If
11306 it's the latter, then this function is only being called to output a
11307 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
11308 argument type of some subprogram type. */
11310 static dw_die_ref
11311 gen_formal_parameter_die (tree node, dw_die_ref context_die)
11313 dw_die_ref parm_die
11314 = new_die (DW_TAG_formal_parameter, context_die, node);
11315 tree origin;
11317 switch (TREE_CODE_CLASS (TREE_CODE (node)))
11319 case tcc_declaration:
11320 origin = decl_ultimate_origin (node);
11321 if (origin != NULL)
11322 add_abstract_origin_attribute (parm_die, origin);
11323 else
11325 add_name_and_src_coords_attributes (parm_die, node);
11326 add_type_attribute (parm_die, TREE_TYPE (node),
11327 TREE_READONLY (node),
11328 TREE_THIS_VOLATILE (node),
11329 context_die);
11330 if (DECL_ARTIFICIAL (node))
11331 add_AT_flag (parm_die, DW_AT_artificial, 1);
11334 equate_decl_number_to_die (node, parm_die);
11335 if (! DECL_ABSTRACT (node))
11336 add_location_or_const_value_attribute (parm_die, node, DW_AT_location);
11338 break;
11340 case tcc_type:
11341 /* We were called with some kind of a ..._TYPE node. */
11342 add_type_attribute (parm_die, node, 0, 0, context_die);
11343 break;
11345 default:
11346 gcc_unreachable ();
11349 return parm_die;
11352 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
11353 at the end of an (ANSI prototyped) formal parameters list. */
11355 static void
11356 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
11358 new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
11361 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
11362 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
11363 parameters as specified in some function type specification (except for
11364 those which appear as part of a function *definition*). */
11366 static void
11367 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
11369 tree link;
11370 tree formal_type = NULL;
11371 tree first_parm_type;
11372 tree arg;
11374 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
11376 arg = DECL_ARGUMENTS (function_or_method_type);
11377 function_or_method_type = TREE_TYPE (function_or_method_type);
11379 else
11380 arg = NULL_TREE;
11382 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
11384 /* Make our first pass over the list of formal parameter types and output a
11385 DW_TAG_formal_parameter DIE for each one. */
11386 for (link = first_parm_type; link; )
11388 dw_die_ref parm_die;
11390 formal_type = TREE_VALUE (link);
11391 if (formal_type == void_type_node)
11392 break;
11394 /* Output a (nameless) DIE to represent the formal parameter itself. */
11395 parm_die = gen_formal_parameter_die (formal_type, context_die);
11396 if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
11397 && link == first_parm_type)
11398 || (arg && DECL_ARTIFICIAL (arg)))
11399 add_AT_flag (parm_die, DW_AT_artificial, 1);
11401 link = TREE_CHAIN (link);
11402 if (arg)
11403 arg = TREE_CHAIN (arg);
11406 /* If this function type has an ellipsis, add a
11407 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
11408 if (formal_type != void_type_node)
11409 gen_unspecified_parameters_die (function_or_method_type, context_die);
11411 /* Make our second (and final) pass over the list of formal parameter types
11412 and output DIEs to represent those types (as necessary). */
11413 for (link = TYPE_ARG_TYPES (function_or_method_type);
11414 link && TREE_VALUE (link);
11415 link = TREE_CHAIN (link))
11416 gen_type_die (TREE_VALUE (link), context_die);
11419 /* We want to generate the DIE for TYPE so that we can generate the
11420 die for MEMBER, which has been defined; we will need to refer back
11421 to the member declaration nested within TYPE. If we're trying to
11422 generate minimal debug info for TYPE, processing TYPE won't do the
11423 trick; we need to attach the member declaration by hand. */
11425 static void
11426 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
11428 gen_type_die (type, context_die);
11430 /* If we're trying to avoid duplicate debug info, we may not have
11431 emitted the member decl for this function. Emit it now. */
11432 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
11433 && ! lookup_decl_die (member))
11435 dw_die_ref type_die;
11436 gcc_assert (!decl_ultimate_origin (member));
11438 push_decl_scope (type);
11439 type_die = lookup_type_die (type);
11440 if (TREE_CODE (member) == FUNCTION_DECL)
11441 gen_subprogram_die (member, type_die);
11442 else if (TREE_CODE (member) == FIELD_DECL)
11444 /* Ignore the nameless fields that are used to skip bits but handle
11445 C++ anonymous unions and structs. */
11446 if (DECL_NAME (member) != NULL_TREE
11447 || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
11448 || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
11450 gen_type_die (member_declared_type (member), type_die);
11451 gen_field_die (member, type_die);
11454 else
11455 gen_variable_die (member, type_die);
11457 pop_decl_scope ();
11461 /* Generate the DWARF2 info for the "abstract" instance of a function which we
11462 may later generate inlined and/or out-of-line instances of. */
11464 static void
11465 dwarf2out_abstract_function (tree decl)
11467 dw_die_ref old_die;
11468 tree save_fn;
11469 tree context;
11470 int was_abstract = DECL_ABSTRACT (decl);
11472 /* Make sure we have the actual abstract inline, not a clone. */
11473 decl = DECL_ORIGIN (decl);
11475 old_die = lookup_decl_die (decl);
11476 if (old_die && get_AT (old_die, DW_AT_inline))
11477 /* We've already generated the abstract instance. */
11478 return;
11480 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
11481 we don't get confused by DECL_ABSTRACT. */
11482 if (debug_info_level > DINFO_LEVEL_TERSE)
11484 context = decl_class_context (decl);
11485 if (context)
11486 gen_type_die_for_member
11487 (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
11490 /* Pretend we've just finished compiling this function. */
11491 save_fn = current_function_decl;
11492 current_function_decl = decl;
11494 set_decl_abstract_flags (decl, 1);
11495 dwarf2out_decl (decl);
11496 if (! was_abstract)
11497 set_decl_abstract_flags (decl, 0);
11499 current_function_decl = save_fn;
11502 /* Generate a DIE to represent a declared function (either file-scope or
11503 block-local). */
11505 static void
11506 gen_subprogram_die (tree decl, dw_die_ref context_die)
11508 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
11509 tree origin = decl_ultimate_origin (decl);
11510 dw_die_ref subr_die;
11511 tree fn_arg_types;
11512 tree outer_scope;
11513 dw_die_ref old_die = lookup_decl_die (decl);
11514 int declaration = (current_function_decl != decl
11515 || class_or_namespace_scope_p (context_die));
11517 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
11518 started to generate the abstract instance of an inline, decided to output
11519 its containing class, and proceeded to emit the declaration of the inline
11520 from the member list for the class. If so, DECLARATION takes priority;
11521 we'll get back to the abstract instance when done with the class. */
11523 /* The class-scope declaration DIE must be the primary DIE. */
11524 if (origin && declaration && class_or_namespace_scope_p (context_die))
11526 origin = NULL;
11527 gcc_assert (!old_die);
11530 /* Now that the C++ front end lazily declares artificial member fns, we
11531 might need to retrofit the declaration into its class. */
11532 if (!declaration && !origin && !old_die
11533 && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
11534 && !class_or_namespace_scope_p (context_die)
11535 && debug_info_level > DINFO_LEVEL_TERSE)
11536 old_die = force_decl_die (decl);
11538 if (origin != NULL)
11540 gcc_assert (!declaration || local_scope_p (context_die));
11542 /* Fixup die_parent for the abstract instance of a nested
11543 inline function. */
11544 if (old_die && old_die->die_parent == NULL)
11545 add_child_die (context_die, old_die);
11547 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11548 add_abstract_origin_attribute (subr_die, origin);
11550 else if (old_die)
11552 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
11553 unsigned file_index = lookup_filename (s.file);
11555 if (!get_AT_flag (old_die, DW_AT_declaration)
11556 /* We can have a normal definition following an inline one in the
11557 case of redefinition of GNU C extern inlines.
11558 It seems reasonable to use AT_specification in this case. */
11559 && !get_AT (old_die, DW_AT_inline))
11561 /* Detect and ignore this case, where we are trying to output
11562 something we have already output. */
11563 return;
11566 /* If the definition comes from the same place as the declaration,
11567 maybe use the old DIE. We always want the DIE for this function
11568 that has the *_pc attributes to be under comp_unit_die so the
11569 debugger can find it. We also need to do this for abstract
11570 instances of inlines, since the spec requires the out-of-line copy
11571 to have the same parent. For local class methods, this doesn't
11572 apply; we just use the old DIE. */
11573 if ((old_die->die_parent == comp_unit_die || context_die == NULL)
11574 && (DECL_ARTIFICIAL (decl)
11575 || (get_AT_unsigned (old_die, DW_AT_decl_file) == file_index
11576 && (get_AT_unsigned (old_die, DW_AT_decl_line)
11577 == (unsigned) s.line))))
11579 subr_die = old_die;
11581 /* Clear out the declaration attribute and the formal parameters.
11582 Do not remove all children, because it is possible that this
11583 declaration die was forced using force_decl_die(). In such
11584 cases die that forced declaration die (e.g. TAG_imported_module)
11585 is one of the children that we do not want to remove. */
11586 remove_AT (subr_die, DW_AT_declaration);
11587 remove_child_TAG (subr_die, DW_TAG_formal_parameter);
11589 else
11591 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11592 add_AT_specification (subr_die, old_die);
11593 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
11594 add_AT_unsigned (subr_die, DW_AT_decl_file, file_index);
11595 if (get_AT_unsigned (old_die, DW_AT_decl_line)
11596 != (unsigned) s.line)
11597 add_AT_unsigned
11598 (subr_die, DW_AT_decl_line, s.line);
11601 else
11603 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11605 if (TREE_PUBLIC (decl))
11606 add_AT_flag (subr_die, DW_AT_external, 1);
11608 add_name_and_src_coords_attributes (subr_die, decl);
11609 if (debug_info_level > DINFO_LEVEL_TERSE)
11611 add_prototyped_attribute (subr_die, TREE_TYPE (decl));
11612 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
11613 0, 0, context_die);
11616 add_pure_or_virtual_attribute (subr_die, decl);
11617 if (DECL_ARTIFICIAL (decl))
11618 add_AT_flag (subr_die, DW_AT_artificial, 1);
11620 if (TREE_PROTECTED (decl))
11621 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
11622 else if (TREE_PRIVATE (decl))
11623 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
11626 if (declaration)
11628 if (!old_die || !get_AT (old_die, DW_AT_inline))
11630 add_AT_flag (subr_die, DW_AT_declaration, 1);
11632 /* The first time we see a member function, it is in the context of
11633 the class to which it belongs. We make sure of this by emitting
11634 the class first. The next time is the definition, which is
11635 handled above. The two may come from the same source text.
11637 Note that force_decl_die() forces function declaration die. It is
11638 later reused to represent definition. */
11639 equate_decl_number_to_die (decl, subr_die);
11642 else if (DECL_ABSTRACT (decl))
11644 if (DECL_DECLARED_INLINE_P (decl))
11646 if (cgraph_function_possibly_inlined_p (decl))
11647 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
11648 else
11649 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
11651 else
11653 if (cgraph_function_possibly_inlined_p (decl))
11654 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
11655 else
11656 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_not_inlined);
11659 equate_decl_number_to_die (decl, subr_die);
11661 else if (!DECL_EXTERNAL (decl))
11663 HOST_WIDE_INT cfa_fb_offset;
11665 if (!old_die || !get_AT (old_die, DW_AT_inline))
11666 equate_decl_number_to_die (decl, subr_die);
11668 if (!flag_reorder_blocks_and_partition)
11670 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
11671 current_function_funcdef_no);
11672 add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
11673 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
11674 current_function_funcdef_no);
11675 add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
11677 add_pubname (decl, subr_die);
11678 add_arange (decl, subr_die);
11680 else
11681 { /* Do nothing for now; maybe need to duplicate die, one for
11682 hot section and ond for cold section, then use the hot/cold
11683 section begin/end labels to generate the aranges... */
11685 add_AT_lbl_id (subr_die, DW_AT_low_pc, hot_section_label);
11686 add_AT_lbl_id (subr_die, DW_AT_high_pc, hot_section_end_label);
11687 add_AT_lbl_id (subr_die, DW_AT_lo_user, unlikely_section_label);
11688 add_AT_lbl_id (subr_die, DW_AT_hi_user, cold_section_end_label);
11690 add_pubname (decl, subr_die);
11691 add_arange (decl, subr_die);
11692 add_arange (decl, subr_die);
11696 #ifdef MIPS_DEBUGGING_INFO
11697 /* Add a reference to the FDE for this routine. */
11698 add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
11699 #endif
11701 cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
11703 /* We define the "frame base" as the function's CFA. This is more
11704 convenient for several reasons: (1) It's stable across the prologue
11705 and epilogue, which makes it better than just a frame pointer,
11706 (2) With dwarf3, there exists a one-byte encoding that allows us
11707 to reference the .debug_frame data by proxy, but failing that,
11708 (3) We can at least reuse the code inspection and interpretation
11709 code that determines the CFA position at various points in the
11710 function. */
11711 /* ??? Use some command-line or configury switch to enable the use
11712 of dwarf3 DW_OP_call_frame_cfa. At present there are no dwarf
11713 consumers that understand it; fall back to "pure" dwarf2 and
11714 convert the CFA data into a location list. */
11716 dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
11717 if (list->dw_loc_next)
11718 add_AT_loc_list (subr_die, DW_AT_frame_base, list);
11719 else
11720 add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
11723 /* Compute a displacement from the "steady-state frame pointer" to
11724 the CFA. The former is what all stack slots and argument slots
11725 will reference in the rtl; the later is what we've told the
11726 debugger about. We'll need to adjust all frame_base references
11727 by this displacement. */
11728 compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
11730 if (cfun->static_chain_decl)
11731 add_AT_location_description (subr_die, DW_AT_static_link,
11732 loc_descriptor_from_tree (cfun->static_chain_decl));
11735 /* Now output descriptions of the arguments for this function. This gets
11736 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
11737 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
11738 `...' at the end of the formal parameter list. In order to find out if
11739 there was a trailing ellipsis or not, we must instead look at the type
11740 associated with the FUNCTION_DECL. This will be a node of type
11741 FUNCTION_TYPE. If the chain of type nodes hanging off of this
11742 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
11743 an ellipsis at the end. */
11745 /* In the case where we are describing a mere function declaration, all we
11746 need to do here (and all we *can* do here) is to describe the *types* of
11747 its formal parameters. */
11748 if (debug_info_level <= DINFO_LEVEL_TERSE)
11750 else if (declaration)
11751 gen_formal_types_die (decl, subr_die);
11752 else
11754 /* Generate DIEs to represent all known formal parameters. */
11755 tree arg_decls = DECL_ARGUMENTS (decl);
11756 tree parm;
11758 /* When generating DIEs, generate the unspecified_parameters DIE
11759 instead if we come across the arg "__builtin_va_alist" */
11760 for (parm = arg_decls; parm; parm = TREE_CHAIN (parm))
11761 if (TREE_CODE (parm) == PARM_DECL)
11763 if (DECL_NAME (parm)
11764 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm)),
11765 "__builtin_va_alist"))
11766 gen_unspecified_parameters_die (parm, subr_die);
11767 else
11768 gen_decl_die (parm, subr_die);
11771 /* Decide whether we need an unspecified_parameters DIE at the end.
11772 There are 2 more cases to do this for: 1) the ansi ... declaration -
11773 this is detectable when the end of the arg list is not a
11774 void_type_node 2) an unprototyped function declaration (not a
11775 definition). This just means that we have no info about the
11776 parameters at all. */
11777 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
11778 if (fn_arg_types != NULL)
11780 /* This is the prototyped case, check for.... */
11781 if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
11782 gen_unspecified_parameters_die (decl, subr_die);
11784 else if (DECL_INITIAL (decl) == NULL_TREE)
11785 gen_unspecified_parameters_die (decl, subr_die);
11788 /* Output Dwarf info for all of the stuff within the body of the function
11789 (if it has one - it may be just a declaration). */
11790 outer_scope = DECL_INITIAL (decl);
11792 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
11793 a function. This BLOCK actually represents the outermost binding contour
11794 for the function, i.e. the contour in which the function's formal
11795 parameters and labels get declared. Curiously, it appears that the front
11796 end doesn't actually put the PARM_DECL nodes for the current function onto
11797 the BLOCK_VARS list for this outer scope, but are strung off of the
11798 DECL_ARGUMENTS list for the function instead.
11800 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
11801 the LABEL_DECL nodes for the function however, and we output DWARF info
11802 for those in decls_for_scope. Just within the `outer_scope' there will be
11803 a BLOCK node representing the function's outermost pair of curly braces,
11804 and any blocks used for the base and member initializers of a C++
11805 constructor function. */
11806 if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
11808 /* Emit a DW_TAG_variable DIE for a named return value. */
11809 if (DECL_NAME (DECL_RESULT (decl)))
11810 gen_decl_die (DECL_RESULT (decl), subr_die);
11812 current_function_has_inlines = 0;
11813 decls_for_scope (outer_scope, subr_die, 0);
11815 #if 0 && defined (MIPS_DEBUGGING_INFO)
11816 if (current_function_has_inlines)
11818 add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
11819 if (! comp_unit_has_inlines)
11821 add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
11822 comp_unit_has_inlines = 1;
11825 #endif
11827 /* Add the calling convention attribute if requested. */
11828 add_calling_convention_attribute (subr_die, TREE_TYPE (decl));
11832 /* Generate a DIE to represent a declared data object. */
11834 static void
11835 gen_variable_die (tree decl, dw_die_ref context_die)
11837 tree origin = decl_ultimate_origin (decl);
11838 dw_die_ref var_die = new_die (DW_TAG_variable, context_die, decl);
11840 dw_die_ref old_die = lookup_decl_die (decl);
11841 int declaration = (DECL_EXTERNAL (decl)
11842 /* If DECL is COMDAT and has not actually been
11843 emitted, we cannot take its address; there
11844 might end up being no definition anywhere in
11845 the program. For example, consider the C++
11846 test case:
11848 template <class T>
11849 struct S { static const int i = 7; };
11851 template <class T>
11852 const int S<T>::i;
11854 int f() { return S<int>::i; }
11856 Here, S<int>::i is not DECL_EXTERNAL, but no
11857 definition is required, so the compiler will
11858 not emit a definition. */
11859 || (TREE_CODE (decl) == VAR_DECL
11860 && DECL_COMDAT (decl) && !TREE_ASM_WRITTEN (decl))
11861 || class_or_namespace_scope_p (context_die));
11863 if (origin != NULL)
11864 add_abstract_origin_attribute (var_die, origin);
11866 /* Loop unrolling can create multiple blocks that refer to the same
11867 static variable, so we must test for the DW_AT_declaration flag.
11869 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
11870 copy decls and set the DECL_ABSTRACT flag on them instead of
11871 sharing them.
11873 ??? Duplicated blocks have been rewritten to use .debug_ranges.
11875 ??? The declare_in_namespace support causes us to get two DIEs for one
11876 variable, both of which are declarations. We want to avoid considering
11877 one to be a specification, so we must test that this DIE is not a
11878 declaration. */
11879 else if (old_die && TREE_STATIC (decl) && ! declaration
11880 && get_AT_flag (old_die, DW_AT_declaration) == 1)
11882 /* This is a definition of a C++ class level static. */
11883 add_AT_specification (var_die, old_die);
11884 if (DECL_NAME (decl))
11886 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
11887 unsigned file_index = lookup_filename (s.file);
11889 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
11890 add_AT_unsigned (var_die, DW_AT_decl_file, file_index);
11892 if (get_AT_unsigned (old_die, DW_AT_decl_line)
11893 != (unsigned) s.line)
11895 add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
11898 else
11900 add_name_and_src_coords_attributes (var_die, decl);
11901 add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
11902 TREE_THIS_VOLATILE (decl), context_die);
11904 if (TREE_PUBLIC (decl))
11905 add_AT_flag (var_die, DW_AT_external, 1);
11907 if (DECL_ARTIFICIAL (decl))
11908 add_AT_flag (var_die, DW_AT_artificial, 1);
11910 if (TREE_PROTECTED (decl))
11911 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
11912 else if (TREE_PRIVATE (decl))
11913 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
11916 if (declaration)
11917 add_AT_flag (var_die, DW_AT_declaration, 1);
11919 if (DECL_ABSTRACT (decl) || declaration)
11920 equate_decl_number_to_die (decl, var_die);
11922 if (! declaration && ! DECL_ABSTRACT (decl))
11924 add_location_or_const_value_attribute (var_die, decl, DW_AT_location);
11925 add_pubname (decl, var_die);
11927 else
11928 tree_add_const_value_attribute (var_die, decl);
11931 /* Generate a DIE to represent a label identifier. */
11933 static void
11934 gen_label_die (tree decl, dw_die_ref context_die)
11936 tree origin = decl_ultimate_origin (decl);
11937 dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
11938 rtx insn;
11939 char label[MAX_ARTIFICIAL_LABEL_BYTES];
11941 if (origin != NULL)
11942 add_abstract_origin_attribute (lbl_die, origin);
11943 else
11944 add_name_and_src_coords_attributes (lbl_die, decl);
11946 if (DECL_ABSTRACT (decl))
11947 equate_decl_number_to_die (decl, lbl_die);
11948 else
11950 insn = DECL_RTL_IF_SET (decl);
11952 /* Deleted labels are programmer specified labels which have been
11953 eliminated because of various optimizations. We still emit them
11954 here so that it is possible to put breakpoints on them. */
11955 if (insn
11956 && (LABEL_P (insn)
11957 || ((NOTE_P (insn)
11958 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL))))
11960 /* When optimization is enabled (via -O) some parts of the compiler
11961 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
11962 represent source-level labels which were explicitly declared by
11963 the user. This really shouldn't be happening though, so catch
11964 it if it ever does happen. */
11965 gcc_assert (!INSN_DELETED_P (insn));
11967 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
11968 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
11973 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
11974 attributes to the DIE for a block STMT, to describe where the inlined
11975 function was called from. This is similar to add_src_coords_attributes. */
11977 static inline void
11978 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
11980 expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (stmt));
11981 unsigned file_index = lookup_filename (s.file);
11983 add_AT_unsigned (die, DW_AT_call_file, file_index);
11984 add_AT_unsigned (die, DW_AT_call_line, s.line);
11987 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
11988 Add low_pc and high_pc attributes to the DIE for a block STMT. */
11990 static inline void
11991 add_high_low_attributes (tree stmt, dw_die_ref die)
11993 char label[MAX_ARTIFICIAL_LABEL_BYTES];
11995 if (BLOCK_FRAGMENT_CHAIN (stmt))
11997 tree chain;
11999 add_AT_range_list (die, DW_AT_ranges, add_ranges (stmt));
12001 chain = BLOCK_FRAGMENT_CHAIN (stmt);
12004 add_ranges (chain);
12005 chain = BLOCK_FRAGMENT_CHAIN (chain);
12007 while (chain);
12008 add_ranges (NULL);
12010 else
12012 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
12013 BLOCK_NUMBER (stmt));
12014 add_AT_lbl_id (die, DW_AT_low_pc, label);
12015 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
12016 BLOCK_NUMBER (stmt));
12017 add_AT_lbl_id (die, DW_AT_high_pc, label);
12021 /* Generate a DIE for a lexical block. */
12023 static void
12024 gen_lexical_block_die (tree stmt, dw_die_ref context_die, int depth)
12026 dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
12028 if (! BLOCK_ABSTRACT (stmt))
12029 add_high_low_attributes (stmt, stmt_die);
12031 decls_for_scope (stmt, stmt_die, depth);
12034 /* Generate a DIE for an inlined subprogram. */
12036 static void
12037 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die, int depth)
12039 tree decl = block_ultimate_origin (stmt);
12041 /* Emit info for the abstract instance first, if we haven't yet. We
12042 must emit this even if the block is abstract, otherwise when we
12043 emit the block below (or elsewhere), we may end up trying to emit
12044 a die whose origin die hasn't been emitted, and crashing. */
12045 dwarf2out_abstract_function (decl);
12047 if (! BLOCK_ABSTRACT (stmt))
12049 dw_die_ref subr_die
12050 = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
12052 add_abstract_origin_attribute (subr_die, decl);
12053 add_high_low_attributes (stmt, subr_die);
12054 add_call_src_coords_attributes (stmt, subr_die);
12056 decls_for_scope (stmt, subr_die, depth);
12057 current_function_has_inlines = 1;
12059 else
12060 /* We may get here if we're the outer block of function A that was
12061 inlined into function B that was inlined into function C. When
12062 generating debugging info for C, dwarf2out_abstract_function(B)
12063 would mark all inlined blocks as abstract, including this one.
12064 So, we wouldn't (and shouldn't) expect labels to be generated
12065 for this one. Instead, just emit debugging info for
12066 declarations within the block. This is particularly important
12067 in the case of initializers of arguments passed from B to us:
12068 if they're statement expressions containing declarations, we
12069 wouldn't generate dies for their abstract variables, and then,
12070 when generating dies for the real variables, we'd die (pun
12071 intended :-) */
12072 gen_lexical_block_die (stmt, context_die, depth);
12075 /* Generate a DIE for a field in a record, or structure. */
12077 static void
12078 gen_field_die (tree decl, dw_die_ref context_die)
12080 dw_die_ref decl_die;
12082 if (TREE_TYPE (decl) == error_mark_node)
12083 return;
12085 decl_die = new_die (DW_TAG_member, context_die, decl);
12086 add_name_and_src_coords_attributes (decl_die, decl);
12087 add_type_attribute (decl_die, member_declared_type (decl),
12088 TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
12089 context_die);
12091 if (DECL_BIT_FIELD_TYPE (decl))
12093 add_byte_size_attribute (decl_die, decl);
12094 add_bit_size_attribute (decl_die, decl);
12095 add_bit_offset_attribute (decl_die, decl);
12098 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
12099 add_data_member_location_attribute (decl_die, decl);
12101 if (DECL_ARTIFICIAL (decl))
12102 add_AT_flag (decl_die, DW_AT_artificial, 1);
12104 if (TREE_PROTECTED (decl))
12105 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
12106 else if (TREE_PRIVATE (decl))
12107 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
12109 /* Equate decl number to die, so that we can look up this decl later on. */
12110 equate_decl_number_to_die (decl, decl_die);
12113 #if 0
12114 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
12115 Use modified_type_die instead.
12116 We keep this code here just in case these types of DIEs may be needed to
12117 represent certain things in other languages (e.g. Pascal) someday. */
12119 static void
12120 gen_pointer_type_die (tree type, dw_die_ref context_die)
12122 dw_die_ref ptr_die
12123 = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
12125 equate_type_number_to_die (type, ptr_die);
12126 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
12127 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
12130 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
12131 Use modified_type_die instead.
12132 We keep this code here just in case these types of DIEs may be needed to
12133 represent certain things in other languages (e.g. Pascal) someday. */
12135 static void
12136 gen_reference_type_die (tree type, dw_die_ref context_die)
12138 dw_die_ref ref_die
12139 = new_die (DW_TAG_reference_type, scope_die_for (type, context_die), type);
12141 equate_type_number_to_die (type, ref_die);
12142 add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
12143 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
12145 #endif
12147 /* Generate a DIE for a pointer to a member type. */
12149 static void
12150 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
12152 dw_die_ref ptr_die
12153 = new_die (DW_TAG_ptr_to_member_type,
12154 scope_die_for (type, context_die), type);
12156 equate_type_number_to_die (type, ptr_die);
12157 add_AT_die_ref (ptr_die, DW_AT_containing_type,
12158 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
12159 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
12162 /* Generate the DIE for the compilation unit. */
12164 static dw_die_ref
12165 gen_compile_unit_die (const char *filename)
12167 dw_die_ref die;
12168 char producer[250];
12169 const char *language_string = lang_hooks.name;
12170 int language;
12172 die = new_die (DW_TAG_compile_unit, NULL, NULL);
12174 if (filename)
12176 add_name_attribute (die, filename);
12177 /* Don't add cwd for <built-in>. */
12178 if (filename[0] != DIR_SEPARATOR && filename[0] != '<')
12179 add_comp_dir_attribute (die);
12182 sprintf (producer, "%s %s", language_string, version_string);
12184 #ifdef MIPS_DEBUGGING_INFO
12185 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
12186 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
12187 not appear in the producer string, the debugger reaches the conclusion
12188 that the object file is stripped and has no debugging information.
12189 To get the MIPS/SGI debugger to believe that there is debugging
12190 information in the object file, we add a -g to the producer string. */
12191 if (debug_info_level > DINFO_LEVEL_TERSE)
12192 strcat (producer, " -g");
12193 #endif
12195 add_AT_string (die, DW_AT_producer, producer);
12197 if (strcmp (language_string, "GNU C++") == 0)
12198 language = DW_LANG_C_plus_plus;
12199 else if (strcmp (language_string, "GNU Ada") == 0)
12200 language = DW_LANG_Ada95;
12201 else if (strcmp (language_string, "GNU F77") == 0)
12202 language = DW_LANG_Fortran77;
12203 else if (strcmp (language_string, "GNU F95") == 0)
12204 language = DW_LANG_Fortran95;
12205 else if (strcmp (language_string, "GNU Pascal") == 0)
12206 language = DW_LANG_Pascal83;
12207 else if (strcmp (language_string, "GNU Java") == 0)
12208 language = DW_LANG_Java;
12209 else if (strcmp (language_string, "GNU Objective-C") == 0)
12210 language = DW_LANG_ObjC;
12211 else if (strcmp (language_string, "GNU Objective-C++") == 0)
12212 language = DW_LANG_ObjC_plus_plus;
12213 else
12214 language = DW_LANG_C89;
12216 add_AT_unsigned (die, DW_AT_language, language);
12217 return die;
12220 /* Generate the DIE for a base class. */
12222 static void
12223 gen_inheritance_die (tree binfo, tree access, dw_die_ref context_die)
12225 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
12227 add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
12228 add_data_member_location_attribute (die, binfo);
12230 if (BINFO_VIRTUAL_P (binfo))
12231 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
12233 if (access == access_public_node)
12234 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
12235 else if (access == access_protected_node)
12236 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
12239 /* Generate a DIE for a class member. */
12241 static void
12242 gen_member_die (tree type, dw_die_ref context_die)
12244 tree member;
12245 tree binfo = TYPE_BINFO (type);
12246 dw_die_ref child;
12248 /* If this is not an incomplete type, output descriptions of each of its
12249 members. Note that as we output the DIEs necessary to represent the
12250 members of this record or union type, we will also be trying to output
12251 DIEs to represent the *types* of those members. However the `type'
12252 function (above) will specifically avoid generating type DIEs for member
12253 types *within* the list of member DIEs for this (containing) type except
12254 for those types (of members) which are explicitly marked as also being
12255 members of this (containing) type themselves. The g++ front- end can
12256 force any given type to be treated as a member of some other (containing)
12257 type by setting the TYPE_CONTEXT of the given (member) type to point to
12258 the TREE node representing the appropriate (containing) type. */
12260 /* First output info about the base classes. */
12261 if (binfo)
12263 VEC(tree,gc) *accesses = BINFO_BASE_ACCESSES (binfo);
12264 int i;
12265 tree base;
12267 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
12268 gen_inheritance_die (base,
12269 (accesses ? VEC_index (tree, accesses, i)
12270 : access_public_node), context_die);
12273 /* Now output info about the data members and type members. */
12274 for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
12276 /* If we thought we were generating minimal debug info for TYPE
12277 and then changed our minds, some of the member declarations
12278 may have already been defined. Don't define them again, but
12279 do put them in the right order. */
12281 child = lookup_decl_die (member);
12282 if (child)
12283 splice_child_die (context_die, child);
12284 else
12285 gen_decl_die (member, context_die);
12288 /* Now output info about the function members (if any). */
12289 for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
12291 /* Don't include clones in the member list. */
12292 if (DECL_ABSTRACT_ORIGIN (member))
12293 continue;
12295 child = lookup_decl_die (member);
12296 if (child)
12297 splice_child_die (context_die, child);
12298 else
12299 gen_decl_die (member, context_die);
12303 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
12304 is set, we pretend that the type was never defined, so we only get the
12305 member DIEs needed by later specification DIEs. */
12307 static void
12308 gen_struct_or_union_type_die (tree type, dw_die_ref context_die)
12310 dw_die_ref type_die = lookup_type_die (type);
12311 dw_die_ref scope_die = 0;
12312 int nested = 0;
12313 int complete = (TYPE_SIZE (type)
12314 && (! TYPE_STUB_DECL (type)
12315 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
12316 int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
12318 if (type_die && ! complete)
12319 return;
12321 if (TYPE_CONTEXT (type) != NULL_TREE
12322 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
12323 || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
12324 nested = 1;
12326 scope_die = scope_die_for (type, context_die);
12328 if (! type_die || (nested && scope_die == comp_unit_die))
12329 /* First occurrence of type or toplevel definition of nested class. */
12331 dw_die_ref old_die = type_die;
12333 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
12334 ? DW_TAG_structure_type : DW_TAG_union_type,
12335 scope_die, type);
12336 equate_type_number_to_die (type, type_die);
12337 if (old_die)
12338 add_AT_specification (type_die, old_die);
12339 else
12340 add_name_attribute (type_die, type_tag (type));
12342 else
12343 remove_AT (type_die, DW_AT_declaration);
12345 /* If this type has been completed, then give it a byte_size attribute and
12346 then give a list of members. */
12347 if (complete && !ns_decl)
12349 /* Prevent infinite recursion in cases where the type of some member of
12350 this type is expressed in terms of this type itself. */
12351 TREE_ASM_WRITTEN (type) = 1;
12352 add_byte_size_attribute (type_die, type);
12353 if (TYPE_STUB_DECL (type) != NULL_TREE)
12354 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
12356 /* If the first reference to this type was as the return type of an
12357 inline function, then it may not have a parent. Fix this now. */
12358 if (type_die->die_parent == NULL)
12359 add_child_die (scope_die, type_die);
12361 push_decl_scope (type);
12362 gen_member_die (type, type_die);
12363 pop_decl_scope ();
12365 /* GNU extension: Record what type our vtable lives in. */
12366 if (TYPE_VFIELD (type))
12368 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
12370 gen_type_die (vtype, context_die);
12371 add_AT_die_ref (type_die, DW_AT_containing_type,
12372 lookup_type_die (vtype));
12375 else
12377 add_AT_flag (type_die, DW_AT_declaration, 1);
12379 /* We don't need to do this for function-local types. */
12380 if (TYPE_STUB_DECL (type)
12381 && ! decl_function_context (TYPE_STUB_DECL (type)))
12382 VEC_safe_push (tree, gc, incomplete_types, type);
12386 /* Generate a DIE for a subroutine _type_. */
12388 static void
12389 gen_subroutine_type_die (tree type, dw_die_ref context_die)
12391 tree return_type = TREE_TYPE (type);
12392 dw_die_ref subr_die
12393 = new_die (DW_TAG_subroutine_type,
12394 scope_die_for (type, context_die), type);
12396 equate_type_number_to_die (type, subr_die);
12397 add_prototyped_attribute (subr_die, type);
12398 add_type_attribute (subr_die, return_type, 0, 0, context_die);
12399 gen_formal_types_die (type, subr_die);
12402 /* Generate a DIE for a type definition. */
12404 static void
12405 gen_typedef_die (tree decl, dw_die_ref context_die)
12407 dw_die_ref type_die;
12408 tree origin;
12410 if (TREE_ASM_WRITTEN (decl))
12411 return;
12413 TREE_ASM_WRITTEN (decl) = 1;
12414 type_die = new_die (DW_TAG_typedef, context_die, decl);
12415 origin = decl_ultimate_origin (decl);
12416 if (origin != NULL)
12417 add_abstract_origin_attribute (type_die, origin);
12418 else
12420 tree type;
12422 add_name_and_src_coords_attributes (type_die, decl);
12423 if (DECL_ORIGINAL_TYPE (decl))
12425 type = DECL_ORIGINAL_TYPE (decl);
12427 gcc_assert (type != TREE_TYPE (decl));
12428 equate_type_number_to_die (TREE_TYPE (decl), type_die);
12430 else
12431 type = TREE_TYPE (decl);
12433 add_type_attribute (type_die, type, TREE_READONLY (decl),
12434 TREE_THIS_VOLATILE (decl), context_die);
12437 if (DECL_ABSTRACT (decl))
12438 equate_decl_number_to_die (decl, type_die);
12441 /* Generate a type description DIE. */
12443 static void
12444 gen_type_die (tree type, dw_die_ref context_die)
12446 int need_pop;
12448 if (type == NULL_TREE || type == error_mark_node)
12449 return;
12451 if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
12452 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
12454 if (TREE_ASM_WRITTEN (type))
12455 return;
12457 /* Prevent broken recursion; we can't hand off to the same type. */
12458 gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type)) != type);
12460 TREE_ASM_WRITTEN (type) = 1;
12461 gen_decl_die (TYPE_NAME (type), context_die);
12462 return;
12465 /* We are going to output a DIE to represent the unqualified version
12466 of this type (i.e. without any const or volatile qualifiers) so
12467 get the main variant (i.e. the unqualified version) of this type
12468 now. (Vectors are special because the debugging info is in the
12469 cloned type itself). */
12470 if (TREE_CODE (type) != VECTOR_TYPE)
12471 type = type_main_variant (type);
12473 if (TREE_ASM_WRITTEN (type))
12474 return;
12476 switch (TREE_CODE (type))
12478 case ERROR_MARK:
12479 break;
12481 case POINTER_TYPE:
12482 case REFERENCE_TYPE:
12483 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
12484 ensures that the gen_type_die recursion will terminate even if the
12485 type is recursive. Recursive types are possible in Ada. */
12486 /* ??? We could perhaps do this for all types before the switch
12487 statement. */
12488 TREE_ASM_WRITTEN (type) = 1;
12490 /* For these types, all that is required is that we output a DIE (or a
12491 set of DIEs) to represent the "basis" type. */
12492 gen_type_die (TREE_TYPE (type), context_die);
12493 break;
12495 case OFFSET_TYPE:
12496 /* This code is used for C++ pointer-to-data-member types.
12497 Output a description of the relevant class type. */
12498 gen_type_die (TYPE_OFFSET_BASETYPE (type), context_die);
12500 /* Output a description of the type of the object pointed to. */
12501 gen_type_die (TREE_TYPE (type), context_die);
12503 /* Now output a DIE to represent this pointer-to-data-member type
12504 itself. */
12505 gen_ptr_to_mbr_type_die (type, context_die);
12506 break;
12508 case FUNCTION_TYPE:
12509 /* Force out return type (in case it wasn't forced out already). */
12510 gen_type_die (TREE_TYPE (type), context_die);
12511 gen_subroutine_type_die (type, context_die);
12512 break;
12514 case METHOD_TYPE:
12515 /* Force out return type (in case it wasn't forced out already). */
12516 gen_type_die (TREE_TYPE (type), context_die);
12517 gen_subroutine_type_die (type, context_die);
12518 break;
12520 case ARRAY_TYPE:
12521 gen_array_type_die (type, context_die);
12522 break;
12524 case VECTOR_TYPE:
12525 gen_array_type_die (type, context_die);
12526 break;
12528 case ENUMERAL_TYPE:
12529 case RECORD_TYPE:
12530 case UNION_TYPE:
12531 case QUAL_UNION_TYPE:
12532 /* If this is a nested type whose containing class hasn't been written
12533 out yet, writing it out will cover this one, too. This does not apply
12534 to instantiations of member class templates; they need to be added to
12535 the containing class as they are generated. FIXME: This hurts the
12536 idea of combining type decls from multiple TUs, since we can't predict
12537 what set of template instantiations we'll get. */
12538 if (TYPE_CONTEXT (type)
12539 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
12540 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
12542 gen_type_die (TYPE_CONTEXT (type), context_die);
12544 if (TREE_ASM_WRITTEN (type))
12545 return;
12547 /* If that failed, attach ourselves to the stub. */
12548 push_decl_scope (TYPE_CONTEXT (type));
12549 context_die = lookup_type_die (TYPE_CONTEXT (type));
12550 need_pop = 1;
12552 else
12554 declare_in_namespace (type, context_die);
12555 need_pop = 0;
12558 if (TREE_CODE (type) == ENUMERAL_TYPE)
12559 gen_enumeration_type_die (type, context_die);
12560 else
12561 gen_struct_or_union_type_die (type, context_die);
12563 if (need_pop)
12564 pop_decl_scope ();
12566 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
12567 it up if it is ever completed. gen_*_type_die will set it for us
12568 when appropriate. */
12569 return;
12571 case VOID_TYPE:
12572 case INTEGER_TYPE:
12573 case REAL_TYPE:
12574 case COMPLEX_TYPE:
12575 case BOOLEAN_TYPE:
12576 /* No DIEs needed for fundamental types. */
12577 break;
12579 case LANG_TYPE:
12580 /* No Dwarf representation currently defined. */
12581 break;
12583 default:
12584 gcc_unreachable ();
12587 TREE_ASM_WRITTEN (type) = 1;
12590 /* Generate a DIE for a tagged type instantiation. */
12592 static void
12593 gen_tagged_type_instantiation_die (tree type, dw_die_ref context_die)
12595 if (type == NULL_TREE || type == error_mark_node)
12596 return;
12598 /* We are going to output a DIE to represent the unqualified version of
12599 this type (i.e. without any const or volatile qualifiers) so make sure
12600 that we have the main variant (i.e. the unqualified version) of this
12601 type now. */
12602 gcc_assert (type == type_main_variant (type));
12604 /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
12605 an instance of an unresolved type. */
12607 switch (TREE_CODE (type))
12609 case ERROR_MARK:
12610 break;
12612 case ENUMERAL_TYPE:
12613 gen_inlined_enumeration_type_die (type, context_die);
12614 break;
12616 case RECORD_TYPE:
12617 gen_inlined_structure_type_die (type, context_die);
12618 break;
12620 case UNION_TYPE:
12621 case QUAL_UNION_TYPE:
12622 gen_inlined_union_type_die (type, context_die);
12623 break;
12625 default:
12626 gcc_unreachable ();
12630 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
12631 things which are local to the given block. */
12633 static void
12634 gen_block_die (tree stmt, dw_die_ref context_die, int depth)
12636 int must_output_die = 0;
12637 tree origin;
12638 tree decl;
12639 enum tree_code origin_code;
12641 /* Ignore blocks that are NULL. */
12642 if (stmt == NULL_TREE)
12643 return;
12645 /* If the block is one fragment of a non-contiguous block, do not
12646 process the variables, since they will have been done by the
12647 origin block. Do process subblocks. */
12648 if (BLOCK_FRAGMENT_ORIGIN (stmt))
12650 tree sub;
12652 for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
12653 gen_block_die (sub, context_die, depth + 1);
12655 return;
12658 /* Determine the "ultimate origin" of this block. This block may be an
12659 inlined instance of an inlined instance of inline function, so we have
12660 to trace all of the way back through the origin chain to find out what
12661 sort of node actually served as the original seed for the creation of
12662 the current block. */
12663 origin = block_ultimate_origin (stmt);
12664 origin_code = (origin != NULL) ? TREE_CODE (origin) : ERROR_MARK;
12666 /* Determine if we need to output any Dwarf DIEs at all to represent this
12667 block. */
12668 if (origin_code == FUNCTION_DECL)
12669 /* The outer scopes for inlinings *must* always be represented. We
12670 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
12671 must_output_die = 1;
12672 else
12674 /* In the case where the current block represents an inlining of the
12675 "body block" of an inline function, we must *NOT* output any DIE for
12676 this block because we have already output a DIE to represent the whole
12677 inlined function scope and the "body block" of any function doesn't
12678 really represent a different scope according to ANSI C rules. So we
12679 check here to make sure that this block does not represent a "body
12680 block inlining" before trying to set the MUST_OUTPUT_DIE flag. */
12681 if (! is_body_block (origin ? origin : stmt))
12683 /* Determine if this block directly contains any "significant"
12684 local declarations which we will need to output DIEs for. */
12685 if (debug_info_level > DINFO_LEVEL_TERSE)
12686 /* We are not in terse mode so *any* local declaration counts
12687 as being a "significant" one. */
12688 must_output_die = (BLOCK_VARS (stmt) != NULL
12689 && (TREE_USED (stmt)
12690 || TREE_ASM_WRITTEN (stmt)
12691 || BLOCK_ABSTRACT (stmt)));
12692 else
12693 /* We are in terse mode, so only local (nested) function
12694 definitions count as "significant" local declarations. */
12695 for (decl = BLOCK_VARS (stmt);
12696 decl != NULL; decl = TREE_CHAIN (decl))
12697 if (TREE_CODE (decl) == FUNCTION_DECL
12698 && DECL_INITIAL (decl))
12700 must_output_die = 1;
12701 break;
12706 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
12707 DIE for any block which contains no significant local declarations at
12708 all. Rather, in such cases we just call `decls_for_scope' so that any
12709 needed Dwarf info for any sub-blocks will get properly generated. Note
12710 that in terse mode, our definition of what constitutes a "significant"
12711 local declaration gets restricted to include only inlined function
12712 instances and local (nested) function definitions. */
12713 if (must_output_die)
12715 if (origin_code == FUNCTION_DECL)
12716 gen_inlined_subroutine_die (stmt, context_die, depth);
12717 else
12718 gen_lexical_block_die (stmt, context_die, depth);
12720 else
12721 decls_for_scope (stmt, context_die, depth);
12724 /* Generate all of the decls declared within a given scope and (recursively)
12725 all of its sub-blocks. */
12727 static void
12728 decls_for_scope (tree stmt, dw_die_ref context_die, int depth)
12730 tree decl;
12731 tree subblocks;
12733 /* Ignore NULL blocks. */
12734 if (stmt == NULL_TREE)
12735 return;
12737 if (TREE_USED (stmt))
12739 /* Output the DIEs to represent all of the data objects and typedefs
12740 declared directly within this block but not within any nested
12741 sub-blocks. Also, nested function and tag DIEs have been
12742 generated with a parent of NULL; fix that up now. */
12743 for (decl = BLOCK_VARS (stmt); decl != NULL; decl = TREE_CHAIN (decl))
12745 dw_die_ref die;
12747 if (TREE_CODE (decl) == FUNCTION_DECL)
12748 die = lookup_decl_die (decl);
12749 else if (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl))
12750 die = lookup_type_die (TREE_TYPE (decl));
12751 else
12752 die = NULL;
12754 if (die != NULL && die->die_parent == NULL)
12755 add_child_die (context_die, die);
12756 /* Do not produce debug information for static variables since
12757 these might be optimized out. We are called for these later
12758 in cgraph_varpool_analyze_pending_decls. */
12759 if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
12761 else
12762 gen_decl_die (decl, context_die);
12766 /* If we're at -g1, we're not interested in subblocks. */
12767 if (debug_info_level <= DINFO_LEVEL_TERSE)
12768 return;
12770 /* Output the DIEs to represent all sub-blocks (and the items declared
12771 therein) of this block. */
12772 for (subblocks = BLOCK_SUBBLOCKS (stmt);
12773 subblocks != NULL;
12774 subblocks = BLOCK_CHAIN (subblocks))
12775 gen_block_die (subblocks, context_die, depth + 1);
12778 /* Is this a typedef we can avoid emitting? */
12780 static inline int
12781 is_redundant_typedef (tree decl)
12783 if (TYPE_DECL_IS_STUB (decl))
12784 return 1;
12786 if (DECL_ARTIFICIAL (decl)
12787 && DECL_CONTEXT (decl)
12788 && is_tagged_type (DECL_CONTEXT (decl))
12789 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
12790 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
12791 /* Also ignore the artificial member typedef for the class name. */
12792 return 1;
12794 return 0;
12797 /* Returns the DIE for decl. A DIE will always be returned. */
12799 static dw_die_ref
12800 force_decl_die (tree decl)
12802 dw_die_ref decl_die;
12803 unsigned saved_external_flag;
12804 tree save_fn = NULL_TREE;
12805 decl_die = lookup_decl_die (decl);
12806 if (!decl_die)
12808 dw_die_ref context_die;
12809 tree decl_context = DECL_CONTEXT (decl);
12810 if (decl_context)
12812 /* Find die that represents this context. */
12813 if (TYPE_P (decl_context))
12814 context_die = force_type_die (decl_context);
12815 else
12816 context_die = force_decl_die (decl_context);
12818 else
12819 context_die = comp_unit_die;
12821 decl_die = lookup_decl_die (decl);
12822 if (decl_die)
12823 return decl_die;
12825 switch (TREE_CODE (decl))
12827 case FUNCTION_DECL:
12828 /* Clear current_function_decl, so that gen_subprogram_die thinks
12829 that this is a declaration. At this point, we just want to force
12830 declaration die. */
12831 save_fn = current_function_decl;
12832 current_function_decl = NULL_TREE;
12833 gen_subprogram_die (decl, context_die);
12834 current_function_decl = save_fn;
12835 break;
12837 case VAR_DECL:
12838 /* Set external flag to force declaration die. Restore it after
12839 gen_decl_die() call. */
12840 saved_external_flag = DECL_EXTERNAL (decl);
12841 DECL_EXTERNAL (decl) = 1;
12842 gen_decl_die (decl, context_die);
12843 DECL_EXTERNAL (decl) = saved_external_flag;
12844 break;
12846 case NAMESPACE_DECL:
12847 dwarf2out_decl (decl);
12848 break;
12850 default:
12851 gcc_unreachable ();
12854 /* We should be able to find the DIE now. */
12855 if (!decl_die)
12856 decl_die = lookup_decl_die (decl);
12857 gcc_assert (decl_die);
12860 return decl_die;
12863 /* Returns the DIE for TYPE. A DIE is always returned. */
12865 static dw_die_ref
12866 force_type_die (tree type)
12868 dw_die_ref type_die;
12870 type_die = lookup_type_die (type);
12871 if (!type_die)
12873 dw_die_ref context_die;
12874 if (TYPE_CONTEXT (type))
12876 if (TYPE_P (TYPE_CONTEXT (type)))
12877 context_die = force_type_die (TYPE_CONTEXT (type));
12878 else
12879 context_die = force_decl_die (TYPE_CONTEXT (type));
12881 else
12882 context_die = comp_unit_die;
12884 type_die = lookup_type_die (type);
12885 if (type_die)
12886 return type_die;
12887 gen_type_die (type, context_die);
12888 type_die = lookup_type_die (type);
12889 gcc_assert (type_die);
12891 return type_die;
12894 /* Force out any required namespaces to be able to output DECL,
12895 and return the new context_die for it, if it's changed. */
12897 static dw_die_ref
12898 setup_namespace_context (tree thing, dw_die_ref context_die)
12900 tree context = (DECL_P (thing)
12901 ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
12902 if (context && TREE_CODE (context) == NAMESPACE_DECL)
12903 /* Force out the namespace. */
12904 context_die = force_decl_die (context);
12906 return context_die;
12909 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
12910 type) within its namespace, if appropriate.
12912 For compatibility with older debuggers, namespace DIEs only contain
12913 declarations; all definitions are emitted at CU scope. */
12915 static void
12916 declare_in_namespace (tree thing, dw_die_ref context_die)
12918 dw_die_ref ns_context;
12920 if (debug_info_level <= DINFO_LEVEL_TERSE)
12921 return;
12923 /* If this decl is from an inlined function, then don't try to emit it in its
12924 namespace, as we will get confused. It would have already been emitted
12925 when the abstract instance of the inline function was emitted anyways. */
12926 if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
12927 return;
12929 ns_context = setup_namespace_context (thing, context_die);
12931 if (ns_context != context_die)
12933 if (DECL_P (thing))
12934 gen_decl_die (thing, ns_context);
12935 else
12936 gen_type_die (thing, ns_context);
12940 /* Generate a DIE for a namespace or namespace alias. */
12942 static void
12943 gen_namespace_die (tree decl)
12945 dw_die_ref context_die = setup_namespace_context (decl, comp_unit_die);
12947 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
12948 they are an alias of. */
12949 if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
12951 /* Output a real namespace. */
12952 dw_die_ref namespace_die
12953 = new_die (DW_TAG_namespace, context_die, decl);
12954 add_name_and_src_coords_attributes (namespace_die, decl);
12955 equate_decl_number_to_die (decl, namespace_die);
12957 else
12959 /* Output a namespace alias. */
12961 /* Force out the namespace we are an alias of, if necessary. */
12962 dw_die_ref origin_die
12963 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
12965 /* Now create the namespace alias DIE. */
12966 dw_die_ref namespace_die
12967 = new_die (DW_TAG_imported_declaration, context_die, decl);
12968 add_name_and_src_coords_attributes (namespace_die, decl);
12969 add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
12970 equate_decl_number_to_die (decl, namespace_die);
12974 /* Generate Dwarf debug information for a decl described by DECL. */
12976 static void
12977 gen_decl_die (tree decl, dw_die_ref context_die)
12979 tree origin;
12981 if (DECL_P (decl) && DECL_IGNORED_P (decl))
12982 return;
12984 switch (TREE_CODE (decl))
12986 case ERROR_MARK:
12987 break;
12989 case CONST_DECL:
12990 /* The individual enumerators of an enum type get output when we output
12991 the Dwarf representation of the relevant enum type itself. */
12992 break;
12994 case FUNCTION_DECL:
12995 /* Don't output any DIEs to represent mere function declarations,
12996 unless they are class members or explicit block externs. */
12997 if (DECL_INITIAL (decl) == NULL_TREE && DECL_CONTEXT (decl) == NULL_TREE
12998 && (current_function_decl == NULL_TREE || DECL_ARTIFICIAL (decl)))
12999 break;
13001 #if 0
13002 /* FIXME */
13003 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
13004 on local redeclarations of global functions. That seems broken. */
13005 if (current_function_decl != decl)
13006 /* This is only a declaration. */;
13007 #endif
13009 /* If we're emitting a clone, emit info for the abstract instance. */
13010 if (DECL_ORIGIN (decl) != decl)
13011 dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl));
13013 /* If we're emitting an out-of-line copy of an inline function,
13014 emit info for the abstract instance and set up to refer to it. */
13015 else if (cgraph_function_possibly_inlined_p (decl)
13016 && ! DECL_ABSTRACT (decl)
13017 && ! class_or_namespace_scope_p (context_die)
13018 /* dwarf2out_abstract_function won't emit a die if this is just
13019 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
13020 that case, because that works only if we have a die. */
13021 && DECL_INITIAL (decl) != NULL_TREE)
13023 dwarf2out_abstract_function (decl);
13024 set_decl_origin_self (decl);
13027 /* Otherwise we're emitting the primary DIE for this decl. */
13028 else if (debug_info_level > DINFO_LEVEL_TERSE)
13030 /* Before we describe the FUNCTION_DECL itself, make sure that we
13031 have described its return type. */
13032 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
13034 /* And its virtual context. */
13035 if (DECL_VINDEX (decl) != NULL_TREE)
13036 gen_type_die (DECL_CONTEXT (decl), context_die);
13038 /* And its containing type. */
13039 origin = decl_class_context (decl);
13040 if (origin != NULL_TREE)
13041 gen_type_die_for_member (origin, decl, context_die);
13043 /* And its containing namespace. */
13044 declare_in_namespace (decl, context_die);
13047 /* Now output a DIE to represent the function itself. */
13048 gen_subprogram_die (decl, context_die);
13049 break;
13051 case TYPE_DECL:
13052 /* If we are in terse mode, don't generate any DIEs to represent any
13053 actual typedefs. */
13054 if (debug_info_level <= DINFO_LEVEL_TERSE)
13055 break;
13057 /* In the special case of a TYPE_DECL node representing the declaration
13058 of some type tag, if the given TYPE_DECL is marked as having been
13059 instantiated from some other (original) TYPE_DECL node (e.g. one which
13060 was generated within the original definition of an inline function) we
13061 have to generate a special (abbreviated) DW_TAG_structure_type,
13062 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. */
13063 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
13065 gen_tagged_type_instantiation_die (TREE_TYPE (decl), context_die);
13066 break;
13069 if (is_redundant_typedef (decl))
13070 gen_type_die (TREE_TYPE (decl), context_die);
13071 else
13072 /* Output a DIE to represent the typedef itself. */
13073 gen_typedef_die (decl, context_die);
13074 break;
13076 case LABEL_DECL:
13077 if (debug_info_level >= DINFO_LEVEL_NORMAL)
13078 gen_label_die (decl, context_die);
13079 break;
13081 case VAR_DECL:
13082 case RESULT_DECL:
13083 /* If we are in terse mode, don't generate any DIEs to represent any
13084 variable declarations or definitions. */
13085 if (debug_info_level <= DINFO_LEVEL_TERSE)
13086 break;
13088 /* Output any DIEs that are needed to specify the type of this data
13089 object. */
13090 gen_type_die (TREE_TYPE (decl), context_die);
13092 /* And its containing type. */
13093 origin = decl_class_context (decl);
13094 if (origin != NULL_TREE)
13095 gen_type_die_for_member (origin, decl, context_die);
13097 /* And its containing namespace. */
13098 declare_in_namespace (decl, context_die);
13100 /* Now output the DIE to represent the data object itself. This gets
13101 complicated because of the possibility that the VAR_DECL really
13102 represents an inlined instance of a formal parameter for an inline
13103 function. */
13104 origin = decl_ultimate_origin (decl);
13105 if (origin != NULL_TREE && TREE_CODE (origin) == PARM_DECL)
13106 gen_formal_parameter_die (decl, context_die);
13107 else
13108 gen_variable_die (decl, context_die);
13109 break;
13111 case FIELD_DECL:
13112 /* Ignore the nameless fields that are used to skip bits but handle C++
13113 anonymous unions and structs. */
13114 if (DECL_NAME (decl) != NULL_TREE
13115 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
13116 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
13118 gen_type_die (member_declared_type (decl), context_die);
13119 gen_field_die (decl, context_die);
13121 break;
13123 case PARM_DECL:
13124 gen_type_die (TREE_TYPE (decl), context_die);
13125 gen_formal_parameter_die (decl, context_die);
13126 break;
13128 case NAMESPACE_DECL:
13129 gen_namespace_die (decl);
13130 break;
13132 default:
13133 /* Probably some frontend-internal decl. Assume we don't care. */
13134 gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
13135 break;
13139 /* Output debug information for global decl DECL. Called from toplev.c after
13140 compilation proper has finished. */
13142 static void
13143 dwarf2out_global_decl (tree decl)
13145 /* Output DWARF2 information for file-scope tentative data object
13146 declarations, file-scope (extern) function declarations (which had no
13147 corresponding body) and file-scope tagged type declarations and
13148 definitions which have not yet been forced out. */
13149 if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
13150 dwarf2out_decl (decl);
13153 /* Output debug information for type decl DECL. Called from toplev.c
13154 and from language front ends (to record built-in types). */
13155 static void
13156 dwarf2out_type_decl (tree decl, int local)
13158 if (!local)
13159 dwarf2out_decl (decl);
13162 /* Output debug information for imported module or decl. */
13164 static void
13165 dwarf2out_imported_module_or_decl (tree decl, tree context)
13167 dw_die_ref imported_die, at_import_die;
13168 dw_die_ref scope_die;
13169 unsigned file_index;
13170 expanded_location xloc;
13172 if (debug_info_level <= DINFO_LEVEL_TERSE)
13173 return;
13175 gcc_assert (decl);
13177 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
13178 We need decl DIE for reference and scope die. First, get DIE for the decl
13179 itself. */
13181 /* Get the scope die for decl context. Use comp_unit_die for global module
13182 or decl. If die is not found for non globals, force new die. */
13183 if (!context)
13184 scope_die = comp_unit_die;
13185 else if (TYPE_P (context))
13186 scope_die = force_type_die (context);
13187 else
13188 scope_die = force_decl_die (context);
13190 /* For TYPE_DECL or CONST_DECL, lookup TREE_TYPE. */
13191 if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
13192 at_import_die = force_type_die (TREE_TYPE (decl));
13193 else
13195 at_import_die = lookup_decl_die (decl);
13196 if (!at_import_die)
13198 /* If we're trying to avoid duplicate debug info, we may not have
13199 emitted the member decl for this field. Emit it now. */
13200 if (TREE_CODE (decl) == FIELD_DECL)
13202 tree type = DECL_CONTEXT (decl);
13203 dw_die_ref type_context_die;
13205 if (TYPE_CONTEXT (type))
13206 if (TYPE_P (TYPE_CONTEXT (type)))
13207 type_context_die = force_type_die (TYPE_CONTEXT (type));
13208 else
13209 type_context_die = force_decl_die (TYPE_CONTEXT (type));
13210 else
13211 type_context_die = comp_unit_die;
13212 gen_type_die_for_member (type, decl, type_context_die);
13214 at_import_die = force_decl_die (decl);
13218 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
13219 if (TREE_CODE (decl) == NAMESPACE_DECL)
13220 imported_die = new_die (DW_TAG_imported_module, scope_die, context);
13221 else
13222 imported_die = new_die (DW_TAG_imported_declaration, scope_die, context);
13224 xloc = expand_location (input_location);
13225 file_index = lookup_filename (xloc.file);
13226 add_AT_unsigned (imported_die, DW_AT_decl_file, file_index);
13227 add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
13228 add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
13231 /* Write the debugging output for DECL. */
13233 void
13234 dwarf2out_decl (tree decl)
13236 dw_die_ref context_die = comp_unit_die;
13238 switch (TREE_CODE (decl))
13240 case ERROR_MARK:
13241 return;
13243 case FUNCTION_DECL:
13244 /* What we would really like to do here is to filter out all mere
13245 file-scope declarations of file-scope functions which are never
13246 referenced later within this translation unit (and keep all of ones
13247 that *are* referenced later on) but we aren't clairvoyant, so we have
13248 no idea which functions will be referenced in the future (i.e. later
13249 on within the current translation unit). So here we just ignore all
13250 file-scope function declarations which are not also definitions. If
13251 and when the debugger needs to know something about these functions,
13252 it will have to hunt around and find the DWARF information associated
13253 with the definition of the function.
13255 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
13256 nodes represent definitions and which ones represent mere
13257 declarations. We have to check DECL_INITIAL instead. That's because
13258 the C front-end supports some weird semantics for "extern inline"
13259 function definitions. These can get inlined within the current
13260 translation unit (and thus, we need to generate Dwarf info for their
13261 abstract instances so that the Dwarf info for the concrete inlined
13262 instances can have something to refer to) but the compiler never
13263 generates any out-of-lines instances of such things (despite the fact
13264 that they *are* definitions).
13266 The important point is that the C front-end marks these "extern
13267 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
13268 them anyway. Note that the C++ front-end also plays some similar games
13269 for inline function definitions appearing within include files which
13270 also contain `#pragma interface' pragmas. */
13271 if (DECL_INITIAL (decl) == NULL_TREE)
13272 return;
13274 /* If we're a nested function, initially use a parent of NULL; if we're
13275 a plain function, this will be fixed up in decls_for_scope. If
13276 we're a method, it will be ignored, since we already have a DIE. */
13277 if (decl_function_context (decl)
13278 /* But if we're in terse mode, we don't care about scope. */
13279 && debug_info_level > DINFO_LEVEL_TERSE)
13280 context_die = NULL;
13281 break;
13283 case VAR_DECL:
13284 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
13285 declaration and if the declaration was never even referenced from
13286 within this entire compilation unit. We suppress these DIEs in
13287 order to save space in the .debug section (by eliminating entries
13288 which are probably useless). Note that we must not suppress
13289 block-local extern declarations (whether used or not) because that
13290 would screw-up the debugger's name lookup mechanism and cause it to
13291 miss things which really ought to be in scope at a given point. */
13292 if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
13293 return;
13295 /* For local statics lookup proper context die. */
13296 if (TREE_STATIC (decl) && decl_function_context (decl))
13297 context_die = lookup_decl_die (DECL_CONTEXT (decl));
13299 /* If we are in terse mode, don't generate any DIEs to represent any
13300 variable declarations or definitions. */
13301 if (debug_info_level <= DINFO_LEVEL_TERSE)
13302 return;
13303 break;
13305 case NAMESPACE_DECL:
13306 if (debug_info_level <= DINFO_LEVEL_TERSE)
13307 return;
13308 if (lookup_decl_die (decl) != NULL)
13309 return;
13310 break;
13312 case TYPE_DECL:
13313 /* Don't emit stubs for types unless they are needed by other DIEs. */
13314 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
13315 return;
13317 /* Don't bother trying to generate any DIEs to represent any of the
13318 normal built-in types for the language we are compiling. */
13319 if (DECL_IS_BUILTIN (decl))
13321 /* OK, we need to generate one for `bool' so GDB knows what type
13322 comparisons have. */
13323 if (is_cxx ()
13324 && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE
13325 && ! DECL_IGNORED_P (decl))
13326 modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
13328 return;
13331 /* If we are in terse mode, don't generate any DIEs for types. */
13332 if (debug_info_level <= DINFO_LEVEL_TERSE)
13333 return;
13335 /* If we're a function-scope tag, initially use a parent of NULL;
13336 this will be fixed up in decls_for_scope. */
13337 if (decl_function_context (decl))
13338 context_die = NULL;
13340 break;
13342 default:
13343 return;
13346 gen_decl_die (decl, context_die);
13349 /* Output a marker (i.e. a label) for the beginning of the generated code for
13350 a lexical block. */
13352 static void
13353 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
13354 unsigned int blocknum)
13356 switch_to_section (current_function_section ());
13357 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
13360 /* Output a marker (i.e. a label) for the end of the generated code for a
13361 lexical block. */
13363 static void
13364 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
13366 switch_to_section (current_function_section ());
13367 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
13370 /* Returns nonzero if it is appropriate not to emit any debugging
13371 information for BLOCK, because it doesn't contain any instructions.
13373 Don't allow this for blocks with nested functions or local classes
13374 as we would end up with orphans, and in the presence of scheduling
13375 we may end up calling them anyway. */
13377 static bool
13378 dwarf2out_ignore_block (tree block)
13380 tree decl;
13382 for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
13383 if (TREE_CODE (decl) == FUNCTION_DECL
13384 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
13385 return 0;
13387 return 1;
13390 /* Lookup FILE_NAME (in the list of filenames that we know about here in
13391 dwarf2out.c) and return its "index". The index of each (known) filename is
13392 just a unique number which is associated with only that one filename. We
13393 need such numbers for the sake of generating labels (in the .debug_sfnames
13394 section) and references to those files numbers (in the .debug_srcinfo
13395 and.debug_macinfo sections). If the filename given as an argument is not
13396 found in our current list, add it to the list and assign it the next
13397 available unique index number. In order to speed up searches, we remember
13398 the index of the filename was looked up last. This handles the majority of
13399 all searches. */
13401 static unsigned
13402 lookup_filename (const char *file_name)
13404 size_t i, n;
13405 char *save_file_name;
13407 /* Check to see if the file name that was searched on the previous
13408 call matches this file name. If so, return the index. */
13409 if (file_table_last_lookup_index != 0)
13411 const char *last
13412 = VARRAY_CHAR_PTR (file_table, file_table_last_lookup_index);
13413 if (strcmp (file_name, last) == 0)
13414 return file_table_last_lookup_index;
13417 /* Didn't match the previous lookup, search the table. */
13418 n = VARRAY_ACTIVE_SIZE (file_table);
13419 for (i = 1; i < n; i++)
13420 if (strcmp (file_name, VARRAY_CHAR_PTR (file_table, i)) == 0)
13422 file_table_last_lookup_index = i;
13423 return i;
13426 /* Add the new entry to the end of the filename table. */
13427 file_table_last_lookup_index = n;
13428 save_file_name = (char *) ggc_strdup (file_name);
13429 VARRAY_PUSH_CHAR_PTR (file_table, save_file_name);
13430 VARRAY_PUSH_UINT (file_table_emitted, 0);
13432 /* If the assembler is emitting the file table, and we aren't eliminating
13433 unused debug types, then we must emit .file here. If we are eliminating
13434 unused debug types, then this will be done by the maybe_emit_file call in
13435 prune_unused_types_walk_attribs. */
13437 if (DWARF2_ASM_LINE_DEBUG_INFO && ! flag_eliminate_unused_debug_types)
13438 return maybe_emit_file (i);
13440 return i;
13443 /* If the assembler will construct the file table, then translate the compiler
13444 internal file table number into the assembler file table number, and emit
13445 a .file directive if we haven't already emitted one yet. The file table
13446 numbers are different because we prune debug info for unused variables and
13447 types, which may include filenames. */
13449 static int
13450 maybe_emit_file (int fileno)
13452 if (DWARF2_ASM_LINE_DEBUG_INFO && fileno > 0)
13454 if (!VARRAY_UINT (file_table_emitted, fileno))
13456 VARRAY_UINT (file_table_emitted, fileno) = ++emitcount;
13457 fprintf (asm_out_file, "\t.file %u ",
13458 VARRAY_UINT (file_table_emitted, fileno));
13459 output_quoted_string (asm_out_file,
13460 VARRAY_CHAR_PTR (file_table, fileno));
13461 fputc ('\n', asm_out_file);
13463 return VARRAY_UINT (file_table_emitted, fileno);
13465 else
13466 return fileno;
13469 /* Initialize the compiler internal file table. */
13471 static void
13472 init_file_table (void)
13474 /* Allocate the initial hunk of the file_table. */
13475 VARRAY_CHAR_PTR_INIT (file_table, 64, "file_table");
13476 VARRAY_UINT_INIT (file_table_emitted, 64, "file_table_emitted");
13478 /* Skip the first entry - file numbers begin at 1. */
13479 VARRAY_PUSH_CHAR_PTR (file_table, NULL);
13480 VARRAY_PUSH_UINT (file_table_emitted, 0);
13481 file_table_last_lookup_index = 0;
13484 /* Called by the final INSN scan whenever we see a var location. We
13485 use it to drop labels in the right places, and throw the location in
13486 our lookup table. */
13488 static void
13489 dwarf2out_var_location (rtx loc_note)
13491 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES];
13492 struct var_loc_node *newloc;
13493 rtx prev_insn;
13494 static rtx last_insn;
13495 static const char *last_label;
13496 tree decl;
13498 if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
13499 return;
13500 prev_insn = PREV_INSN (loc_note);
13502 newloc = ggc_alloc_cleared (sizeof (struct var_loc_node));
13503 /* If the insn we processed last time is the previous insn
13504 and it is also a var location note, use the label we emitted
13505 last time. */
13506 if (last_insn != NULL_RTX
13507 && last_insn == prev_insn
13508 && NOTE_P (prev_insn)
13509 && NOTE_LINE_NUMBER (prev_insn) == NOTE_INSN_VAR_LOCATION)
13511 newloc->label = last_label;
13513 else
13515 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
13516 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
13517 loclabel_num++;
13518 newloc->label = ggc_strdup (loclabel);
13520 newloc->var_loc_note = loc_note;
13521 newloc->next = NULL;
13523 if (cfun && in_cold_section_p)
13524 newloc->section_label = cfun->cold_section_label;
13525 else
13526 newloc->section_label = text_section_label;
13528 last_insn = loc_note;
13529 last_label = newloc->label;
13530 decl = NOTE_VAR_LOCATION_DECL (loc_note);
13531 if (DECL_DEBUG_EXPR_IS_FROM (decl) && DECL_DEBUG_EXPR (decl)
13532 && DECL_P (DECL_DEBUG_EXPR (decl)))
13533 decl = DECL_DEBUG_EXPR (decl);
13534 add_var_loc_to_decl (decl, newloc);
13537 /* We need to reset the locations at the beginning of each
13538 function. We can't do this in the end_function hook, because the
13539 declarations that use the locations won't have been output when
13540 that hook is called. Also compute have_multiple_function_sections here. */
13542 static void
13543 dwarf2out_begin_function (tree fun)
13545 htab_empty (decl_loc_table);
13547 if (function_section (fun) != text_section)
13548 have_multiple_function_sections = true;
13551 /* Output a label to mark the beginning of a source code line entry
13552 and record information relating to this source line, in
13553 'line_info_table' for later output of the .debug_line section. */
13555 static void
13556 dwarf2out_source_line (unsigned int line, const char *filename)
13558 if (debug_info_level >= DINFO_LEVEL_NORMAL
13559 && line != 0)
13561 switch_to_section (current_function_section ());
13563 /* If requested, emit something human-readable. */
13564 if (flag_debug_asm)
13565 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
13566 filename, line);
13568 if (DWARF2_ASM_LINE_DEBUG_INFO)
13570 unsigned file_num = lookup_filename (filename);
13572 file_num = maybe_emit_file (file_num);
13574 /* Emit the .loc directive understood by GNU as. */
13575 fprintf (asm_out_file, "\t.loc %d %d 0\n", file_num, line);
13577 /* Indicate that line number info exists. */
13578 line_info_table_in_use++;
13580 else if (function_section (current_function_decl) != text_section)
13582 dw_separate_line_info_ref line_info;
13583 targetm.asm_out.internal_label (asm_out_file, SEPARATE_LINE_CODE_LABEL,
13584 separate_line_info_table_in_use);
13586 /* Expand the line info table if necessary. */
13587 if (separate_line_info_table_in_use
13588 == separate_line_info_table_allocated)
13590 separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
13591 separate_line_info_table
13592 = ggc_realloc (separate_line_info_table,
13593 separate_line_info_table_allocated
13594 * sizeof (dw_separate_line_info_entry));
13595 memset (separate_line_info_table
13596 + separate_line_info_table_in_use,
13598 (LINE_INFO_TABLE_INCREMENT
13599 * sizeof (dw_separate_line_info_entry)));
13602 /* Add the new entry at the end of the line_info_table. */
13603 line_info
13604 = &separate_line_info_table[separate_line_info_table_in_use++];
13605 line_info->dw_file_num = lookup_filename (filename);
13606 line_info->dw_line_num = line;
13607 line_info->function = current_function_funcdef_no;
13609 else
13611 dw_line_info_ref line_info;
13613 targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL,
13614 line_info_table_in_use);
13616 /* Expand the line info table if necessary. */
13617 if (line_info_table_in_use == line_info_table_allocated)
13619 line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
13620 line_info_table
13621 = ggc_realloc (line_info_table,
13622 (line_info_table_allocated
13623 * sizeof (dw_line_info_entry)));
13624 memset (line_info_table + line_info_table_in_use, 0,
13625 LINE_INFO_TABLE_INCREMENT * sizeof (dw_line_info_entry));
13628 /* Add the new entry at the end of the line_info_table. */
13629 line_info = &line_info_table[line_info_table_in_use++];
13630 line_info->dw_file_num = lookup_filename (filename);
13631 line_info->dw_line_num = line;
13636 /* Record the beginning of a new source file. */
13638 static void
13639 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
13641 if (flag_eliminate_dwarf2_dups)
13643 /* Record the beginning of the file for break_out_includes. */
13644 dw_die_ref bincl_die;
13646 bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die, NULL);
13647 add_AT_string (bincl_die, DW_AT_name, filename);
13650 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13652 int fileno;
13654 switch_to_section (debug_macinfo_section);
13655 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
13656 dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
13657 lineno);
13659 fileno = maybe_emit_file (lookup_filename (filename));
13660 dw2_asm_output_data_uleb128 (fileno, "Filename we just started");
13664 /* Record the end of a source file. */
13666 static void
13667 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
13669 if (flag_eliminate_dwarf2_dups)
13670 /* Record the end of the file for break_out_includes. */
13671 new_die (DW_TAG_GNU_EINCL, comp_unit_die, NULL);
13673 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13675 switch_to_section (debug_macinfo_section);
13676 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
13680 /* Called from debug_define in toplev.c. The `buffer' parameter contains
13681 the tail part of the directive line, i.e. the part which is past the
13682 initial whitespace, #, whitespace, directive-name, whitespace part. */
13684 static void
13685 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
13686 const char *buffer ATTRIBUTE_UNUSED)
13688 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13690 switch_to_section (debug_macinfo_section);
13691 dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
13692 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
13693 dw2_asm_output_nstring (buffer, -1, "The macro");
13697 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
13698 the tail part of the directive line, i.e. the part which is past the
13699 initial whitespace, #, whitespace, directive-name, whitespace part. */
13701 static void
13702 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
13703 const char *buffer ATTRIBUTE_UNUSED)
13705 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13707 switch_to_section (debug_macinfo_section);
13708 dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
13709 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
13710 dw2_asm_output_nstring (buffer, -1, "The macro");
13714 /* Set up for Dwarf output at the start of compilation. */
13716 static void
13717 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
13719 init_file_table ();
13721 /* Allocate the decl_die_table. */
13722 decl_die_table = htab_create_ggc (10, decl_die_table_hash,
13723 decl_die_table_eq, NULL);
13725 /* Allocate the decl_loc_table. */
13726 decl_loc_table = htab_create_ggc (10, decl_loc_table_hash,
13727 decl_loc_table_eq, NULL);
13729 /* Allocate the initial hunk of the decl_scope_table. */
13730 decl_scope_table = VEC_alloc (tree, gc, 256);
13732 /* Allocate the initial hunk of the abbrev_die_table. */
13733 abbrev_die_table = ggc_alloc_cleared (ABBREV_DIE_TABLE_INCREMENT
13734 * sizeof (dw_die_ref));
13735 abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
13736 /* Zero-th entry is allocated, but unused. */
13737 abbrev_die_table_in_use = 1;
13739 /* Allocate the initial hunk of the line_info_table. */
13740 line_info_table = ggc_alloc_cleared (LINE_INFO_TABLE_INCREMENT
13741 * sizeof (dw_line_info_entry));
13742 line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
13744 /* Zero-th entry is allocated, but unused. */
13745 line_info_table_in_use = 1;
13747 /* Generate the initial DIE for the .debug section. Note that the (string)
13748 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
13749 will (typically) be a relative pathname and that this pathname should be
13750 taken as being relative to the directory from which the compiler was
13751 invoked when the given (base) source file was compiled. We will fill
13752 in this value in dwarf2out_finish. */
13753 comp_unit_die = gen_compile_unit_die (NULL);
13755 incomplete_types = VEC_alloc (tree, gc, 64);
13757 used_rtx_array = VEC_alloc (rtx, gc, 32);
13759 debug_info_section = get_section (DEBUG_INFO_SECTION,
13760 SECTION_DEBUG, NULL);
13761 debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
13762 SECTION_DEBUG, NULL);
13763 debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
13764 SECTION_DEBUG, NULL);
13765 debug_macinfo_section = get_section (DEBUG_MACINFO_SECTION,
13766 SECTION_DEBUG, NULL);
13767 debug_line_section = get_section (DEBUG_LINE_SECTION,
13768 SECTION_DEBUG, NULL);
13769 debug_loc_section = get_section (DEBUG_LOC_SECTION,
13770 SECTION_DEBUG, NULL);
13771 debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
13772 SECTION_DEBUG, NULL);
13773 debug_str_section = get_section (DEBUG_STR_SECTION,
13774 DEBUG_STR_SECTION_FLAGS, NULL);
13775 debug_ranges_section = get_section (DEBUG_RANGES_SECTION,
13776 SECTION_DEBUG, NULL);
13777 debug_frame_section = get_section (DEBUG_FRAME_SECTION,
13778 SECTION_DEBUG, NULL);
13780 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
13781 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
13782 DEBUG_ABBREV_SECTION_LABEL, 0);
13783 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
13784 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
13785 COLD_TEXT_SECTION_LABEL, 0);
13786 ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
13788 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
13789 DEBUG_INFO_SECTION_LABEL, 0);
13790 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
13791 DEBUG_LINE_SECTION_LABEL, 0);
13792 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
13793 DEBUG_RANGES_SECTION_LABEL, 0);
13794 switch_to_section (debug_abbrev_section);
13795 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
13796 switch_to_section (debug_info_section);
13797 ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
13798 switch_to_section (debug_line_section);
13799 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
13801 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13803 switch_to_section (debug_macinfo_section);
13804 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
13805 DEBUG_MACINFO_SECTION_LABEL, 0);
13806 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
13809 switch_to_section (text_section);
13810 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
13811 if (flag_reorder_blocks_and_partition)
13813 switch_to_section (unlikely_text_section ());
13814 ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
13818 /* A helper function for dwarf2out_finish called through
13819 ht_forall. Emit one queued .debug_str string. */
13821 static int
13822 output_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
13824 struct indirect_string_node *node = (struct indirect_string_node *) *h;
13826 if (node->form == DW_FORM_strp)
13828 switch_to_section (debug_str_section);
13829 ASM_OUTPUT_LABEL (asm_out_file, node->label);
13830 assemble_string (node->str, strlen (node->str) + 1);
13833 return 1;
13838 /* Clear the marks for a die and its children.
13839 Be cool if the mark isn't set. */
13841 static void
13842 prune_unmark_dies (dw_die_ref die)
13844 dw_die_ref c;
13845 die->die_mark = 0;
13846 for (c = die->die_child; c; c = c->die_sib)
13847 prune_unmark_dies (c);
13851 /* Given DIE that we're marking as used, find any other dies
13852 it references as attributes and mark them as used. */
13854 static void
13855 prune_unused_types_walk_attribs (dw_die_ref die)
13857 dw_attr_ref a;
13859 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
13861 if (a->dw_attr_val.val_class == dw_val_class_die_ref)
13863 /* A reference to another DIE.
13864 Make sure that it will get emitted. */
13865 prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
13867 else if (a->dw_attr == DW_AT_decl_file || a->dw_attr == DW_AT_call_file)
13869 /* A reference to a file. Make sure the file name is emitted. */
13870 a->dw_attr_val.v.val_unsigned =
13871 maybe_emit_file (a->dw_attr_val.v.val_unsigned);
13877 /* Mark DIE as being used. If DOKIDS is true, then walk down
13878 to DIE's children. */
13880 static void
13881 prune_unused_types_mark (dw_die_ref die, int dokids)
13883 dw_die_ref c;
13885 if (die->die_mark == 0)
13887 /* We haven't done this node yet. Mark it as used. */
13888 die->die_mark = 1;
13890 /* We also have to mark its parents as used.
13891 (But we don't want to mark our parents' kids due to this.) */
13892 if (die->die_parent)
13893 prune_unused_types_mark (die->die_parent, 0);
13895 /* Mark any referenced nodes. */
13896 prune_unused_types_walk_attribs (die);
13898 /* If this node is a specification,
13899 also mark the definition, if it exists. */
13900 if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
13901 prune_unused_types_mark (die->die_definition, 1);
13904 if (dokids && die->die_mark != 2)
13906 /* We need to walk the children, but haven't done so yet.
13907 Remember that we've walked the kids. */
13908 die->die_mark = 2;
13910 /* Walk them. */
13911 for (c = die->die_child; c; c = c->die_sib)
13913 /* If this is an array type, we need to make sure our
13914 kids get marked, even if they're types. */
13915 if (die->die_tag == DW_TAG_array_type)
13916 prune_unused_types_mark (c, 1);
13917 else
13918 prune_unused_types_walk (c);
13924 /* Walk the tree DIE and mark types that we actually use. */
13926 static void
13927 prune_unused_types_walk (dw_die_ref die)
13929 dw_die_ref c;
13931 /* Don't do anything if this node is already marked. */
13932 if (die->die_mark)
13933 return;
13935 switch (die->die_tag) {
13936 case DW_TAG_const_type:
13937 case DW_TAG_packed_type:
13938 case DW_TAG_pointer_type:
13939 case DW_TAG_reference_type:
13940 case DW_TAG_volatile_type:
13941 case DW_TAG_typedef:
13942 case DW_TAG_array_type:
13943 case DW_TAG_structure_type:
13944 case DW_TAG_union_type:
13945 case DW_TAG_class_type:
13946 case DW_TAG_friend:
13947 case DW_TAG_variant_part:
13948 case DW_TAG_enumeration_type:
13949 case DW_TAG_subroutine_type:
13950 case DW_TAG_string_type:
13951 case DW_TAG_set_type:
13952 case DW_TAG_subrange_type:
13953 case DW_TAG_ptr_to_member_type:
13954 case DW_TAG_file_type:
13955 /* It's a type node --- don't mark it. */
13956 return;
13958 default:
13959 /* Mark everything else. */
13960 break;
13963 die->die_mark = 1;
13965 /* Now, mark any dies referenced from here. */
13966 prune_unused_types_walk_attribs (die);
13968 /* Mark children. */
13969 for (c = die->die_child; c; c = c->die_sib)
13970 prune_unused_types_walk (c);
13974 /* Remove from the tree DIE any dies that aren't marked. */
13976 static void
13977 prune_unused_types_prune (dw_die_ref die)
13979 dw_die_ref c, p, n;
13981 gcc_assert (die->die_mark);
13983 p = NULL;
13984 for (c = die->die_child; c; c = n)
13986 n = c->die_sib;
13987 if (c->die_mark)
13989 prune_unused_types_prune (c);
13990 p = c;
13992 else
13994 if (p)
13995 p->die_sib = n;
13996 else
13997 die->die_child = n;
13998 free_die (c);
14004 /* Remove dies representing declarations that we never use. */
14006 static void
14007 prune_unused_types (void)
14009 unsigned int i;
14010 limbo_die_node *node;
14012 /* Clear all the marks. */
14013 prune_unmark_dies (comp_unit_die);
14014 for (node = limbo_die_list; node; node = node->next)
14015 prune_unmark_dies (node->die);
14017 /* Set the mark on nodes that are actually used. */
14018 prune_unused_types_walk (comp_unit_die);
14019 for (node = limbo_die_list; node; node = node->next)
14020 prune_unused_types_walk (node->die);
14022 /* Also set the mark on nodes referenced from the
14023 pubname_table or arange_table. */
14024 for (i = 0; i < pubname_table_in_use; i++)
14025 prune_unused_types_mark (pubname_table[i].die, 1);
14026 for (i = 0; i < arange_table_in_use; i++)
14027 prune_unused_types_mark (arange_table[i], 1);
14029 /* Get rid of nodes that aren't marked. */
14030 prune_unused_types_prune (comp_unit_die);
14031 for (node = limbo_die_list; node; node = node->next)
14032 prune_unused_types_prune (node->die);
14034 /* Leave the marks clear. */
14035 prune_unmark_dies (comp_unit_die);
14036 for (node = limbo_die_list; node; node = node->next)
14037 prune_unmark_dies (node->die);
14040 /* Output stuff that dwarf requires at the end of every file,
14041 and generate the DWARF-2 debugging info. */
14043 static void
14044 dwarf2out_finish (const char *filename)
14046 limbo_die_node *node, *next_node;
14047 dw_die_ref die = 0;
14049 /* Add the name for the main input file now. We delayed this from
14050 dwarf2out_init to avoid complications with PCH. */
14051 add_name_attribute (comp_unit_die, filename);
14052 if (filename[0] != DIR_SEPARATOR)
14053 add_comp_dir_attribute (comp_unit_die);
14054 else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL)
14056 size_t i;
14057 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
14058 if (VARRAY_CHAR_PTR (file_table, i)[0] != DIR_SEPARATOR
14059 /* Don't add cwd for <built-in>. */
14060 && VARRAY_CHAR_PTR (file_table, i)[0] != '<')
14062 add_comp_dir_attribute (comp_unit_die);
14063 break;
14067 /* Traverse the limbo die list, and add parent/child links. The only
14068 dies without parents that should be here are concrete instances of
14069 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
14070 For concrete instances, we can get the parent die from the abstract
14071 instance. */
14072 for (node = limbo_die_list; node; node = next_node)
14074 next_node = node->next;
14075 die = node->die;
14077 if (die->die_parent == NULL)
14079 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
14081 if (origin)
14082 add_child_die (origin->die_parent, die);
14083 else if (die == comp_unit_die)
14085 else if (errorcount > 0 || sorrycount > 0)
14086 /* It's OK to be confused by errors in the input. */
14087 add_child_die (comp_unit_die, die);
14088 else
14090 /* In certain situations, the lexical block containing a
14091 nested function can be optimized away, which results
14092 in the nested function die being orphaned. Likewise
14093 with the return type of that nested function. Force
14094 this to be a child of the containing function.
14096 It may happen that even the containing function got fully
14097 inlined and optimized out. In that case we are lost and
14098 assign the empty child. This should not be big issue as
14099 the function is likely unreachable too. */
14100 tree context = NULL_TREE;
14102 gcc_assert (node->created_for);
14104 if (DECL_P (node->created_for))
14105 context = DECL_CONTEXT (node->created_for);
14106 else if (TYPE_P (node->created_for))
14107 context = TYPE_CONTEXT (node->created_for);
14109 gcc_assert (context && TREE_CODE (context) == FUNCTION_DECL);
14111 origin = lookup_decl_die (context);
14112 if (origin)
14113 add_child_die (origin, die);
14114 else
14115 add_child_die (comp_unit_die, die);
14120 limbo_die_list = NULL;
14122 /* Walk through the list of incomplete types again, trying once more to
14123 emit full debugging info for them. */
14124 retry_incomplete_types ();
14126 /* We need to reverse all the dies before break_out_includes, or
14127 we'll see the end of an include file before the beginning. */
14128 reverse_all_dies (comp_unit_die);
14130 if (flag_eliminate_unused_debug_types)
14131 prune_unused_types ();
14133 /* Generate separate CUs for each of the include files we've seen.
14134 They will go into limbo_die_list. */
14135 if (flag_eliminate_dwarf2_dups)
14136 break_out_includes (comp_unit_die);
14138 /* Traverse the DIE's and add add sibling attributes to those DIE's
14139 that have children. */
14140 add_sibling_attributes (comp_unit_die);
14141 for (node = limbo_die_list; node; node = node->next)
14142 add_sibling_attributes (node->die);
14144 /* Output a terminator label for the .text section. */
14145 switch_to_section (text_section);
14146 targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
14147 if (flag_reorder_blocks_and_partition)
14149 switch_to_section (unlikely_text_section ());
14150 targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
14153 /* Output the source line correspondence table. We must do this
14154 even if there is no line information. Otherwise, on an empty
14155 translation unit, we will generate a present, but empty,
14156 .debug_info section. IRIX 6.5 `nm' will then complain when
14157 examining the file. */
14158 if (! DWARF2_ASM_LINE_DEBUG_INFO)
14160 switch_to_section (debug_line_section);
14161 output_line_info ();
14164 /* We can only use the low/high_pc attributes if all of the code was
14165 in .text. */
14166 if (!have_multiple_function_sections)
14168 add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
14169 add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
14172 /* If it wasn't, we need to give .debug_loc and .debug_ranges an appropriate
14173 "base address". Use zero so that these addresses become absolute. */
14174 else if (have_location_lists || ranges_table_in_use)
14175 add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
14177 /* Output location list section if necessary. */
14178 if (have_location_lists)
14180 /* Output the location lists info. */
14181 switch_to_section (debug_loc_section);
14182 ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
14183 DEBUG_LOC_SECTION_LABEL, 0);
14184 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
14185 output_location_lists (die);
14188 if (debug_info_level >= DINFO_LEVEL_NORMAL)
14189 add_AT_lineptr (comp_unit_die, DW_AT_stmt_list,
14190 debug_line_section_label);
14192 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
14193 add_AT_macptr (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
14195 /* Output all of the compilation units. We put the main one last so that
14196 the offsets are available to output_pubnames. */
14197 for (node = limbo_die_list; node; node = node->next)
14198 output_comp_unit (node->die, 0);
14200 output_comp_unit (comp_unit_die, 0);
14202 /* Output the abbreviation table. */
14203 switch_to_section (debug_abbrev_section);
14204 output_abbrev_section ();
14206 /* Output public names table if necessary. */
14207 if (pubname_table_in_use)
14209 switch_to_section (debug_pubnames_section);
14210 output_pubnames ();
14213 /* Output the address range information. We only put functions in the arange
14214 table, so don't write it out if we don't have any. */
14215 if (fde_table_in_use)
14217 switch_to_section (debug_aranges_section);
14218 output_aranges ();
14221 /* Output ranges section if necessary. */
14222 if (ranges_table_in_use)
14224 switch_to_section (debug_ranges_section);
14225 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
14226 output_ranges ();
14229 /* Have to end the macro section. */
14230 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
14232 switch_to_section (debug_macinfo_section);
14233 dw2_asm_output_data (1, 0, "End compilation unit");
14236 /* If we emitted any DW_FORM_strp form attribute, output the string
14237 table too. */
14238 if (debug_str_hash)
14239 htab_traverse (debug_str_hash, output_indirect_string, NULL);
14241 #else
14243 /* This should never be used, but its address is needed for comparisons. */
14244 const struct gcc_debug_hooks dwarf2_debug_hooks;
14246 #endif /* DWARF2_DEBUGGING_INFO */
14248 #include "gt-dwarf2out.h"