* decl2.c (spew_debug): Remove.
[official-gcc.git] / gcc / dwarf2out.c
blobf78f86043f1f7ac020561b00b88fe2709a451c66
1 /* Output Dwarf2 format symbol table information from GCC.
2 Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005 Free Software Foundation, Inc.
4 Contributed by Gary Funck (gary@intrepid.com).
5 Derived from DWARF 1 implementation of Ron Guilmette (rfg@monkeys.com).
6 Extensively modified by Jason Merrill (jason@cygnus.com).
8 This file is part of GCC.
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 2, or (at your option) any later
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, 59 Temple Place - Suite 330, Boston, MA
23 02111-1307, 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 /* Decide whether we want to emit frame unwind information for the current
94 translation unit. */
96 int
97 dwarf2out_do_frame (void)
99 return (write_symbols == DWARF2_DEBUG
100 || write_symbols == VMS_AND_DWARF2_DEBUG
101 #ifdef DWARF2_FRAME_INFO
102 || DWARF2_FRAME_INFO
103 #endif
104 #ifdef DWARF2_UNWIND_INFO
105 || flag_unwind_tables
106 || (flag_exceptions && ! USING_SJLJ_EXCEPTIONS)
107 #endif
111 /* The size of the target's pointer type. */
112 #ifndef PTR_SIZE
113 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
114 #endif
116 /* Various versions of targetm.eh_frame_section. Note these must appear
117 outside the DWARF2_DEBUGGING_INFO || DWARF2_UNWIND_INFO macro guards. */
119 /* Version of targetm.eh_frame_section for systems with named sections. */
120 void
121 named_section_eh_frame_section (void)
123 #ifdef EH_FRAME_SECTION_NAME
124 int flags;
126 if (EH_TABLES_CAN_BE_READ_ONLY)
128 int fde_encoding;
129 int per_encoding;
130 int lsda_encoding;
132 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
133 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
134 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
135 flags = (! flag_pic
136 || ((fde_encoding & 0x70) != DW_EH_PE_absptr
137 && (fde_encoding & 0x70) != DW_EH_PE_aligned
138 && (per_encoding & 0x70) != DW_EH_PE_absptr
139 && (per_encoding & 0x70) != DW_EH_PE_aligned
140 && (lsda_encoding & 0x70) != DW_EH_PE_absptr
141 && (lsda_encoding & 0x70) != DW_EH_PE_aligned))
142 ? 0 : SECTION_WRITE;
144 else
145 flags = SECTION_WRITE;
146 named_section_flags (EH_FRAME_SECTION_NAME, flags);
147 #endif
150 /* Version of targetm.eh_frame_section for systems using collect2. */
151 void
152 collect2_eh_frame_section (void)
154 tree label = get_file_function_name ('F');
156 data_section ();
157 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
158 targetm.asm_out.globalize_label (asm_out_file, IDENTIFIER_POINTER (label));
159 ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
162 /* Default version of targetm.eh_frame_section. */
163 void
164 default_eh_frame_section (void)
166 #ifdef EH_FRAME_SECTION_NAME
167 named_section_eh_frame_section ();
168 #else
169 collect2_eh_frame_section ();
170 #endif
173 /* Array of RTXes referenced by the debugging information, which therefore
174 must be kept around forever. */
175 static GTY(()) varray_type used_rtx_varray;
177 /* A pointer to the base of a list of incomplete types which might be
178 completed at some later time. incomplete_types_list needs to be a
179 VEC(tree,gc) because we want to tell the garbage collector about
180 it. */
181 static GTY(()) VEC(tree,gc) *incomplete_types;
183 /* A pointer to the base of a table of references to declaration
184 scopes. This table is a display which tracks the nesting
185 of declaration scopes at the current scope and containing
186 scopes. This table is used to find the proper place to
187 define type declaration DIE's. */
188 static GTY(()) VEC(tree,gc) *decl_scope_table;
190 /* How to start an assembler comment. */
191 #ifndef ASM_COMMENT_START
192 #define ASM_COMMENT_START ";#"
193 #endif
195 typedef struct dw_cfi_struct *dw_cfi_ref;
196 typedef struct dw_fde_struct *dw_fde_ref;
197 typedef union dw_cfi_oprnd_struct *dw_cfi_oprnd_ref;
199 /* Call frames are described using a sequence of Call Frame
200 Information instructions. The register number, offset
201 and address fields are provided as possible operands;
202 their use is selected by the opcode field. */
204 enum dw_cfi_oprnd_type {
205 dw_cfi_oprnd_unused,
206 dw_cfi_oprnd_reg_num,
207 dw_cfi_oprnd_offset,
208 dw_cfi_oprnd_addr,
209 dw_cfi_oprnd_loc
212 typedef union dw_cfi_oprnd_struct GTY(())
214 unsigned long GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num;
215 HOST_WIDE_INT GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset;
216 const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr;
217 struct dw_loc_descr_struct * GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc;
219 dw_cfi_oprnd;
221 typedef struct dw_cfi_struct GTY(())
223 dw_cfi_ref dw_cfi_next;
224 enum dwarf_call_frame_info dw_cfi_opc;
225 dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd1_desc (%1.dw_cfi_opc)")))
226 dw_cfi_oprnd1;
227 dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd2_desc (%1.dw_cfi_opc)")))
228 dw_cfi_oprnd2;
230 dw_cfi_node;
232 /* This is how we define the location of the CFA. We use to handle it
233 as REG + OFFSET all the time, but now it can be more complex.
234 It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
235 Instead of passing around REG and OFFSET, we pass a copy
236 of this structure. */
237 typedef struct cfa_loc GTY(())
239 unsigned long reg;
240 HOST_WIDE_INT offset;
241 HOST_WIDE_INT base_offset;
242 int indirect; /* 1 if CFA is accessed via a dereference. */
243 } dw_cfa_location;
245 /* All call frame descriptions (FDE's) in the GCC generated DWARF
246 refer to a single Common Information Entry (CIE), defined at
247 the beginning of the .debug_frame section. This use of a single
248 CIE obviates the need to keep track of multiple CIE's
249 in the DWARF generation routines below. */
251 typedef struct dw_fde_struct GTY(())
253 tree decl;
254 const char *dw_fde_begin;
255 const char *dw_fde_current_label;
256 const char *dw_fde_end;
257 const char *dw_fde_hot_section_label;
258 const char *dw_fde_hot_section_end_label;
259 const char *dw_fde_unlikely_section_label;
260 const char *dw_fde_unlikely_section_end_label;
261 bool dw_fde_switched_sections;
262 dw_cfi_ref dw_fde_cfi;
263 unsigned funcdef_number;
264 unsigned all_throwers_are_sibcalls : 1;
265 unsigned nothrow : 1;
266 unsigned uses_eh_lsda : 1;
268 dw_fde_node;
270 /* Maximum size (in bytes) of an artificially generated label. */
271 #define MAX_ARTIFICIAL_LABEL_BYTES 30
273 /* The size of addresses as they appear in the Dwarf 2 data.
274 Some architectures use word addresses to refer to code locations,
275 but Dwarf 2 info always uses byte addresses. On such machines,
276 Dwarf 2 addresses need to be larger than the architecture's
277 pointers. */
278 #ifndef DWARF2_ADDR_SIZE
279 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
280 #endif
282 /* The size in bytes of a DWARF field indicating an offset or length
283 relative to a debug info section, specified to be 4 bytes in the
284 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
285 as PTR_SIZE. */
287 #ifndef DWARF_OFFSET_SIZE
288 #define DWARF_OFFSET_SIZE 4
289 #endif
291 /* According to the (draft) DWARF 3 specification, the initial length
292 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
293 bytes are 0xffffffff, followed by the length stored in the next 8
294 bytes.
296 However, the SGI/MIPS ABI uses an initial length which is equal to
297 DWARF_OFFSET_SIZE. It is defined (elsewhere) accordingly. */
299 #ifndef DWARF_INITIAL_LENGTH_SIZE
300 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
301 #endif
303 #define DWARF_VERSION 2
305 /* Round SIZE up to the nearest BOUNDARY. */
306 #define DWARF_ROUND(SIZE,BOUNDARY) \
307 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
309 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
310 #ifndef DWARF_CIE_DATA_ALIGNMENT
311 #ifdef STACK_GROWS_DOWNWARD
312 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
313 #else
314 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
315 #endif
316 #endif
318 /* A pointer to the base of a table that contains frame description
319 information for each routine. */
320 static GTY((length ("fde_table_allocated"))) dw_fde_ref fde_table;
322 /* Number of elements currently allocated for fde_table. */
323 static GTY(()) unsigned fde_table_allocated;
325 /* Number of elements in fde_table currently in use. */
326 static GTY(()) unsigned fde_table_in_use;
328 /* Size (in elements) of increments by which we may expand the
329 fde_table. */
330 #define FDE_TABLE_INCREMENT 256
332 /* A list of call frame insns for the CIE. */
333 static GTY(()) dw_cfi_ref cie_cfi_head;
335 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
336 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
337 attribute that accelerates the lookup of the FDE associated
338 with the subprogram. This variable holds the table index of the FDE
339 associated with the current function (body) definition. */
340 static unsigned current_funcdef_fde;
341 #endif
343 struct indirect_string_node GTY(())
345 const char *str;
346 unsigned int refcount;
347 unsigned int form;
348 char *label;
351 static GTY ((param_is (struct indirect_string_node))) htab_t debug_str_hash;
353 static GTY(()) int dw2_string_counter;
354 static GTY(()) unsigned long dwarf2out_cfi_label_num;
356 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
358 /* Forward declarations for functions defined in this file. */
360 static char *stripattributes (const char *);
361 static const char *dwarf_cfi_name (unsigned);
362 static dw_cfi_ref new_cfi (void);
363 static void add_cfi (dw_cfi_ref *, dw_cfi_ref);
364 static void add_fde_cfi (const char *, dw_cfi_ref);
365 static void lookup_cfa_1 (dw_cfi_ref, dw_cfa_location *);
366 static void lookup_cfa (dw_cfa_location *);
367 static void reg_save (const char *, unsigned, unsigned, HOST_WIDE_INT);
368 static void initial_return_save (rtx);
369 static HOST_WIDE_INT stack_adjust_offset (rtx);
370 static void output_cfi (dw_cfi_ref, dw_fde_ref, int);
371 static void output_call_frame_info (int);
372 static void dwarf2out_stack_adjust (rtx, bool);
373 static void flush_queued_reg_saves (void);
374 static bool clobbers_queued_reg_save (rtx);
375 static void dwarf2out_frame_debug_expr (rtx, const char *);
377 /* Support for complex CFA locations. */
378 static void output_cfa_loc (dw_cfi_ref);
379 static void get_cfa_from_loc_descr (dw_cfa_location *,
380 struct dw_loc_descr_struct *);
381 static struct dw_loc_descr_struct *build_cfa_loc
382 (dw_cfa_location *);
383 static void def_cfa_1 (const char *, dw_cfa_location *);
385 /* How to start an assembler comment. */
386 #ifndef ASM_COMMENT_START
387 #define ASM_COMMENT_START ";#"
388 #endif
390 /* Data and reference forms for relocatable data. */
391 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
392 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
394 #ifndef DEBUG_FRAME_SECTION
395 #define DEBUG_FRAME_SECTION ".debug_frame"
396 #endif
398 #ifndef FUNC_BEGIN_LABEL
399 #define FUNC_BEGIN_LABEL "LFB"
400 #endif
402 #ifndef FUNC_END_LABEL
403 #define FUNC_END_LABEL "LFE"
404 #endif
406 #ifndef FRAME_BEGIN_LABEL
407 #define FRAME_BEGIN_LABEL "Lframe"
408 #endif
409 #define CIE_AFTER_SIZE_LABEL "LSCIE"
410 #define CIE_END_LABEL "LECIE"
411 #define FDE_LABEL "LSFDE"
412 #define FDE_AFTER_SIZE_LABEL "LASFDE"
413 #define FDE_END_LABEL "LEFDE"
414 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
415 #define LINE_NUMBER_END_LABEL "LELT"
416 #define LN_PROLOG_AS_LABEL "LASLTP"
417 #define LN_PROLOG_END_LABEL "LELTP"
418 #define DIE_LABEL_PREFIX "DW"
420 /* The DWARF 2 CFA column which tracks the return address. Normally this
421 is the column for PC, or the first column after all of the hard
422 registers. */
423 #ifndef DWARF_FRAME_RETURN_COLUMN
424 #ifdef PC_REGNUM
425 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
426 #else
427 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
428 #endif
429 #endif
431 /* The mapping from gcc register number to DWARF 2 CFA column number. By
432 default, we just provide columns for all registers. */
433 #ifndef DWARF_FRAME_REGNUM
434 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
435 #endif
437 /* The offset from the incoming value of %sp to the top of the stack frame
438 for the current function. */
439 #ifndef INCOMING_FRAME_SP_OFFSET
440 #define INCOMING_FRAME_SP_OFFSET 0
441 #endif
443 /* Hook used by __throw. */
446 expand_builtin_dwarf_sp_column (void)
448 return GEN_INT (DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM));
451 /* Return a pointer to a copy of the section string name S with all
452 attributes stripped off, and an asterisk prepended (for assemble_name). */
454 static inline char *
455 stripattributes (const char *s)
457 char *stripped = xmalloc (strlen (s) + 2);
458 char *p = stripped;
460 *p++ = '*';
462 while (*s && *s != ',')
463 *p++ = *s++;
465 *p = '\0';
466 return stripped;
469 /* Generate code to initialize the register size table. */
471 void
472 expand_builtin_init_dwarf_reg_sizes (tree address)
474 int i;
475 enum machine_mode mode = TYPE_MODE (char_type_node);
476 rtx addr = expand_expr (address, NULL_RTX, VOIDmode, 0);
477 rtx mem = gen_rtx_MEM (BLKmode, addr);
478 bool wrote_return_column = false;
480 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
481 if (DWARF_FRAME_REGNUM (i) < DWARF_FRAME_REGISTERS)
483 HOST_WIDE_INT offset = DWARF_FRAME_REGNUM (i) * GET_MODE_SIZE (mode);
484 enum machine_mode save_mode = reg_raw_mode[i];
485 HOST_WIDE_INT size;
487 if (HARD_REGNO_CALL_PART_CLOBBERED (i, save_mode))
488 save_mode = choose_hard_reg_mode (i, 1, true);
489 if (DWARF_FRAME_REGNUM (i) == DWARF_FRAME_RETURN_COLUMN)
491 if (save_mode == VOIDmode)
492 continue;
493 wrote_return_column = true;
495 size = GET_MODE_SIZE (save_mode);
496 if (offset < 0)
497 continue;
499 emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
502 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
503 gcc_assert (wrote_return_column);
504 i = DWARF_ALT_FRAME_RETURN_COLUMN;
505 wrote_return_column = false;
506 #else
507 i = DWARF_FRAME_RETURN_COLUMN;
508 #endif
510 if (! wrote_return_column)
512 enum machine_mode save_mode = Pmode;
513 HOST_WIDE_INT offset = i * GET_MODE_SIZE (mode);
514 HOST_WIDE_INT size = GET_MODE_SIZE (save_mode);
515 emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
519 /* Convert a DWARF call frame info. operation to its string name */
521 static const char *
522 dwarf_cfi_name (unsigned int cfi_opc)
524 switch (cfi_opc)
526 case DW_CFA_advance_loc:
527 return "DW_CFA_advance_loc";
528 case DW_CFA_offset:
529 return "DW_CFA_offset";
530 case DW_CFA_restore:
531 return "DW_CFA_restore";
532 case DW_CFA_nop:
533 return "DW_CFA_nop";
534 case DW_CFA_set_loc:
535 return "DW_CFA_set_loc";
536 case DW_CFA_advance_loc1:
537 return "DW_CFA_advance_loc1";
538 case DW_CFA_advance_loc2:
539 return "DW_CFA_advance_loc2";
540 case DW_CFA_advance_loc4:
541 return "DW_CFA_advance_loc4";
542 case DW_CFA_offset_extended:
543 return "DW_CFA_offset_extended";
544 case DW_CFA_restore_extended:
545 return "DW_CFA_restore_extended";
546 case DW_CFA_undefined:
547 return "DW_CFA_undefined";
548 case DW_CFA_same_value:
549 return "DW_CFA_same_value";
550 case DW_CFA_register:
551 return "DW_CFA_register";
552 case DW_CFA_remember_state:
553 return "DW_CFA_remember_state";
554 case DW_CFA_restore_state:
555 return "DW_CFA_restore_state";
556 case DW_CFA_def_cfa:
557 return "DW_CFA_def_cfa";
558 case DW_CFA_def_cfa_register:
559 return "DW_CFA_def_cfa_register";
560 case DW_CFA_def_cfa_offset:
561 return "DW_CFA_def_cfa_offset";
563 /* DWARF 3 */
564 case DW_CFA_def_cfa_expression:
565 return "DW_CFA_def_cfa_expression";
566 case DW_CFA_expression:
567 return "DW_CFA_expression";
568 case DW_CFA_offset_extended_sf:
569 return "DW_CFA_offset_extended_sf";
570 case DW_CFA_def_cfa_sf:
571 return "DW_CFA_def_cfa_sf";
572 case DW_CFA_def_cfa_offset_sf:
573 return "DW_CFA_def_cfa_offset_sf";
575 /* SGI/MIPS specific */
576 case DW_CFA_MIPS_advance_loc8:
577 return "DW_CFA_MIPS_advance_loc8";
579 /* GNU extensions */
580 case DW_CFA_GNU_window_save:
581 return "DW_CFA_GNU_window_save";
582 case DW_CFA_GNU_args_size:
583 return "DW_CFA_GNU_args_size";
584 case DW_CFA_GNU_negative_offset_extended:
585 return "DW_CFA_GNU_negative_offset_extended";
587 default:
588 return "DW_CFA_<unknown>";
592 /* Return a pointer to a newly allocated Call Frame Instruction. */
594 static inline dw_cfi_ref
595 new_cfi (void)
597 dw_cfi_ref cfi = ggc_alloc (sizeof (dw_cfi_node));
599 cfi->dw_cfi_next = NULL;
600 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
601 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
603 return cfi;
606 /* Add a Call Frame Instruction to list of instructions. */
608 static inline void
609 add_cfi (dw_cfi_ref *list_head, dw_cfi_ref cfi)
611 dw_cfi_ref *p;
613 /* Find the end of the chain. */
614 for (p = list_head; (*p) != NULL; p = &(*p)->dw_cfi_next)
617 *p = cfi;
620 /* Generate a new label for the CFI info to refer to. */
622 char *
623 dwarf2out_cfi_label (void)
625 static char label[20];
627 ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", dwarf2out_cfi_label_num++);
628 ASM_OUTPUT_LABEL (asm_out_file, label);
629 return label;
632 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
633 or to the CIE if LABEL is NULL. */
635 static void
636 add_fde_cfi (const char *label, dw_cfi_ref cfi)
638 if (label)
640 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
642 if (*label == 0)
643 label = dwarf2out_cfi_label ();
645 if (fde->dw_fde_current_label == NULL
646 || strcmp (label, fde->dw_fde_current_label) != 0)
648 dw_cfi_ref xcfi;
650 fde->dw_fde_current_label = label = xstrdup (label);
652 /* Set the location counter to the new label. */
653 xcfi = new_cfi ();
654 xcfi->dw_cfi_opc = DW_CFA_advance_loc4;
655 xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
656 add_cfi (&fde->dw_fde_cfi, xcfi);
659 add_cfi (&fde->dw_fde_cfi, cfi);
662 else
663 add_cfi (&cie_cfi_head, cfi);
666 /* Subroutine of lookup_cfa. */
668 static inline void
669 lookup_cfa_1 (dw_cfi_ref cfi, dw_cfa_location *loc)
671 switch (cfi->dw_cfi_opc)
673 case DW_CFA_def_cfa_offset:
674 loc->offset = cfi->dw_cfi_oprnd1.dw_cfi_offset;
675 break;
676 case DW_CFA_def_cfa_register:
677 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
678 break;
679 case DW_CFA_def_cfa:
680 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
681 loc->offset = cfi->dw_cfi_oprnd2.dw_cfi_offset;
682 break;
683 case DW_CFA_def_cfa_expression:
684 get_cfa_from_loc_descr (loc, cfi->dw_cfi_oprnd1.dw_cfi_loc);
685 break;
686 default:
687 break;
691 /* Find the previous value for the CFA. */
693 static void
694 lookup_cfa (dw_cfa_location *loc)
696 dw_cfi_ref cfi;
698 loc->reg = (unsigned long) -1;
699 loc->offset = 0;
700 loc->indirect = 0;
701 loc->base_offset = 0;
703 for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
704 lookup_cfa_1 (cfi, loc);
706 if (fde_table_in_use)
708 dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
709 for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
710 lookup_cfa_1 (cfi, loc);
714 /* The current rule for calculating the DWARF2 canonical frame address. */
715 static dw_cfa_location cfa;
717 /* The register used for saving registers to the stack, and its offset
718 from the CFA. */
719 static dw_cfa_location cfa_store;
721 /* The running total of the size of arguments pushed onto the stack. */
722 static HOST_WIDE_INT args_size;
724 /* The last args_size we actually output. */
725 static HOST_WIDE_INT old_args_size;
727 /* Entry point to update the canonical frame address (CFA).
728 LABEL is passed to add_fde_cfi. The value of CFA is now to be
729 calculated from REG+OFFSET. */
731 void
732 dwarf2out_def_cfa (const char *label, unsigned int reg, HOST_WIDE_INT offset)
734 dw_cfa_location loc;
735 loc.indirect = 0;
736 loc.base_offset = 0;
737 loc.reg = reg;
738 loc.offset = offset;
739 def_cfa_1 (label, &loc);
742 /* This routine does the actual work. The CFA is now calculated from
743 the dw_cfa_location structure. */
745 static void
746 def_cfa_1 (const char *label, dw_cfa_location *loc_p)
748 dw_cfi_ref cfi;
749 dw_cfa_location old_cfa, loc;
751 cfa = *loc_p;
752 loc = *loc_p;
754 if (cfa_store.reg == loc.reg && loc.indirect == 0)
755 cfa_store.offset = loc.offset;
757 loc.reg = DWARF_FRAME_REGNUM (loc.reg);
758 lookup_cfa (&old_cfa);
760 /* If nothing changed, no need to issue any call frame instructions. */
761 if (loc.reg == old_cfa.reg && loc.offset == old_cfa.offset
762 && loc.indirect == old_cfa.indirect
763 && (loc.indirect == 0 || loc.base_offset == old_cfa.base_offset))
764 return;
766 cfi = new_cfi ();
768 if (loc.reg == old_cfa.reg && !loc.indirect)
770 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction,
771 indicating the CFA register did not change but the offset
772 did. */
773 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
774 cfi->dw_cfi_oprnd1.dw_cfi_offset = loc.offset;
777 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
778 else if (loc.offset == old_cfa.offset && old_cfa.reg != (unsigned long) -1
779 && !loc.indirect)
781 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
782 indicating the CFA register has changed to <register> but the
783 offset has not changed. */
784 cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
785 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
787 #endif
789 else if (loc.indirect == 0)
791 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
792 indicating the CFA register has changed to <register> with
793 the specified offset. */
794 cfi->dw_cfi_opc = DW_CFA_def_cfa;
795 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
796 cfi->dw_cfi_oprnd2.dw_cfi_offset = loc.offset;
798 else
800 /* Construct a DW_CFA_def_cfa_expression instruction to
801 calculate the CFA using a full location expression since no
802 register-offset pair is available. */
803 struct dw_loc_descr_struct *loc_list;
805 cfi->dw_cfi_opc = DW_CFA_def_cfa_expression;
806 loc_list = build_cfa_loc (&loc);
807 cfi->dw_cfi_oprnd1.dw_cfi_loc = loc_list;
810 add_fde_cfi (label, cfi);
813 /* Add the CFI for saving a register. REG is the CFA column number.
814 LABEL is passed to add_fde_cfi.
815 If SREG is -1, the register is saved at OFFSET from the CFA;
816 otherwise it is saved in SREG. */
818 static void
819 reg_save (const char *label, unsigned int reg, unsigned int sreg, HOST_WIDE_INT offset)
821 dw_cfi_ref cfi = new_cfi ();
823 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
825 if (sreg == INVALID_REGNUM)
827 if (reg & ~0x3f)
828 /* The register number won't fit in 6 bits, so we have to use
829 the long form. */
830 cfi->dw_cfi_opc = DW_CFA_offset_extended;
831 else
832 cfi->dw_cfi_opc = DW_CFA_offset;
834 #ifdef ENABLE_CHECKING
836 /* If we get an offset that is not a multiple of
837 DWARF_CIE_DATA_ALIGNMENT, there is either a bug in the
838 definition of DWARF_CIE_DATA_ALIGNMENT, or a bug in the machine
839 description. */
840 HOST_WIDE_INT check_offset = offset / DWARF_CIE_DATA_ALIGNMENT;
842 gcc_assert (check_offset * DWARF_CIE_DATA_ALIGNMENT == offset);
844 #endif
845 offset /= DWARF_CIE_DATA_ALIGNMENT;
846 if (offset < 0)
847 cfi->dw_cfi_opc = DW_CFA_offset_extended_sf;
849 cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
851 else if (sreg == reg)
852 cfi->dw_cfi_opc = DW_CFA_same_value;
853 else
855 cfi->dw_cfi_opc = DW_CFA_register;
856 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
859 add_fde_cfi (label, cfi);
862 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
863 This CFI tells the unwinder that it needs to restore the window registers
864 from the previous frame's window save area.
866 ??? Perhaps we should note in the CIE where windows are saved (instead of
867 assuming 0(cfa)) and what registers are in the window. */
869 void
870 dwarf2out_window_save (const char *label)
872 dw_cfi_ref cfi = new_cfi ();
874 cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
875 add_fde_cfi (label, cfi);
878 /* Add a CFI to update the running total of the size of arguments
879 pushed onto the stack. */
881 void
882 dwarf2out_args_size (const char *label, HOST_WIDE_INT size)
884 dw_cfi_ref cfi;
886 if (size == old_args_size)
887 return;
889 old_args_size = size;
891 cfi = new_cfi ();
892 cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
893 cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
894 add_fde_cfi (label, cfi);
897 /* Entry point for saving a register to the stack. REG is the GCC register
898 number. LABEL and OFFSET are passed to reg_save. */
900 void
901 dwarf2out_reg_save (const char *label, unsigned int reg, HOST_WIDE_INT offset)
903 reg_save (label, DWARF_FRAME_REGNUM (reg), INVALID_REGNUM, offset);
906 /* Entry point for saving the return address in the stack.
907 LABEL and OFFSET are passed to reg_save. */
909 void
910 dwarf2out_return_save (const char *label, HOST_WIDE_INT offset)
912 reg_save (label, DWARF_FRAME_RETURN_COLUMN, INVALID_REGNUM, offset);
915 /* Entry point for saving the return address in a register.
916 LABEL and SREG are passed to reg_save. */
918 void
919 dwarf2out_return_reg (const char *label, unsigned int sreg)
921 reg_save (label, DWARF_FRAME_RETURN_COLUMN, DWARF_FRAME_REGNUM (sreg), 0);
924 /* Record the initial position of the return address. RTL is
925 INCOMING_RETURN_ADDR_RTX. */
927 static void
928 initial_return_save (rtx rtl)
930 unsigned int reg = INVALID_REGNUM;
931 HOST_WIDE_INT offset = 0;
933 switch (GET_CODE (rtl))
935 case REG:
936 /* RA is in a register. */
937 reg = DWARF_FRAME_REGNUM (REGNO (rtl));
938 break;
940 case MEM:
941 /* RA is on the stack. */
942 rtl = XEXP (rtl, 0);
943 switch (GET_CODE (rtl))
945 case REG:
946 gcc_assert (REGNO (rtl) == STACK_POINTER_REGNUM);
947 offset = 0;
948 break;
950 case PLUS:
951 gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
952 offset = INTVAL (XEXP (rtl, 1));
953 break;
955 case MINUS:
956 gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
957 offset = -INTVAL (XEXP (rtl, 1));
958 break;
960 default:
961 gcc_unreachable ();
964 break;
966 case PLUS:
967 /* The return address is at some offset from any value we can
968 actually load. For instance, on the SPARC it is in %i7+8. Just
969 ignore the offset for now; it doesn't matter for unwinding frames. */
970 gcc_assert (GET_CODE (XEXP (rtl, 1)) == CONST_INT);
971 initial_return_save (XEXP (rtl, 0));
972 return;
974 default:
975 gcc_unreachable ();
978 if (reg != DWARF_FRAME_RETURN_COLUMN)
979 reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa.offset);
982 /* Given a SET, calculate the amount of stack adjustment it
983 contains. */
985 static HOST_WIDE_INT
986 stack_adjust_offset (rtx pattern)
988 rtx src = SET_SRC (pattern);
989 rtx dest = SET_DEST (pattern);
990 HOST_WIDE_INT offset = 0;
991 enum rtx_code code;
993 if (dest == stack_pointer_rtx)
995 /* (set (reg sp) (plus (reg sp) (const_int))) */
996 code = GET_CODE (src);
997 if (! (code == PLUS || code == MINUS)
998 || XEXP (src, 0) != stack_pointer_rtx
999 || GET_CODE (XEXP (src, 1)) != CONST_INT)
1000 return 0;
1002 offset = INTVAL (XEXP (src, 1));
1003 if (code == PLUS)
1004 offset = -offset;
1006 else if (MEM_P (dest))
1008 /* (set (mem (pre_dec (reg sp))) (foo)) */
1009 src = XEXP (dest, 0);
1010 code = GET_CODE (src);
1012 switch (code)
1014 case PRE_MODIFY:
1015 case POST_MODIFY:
1016 if (XEXP (src, 0) == stack_pointer_rtx)
1018 rtx val = XEXP (XEXP (src, 1), 1);
1019 /* We handle only adjustments by constant amount. */
1020 gcc_assert (GET_CODE (XEXP (src, 1)) == PLUS
1021 && GET_CODE (val) == CONST_INT);
1022 offset = -INTVAL (val);
1023 break;
1025 return 0;
1027 case PRE_DEC:
1028 case POST_DEC:
1029 if (XEXP (src, 0) == stack_pointer_rtx)
1031 offset = GET_MODE_SIZE (GET_MODE (dest));
1032 break;
1034 return 0;
1036 case PRE_INC:
1037 case POST_INC:
1038 if (XEXP (src, 0) == stack_pointer_rtx)
1040 offset = -GET_MODE_SIZE (GET_MODE (dest));
1041 break;
1043 return 0;
1045 default:
1046 return 0;
1049 else
1050 return 0;
1052 return offset;
1055 /* Check INSN to see if it looks like a push or a stack adjustment, and
1056 make a note of it if it does. EH uses this information to find out how
1057 much extra space it needs to pop off the stack. */
1059 static void
1060 dwarf2out_stack_adjust (rtx insn, bool after_p)
1062 HOST_WIDE_INT offset;
1063 const char *label;
1064 int i;
1066 /* Don't handle epilogues at all. Certainly it would be wrong to do so
1067 with this function. Proper support would require all frame-related
1068 insns to be marked, and to be able to handle saving state around
1069 epilogues textually in the middle of the function. */
1070 if (prologue_epilogue_contains (insn) || sibcall_epilogue_contains (insn))
1071 return;
1073 /* If only calls can throw, and we have a frame pointer,
1074 save up adjustments until we see the CALL_INSN. */
1075 if (!flag_asynchronous_unwind_tables && cfa.reg != STACK_POINTER_REGNUM)
1077 if (CALL_P (insn) && !after_p)
1079 /* Extract the size of the args from the CALL rtx itself. */
1080 insn = PATTERN (insn);
1081 if (GET_CODE (insn) == PARALLEL)
1082 insn = XVECEXP (insn, 0, 0);
1083 if (GET_CODE (insn) == SET)
1084 insn = SET_SRC (insn);
1085 gcc_assert (GET_CODE (insn) == CALL);
1086 dwarf2out_args_size ("", INTVAL (XEXP (insn, 1)));
1088 return;
1091 if (CALL_P (insn) && !after_p)
1093 if (!flag_asynchronous_unwind_tables)
1094 dwarf2out_args_size ("", args_size);
1095 return;
1097 else if (BARRIER_P (insn))
1099 /* When we see a BARRIER, we know to reset args_size to 0. Usually
1100 the compiler will have already emitted a stack adjustment, but
1101 doesn't bother for calls to noreturn functions. */
1102 #ifdef STACK_GROWS_DOWNWARD
1103 offset = -args_size;
1104 #else
1105 offset = args_size;
1106 #endif
1108 else if (GET_CODE (PATTERN (insn)) == SET)
1109 offset = stack_adjust_offset (PATTERN (insn));
1110 else if (GET_CODE (PATTERN (insn)) == PARALLEL
1111 || GET_CODE (PATTERN (insn)) == SEQUENCE)
1113 /* There may be stack adjustments inside compound insns. Search
1114 for them. */
1115 for (offset = 0, i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1116 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1117 offset += stack_adjust_offset (XVECEXP (PATTERN (insn), 0, i));
1119 else
1120 return;
1122 if (offset == 0)
1123 return;
1125 if (cfa.reg == STACK_POINTER_REGNUM)
1126 cfa.offset += offset;
1128 #ifndef STACK_GROWS_DOWNWARD
1129 offset = -offset;
1130 #endif
1132 args_size += offset;
1133 if (args_size < 0)
1134 args_size = 0;
1136 label = dwarf2out_cfi_label ();
1137 def_cfa_1 (label, &cfa);
1138 if (flag_asynchronous_unwind_tables)
1139 dwarf2out_args_size (label, args_size);
1142 #endif
1144 /* We delay emitting a register save until either (a) we reach the end
1145 of the prologue or (b) the register is clobbered. This clusters
1146 register saves so that there are fewer pc advances. */
1148 struct queued_reg_save GTY(())
1150 struct queued_reg_save *next;
1151 rtx reg;
1152 HOST_WIDE_INT cfa_offset;
1153 rtx saved_reg;
1156 static GTY(()) struct queued_reg_save *queued_reg_saves;
1158 /* The caller's ORIG_REG is saved in SAVED_IN_REG. */
1159 struct reg_saved_in_data GTY(()) {
1160 rtx orig_reg;
1161 rtx saved_in_reg;
1164 /* A list of registers saved in other registers.
1165 The list intentionally has a small maximum capacity of 4; if your
1166 port needs more than that, you might consider implementing a
1167 more efficient data structure. */
1168 static GTY(()) struct reg_saved_in_data regs_saved_in_regs[4];
1169 static GTY(()) size_t num_regs_saved_in_regs;
1171 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1172 static const char *last_reg_save_label;
1174 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1175 SREG, or if SREG is NULL then it is saved at OFFSET to the CFA. */
1177 static void
1178 queue_reg_save (const char *label, rtx reg, rtx sreg, HOST_WIDE_INT offset)
1180 struct queued_reg_save *q;
1182 /* Duplicates waste space, but it's also necessary to remove them
1183 for correctness, since the queue gets output in reverse
1184 order. */
1185 for (q = queued_reg_saves; q != NULL; q = q->next)
1186 if (REGNO (q->reg) == REGNO (reg))
1187 break;
1189 if (q == NULL)
1191 q = ggc_alloc (sizeof (*q));
1192 q->next = queued_reg_saves;
1193 queued_reg_saves = q;
1196 q->reg = reg;
1197 q->cfa_offset = offset;
1198 q->saved_reg = sreg;
1200 last_reg_save_label = label;
1203 /* Output all the entries in QUEUED_REG_SAVES. */
1205 static void
1206 flush_queued_reg_saves (void)
1208 struct queued_reg_save *q;
1210 for (q = queued_reg_saves; q; q = q->next)
1212 size_t i;
1213 unsigned int reg, sreg;
1215 for (i = 0; i < num_regs_saved_in_regs; i++)
1216 if (REGNO (regs_saved_in_regs[i].orig_reg) == REGNO (q->reg))
1217 break;
1218 if (q->saved_reg && i == num_regs_saved_in_regs)
1220 gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1221 num_regs_saved_in_regs++;
1223 if (i != num_regs_saved_in_regs)
1225 regs_saved_in_regs[i].orig_reg = q->reg;
1226 regs_saved_in_regs[i].saved_in_reg = q->saved_reg;
1229 reg = DWARF_FRAME_REGNUM (REGNO (q->reg));
1230 if (q->saved_reg)
1231 sreg = DWARF_FRAME_REGNUM (REGNO (q->saved_reg));
1232 else
1233 sreg = INVALID_REGNUM;
1234 reg_save (last_reg_save_label, reg, sreg, q->cfa_offset);
1237 queued_reg_saves = NULL;
1238 last_reg_save_label = NULL;
1241 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1242 location for? Or, does it clobber a register which we've previously
1243 said that some other register is saved in, and for which we now
1244 have a new location for? */
1246 static bool
1247 clobbers_queued_reg_save (rtx insn)
1249 struct queued_reg_save *q;
1251 for (q = queued_reg_saves; q; q = q->next)
1253 size_t i;
1254 if (modified_in_p (q->reg, insn))
1255 return true;
1256 for (i = 0; i < num_regs_saved_in_regs; i++)
1257 if (REGNO (q->reg) == REGNO (regs_saved_in_regs[i].orig_reg)
1258 && modified_in_p (regs_saved_in_regs[i].saved_in_reg, insn))
1259 return true;
1262 return false;
1265 /* What register, if any, is currently saved in REG? */
1267 static rtx
1268 reg_saved_in (rtx reg)
1270 unsigned int regn = REGNO (reg);
1271 size_t i;
1272 struct queued_reg_save *q;
1274 for (q = queued_reg_saves; q; q = q->next)
1275 if (q->saved_reg && regn == REGNO (q->saved_reg))
1276 return q->reg;
1278 for (i = 0; i < num_regs_saved_in_regs; i++)
1279 if (regs_saved_in_regs[i].saved_in_reg
1280 && regn == REGNO (regs_saved_in_regs[i].saved_in_reg))
1281 return regs_saved_in_regs[i].orig_reg;
1283 return NULL_RTX;
1287 /* A temporary register holding an integral value used in adjusting SP
1288 or setting up the store_reg. The "offset" field holds the integer
1289 value, not an offset. */
1290 static dw_cfa_location cfa_temp;
1292 /* Record call frame debugging information for an expression EXPR,
1293 which either sets SP or FP (adjusting how we calculate the frame
1294 address) or saves a register to the stack or another register.
1295 LABEL indicates the address of EXPR.
1297 This function encodes a state machine mapping rtxes to actions on
1298 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1299 users need not read the source code.
1301 The High-Level Picture
1303 Changes in the register we use to calculate the CFA: Currently we
1304 assume that if you copy the CFA register into another register, we
1305 should take the other one as the new CFA register; this seems to
1306 work pretty well. If it's wrong for some target, it's simple
1307 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1309 Changes in the register we use for saving registers to the stack:
1310 This is usually SP, but not always. Again, we deduce that if you
1311 copy SP into another register (and SP is not the CFA register),
1312 then the new register is the one we will be using for register
1313 saves. This also seems to work.
1315 Register saves: There's not much guesswork about this one; if
1316 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1317 register save, and the register used to calculate the destination
1318 had better be the one we think we're using for this purpose.
1319 It's also assumed that a copy from a call-saved register to another
1320 register is saving that register if RTX_FRAME_RELATED_P is set on
1321 that instruction. If the copy is from a call-saved register to
1322 the *same* register, that means that the register is now the same
1323 value as in the caller.
1325 Except: If the register being saved is the CFA register, and the
1326 offset is nonzero, we are saving the CFA, so we assume we have to
1327 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
1328 the intent is to save the value of SP from the previous frame.
1330 In addition, if a register has previously been saved to a different
1331 register,
1333 Invariants / Summaries of Rules
1335 cfa current rule for calculating the CFA. It usually
1336 consists of a register and an offset.
1337 cfa_store register used by prologue code to save things to the stack
1338 cfa_store.offset is the offset from the value of
1339 cfa_store.reg to the actual CFA
1340 cfa_temp register holding an integral value. cfa_temp.offset
1341 stores the value, which will be used to adjust the
1342 stack pointer. cfa_temp is also used like cfa_store,
1343 to track stores to the stack via fp or a temp reg.
1345 Rules 1- 4: Setting a register's value to cfa.reg or an expression
1346 with cfa.reg as the first operand changes the cfa.reg and its
1347 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
1348 cfa_temp.offset.
1350 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
1351 expression yielding a constant. This sets cfa_temp.reg
1352 and cfa_temp.offset.
1354 Rule 5: Create a new register cfa_store used to save items to the
1355 stack.
1357 Rules 10-14: Save a register to the stack. Define offset as the
1358 difference of the original location and cfa_store's
1359 location (or cfa_temp's location if cfa_temp is used).
1361 The Rules
1363 "{a,b}" indicates a choice of a xor b.
1364 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1366 Rule 1:
1367 (set <reg1> <reg2>:cfa.reg)
1368 effects: cfa.reg = <reg1>
1369 cfa.offset unchanged
1370 cfa_temp.reg = <reg1>
1371 cfa_temp.offset = cfa.offset
1373 Rule 2:
1374 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
1375 {<const_int>,<reg>:cfa_temp.reg}))
1376 effects: cfa.reg = sp if fp used
1377 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1378 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1379 if cfa_store.reg==sp
1381 Rule 3:
1382 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1383 effects: cfa.reg = fp
1384 cfa_offset += +/- <const_int>
1386 Rule 4:
1387 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1388 constraints: <reg1> != fp
1389 <reg1> != sp
1390 effects: cfa.reg = <reg1>
1391 cfa_temp.reg = <reg1>
1392 cfa_temp.offset = cfa.offset
1394 Rule 5:
1395 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1396 constraints: <reg1> != fp
1397 <reg1> != sp
1398 effects: cfa_store.reg = <reg1>
1399 cfa_store.offset = cfa.offset - cfa_temp.offset
1401 Rule 6:
1402 (set <reg> <const_int>)
1403 effects: cfa_temp.reg = <reg>
1404 cfa_temp.offset = <const_int>
1406 Rule 7:
1407 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1408 effects: cfa_temp.reg = <reg1>
1409 cfa_temp.offset |= <const_int>
1411 Rule 8:
1412 (set <reg> (high <exp>))
1413 effects: none
1415 Rule 9:
1416 (set <reg> (lo_sum <exp> <const_int>))
1417 effects: cfa_temp.reg = <reg>
1418 cfa_temp.offset = <const_int>
1420 Rule 10:
1421 (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1422 effects: cfa_store.offset -= <const_int>
1423 cfa.offset = cfa_store.offset if cfa.reg == sp
1424 cfa.reg = sp
1425 cfa.base_offset = -cfa_store.offset
1427 Rule 11:
1428 (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
1429 effects: cfa_store.offset += -/+ mode_size(mem)
1430 cfa.offset = cfa_store.offset if cfa.reg == sp
1431 cfa.reg = sp
1432 cfa.base_offset = -cfa_store.offset
1434 Rule 12:
1435 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
1437 <reg2>)
1438 effects: cfa.reg = <reg1>
1439 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1441 Rule 13:
1442 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1443 effects: cfa.reg = <reg1>
1444 cfa.base_offset = -{cfa_store,cfa_temp}.offset
1446 Rule 14:
1447 (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
1448 effects: cfa.reg = <reg1>
1449 cfa.base_offset = -cfa_temp.offset
1450 cfa_temp.offset -= mode_size(mem)
1452   Rule 15:
1453   (set <reg> {unspec, unspec_volatile})
1454   effects: target-dependent */
1456 static void
1457 dwarf2out_frame_debug_expr (rtx expr, const char *label)
1459 rtx src, dest;
1460 HOST_WIDE_INT offset;
1462 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1463 the PARALLEL independently. The first element is always processed if
1464 it is a SET. This is for backward compatibility. Other elements
1465 are processed only if they are SETs and the RTX_FRAME_RELATED_P
1466 flag is set in them. */
1467 if (GET_CODE (expr) == PARALLEL || GET_CODE (expr) == SEQUENCE)
1469 int par_index;
1470 int limit = XVECLEN (expr, 0);
1472 for (par_index = 0; par_index < limit; par_index++)
1473 if (GET_CODE (XVECEXP (expr, 0, par_index)) == SET
1474 && (RTX_FRAME_RELATED_P (XVECEXP (expr, 0, par_index))
1475 || par_index == 0))
1476 dwarf2out_frame_debug_expr (XVECEXP (expr, 0, par_index), label);
1478 return;
1481 gcc_assert (GET_CODE (expr) == SET);
1483 src = SET_SRC (expr);
1484 dest = SET_DEST (expr);
1486 if (REG_P (src))
1488 rtx rsi = reg_saved_in (src);
1489 if (rsi)
1490 src = rsi;
1493 switch (GET_CODE (dest))
1495 case REG:
1496 switch (GET_CODE (src))
1498 /* Setting FP from SP. */
1499 case REG:
1500 if (cfa.reg == (unsigned) REGNO (src))
1502 /* Rule 1 */
1503 /* Update the CFA rule wrt SP or FP. Make sure src is
1504 relative to the current CFA register.
1506 We used to require that dest be either SP or FP, but the
1507 ARM copies SP to a temporary register, and from there to
1508 FP. So we just rely on the backends to only set
1509 RTX_FRAME_RELATED_P on appropriate insns. */
1510 cfa.reg = REGNO (dest);
1511 cfa_temp.reg = cfa.reg;
1512 cfa_temp.offset = cfa.offset;
1514 else
1516 /* Saving a register in a register. */
1517 gcc_assert (call_used_regs [REGNO (dest)]
1518 && (!fixed_regs [REGNO (dest)]
1519 /* For the SPARC and its register window. */
1520 || DWARF_FRAME_REGNUM (REGNO (src))
1521 == DWARF_FRAME_RETURN_COLUMN));
1522 queue_reg_save (label, src, dest, 0);
1524 break;
1526 case PLUS:
1527 case MINUS:
1528 case LO_SUM:
1529 if (dest == stack_pointer_rtx)
1531 /* Rule 2 */
1532 /* Adjusting SP. */
1533 switch (GET_CODE (XEXP (src, 1)))
1535 case CONST_INT:
1536 offset = INTVAL (XEXP (src, 1));
1537 break;
1538 case REG:
1539 gcc_assert ((unsigned) REGNO (XEXP (src, 1))
1540 == cfa_temp.reg);
1541 offset = cfa_temp.offset;
1542 break;
1543 default:
1544 gcc_unreachable ();
1547 if (XEXP (src, 0) == hard_frame_pointer_rtx)
1549 /* Restoring SP from FP in the epilogue. */
1550 gcc_assert (cfa.reg == (unsigned) HARD_FRAME_POINTER_REGNUM);
1551 cfa.reg = STACK_POINTER_REGNUM;
1553 else if (GET_CODE (src) == LO_SUM)
1554 /* Assume we've set the source reg of the LO_SUM from sp. */
1556 else
1557 gcc_assert (XEXP (src, 0) == stack_pointer_rtx);
1559 if (GET_CODE (src) != MINUS)
1560 offset = -offset;
1561 if (cfa.reg == STACK_POINTER_REGNUM)
1562 cfa.offset += offset;
1563 if (cfa_store.reg == STACK_POINTER_REGNUM)
1564 cfa_store.offset += offset;
1566 else if (dest == hard_frame_pointer_rtx)
1568 /* Rule 3 */
1569 /* Either setting the FP from an offset of the SP,
1570 or adjusting the FP */
1571 gcc_assert (frame_pointer_needed);
1573 gcc_assert (REG_P (XEXP (src, 0))
1574 && (unsigned) REGNO (XEXP (src, 0)) == cfa.reg
1575 && GET_CODE (XEXP (src, 1)) == CONST_INT);
1576 offset = INTVAL (XEXP (src, 1));
1577 if (GET_CODE (src) != MINUS)
1578 offset = -offset;
1579 cfa.offset += offset;
1580 cfa.reg = HARD_FRAME_POINTER_REGNUM;
1582 else
1584 gcc_assert (GET_CODE (src) != MINUS);
1586 /* Rule 4 */
1587 if (REG_P (XEXP (src, 0))
1588 && REGNO (XEXP (src, 0)) == cfa.reg
1589 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1591 /* Setting a temporary CFA register that will be copied
1592 into the FP later on. */
1593 offset = - INTVAL (XEXP (src, 1));
1594 cfa.offset += offset;
1595 cfa.reg = REGNO (dest);
1596 /* Or used to save regs to the stack. */
1597 cfa_temp.reg = cfa.reg;
1598 cfa_temp.offset = cfa.offset;
1601 /* Rule 5 */
1602 else if (REG_P (XEXP (src, 0))
1603 && REGNO (XEXP (src, 0)) == cfa_temp.reg
1604 && XEXP (src, 1) == stack_pointer_rtx)
1606 /* Setting a scratch register that we will use instead
1607 of SP for saving registers to the stack. */
1608 gcc_assert (cfa.reg == STACK_POINTER_REGNUM);
1609 cfa_store.reg = REGNO (dest);
1610 cfa_store.offset = cfa.offset - cfa_temp.offset;
1613 /* Rule 9 */
1614 else if (GET_CODE (src) == LO_SUM
1615 && GET_CODE (XEXP (src, 1)) == CONST_INT)
1617 cfa_temp.reg = REGNO (dest);
1618 cfa_temp.offset = INTVAL (XEXP (src, 1));
1620 else
1621 gcc_unreachable ();
1623 break;
1625 /* Rule 6 */
1626 case CONST_INT:
1627 cfa_temp.reg = REGNO (dest);
1628 cfa_temp.offset = INTVAL (src);
1629 break;
1631 /* Rule 7 */
1632 case IOR:
1633 gcc_assert (REG_P (XEXP (src, 0))
1634 && (unsigned) REGNO (XEXP (src, 0)) == cfa_temp.reg
1635 && GET_CODE (XEXP (src, 1)) == CONST_INT);
1637 if ((unsigned) REGNO (dest) != cfa_temp.reg)
1638 cfa_temp.reg = REGNO (dest);
1639 cfa_temp.offset |= INTVAL (XEXP (src, 1));
1640 break;
1642 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
1643 which will fill in all of the bits. */
1644 /* Rule 8 */
1645 case HIGH:
1646 break;
1648 /* Rule 15 */
1649 case UNSPEC:
1650 case UNSPEC_VOLATILE:
1651 gcc_assert (targetm.dwarf_handle_frame_unspec);
1652 targetm.dwarf_handle_frame_unspec (label, expr, XINT (src, 1));
1653 break;
1655 default:
1656 gcc_unreachable ();
1659 def_cfa_1 (label, &cfa);
1660 break;
1662 case MEM:
1663 gcc_assert (REG_P (src));
1665 /* Saving a register to the stack. Make sure dest is relative to the
1666 CFA register. */
1667 switch (GET_CODE (XEXP (dest, 0)))
1669 /* Rule 10 */
1670 /* With a push. */
1671 case PRE_MODIFY:
1672 /* We can't handle variable size modifications. */
1673 gcc_assert (GET_CODE (XEXP (XEXP (XEXP (dest, 0), 1), 1))
1674 == CONST_INT);
1675 offset = -INTVAL (XEXP (XEXP (XEXP (dest, 0), 1), 1));
1677 gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
1678 && cfa_store.reg == STACK_POINTER_REGNUM);
1680 cfa_store.offset += offset;
1681 if (cfa.reg == STACK_POINTER_REGNUM)
1682 cfa.offset = cfa_store.offset;
1684 offset = -cfa_store.offset;
1685 break;
1687 /* Rule 11 */
1688 case PRE_INC:
1689 case PRE_DEC:
1690 offset = GET_MODE_SIZE (GET_MODE (dest));
1691 if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
1692 offset = -offset;
1694 gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
1695 && cfa_store.reg == STACK_POINTER_REGNUM);
1697 cfa_store.offset += offset;
1698 if (cfa.reg == STACK_POINTER_REGNUM)
1699 cfa.offset = cfa_store.offset;
1701 offset = -cfa_store.offset;
1702 break;
1704 /* Rule 12 */
1705 /* With an offset. */
1706 case PLUS:
1707 case MINUS:
1708 case LO_SUM:
1710 int regno;
1712 gcc_assert (GET_CODE (XEXP (XEXP (dest, 0), 1)) == CONST_INT);
1713 offset = INTVAL (XEXP (XEXP (dest, 0), 1));
1714 if (GET_CODE (XEXP (dest, 0)) == MINUS)
1715 offset = -offset;
1717 regno = REGNO (XEXP (XEXP (dest, 0), 0));
1719 if (cfa_store.reg == (unsigned) regno)
1720 offset -= cfa_store.offset;
1721 else
1723 gcc_assert (cfa_temp.reg == (unsigned) regno);
1724 offset -= cfa_temp.offset;
1727 break;
1729 /* Rule 13 */
1730 /* Without an offset. */
1731 case REG:
1733 int regno = REGNO (XEXP (dest, 0));
1735 if (cfa_store.reg == (unsigned) regno)
1736 offset = -cfa_store.offset;
1737 else
1739 gcc_assert (cfa_temp.reg == (unsigned) regno);
1740 offset = -cfa_temp.offset;
1743 break;
1745 /* Rule 14 */
1746 case POST_INC:
1747 gcc_assert (cfa_temp.reg
1748 == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)));
1749 offset = -cfa_temp.offset;
1750 cfa_temp.offset -= GET_MODE_SIZE (GET_MODE (dest));
1751 break;
1753 default:
1754 gcc_unreachable ();
1757 if (REGNO (src) != STACK_POINTER_REGNUM
1758 && REGNO (src) != HARD_FRAME_POINTER_REGNUM
1759 && (unsigned) REGNO (src) == cfa.reg)
1761 /* We're storing the current CFA reg into the stack. */
1763 if (cfa.offset == 0)
1765 /* If the source register is exactly the CFA, assume
1766 we're saving SP like any other register; this happens
1767 on the ARM. */
1768 def_cfa_1 (label, &cfa);
1769 queue_reg_save (label, stack_pointer_rtx, NULL_RTX, offset);
1770 break;
1772 else
1774 /* Otherwise, we'll need to look in the stack to
1775 calculate the CFA. */
1776 rtx x = XEXP (dest, 0);
1778 if (!REG_P (x))
1779 x = XEXP (x, 0);
1780 gcc_assert (REG_P (x));
1782 cfa.reg = REGNO (x);
1783 cfa.base_offset = offset;
1784 cfa.indirect = 1;
1785 def_cfa_1 (label, &cfa);
1786 break;
1790 def_cfa_1 (label, &cfa);
1791 queue_reg_save (label, src, NULL_RTX, offset);
1792 break;
1794 default:
1795 gcc_unreachable ();
1799 /* Record call frame debugging information for INSN, which either
1800 sets SP or FP (adjusting how we calculate the frame address) or saves a
1801 register to the stack. If INSN is NULL_RTX, initialize our state.
1803 If AFTER_P is false, we're being called before the insn is emitted,
1804 otherwise after. Call instructions get invoked twice. */
1806 void
1807 dwarf2out_frame_debug (rtx insn, bool after_p)
1809 const char *label;
1810 rtx src;
1812 if (insn == NULL_RTX)
1814 size_t i;
1816 /* Flush any queued register saves. */
1817 flush_queued_reg_saves ();
1819 /* Set up state for generating call frame debug info. */
1820 lookup_cfa (&cfa);
1821 gcc_assert (cfa.reg
1822 == (unsigned long)DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM));
1824 cfa.reg = STACK_POINTER_REGNUM;
1825 cfa_store = cfa;
1826 cfa_temp.reg = -1;
1827 cfa_temp.offset = 0;
1829 for (i = 0; i < num_regs_saved_in_regs; i++)
1831 regs_saved_in_regs[i].orig_reg = NULL_RTX;
1832 regs_saved_in_regs[i].saved_in_reg = NULL_RTX;
1834 num_regs_saved_in_regs = 0;
1835 return;
1838 if (!NONJUMP_INSN_P (insn) || clobbers_queued_reg_save (insn))
1839 flush_queued_reg_saves ();
1841 if (! RTX_FRAME_RELATED_P (insn))
1843 if (!ACCUMULATE_OUTGOING_ARGS)
1844 dwarf2out_stack_adjust (insn, after_p);
1845 return;
1848 label = dwarf2out_cfi_label ();
1849 src = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1850 if (src)
1851 insn = XEXP (src, 0);
1852 else
1853 insn = PATTERN (insn);
1855 dwarf2out_frame_debug_expr (insn, label);
1858 #endif
1860 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
1861 static enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
1862 (enum dwarf_call_frame_info cfi);
1864 static enum dw_cfi_oprnd_type
1865 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi)
1867 switch (cfi)
1869 case DW_CFA_nop:
1870 case DW_CFA_GNU_window_save:
1871 return dw_cfi_oprnd_unused;
1873 case DW_CFA_set_loc:
1874 case DW_CFA_advance_loc1:
1875 case DW_CFA_advance_loc2:
1876 case DW_CFA_advance_loc4:
1877 case DW_CFA_MIPS_advance_loc8:
1878 return dw_cfi_oprnd_addr;
1880 case DW_CFA_offset:
1881 case DW_CFA_offset_extended:
1882 case DW_CFA_def_cfa:
1883 case DW_CFA_offset_extended_sf:
1884 case DW_CFA_def_cfa_sf:
1885 case DW_CFA_restore_extended:
1886 case DW_CFA_undefined:
1887 case DW_CFA_same_value:
1888 case DW_CFA_def_cfa_register:
1889 case DW_CFA_register:
1890 return dw_cfi_oprnd_reg_num;
1892 case DW_CFA_def_cfa_offset:
1893 case DW_CFA_GNU_args_size:
1894 case DW_CFA_def_cfa_offset_sf:
1895 return dw_cfi_oprnd_offset;
1897 case DW_CFA_def_cfa_expression:
1898 case DW_CFA_expression:
1899 return dw_cfi_oprnd_loc;
1901 default:
1902 gcc_unreachable ();
1906 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
1907 static enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
1908 (enum dwarf_call_frame_info cfi);
1910 static enum dw_cfi_oprnd_type
1911 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi)
1913 switch (cfi)
1915 case DW_CFA_def_cfa:
1916 case DW_CFA_def_cfa_sf:
1917 case DW_CFA_offset:
1918 case DW_CFA_offset_extended_sf:
1919 case DW_CFA_offset_extended:
1920 return dw_cfi_oprnd_offset;
1922 case DW_CFA_register:
1923 return dw_cfi_oprnd_reg_num;
1925 default:
1926 return dw_cfi_oprnd_unused;
1930 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1932 /* Map register numbers held in the call frame info that gcc has
1933 collected using DWARF_FRAME_REGNUM to those that should be output in
1934 .debug_frame and .eh_frame. */
1935 #ifndef DWARF2_FRAME_REG_OUT
1936 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
1937 #endif
1939 /* Output a Call Frame Information opcode and its operand(s). */
1941 static void
1942 output_cfi (dw_cfi_ref cfi, dw_fde_ref fde, int for_eh)
1944 unsigned long r;
1945 if (cfi->dw_cfi_opc == DW_CFA_advance_loc)
1946 dw2_asm_output_data (1, (cfi->dw_cfi_opc
1947 | (cfi->dw_cfi_oprnd1.dw_cfi_offset & 0x3f)),
1948 "DW_CFA_advance_loc " HOST_WIDE_INT_PRINT_HEX,
1949 cfi->dw_cfi_oprnd1.dw_cfi_offset);
1950 else if (cfi->dw_cfi_opc == DW_CFA_offset)
1952 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
1953 dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
1954 "DW_CFA_offset, column 0x%lx", r);
1955 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
1957 else if (cfi->dw_cfi_opc == DW_CFA_restore)
1959 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
1960 dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
1961 "DW_CFA_restore, column 0x%lx", r);
1963 else
1965 dw2_asm_output_data (1, cfi->dw_cfi_opc,
1966 "%s", dwarf_cfi_name (cfi->dw_cfi_opc));
1968 switch (cfi->dw_cfi_opc)
1970 case DW_CFA_set_loc:
1971 if (for_eh)
1972 dw2_asm_output_encoded_addr_rtx (
1973 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
1974 gen_rtx_SYMBOL_REF (Pmode, cfi->dw_cfi_oprnd1.dw_cfi_addr),
1975 NULL);
1976 else
1977 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
1978 cfi->dw_cfi_oprnd1.dw_cfi_addr, NULL);
1979 break;
1981 case DW_CFA_advance_loc1:
1982 dw2_asm_output_delta (1, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1983 fde->dw_fde_current_label, NULL);
1984 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1985 break;
1987 case DW_CFA_advance_loc2:
1988 dw2_asm_output_delta (2, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1989 fde->dw_fde_current_label, NULL);
1990 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1991 break;
1993 case DW_CFA_advance_loc4:
1994 dw2_asm_output_delta (4, cfi->dw_cfi_oprnd1.dw_cfi_addr,
1995 fde->dw_fde_current_label, NULL);
1996 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
1997 break;
1999 case DW_CFA_MIPS_advance_loc8:
2000 dw2_asm_output_delta (8, cfi->dw_cfi_oprnd1.dw_cfi_addr,
2001 fde->dw_fde_current_label, NULL);
2002 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
2003 break;
2005 case DW_CFA_offset_extended:
2006 case DW_CFA_def_cfa:
2007 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2008 dw2_asm_output_data_uleb128 (r, NULL);
2009 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
2010 break;
2012 case DW_CFA_offset_extended_sf:
2013 case DW_CFA_def_cfa_sf:
2014 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2015 dw2_asm_output_data_uleb128 (r, NULL);
2016 dw2_asm_output_data_sleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
2017 break;
2019 case DW_CFA_restore_extended:
2020 case DW_CFA_undefined:
2021 case DW_CFA_same_value:
2022 case DW_CFA_def_cfa_register:
2023 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2024 dw2_asm_output_data_uleb128 (r, NULL);
2025 break;
2027 case DW_CFA_register:
2028 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2029 dw2_asm_output_data_uleb128 (r, NULL);
2030 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, for_eh);
2031 dw2_asm_output_data_uleb128 (r, NULL);
2032 break;
2034 case DW_CFA_def_cfa_offset:
2035 case DW_CFA_GNU_args_size:
2036 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
2037 break;
2039 case DW_CFA_def_cfa_offset_sf:
2040 dw2_asm_output_data_sleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
2041 break;
2043 case DW_CFA_GNU_window_save:
2044 break;
2046 case DW_CFA_def_cfa_expression:
2047 case DW_CFA_expression:
2048 output_cfa_loc (cfi);
2049 break;
2051 case DW_CFA_GNU_negative_offset_extended:
2052 /* Obsoleted by DW_CFA_offset_extended_sf. */
2053 gcc_unreachable ();
2055 default:
2056 break;
2061 /* Output the call frame information used to record information
2062 that relates to calculating the frame pointer, and records the
2063 location of saved registers. */
2065 static void
2066 output_call_frame_info (int for_eh)
2068 unsigned int i;
2069 dw_fde_ref fde;
2070 dw_cfi_ref cfi;
2071 char l1[20], l2[20], section_start_label[20];
2072 bool any_lsda_needed = false;
2073 char augmentation[6];
2074 int augmentation_size;
2075 int fde_encoding = DW_EH_PE_absptr;
2076 int per_encoding = DW_EH_PE_absptr;
2077 int lsda_encoding = DW_EH_PE_absptr;
2079 /* Don't emit a CIE if there won't be any FDEs. */
2080 if (fde_table_in_use == 0)
2081 return;
2083 /* If we make FDEs linkonce, we may have to emit an empty label for
2084 an FDE that wouldn't otherwise be emitted. We want to avoid
2085 having an FDE kept around when the function it refers to is
2086 discarded. Example where this matters: a primary function
2087 template in C++ requires EH information, but an explicit
2088 specialization doesn't. */
2089 if (TARGET_USES_WEAK_UNWIND_INFO
2090 && ! flag_asynchronous_unwind_tables
2091 && for_eh)
2092 for (i = 0; i < fde_table_in_use; i++)
2093 if ((fde_table[i].nothrow || fde_table[i].all_throwers_are_sibcalls)
2094 && !fde_table[i].uses_eh_lsda
2095 && ! DECL_WEAK (fde_table[i].decl))
2096 targetm.asm_out.unwind_label (asm_out_file, fde_table[i].decl,
2097 for_eh, /* empty */ 1);
2099 /* If we don't have any functions we'll want to unwind out of, don't
2100 emit any EH unwind information. Note that if exceptions aren't
2101 enabled, we won't have collected nothrow information, and if we
2102 asked for asynchronous tables, we always want this info. */
2103 if (for_eh)
2105 bool any_eh_needed = !flag_exceptions || flag_asynchronous_unwind_tables;
2107 for (i = 0; i < fde_table_in_use; i++)
2108 if (fde_table[i].uses_eh_lsda)
2109 any_eh_needed = any_lsda_needed = true;
2110 else if (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde_table[i].decl))
2111 any_eh_needed = true;
2112 else if (! fde_table[i].nothrow
2113 && ! fde_table[i].all_throwers_are_sibcalls)
2114 any_eh_needed = true;
2116 if (! any_eh_needed)
2117 return;
2120 /* We're going to be generating comments, so turn on app. */
2121 if (flag_debug_asm)
2122 app_enable ();
2124 if (for_eh)
2125 targetm.asm_out.eh_frame_section ();
2126 else
2127 named_section_flags (DEBUG_FRAME_SECTION, SECTION_DEBUG);
2129 ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
2130 ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
2132 /* Output the CIE. */
2133 ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
2134 ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
2135 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
2136 "Length of Common Information Entry");
2137 ASM_OUTPUT_LABEL (asm_out_file, l1);
2139 /* Now that the CIE pointer is PC-relative for EH,
2140 use 0 to identify the CIE. */
2141 dw2_asm_output_data ((for_eh ? 4 : DWARF_OFFSET_SIZE),
2142 (for_eh ? 0 : DW_CIE_ID),
2143 "CIE Identifier Tag");
2145 dw2_asm_output_data (1, DW_CIE_VERSION, "CIE Version");
2147 augmentation[0] = 0;
2148 augmentation_size = 0;
2149 if (for_eh)
2151 char *p;
2153 /* Augmentation:
2154 z Indicates that a uleb128 is present to size the
2155 augmentation section.
2156 L Indicates the encoding (and thus presence) of
2157 an LSDA pointer in the FDE augmentation.
2158 R Indicates a non-default pointer encoding for
2159 FDE code pointers.
2160 P Indicates the presence of an encoding + language
2161 personality routine in the CIE augmentation. */
2163 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
2164 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
2165 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
2167 p = augmentation + 1;
2168 if (eh_personality_libfunc)
2170 *p++ = 'P';
2171 augmentation_size += 1 + size_of_encoded_value (per_encoding);
2173 if (any_lsda_needed)
2175 *p++ = 'L';
2176 augmentation_size += 1;
2178 if (fde_encoding != DW_EH_PE_absptr)
2180 *p++ = 'R';
2181 augmentation_size += 1;
2183 if (p > augmentation + 1)
2185 augmentation[0] = 'z';
2186 *p = '\0';
2189 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
2190 if (eh_personality_libfunc && per_encoding == DW_EH_PE_aligned)
2192 int offset = ( 4 /* Length */
2193 + 4 /* CIE Id */
2194 + 1 /* CIE version */
2195 + strlen (augmentation) + 1 /* Augmentation */
2196 + size_of_uleb128 (1) /* Code alignment */
2197 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
2198 + 1 /* RA column */
2199 + 1 /* Augmentation size */
2200 + 1 /* Personality encoding */ );
2201 int pad = -offset & (PTR_SIZE - 1);
2203 augmentation_size += pad;
2205 /* Augmentations should be small, so there's scarce need to
2206 iterate for a solution. Die if we exceed one uleb128 byte. */
2207 gcc_assert (size_of_uleb128 (augmentation_size) == 1);
2211 dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
2212 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
2213 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
2214 "CIE Data Alignment Factor");
2216 if (DW_CIE_VERSION == 1)
2217 dw2_asm_output_data (1, DWARF_FRAME_RETURN_COLUMN, "CIE RA Column");
2218 else
2219 dw2_asm_output_data_uleb128 (DWARF_FRAME_RETURN_COLUMN, "CIE RA Column");
2221 if (augmentation[0])
2223 dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
2224 if (eh_personality_libfunc)
2226 dw2_asm_output_data (1, per_encoding, "Personality (%s)",
2227 eh_data_format_name (per_encoding));
2228 dw2_asm_output_encoded_addr_rtx (per_encoding,
2229 eh_personality_libfunc, NULL);
2232 if (any_lsda_needed)
2233 dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
2234 eh_data_format_name (lsda_encoding));
2236 if (fde_encoding != DW_EH_PE_absptr)
2237 dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
2238 eh_data_format_name (fde_encoding));
2241 for (cfi = cie_cfi_head; cfi != NULL; cfi = cfi->dw_cfi_next)
2242 output_cfi (cfi, NULL, for_eh);
2244 /* Pad the CIE out to an address sized boundary. */
2245 ASM_OUTPUT_ALIGN (asm_out_file,
2246 floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
2247 ASM_OUTPUT_LABEL (asm_out_file, l2);
2249 /* Loop through all of the FDE's. */
2250 for (i = 0; i < fde_table_in_use; i++)
2252 fde = &fde_table[i];
2254 /* Don't emit EH unwind info for leaf functions that don't need it. */
2255 if (for_eh && !flag_asynchronous_unwind_tables && flag_exceptions
2256 && (fde->nothrow || fde->all_throwers_are_sibcalls)
2257 && ! (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde_table[i].decl))
2258 && !fde->uses_eh_lsda)
2259 continue;
2261 targetm.asm_out.unwind_label (asm_out_file, fde->decl, for_eh, /* empty */ 0);
2262 targetm.asm_out.internal_label (asm_out_file, FDE_LABEL, for_eh + i * 2);
2263 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + i * 2);
2264 ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + i * 2);
2265 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
2266 "FDE Length");
2267 ASM_OUTPUT_LABEL (asm_out_file, l1);
2269 if (for_eh)
2270 dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
2271 else
2272 dw2_asm_output_offset (DWARF_OFFSET_SIZE, section_start_label,
2273 "FDE CIE offset");
2275 if (for_eh)
2277 rtx sym_ref = gen_rtx_SYMBOL_REF (Pmode, fde->dw_fde_begin);
2278 SYMBOL_REF_FLAGS (sym_ref) |= SYMBOL_FLAG_LOCAL;
2279 dw2_asm_output_encoded_addr_rtx (fde_encoding,
2280 sym_ref,
2281 "FDE initial location");
2282 if (fde->dw_fde_switched_sections)
2284 rtx sym_ref2 = gen_rtx_SYMBOL_REF (Pmode,
2285 fde->dw_fde_unlikely_section_label);
2286 rtx sym_ref3= gen_rtx_SYMBOL_REF (Pmode,
2287 fde->dw_fde_hot_section_label);
2288 SYMBOL_REF_FLAGS (sym_ref2) |= SYMBOL_FLAG_LOCAL;
2289 SYMBOL_REF_FLAGS (sym_ref3) |= SYMBOL_FLAG_LOCAL;
2290 dw2_asm_output_encoded_addr_rtx (fde_encoding, sym_ref3,
2291 "FDE initial location");
2292 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
2293 fde->dw_fde_hot_section_end_label,
2294 fde->dw_fde_hot_section_label,
2295 "FDE address range");
2296 dw2_asm_output_encoded_addr_rtx (fde_encoding, sym_ref2,
2297 "FDE initial location");
2298 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
2299 fde->dw_fde_unlikely_section_end_label,
2300 fde->dw_fde_unlikely_section_label,
2301 "FDE address range");
2303 else
2304 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
2305 fde->dw_fde_end, fde->dw_fde_begin,
2306 "FDE address range");
2308 else
2310 dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_begin,
2311 "FDE initial location");
2312 if (fde->dw_fde_switched_sections)
2314 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
2315 fde->dw_fde_hot_section_label,
2316 "FDE initial location");
2317 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
2318 fde->dw_fde_hot_section_end_label,
2319 fde->dw_fde_hot_section_label,
2320 "FDE address range");
2321 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
2322 fde->dw_fde_unlikely_section_label,
2323 "FDE initial location");
2324 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
2325 fde->dw_fde_unlikely_section_end_label,
2326 fde->dw_fde_unlikely_section_label,
2327 "FDE address range");
2329 else
2330 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
2331 fde->dw_fde_end, fde->dw_fde_begin,
2332 "FDE address range");
2335 if (augmentation[0])
2337 if (any_lsda_needed)
2339 int size = size_of_encoded_value (lsda_encoding);
2341 if (lsda_encoding == DW_EH_PE_aligned)
2343 int offset = ( 4 /* Length */
2344 + 4 /* CIE offset */
2345 + 2 * size_of_encoded_value (fde_encoding)
2346 + 1 /* Augmentation size */ );
2347 int pad = -offset & (PTR_SIZE - 1);
2349 size += pad;
2350 gcc_assert (size_of_uleb128 (size) == 1);
2353 dw2_asm_output_data_uleb128 (size, "Augmentation size");
2355 if (fde->uses_eh_lsda)
2357 ASM_GENERATE_INTERNAL_LABEL (l1, "LLSDA",
2358 fde->funcdef_number);
2359 dw2_asm_output_encoded_addr_rtx (
2360 lsda_encoding, gen_rtx_SYMBOL_REF (Pmode, l1),
2361 "Language Specific Data Area");
2363 else
2365 if (lsda_encoding == DW_EH_PE_aligned)
2366 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
2367 dw2_asm_output_data
2368 (size_of_encoded_value (lsda_encoding), 0,
2369 "Language Specific Data Area (none)");
2372 else
2373 dw2_asm_output_data_uleb128 (0, "Augmentation size");
2376 /* Loop through the Call Frame Instructions associated with
2377 this FDE. */
2378 fde->dw_fde_current_label = fde->dw_fde_begin;
2379 for (cfi = fde->dw_fde_cfi; cfi != NULL; cfi = cfi->dw_cfi_next)
2380 output_cfi (cfi, fde, for_eh);
2382 /* Pad the FDE out to an address sized boundary. */
2383 ASM_OUTPUT_ALIGN (asm_out_file,
2384 floor_log2 ((for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE)));
2385 ASM_OUTPUT_LABEL (asm_out_file, l2);
2388 if (for_eh && targetm.terminate_dw2_eh_frame_info)
2389 dw2_asm_output_data (4, 0, "End of Table");
2390 #ifdef MIPS_DEBUGGING_INFO
2391 /* Work around Irix 6 assembler bug whereby labels at the end of a section
2392 get a value of 0. Putting .align 0 after the label fixes it. */
2393 ASM_OUTPUT_ALIGN (asm_out_file, 0);
2394 #endif
2396 /* Turn off app to make assembly quicker. */
2397 if (flag_debug_asm)
2398 app_disable ();
2401 /* Output a marker (i.e. a label) for the beginning of a function, before
2402 the prologue. */
2404 void
2405 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED,
2406 const char *file ATTRIBUTE_UNUSED)
2408 char label[MAX_ARTIFICIAL_LABEL_BYTES];
2409 char * dup_label;
2410 dw_fde_ref fde;
2412 current_function_func_begin_label = NULL;
2414 #ifdef TARGET_UNWIND_INFO
2415 /* ??? current_function_func_begin_label is also used by except.c
2416 for call-site information. We must emit this label if it might
2417 be used. */
2418 if ((! flag_exceptions || USING_SJLJ_EXCEPTIONS)
2419 && ! dwarf2out_do_frame ())
2420 return;
2421 #else
2422 if (! dwarf2out_do_frame ())
2423 return;
2424 #endif
2426 function_section (current_function_decl);
2427 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
2428 current_function_funcdef_no);
2429 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
2430 current_function_funcdef_no);
2431 dup_label = xstrdup (label);
2432 current_function_func_begin_label = dup_label;
2434 #ifdef TARGET_UNWIND_INFO
2435 /* We can elide the fde allocation if we're not emitting debug info. */
2436 if (! dwarf2out_do_frame ())
2437 return;
2438 #endif
2440 /* Expand the fde table if necessary. */
2441 if (fde_table_in_use == fde_table_allocated)
2443 fde_table_allocated += FDE_TABLE_INCREMENT;
2444 fde_table = ggc_realloc (fde_table,
2445 fde_table_allocated * sizeof (dw_fde_node));
2446 memset (fde_table + fde_table_in_use, 0,
2447 FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
2450 /* Record the FDE associated with this function. */
2451 current_funcdef_fde = fde_table_in_use;
2453 /* Add the new FDE at the end of the fde_table. */
2454 fde = &fde_table[fde_table_in_use++];
2455 fde->decl = current_function_decl;
2456 fde->dw_fde_begin = dup_label;
2457 fde->dw_fde_current_label = NULL;
2458 fde->dw_fde_hot_section_label = NULL;
2459 fde->dw_fde_hot_section_end_label = NULL;
2460 fde->dw_fde_unlikely_section_label = NULL;
2461 fde->dw_fde_unlikely_section_end_label = NULL;
2462 fde->dw_fde_switched_sections = false;
2463 fde->dw_fde_end = NULL;
2464 fde->dw_fde_cfi = NULL;
2465 fde->funcdef_number = current_function_funcdef_no;
2466 fde->nothrow = TREE_NOTHROW (current_function_decl);
2467 fde->uses_eh_lsda = cfun->uses_eh_lsda;
2468 fde->all_throwers_are_sibcalls = cfun->all_throwers_are_sibcalls;
2470 args_size = old_args_size = 0;
2472 /* We only want to output line number information for the genuine dwarf2
2473 prologue case, not the eh frame case. */
2474 #ifdef DWARF2_DEBUGGING_INFO
2475 if (file)
2476 dwarf2out_source_line (line, file);
2477 #endif
2480 /* Output a marker (i.e. a label) for the absolute end of the generated code
2481 for a function definition. This gets called *after* the epilogue code has
2482 been generated. */
2484 void
2485 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
2486 const char *file ATTRIBUTE_UNUSED)
2488 dw_fde_ref fde;
2489 char label[MAX_ARTIFICIAL_LABEL_BYTES];
2491 /* Output a label to mark the endpoint of the code generated for this
2492 function. */
2493 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
2494 current_function_funcdef_no);
2495 ASM_OUTPUT_LABEL (asm_out_file, label);
2496 fde = &fde_table[fde_table_in_use - 1];
2497 fde->dw_fde_end = xstrdup (label);
2500 void
2501 dwarf2out_frame_init (void)
2503 /* Allocate the initial hunk of the fde_table. */
2504 fde_table = ggc_alloc_cleared (FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
2505 fde_table_allocated = FDE_TABLE_INCREMENT;
2506 fde_table_in_use = 0;
2508 /* Generate the CFA instructions common to all FDE's. Do it now for the
2509 sake of lookup_cfa. */
2511 #ifdef DWARF2_UNWIND_INFO
2512 /* On entry, the Canonical Frame Address is at SP. */
2513 dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
2514 initial_return_save (INCOMING_RETURN_ADDR_RTX);
2515 #endif
2518 void
2519 dwarf2out_frame_finish (void)
2521 /* Output call frame information. */
2522 if (write_symbols == DWARF2_DEBUG
2523 || write_symbols == VMS_AND_DWARF2_DEBUG
2524 #ifdef DWARF2_FRAME_INFO
2525 || DWARF2_FRAME_INFO
2526 #endif
2528 output_call_frame_info (0);
2530 #ifndef TARGET_UNWIND_INFO
2531 /* Output another copy for the unwinder. */
2532 if (! USING_SJLJ_EXCEPTIONS && (flag_unwind_tables || flag_exceptions))
2533 output_call_frame_info (1);
2534 #endif
2536 #endif
2538 /* And now, the subset of the debugging information support code necessary
2539 for emitting location expressions. */
2541 /* We need some way to distinguish DW_OP_addr with a direct symbol
2542 relocation from DW_OP_addr with a dtp-relative symbol relocation. */
2543 #define INTERNAL_DW_OP_tls_addr (0x100 + DW_OP_addr)
2546 typedef struct dw_val_struct *dw_val_ref;
2547 typedef struct die_struct *dw_die_ref;
2548 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
2549 typedef struct dw_loc_list_struct *dw_loc_list_ref;
2551 /* Each DIE may have a series of attribute/value pairs. Values
2552 can take on several forms. The forms that are used in this
2553 implementation are listed below. */
2555 enum dw_val_class
2557 dw_val_class_addr,
2558 dw_val_class_offset,
2559 dw_val_class_loc,
2560 dw_val_class_loc_list,
2561 dw_val_class_range_list,
2562 dw_val_class_const,
2563 dw_val_class_unsigned_const,
2564 dw_val_class_long_long,
2565 dw_val_class_vec,
2566 dw_val_class_flag,
2567 dw_val_class_die_ref,
2568 dw_val_class_fde_ref,
2569 dw_val_class_lbl_id,
2570 dw_val_class_lbl_offset,
2571 dw_val_class_str
2574 /* Describe a double word constant value. */
2575 /* ??? Every instance of long_long in the code really means CONST_DOUBLE. */
2577 typedef struct dw_long_long_struct GTY(())
2579 unsigned long hi;
2580 unsigned long low;
2582 dw_long_long_const;
2584 /* Describe a floating point constant value, or a vector constant value. */
2586 typedef struct dw_vec_struct GTY(())
2588 unsigned char * GTY((length ("%h.length"))) array;
2589 unsigned length;
2590 unsigned elt_size;
2592 dw_vec_const;
2594 /* The dw_val_node describes an attribute's value, as it is
2595 represented internally. */
2597 typedef struct dw_val_struct GTY(())
2599 enum dw_val_class val_class;
2600 union dw_val_struct_union
2602 rtx GTY ((tag ("dw_val_class_addr"))) val_addr;
2603 unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_offset"))) val_offset;
2604 dw_loc_list_ref GTY ((tag ("dw_val_class_loc_list"))) val_loc_list;
2605 dw_loc_descr_ref GTY ((tag ("dw_val_class_loc"))) val_loc;
2606 HOST_WIDE_INT GTY ((default)) val_int;
2607 unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned;
2608 dw_long_long_const GTY ((tag ("dw_val_class_long_long"))) val_long_long;
2609 dw_vec_const GTY ((tag ("dw_val_class_vec"))) val_vec;
2610 struct dw_val_die_union
2612 dw_die_ref die;
2613 int external;
2614 } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref;
2615 unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index;
2616 struct indirect_string_node * GTY ((tag ("dw_val_class_str"))) val_str;
2617 char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id;
2618 unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag;
2620 GTY ((desc ("%1.val_class"))) v;
2622 dw_val_node;
2624 /* Locations in memory are described using a sequence of stack machine
2625 operations. */
2627 typedef struct dw_loc_descr_struct GTY(())
2629 dw_loc_descr_ref dw_loc_next;
2630 enum dwarf_location_atom dw_loc_opc;
2631 dw_val_node dw_loc_oprnd1;
2632 dw_val_node dw_loc_oprnd2;
2633 int dw_loc_addr;
2635 dw_loc_descr_node;
2637 /* Location lists are ranges + location descriptions for that range,
2638 so you can track variables that are in different places over
2639 their entire life. */
2640 typedef struct dw_loc_list_struct GTY(())
2642 dw_loc_list_ref dw_loc_next;
2643 const char *begin; /* Label for begin address of range */
2644 const char *end; /* Label for end address of range */
2645 char *ll_symbol; /* Label for beginning of location list.
2646 Only on head of list */
2647 const char *section; /* Section this loclist is relative to */
2648 dw_loc_descr_ref expr;
2649 } dw_loc_list_node;
2651 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
2653 static const char *dwarf_stack_op_name (unsigned);
2654 static dw_loc_descr_ref new_loc_descr (enum dwarf_location_atom,
2655 unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
2656 static void add_loc_descr (dw_loc_descr_ref *, dw_loc_descr_ref);
2657 static unsigned long size_of_loc_descr (dw_loc_descr_ref);
2658 static unsigned long size_of_locs (dw_loc_descr_ref);
2659 static void output_loc_operands (dw_loc_descr_ref);
2660 static void output_loc_sequence (dw_loc_descr_ref);
2662 /* Convert a DWARF stack opcode into its string name. */
2664 static const char *
2665 dwarf_stack_op_name (unsigned int op)
2667 switch (op)
2669 case DW_OP_addr:
2670 case INTERNAL_DW_OP_tls_addr:
2671 return "DW_OP_addr";
2672 case DW_OP_deref:
2673 return "DW_OP_deref";
2674 case DW_OP_const1u:
2675 return "DW_OP_const1u";
2676 case DW_OP_const1s:
2677 return "DW_OP_const1s";
2678 case DW_OP_const2u:
2679 return "DW_OP_const2u";
2680 case DW_OP_const2s:
2681 return "DW_OP_const2s";
2682 case DW_OP_const4u:
2683 return "DW_OP_const4u";
2684 case DW_OP_const4s:
2685 return "DW_OP_const4s";
2686 case DW_OP_const8u:
2687 return "DW_OP_const8u";
2688 case DW_OP_const8s:
2689 return "DW_OP_const8s";
2690 case DW_OP_constu:
2691 return "DW_OP_constu";
2692 case DW_OP_consts:
2693 return "DW_OP_consts";
2694 case DW_OP_dup:
2695 return "DW_OP_dup";
2696 case DW_OP_drop:
2697 return "DW_OP_drop";
2698 case DW_OP_over:
2699 return "DW_OP_over";
2700 case DW_OP_pick:
2701 return "DW_OP_pick";
2702 case DW_OP_swap:
2703 return "DW_OP_swap";
2704 case DW_OP_rot:
2705 return "DW_OP_rot";
2706 case DW_OP_xderef:
2707 return "DW_OP_xderef";
2708 case DW_OP_abs:
2709 return "DW_OP_abs";
2710 case DW_OP_and:
2711 return "DW_OP_and";
2712 case DW_OP_div:
2713 return "DW_OP_div";
2714 case DW_OP_minus:
2715 return "DW_OP_minus";
2716 case DW_OP_mod:
2717 return "DW_OP_mod";
2718 case DW_OP_mul:
2719 return "DW_OP_mul";
2720 case DW_OP_neg:
2721 return "DW_OP_neg";
2722 case DW_OP_not:
2723 return "DW_OP_not";
2724 case DW_OP_or:
2725 return "DW_OP_or";
2726 case DW_OP_plus:
2727 return "DW_OP_plus";
2728 case DW_OP_plus_uconst:
2729 return "DW_OP_plus_uconst";
2730 case DW_OP_shl:
2731 return "DW_OP_shl";
2732 case DW_OP_shr:
2733 return "DW_OP_shr";
2734 case DW_OP_shra:
2735 return "DW_OP_shra";
2736 case DW_OP_xor:
2737 return "DW_OP_xor";
2738 case DW_OP_bra:
2739 return "DW_OP_bra";
2740 case DW_OP_eq:
2741 return "DW_OP_eq";
2742 case DW_OP_ge:
2743 return "DW_OP_ge";
2744 case DW_OP_gt:
2745 return "DW_OP_gt";
2746 case DW_OP_le:
2747 return "DW_OP_le";
2748 case DW_OP_lt:
2749 return "DW_OP_lt";
2750 case DW_OP_ne:
2751 return "DW_OP_ne";
2752 case DW_OP_skip:
2753 return "DW_OP_skip";
2754 case DW_OP_lit0:
2755 return "DW_OP_lit0";
2756 case DW_OP_lit1:
2757 return "DW_OP_lit1";
2758 case DW_OP_lit2:
2759 return "DW_OP_lit2";
2760 case DW_OP_lit3:
2761 return "DW_OP_lit3";
2762 case DW_OP_lit4:
2763 return "DW_OP_lit4";
2764 case DW_OP_lit5:
2765 return "DW_OP_lit5";
2766 case DW_OP_lit6:
2767 return "DW_OP_lit6";
2768 case DW_OP_lit7:
2769 return "DW_OP_lit7";
2770 case DW_OP_lit8:
2771 return "DW_OP_lit8";
2772 case DW_OP_lit9:
2773 return "DW_OP_lit9";
2774 case DW_OP_lit10:
2775 return "DW_OP_lit10";
2776 case DW_OP_lit11:
2777 return "DW_OP_lit11";
2778 case DW_OP_lit12:
2779 return "DW_OP_lit12";
2780 case DW_OP_lit13:
2781 return "DW_OP_lit13";
2782 case DW_OP_lit14:
2783 return "DW_OP_lit14";
2784 case DW_OP_lit15:
2785 return "DW_OP_lit15";
2786 case DW_OP_lit16:
2787 return "DW_OP_lit16";
2788 case DW_OP_lit17:
2789 return "DW_OP_lit17";
2790 case DW_OP_lit18:
2791 return "DW_OP_lit18";
2792 case DW_OP_lit19:
2793 return "DW_OP_lit19";
2794 case DW_OP_lit20:
2795 return "DW_OP_lit20";
2796 case DW_OP_lit21:
2797 return "DW_OP_lit21";
2798 case DW_OP_lit22:
2799 return "DW_OP_lit22";
2800 case DW_OP_lit23:
2801 return "DW_OP_lit23";
2802 case DW_OP_lit24:
2803 return "DW_OP_lit24";
2804 case DW_OP_lit25:
2805 return "DW_OP_lit25";
2806 case DW_OP_lit26:
2807 return "DW_OP_lit26";
2808 case DW_OP_lit27:
2809 return "DW_OP_lit27";
2810 case DW_OP_lit28:
2811 return "DW_OP_lit28";
2812 case DW_OP_lit29:
2813 return "DW_OP_lit29";
2814 case DW_OP_lit30:
2815 return "DW_OP_lit30";
2816 case DW_OP_lit31:
2817 return "DW_OP_lit31";
2818 case DW_OP_reg0:
2819 return "DW_OP_reg0";
2820 case DW_OP_reg1:
2821 return "DW_OP_reg1";
2822 case DW_OP_reg2:
2823 return "DW_OP_reg2";
2824 case DW_OP_reg3:
2825 return "DW_OP_reg3";
2826 case DW_OP_reg4:
2827 return "DW_OP_reg4";
2828 case DW_OP_reg5:
2829 return "DW_OP_reg5";
2830 case DW_OP_reg6:
2831 return "DW_OP_reg6";
2832 case DW_OP_reg7:
2833 return "DW_OP_reg7";
2834 case DW_OP_reg8:
2835 return "DW_OP_reg8";
2836 case DW_OP_reg9:
2837 return "DW_OP_reg9";
2838 case DW_OP_reg10:
2839 return "DW_OP_reg10";
2840 case DW_OP_reg11:
2841 return "DW_OP_reg11";
2842 case DW_OP_reg12:
2843 return "DW_OP_reg12";
2844 case DW_OP_reg13:
2845 return "DW_OP_reg13";
2846 case DW_OP_reg14:
2847 return "DW_OP_reg14";
2848 case DW_OP_reg15:
2849 return "DW_OP_reg15";
2850 case DW_OP_reg16:
2851 return "DW_OP_reg16";
2852 case DW_OP_reg17:
2853 return "DW_OP_reg17";
2854 case DW_OP_reg18:
2855 return "DW_OP_reg18";
2856 case DW_OP_reg19:
2857 return "DW_OP_reg19";
2858 case DW_OP_reg20:
2859 return "DW_OP_reg20";
2860 case DW_OP_reg21:
2861 return "DW_OP_reg21";
2862 case DW_OP_reg22:
2863 return "DW_OP_reg22";
2864 case DW_OP_reg23:
2865 return "DW_OP_reg23";
2866 case DW_OP_reg24:
2867 return "DW_OP_reg24";
2868 case DW_OP_reg25:
2869 return "DW_OP_reg25";
2870 case DW_OP_reg26:
2871 return "DW_OP_reg26";
2872 case DW_OP_reg27:
2873 return "DW_OP_reg27";
2874 case DW_OP_reg28:
2875 return "DW_OP_reg28";
2876 case DW_OP_reg29:
2877 return "DW_OP_reg29";
2878 case DW_OP_reg30:
2879 return "DW_OP_reg30";
2880 case DW_OP_reg31:
2881 return "DW_OP_reg31";
2882 case DW_OP_breg0:
2883 return "DW_OP_breg0";
2884 case DW_OP_breg1:
2885 return "DW_OP_breg1";
2886 case DW_OP_breg2:
2887 return "DW_OP_breg2";
2888 case DW_OP_breg3:
2889 return "DW_OP_breg3";
2890 case DW_OP_breg4:
2891 return "DW_OP_breg4";
2892 case DW_OP_breg5:
2893 return "DW_OP_breg5";
2894 case DW_OP_breg6:
2895 return "DW_OP_breg6";
2896 case DW_OP_breg7:
2897 return "DW_OP_breg7";
2898 case DW_OP_breg8:
2899 return "DW_OP_breg8";
2900 case DW_OP_breg9:
2901 return "DW_OP_breg9";
2902 case DW_OP_breg10:
2903 return "DW_OP_breg10";
2904 case DW_OP_breg11:
2905 return "DW_OP_breg11";
2906 case DW_OP_breg12:
2907 return "DW_OP_breg12";
2908 case DW_OP_breg13:
2909 return "DW_OP_breg13";
2910 case DW_OP_breg14:
2911 return "DW_OP_breg14";
2912 case DW_OP_breg15:
2913 return "DW_OP_breg15";
2914 case DW_OP_breg16:
2915 return "DW_OP_breg16";
2916 case DW_OP_breg17:
2917 return "DW_OP_breg17";
2918 case DW_OP_breg18:
2919 return "DW_OP_breg18";
2920 case DW_OP_breg19:
2921 return "DW_OP_breg19";
2922 case DW_OP_breg20:
2923 return "DW_OP_breg20";
2924 case DW_OP_breg21:
2925 return "DW_OP_breg21";
2926 case DW_OP_breg22:
2927 return "DW_OP_breg22";
2928 case DW_OP_breg23:
2929 return "DW_OP_breg23";
2930 case DW_OP_breg24:
2931 return "DW_OP_breg24";
2932 case DW_OP_breg25:
2933 return "DW_OP_breg25";
2934 case DW_OP_breg26:
2935 return "DW_OP_breg26";
2936 case DW_OP_breg27:
2937 return "DW_OP_breg27";
2938 case DW_OP_breg28:
2939 return "DW_OP_breg28";
2940 case DW_OP_breg29:
2941 return "DW_OP_breg29";
2942 case DW_OP_breg30:
2943 return "DW_OP_breg30";
2944 case DW_OP_breg31:
2945 return "DW_OP_breg31";
2946 case DW_OP_regx:
2947 return "DW_OP_regx";
2948 case DW_OP_fbreg:
2949 return "DW_OP_fbreg";
2950 case DW_OP_bregx:
2951 return "DW_OP_bregx";
2952 case DW_OP_piece:
2953 return "DW_OP_piece";
2954 case DW_OP_deref_size:
2955 return "DW_OP_deref_size";
2956 case DW_OP_xderef_size:
2957 return "DW_OP_xderef_size";
2958 case DW_OP_nop:
2959 return "DW_OP_nop";
2960 case DW_OP_push_object_address:
2961 return "DW_OP_push_object_address";
2962 case DW_OP_call2:
2963 return "DW_OP_call2";
2964 case DW_OP_call4:
2965 return "DW_OP_call4";
2966 case DW_OP_call_ref:
2967 return "DW_OP_call_ref";
2968 case DW_OP_GNU_push_tls_address:
2969 return "DW_OP_GNU_push_tls_address";
2970 default:
2971 return "OP_<unknown>";
2975 /* Return a pointer to a newly allocated location description. Location
2976 descriptions are simple expression terms that can be strung
2977 together to form more complicated location (address) descriptions. */
2979 static inline dw_loc_descr_ref
2980 new_loc_descr (enum dwarf_location_atom op, unsigned HOST_WIDE_INT oprnd1,
2981 unsigned HOST_WIDE_INT oprnd2)
2983 dw_loc_descr_ref descr = ggc_alloc_cleared (sizeof (dw_loc_descr_node));
2985 descr->dw_loc_opc = op;
2986 descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
2987 descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
2988 descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
2989 descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
2991 return descr;
2995 /* Add a location description term to a location description expression. */
2997 static inline void
2998 add_loc_descr (dw_loc_descr_ref *list_head, dw_loc_descr_ref descr)
3000 dw_loc_descr_ref *d;
3002 /* Find the end of the chain. */
3003 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
3006 *d = descr;
3009 /* Return the size of a location descriptor. */
3011 static unsigned long
3012 size_of_loc_descr (dw_loc_descr_ref loc)
3014 unsigned long size = 1;
3016 switch (loc->dw_loc_opc)
3018 case DW_OP_addr:
3019 case INTERNAL_DW_OP_tls_addr:
3020 size += DWARF2_ADDR_SIZE;
3021 break;
3022 case DW_OP_const1u:
3023 case DW_OP_const1s:
3024 size += 1;
3025 break;
3026 case DW_OP_const2u:
3027 case DW_OP_const2s:
3028 size += 2;
3029 break;
3030 case DW_OP_const4u:
3031 case DW_OP_const4s:
3032 size += 4;
3033 break;
3034 case DW_OP_const8u:
3035 case DW_OP_const8s:
3036 size += 8;
3037 break;
3038 case DW_OP_constu:
3039 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3040 break;
3041 case DW_OP_consts:
3042 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
3043 break;
3044 case DW_OP_pick:
3045 size += 1;
3046 break;
3047 case DW_OP_plus_uconst:
3048 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3049 break;
3050 case DW_OP_skip:
3051 case DW_OP_bra:
3052 size += 2;
3053 break;
3054 case DW_OP_breg0:
3055 case DW_OP_breg1:
3056 case DW_OP_breg2:
3057 case DW_OP_breg3:
3058 case DW_OP_breg4:
3059 case DW_OP_breg5:
3060 case DW_OP_breg6:
3061 case DW_OP_breg7:
3062 case DW_OP_breg8:
3063 case DW_OP_breg9:
3064 case DW_OP_breg10:
3065 case DW_OP_breg11:
3066 case DW_OP_breg12:
3067 case DW_OP_breg13:
3068 case DW_OP_breg14:
3069 case DW_OP_breg15:
3070 case DW_OP_breg16:
3071 case DW_OP_breg17:
3072 case DW_OP_breg18:
3073 case DW_OP_breg19:
3074 case DW_OP_breg20:
3075 case DW_OP_breg21:
3076 case DW_OP_breg22:
3077 case DW_OP_breg23:
3078 case DW_OP_breg24:
3079 case DW_OP_breg25:
3080 case DW_OP_breg26:
3081 case DW_OP_breg27:
3082 case DW_OP_breg28:
3083 case DW_OP_breg29:
3084 case DW_OP_breg30:
3085 case DW_OP_breg31:
3086 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
3087 break;
3088 case DW_OP_regx:
3089 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3090 break;
3091 case DW_OP_fbreg:
3092 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
3093 break;
3094 case DW_OP_bregx:
3095 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3096 size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
3097 break;
3098 case DW_OP_piece:
3099 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3100 break;
3101 case DW_OP_deref_size:
3102 case DW_OP_xderef_size:
3103 size += 1;
3104 break;
3105 case DW_OP_call2:
3106 size += 2;
3107 break;
3108 case DW_OP_call4:
3109 size += 4;
3110 break;
3111 case DW_OP_call_ref:
3112 size += DWARF2_ADDR_SIZE;
3113 break;
3114 default:
3115 break;
3118 return size;
3121 /* Return the size of a series of location descriptors. */
3123 static unsigned long
3124 size_of_locs (dw_loc_descr_ref loc)
3126 unsigned long size;
3128 for (size = 0; loc != NULL; loc = loc->dw_loc_next)
3130 loc->dw_loc_addr = size;
3131 size += size_of_loc_descr (loc);
3134 return size;
3137 /* Output location description stack opcode's operands (if any). */
3139 static void
3140 output_loc_operands (dw_loc_descr_ref loc)
3142 dw_val_ref val1 = &loc->dw_loc_oprnd1;
3143 dw_val_ref val2 = &loc->dw_loc_oprnd2;
3145 switch (loc->dw_loc_opc)
3147 #ifdef DWARF2_DEBUGGING_INFO
3148 case DW_OP_addr:
3149 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
3150 break;
3151 case DW_OP_const2u:
3152 case DW_OP_const2s:
3153 dw2_asm_output_data (2, val1->v.val_int, NULL);
3154 break;
3155 case DW_OP_const4u:
3156 case DW_OP_const4s:
3157 dw2_asm_output_data (4, val1->v.val_int, NULL);
3158 break;
3159 case DW_OP_const8u:
3160 case DW_OP_const8s:
3161 gcc_assert (HOST_BITS_PER_LONG >= 64);
3162 dw2_asm_output_data (8, val1->v.val_int, NULL);
3163 break;
3164 case DW_OP_skip:
3165 case DW_OP_bra:
3167 int offset;
3169 gcc_assert (val1->val_class == dw_val_class_loc);
3170 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
3172 dw2_asm_output_data (2, offset, NULL);
3174 break;
3175 #else
3176 case DW_OP_addr:
3177 case DW_OP_const2u:
3178 case DW_OP_const2s:
3179 case DW_OP_const4u:
3180 case DW_OP_const4s:
3181 case DW_OP_const8u:
3182 case DW_OP_const8s:
3183 case DW_OP_skip:
3184 case DW_OP_bra:
3185 /* We currently don't make any attempt to make sure these are
3186 aligned properly like we do for the main unwind info, so
3187 don't support emitting things larger than a byte if we're
3188 only doing unwinding. */
3189 gcc_unreachable ();
3190 #endif
3191 case DW_OP_const1u:
3192 case DW_OP_const1s:
3193 dw2_asm_output_data (1, val1->v.val_int, NULL);
3194 break;
3195 case DW_OP_constu:
3196 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3197 break;
3198 case DW_OP_consts:
3199 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3200 break;
3201 case DW_OP_pick:
3202 dw2_asm_output_data (1, val1->v.val_int, NULL);
3203 break;
3204 case DW_OP_plus_uconst:
3205 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3206 break;
3207 case DW_OP_breg0:
3208 case DW_OP_breg1:
3209 case DW_OP_breg2:
3210 case DW_OP_breg3:
3211 case DW_OP_breg4:
3212 case DW_OP_breg5:
3213 case DW_OP_breg6:
3214 case DW_OP_breg7:
3215 case DW_OP_breg8:
3216 case DW_OP_breg9:
3217 case DW_OP_breg10:
3218 case DW_OP_breg11:
3219 case DW_OP_breg12:
3220 case DW_OP_breg13:
3221 case DW_OP_breg14:
3222 case DW_OP_breg15:
3223 case DW_OP_breg16:
3224 case DW_OP_breg17:
3225 case DW_OP_breg18:
3226 case DW_OP_breg19:
3227 case DW_OP_breg20:
3228 case DW_OP_breg21:
3229 case DW_OP_breg22:
3230 case DW_OP_breg23:
3231 case DW_OP_breg24:
3232 case DW_OP_breg25:
3233 case DW_OP_breg26:
3234 case DW_OP_breg27:
3235 case DW_OP_breg28:
3236 case DW_OP_breg29:
3237 case DW_OP_breg30:
3238 case DW_OP_breg31:
3239 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3240 break;
3241 case DW_OP_regx:
3242 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3243 break;
3244 case DW_OP_fbreg:
3245 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3246 break;
3247 case DW_OP_bregx:
3248 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3249 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
3250 break;
3251 case DW_OP_piece:
3252 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3253 break;
3254 case DW_OP_deref_size:
3255 case DW_OP_xderef_size:
3256 dw2_asm_output_data (1, val1->v.val_int, NULL);
3257 break;
3259 case INTERNAL_DW_OP_tls_addr:
3260 #ifdef ASM_OUTPUT_DWARF_DTPREL
3261 ASM_OUTPUT_DWARF_DTPREL (asm_out_file, DWARF2_ADDR_SIZE,
3262 val1->v.val_addr);
3263 fputc ('\n', asm_out_file);
3264 #else
3265 gcc_unreachable ();
3266 #endif
3267 break;
3269 default:
3270 /* Other codes have no operands. */
3271 break;
3275 /* Output a sequence of location operations. */
3277 static void
3278 output_loc_sequence (dw_loc_descr_ref loc)
3280 for (; loc != NULL; loc = loc->dw_loc_next)
3282 /* Output the opcode. */
3283 dw2_asm_output_data (1, loc->dw_loc_opc,
3284 "%s", dwarf_stack_op_name (loc->dw_loc_opc));
3286 /* Output the operand(s) (if any). */
3287 output_loc_operands (loc);
3291 /* This routine will generate the correct assembly data for a location
3292 description based on a cfi entry with a complex address. */
3294 static void
3295 output_cfa_loc (dw_cfi_ref cfi)
3297 dw_loc_descr_ref loc;
3298 unsigned long size;
3300 /* Output the size of the block. */
3301 loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
3302 size = size_of_locs (loc);
3303 dw2_asm_output_data_uleb128 (size, NULL);
3305 /* Now output the operations themselves. */
3306 output_loc_sequence (loc);
3309 /* This function builds a dwarf location descriptor sequence from
3310 a dw_cfa_location. */
3312 static struct dw_loc_descr_struct *
3313 build_cfa_loc (dw_cfa_location *cfa)
3315 struct dw_loc_descr_struct *head, *tmp;
3317 gcc_assert (cfa->indirect);
3319 if (cfa->base_offset)
3321 if (cfa->reg <= 31)
3322 head = new_loc_descr (DW_OP_breg0 + cfa->reg, cfa->base_offset, 0);
3323 else
3324 head = new_loc_descr (DW_OP_bregx, cfa->reg, cfa->base_offset);
3326 else if (cfa->reg <= 31)
3327 head = new_loc_descr (DW_OP_reg0 + cfa->reg, 0, 0);
3328 else
3329 head = new_loc_descr (DW_OP_regx, cfa->reg, 0);
3331 head->dw_loc_oprnd1.val_class = dw_val_class_const;
3332 tmp = new_loc_descr (DW_OP_deref, 0, 0);
3333 add_loc_descr (&head, tmp);
3334 if (cfa->offset != 0)
3336 tmp = new_loc_descr (DW_OP_plus_uconst, cfa->offset, 0);
3337 add_loc_descr (&head, tmp);
3340 return head;
3343 /* This function fills in aa dw_cfa_location structure from a dwarf location
3344 descriptor sequence. */
3346 static void
3347 get_cfa_from_loc_descr (dw_cfa_location *cfa, struct dw_loc_descr_struct *loc)
3349 struct dw_loc_descr_struct *ptr;
3350 cfa->offset = 0;
3351 cfa->base_offset = 0;
3352 cfa->indirect = 0;
3353 cfa->reg = -1;
3355 for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
3357 enum dwarf_location_atom op = ptr->dw_loc_opc;
3359 switch (op)
3361 case DW_OP_reg0:
3362 case DW_OP_reg1:
3363 case DW_OP_reg2:
3364 case DW_OP_reg3:
3365 case DW_OP_reg4:
3366 case DW_OP_reg5:
3367 case DW_OP_reg6:
3368 case DW_OP_reg7:
3369 case DW_OP_reg8:
3370 case DW_OP_reg9:
3371 case DW_OP_reg10:
3372 case DW_OP_reg11:
3373 case DW_OP_reg12:
3374 case DW_OP_reg13:
3375 case DW_OP_reg14:
3376 case DW_OP_reg15:
3377 case DW_OP_reg16:
3378 case DW_OP_reg17:
3379 case DW_OP_reg18:
3380 case DW_OP_reg19:
3381 case DW_OP_reg20:
3382 case DW_OP_reg21:
3383 case DW_OP_reg22:
3384 case DW_OP_reg23:
3385 case DW_OP_reg24:
3386 case DW_OP_reg25:
3387 case DW_OP_reg26:
3388 case DW_OP_reg27:
3389 case DW_OP_reg28:
3390 case DW_OP_reg29:
3391 case DW_OP_reg30:
3392 case DW_OP_reg31:
3393 cfa->reg = op - DW_OP_reg0;
3394 break;
3395 case DW_OP_regx:
3396 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3397 break;
3398 case DW_OP_breg0:
3399 case DW_OP_breg1:
3400 case DW_OP_breg2:
3401 case DW_OP_breg3:
3402 case DW_OP_breg4:
3403 case DW_OP_breg5:
3404 case DW_OP_breg6:
3405 case DW_OP_breg7:
3406 case DW_OP_breg8:
3407 case DW_OP_breg9:
3408 case DW_OP_breg10:
3409 case DW_OP_breg11:
3410 case DW_OP_breg12:
3411 case DW_OP_breg13:
3412 case DW_OP_breg14:
3413 case DW_OP_breg15:
3414 case DW_OP_breg16:
3415 case DW_OP_breg17:
3416 case DW_OP_breg18:
3417 case DW_OP_breg19:
3418 case DW_OP_breg20:
3419 case DW_OP_breg21:
3420 case DW_OP_breg22:
3421 case DW_OP_breg23:
3422 case DW_OP_breg24:
3423 case DW_OP_breg25:
3424 case DW_OP_breg26:
3425 case DW_OP_breg27:
3426 case DW_OP_breg28:
3427 case DW_OP_breg29:
3428 case DW_OP_breg30:
3429 case DW_OP_breg31:
3430 cfa->reg = op - DW_OP_breg0;
3431 cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
3432 break;
3433 case DW_OP_bregx:
3434 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3435 cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
3436 break;
3437 case DW_OP_deref:
3438 cfa->indirect = 1;
3439 break;
3440 case DW_OP_plus_uconst:
3441 cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
3442 break;
3443 default:
3444 internal_error ("DW_LOC_OP %s not implemented\n",
3445 dwarf_stack_op_name (ptr->dw_loc_opc));
3449 #endif /* .debug_frame support */
3451 /* And now, the support for symbolic debugging information. */
3452 #ifdef DWARF2_DEBUGGING_INFO
3454 /* .debug_str support. */
3455 static int output_indirect_string (void **, void *);
3457 static void dwarf2out_init (const char *);
3458 static void dwarf2out_finish (const char *);
3459 static void dwarf2out_define (unsigned int, const char *);
3460 static void dwarf2out_undef (unsigned int, const char *);
3461 static void dwarf2out_start_source_file (unsigned, const char *);
3462 static void dwarf2out_end_source_file (unsigned);
3463 static void dwarf2out_begin_block (unsigned, unsigned);
3464 static void dwarf2out_end_block (unsigned, unsigned);
3465 static bool dwarf2out_ignore_block (tree);
3466 static void dwarf2out_global_decl (tree);
3467 static void dwarf2out_type_decl (tree, int);
3468 static void dwarf2out_imported_module_or_decl (tree, tree);
3469 static void dwarf2out_abstract_function (tree);
3470 static void dwarf2out_var_location (rtx);
3471 static void dwarf2out_begin_function (tree);
3472 static void dwarf2out_switch_text_section (void);
3474 /* The debug hooks structure. */
3476 const struct gcc_debug_hooks dwarf2_debug_hooks =
3478 dwarf2out_init,
3479 dwarf2out_finish,
3480 dwarf2out_define,
3481 dwarf2out_undef,
3482 dwarf2out_start_source_file,
3483 dwarf2out_end_source_file,
3484 dwarf2out_begin_block,
3485 dwarf2out_end_block,
3486 dwarf2out_ignore_block,
3487 dwarf2out_source_line,
3488 dwarf2out_begin_prologue,
3489 debug_nothing_int_charstar, /* end_prologue */
3490 dwarf2out_end_epilogue,
3491 dwarf2out_begin_function,
3492 debug_nothing_int, /* end_function */
3493 dwarf2out_decl, /* function_decl */
3494 dwarf2out_global_decl,
3495 dwarf2out_type_decl, /* type_decl */
3496 dwarf2out_imported_module_or_decl,
3497 debug_nothing_tree, /* deferred_inline_function */
3498 /* The DWARF 2 backend tries to reduce debugging bloat by not
3499 emitting the abstract description of inline functions until
3500 something tries to reference them. */
3501 dwarf2out_abstract_function, /* outlining_inline_function */
3502 debug_nothing_rtx, /* label */
3503 debug_nothing_int, /* handle_pch */
3504 dwarf2out_var_location,
3505 dwarf2out_switch_text_section,
3506 1 /* start_end_main_source_file */
3508 #endif
3510 /* NOTE: In the comments in this file, many references are made to
3511 "Debugging Information Entries". This term is abbreviated as `DIE'
3512 throughout the remainder of this file. */
3514 /* An internal representation of the DWARF output is built, and then
3515 walked to generate the DWARF debugging info. The walk of the internal
3516 representation is done after the entire program has been compiled.
3517 The types below are used to describe the internal representation. */
3519 /* Various DIE's use offsets relative to the beginning of the
3520 .debug_info section to refer to each other. */
3522 typedef long int dw_offset;
3524 /* Define typedefs here to avoid circular dependencies. */
3526 typedef struct dw_attr_struct *dw_attr_ref;
3527 typedef struct dw_line_info_struct *dw_line_info_ref;
3528 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
3529 typedef struct pubname_struct *pubname_ref;
3530 typedef struct dw_ranges_struct *dw_ranges_ref;
3532 /* Each entry in the line_info_table maintains the file and
3533 line number associated with the label generated for that
3534 entry. The label gives the PC value associated with
3535 the line number entry. */
3537 typedef struct dw_line_info_struct GTY(())
3539 unsigned long dw_file_num;
3540 unsigned long dw_line_num;
3542 dw_line_info_entry;
3544 /* Line information for functions in separate sections; each one gets its
3545 own sequence. */
3546 typedef struct dw_separate_line_info_struct GTY(())
3548 unsigned long dw_file_num;
3549 unsigned long dw_line_num;
3550 unsigned long function;
3552 dw_separate_line_info_entry;
3554 /* Each DIE attribute has a field specifying the attribute kind,
3555 a link to the next attribute in the chain, and an attribute value.
3556 Attributes are typically linked below the DIE they modify. */
3558 typedef struct dw_attr_struct GTY(())
3560 enum dwarf_attribute dw_attr;
3561 dw_attr_ref dw_attr_next;
3562 dw_val_node dw_attr_val;
3564 dw_attr_node;
3566 /* The Debugging Information Entry (DIE) structure */
3568 typedef struct die_struct GTY(())
3570 enum dwarf_tag die_tag;
3571 char *die_symbol;
3572 dw_attr_ref die_attr;
3573 dw_die_ref die_parent;
3574 dw_die_ref die_child;
3575 dw_die_ref die_sib;
3576 dw_die_ref die_definition; /* ref from a specification to its definition */
3577 dw_offset die_offset;
3578 unsigned long die_abbrev;
3579 int die_mark;
3580 unsigned int decl_id;
3582 die_node;
3584 /* The pubname structure */
3586 typedef struct pubname_struct GTY(())
3588 dw_die_ref die;
3589 char *name;
3591 pubname_entry;
3593 struct dw_ranges_struct GTY(())
3595 int block_num;
3598 /* The limbo die list structure. */
3599 typedef struct limbo_die_struct GTY(())
3601 dw_die_ref die;
3602 tree created_for;
3603 struct limbo_die_struct *next;
3605 limbo_die_node;
3607 /* How to start an assembler comment. */
3608 #ifndef ASM_COMMENT_START
3609 #define ASM_COMMENT_START ";#"
3610 #endif
3612 /* Define a macro which returns nonzero for a TYPE_DECL which was
3613 implicitly generated for a tagged type.
3615 Note that unlike the gcc front end (which generates a NULL named
3616 TYPE_DECL node for each complete tagged type, each array type, and
3617 each function type node created) the g++ front end generates a
3618 _named_ TYPE_DECL node for each tagged type node created.
3619 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3620 generate a DW_TAG_typedef DIE for them. */
3622 #define TYPE_DECL_IS_STUB(decl) \
3623 (DECL_NAME (decl) == NULL_TREE \
3624 || (DECL_ARTIFICIAL (decl) \
3625 && is_tagged_type (TREE_TYPE (decl)) \
3626 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
3627 /* This is necessary for stub decls that \
3628 appear in nested inline functions. */ \
3629 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3630 && (decl_ultimate_origin (decl) \
3631 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3633 /* Information concerning the compilation unit's programming
3634 language, and compiler version. */
3636 /* Fixed size portion of the DWARF compilation unit header. */
3637 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3638 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
3640 /* Fixed size portion of public names info. */
3641 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3643 /* Fixed size portion of the address range info. */
3644 #define DWARF_ARANGES_HEADER_SIZE \
3645 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3646 DWARF2_ADDR_SIZE * 2) \
3647 - DWARF_INITIAL_LENGTH_SIZE)
3649 /* Size of padding portion in the address range info. It must be
3650 aligned to twice the pointer size. */
3651 #define DWARF_ARANGES_PAD_SIZE \
3652 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3653 DWARF2_ADDR_SIZE * 2) \
3654 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
3656 /* Use assembler line directives if available. */
3657 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3658 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3659 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3660 #else
3661 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3662 #endif
3663 #endif
3665 /* Minimum line offset in a special line info. opcode.
3666 This value was chosen to give a reasonable range of values. */
3667 #define DWARF_LINE_BASE -10
3669 /* First special line opcode - leave room for the standard opcodes. */
3670 #define DWARF_LINE_OPCODE_BASE 10
3672 /* Range of line offsets in a special line info. opcode. */
3673 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
3675 /* Flag that indicates the initial value of the is_stmt_start flag.
3676 In the present implementation, we do not mark any lines as
3677 the beginning of a source statement, because that information
3678 is not made available by the GCC front-end. */
3679 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3681 #ifdef DWARF2_DEBUGGING_INFO
3682 /* This location is used by calc_die_sizes() to keep track
3683 the offset of each DIE within the .debug_info section. */
3684 static unsigned long next_die_offset;
3685 #endif
3687 /* Record the root of the DIE's built for the current compilation unit. */
3688 static GTY(()) dw_die_ref comp_unit_die;
3690 /* A list of DIEs with a NULL parent waiting to be relocated. */
3691 static GTY(()) limbo_die_node *limbo_die_list;
3693 /* Filenames referenced by this compilation unit. */
3694 static GTY(()) varray_type file_table;
3695 static GTY(()) varray_type file_table_emitted;
3696 static GTY(()) size_t file_table_last_lookup_index;
3698 /* A hash table of references to DIE's that describe declarations.
3699 The key is a DECL_UID() which is a unique number identifying each decl. */
3700 static GTY ((param_is (struct die_struct))) htab_t decl_die_table;
3702 /* Node of the variable location list. */
3703 struct var_loc_node GTY ((chain_next ("%h.next")))
3705 rtx GTY (()) var_loc_note;
3706 const char * GTY (()) label;
3707 const char * GTY (()) section_label;
3708 struct var_loc_node * GTY (()) next;
3711 /* Variable location list. */
3712 struct var_loc_list_def GTY (())
3714 struct var_loc_node * GTY (()) first;
3716 /* Do not mark the last element of the chained list because
3717 it is marked through the chain. */
3718 struct var_loc_node * GTY ((skip ("%h"))) last;
3720 /* DECL_UID of the variable decl. */
3721 unsigned int decl_id;
3723 typedef struct var_loc_list_def var_loc_list;
3726 /* Table of decl location linked lists. */
3727 static GTY ((param_is (var_loc_list))) htab_t decl_loc_table;
3729 /* A pointer to the base of a list of references to DIE's that
3730 are uniquely identified by their tag, presence/absence of
3731 children DIE's, and list of attribute/value pairs. */
3732 static GTY((length ("abbrev_die_table_allocated")))
3733 dw_die_ref *abbrev_die_table;
3735 /* Number of elements currently allocated for abbrev_die_table. */
3736 static GTY(()) unsigned abbrev_die_table_allocated;
3738 /* Number of elements in type_die_table currently in use. */
3739 static GTY(()) unsigned abbrev_die_table_in_use;
3741 /* Size (in elements) of increments by which we may expand the
3742 abbrev_die_table. */
3743 #define ABBREV_DIE_TABLE_INCREMENT 256
3745 /* A pointer to the base of a table that contains line information
3746 for each source code line in .text in the compilation unit. */
3747 static GTY((length ("line_info_table_allocated")))
3748 dw_line_info_ref line_info_table;
3750 /* Number of elements currently allocated for line_info_table. */
3751 static GTY(()) unsigned line_info_table_allocated;
3753 /* Number of elements in line_info_table currently in use. */
3754 static GTY(()) unsigned line_info_table_in_use;
3756 /* A pointer to the base of a table that contains line information
3757 for each source code line outside of .text in the compilation unit. */
3758 static GTY ((length ("separate_line_info_table_allocated")))
3759 dw_separate_line_info_ref separate_line_info_table;
3761 /* Number of elements currently allocated for separate_line_info_table. */
3762 static GTY(()) unsigned separate_line_info_table_allocated;
3764 /* Number of elements in separate_line_info_table currently in use. */
3765 static GTY(()) unsigned separate_line_info_table_in_use;
3767 /* Size (in elements) of increments by which we may expand the
3768 line_info_table. */
3769 #define LINE_INFO_TABLE_INCREMENT 1024
3771 /* A pointer to the base of a table that contains a list of publicly
3772 accessible names. */
3773 static GTY ((length ("pubname_table_allocated"))) pubname_ref pubname_table;
3775 /* Number of elements currently allocated for pubname_table. */
3776 static GTY(()) unsigned pubname_table_allocated;
3778 /* Number of elements in pubname_table currently in use. */
3779 static GTY(()) unsigned pubname_table_in_use;
3781 /* Size (in elements) of increments by which we may expand the
3782 pubname_table. */
3783 #define PUBNAME_TABLE_INCREMENT 64
3785 /* Array of dies for which we should generate .debug_arange info. */
3786 static GTY((length ("arange_table_allocated"))) dw_die_ref *arange_table;
3788 /* Number of elements currently allocated for arange_table. */
3789 static GTY(()) unsigned arange_table_allocated;
3791 /* Number of elements in arange_table currently in use. */
3792 static GTY(()) unsigned arange_table_in_use;
3794 /* Size (in elements) of increments by which we may expand the
3795 arange_table. */
3796 #define ARANGE_TABLE_INCREMENT 64
3798 /* Array of dies for which we should generate .debug_ranges info. */
3799 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table;
3801 /* Number of elements currently allocated for ranges_table. */
3802 static GTY(()) unsigned ranges_table_allocated;
3804 /* Number of elements in ranges_table currently in use. */
3805 static GTY(()) unsigned ranges_table_in_use;
3807 /* Size (in elements) of increments by which we may expand the
3808 ranges_table. */
3809 #define RANGES_TABLE_INCREMENT 64
3811 /* Whether we have location lists that need outputting */
3812 static GTY(()) unsigned have_location_lists;
3814 /* Unique label counter. */
3815 static GTY(()) unsigned int loclabel_num;
3817 #ifdef DWARF2_DEBUGGING_INFO
3818 /* Record whether the function being analyzed contains inlined functions. */
3819 static int current_function_has_inlines;
3820 #endif
3821 #if 0 && defined (MIPS_DEBUGGING_INFO)
3822 static int comp_unit_has_inlines;
3823 #endif
3825 /* Number of file tables emitted in maybe_emit_file(). */
3826 static GTY(()) int emitcount = 0;
3828 /* Number of internal labels generated by gen_internal_sym(). */
3829 static GTY(()) int label_num;
3831 #ifdef DWARF2_DEBUGGING_INFO
3833 /* Forward declarations for functions defined in this file. */
3835 static int is_pseudo_reg (rtx);
3836 static tree type_main_variant (tree);
3837 static int is_tagged_type (tree);
3838 static const char *dwarf_tag_name (unsigned);
3839 static const char *dwarf_attr_name (unsigned);
3840 static const char *dwarf_form_name (unsigned);
3841 static tree decl_ultimate_origin (tree);
3842 static tree block_ultimate_origin (tree);
3843 static tree decl_class_context (tree);
3844 static void add_dwarf_attr (dw_die_ref, dw_attr_ref);
3845 static inline enum dw_val_class AT_class (dw_attr_ref);
3846 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
3847 static inline unsigned AT_flag (dw_attr_ref);
3848 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
3849 static inline HOST_WIDE_INT AT_int (dw_attr_ref);
3850 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
3851 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_ref);
3852 static void add_AT_long_long (dw_die_ref, enum dwarf_attribute, unsigned long,
3853 unsigned long);
3854 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
3855 unsigned int, unsigned char *);
3856 static hashval_t debug_str_do_hash (const void *);
3857 static int debug_str_eq (const void *, const void *);
3858 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
3859 static inline const char *AT_string (dw_attr_ref);
3860 static int AT_string_form (dw_attr_ref);
3861 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
3862 static void add_AT_specification (dw_die_ref, dw_die_ref);
3863 static inline dw_die_ref AT_ref (dw_attr_ref);
3864 static inline int AT_ref_external (dw_attr_ref);
3865 static inline void set_AT_ref_external (dw_attr_ref, int);
3866 static void add_AT_fde_ref (dw_die_ref, enum dwarf_attribute, unsigned);
3867 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
3868 static inline dw_loc_descr_ref AT_loc (dw_attr_ref);
3869 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
3870 dw_loc_list_ref);
3871 static inline dw_loc_list_ref AT_loc_list (dw_attr_ref);
3872 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx);
3873 static inline rtx AT_addr (dw_attr_ref);
3874 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
3875 static void add_AT_lbl_offset (dw_die_ref, enum dwarf_attribute, const char *);
3876 static void add_AT_offset (dw_die_ref, enum dwarf_attribute,
3877 unsigned HOST_WIDE_INT);
3878 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
3879 unsigned long);
3880 static inline const char *AT_lbl (dw_attr_ref);
3881 static dw_attr_ref get_AT (dw_die_ref, enum dwarf_attribute);
3882 static const char *get_AT_low_pc (dw_die_ref);
3883 static const char *get_AT_hi_pc (dw_die_ref);
3884 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
3885 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
3886 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
3887 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
3888 static bool is_c_family (void);
3889 static bool is_cxx (void);
3890 static bool is_java (void);
3891 static bool is_fortran (void);
3892 static bool is_ada (void);
3893 static void remove_AT (dw_die_ref, enum dwarf_attribute);
3894 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
3895 static inline void free_die (dw_die_ref);
3896 static void remove_children (dw_die_ref);
3897 static void add_child_die (dw_die_ref, dw_die_ref);
3898 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
3899 static dw_die_ref lookup_type_die (tree);
3900 static void equate_type_number_to_die (tree, dw_die_ref);
3901 static hashval_t decl_die_table_hash (const void *);
3902 static int decl_die_table_eq (const void *, const void *);
3903 static dw_die_ref lookup_decl_die (tree);
3904 static hashval_t decl_loc_table_hash (const void *);
3905 static int decl_loc_table_eq (const void *, const void *);
3906 static var_loc_list *lookup_decl_loc (tree);
3907 static void equate_decl_number_to_die (tree, dw_die_ref);
3908 static void add_var_loc_to_decl (tree, struct var_loc_node *);
3909 static void print_spaces (FILE *);
3910 static void print_die (dw_die_ref, FILE *);
3911 static void print_dwarf_line_table (FILE *);
3912 static void reverse_die_lists (dw_die_ref);
3913 static void reverse_all_dies (dw_die_ref);
3914 static dw_die_ref push_new_compile_unit (dw_die_ref, dw_die_ref);
3915 static dw_die_ref pop_compile_unit (dw_die_ref);
3916 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
3917 static void attr_checksum (dw_attr_ref, struct md5_ctx *, int *);
3918 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
3919 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
3920 static int same_dw_val_p (dw_val_node *, dw_val_node *, int *);
3921 static int same_attr_p (dw_attr_ref, dw_attr_ref, int *);
3922 static int same_die_p (dw_die_ref, dw_die_ref, int *);
3923 static int same_die_p_wrap (dw_die_ref, dw_die_ref);
3924 static void compute_section_prefix (dw_die_ref);
3925 static int is_type_die (dw_die_ref);
3926 static int is_comdat_die (dw_die_ref);
3927 static int is_symbol_die (dw_die_ref);
3928 static void assign_symbol_names (dw_die_ref);
3929 static void break_out_includes (dw_die_ref);
3930 static hashval_t htab_cu_hash (const void *);
3931 static int htab_cu_eq (const void *, const void *);
3932 static void htab_cu_del (void *);
3933 static int check_duplicate_cu (dw_die_ref, htab_t, unsigned *);
3934 static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
3935 static void add_sibling_attributes (dw_die_ref);
3936 static void build_abbrev_table (dw_die_ref);
3937 static void output_location_lists (dw_die_ref);
3938 static int constant_size (long unsigned);
3939 static unsigned long size_of_die (dw_die_ref);
3940 static void calc_die_sizes (dw_die_ref);
3941 static void mark_dies (dw_die_ref);
3942 static void unmark_dies (dw_die_ref);
3943 static void unmark_all_dies (dw_die_ref);
3944 static unsigned long size_of_pubnames (void);
3945 static unsigned long size_of_aranges (void);
3946 static enum dwarf_form value_format (dw_attr_ref);
3947 static void output_value_format (dw_attr_ref);
3948 static void output_abbrev_section (void);
3949 static void output_die_symbol (dw_die_ref);
3950 static void output_die (dw_die_ref);
3951 static void output_compilation_unit_header (void);
3952 static void output_comp_unit (dw_die_ref, int);
3953 static const char *dwarf2_name (tree, int);
3954 static void add_pubname (tree, dw_die_ref);
3955 static void output_pubnames (void);
3956 static void add_arange (tree, dw_die_ref);
3957 static void output_aranges (void);
3958 static unsigned int add_ranges (tree);
3959 static void output_ranges (void);
3960 static void output_line_info (void);
3961 static void output_file_names (void);
3962 static dw_die_ref base_type_die (tree);
3963 static tree root_type (tree);
3964 static int is_base_type (tree);
3965 static bool is_subrange_type (tree);
3966 static dw_die_ref subrange_type_die (tree, dw_die_ref);
3967 static dw_die_ref modified_type_die (tree, int, int, dw_die_ref);
3968 static int type_is_enum (tree);
3969 static unsigned int dbx_reg_number (rtx);
3970 static dw_loc_descr_ref reg_loc_descriptor (rtx);
3971 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int);
3972 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx);
3973 static dw_loc_descr_ref int_loc_descriptor (HOST_WIDE_INT);
3974 static dw_loc_descr_ref based_loc_descr (unsigned, HOST_WIDE_INT, bool);
3975 static int is_based_loc (rtx);
3976 static dw_loc_descr_ref mem_loc_descriptor (rtx, enum machine_mode mode, bool);
3977 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx);
3978 static dw_loc_descr_ref loc_descriptor (rtx, bool);
3979 static dw_loc_descr_ref loc_descriptor_from_tree_1 (tree, int);
3980 static dw_loc_descr_ref loc_descriptor_from_tree (tree);
3981 static HOST_WIDE_INT ceiling (HOST_WIDE_INT, unsigned int);
3982 static tree field_type (tree);
3983 static unsigned int simple_type_align_in_bits (tree);
3984 static unsigned int simple_decl_align_in_bits (tree);
3985 static unsigned HOST_WIDE_INT simple_type_size_in_bits (tree);
3986 static HOST_WIDE_INT field_byte_offset (tree);
3987 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
3988 dw_loc_descr_ref);
3989 static void add_data_member_location_attribute (dw_die_ref, tree);
3990 static void add_const_value_attribute (dw_die_ref, rtx);
3991 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
3992 static HOST_WIDE_INT extract_int (const unsigned char *, unsigned);
3993 static void insert_float (rtx, unsigned char *);
3994 static rtx rtl_for_decl_location (tree);
3995 static void add_location_or_const_value_attribute (dw_die_ref, tree,
3996 enum dwarf_attribute);
3997 static void tree_add_const_value_attribute (dw_die_ref, tree);
3998 static void add_name_attribute (dw_die_ref, const char *);
3999 static void add_comp_dir_attribute (dw_die_ref);
4000 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree);
4001 static void add_subscript_info (dw_die_ref, tree);
4002 static void add_byte_size_attribute (dw_die_ref, tree);
4003 static void add_bit_offset_attribute (dw_die_ref, tree);
4004 static void add_bit_size_attribute (dw_die_ref, tree);
4005 static void add_prototyped_attribute (dw_die_ref, tree);
4006 static void add_abstract_origin_attribute (dw_die_ref, tree);
4007 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
4008 static void add_src_coords_attributes (dw_die_ref, tree);
4009 static void add_name_and_src_coords_attributes (dw_die_ref, tree);
4010 static void push_decl_scope (tree);
4011 static void pop_decl_scope (void);
4012 static dw_die_ref scope_die_for (tree, dw_die_ref);
4013 static inline int local_scope_p (dw_die_ref);
4014 static inline int class_or_namespace_scope_p (dw_die_ref);
4015 static void add_type_attribute (dw_die_ref, tree, int, int, dw_die_ref);
4016 static void add_calling_convention_attribute (dw_die_ref, tree);
4017 static const char *type_tag (tree);
4018 static tree member_declared_type (tree);
4019 #if 0
4020 static const char *decl_start_label (tree);
4021 #endif
4022 static void gen_array_type_die (tree, dw_die_ref);
4023 #if 0
4024 static void gen_entry_point_die (tree, dw_die_ref);
4025 #endif
4026 static void gen_inlined_enumeration_type_die (tree, dw_die_ref);
4027 static void gen_inlined_structure_type_die (tree, dw_die_ref);
4028 static void gen_inlined_union_type_die (tree, dw_die_ref);
4029 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
4030 static dw_die_ref gen_formal_parameter_die (tree, dw_die_ref);
4031 static void gen_unspecified_parameters_die (tree, dw_die_ref);
4032 static void gen_formal_types_die (tree, dw_die_ref);
4033 static void gen_subprogram_die (tree, dw_die_ref);
4034 static void gen_variable_die (tree, dw_die_ref);
4035 static void gen_label_die (tree, dw_die_ref);
4036 static void gen_lexical_block_die (tree, dw_die_ref, int);
4037 static void gen_inlined_subroutine_die (tree, dw_die_ref, int);
4038 static void gen_field_die (tree, dw_die_ref);
4039 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
4040 static dw_die_ref gen_compile_unit_die (const char *);
4041 static void gen_string_type_die (tree, dw_die_ref);
4042 static void gen_inheritance_die (tree, tree, dw_die_ref);
4043 static void gen_member_die (tree, dw_die_ref);
4044 static void gen_struct_or_union_type_die (tree, dw_die_ref);
4045 static void gen_subroutine_type_die (tree, dw_die_ref);
4046 static void gen_typedef_die (tree, dw_die_ref);
4047 static void gen_type_die (tree, dw_die_ref);
4048 static void gen_tagged_type_instantiation_die (tree, dw_die_ref);
4049 static void gen_block_die (tree, dw_die_ref, int);
4050 static void decls_for_scope (tree, dw_die_ref, int);
4051 static int is_redundant_typedef (tree);
4052 static void gen_namespace_die (tree);
4053 static void gen_decl_die (tree, dw_die_ref);
4054 static dw_die_ref force_decl_die (tree);
4055 static dw_die_ref force_type_die (tree);
4056 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
4057 static void declare_in_namespace (tree, dw_die_ref);
4058 static unsigned lookup_filename (const char *);
4059 static void init_file_table (void);
4060 static void retry_incomplete_types (void);
4061 static void gen_type_die_for_member (tree, tree, dw_die_ref);
4062 static void splice_child_die (dw_die_ref, dw_die_ref);
4063 static int file_info_cmp (const void *, const void *);
4064 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *,
4065 const char *, const char *, unsigned);
4066 static void add_loc_descr_to_loc_list (dw_loc_list_ref *, dw_loc_descr_ref,
4067 const char *, const char *,
4068 const char *);
4069 static void output_loc_list (dw_loc_list_ref);
4070 static char *gen_internal_sym (const char *);
4072 static void prune_unmark_dies (dw_die_ref);
4073 static void prune_unused_types_mark (dw_die_ref, int);
4074 static void prune_unused_types_walk (dw_die_ref);
4075 static void prune_unused_types_walk_attribs (dw_die_ref);
4076 static void prune_unused_types_prune (dw_die_ref);
4077 static void prune_unused_types (void);
4078 static int maybe_emit_file (int);
4080 /* Section names used to hold DWARF debugging information. */
4081 #ifndef DEBUG_INFO_SECTION
4082 #define DEBUG_INFO_SECTION ".debug_info"
4083 #endif
4084 #ifndef DEBUG_ABBREV_SECTION
4085 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
4086 #endif
4087 #ifndef DEBUG_ARANGES_SECTION
4088 #define DEBUG_ARANGES_SECTION ".debug_aranges"
4089 #endif
4090 #ifndef DEBUG_MACINFO_SECTION
4091 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
4092 #endif
4093 #ifndef DEBUG_LINE_SECTION
4094 #define DEBUG_LINE_SECTION ".debug_line"
4095 #endif
4096 #ifndef DEBUG_LOC_SECTION
4097 #define DEBUG_LOC_SECTION ".debug_loc"
4098 #endif
4099 #ifndef DEBUG_PUBNAMES_SECTION
4100 #define DEBUG_PUBNAMES_SECTION ".debug_pubnames"
4101 #endif
4102 #ifndef DEBUG_STR_SECTION
4103 #define DEBUG_STR_SECTION ".debug_str"
4104 #endif
4105 #ifndef DEBUG_RANGES_SECTION
4106 #define DEBUG_RANGES_SECTION ".debug_ranges"
4107 #endif
4109 /* Standard ELF section names for compiled code and data. */
4110 #ifndef TEXT_SECTION_NAME
4111 #define TEXT_SECTION_NAME ".text"
4112 #endif
4114 /* Section flags for .debug_str section. */
4115 #define DEBUG_STR_SECTION_FLAGS \
4116 (HAVE_GAS_SHF_MERGE && flag_merge_constants \
4117 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
4118 : SECTION_DEBUG)
4120 /* Labels we insert at beginning sections we can reference instead of
4121 the section names themselves. */
4123 #ifndef TEXT_SECTION_LABEL
4124 #define TEXT_SECTION_LABEL "Ltext"
4125 #endif
4126 #ifndef COLD_TEXT_SECTION_LABEL
4127 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
4128 #endif
4129 #ifndef DEBUG_LINE_SECTION_LABEL
4130 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
4131 #endif
4132 #ifndef DEBUG_INFO_SECTION_LABEL
4133 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
4134 #endif
4135 #ifndef DEBUG_ABBREV_SECTION_LABEL
4136 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
4137 #endif
4138 #ifndef DEBUG_LOC_SECTION_LABEL
4139 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
4140 #endif
4141 #ifndef DEBUG_RANGES_SECTION_LABEL
4142 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
4143 #endif
4144 #ifndef DEBUG_MACINFO_SECTION_LABEL
4145 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
4146 #endif
4148 /* Definitions of defaults for formats and names of various special
4149 (artificial) labels which may be generated within this file (when the -g
4150 options is used and DWARF2_DEBUGGING_INFO is in effect.
4151 If necessary, these may be overridden from within the tm.h file, but
4152 typically, overriding these defaults is unnecessary. */
4154 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4155 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4156 static char cold_text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4157 static char cold_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4158 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4159 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4160 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4161 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4162 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4163 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
4165 #ifndef TEXT_END_LABEL
4166 #define TEXT_END_LABEL "Letext"
4167 #endif
4168 #ifndef COLD_END_LABEL
4169 #define COLD_END_LABEL "Letext_cold"
4170 #endif
4171 #ifndef BLOCK_BEGIN_LABEL
4172 #define BLOCK_BEGIN_LABEL "LBB"
4173 #endif
4174 #ifndef BLOCK_END_LABEL
4175 #define BLOCK_END_LABEL "LBE"
4176 #endif
4177 #ifndef LINE_CODE_LABEL
4178 #define LINE_CODE_LABEL "LM"
4179 #endif
4180 #ifndef SEPARATE_LINE_CODE_LABEL
4181 #define SEPARATE_LINE_CODE_LABEL "LSM"
4182 #endif
4184 /* We allow a language front-end to designate a function that is to be
4185 called to "demangle" any name before it is put into a DIE. */
4187 static const char *(*demangle_name_func) (const char *);
4189 void
4190 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
4192 demangle_name_func = func;
4195 /* Test if rtl node points to a pseudo register. */
4197 static inline int
4198 is_pseudo_reg (rtx rtl)
4200 return ((REG_P (rtl) && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
4201 || (GET_CODE (rtl) == SUBREG
4202 && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
4205 /* Return a reference to a type, with its const and volatile qualifiers
4206 removed. */
4208 static inline tree
4209 type_main_variant (tree type)
4211 type = TYPE_MAIN_VARIANT (type);
4213 /* ??? There really should be only one main variant among any group of
4214 variants of a given type (and all of the MAIN_VARIANT values for all
4215 members of the group should point to that one type) but sometimes the C
4216 front-end messes this up for array types, so we work around that bug
4217 here. */
4218 if (TREE_CODE (type) == ARRAY_TYPE)
4219 while (type != TYPE_MAIN_VARIANT (type))
4220 type = TYPE_MAIN_VARIANT (type);
4222 return type;
4225 /* Return nonzero if the given type node represents a tagged type. */
4227 static inline int
4228 is_tagged_type (tree type)
4230 enum tree_code code = TREE_CODE (type);
4232 return (code == RECORD_TYPE || code == UNION_TYPE
4233 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
4236 /* Convert a DIE tag into its string name. */
4238 static const char *
4239 dwarf_tag_name (unsigned int tag)
4241 switch (tag)
4243 case DW_TAG_padding:
4244 return "DW_TAG_padding";
4245 case DW_TAG_array_type:
4246 return "DW_TAG_array_type";
4247 case DW_TAG_class_type:
4248 return "DW_TAG_class_type";
4249 case DW_TAG_entry_point:
4250 return "DW_TAG_entry_point";
4251 case DW_TAG_enumeration_type:
4252 return "DW_TAG_enumeration_type";
4253 case DW_TAG_formal_parameter:
4254 return "DW_TAG_formal_parameter";
4255 case DW_TAG_imported_declaration:
4256 return "DW_TAG_imported_declaration";
4257 case DW_TAG_label:
4258 return "DW_TAG_label";
4259 case DW_TAG_lexical_block:
4260 return "DW_TAG_lexical_block";
4261 case DW_TAG_member:
4262 return "DW_TAG_member";
4263 case DW_TAG_pointer_type:
4264 return "DW_TAG_pointer_type";
4265 case DW_TAG_reference_type:
4266 return "DW_TAG_reference_type";
4267 case DW_TAG_compile_unit:
4268 return "DW_TAG_compile_unit";
4269 case DW_TAG_string_type:
4270 return "DW_TAG_string_type";
4271 case DW_TAG_structure_type:
4272 return "DW_TAG_structure_type";
4273 case DW_TAG_subroutine_type:
4274 return "DW_TAG_subroutine_type";
4275 case DW_TAG_typedef:
4276 return "DW_TAG_typedef";
4277 case DW_TAG_union_type:
4278 return "DW_TAG_union_type";
4279 case DW_TAG_unspecified_parameters:
4280 return "DW_TAG_unspecified_parameters";
4281 case DW_TAG_variant:
4282 return "DW_TAG_variant";
4283 case DW_TAG_common_block:
4284 return "DW_TAG_common_block";
4285 case DW_TAG_common_inclusion:
4286 return "DW_TAG_common_inclusion";
4287 case DW_TAG_inheritance:
4288 return "DW_TAG_inheritance";
4289 case DW_TAG_inlined_subroutine:
4290 return "DW_TAG_inlined_subroutine";
4291 case DW_TAG_module:
4292 return "DW_TAG_module";
4293 case DW_TAG_ptr_to_member_type:
4294 return "DW_TAG_ptr_to_member_type";
4295 case DW_TAG_set_type:
4296 return "DW_TAG_set_type";
4297 case DW_TAG_subrange_type:
4298 return "DW_TAG_subrange_type";
4299 case DW_TAG_with_stmt:
4300 return "DW_TAG_with_stmt";
4301 case DW_TAG_access_declaration:
4302 return "DW_TAG_access_declaration";
4303 case DW_TAG_base_type:
4304 return "DW_TAG_base_type";
4305 case DW_TAG_catch_block:
4306 return "DW_TAG_catch_block";
4307 case DW_TAG_const_type:
4308 return "DW_TAG_const_type";
4309 case DW_TAG_constant:
4310 return "DW_TAG_constant";
4311 case DW_TAG_enumerator:
4312 return "DW_TAG_enumerator";
4313 case DW_TAG_file_type:
4314 return "DW_TAG_file_type";
4315 case DW_TAG_friend:
4316 return "DW_TAG_friend";
4317 case DW_TAG_namelist:
4318 return "DW_TAG_namelist";
4319 case DW_TAG_namelist_item:
4320 return "DW_TAG_namelist_item";
4321 case DW_TAG_namespace:
4322 return "DW_TAG_namespace";
4323 case DW_TAG_packed_type:
4324 return "DW_TAG_packed_type";
4325 case DW_TAG_subprogram:
4326 return "DW_TAG_subprogram";
4327 case DW_TAG_template_type_param:
4328 return "DW_TAG_template_type_param";
4329 case DW_TAG_template_value_param:
4330 return "DW_TAG_template_value_param";
4331 case DW_TAG_thrown_type:
4332 return "DW_TAG_thrown_type";
4333 case DW_TAG_try_block:
4334 return "DW_TAG_try_block";
4335 case DW_TAG_variant_part:
4336 return "DW_TAG_variant_part";
4337 case DW_TAG_variable:
4338 return "DW_TAG_variable";
4339 case DW_TAG_volatile_type:
4340 return "DW_TAG_volatile_type";
4341 case DW_TAG_imported_module:
4342 return "DW_TAG_imported_module";
4343 case DW_TAG_MIPS_loop:
4344 return "DW_TAG_MIPS_loop";
4345 case DW_TAG_format_label:
4346 return "DW_TAG_format_label";
4347 case DW_TAG_function_template:
4348 return "DW_TAG_function_template";
4349 case DW_TAG_class_template:
4350 return "DW_TAG_class_template";
4351 case DW_TAG_GNU_BINCL:
4352 return "DW_TAG_GNU_BINCL";
4353 case DW_TAG_GNU_EINCL:
4354 return "DW_TAG_GNU_EINCL";
4355 default:
4356 return "DW_TAG_<unknown>";
4360 /* Convert a DWARF attribute code into its string name. */
4362 static const char *
4363 dwarf_attr_name (unsigned int attr)
4365 switch (attr)
4367 case DW_AT_sibling:
4368 return "DW_AT_sibling";
4369 case DW_AT_location:
4370 return "DW_AT_location";
4371 case DW_AT_name:
4372 return "DW_AT_name";
4373 case DW_AT_ordering:
4374 return "DW_AT_ordering";
4375 case DW_AT_subscr_data:
4376 return "DW_AT_subscr_data";
4377 case DW_AT_byte_size:
4378 return "DW_AT_byte_size";
4379 case DW_AT_bit_offset:
4380 return "DW_AT_bit_offset";
4381 case DW_AT_bit_size:
4382 return "DW_AT_bit_size";
4383 case DW_AT_element_list:
4384 return "DW_AT_element_list";
4385 case DW_AT_stmt_list:
4386 return "DW_AT_stmt_list";
4387 case DW_AT_low_pc:
4388 return "DW_AT_low_pc";
4389 case DW_AT_high_pc:
4390 return "DW_AT_high_pc";
4391 case DW_AT_language:
4392 return "DW_AT_language";
4393 case DW_AT_member:
4394 return "DW_AT_member";
4395 case DW_AT_discr:
4396 return "DW_AT_discr";
4397 case DW_AT_discr_value:
4398 return "DW_AT_discr_value";
4399 case DW_AT_visibility:
4400 return "DW_AT_visibility";
4401 case DW_AT_import:
4402 return "DW_AT_import";
4403 case DW_AT_string_length:
4404 return "DW_AT_string_length";
4405 case DW_AT_common_reference:
4406 return "DW_AT_common_reference";
4407 case DW_AT_comp_dir:
4408 return "DW_AT_comp_dir";
4409 case DW_AT_const_value:
4410 return "DW_AT_const_value";
4411 case DW_AT_containing_type:
4412 return "DW_AT_containing_type";
4413 case DW_AT_default_value:
4414 return "DW_AT_default_value";
4415 case DW_AT_inline:
4416 return "DW_AT_inline";
4417 case DW_AT_is_optional:
4418 return "DW_AT_is_optional";
4419 case DW_AT_lower_bound:
4420 return "DW_AT_lower_bound";
4421 case DW_AT_producer:
4422 return "DW_AT_producer";
4423 case DW_AT_prototyped:
4424 return "DW_AT_prototyped";
4425 case DW_AT_return_addr:
4426 return "DW_AT_return_addr";
4427 case DW_AT_start_scope:
4428 return "DW_AT_start_scope";
4429 case DW_AT_stride_size:
4430 return "DW_AT_stride_size";
4431 case DW_AT_upper_bound:
4432 return "DW_AT_upper_bound";
4433 case DW_AT_abstract_origin:
4434 return "DW_AT_abstract_origin";
4435 case DW_AT_accessibility:
4436 return "DW_AT_accessibility";
4437 case DW_AT_address_class:
4438 return "DW_AT_address_class";
4439 case DW_AT_artificial:
4440 return "DW_AT_artificial";
4441 case DW_AT_base_types:
4442 return "DW_AT_base_types";
4443 case DW_AT_calling_convention:
4444 return "DW_AT_calling_convention";
4445 case DW_AT_count:
4446 return "DW_AT_count";
4447 case DW_AT_data_member_location:
4448 return "DW_AT_data_member_location";
4449 case DW_AT_decl_column:
4450 return "DW_AT_decl_column";
4451 case DW_AT_decl_file:
4452 return "DW_AT_decl_file";
4453 case DW_AT_decl_line:
4454 return "DW_AT_decl_line";
4455 case DW_AT_declaration:
4456 return "DW_AT_declaration";
4457 case DW_AT_discr_list:
4458 return "DW_AT_discr_list";
4459 case DW_AT_encoding:
4460 return "DW_AT_encoding";
4461 case DW_AT_external:
4462 return "DW_AT_external";
4463 case DW_AT_frame_base:
4464 return "DW_AT_frame_base";
4465 case DW_AT_friend:
4466 return "DW_AT_friend";
4467 case DW_AT_identifier_case:
4468 return "DW_AT_identifier_case";
4469 case DW_AT_macro_info:
4470 return "DW_AT_macro_info";
4471 case DW_AT_namelist_items:
4472 return "DW_AT_namelist_items";
4473 case DW_AT_priority:
4474 return "DW_AT_priority";
4475 case DW_AT_segment:
4476 return "DW_AT_segment";
4477 case DW_AT_specification:
4478 return "DW_AT_specification";
4479 case DW_AT_static_link:
4480 return "DW_AT_static_link";
4481 case DW_AT_type:
4482 return "DW_AT_type";
4483 case DW_AT_use_location:
4484 return "DW_AT_use_location";
4485 case DW_AT_variable_parameter:
4486 return "DW_AT_variable_parameter";
4487 case DW_AT_virtuality:
4488 return "DW_AT_virtuality";
4489 case DW_AT_vtable_elem_location:
4490 return "DW_AT_vtable_elem_location";
4492 case DW_AT_allocated:
4493 return "DW_AT_allocated";
4494 case DW_AT_associated:
4495 return "DW_AT_associated";
4496 case DW_AT_data_location:
4497 return "DW_AT_data_location";
4498 case DW_AT_stride:
4499 return "DW_AT_stride";
4500 case DW_AT_entry_pc:
4501 return "DW_AT_entry_pc";
4502 case DW_AT_use_UTF8:
4503 return "DW_AT_use_UTF8";
4504 case DW_AT_extension:
4505 return "DW_AT_extension";
4506 case DW_AT_ranges:
4507 return "DW_AT_ranges";
4508 case DW_AT_trampoline:
4509 return "DW_AT_trampoline";
4510 case DW_AT_call_column:
4511 return "DW_AT_call_column";
4512 case DW_AT_call_file:
4513 return "DW_AT_call_file";
4514 case DW_AT_call_line:
4515 return "DW_AT_call_line";
4517 case DW_AT_MIPS_fde:
4518 return "DW_AT_MIPS_fde";
4519 case DW_AT_MIPS_loop_begin:
4520 return "DW_AT_MIPS_loop_begin";
4521 case DW_AT_MIPS_tail_loop_begin:
4522 return "DW_AT_MIPS_tail_loop_begin";
4523 case DW_AT_MIPS_epilog_begin:
4524 return "DW_AT_MIPS_epilog_begin";
4525 case DW_AT_MIPS_loop_unroll_factor:
4526 return "DW_AT_MIPS_loop_unroll_factor";
4527 case DW_AT_MIPS_software_pipeline_depth:
4528 return "DW_AT_MIPS_software_pipeline_depth";
4529 case DW_AT_MIPS_linkage_name:
4530 return "DW_AT_MIPS_linkage_name";
4531 case DW_AT_MIPS_stride:
4532 return "DW_AT_MIPS_stride";
4533 case DW_AT_MIPS_abstract_name:
4534 return "DW_AT_MIPS_abstract_name";
4535 case DW_AT_MIPS_clone_origin:
4536 return "DW_AT_MIPS_clone_origin";
4537 case DW_AT_MIPS_has_inlines:
4538 return "DW_AT_MIPS_has_inlines";
4540 case DW_AT_sf_names:
4541 return "DW_AT_sf_names";
4542 case DW_AT_src_info:
4543 return "DW_AT_src_info";
4544 case DW_AT_mac_info:
4545 return "DW_AT_mac_info";
4546 case DW_AT_src_coords:
4547 return "DW_AT_src_coords";
4548 case DW_AT_body_begin:
4549 return "DW_AT_body_begin";
4550 case DW_AT_body_end:
4551 return "DW_AT_body_end";
4552 case DW_AT_GNU_vector:
4553 return "DW_AT_GNU_vector";
4555 case DW_AT_VMS_rtnbeg_pd_address:
4556 return "DW_AT_VMS_rtnbeg_pd_address";
4558 default:
4559 return "DW_AT_<unknown>";
4563 /* Convert a DWARF value form code into its string name. */
4565 static const char *
4566 dwarf_form_name (unsigned int form)
4568 switch (form)
4570 case DW_FORM_addr:
4571 return "DW_FORM_addr";
4572 case DW_FORM_block2:
4573 return "DW_FORM_block2";
4574 case DW_FORM_block4:
4575 return "DW_FORM_block4";
4576 case DW_FORM_data2:
4577 return "DW_FORM_data2";
4578 case DW_FORM_data4:
4579 return "DW_FORM_data4";
4580 case DW_FORM_data8:
4581 return "DW_FORM_data8";
4582 case DW_FORM_string:
4583 return "DW_FORM_string";
4584 case DW_FORM_block:
4585 return "DW_FORM_block";
4586 case DW_FORM_block1:
4587 return "DW_FORM_block1";
4588 case DW_FORM_data1:
4589 return "DW_FORM_data1";
4590 case DW_FORM_flag:
4591 return "DW_FORM_flag";
4592 case DW_FORM_sdata:
4593 return "DW_FORM_sdata";
4594 case DW_FORM_strp:
4595 return "DW_FORM_strp";
4596 case DW_FORM_udata:
4597 return "DW_FORM_udata";
4598 case DW_FORM_ref_addr:
4599 return "DW_FORM_ref_addr";
4600 case DW_FORM_ref1:
4601 return "DW_FORM_ref1";
4602 case DW_FORM_ref2:
4603 return "DW_FORM_ref2";
4604 case DW_FORM_ref4:
4605 return "DW_FORM_ref4";
4606 case DW_FORM_ref8:
4607 return "DW_FORM_ref8";
4608 case DW_FORM_ref_udata:
4609 return "DW_FORM_ref_udata";
4610 case DW_FORM_indirect:
4611 return "DW_FORM_indirect";
4612 default:
4613 return "DW_FORM_<unknown>";
4617 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
4618 instance of an inlined instance of a decl which is local to an inline
4619 function, so we have to trace all of the way back through the origin chain
4620 to find out what sort of node actually served as the original seed for the
4621 given block. */
4623 static tree
4624 decl_ultimate_origin (tree decl)
4626 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
4627 nodes in the function to point to themselves; ignore that if
4628 we're trying to output the abstract instance of this function. */
4629 if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4630 return NULL_TREE;
4632 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4633 most distant ancestor, this should never happen. */
4634 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl)));
4636 return DECL_ABSTRACT_ORIGIN (decl);
4639 /* Determine the "ultimate origin" of a block. The block may be an inlined
4640 instance of an inlined instance of a block which is local to an inline
4641 function, so we have to trace all of the way back through the origin chain
4642 to find out what sort of node actually served as the original seed for the
4643 given block. */
4645 static tree
4646 block_ultimate_origin (tree block)
4648 tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
4650 /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
4651 nodes in the function to point to themselves; ignore that if
4652 we're trying to output the abstract instance of this function. */
4653 if (BLOCK_ABSTRACT (block) && immediate_origin == block)
4654 return NULL_TREE;
4656 if (immediate_origin == NULL_TREE)
4657 return NULL_TREE;
4658 else
4660 tree ret_val;
4661 tree lookahead = immediate_origin;
4665 ret_val = lookahead;
4666 lookahead = (TREE_CODE (ret_val) == BLOCK
4667 ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
4669 while (lookahead != NULL && lookahead != ret_val);
4671 /* The block's abstract origin chain may not be the *ultimate* origin of
4672 the block. It could lead to a DECL that has an abstract origin set.
4673 If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
4674 will give us if it has one). Note that DECL's abstract origins are
4675 supposed to be the most distant ancestor (or so decl_ultimate_origin
4676 claims), so we don't need to loop following the DECL origins. */
4677 if (DECL_P (ret_val))
4678 return DECL_ORIGIN (ret_val);
4680 return ret_val;
4684 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
4685 of a virtual function may refer to a base class, so we check the 'this'
4686 parameter. */
4688 static tree
4689 decl_class_context (tree decl)
4691 tree context = NULL_TREE;
4693 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4694 context = DECL_CONTEXT (decl);
4695 else
4696 context = TYPE_MAIN_VARIANT
4697 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4699 if (context && !TYPE_P (context))
4700 context = NULL_TREE;
4702 return context;
4705 /* Add an attribute/value pair to a DIE. We build the lists up in reverse
4706 addition order, and correct that in reverse_all_dies. */
4708 static inline void
4709 add_dwarf_attr (dw_die_ref die, dw_attr_ref attr)
4711 if (die != NULL && attr != NULL)
4713 attr->dw_attr_next = die->die_attr;
4714 die->die_attr = attr;
4718 static inline enum dw_val_class
4719 AT_class (dw_attr_ref a)
4721 return a->dw_attr_val.val_class;
4724 /* Add a flag value attribute to a DIE. */
4726 static inline void
4727 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
4729 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4731 attr->dw_attr_next = NULL;
4732 attr->dw_attr = attr_kind;
4733 attr->dw_attr_val.val_class = dw_val_class_flag;
4734 attr->dw_attr_val.v.val_flag = flag;
4735 add_dwarf_attr (die, attr);
4738 static inline unsigned
4739 AT_flag (dw_attr_ref a)
4741 gcc_assert (a && AT_class (a) == dw_val_class_flag);
4742 return a->dw_attr_val.v.val_flag;
4745 /* Add a signed integer attribute value to a DIE. */
4747 static inline void
4748 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
4750 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4752 attr->dw_attr_next = NULL;
4753 attr->dw_attr = attr_kind;
4754 attr->dw_attr_val.val_class = dw_val_class_const;
4755 attr->dw_attr_val.v.val_int = int_val;
4756 add_dwarf_attr (die, attr);
4759 static inline HOST_WIDE_INT
4760 AT_int (dw_attr_ref a)
4762 gcc_assert (a && AT_class (a) == dw_val_class_const);
4763 return a->dw_attr_val.v.val_int;
4766 /* Add an unsigned integer attribute value to a DIE. */
4768 static inline void
4769 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
4770 unsigned HOST_WIDE_INT unsigned_val)
4772 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4774 attr->dw_attr_next = NULL;
4775 attr->dw_attr = attr_kind;
4776 attr->dw_attr_val.val_class = dw_val_class_unsigned_const;
4777 attr->dw_attr_val.v.val_unsigned = unsigned_val;
4778 add_dwarf_attr (die, attr);
4781 static inline unsigned HOST_WIDE_INT
4782 AT_unsigned (dw_attr_ref a)
4784 gcc_assert (a && AT_class (a) == dw_val_class_unsigned_const);
4785 return a->dw_attr_val.v.val_unsigned;
4788 /* Add an unsigned double integer attribute value to a DIE. */
4790 static inline void
4791 add_AT_long_long (dw_die_ref die, enum dwarf_attribute attr_kind,
4792 long unsigned int val_hi, long unsigned int val_low)
4794 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4796 attr->dw_attr_next = NULL;
4797 attr->dw_attr = attr_kind;
4798 attr->dw_attr_val.val_class = dw_val_class_long_long;
4799 attr->dw_attr_val.v.val_long_long.hi = val_hi;
4800 attr->dw_attr_val.v.val_long_long.low = val_low;
4801 add_dwarf_attr (die, attr);
4804 /* Add a floating point attribute value to a DIE and return it. */
4806 static inline void
4807 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
4808 unsigned int length, unsigned int elt_size, unsigned char *array)
4810 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4812 attr->dw_attr_next = NULL;
4813 attr->dw_attr = attr_kind;
4814 attr->dw_attr_val.val_class = dw_val_class_vec;
4815 attr->dw_attr_val.v.val_vec.length = length;
4816 attr->dw_attr_val.v.val_vec.elt_size = elt_size;
4817 attr->dw_attr_val.v.val_vec.array = array;
4818 add_dwarf_attr (die, attr);
4821 /* Hash and equality functions for debug_str_hash. */
4823 static hashval_t
4824 debug_str_do_hash (const void *x)
4826 return htab_hash_string (((const struct indirect_string_node *)x)->str);
4829 static int
4830 debug_str_eq (const void *x1, const void *x2)
4832 return strcmp ((((const struct indirect_string_node *)x1)->str),
4833 (const char *)x2) == 0;
4836 /* Add a string attribute value to a DIE. */
4838 static inline void
4839 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
4841 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4842 struct indirect_string_node *node;
4843 void **slot;
4845 if (! debug_str_hash)
4846 debug_str_hash = htab_create_ggc (10, debug_str_do_hash,
4847 debug_str_eq, NULL);
4849 slot = htab_find_slot_with_hash (debug_str_hash, str,
4850 htab_hash_string (str), INSERT);
4851 if (*slot == NULL)
4852 *slot = ggc_alloc_cleared (sizeof (struct indirect_string_node));
4853 node = (struct indirect_string_node *) *slot;
4854 node->str = ggc_strdup (str);
4855 node->refcount++;
4857 attr->dw_attr_next = NULL;
4858 attr->dw_attr = attr_kind;
4859 attr->dw_attr_val.val_class = dw_val_class_str;
4860 attr->dw_attr_val.v.val_str = node;
4861 add_dwarf_attr (die, attr);
4864 static inline const char *
4865 AT_string (dw_attr_ref a)
4867 gcc_assert (a && AT_class (a) == dw_val_class_str);
4868 return a->dw_attr_val.v.val_str->str;
4871 /* Find out whether a string should be output inline in DIE
4872 or out-of-line in .debug_str section. */
4874 static int
4875 AT_string_form (dw_attr_ref a)
4877 struct indirect_string_node *node;
4878 unsigned int len;
4879 char label[32];
4881 gcc_assert (a && AT_class (a) == dw_val_class_str);
4883 node = a->dw_attr_val.v.val_str;
4884 if (node->form)
4885 return node->form;
4887 len = strlen (node->str) + 1;
4889 /* If the string is shorter or equal to the size of the reference, it is
4890 always better to put it inline. */
4891 if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
4892 return node->form = DW_FORM_string;
4894 /* If we cannot expect the linker to merge strings in .debug_str
4895 section, only put it into .debug_str if it is worth even in this
4896 single module. */
4897 if ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) == 0
4898 && (len - DWARF_OFFSET_SIZE) * node->refcount <= len)
4899 return node->form = DW_FORM_string;
4901 ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
4902 ++dw2_string_counter;
4903 node->label = xstrdup (label);
4905 return node->form = DW_FORM_strp;
4908 /* Add a DIE reference attribute value to a DIE. */
4910 static inline void
4911 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
4913 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4915 attr->dw_attr_next = NULL;
4916 attr->dw_attr = attr_kind;
4917 attr->dw_attr_val.val_class = dw_val_class_die_ref;
4918 attr->dw_attr_val.v.val_die_ref.die = targ_die;
4919 attr->dw_attr_val.v.val_die_ref.external = 0;
4920 add_dwarf_attr (die, attr);
4923 /* Add an AT_specification attribute to a DIE, and also make the back
4924 pointer from the specification to the definition. */
4926 static inline void
4927 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
4929 add_AT_die_ref (die, DW_AT_specification, targ_die);
4930 gcc_assert (!targ_die->die_definition);
4931 targ_die->die_definition = die;
4934 static inline dw_die_ref
4935 AT_ref (dw_attr_ref a)
4937 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
4938 return a->dw_attr_val.v.val_die_ref.die;
4941 static inline int
4942 AT_ref_external (dw_attr_ref a)
4944 if (a && AT_class (a) == dw_val_class_die_ref)
4945 return a->dw_attr_val.v.val_die_ref.external;
4947 return 0;
4950 static inline void
4951 set_AT_ref_external (dw_attr_ref a, int i)
4953 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
4954 a->dw_attr_val.v.val_die_ref.external = i;
4957 /* Add an FDE reference attribute value to a DIE. */
4959 static inline void
4960 add_AT_fde_ref (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int targ_fde)
4962 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4964 attr->dw_attr_next = NULL;
4965 attr->dw_attr = attr_kind;
4966 attr->dw_attr_val.val_class = dw_val_class_fde_ref;
4967 attr->dw_attr_val.v.val_fde_index = targ_fde;
4968 add_dwarf_attr (die, attr);
4971 /* Add a location description attribute value to a DIE. */
4973 static inline void
4974 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
4976 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4978 attr->dw_attr_next = NULL;
4979 attr->dw_attr = attr_kind;
4980 attr->dw_attr_val.val_class = dw_val_class_loc;
4981 attr->dw_attr_val.v.val_loc = loc;
4982 add_dwarf_attr (die, attr);
4985 static inline dw_loc_descr_ref
4986 AT_loc (dw_attr_ref a)
4988 gcc_assert (a && AT_class (a) == dw_val_class_loc);
4989 return a->dw_attr_val.v.val_loc;
4992 static inline void
4993 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
4995 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4997 attr->dw_attr_next = NULL;
4998 attr->dw_attr = attr_kind;
4999 attr->dw_attr_val.val_class = dw_val_class_loc_list;
5000 attr->dw_attr_val.v.val_loc_list = loc_list;
5001 add_dwarf_attr (die, attr);
5002 have_location_lists = 1;
5005 static inline dw_loc_list_ref
5006 AT_loc_list (dw_attr_ref a)
5008 gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
5009 return a->dw_attr_val.v.val_loc_list;
5012 /* Add an address constant attribute value to a DIE. */
5014 static inline void
5015 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr)
5017 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5019 attr->dw_attr_next = NULL;
5020 attr->dw_attr = attr_kind;
5021 attr->dw_attr_val.val_class = dw_val_class_addr;
5022 attr->dw_attr_val.v.val_addr = addr;
5023 add_dwarf_attr (die, attr);
5026 static inline rtx
5027 AT_addr (dw_attr_ref a)
5029 gcc_assert (a && AT_class (a) == dw_val_class_addr);
5030 return a->dw_attr_val.v.val_addr;
5033 /* Add a label identifier attribute value to a DIE. */
5035 static inline void
5036 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind, const char *lbl_id)
5038 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5040 attr->dw_attr_next = NULL;
5041 attr->dw_attr = attr_kind;
5042 attr->dw_attr_val.val_class = dw_val_class_lbl_id;
5043 attr->dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
5044 add_dwarf_attr (die, attr);
5047 /* Add a section offset attribute value to a DIE. */
5049 static inline void
5050 add_AT_lbl_offset (dw_die_ref die, enum dwarf_attribute attr_kind, const char *label)
5052 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5054 attr->dw_attr_next = NULL;
5055 attr->dw_attr = attr_kind;
5056 attr->dw_attr_val.val_class = dw_val_class_lbl_offset;
5057 attr->dw_attr_val.v.val_lbl_id = xstrdup (label);
5058 add_dwarf_attr (die, attr);
5061 /* Add an offset attribute value to a DIE. */
5063 static inline void
5064 add_AT_offset (dw_die_ref die, enum dwarf_attribute attr_kind,
5065 unsigned HOST_WIDE_INT offset)
5067 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5069 attr->dw_attr_next = NULL;
5070 attr->dw_attr = attr_kind;
5071 attr->dw_attr_val.val_class = dw_val_class_offset;
5072 attr->dw_attr_val.v.val_offset = offset;
5073 add_dwarf_attr (die, attr);
5076 /* Add an range_list attribute value to a DIE. */
5078 static void
5079 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
5080 long unsigned int offset)
5082 dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
5084 attr->dw_attr_next = NULL;
5085 attr->dw_attr = attr_kind;
5086 attr->dw_attr_val.val_class = dw_val_class_range_list;
5087 attr->dw_attr_val.v.val_offset = offset;
5088 add_dwarf_attr (die, attr);
5091 static inline const char *
5092 AT_lbl (dw_attr_ref a)
5094 gcc_assert (a && (AT_class (a) == dw_val_class_lbl_id
5095 || AT_class (a) == dw_val_class_lbl_offset));
5096 return a->dw_attr_val.v.val_lbl_id;
5099 /* Get the attribute of type attr_kind. */
5101 static dw_attr_ref
5102 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5104 dw_attr_ref a;
5105 dw_die_ref spec = NULL;
5107 if (die != NULL)
5109 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5110 if (a->dw_attr == attr_kind)
5111 return a;
5112 else if (a->dw_attr == DW_AT_specification
5113 || a->dw_attr == DW_AT_abstract_origin)
5114 spec = AT_ref (a);
5116 if (spec)
5117 return get_AT (spec, attr_kind);
5120 return NULL;
5123 /* Return the "low pc" attribute value, typically associated with a subprogram
5124 DIE. Return null if the "low pc" attribute is either not present, or if it
5125 cannot be represented as an assembler label identifier. */
5127 static inline const char *
5128 get_AT_low_pc (dw_die_ref die)
5130 dw_attr_ref a = get_AT (die, DW_AT_low_pc);
5132 return a ? AT_lbl (a) : NULL;
5135 /* Return the "high pc" attribute value, typically associated with a subprogram
5136 DIE. Return null if the "high pc" attribute is either not present, or if it
5137 cannot be represented as an assembler label identifier. */
5139 static inline const char *
5140 get_AT_hi_pc (dw_die_ref die)
5142 dw_attr_ref a = get_AT (die, DW_AT_high_pc);
5144 return a ? AT_lbl (a) : NULL;
5147 /* Return the value of the string attribute designated by ATTR_KIND, or
5148 NULL if it is not present. */
5150 static inline const char *
5151 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
5153 dw_attr_ref a = get_AT (die, attr_kind);
5155 return a ? AT_string (a) : NULL;
5158 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
5159 if it is not present. */
5161 static inline int
5162 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
5164 dw_attr_ref a = get_AT (die, attr_kind);
5166 return a ? AT_flag (a) : 0;
5169 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
5170 if it is not present. */
5172 static inline unsigned
5173 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
5175 dw_attr_ref a = get_AT (die, attr_kind);
5177 return a ? AT_unsigned (a) : 0;
5180 static inline dw_die_ref
5181 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
5183 dw_attr_ref a = get_AT (die, attr_kind);
5185 return a ? AT_ref (a) : NULL;
5188 /* Return TRUE if the language is C or C++. */
5190 static inline bool
5191 is_c_family (void)
5193 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5195 return (lang == DW_LANG_C || lang == DW_LANG_C89
5196 || lang == DW_LANG_C_plus_plus);
5199 /* Return TRUE if the language is C++. */
5201 static inline bool
5202 is_cxx (void)
5204 return (get_AT_unsigned (comp_unit_die, DW_AT_language)
5205 == DW_LANG_C_plus_plus);
5208 /* Return TRUE if the language is Fortran. */
5210 static inline bool
5211 is_fortran (void)
5213 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5215 return (lang == DW_LANG_Fortran77
5216 || lang == DW_LANG_Fortran90
5217 || lang == DW_LANG_Fortran95);
5220 /* Return TRUE if the language is Java. */
5222 static inline bool
5223 is_java (void)
5225 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5227 return lang == DW_LANG_Java;
5230 /* Return TRUE if the language is Ada. */
5232 static inline bool
5233 is_ada (void)
5235 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5237 return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
5240 /* Free up the memory used by A. */
5242 static inline void free_AT (dw_attr_ref);
5243 static inline void
5244 free_AT (dw_attr_ref a)
5246 if (AT_class (a) == dw_val_class_str)
5247 if (a->dw_attr_val.v.val_str->refcount)
5248 a->dw_attr_val.v.val_str->refcount--;
5251 /* Remove the specified attribute if present. */
5253 static void
5254 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5256 dw_attr_ref *p;
5257 dw_attr_ref removed = NULL;
5259 if (die != NULL)
5261 for (p = &(die->die_attr); *p; p = &((*p)->dw_attr_next))
5262 if ((*p)->dw_attr == attr_kind)
5264 removed = *p;
5265 *p = (*p)->dw_attr_next;
5266 break;
5269 if (removed != 0)
5270 free_AT (removed);
5274 /* Remove child die whose die_tag is specified tag. */
5276 static void
5277 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
5279 dw_die_ref current, prev, next;
5280 current = die->die_child;
5281 prev = NULL;
5282 while (current != NULL)
5284 if (current->die_tag == tag)
5286 next = current->die_sib;
5287 if (prev == NULL)
5288 die->die_child = next;
5289 else
5290 prev->die_sib = next;
5291 free_die (current);
5292 current = next;
5294 else
5296 prev = current;
5297 current = current->die_sib;
5302 /* Free up the memory used by DIE. */
5304 static inline void
5305 free_die (dw_die_ref die)
5307 remove_children (die);
5310 /* Discard the children of this DIE. */
5312 static void
5313 remove_children (dw_die_ref die)
5315 dw_die_ref child_die = die->die_child;
5317 die->die_child = NULL;
5319 while (child_die != NULL)
5321 dw_die_ref tmp_die = child_die;
5322 dw_attr_ref a;
5324 child_die = child_die->die_sib;
5326 for (a = tmp_die->die_attr; a != NULL;)
5328 dw_attr_ref tmp_a = a;
5330 a = a->dw_attr_next;
5331 free_AT (tmp_a);
5334 free_die (tmp_die);
5338 /* Add a child DIE below its parent. We build the lists up in reverse
5339 addition order, and correct that in reverse_all_dies. */
5341 static inline void
5342 add_child_die (dw_die_ref die, dw_die_ref child_die)
5344 if (die != NULL && child_die != NULL)
5346 gcc_assert (die != child_die);
5348 child_die->die_parent = die;
5349 child_die->die_sib = die->die_child;
5350 die->die_child = child_die;
5354 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5355 is the specification, to the front of PARENT's list of children. */
5357 static void
5358 splice_child_die (dw_die_ref parent, dw_die_ref child)
5360 dw_die_ref *p;
5362 /* We want the declaration DIE from inside the class, not the
5363 specification DIE at toplevel. */
5364 if (child->die_parent != parent)
5366 dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
5368 if (tmp)
5369 child = tmp;
5372 gcc_assert (child->die_parent == parent
5373 || (child->die_parent
5374 == get_AT_ref (parent, DW_AT_specification)));
5376 for (p = &(child->die_parent->die_child); *p; p = &((*p)->die_sib))
5377 if (*p == child)
5379 *p = child->die_sib;
5380 break;
5383 child->die_parent = parent;
5384 child->die_sib = parent->die_child;
5385 parent->die_child = child;
5388 /* Return a pointer to a newly created DIE node. */
5390 static inline dw_die_ref
5391 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
5393 dw_die_ref die = ggc_alloc_cleared (sizeof (die_node));
5395 die->die_tag = tag_value;
5397 if (parent_die != NULL)
5398 add_child_die (parent_die, die);
5399 else
5401 limbo_die_node *limbo_node;
5403 limbo_node = ggc_alloc_cleared (sizeof (limbo_die_node));
5404 limbo_node->die = die;
5405 limbo_node->created_for = t;
5406 limbo_node->next = limbo_die_list;
5407 limbo_die_list = limbo_node;
5410 return die;
5413 /* Return the DIE associated with the given type specifier. */
5415 static inline dw_die_ref
5416 lookup_type_die (tree type)
5418 return TYPE_SYMTAB_DIE (type);
5421 /* Equate a DIE to a given type specifier. */
5423 static inline void
5424 equate_type_number_to_die (tree type, dw_die_ref type_die)
5426 TYPE_SYMTAB_DIE (type) = type_die;
5429 /* Returns a hash value for X (which really is a die_struct). */
5431 static hashval_t
5432 decl_die_table_hash (const void *x)
5434 return (hashval_t) ((const dw_die_ref) x)->decl_id;
5437 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
5439 static int
5440 decl_die_table_eq (const void *x, const void *y)
5442 return (((const dw_die_ref) x)->decl_id == DECL_UID ((const tree) y));
5445 /* Return the DIE associated with a given declaration. */
5447 static inline dw_die_ref
5448 lookup_decl_die (tree decl)
5450 return htab_find_with_hash (decl_die_table, decl, DECL_UID (decl));
5453 /* Returns a hash value for X (which really is a var_loc_list). */
5455 static hashval_t
5456 decl_loc_table_hash (const void *x)
5458 return (hashval_t) ((const var_loc_list *) x)->decl_id;
5461 /* Return nonzero if decl_id of var_loc_list X is the same as
5462 UID of decl *Y. */
5464 static int
5465 decl_loc_table_eq (const void *x, const void *y)
5467 return (((const var_loc_list *) x)->decl_id == DECL_UID ((const tree) y));
5470 /* Return the var_loc list associated with a given declaration. */
5472 static inline var_loc_list *
5473 lookup_decl_loc (tree decl)
5475 return htab_find_with_hash (decl_loc_table, decl, DECL_UID (decl));
5478 /* Equate a DIE to a particular declaration. */
5480 static void
5481 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
5483 unsigned int decl_id = DECL_UID (decl);
5484 void **slot;
5486 slot = htab_find_slot_with_hash (decl_die_table, decl, decl_id, INSERT);
5487 *slot = decl_die;
5488 decl_die->decl_id = decl_id;
5491 /* Add a variable location node to the linked list for DECL. */
5493 static void
5494 add_var_loc_to_decl (tree decl, struct var_loc_node *loc)
5496 unsigned int decl_id = DECL_UID (decl);
5497 var_loc_list *temp;
5498 void **slot;
5500 slot = htab_find_slot_with_hash (decl_loc_table, decl, decl_id, INSERT);
5501 if (*slot == NULL)
5503 temp = ggc_alloc_cleared (sizeof (var_loc_list));
5504 temp->decl_id = decl_id;
5505 *slot = temp;
5507 else
5508 temp = *slot;
5510 if (temp->last)
5512 /* If the current location is the same as the end of the list,
5513 we have nothing to do. */
5514 if (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp->last->var_loc_note),
5515 NOTE_VAR_LOCATION_LOC (loc->var_loc_note)))
5517 /* Add LOC to the end of list and update LAST. */
5518 temp->last->next = loc;
5519 temp->last = loc;
5522 /* Do not add empty location to the beginning of the list. */
5523 else if (NOTE_VAR_LOCATION_LOC (loc->var_loc_note) != NULL_RTX)
5525 temp->first = loc;
5526 temp->last = loc;
5530 /* Keep track of the number of spaces used to indent the
5531 output of the debugging routines that print the structure of
5532 the DIE internal representation. */
5533 static int print_indent;
5535 /* Indent the line the number of spaces given by print_indent. */
5537 static inline void
5538 print_spaces (FILE *outfile)
5540 fprintf (outfile, "%*s", print_indent, "");
5543 /* Print the information associated with a given DIE, and its children.
5544 This routine is a debugging aid only. */
5546 static void
5547 print_die (dw_die_ref die, FILE *outfile)
5549 dw_attr_ref a;
5550 dw_die_ref c;
5552 print_spaces (outfile);
5553 fprintf (outfile, "DIE %4lu: %s\n",
5554 die->die_offset, dwarf_tag_name (die->die_tag));
5555 print_spaces (outfile);
5556 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
5557 fprintf (outfile, " offset: %lu\n", die->die_offset);
5559 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5561 print_spaces (outfile);
5562 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
5564 switch (AT_class (a))
5566 case dw_val_class_addr:
5567 fprintf (outfile, "address");
5568 break;
5569 case dw_val_class_offset:
5570 fprintf (outfile, "offset");
5571 break;
5572 case dw_val_class_loc:
5573 fprintf (outfile, "location descriptor");
5574 break;
5575 case dw_val_class_loc_list:
5576 fprintf (outfile, "location list -> label:%s",
5577 AT_loc_list (a)->ll_symbol);
5578 break;
5579 case dw_val_class_range_list:
5580 fprintf (outfile, "range list");
5581 break;
5582 case dw_val_class_const:
5583 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, AT_int (a));
5584 break;
5585 case dw_val_class_unsigned_const:
5586 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, AT_unsigned (a));
5587 break;
5588 case dw_val_class_long_long:
5589 fprintf (outfile, "constant (%lu,%lu)",
5590 a->dw_attr_val.v.val_long_long.hi,
5591 a->dw_attr_val.v.val_long_long.low);
5592 break;
5593 case dw_val_class_vec:
5594 fprintf (outfile, "floating-point or vector constant");
5595 break;
5596 case dw_val_class_flag:
5597 fprintf (outfile, "%u", AT_flag (a));
5598 break;
5599 case dw_val_class_die_ref:
5600 if (AT_ref (a) != NULL)
5602 if (AT_ref (a)->die_symbol)
5603 fprintf (outfile, "die -> label: %s", AT_ref (a)->die_symbol);
5604 else
5605 fprintf (outfile, "die -> %lu", AT_ref (a)->die_offset);
5607 else
5608 fprintf (outfile, "die -> <null>");
5609 break;
5610 case dw_val_class_lbl_id:
5611 case dw_val_class_lbl_offset:
5612 fprintf (outfile, "label: %s", AT_lbl (a));
5613 break;
5614 case dw_val_class_str:
5615 if (AT_string (a) != NULL)
5616 fprintf (outfile, "\"%s\"", AT_string (a));
5617 else
5618 fprintf (outfile, "<null>");
5619 break;
5620 default:
5621 break;
5624 fprintf (outfile, "\n");
5627 if (die->die_child != NULL)
5629 print_indent += 4;
5630 for (c = die->die_child; c != NULL; c = c->die_sib)
5631 print_die (c, outfile);
5633 print_indent -= 4;
5635 if (print_indent == 0)
5636 fprintf (outfile, "\n");
5639 /* Print the contents of the source code line number correspondence table.
5640 This routine is a debugging aid only. */
5642 static void
5643 print_dwarf_line_table (FILE *outfile)
5645 unsigned i;
5646 dw_line_info_ref line_info;
5648 fprintf (outfile, "\n\nDWARF source line information\n");
5649 for (i = 1; i < line_info_table_in_use; i++)
5651 line_info = &line_info_table[i];
5652 fprintf (outfile, "%5d: ", i);
5653 fprintf (outfile, "%-20s",
5654 VARRAY_CHAR_PTR (file_table, line_info->dw_file_num));
5655 fprintf (outfile, "%6ld", line_info->dw_line_num);
5656 fprintf (outfile, "\n");
5659 fprintf (outfile, "\n\n");
5662 /* Print the information collected for a given DIE. */
5664 void
5665 debug_dwarf_die (dw_die_ref die)
5667 print_die (die, stderr);
5670 /* Print all DWARF information collected for the compilation unit.
5671 This routine is a debugging aid only. */
5673 void
5674 debug_dwarf (void)
5676 print_indent = 0;
5677 print_die (comp_unit_die, stderr);
5678 if (! DWARF2_ASM_LINE_DEBUG_INFO)
5679 print_dwarf_line_table (stderr);
5682 /* We build up the lists of children and attributes by pushing new ones
5683 onto the beginning of the list. Reverse the lists for DIE so that
5684 they are in order of addition. */
5686 static void
5687 reverse_die_lists (dw_die_ref die)
5689 dw_die_ref c, cp, cn;
5690 dw_attr_ref a, ap, an;
5692 for (a = die->die_attr, ap = 0; a; a = an)
5694 an = a->dw_attr_next;
5695 a->dw_attr_next = ap;
5696 ap = a;
5699 die->die_attr = ap;
5701 for (c = die->die_child, cp = 0; c; c = cn)
5703 cn = c->die_sib;
5704 c->die_sib = cp;
5705 cp = c;
5708 die->die_child = cp;
5711 /* reverse_die_lists only reverses the single die you pass it. Since we used to
5712 reverse all dies in add_sibling_attributes, which runs through all the dies,
5713 it would reverse all the dies. Now, however, since we don't call
5714 reverse_die_lists in add_sibling_attributes, we need a routine to
5715 recursively reverse all the dies. This is that routine. */
5717 static void
5718 reverse_all_dies (dw_die_ref die)
5720 dw_die_ref c;
5722 reverse_die_lists (die);
5724 for (c = die->die_child; c; c = c->die_sib)
5725 reverse_all_dies (c);
5728 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
5729 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
5730 DIE that marks the start of the DIEs for this include file. */
5732 static dw_die_ref
5733 push_new_compile_unit (dw_die_ref old_unit, dw_die_ref bincl_die)
5735 const char *filename = get_AT_string (bincl_die, DW_AT_name);
5736 dw_die_ref new_unit = gen_compile_unit_die (filename);
5738 new_unit->die_sib = old_unit;
5739 return new_unit;
5742 /* Close an include-file CU and reopen the enclosing one. */
5744 static dw_die_ref
5745 pop_compile_unit (dw_die_ref old_unit)
5747 dw_die_ref new_unit = old_unit->die_sib;
5749 old_unit->die_sib = NULL;
5750 return new_unit;
5753 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5754 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5756 /* Calculate the checksum of a location expression. */
5758 static inline void
5759 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
5761 CHECKSUM (loc->dw_loc_opc);
5762 CHECKSUM (loc->dw_loc_oprnd1);
5763 CHECKSUM (loc->dw_loc_oprnd2);
5766 /* Calculate the checksum of an attribute. */
5768 static void
5769 attr_checksum (dw_attr_ref at, struct md5_ctx *ctx, int *mark)
5771 dw_loc_descr_ref loc;
5772 rtx r;
5774 CHECKSUM (at->dw_attr);
5776 /* We don't care about differences in file numbering. */
5777 if (at->dw_attr == DW_AT_decl_file
5778 /* Or that this was compiled with a different compiler snapshot; if
5779 the output is the same, that's what matters. */
5780 || at->dw_attr == DW_AT_producer)
5781 return;
5783 switch (AT_class (at))
5785 case dw_val_class_const:
5786 CHECKSUM (at->dw_attr_val.v.val_int);
5787 break;
5788 case dw_val_class_unsigned_const:
5789 CHECKSUM (at->dw_attr_val.v.val_unsigned);
5790 break;
5791 case dw_val_class_long_long:
5792 CHECKSUM (at->dw_attr_val.v.val_long_long);
5793 break;
5794 case dw_val_class_vec:
5795 CHECKSUM (at->dw_attr_val.v.val_vec);
5796 break;
5797 case dw_val_class_flag:
5798 CHECKSUM (at->dw_attr_val.v.val_flag);
5799 break;
5800 case dw_val_class_str:
5801 CHECKSUM_STRING (AT_string (at));
5802 break;
5804 case dw_val_class_addr:
5805 r = AT_addr (at);
5806 gcc_assert (GET_CODE (r) == SYMBOL_REF);
5807 CHECKSUM_STRING (XSTR (r, 0));
5808 break;
5810 case dw_val_class_offset:
5811 CHECKSUM (at->dw_attr_val.v.val_offset);
5812 break;
5814 case dw_val_class_loc:
5815 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
5816 loc_checksum (loc, ctx);
5817 break;
5819 case dw_val_class_die_ref:
5820 die_checksum (AT_ref (at), ctx, mark);
5821 break;
5823 case dw_val_class_fde_ref:
5824 case dw_val_class_lbl_id:
5825 case dw_val_class_lbl_offset:
5826 break;
5828 default:
5829 break;
5833 /* Calculate the checksum of a DIE. */
5835 static void
5836 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
5838 dw_die_ref c;
5839 dw_attr_ref a;
5841 /* To avoid infinite recursion. */
5842 if (die->die_mark)
5844 CHECKSUM (die->die_mark);
5845 return;
5847 die->die_mark = ++(*mark);
5849 CHECKSUM (die->die_tag);
5851 for (a = die->die_attr; a; a = a->dw_attr_next)
5852 attr_checksum (a, ctx, mark);
5854 for (c = die->die_child; c; c = c->die_sib)
5855 die_checksum (c, ctx, mark);
5858 #undef CHECKSUM
5859 #undef CHECKSUM_STRING
5861 /* Do the location expressions look same? */
5862 static inline int
5863 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
5865 return loc1->dw_loc_opc == loc2->dw_loc_opc
5866 && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
5867 && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
5870 /* Do the values look the same? */
5871 static int
5872 same_dw_val_p (dw_val_node *v1, dw_val_node *v2, int *mark)
5874 dw_loc_descr_ref loc1, loc2;
5875 rtx r1, r2;
5877 if (v1->val_class != v2->val_class)
5878 return 0;
5880 switch (v1->val_class)
5882 case dw_val_class_const:
5883 return v1->v.val_int == v2->v.val_int;
5884 case dw_val_class_unsigned_const:
5885 return v1->v.val_unsigned == v2->v.val_unsigned;
5886 case dw_val_class_long_long:
5887 return v1->v.val_long_long.hi == v2->v.val_long_long.hi
5888 && v1->v.val_long_long.low == v2->v.val_long_long.low;
5889 case dw_val_class_vec:
5890 if (v1->v.val_vec.length != v2->v.val_vec.length
5891 || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
5892 return 0;
5893 if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
5894 v1->v.val_vec.length * v1->v.val_vec.elt_size))
5895 return 0;
5896 return 1;
5897 case dw_val_class_flag:
5898 return v1->v.val_flag == v2->v.val_flag;
5899 case dw_val_class_str:
5900 return !strcmp(v1->v.val_str->str, v2->v.val_str->str);
5902 case dw_val_class_addr:
5903 r1 = v1->v.val_addr;
5904 r2 = v2->v.val_addr;
5905 if (GET_CODE (r1) != GET_CODE (r2))
5906 return 0;
5907 gcc_assert (GET_CODE (r1) == SYMBOL_REF);
5908 return !strcmp (XSTR (r1, 0), XSTR (r2, 0));
5910 case dw_val_class_offset:
5911 return v1->v.val_offset == v2->v.val_offset;
5913 case dw_val_class_loc:
5914 for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
5915 loc1 && loc2;
5916 loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
5917 if (!same_loc_p (loc1, loc2, mark))
5918 return 0;
5919 return !loc1 && !loc2;
5921 case dw_val_class_die_ref:
5922 return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
5924 case dw_val_class_fde_ref:
5925 case dw_val_class_lbl_id:
5926 case dw_val_class_lbl_offset:
5927 return 1;
5929 default:
5930 return 1;
5934 /* Do the attributes look the same? */
5936 static int
5937 same_attr_p (dw_attr_ref at1, dw_attr_ref at2, int *mark)
5939 if (at1->dw_attr != at2->dw_attr)
5940 return 0;
5942 /* We don't care about differences in file numbering. */
5943 if (at1->dw_attr == DW_AT_decl_file
5944 /* Or that this was compiled with a different compiler snapshot; if
5945 the output is the same, that's what matters. */
5946 || at1->dw_attr == DW_AT_producer)
5947 return 1;
5949 return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
5952 /* Do the dies look the same? */
5954 static int
5955 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
5957 dw_die_ref c1, c2;
5958 dw_attr_ref a1, a2;
5960 /* To avoid infinite recursion. */
5961 if (die1->die_mark)
5962 return die1->die_mark == die2->die_mark;
5963 die1->die_mark = die2->die_mark = ++(*mark);
5965 if (die1->die_tag != die2->die_tag)
5966 return 0;
5968 for (a1 = die1->die_attr, a2 = die2->die_attr;
5969 a1 && a2;
5970 a1 = a1->dw_attr_next, a2 = a2->dw_attr_next)
5971 if (!same_attr_p (a1, a2, mark))
5972 return 0;
5973 if (a1 || a2)
5974 return 0;
5976 for (c1 = die1->die_child, c2 = die2->die_child;
5977 c1 && c2;
5978 c1 = c1->die_sib, c2 = c2->die_sib)
5979 if (!same_die_p (c1, c2, mark))
5980 return 0;
5981 if (c1 || c2)
5982 return 0;
5984 return 1;
5987 /* Do the dies look the same? Wrapper around same_die_p. */
5989 static int
5990 same_die_p_wrap (dw_die_ref die1, dw_die_ref die2)
5992 int mark = 0;
5993 int ret = same_die_p (die1, die2, &mark);
5995 unmark_all_dies (die1);
5996 unmark_all_dies (die2);
5998 return ret;
6001 /* The prefix to attach to symbols on DIEs in the current comdat debug
6002 info section. */
6003 static char *comdat_symbol_id;
6005 /* The index of the current symbol within the current comdat CU. */
6006 static unsigned int comdat_symbol_number;
6008 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
6009 children, and set comdat_symbol_id accordingly. */
6011 static void
6012 compute_section_prefix (dw_die_ref unit_die)
6014 const char *die_name = get_AT_string (unit_die, DW_AT_name);
6015 const char *base = die_name ? lbasename (die_name) : "anonymous";
6016 char *name = alloca (strlen (base) + 64);
6017 char *p;
6018 int i, mark;
6019 unsigned char checksum[16];
6020 struct md5_ctx ctx;
6022 /* Compute the checksum of the DIE, then append part of it as hex digits to
6023 the name filename of the unit. */
6025 md5_init_ctx (&ctx);
6026 mark = 0;
6027 die_checksum (unit_die, &ctx, &mark);
6028 unmark_all_dies (unit_die);
6029 md5_finish_ctx (&ctx, checksum);
6031 sprintf (name, "%s.", base);
6032 clean_symbol_name (name);
6034 p = name + strlen (name);
6035 for (i = 0; i < 4; i++)
6037 sprintf (p, "%.2x", checksum[i]);
6038 p += 2;
6041 comdat_symbol_id = unit_die->die_symbol = xstrdup (name);
6042 comdat_symbol_number = 0;
6045 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
6047 static int
6048 is_type_die (dw_die_ref die)
6050 switch (die->die_tag)
6052 case DW_TAG_array_type:
6053 case DW_TAG_class_type:
6054 case DW_TAG_enumeration_type:
6055 case DW_TAG_pointer_type:
6056 case DW_TAG_reference_type:
6057 case DW_TAG_string_type:
6058 case DW_TAG_structure_type:
6059 case DW_TAG_subroutine_type:
6060 case DW_TAG_union_type:
6061 case DW_TAG_ptr_to_member_type:
6062 case DW_TAG_set_type:
6063 case DW_TAG_subrange_type:
6064 case DW_TAG_base_type:
6065 case DW_TAG_const_type:
6066 case DW_TAG_file_type:
6067 case DW_TAG_packed_type:
6068 case DW_TAG_volatile_type:
6069 case DW_TAG_typedef:
6070 return 1;
6071 default:
6072 return 0;
6076 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
6077 Basically, we want to choose the bits that are likely to be shared between
6078 compilations (types) and leave out the bits that are specific to individual
6079 compilations (functions). */
6081 static int
6082 is_comdat_die (dw_die_ref c)
6084 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
6085 we do for stabs. The advantage is a greater likelihood of sharing between
6086 objects that don't include headers in the same order (and therefore would
6087 put the base types in a different comdat). jason 8/28/00 */
6089 if (c->die_tag == DW_TAG_base_type)
6090 return 0;
6092 if (c->die_tag == DW_TAG_pointer_type
6093 || c->die_tag == DW_TAG_reference_type
6094 || c->die_tag == DW_TAG_const_type
6095 || c->die_tag == DW_TAG_volatile_type)
6097 dw_die_ref t = get_AT_ref (c, DW_AT_type);
6099 return t ? is_comdat_die (t) : 0;
6102 return is_type_die (c);
6105 /* Returns 1 iff C is the sort of DIE that might be referred to from another
6106 compilation unit. */
6108 static int
6109 is_symbol_die (dw_die_ref c)
6111 return (is_type_die (c)
6112 || (get_AT (c, DW_AT_declaration)
6113 && !get_AT (c, DW_AT_specification)));
6116 static char *
6117 gen_internal_sym (const char *prefix)
6119 char buf[256];
6121 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
6122 return xstrdup (buf);
6125 /* Assign symbols to all worthy DIEs under DIE. */
6127 static void
6128 assign_symbol_names (dw_die_ref die)
6130 dw_die_ref c;
6132 if (is_symbol_die (die))
6134 if (comdat_symbol_id)
6136 char *p = alloca (strlen (comdat_symbol_id) + 64);
6138 sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
6139 comdat_symbol_id, comdat_symbol_number++);
6140 die->die_symbol = xstrdup (p);
6142 else
6143 die->die_symbol = gen_internal_sym ("LDIE");
6146 for (c = die->die_child; c != NULL; c = c->die_sib)
6147 assign_symbol_names (c);
6150 struct cu_hash_table_entry
6152 dw_die_ref cu;
6153 unsigned min_comdat_num, max_comdat_num;
6154 struct cu_hash_table_entry *next;
6157 /* Routines to manipulate hash table of CUs. */
6158 static hashval_t
6159 htab_cu_hash (const void *of)
6161 const struct cu_hash_table_entry *entry = of;
6163 return htab_hash_string (entry->cu->die_symbol);
6166 static int
6167 htab_cu_eq (const void *of1, const void *of2)
6169 const struct cu_hash_table_entry *entry1 = of1;
6170 const struct die_struct *entry2 = of2;
6172 return !strcmp (entry1->cu->die_symbol, entry2->die_symbol);
6175 static void
6176 htab_cu_del (void *what)
6178 struct cu_hash_table_entry *next, *entry = what;
6180 while (entry)
6182 next = entry->next;
6183 free (entry);
6184 entry = next;
6188 /* Check whether we have already seen this CU and set up SYM_NUM
6189 accordingly. */
6190 static int
6191 check_duplicate_cu (dw_die_ref cu, htab_t htable, unsigned int *sym_num)
6193 struct cu_hash_table_entry dummy;
6194 struct cu_hash_table_entry **slot, *entry, *last = &dummy;
6196 dummy.max_comdat_num = 0;
6198 slot = (struct cu_hash_table_entry **)
6199 htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
6200 INSERT);
6201 entry = *slot;
6203 for (; entry; last = entry, entry = entry->next)
6205 if (same_die_p_wrap (cu, entry->cu))
6206 break;
6209 if (entry)
6211 *sym_num = entry->min_comdat_num;
6212 return 1;
6215 entry = xcalloc (1, sizeof (struct cu_hash_table_entry));
6216 entry->cu = cu;
6217 entry->min_comdat_num = *sym_num = last->max_comdat_num;
6218 entry->next = *slot;
6219 *slot = entry;
6221 return 0;
6224 /* Record SYM_NUM to record of CU in HTABLE. */
6225 static void
6226 record_comdat_symbol_number (dw_die_ref cu, htab_t htable, unsigned int sym_num)
6228 struct cu_hash_table_entry **slot, *entry;
6230 slot = (struct cu_hash_table_entry **)
6231 htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
6232 NO_INSERT);
6233 entry = *slot;
6235 entry->max_comdat_num = sym_num;
6238 /* Traverse the DIE (which is always comp_unit_die), and set up
6239 additional compilation units for each of the include files we see
6240 bracketed by BINCL/EINCL. */
6242 static void
6243 break_out_includes (dw_die_ref die)
6245 dw_die_ref *ptr;
6246 dw_die_ref unit = NULL;
6247 limbo_die_node *node, **pnode;
6248 htab_t cu_hash_table;
6250 for (ptr = &(die->die_child); *ptr;)
6252 dw_die_ref c = *ptr;
6254 if (c->die_tag == DW_TAG_GNU_BINCL || c->die_tag == DW_TAG_GNU_EINCL
6255 || (unit && is_comdat_die (c)))
6257 /* This DIE is for a secondary CU; remove it from the main one. */
6258 *ptr = c->die_sib;
6260 if (c->die_tag == DW_TAG_GNU_BINCL)
6262 unit = push_new_compile_unit (unit, c);
6263 free_die (c);
6265 else if (c->die_tag == DW_TAG_GNU_EINCL)
6267 unit = pop_compile_unit (unit);
6268 free_die (c);
6270 else
6271 add_child_die (unit, c);
6273 else
6275 /* Leave this DIE in the main CU. */
6276 ptr = &(c->die_sib);
6277 continue;
6281 #if 0
6282 /* We can only use this in debugging, since the frontend doesn't check
6283 to make sure that we leave every include file we enter. */
6284 gcc_assert (!unit);
6285 #endif
6287 assign_symbol_names (die);
6288 cu_hash_table = htab_create (10, htab_cu_hash, htab_cu_eq, htab_cu_del);
6289 for (node = limbo_die_list, pnode = &limbo_die_list;
6290 node;
6291 node = node->next)
6293 int is_dupl;
6295 compute_section_prefix (node->die);
6296 is_dupl = check_duplicate_cu (node->die, cu_hash_table,
6297 &comdat_symbol_number);
6298 assign_symbol_names (node->die);
6299 if (is_dupl)
6300 *pnode = node->next;
6301 else
6303 pnode = &node->next;
6304 record_comdat_symbol_number (node->die, cu_hash_table,
6305 comdat_symbol_number);
6308 htab_delete (cu_hash_table);
6311 /* Traverse the DIE and add a sibling attribute if it may have the
6312 effect of speeding up access to siblings. To save some space,
6313 avoid generating sibling attributes for DIE's without children. */
6315 static void
6316 add_sibling_attributes (dw_die_ref die)
6318 dw_die_ref c;
6320 if (die->die_tag != DW_TAG_compile_unit
6321 && die->die_sib && die->die_child != NULL)
6322 /* Add the sibling link to the front of the attribute list. */
6323 add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
6325 for (c = die->die_child; c != NULL; c = c->die_sib)
6326 add_sibling_attributes (c);
6329 /* Output all location lists for the DIE and its children. */
6331 static void
6332 output_location_lists (dw_die_ref die)
6334 dw_die_ref c;
6335 dw_attr_ref d_attr;
6337 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
6338 if (AT_class (d_attr) == dw_val_class_loc_list)
6339 output_loc_list (AT_loc_list (d_attr));
6341 for (c = die->die_child; c != NULL; c = c->die_sib)
6342 output_location_lists (c);
6346 /* The format of each DIE (and its attribute value pairs) is encoded in an
6347 abbreviation table. This routine builds the abbreviation table and assigns
6348 a unique abbreviation id for each abbreviation entry. The children of each
6349 die are visited recursively. */
6351 static void
6352 build_abbrev_table (dw_die_ref die)
6354 unsigned long abbrev_id;
6355 unsigned int n_alloc;
6356 dw_die_ref c;
6357 dw_attr_ref d_attr, a_attr;
6359 /* Scan the DIE references, and mark as external any that refer to
6360 DIEs from other CUs (i.e. those which are not marked). */
6361 for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
6362 if (AT_class (d_attr) == dw_val_class_die_ref
6363 && AT_ref (d_attr)->die_mark == 0)
6365 gcc_assert (AT_ref (d_attr)->die_symbol);
6367 set_AT_ref_external (d_attr, 1);
6370 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6372 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6374 if (abbrev->die_tag == die->die_tag)
6376 if ((abbrev->die_child != NULL) == (die->die_child != NULL))
6378 a_attr = abbrev->die_attr;
6379 d_attr = die->die_attr;
6381 while (a_attr != NULL && d_attr != NULL)
6383 if ((a_attr->dw_attr != d_attr->dw_attr)
6384 || (value_format (a_attr) != value_format (d_attr)))
6385 break;
6387 a_attr = a_attr->dw_attr_next;
6388 d_attr = d_attr->dw_attr_next;
6391 if (a_attr == NULL && d_attr == NULL)
6392 break;
6397 if (abbrev_id >= abbrev_die_table_in_use)
6399 if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
6401 n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
6402 abbrev_die_table = ggc_realloc (abbrev_die_table,
6403 sizeof (dw_die_ref) * n_alloc);
6405 memset (&abbrev_die_table[abbrev_die_table_allocated], 0,
6406 (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
6407 abbrev_die_table_allocated = n_alloc;
6410 ++abbrev_die_table_in_use;
6411 abbrev_die_table[abbrev_id] = die;
6414 die->die_abbrev = abbrev_id;
6415 for (c = die->die_child; c != NULL; c = c->die_sib)
6416 build_abbrev_table (c);
6419 /* Return the power-of-two number of bytes necessary to represent VALUE. */
6421 static int
6422 constant_size (long unsigned int value)
6424 int log;
6426 if (value == 0)
6427 log = 0;
6428 else
6429 log = floor_log2 (value);
6431 log = log / 8;
6432 log = 1 << (floor_log2 (log) + 1);
6434 return log;
6437 /* Return the size of a DIE as it is represented in the
6438 .debug_info section. */
6440 static unsigned long
6441 size_of_die (dw_die_ref die)
6443 unsigned long size = 0;
6444 dw_attr_ref a;
6446 size += size_of_uleb128 (die->die_abbrev);
6447 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
6449 switch (AT_class (a))
6451 case dw_val_class_addr:
6452 size += DWARF2_ADDR_SIZE;
6453 break;
6454 case dw_val_class_offset:
6455 size += DWARF_OFFSET_SIZE;
6456 break;
6457 case dw_val_class_loc:
6459 unsigned long lsize = size_of_locs (AT_loc (a));
6461 /* Block length. */
6462 size += constant_size (lsize);
6463 size += lsize;
6465 break;
6466 case dw_val_class_loc_list:
6467 size += DWARF_OFFSET_SIZE;
6468 break;
6469 case dw_val_class_range_list:
6470 size += DWARF_OFFSET_SIZE;
6471 break;
6472 case dw_val_class_const:
6473 size += size_of_sleb128 (AT_int (a));
6474 break;
6475 case dw_val_class_unsigned_const:
6476 size += constant_size (AT_unsigned (a));
6477 break;
6478 case dw_val_class_long_long:
6479 size += 1 + 2*HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR; /* block */
6480 break;
6481 case dw_val_class_vec:
6482 size += 1 + (a->dw_attr_val.v.val_vec.length
6483 * a->dw_attr_val.v.val_vec.elt_size); /* block */
6484 break;
6485 case dw_val_class_flag:
6486 size += 1;
6487 break;
6488 case dw_val_class_die_ref:
6489 if (AT_ref_external (a))
6490 size += DWARF2_ADDR_SIZE;
6491 else
6492 size += DWARF_OFFSET_SIZE;
6493 break;
6494 case dw_val_class_fde_ref:
6495 size += DWARF_OFFSET_SIZE;
6496 break;
6497 case dw_val_class_lbl_id:
6498 size += DWARF2_ADDR_SIZE;
6499 break;
6500 case dw_val_class_lbl_offset:
6501 size += DWARF_OFFSET_SIZE;
6502 break;
6503 case dw_val_class_str:
6504 if (AT_string_form (a) == DW_FORM_strp)
6505 size += DWARF_OFFSET_SIZE;
6506 else
6507 size += strlen (a->dw_attr_val.v.val_str->str) + 1;
6508 break;
6509 default:
6510 gcc_unreachable ();
6514 return size;
6517 /* Size the debugging information associated with a given DIE. Visits the
6518 DIE's children recursively. Updates the global variable next_die_offset, on
6519 each time through. Uses the current value of next_die_offset to update the
6520 die_offset field in each DIE. */
6522 static void
6523 calc_die_sizes (dw_die_ref die)
6525 dw_die_ref c;
6527 die->die_offset = next_die_offset;
6528 next_die_offset += size_of_die (die);
6530 for (c = die->die_child; c != NULL; c = c->die_sib)
6531 calc_die_sizes (c);
6533 if (die->die_child != NULL)
6534 /* Count the null byte used to terminate sibling lists. */
6535 next_die_offset += 1;
6538 /* Set the marks for a die and its children. We do this so
6539 that we know whether or not a reference needs to use FORM_ref_addr; only
6540 DIEs in the same CU will be marked. We used to clear out the offset
6541 and use that as the flag, but ran into ordering problems. */
6543 static void
6544 mark_dies (dw_die_ref die)
6546 dw_die_ref c;
6548 gcc_assert (!die->die_mark);
6550 die->die_mark = 1;
6551 for (c = die->die_child; c; c = c->die_sib)
6552 mark_dies (c);
6555 /* Clear the marks for a die and its children. */
6557 static void
6558 unmark_dies (dw_die_ref die)
6560 dw_die_ref c;
6562 gcc_assert (die->die_mark);
6564 die->die_mark = 0;
6565 for (c = die->die_child; c; c = c->die_sib)
6566 unmark_dies (c);
6569 /* Clear the marks for a die, its children and referred dies. */
6571 static void
6572 unmark_all_dies (dw_die_ref die)
6574 dw_die_ref c;
6575 dw_attr_ref a;
6577 if (!die->die_mark)
6578 return;
6579 die->die_mark = 0;
6581 for (c = die->die_child; c; c = c->die_sib)
6582 unmark_all_dies (c);
6584 for (a = die->die_attr; a; a = a->dw_attr_next)
6585 if (AT_class (a) == dw_val_class_die_ref)
6586 unmark_all_dies (AT_ref (a));
6589 /* Return the size of the .debug_pubnames table generated for the
6590 compilation unit. */
6592 static unsigned long
6593 size_of_pubnames (void)
6595 unsigned long size;
6596 unsigned i;
6598 size = DWARF_PUBNAMES_HEADER_SIZE;
6599 for (i = 0; i < pubname_table_in_use; i++)
6601 pubname_ref p = &pubname_table[i];
6602 size += DWARF_OFFSET_SIZE + strlen (p->name) + 1;
6605 size += DWARF_OFFSET_SIZE;
6606 return size;
6609 /* Return the size of the information in the .debug_aranges section. */
6611 static unsigned long
6612 size_of_aranges (void)
6614 unsigned long size;
6616 size = DWARF_ARANGES_HEADER_SIZE;
6618 /* Count the address/length pair for this compilation unit. */
6619 size += 2 * DWARF2_ADDR_SIZE;
6620 size += 2 * DWARF2_ADDR_SIZE * arange_table_in_use;
6622 /* Count the two zero words used to terminated the address range table. */
6623 size += 2 * DWARF2_ADDR_SIZE;
6624 return size;
6627 /* Select the encoding of an attribute value. */
6629 static enum dwarf_form
6630 value_format (dw_attr_ref a)
6632 switch (a->dw_attr_val.val_class)
6634 case dw_val_class_addr:
6635 return DW_FORM_addr;
6636 case dw_val_class_range_list:
6637 case dw_val_class_offset:
6638 switch (DWARF_OFFSET_SIZE)
6640 case 4:
6641 return DW_FORM_data4;
6642 case 8:
6643 return DW_FORM_data8;
6644 default:
6645 gcc_unreachable ();
6647 case dw_val_class_loc_list:
6648 /* FIXME: Could be DW_FORM_data8, with a > 32 bit size
6649 .debug_loc section */
6650 return DW_FORM_data4;
6651 case dw_val_class_loc:
6652 switch (constant_size (size_of_locs (AT_loc (a))))
6654 case 1:
6655 return DW_FORM_block1;
6656 case 2:
6657 return DW_FORM_block2;
6658 default:
6659 gcc_unreachable ();
6661 case dw_val_class_const:
6662 return DW_FORM_sdata;
6663 case dw_val_class_unsigned_const:
6664 switch (constant_size (AT_unsigned (a)))
6666 case 1:
6667 return DW_FORM_data1;
6668 case 2:
6669 return DW_FORM_data2;
6670 case 4:
6671 return DW_FORM_data4;
6672 case 8:
6673 return DW_FORM_data8;
6674 default:
6675 gcc_unreachable ();
6677 case dw_val_class_long_long:
6678 return DW_FORM_block1;
6679 case dw_val_class_vec:
6680 return DW_FORM_block1;
6681 case dw_val_class_flag:
6682 return DW_FORM_flag;
6683 case dw_val_class_die_ref:
6684 if (AT_ref_external (a))
6685 return DW_FORM_ref_addr;
6686 else
6687 return DW_FORM_ref;
6688 case dw_val_class_fde_ref:
6689 return DW_FORM_data;
6690 case dw_val_class_lbl_id:
6691 return DW_FORM_addr;
6692 case dw_val_class_lbl_offset:
6693 return DW_FORM_data;
6694 case dw_val_class_str:
6695 return AT_string_form (a);
6697 default:
6698 gcc_unreachable ();
6702 /* Output the encoding of an attribute value. */
6704 static void
6705 output_value_format (dw_attr_ref a)
6707 enum dwarf_form form = value_format (a);
6709 dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
6712 /* Output the .debug_abbrev section which defines the DIE abbreviation
6713 table. */
6715 static void
6716 output_abbrev_section (void)
6718 unsigned long abbrev_id;
6720 dw_attr_ref a_attr;
6722 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6724 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6726 dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
6727 dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
6728 dwarf_tag_name (abbrev->die_tag));
6730 if (abbrev->die_child != NULL)
6731 dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
6732 else
6733 dw2_asm_output_data (1, DW_children_no, "DW_children_no");
6735 for (a_attr = abbrev->die_attr; a_attr != NULL;
6736 a_attr = a_attr->dw_attr_next)
6738 dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
6739 dwarf_attr_name (a_attr->dw_attr));
6740 output_value_format (a_attr);
6743 dw2_asm_output_data (1, 0, NULL);
6744 dw2_asm_output_data (1, 0, NULL);
6747 /* Terminate the table. */
6748 dw2_asm_output_data (1, 0, NULL);
6751 /* Output a symbol we can use to refer to this DIE from another CU. */
6753 static inline void
6754 output_die_symbol (dw_die_ref die)
6756 char *sym = die->die_symbol;
6758 if (sym == 0)
6759 return;
6761 if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
6762 /* We make these global, not weak; if the target doesn't support
6763 .linkonce, it doesn't support combining the sections, so debugging
6764 will break. */
6765 targetm.asm_out.globalize_label (asm_out_file, sym);
6767 ASM_OUTPUT_LABEL (asm_out_file, sym);
6770 /* Return a new location list, given the begin and end range, and the
6771 expression. gensym tells us whether to generate a new internal symbol for
6772 this location list node, which is done for the head of the list only. */
6774 static inline dw_loc_list_ref
6775 new_loc_list (dw_loc_descr_ref expr, const char *begin, const char *end,
6776 const char *section, unsigned int gensym)
6778 dw_loc_list_ref retlist = ggc_alloc_cleared (sizeof (dw_loc_list_node));
6780 retlist->begin = begin;
6781 retlist->end = end;
6782 retlist->expr = expr;
6783 retlist->section = section;
6784 if (gensym)
6785 retlist->ll_symbol = gen_internal_sym ("LLST");
6787 return retlist;
6790 /* Add a location description expression to a location list. */
6792 static inline void
6793 add_loc_descr_to_loc_list (dw_loc_list_ref *list_head, dw_loc_descr_ref descr,
6794 const char *begin, const char *end,
6795 const char *section)
6797 dw_loc_list_ref *d;
6799 /* Find the end of the chain. */
6800 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
6803 /* Add a new location list node to the list. */
6804 *d = new_loc_list (descr, begin, end, section, 0);
6807 static void
6808 dwarf2out_switch_text_section (void)
6810 dw_fde_ref fde;
6812 if (!cfun)
6813 internal_error ("Attempt to switch text sections without any code.");
6815 fde = &fde_table[fde_table_in_use - 1];
6816 fde->dw_fde_switched_sections = true;
6817 fde->dw_fde_hot_section_label = cfun->hot_section_label;
6818 fde->dw_fde_hot_section_end_label = cfun->hot_section_end_label;
6819 fde->dw_fde_unlikely_section_label = cfun->cold_section_label;
6820 fde->dw_fde_unlikely_section_end_label = cfun->cold_section_end_label;
6821 separate_line_info_table_in_use++;
6824 /* Output the location list given to us. */
6826 static void
6827 output_loc_list (dw_loc_list_ref list_head)
6829 dw_loc_list_ref curr = list_head;
6831 ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
6833 /* Walk the location list, and output each range + expression. */
6834 for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
6836 unsigned long size;
6837 if (separate_line_info_table_in_use == 0)
6839 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
6840 "Location list begin address (%s)",
6841 list_head->ll_symbol);
6842 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
6843 "Location list end address (%s)",
6844 list_head->ll_symbol);
6846 else
6848 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
6849 "Location list begin address (%s)",
6850 list_head->ll_symbol);
6851 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
6852 "Location list end address (%s)",
6853 list_head->ll_symbol);
6855 size = size_of_locs (curr->expr);
6857 /* Output the block length for this list of location operations. */
6858 gcc_assert (size <= 0xffff);
6859 dw2_asm_output_data (2, size, "%s", "Location expression size");
6861 output_loc_sequence (curr->expr);
6864 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
6865 "Location list terminator begin (%s)",
6866 list_head->ll_symbol);
6867 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
6868 "Location list terminator end (%s)",
6869 list_head->ll_symbol);
6872 /* Output the DIE and its attributes. Called recursively to generate
6873 the definitions of each child DIE. */
6875 static void
6876 output_die (dw_die_ref die)
6878 dw_attr_ref a;
6879 dw_die_ref c;
6880 unsigned long size;
6882 /* If someone in another CU might refer to us, set up a symbol for
6883 them to point to. */
6884 if (die->die_symbol)
6885 output_die_symbol (die);
6887 dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (0x%lx) %s)",
6888 die->die_offset, dwarf_tag_name (die->die_tag));
6890 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
6892 const char *name = dwarf_attr_name (a->dw_attr);
6894 switch (AT_class (a))
6896 case dw_val_class_addr:
6897 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
6898 break;
6900 case dw_val_class_offset:
6901 dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
6902 "%s", name);
6903 break;
6905 case dw_val_class_range_list:
6907 char *p = strchr (ranges_section_label, '\0');
6909 sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
6910 a->dw_attr_val.v.val_offset);
6911 dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
6912 "%s", name);
6913 *p = '\0';
6915 break;
6917 case dw_val_class_loc:
6918 size = size_of_locs (AT_loc (a));
6920 /* Output the block length for this list of location operations. */
6921 dw2_asm_output_data (constant_size (size), size, "%s", name);
6923 output_loc_sequence (AT_loc (a));
6924 break;
6926 case dw_val_class_const:
6927 /* ??? It would be slightly more efficient to use a scheme like is
6928 used for unsigned constants below, but gdb 4.x does not sign
6929 extend. Gdb 5.x does sign extend. */
6930 dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
6931 break;
6933 case dw_val_class_unsigned_const:
6934 dw2_asm_output_data (constant_size (AT_unsigned (a)),
6935 AT_unsigned (a), "%s", name);
6936 break;
6938 case dw_val_class_long_long:
6940 unsigned HOST_WIDE_INT first, second;
6942 dw2_asm_output_data (1,
6943 2 * HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6944 "%s", name);
6946 if (WORDS_BIG_ENDIAN)
6948 first = a->dw_attr_val.v.val_long_long.hi;
6949 second = a->dw_attr_val.v.val_long_long.low;
6951 else
6953 first = a->dw_attr_val.v.val_long_long.low;
6954 second = a->dw_attr_val.v.val_long_long.hi;
6957 dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6958 first, "long long constant");
6959 dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6960 second, NULL);
6962 break;
6964 case dw_val_class_vec:
6966 unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
6967 unsigned int len = a->dw_attr_val.v.val_vec.length;
6968 unsigned int i;
6969 unsigned char *p;
6971 dw2_asm_output_data (1, len * elt_size, "%s", name);
6972 if (elt_size > sizeof (HOST_WIDE_INT))
6974 elt_size /= 2;
6975 len *= 2;
6977 for (i = 0, p = a->dw_attr_val.v.val_vec.array;
6978 i < len;
6979 i++, p += elt_size)
6980 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
6981 "fp or vector constant word %u", i);
6982 break;
6985 case dw_val_class_flag:
6986 dw2_asm_output_data (1, AT_flag (a), "%s", name);
6987 break;
6989 case dw_val_class_loc_list:
6991 char *sym = AT_loc_list (a)->ll_symbol;
6993 gcc_assert (sym);
6994 dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, "%s", name);
6996 break;
6998 case dw_val_class_die_ref:
6999 if (AT_ref_external (a))
7001 char *sym = AT_ref (a)->die_symbol;
7003 gcc_assert (sym);
7004 dw2_asm_output_offset (DWARF2_ADDR_SIZE, sym, "%s", name);
7006 else
7008 gcc_assert (AT_ref (a)->die_offset);
7009 dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
7010 "%s", name);
7012 break;
7014 case dw_val_class_fde_ref:
7016 char l1[20];
7018 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
7019 a->dw_attr_val.v.val_fde_index * 2);
7020 dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, "%s", name);
7022 break;
7024 case dw_val_class_lbl_id:
7025 dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
7026 break;
7028 case dw_val_class_lbl_offset:
7029 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a), "%s", name);
7030 break;
7032 case dw_val_class_str:
7033 if (AT_string_form (a) == DW_FORM_strp)
7034 dw2_asm_output_offset (DWARF_OFFSET_SIZE,
7035 a->dw_attr_val.v.val_str->label,
7036 "%s: \"%s\"", name, AT_string (a));
7037 else
7038 dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
7039 break;
7041 default:
7042 gcc_unreachable ();
7046 for (c = die->die_child; c != NULL; c = c->die_sib)
7047 output_die (c);
7049 /* Add null byte to terminate sibling list. */
7050 if (die->die_child != NULL)
7051 dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
7052 die->die_offset);
7055 /* Output the compilation unit that appears at the beginning of the
7056 .debug_info section, and precedes the DIE descriptions. */
7058 static void
7059 output_compilation_unit_header (void)
7061 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7062 dw2_asm_output_data (4, 0xffffffff,
7063 "Initial length escape value indicating 64-bit DWARF extension");
7064 dw2_asm_output_data (DWARF_OFFSET_SIZE,
7065 next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
7066 "Length of Compilation Unit Info");
7067 dw2_asm_output_data (2, DWARF_VERSION, "DWARF version number");
7068 dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
7069 "Offset Into Abbrev. Section");
7070 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
7073 /* Output the compilation unit DIE and its children. */
7075 static void
7076 output_comp_unit (dw_die_ref die, int output_if_empty)
7078 const char *secname;
7079 char *oldsym, *tmp;
7081 /* Unless we are outputting main CU, we may throw away empty ones. */
7082 if (!output_if_empty && die->die_child == NULL)
7083 return;
7085 /* Even if there are no children of this DIE, we must output the information
7086 about the compilation unit. Otherwise, on an empty translation unit, we
7087 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
7088 will then complain when examining the file. First mark all the DIEs in
7089 this CU so we know which get local refs. */
7090 mark_dies (die);
7092 build_abbrev_table (die);
7094 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
7095 next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
7096 calc_die_sizes (die);
7098 oldsym = die->die_symbol;
7099 if (oldsym)
7101 tmp = alloca (strlen (oldsym) + 24);
7103 sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
7104 secname = tmp;
7105 die->die_symbol = NULL;
7107 else
7108 secname = (const char *) DEBUG_INFO_SECTION;
7110 /* Output debugging information. */
7111 named_section_flags (secname, SECTION_DEBUG);
7112 output_compilation_unit_header ();
7113 output_die (die);
7115 /* Leave the marks on the main CU, so we can check them in
7116 output_pubnames. */
7117 if (oldsym)
7119 unmark_dies (die);
7120 die->die_symbol = oldsym;
7124 /* The DWARF2 pubname for a nested thingy looks like "A::f". The
7125 output of lang_hooks.decl_printable_name for C++ looks like
7126 "A::f(int)". Let's drop the argument list, and maybe the scope. */
7128 static const char *
7129 dwarf2_name (tree decl, int scope)
7131 return lang_hooks.decl_printable_name (decl, scope ? 1 : 0);
7134 /* Add a new entry to .debug_pubnames if appropriate. */
7136 static void
7137 add_pubname (tree decl, dw_die_ref die)
7139 pubname_ref p;
7141 if (! TREE_PUBLIC (decl))
7142 return;
7144 if (pubname_table_in_use == pubname_table_allocated)
7146 pubname_table_allocated += PUBNAME_TABLE_INCREMENT;
7147 pubname_table
7148 = ggc_realloc (pubname_table,
7149 (pubname_table_allocated * sizeof (pubname_entry)));
7150 memset (pubname_table + pubname_table_in_use, 0,
7151 PUBNAME_TABLE_INCREMENT * sizeof (pubname_entry));
7154 p = &pubname_table[pubname_table_in_use++];
7155 p->die = die;
7156 p->name = xstrdup (dwarf2_name (decl, 1));
7159 /* Output the public names table used to speed up access to externally
7160 visible names. For now, only generate entries for externally
7161 visible procedures. */
7163 static void
7164 output_pubnames (void)
7166 unsigned i;
7167 unsigned long pubnames_length = size_of_pubnames ();
7169 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7170 dw2_asm_output_data (4, 0xffffffff,
7171 "Initial length escape value indicating 64-bit DWARF extension");
7172 dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
7173 "Length of Public Names Info");
7174 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7175 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
7176 "Offset of Compilation Unit Info");
7177 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
7178 "Compilation Unit Length");
7180 for (i = 0; i < pubname_table_in_use; i++)
7182 pubname_ref pub = &pubname_table[i];
7184 /* We shouldn't see pubnames for DIEs outside of the main CU. */
7185 gcc_assert (pub->die->die_mark);
7187 dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
7188 "DIE offset");
7190 dw2_asm_output_nstring (pub->name, -1, "external name");
7193 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
7196 /* Add a new entry to .debug_aranges if appropriate. */
7198 static void
7199 add_arange (tree decl, dw_die_ref die)
7201 if (! DECL_SECTION_NAME (decl))
7202 return;
7204 if (arange_table_in_use == arange_table_allocated)
7206 arange_table_allocated += ARANGE_TABLE_INCREMENT;
7207 arange_table = ggc_realloc (arange_table,
7208 (arange_table_allocated
7209 * sizeof (dw_die_ref)));
7210 memset (arange_table + arange_table_in_use, 0,
7211 ARANGE_TABLE_INCREMENT * sizeof (dw_die_ref));
7214 arange_table[arange_table_in_use++] = die;
7217 /* Output the information that goes into the .debug_aranges table.
7218 Namely, define the beginning and ending address range of the
7219 text section generated for this compilation unit. */
7221 static void
7222 output_aranges (void)
7224 unsigned i;
7225 unsigned long aranges_length = size_of_aranges ();
7227 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7228 dw2_asm_output_data (4, 0xffffffff,
7229 "Initial length escape value indicating 64-bit DWARF extension");
7230 dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
7231 "Length of Address Ranges Info");
7232 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7233 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
7234 "Offset of Compilation Unit Info");
7235 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
7236 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
7238 /* We need to align to twice the pointer size here. */
7239 if (DWARF_ARANGES_PAD_SIZE)
7241 /* Pad using a 2 byte words so that padding is correct for any
7242 pointer size. */
7243 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
7244 2 * DWARF2_ADDR_SIZE);
7245 for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
7246 dw2_asm_output_data (2, 0, NULL);
7249 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
7250 dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
7251 text_section_label, "Length");
7252 if (flag_reorder_blocks_and_partition)
7254 dw2_asm_output_addr (DWARF2_ADDR_SIZE, cold_text_section_label,
7255 "Address");
7256 dw2_asm_output_delta (DWARF2_ADDR_SIZE, cold_end_label,
7257 cold_text_section_label, "Length");
7260 for (i = 0; i < arange_table_in_use; i++)
7262 dw_die_ref die = arange_table[i];
7264 /* We shouldn't see aranges for DIEs outside of the main CU. */
7265 gcc_assert (die->die_mark);
7267 if (die->die_tag == DW_TAG_subprogram)
7269 dw2_asm_output_addr (DWARF2_ADDR_SIZE, get_AT_low_pc (die),
7270 "Address");
7271 dw2_asm_output_delta (DWARF2_ADDR_SIZE, get_AT_hi_pc (die),
7272 get_AT_low_pc (die), "Length");
7274 else
7276 /* A static variable; extract the symbol from DW_AT_location.
7277 Note that this code isn't currently hit, as we only emit
7278 aranges for functions (jason 9/23/99). */
7279 dw_attr_ref a = get_AT (die, DW_AT_location);
7280 dw_loc_descr_ref loc;
7282 gcc_assert (a && AT_class (a) == dw_val_class_loc);
7284 loc = AT_loc (a);
7285 gcc_assert (loc->dw_loc_opc == DW_OP_addr);
7287 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE,
7288 loc->dw_loc_oprnd1.v.val_addr, "Address");
7289 dw2_asm_output_data (DWARF2_ADDR_SIZE,
7290 get_AT_unsigned (die, DW_AT_byte_size),
7291 "Length");
7295 /* Output the terminator words. */
7296 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7297 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7300 /* Add a new entry to .debug_ranges. Return the offset at which it
7301 was placed. */
7303 static unsigned int
7304 add_ranges (tree block)
7306 unsigned int in_use = ranges_table_in_use;
7308 if (in_use == ranges_table_allocated)
7310 ranges_table_allocated += RANGES_TABLE_INCREMENT;
7311 ranges_table
7312 = ggc_realloc (ranges_table, (ranges_table_allocated
7313 * sizeof (struct dw_ranges_struct)));
7314 memset (ranges_table + ranges_table_in_use, 0,
7315 RANGES_TABLE_INCREMENT * sizeof (struct dw_ranges_struct));
7318 ranges_table[in_use].block_num = (block ? BLOCK_NUMBER (block) : 0);
7319 ranges_table_in_use = in_use + 1;
7321 return in_use * 2 * DWARF2_ADDR_SIZE;
7324 static void
7325 output_ranges (void)
7327 unsigned i;
7328 static const char *const start_fmt = "Offset 0x%x";
7329 const char *fmt = start_fmt;
7331 for (i = 0; i < ranges_table_in_use; i++)
7333 int block_num = ranges_table[i].block_num;
7335 if (block_num)
7337 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
7338 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
7340 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
7341 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
7343 /* If all code is in the text section, then the compilation
7344 unit base address defaults to DW_AT_low_pc, which is the
7345 base of the text section. */
7346 if (separate_line_info_table_in_use == 0)
7348 dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
7349 text_section_label,
7350 fmt, i * 2 * DWARF2_ADDR_SIZE);
7351 dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
7352 text_section_label, NULL);
7355 /* Otherwise, we add a DW_AT_entry_pc attribute to force the
7356 compilation unit base address to zero, which allows us to
7357 use absolute addresses, and not worry about whether the
7358 target supports cross-section arithmetic. */
7359 else
7361 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
7362 fmt, i * 2 * DWARF2_ADDR_SIZE);
7363 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
7366 fmt = NULL;
7368 else
7370 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7371 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7372 fmt = start_fmt;
7377 /* Data structure containing information about input files. */
7378 struct file_info
7380 char *path; /* Complete file name. */
7381 char *fname; /* File name part. */
7382 int length; /* Length of entire string. */
7383 int file_idx; /* Index in input file table. */
7384 int dir_idx; /* Index in directory table. */
7387 /* Data structure containing information about directories with source
7388 files. */
7389 struct dir_info
7391 char *path; /* Path including directory name. */
7392 int length; /* Path length. */
7393 int prefix; /* Index of directory entry which is a prefix. */
7394 int count; /* Number of files in this directory. */
7395 int dir_idx; /* Index of directory used as base. */
7396 int used; /* Used in the end? */
7399 /* Callback function for file_info comparison. We sort by looking at
7400 the directories in the path. */
7402 static int
7403 file_info_cmp (const void *p1, const void *p2)
7405 const struct file_info *s1 = p1;
7406 const struct file_info *s2 = p2;
7407 unsigned char *cp1;
7408 unsigned char *cp2;
7410 /* Take care of file names without directories. We need to make sure that
7411 we return consistent values to qsort since some will get confused if
7412 we return the same value when identical operands are passed in opposite
7413 orders. So if neither has a directory, return 0 and otherwise return
7414 1 or -1 depending on which one has the directory. */
7415 if ((s1->path == s1->fname || s2->path == s2->fname))
7416 return (s2->path == s2->fname) - (s1->path == s1->fname);
7418 cp1 = (unsigned char *) s1->path;
7419 cp2 = (unsigned char *) s2->path;
7421 while (1)
7423 ++cp1;
7424 ++cp2;
7425 /* Reached the end of the first path? If so, handle like above. */
7426 if ((cp1 == (unsigned char *) s1->fname)
7427 || (cp2 == (unsigned char *) s2->fname))
7428 return ((cp2 == (unsigned char *) s2->fname)
7429 - (cp1 == (unsigned char *) s1->fname));
7431 /* Character of current path component the same? */
7432 else if (*cp1 != *cp2)
7433 return *cp1 - *cp2;
7437 /* Output the directory table and the file name table. We try to minimize
7438 the total amount of memory needed. A heuristic is used to avoid large
7439 slowdowns with many input files. */
7441 static void
7442 output_file_names (void)
7444 struct file_info *files;
7445 struct dir_info *dirs;
7446 int *saved;
7447 int *savehere;
7448 int *backmap;
7449 size_t ndirs;
7450 int idx_offset;
7451 size_t i;
7452 int idx;
7454 /* Handle the case where file_table is empty. */
7455 if (VARRAY_ACTIVE_SIZE (file_table) <= 1)
7457 dw2_asm_output_data (1, 0, "End directory table");
7458 dw2_asm_output_data (1, 0, "End file name table");
7459 return;
7462 /* Allocate the various arrays we need. */
7463 files = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct file_info));
7464 dirs = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct dir_info));
7466 /* Sort the file names. */
7467 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7469 char *f;
7471 /* Skip all leading "./". */
7472 f = VARRAY_CHAR_PTR (file_table, i);
7473 while (f[0] == '.' && f[1] == '/')
7474 f += 2;
7476 /* Create a new array entry. */
7477 files[i].path = f;
7478 files[i].length = strlen (f);
7479 files[i].file_idx = i;
7481 /* Search for the file name part. */
7482 f = strrchr (f, '/');
7483 files[i].fname = f == NULL ? files[i].path : f + 1;
7486 qsort (files + 1, VARRAY_ACTIVE_SIZE (file_table) - 1,
7487 sizeof (files[0]), file_info_cmp);
7489 /* Find all the different directories used. */
7490 dirs[0].path = files[1].path;
7491 dirs[0].length = files[1].fname - files[1].path;
7492 dirs[0].prefix = -1;
7493 dirs[0].count = 1;
7494 dirs[0].dir_idx = 0;
7495 dirs[0].used = 0;
7496 files[1].dir_idx = 0;
7497 ndirs = 1;
7499 for (i = 2; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7500 if (files[i].fname - files[i].path == dirs[ndirs - 1].length
7501 && memcmp (dirs[ndirs - 1].path, files[i].path,
7502 dirs[ndirs - 1].length) == 0)
7504 /* Same directory as last entry. */
7505 files[i].dir_idx = ndirs - 1;
7506 ++dirs[ndirs - 1].count;
7508 else
7510 size_t j;
7512 /* This is a new directory. */
7513 dirs[ndirs].path = files[i].path;
7514 dirs[ndirs].length = files[i].fname - files[i].path;
7515 dirs[ndirs].count = 1;
7516 dirs[ndirs].dir_idx = ndirs;
7517 dirs[ndirs].used = 0;
7518 files[i].dir_idx = ndirs;
7520 /* Search for a prefix. */
7521 dirs[ndirs].prefix = -1;
7522 for (j = 0; j < ndirs; j++)
7523 if (dirs[j].length < dirs[ndirs].length
7524 && dirs[j].length > 1
7525 && (dirs[ndirs].prefix == -1
7526 || dirs[j].length > dirs[dirs[ndirs].prefix].length)
7527 && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
7528 dirs[ndirs].prefix = j;
7530 ++ndirs;
7533 /* Now to the actual work. We have to find a subset of the directories which
7534 allow expressing the file name using references to the directory table
7535 with the least amount of characters. We do not do an exhaustive search
7536 where we would have to check out every combination of every single
7537 possible prefix. Instead we use a heuristic which provides nearly optimal
7538 results in most cases and never is much off. */
7539 saved = alloca (ndirs * sizeof (int));
7540 savehere = alloca (ndirs * sizeof (int));
7542 memset (saved, '\0', ndirs * sizeof (saved[0]));
7543 for (i = 0; i < ndirs; i++)
7545 size_t j;
7546 int total;
7548 /* We can always save some space for the current directory. But this
7549 does not mean it will be enough to justify adding the directory. */
7550 savehere[i] = dirs[i].length;
7551 total = (savehere[i] - saved[i]) * dirs[i].count;
7553 for (j = i + 1; j < ndirs; j++)
7555 savehere[j] = 0;
7556 if (saved[j] < dirs[i].length)
7558 /* Determine whether the dirs[i] path is a prefix of the
7559 dirs[j] path. */
7560 int k;
7562 k = dirs[j].prefix;
7563 while (k != -1 && k != (int) i)
7564 k = dirs[k].prefix;
7566 if (k == (int) i)
7568 /* Yes it is. We can possibly safe some memory but
7569 writing the filenames in dirs[j] relative to
7570 dirs[i]. */
7571 savehere[j] = dirs[i].length;
7572 total += (savehere[j] - saved[j]) * dirs[j].count;
7577 /* Check whether we can safe enough to justify adding the dirs[i]
7578 directory. */
7579 if (total > dirs[i].length + 1)
7581 /* It's worthwhile adding. */
7582 for (j = i; j < ndirs; j++)
7583 if (savehere[j] > 0)
7585 /* Remember how much we saved for this directory so far. */
7586 saved[j] = savehere[j];
7588 /* Remember the prefix directory. */
7589 dirs[j].dir_idx = i;
7594 /* We have to emit them in the order they appear in the file_table array
7595 since the index is used in the debug info generation. To do this
7596 efficiently we generate a back-mapping of the indices first. */
7597 backmap = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (int));
7598 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7600 backmap[files[i].file_idx] = i;
7602 /* Mark this directory as used. */
7603 dirs[dirs[files[i].dir_idx].dir_idx].used = 1;
7606 /* That was it. We are ready to emit the information. First emit the
7607 directory name table. We have to make sure the first actually emitted
7608 directory name has index one; zero is reserved for the current working
7609 directory. Make sure we do not confuse these indices with the one for the
7610 constructed table (even though most of the time they are identical). */
7611 idx = 1;
7612 idx_offset = dirs[0].length > 0 ? 1 : 0;
7613 for (i = 1 - idx_offset; i < ndirs; i++)
7614 if (dirs[i].used != 0)
7616 dirs[i].used = idx++;
7617 dw2_asm_output_nstring (dirs[i].path, dirs[i].length - 1,
7618 "Directory Entry: 0x%x", dirs[i].used);
7621 dw2_asm_output_data (1, 0, "End directory table");
7623 /* Correct the index for the current working directory entry if it
7624 exists. */
7625 if (idx_offset == 0)
7626 dirs[0].used = 0;
7628 /* Now write all the file names. */
7629 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7631 int file_idx = backmap[i];
7632 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
7634 dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
7635 "File Entry: 0x%lx", (unsigned long) i);
7637 /* Include directory index. */
7638 dw2_asm_output_data_uleb128 (dirs[dir_idx].used, NULL);
7640 /* Modification time. */
7641 dw2_asm_output_data_uleb128 (0, NULL);
7643 /* File length in bytes. */
7644 dw2_asm_output_data_uleb128 (0, NULL);
7647 dw2_asm_output_data (1, 0, "End file name table");
7651 /* Output the source line number correspondence information. This
7652 information goes into the .debug_line section. */
7654 static void
7655 output_line_info (void)
7657 char l1[20], l2[20], p1[20], p2[20];
7658 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7659 char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7660 unsigned opc;
7661 unsigned n_op_args;
7662 unsigned long lt_index;
7663 unsigned long current_line;
7664 long line_offset;
7665 long line_delta;
7666 unsigned long current_file;
7667 unsigned long function;
7669 ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
7670 ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
7671 ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
7672 ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
7674 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7675 dw2_asm_output_data (4, 0xffffffff,
7676 "Initial length escape value indicating 64-bit DWARF extension");
7677 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
7678 "Length of Source Line Info");
7679 ASM_OUTPUT_LABEL (asm_out_file, l1);
7681 dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7682 dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
7683 ASM_OUTPUT_LABEL (asm_out_file, p1);
7685 /* Define the architecture-dependent minimum instruction length (in
7686 bytes). In this implementation of DWARF, this field is used for
7687 information purposes only. Since GCC generates assembly language,
7688 we have no a priori knowledge of how many instruction bytes are
7689 generated for each source line, and therefore can use only the
7690 DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
7691 commands. Accordingly, we fix this as `1', which is "correct
7692 enough" for all architectures, and don't let the target override. */
7693 dw2_asm_output_data (1, 1,
7694 "Minimum Instruction Length");
7696 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
7697 "Default is_stmt_start flag");
7698 dw2_asm_output_data (1, DWARF_LINE_BASE,
7699 "Line Base Value (Special Opcodes)");
7700 dw2_asm_output_data (1, DWARF_LINE_RANGE,
7701 "Line Range Value (Special Opcodes)");
7702 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
7703 "Special Opcode Base");
7705 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
7707 switch (opc)
7709 case DW_LNS_advance_pc:
7710 case DW_LNS_advance_line:
7711 case DW_LNS_set_file:
7712 case DW_LNS_set_column:
7713 case DW_LNS_fixed_advance_pc:
7714 n_op_args = 1;
7715 break;
7716 default:
7717 n_op_args = 0;
7718 break;
7721 dw2_asm_output_data (1, n_op_args, "opcode: 0x%x has %d args",
7722 opc, n_op_args);
7725 /* Write out the information about the files we use. */
7726 output_file_names ();
7727 ASM_OUTPUT_LABEL (asm_out_file, p2);
7729 /* We used to set the address register to the first location in the text
7730 section here, but that didn't accomplish anything since we already
7731 have a line note for the opening brace of the first function. */
7733 /* Generate the line number to PC correspondence table, encoded as
7734 a series of state machine operations. */
7735 current_file = 1;
7736 current_line = 1;
7738 if (cfun
7739 && (last_text_section == in_unlikely_executed_text
7740 || (last_text_section == in_named
7741 && last_text_section_name == cfun->unlikely_text_section_name)))
7742 strcpy (prev_line_label, cfun->cold_section_label);
7743 else
7744 strcpy (prev_line_label, text_section_label);
7745 for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
7747 dw_line_info_ref line_info = &line_info_table[lt_index];
7749 #if 0
7750 /* Disable this optimization for now; GDB wants to see two line notes
7751 at the beginning of a function so it can find the end of the
7752 prologue. */
7754 /* Don't emit anything for redundant notes. Just updating the
7755 address doesn't accomplish anything, because we already assume
7756 that anything after the last address is this line. */
7757 if (line_info->dw_line_num == current_line
7758 && line_info->dw_file_num == current_file)
7759 continue;
7760 #endif
7762 /* Emit debug info for the address of the current line.
7764 Unfortunately, we have little choice here currently, and must always
7765 use the most general form. GCC does not know the address delta
7766 itself, so we can't use DW_LNS_advance_pc. Many ports do have length
7767 attributes which will give an upper bound on the address range. We
7768 could perhaps use length attributes to determine when it is safe to
7769 use DW_LNS_fixed_advance_pc. */
7771 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
7772 if (0)
7774 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
7775 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7776 "DW_LNS_fixed_advance_pc");
7777 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7779 else
7781 /* This can handle any delta. This takes
7782 4+DWARF2_ADDR_SIZE bytes. */
7783 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7784 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7785 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7786 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7789 strcpy (prev_line_label, line_label);
7791 /* Emit debug info for the source file of the current line, if
7792 different from the previous line. */
7793 if (line_info->dw_file_num != current_file)
7795 current_file = line_info->dw_file_num;
7796 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7797 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7798 VARRAY_CHAR_PTR (file_table,
7799 current_file));
7802 /* Emit debug info for the current line number, choosing the encoding
7803 that uses the least amount of space. */
7804 if (line_info->dw_line_num != current_line)
7806 line_offset = line_info->dw_line_num - current_line;
7807 line_delta = line_offset - DWARF_LINE_BASE;
7808 current_line = line_info->dw_line_num;
7809 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7810 /* This can handle deltas from -10 to 234, using the current
7811 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
7812 takes 1 byte. */
7813 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7814 "line %lu", current_line);
7815 else
7817 /* This can handle any delta. This takes at least 4 bytes,
7818 depending on the value being encoded. */
7819 dw2_asm_output_data (1, DW_LNS_advance_line,
7820 "advance to line %lu", current_line);
7821 dw2_asm_output_data_sleb128 (line_offset, NULL);
7822 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7825 else
7826 /* We still need to start a new row, so output a copy insn. */
7827 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7830 /* Emit debug info for the address of the end of the function. */
7831 if (0)
7833 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7834 "DW_LNS_fixed_advance_pc");
7835 dw2_asm_output_delta (2, text_end_label, prev_line_label, NULL);
7837 else
7839 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7840 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7841 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7842 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_end_label, NULL);
7845 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7846 dw2_asm_output_data_uleb128 (1, NULL);
7847 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7849 function = 0;
7850 current_file = 1;
7851 current_line = 1;
7852 for (lt_index = 0; lt_index < separate_line_info_table_in_use;)
7854 dw_separate_line_info_ref line_info
7855 = &separate_line_info_table[lt_index];
7857 #if 0
7858 /* Don't emit anything for redundant notes. */
7859 if (line_info->dw_line_num == current_line
7860 && line_info->dw_file_num == current_file
7861 && line_info->function == function)
7862 goto cont;
7863 #endif
7865 /* Emit debug info for the address of the current line. If this is
7866 a new function, or the first line of a function, then we need
7867 to handle it differently. */
7868 ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
7869 lt_index);
7870 if (function != line_info->function)
7872 function = line_info->function;
7874 /* Set the address register to the first line in the function. */
7875 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7876 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7877 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7878 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7880 else
7882 /* ??? See the DW_LNS_advance_pc comment above. */
7883 if (0)
7885 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7886 "DW_LNS_fixed_advance_pc");
7887 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7889 else
7891 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7892 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7893 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7894 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7898 strcpy (prev_line_label, line_label);
7900 /* Emit debug info for the source file of the current line, if
7901 different from the previous line. */
7902 if (line_info->dw_file_num != current_file)
7904 current_file = line_info->dw_file_num;
7905 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7906 dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7907 VARRAY_CHAR_PTR (file_table,
7908 current_file));
7911 /* Emit debug info for the current line number, choosing the encoding
7912 that uses the least amount of space. */
7913 if (line_info->dw_line_num != current_line)
7915 line_offset = line_info->dw_line_num - current_line;
7916 line_delta = line_offset - DWARF_LINE_BASE;
7917 current_line = line_info->dw_line_num;
7918 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7919 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7920 "line %lu", current_line);
7921 else
7923 dw2_asm_output_data (1, DW_LNS_advance_line,
7924 "advance to line %lu", current_line);
7925 dw2_asm_output_data_sleb128 (line_offset, NULL);
7926 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7929 else
7930 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7932 #if 0
7933 cont:
7934 #endif
7936 lt_index++;
7938 /* If we're done with a function, end its sequence. */
7939 if (lt_index == separate_line_info_table_in_use
7940 || separate_line_info_table[lt_index].function != function)
7942 current_file = 1;
7943 current_line = 1;
7945 /* Emit debug info for the address of the end of the function. */
7946 ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
7947 if (0)
7949 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7950 "DW_LNS_fixed_advance_pc");
7951 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7953 else
7955 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7956 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7957 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7958 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7961 /* Output the marker for the end of this sequence. */
7962 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7963 dw2_asm_output_data_uleb128 (1, NULL);
7964 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7968 /* Output the marker for the end of the line number info. */
7969 ASM_OUTPUT_LABEL (asm_out_file, l2);
7972 /* Given a pointer to a tree node for some base type, return a pointer to
7973 a DIE that describes the given type.
7975 This routine must only be called for GCC type nodes that correspond to
7976 Dwarf base (fundamental) types. */
7978 static dw_die_ref
7979 base_type_die (tree type)
7981 dw_die_ref base_type_result;
7982 const char *type_name;
7983 enum dwarf_type encoding;
7984 tree name = TYPE_NAME (type);
7986 if (TREE_CODE (type) == ERROR_MARK || TREE_CODE (type) == VOID_TYPE)
7987 return 0;
7989 if (name)
7991 if (TREE_CODE (name) == TYPE_DECL)
7992 name = DECL_NAME (name);
7994 type_name = IDENTIFIER_POINTER (name);
7996 else
7997 type_name = "__unknown__";
7999 switch (TREE_CODE (type))
8001 case INTEGER_TYPE:
8002 /* Carefully distinguish the C character types, without messing
8003 up if the language is not C. Note that we check only for the names
8004 that contain spaces; other names might occur by coincidence in other
8005 languages. */
8006 if (! (TYPE_PRECISION (type) == CHAR_TYPE_SIZE
8007 && (type == char_type_node
8008 || ! strcmp (type_name, "signed char")
8009 || ! strcmp (type_name, "unsigned char"))))
8011 if (TYPE_UNSIGNED (type))
8012 encoding = DW_ATE_unsigned;
8013 else
8014 encoding = DW_ATE_signed;
8015 break;
8017 /* else fall through. */
8019 case CHAR_TYPE:
8020 /* GNU Pascal/Ada CHAR type. Not used in C. */
8021 if (TYPE_UNSIGNED (type))
8022 encoding = DW_ATE_unsigned_char;
8023 else
8024 encoding = DW_ATE_signed_char;
8025 break;
8027 case REAL_TYPE:
8028 encoding = DW_ATE_float;
8029 break;
8031 /* Dwarf2 doesn't know anything about complex ints, so use
8032 a user defined type for it. */
8033 case COMPLEX_TYPE:
8034 if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
8035 encoding = DW_ATE_complex_float;
8036 else
8037 encoding = DW_ATE_lo_user;
8038 break;
8040 case BOOLEAN_TYPE:
8041 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
8042 encoding = DW_ATE_boolean;
8043 break;
8045 default:
8046 /* No other TREE_CODEs are Dwarf fundamental types. */
8047 gcc_unreachable ();
8050 base_type_result = new_die (DW_TAG_base_type, comp_unit_die, type);
8051 if (demangle_name_func)
8052 type_name = (*demangle_name_func) (type_name);
8054 add_AT_string (base_type_result, DW_AT_name, type_name);
8055 add_AT_unsigned (base_type_result, DW_AT_byte_size,
8056 int_size_in_bytes (type));
8057 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
8059 return base_type_result;
8062 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
8063 the Dwarf "root" type for the given input type. The Dwarf "root" type of
8064 a given type is generally the same as the given type, except that if the
8065 given type is a pointer or reference type, then the root type of the given
8066 type is the root type of the "basis" type for the pointer or reference
8067 type. (This definition of the "root" type is recursive.) Also, the root
8068 type of a `const' qualified type or a `volatile' qualified type is the
8069 root type of the given type without the qualifiers. */
8071 static tree
8072 root_type (tree type)
8074 if (TREE_CODE (type) == ERROR_MARK)
8075 return error_mark_node;
8077 switch (TREE_CODE (type))
8079 case ERROR_MARK:
8080 return error_mark_node;
8082 case POINTER_TYPE:
8083 case REFERENCE_TYPE:
8084 return type_main_variant (root_type (TREE_TYPE (type)));
8086 default:
8087 return type_main_variant (type);
8091 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
8092 given input type is a Dwarf "fundamental" type. Otherwise return null. */
8094 static inline int
8095 is_base_type (tree type)
8097 switch (TREE_CODE (type))
8099 case ERROR_MARK:
8100 case VOID_TYPE:
8101 case INTEGER_TYPE:
8102 case REAL_TYPE:
8103 case COMPLEX_TYPE:
8104 case BOOLEAN_TYPE:
8105 case CHAR_TYPE:
8106 return 1;
8108 case ARRAY_TYPE:
8109 case RECORD_TYPE:
8110 case UNION_TYPE:
8111 case QUAL_UNION_TYPE:
8112 case ENUMERAL_TYPE:
8113 case FUNCTION_TYPE:
8114 case METHOD_TYPE:
8115 case POINTER_TYPE:
8116 case REFERENCE_TYPE:
8117 case OFFSET_TYPE:
8118 case LANG_TYPE:
8119 case VECTOR_TYPE:
8120 return 0;
8122 default:
8123 gcc_unreachable ();
8126 return 0;
8129 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
8130 node, return the size in bits for the type if it is a constant, or else
8131 return the alignment for the type if the type's size is not constant, or
8132 else return BITS_PER_WORD if the type actually turns out to be an
8133 ERROR_MARK node. */
8135 static inline unsigned HOST_WIDE_INT
8136 simple_type_size_in_bits (tree type)
8138 if (TREE_CODE (type) == ERROR_MARK)
8139 return BITS_PER_WORD;
8140 else if (TYPE_SIZE (type) == NULL_TREE)
8141 return 0;
8142 else if (host_integerp (TYPE_SIZE (type), 1))
8143 return tree_low_cst (TYPE_SIZE (type), 1);
8144 else
8145 return TYPE_ALIGN (type);
8148 /* Return true if the debug information for the given type should be
8149 emitted as a subrange type. */
8151 static inline bool
8152 is_subrange_type (tree type)
8154 tree subtype = TREE_TYPE (type);
8156 /* Subrange types are identified by the fact that they are integer
8157 types, and that they have a subtype which is either an integer type
8158 or an enumeral type. */
8160 if (TREE_CODE (type) != INTEGER_TYPE
8161 || subtype == NULL_TREE)
8162 return false;
8164 if (TREE_CODE (subtype) != INTEGER_TYPE
8165 && TREE_CODE (subtype) != ENUMERAL_TYPE)
8166 return false;
8168 if (TREE_CODE (type) == TREE_CODE (subtype)
8169 && int_size_in_bytes (type) == int_size_in_bytes (subtype)
8170 && TYPE_MIN_VALUE (type) != NULL
8171 && TYPE_MIN_VALUE (subtype) != NULL
8172 && tree_int_cst_equal (TYPE_MIN_VALUE (type), TYPE_MIN_VALUE (subtype))
8173 && TYPE_MAX_VALUE (type) != NULL
8174 && TYPE_MAX_VALUE (subtype) != NULL
8175 && tree_int_cst_equal (TYPE_MAX_VALUE (type), TYPE_MAX_VALUE (subtype)))
8177 /* The type and its subtype have the same representation. If in
8178 addition the two types also have the same name, then the given
8179 type is not a subrange type, but rather a plain base type. */
8180 /* FIXME: brobecker/2004-03-22:
8181 Sizetype INTEGER_CSTs nodes are canonicalized. It should
8182 therefore be sufficient to check the TYPE_SIZE node pointers
8183 rather than checking the actual size. Unfortunately, we have
8184 found some cases, such as in the Ada "integer" type, where
8185 this is not the case. Until this problem is solved, we need to
8186 keep checking the actual size. */
8187 tree type_name = TYPE_NAME (type);
8188 tree subtype_name = TYPE_NAME (subtype);
8190 if (type_name != NULL && TREE_CODE (type_name) == TYPE_DECL)
8191 type_name = DECL_NAME (type_name);
8193 if (subtype_name != NULL && TREE_CODE (subtype_name) == TYPE_DECL)
8194 subtype_name = DECL_NAME (subtype_name);
8196 if (type_name == subtype_name)
8197 return false;
8200 return true;
8203 /* Given a pointer to a tree node for a subrange type, return a pointer
8204 to a DIE that describes the given type. */
8206 static dw_die_ref
8207 subrange_type_die (tree type, dw_die_ref context_die)
8209 dw_die_ref subtype_die;
8210 dw_die_ref subrange_die;
8211 tree name = TYPE_NAME (type);
8212 const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
8213 tree subtype = TREE_TYPE (type);
8215 if (context_die == NULL)
8216 context_die = comp_unit_die;
8218 if (TREE_CODE (subtype) == ENUMERAL_TYPE)
8219 subtype_die = gen_enumeration_type_die (subtype, context_die);
8220 else
8221 subtype_die = base_type_die (subtype);
8223 subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
8225 if (name != NULL)
8227 if (TREE_CODE (name) == TYPE_DECL)
8228 name = DECL_NAME (name);
8229 add_name_attribute (subrange_die, IDENTIFIER_POINTER (name));
8232 if (int_size_in_bytes (subtype) != size_in_bytes)
8234 /* The size of the subrange type and its base type do not match,
8235 so we need to generate a size attribute for the subrange type. */
8236 add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
8239 if (TYPE_MIN_VALUE (type) != NULL)
8240 add_bound_info (subrange_die, DW_AT_lower_bound,
8241 TYPE_MIN_VALUE (type));
8242 if (TYPE_MAX_VALUE (type) != NULL)
8243 add_bound_info (subrange_die, DW_AT_upper_bound,
8244 TYPE_MAX_VALUE (type));
8245 add_AT_die_ref (subrange_die, DW_AT_type, subtype_die);
8247 return subrange_die;
8250 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
8251 entry that chains various modifiers in front of the given type. */
8253 static dw_die_ref
8254 modified_type_die (tree type, int is_const_type, int is_volatile_type,
8255 dw_die_ref context_die)
8257 enum tree_code code = TREE_CODE (type);
8258 dw_die_ref mod_type_die = NULL;
8259 dw_die_ref sub_die = NULL;
8260 tree item_type = NULL;
8262 if (code != ERROR_MARK)
8264 tree qualified_type;
8266 /* See if we already have the appropriately qualified variant of
8267 this type. */
8268 qualified_type
8269 = get_qualified_type (type,
8270 ((is_const_type ? TYPE_QUAL_CONST : 0)
8271 | (is_volatile_type
8272 ? TYPE_QUAL_VOLATILE : 0)));
8274 /* If we do, then we can just use its DIE, if it exists. */
8275 if (qualified_type)
8277 mod_type_die = lookup_type_die (qualified_type);
8278 if (mod_type_die)
8279 return mod_type_die;
8282 /* Handle C typedef types. */
8283 if (qualified_type && TYPE_NAME (qualified_type)
8284 && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL
8285 && DECL_ORIGINAL_TYPE (TYPE_NAME (qualified_type)))
8287 tree type_name = TYPE_NAME (qualified_type);
8288 tree dtype = TREE_TYPE (type_name);
8290 if (qualified_type == dtype)
8292 /* For a named type, use the typedef. */
8293 gen_type_die (qualified_type, context_die);
8294 mod_type_die = lookup_type_die (qualified_type);
8296 else if (is_const_type < TYPE_READONLY (dtype)
8297 || is_volatile_type < TYPE_VOLATILE (dtype))
8298 /* cv-unqualified version of named type. Just use the unnamed
8299 type to which it refers. */
8300 mod_type_die
8301 = modified_type_die (DECL_ORIGINAL_TYPE (type_name),
8302 is_const_type, is_volatile_type,
8303 context_die);
8305 /* Else cv-qualified version of named type; fall through. */
8308 if (mod_type_die)
8309 /* OK. */
8311 else if (is_const_type)
8313 mod_type_die = new_die (DW_TAG_const_type, comp_unit_die, type);
8314 sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
8316 else if (is_volatile_type)
8318 mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die, type);
8319 sub_die = modified_type_die (type, 0, 0, context_die);
8321 else if (code == POINTER_TYPE)
8323 mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die, type);
8324 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
8325 simple_type_size_in_bits (type) / BITS_PER_UNIT);
8326 #if 0
8327 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
8328 #endif
8329 item_type = TREE_TYPE (type);
8331 else if (code == REFERENCE_TYPE)
8333 mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die, type);
8334 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
8335 simple_type_size_in_bits (type) / BITS_PER_UNIT);
8336 #if 0
8337 add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
8338 #endif
8339 item_type = TREE_TYPE (type);
8341 else if (is_subrange_type (type))
8342 mod_type_die = subrange_type_die (type, context_die);
8343 else if (is_base_type (type))
8344 mod_type_die = base_type_die (type);
8345 else
8347 gen_type_die (type, context_die);
8349 /* We have to get the type_main_variant here (and pass that to the
8350 `lookup_type_die' routine) because the ..._TYPE node we have
8351 might simply be a *copy* of some original type node (where the
8352 copy was created to help us keep track of typedef names) and
8353 that copy might have a different TYPE_UID from the original
8354 ..._TYPE node. */
8355 if (TREE_CODE (type) != VECTOR_TYPE)
8356 mod_type_die = lookup_type_die (type_main_variant (type));
8357 else
8358 /* Vectors have the debugging information in the type,
8359 not the main variant. */
8360 mod_type_die = lookup_type_die (type);
8361 gcc_assert (mod_type_die);
8364 /* We want to equate the qualified type to the die below. */
8365 type = qualified_type;
8368 if (type)
8369 equate_type_number_to_die (type, mod_type_die);
8370 if (item_type)
8371 /* We must do this after the equate_type_number_to_die call, in case
8372 this is a recursive type. This ensures that the modified_type_die
8373 recursion will terminate even if the type is recursive. Recursive
8374 types are possible in Ada. */
8375 sub_die = modified_type_die (item_type,
8376 TYPE_READONLY (item_type),
8377 TYPE_VOLATILE (item_type),
8378 context_die);
8380 if (sub_die != NULL)
8381 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
8383 return mod_type_die;
8386 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
8387 an enumerated type. */
8389 static inline int
8390 type_is_enum (tree type)
8392 return TREE_CODE (type) == ENUMERAL_TYPE;
8395 /* Return the DBX register number described by a given RTL node. */
8397 static unsigned int
8398 dbx_reg_number (rtx rtl)
8400 unsigned regno = REGNO (rtl);
8402 gcc_assert (regno < FIRST_PSEUDO_REGISTER);
8404 return DBX_REGISTER_NUMBER (regno);
8407 /* Return a location descriptor that designates a machine register or
8408 zero if there is none. */
8410 static dw_loc_descr_ref
8411 reg_loc_descriptor (rtx rtl)
8413 unsigned reg;
8414 rtx regs;
8416 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
8417 return 0;
8419 reg = dbx_reg_number (rtl);
8420 regs = targetm.dwarf_register_span (rtl);
8422 if (hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)] > 1
8423 || regs)
8424 return multiple_reg_loc_descriptor (rtl, regs);
8425 else
8426 return one_reg_loc_descriptor (reg);
8429 /* Return a location descriptor that designates a machine register for
8430 a given hard register number. */
8432 static dw_loc_descr_ref
8433 one_reg_loc_descriptor (unsigned int regno)
8435 if (regno <= 31)
8436 return new_loc_descr (DW_OP_reg0 + regno, 0, 0);
8437 else
8438 return new_loc_descr (DW_OP_regx, regno, 0);
8441 /* Given an RTL of a register, return a location descriptor that
8442 designates a value that spans more than one register. */
8444 static dw_loc_descr_ref
8445 multiple_reg_loc_descriptor (rtx rtl, rtx regs)
8447 int nregs, size, i;
8448 unsigned reg;
8449 dw_loc_descr_ref loc_result = NULL;
8451 reg = dbx_reg_number (rtl);
8452 nregs = hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)];
8454 /* Simple, contiguous registers. */
8455 if (regs == NULL_RTX)
8457 size = GET_MODE_SIZE (GET_MODE (rtl)) / nregs;
8459 loc_result = NULL;
8460 while (nregs--)
8462 dw_loc_descr_ref t;
8464 t = one_reg_loc_descriptor (reg);
8465 add_loc_descr (&loc_result, t);
8466 add_loc_descr (&loc_result, new_loc_descr (DW_OP_piece, size, 0));
8467 ++reg;
8469 return loc_result;
8472 /* Now onto stupid register sets in non contiguous locations. */
8474 gcc_assert (GET_CODE (regs) == PARALLEL);
8476 size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8477 loc_result = NULL;
8479 for (i = 0; i < XVECLEN (regs, 0); ++i)
8481 dw_loc_descr_ref t;
8483 t = one_reg_loc_descriptor (REGNO (XVECEXP (regs, 0, i)));
8484 add_loc_descr (&loc_result, t);
8485 size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8486 add_loc_descr (&loc_result, new_loc_descr (DW_OP_piece, size, 0));
8488 return loc_result;
8491 /* Return a location descriptor that designates a constant. */
8493 static dw_loc_descr_ref
8494 int_loc_descriptor (HOST_WIDE_INT i)
8496 enum dwarf_location_atom op;
8498 /* Pick the smallest representation of a constant, rather than just
8499 defaulting to the LEB encoding. */
8500 if (i >= 0)
8502 if (i <= 31)
8503 op = DW_OP_lit0 + i;
8504 else if (i <= 0xff)
8505 op = DW_OP_const1u;
8506 else if (i <= 0xffff)
8507 op = DW_OP_const2u;
8508 else if (HOST_BITS_PER_WIDE_INT == 32
8509 || i <= 0xffffffff)
8510 op = DW_OP_const4u;
8511 else
8512 op = DW_OP_constu;
8514 else
8516 if (i >= -0x80)
8517 op = DW_OP_const1s;
8518 else if (i >= -0x8000)
8519 op = DW_OP_const2s;
8520 else if (HOST_BITS_PER_WIDE_INT == 32
8521 || i >= -0x80000000)
8522 op = DW_OP_const4s;
8523 else
8524 op = DW_OP_consts;
8527 return new_loc_descr (op, i, 0);
8530 /* Return a location descriptor that designates a base+offset location. */
8532 static dw_loc_descr_ref
8533 based_loc_descr (unsigned int reg, HOST_WIDE_INT offset, bool can_use_fbreg)
8535 dw_loc_descr_ref loc_result;
8536 /* For the "frame base", we use the frame pointer or stack pointer
8537 registers, since the RTL for local variables is relative to one of
8538 them. */
8539 unsigned fp_reg = DBX_REGISTER_NUMBER (frame_pointer_needed
8540 ? HARD_FRAME_POINTER_REGNUM
8541 : STACK_POINTER_REGNUM);
8543 if (reg == fp_reg && can_use_fbreg)
8544 loc_result = new_loc_descr (DW_OP_fbreg, offset, 0);
8545 else if (reg <= 31)
8546 loc_result = new_loc_descr (DW_OP_breg0 + reg, offset, 0);
8547 else
8548 loc_result = new_loc_descr (DW_OP_bregx, reg, offset);
8550 return loc_result;
8553 /* Return true if this RTL expression describes a base+offset calculation. */
8555 static inline int
8556 is_based_loc (rtx rtl)
8558 return (GET_CODE (rtl) == PLUS
8559 && ((REG_P (XEXP (rtl, 0))
8560 && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
8561 && GET_CODE (XEXP (rtl, 1)) == CONST_INT)));
8564 /* The following routine converts the RTL for a variable or parameter
8565 (resident in memory) into an equivalent Dwarf representation of a
8566 mechanism for getting the address of that same variable onto the top of a
8567 hypothetical "address evaluation" stack.
8569 When creating memory location descriptors, we are effectively transforming
8570 the RTL for a memory-resident object into its Dwarf postfix expression
8571 equivalent. This routine recursively descends an RTL tree, turning
8572 it into Dwarf postfix code as it goes.
8574 MODE is the mode of the memory reference, needed to handle some
8575 autoincrement addressing modes.
8577 CAN_USE_FBREG is a flag whether we can use DW_AT_frame_base in the location
8578 list for RTL. We can't use it when we are emitting location list for
8579 virtual variable frame_base_decl (i.e. a location list for DW_AT_frame_base)
8580 which describes how frame base changes when !frame_pointer_needed.
8582 Return 0 if we can't represent the location. */
8584 static dw_loc_descr_ref
8585 mem_loc_descriptor (rtx rtl, enum machine_mode mode, bool can_use_fbreg)
8587 dw_loc_descr_ref mem_loc_result = NULL;
8588 enum dwarf_location_atom op;
8590 /* Note that for a dynamically sized array, the location we will generate a
8591 description of here will be the lowest numbered location which is
8592 actually within the array. That's *not* necessarily the same as the
8593 zeroth element of the array. */
8595 rtl = targetm.delegitimize_address (rtl);
8597 switch (GET_CODE (rtl))
8599 case POST_INC:
8600 case POST_DEC:
8601 case POST_MODIFY:
8602 /* POST_INC and POST_DEC can be handled just like a SUBREG. So we
8603 just fall into the SUBREG code. */
8605 /* ... fall through ... */
8607 case SUBREG:
8608 /* The case of a subreg may arise when we have a local (register)
8609 variable or a formal (register) parameter which doesn't quite fill
8610 up an entire register. For now, just assume that it is
8611 legitimate to make the Dwarf info refer to the whole register which
8612 contains the given subreg. */
8613 rtl = SUBREG_REG (rtl);
8615 /* ... fall through ... */
8617 case REG:
8618 /* Whenever a register number forms a part of the description of the
8619 method for calculating the (dynamic) address of a memory resident
8620 object, DWARF rules require the register number be referred to as
8621 a "base register". This distinction is not based in any way upon
8622 what category of register the hardware believes the given register
8623 belongs to. This is strictly DWARF terminology we're dealing with
8624 here. Note that in cases where the location of a memory-resident
8625 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
8626 OP_CONST (0)) the actual DWARF location descriptor that we generate
8627 may just be OP_BASEREG (basereg). This may look deceptively like
8628 the object in question was allocated to a register (rather than in
8629 memory) so DWARF consumers need to be aware of the subtle
8630 distinction between OP_REG and OP_BASEREG. */
8631 if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
8632 mem_loc_result = based_loc_descr (dbx_reg_number (rtl), 0,
8633 can_use_fbreg);
8634 break;
8636 case MEM:
8637 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl),
8638 can_use_fbreg);
8639 if (mem_loc_result != 0)
8640 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
8641 break;
8643 case LO_SUM:
8644 rtl = XEXP (rtl, 1);
8646 /* ... fall through ... */
8648 case LABEL_REF:
8649 /* Some ports can transform a symbol ref into a label ref, because
8650 the symbol ref is too far away and has to be dumped into a constant
8651 pool. */
8652 case CONST:
8653 case SYMBOL_REF:
8654 /* Alternatively, the symbol in the constant pool might be referenced
8655 by a different symbol. */
8656 if (GET_CODE (rtl) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (rtl))
8658 bool marked;
8659 rtx tmp = get_pool_constant_mark (rtl, &marked);
8661 if (GET_CODE (tmp) == SYMBOL_REF)
8663 rtl = tmp;
8664 if (CONSTANT_POOL_ADDRESS_P (tmp))
8665 get_pool_constant_mark (tmp, &marked);
8666 else
8667 marked = true;
8670 /* If all references to this pool constant were optimized away,
8671 it was not output and thus we can't represent it.
8672 FIXME: might try to use DW_OP_const_value here, though
8673 DW_OP_piece complicates it. */
8674 if (!marked)
8675 return 0;
8678 mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
8679 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
8680 mem_loc_result->dw_loc_oprnd1.v.val_addr = rtl;
8681 VARRAY_PUSH_RTX (used_rtx_varray, rtl);
8682 break;
8684 case PRE_MODIFY:
8685 /* Extract the PLUS expression nested inside and fall into
8686 PLUS code below. */
8687 rtl = XEXP (rtl, 1);
8688 goto plus;
8690 case PRE_INC:
8691 case PRE_DEC:
8692 /* Turn these into a PLUS expression and fall into the PLUS code
8693 below. */
8694 rtl = gen_rtx_PLUS (word_mode, XEXP (rtl, 0),
8695 GEN_INT (GET_CODE (rtl) == PRE_INC
8696 ? GET_MODE_UNIT_SIZE (mode)
8697 : -GET_MODE_UNIT_SIZE (mode)));
8699 /* ... fall through ... */
8701 case PLUS:
8702 plus:
8703 if (is_based_loc (rtl))
8704 mem_loc_result = based_loc_descr (dbx_reg_number (XEXP (rtl, 0)),
8705 INTVAL (XEXP (rtl, 1)),
8706 can_use_fbreg);
8707 else
8709 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode,
8710 can_use_fbreg);
8711 if (mem_loc_result == 0)
8712 break;
8714 if (GET_CODE (XEXP (rtl, 1)) == CONST_INT
8715 && INTVAL (XEXP (rtl, 1)) >= 0)
8716 add_loc_descr (&mem_loc_result,
8717 new_loc_descr (DW_OP_plus_uconst,
8718 INTVAL (XEXP (rtl, 1)), 0));
8719 else
8721 add_loc_descr (&mem_loc_result,
8722 mem_loc_descriptor (XEXP (rtl, 1), mode,
8723 can_use_fbreg));
8724 add_loc_descr (&mem_loc_result,
8725 new_loc_descr (DW_OP_plus, 0, 0));
8728 break;
8730 /* If a pseudo-reg is optimized away, it is possible for it to
8731 be replaced with a MEM containing a multiply or shift. */
8732 case MULT:
8733 op = DW_OP_mul;
8734 goto do_binop;
8736 case ASHIFT:
8737 op = DW_OP_shl;
8738 goto do_binop;
8740 case ASHIFTRT:
8741 op = DW_OP_shra;
8742 goto do_binop;
8744 case LSHIFTRT:
8745 op = DW_OP_shr;
8746 goto do_binop;
8748 do_binop:
8750 dw_loc_descr_ref op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
8751 can_use_fbreg);
8752 dw_loc_descr_ref op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
8753 can_use_fbreg);
8755 if (op0 == 0 || op1 == 0)
8756 break;
8758 mem_loc_result = op0;
8759 add_loc_descr (&mem_loc_result, op1);
8760 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
8761 break;
8764 case CONST_INT:
8765 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
8766 break;
8768 default:
8769 gcc_unreachable ();
8772 return mem_loc_result;
8775 /* Return a descriptor that describes the concatenation of two locations.
8776 This is typically a complex variable. */
8778 static dw_loc_descr_ref
8779 concat_loc_descriptor (rtx x0, rtx x1)
8781 dw_loc_descr_ref cc_loc_result = NULL;
8782 dw_loc_descr_ref x0_ref = loc_descriptor (x0, false);
8783 dw_loc_descr_ref x1_ref = loc_descriptor (x1, false);
8785 if (x0_ref == 0 || x1_ref == 0)
8786 return 0;
8788 cc_loc_result = x0_ref;
8789 add_loc_descr (&cc_loc_result,
8790 new_loc_descr (DW_OP_piece,
8791 GET_MODE_SIZE (GET_MODE (x0)), 0));
8793 add_loc_descr (&cc_loc_result, x1_ref);
8794 add_loc_descr (&cc_loc_result,
8795 new_loc_descr (DW_OP_piece,
8796 GET_MODE_SIZE (GET_MODE (x1)), 0));
8798 return cc_loc_result;
8801 /* Output a proper Dwarf location descriptor for a variable or parameter
8802 which is either allocated in a register or in a memory location. For a
8803 register, we just generate an OP_REG and the register number. For a
8804 memory location we provide a Dwarf postfix expression describing how to
8805 generate the (dynamic) address of the object onto the address stack.
8807 If we don't know how to describe it, return 0. */
8809 static dw_loc_descr_ref
8810 loc_descriptor (rtx rtl, bool can_use_fbreg)
8812 dw_loc_descr_ref loc_result = NULL;
8814 switch (GET_CODE (rtl))
8816 case SUBREG:
8817 /* The case of a subreg may arise when we have a local (register)
8818 variable or a formal (register) parameter which doesn't quite fill
8819 up an entire register. For now, just assume that it is
8820 legitimate to make the Dwarf info refer to the whole register which
8821 contains the given subreg. */
8822 rtl = SUBREG_REG (rtl);
8824 /* ... fall through ... */
8826 case REG:
8827 loc_result = reg_loc_descriptor (rtl);
8828 break;
8830 case MEM:
8831 loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl),
8832 can_use_fbreg);
8833 break;
8835 case CONCAT:
8836 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1));
8837 break;
8839 case VAR_LOCATION:
8840 /* Single part. */
8841 if (GET_CODE (XEXP (rtl, 1)) != PARALLEL)
8843 loc_result = loc_descriptor (XEXP (XEXP (rtl, 1), 0), can_use_fbreg);
8844 break;
8847 rtl = XEXP (rtl, 1);
8848 /* FALLTHRU */
8850 case PARALLEL:
8852 rtvec par_elems = XVEC (rtl, 0);
8853 int num_elem = GET_NUM_ELEM (par_elems);
8854 enum machine_mode mode;
8855 int i;
8857 /* Create the first one, so we have something to add to. */
8858 loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0),
8859 can_use_fbreg);
8860 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
8861 add_loc_descr (&loc_result,
8862 new_loc_descr (DW_OP_piece, GET_MODE_SIZE (mode), 0));
8863 for (i = 1; i < num_elem; i++)
8865 dw_loc_descr_ref temp;
8867 temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0),
8868 can_use_fbreg);
8869 add_loc_descr (&loc_result, temp);
8870 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
8871 add_loc_descr (&loc_result,
8872 new_loc_descr (DW_OP_piece,
8873 GET_MODE_SIZE (mode), 0));
8876 break;
8878 default:
8879 gcc_unreachable ();
8882 return loc_result;
8885 /* Similar, but generate the descriptor from trees instead of rtl. This comes
8886 up particularly with variable length arrays. WANT_ADDRESS is 2 if this is
8887 a top-level invocation of loc_descriptor_from_tree; is 1 if this is not a
8888 top-level invocation, and we require the address of LOC; is 0 if we require
8889 the value of LOC. */
8891 static dw_loc_descr_ref
8892 loc_descriptor_from_tree_1 (tree loc, int want_address)
8894 dw_loc_descr_ref ret, ret1;
8895 int have_address = 0;
8896 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
8897 enum dwarf_location_atom op;
8899 /* ??? Most of the time we do not take proper care for sign/zero
8900 extending the values properly. Hopefully this won't be a real
8901 problem... */
8903 switch (TREE_CODE (loc))
8905 case ERROR_MARK:
8906 return 0;
8908 case PLACEHOLDER_EXPR:
8909 /* This case involves extracting fields from an object to determine the
8910 position of other fields. We don't try to encode this here. The
8911 only user of this is Ada, which encodes the needed information using
8912 the names of types. */
8913 return 0;
8915 case CALL_EXPR:
8916 return 0;
8918 case PREINCREMENT_EXPR:
8919 case PREDECREMENT_EXPR:
8920 case POSTINCREMENT_EXPR:
8921 case POSTDECREMENT_EXPR:
8922 /* There are no opcodes for these operations. */
8923 return 0;
8925 case ADDR_EXPR:
8926 /* If we already want an address, there's nothing we can do. */
8927 if (want_address)
8928 return 0;
8930 /* Otherwise, process the argument and look for the address. */
8931 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 1);
8933 case VAR_DECL:
8934 if (DECL_THREAD_LOCAL (loc))
8936 rtx rtl;
8938 #ifndef ASM_OUTPUT_DWARF_DTPREL
8939 /* If this is not defined, we have no way to emit the data. */
8940 return 0;
8941 #endif
8943 /* The way DW_OP_GNU_push_tls_address is specified, we can only
8944 look up addresses of objects in the current module. */
8945 if (DECL_EXTERNAL (loc))
8946 return 0;
8948 rtl = rtl_for_decl_location (loc);
8949 if (rtl == NULL_RTX)
8950 return 0;
8952 if (!MEM_P (rtl))
8953 return 0;
8954 rtl = XEXP (rtl, 0);
8955 if (! CONSTANT_P (rtl))
8956 return 0;
8958 ret = new_loc_descr (INTERNAL_DW_OP_tls_addr, 0, 0);
8959 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
8960 ret->dw_loc_oprnd1.v.val_addr = rtl;
8962 ret1 = new_loc_descr (DW_OP_GNU_push_tls_address, 0, 0);
8963 add_loc_descr (&ret, ret1);
8965 have_address = 1;
8966 break;
8968 /* FALLTHRU */
8970 case PARM_DECL:
8971 if (DECL_VALUE_EXPR (loc))
8972 return loc_descriptor_from_tree_1 (DECL_VALUE_EXPR (loc), want_address);
8973 /* FALLTHRU */
8975 case RESULT_DECL:
8977 rtx rtl = rtl_for_decl_location (loc);
8979 if (rtl == NULL_RTX)
8980 return 0;
8981 else if (GET_CODE (rtl) == CONST_INT)
8983 HOST_WIDE_INT val = INTVAL (rtl);
8984 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
8985 val &= GET_MODE_MASK (DECL_MODE (loc));
8986 ret = int_loc_descriptor (val);
8988 else if (GET_CODE (rtl) == CONST_STRING)
8989 return 0;
8990 else if (CONSTANT_P (rtl))
8992 ret = new_loc_descr (DW_OP_addr, 0, 0);
8993 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
8994 ret->dw_loc_oprnd1.v.val_addr = rtl;
8996 else
8998 enum machine_mode mode;
9000 /* Certain constructs can only be represented at top-level. */
9001 if (want_address == 2)
9002 return loc_descriptor (rtl, false);
9004 mode = GET_MODE (rtl);
9005 if (MEM_P (rtl))
9007 rtl = XEXP (rtl, 0);
9008 have_address = 1;
9010 ret = mem_loc_descriptor (rtl, mode, false);
9013 break;
9015 case INDIRECT_REF:
9016 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9017 have_address = 1;
9018 break;
9020 case COMPOUND_EXPR:
9021 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 1), want_address);
9023 case NOP_EXPR:
9024 case CONVERT_EXPR:
9025 case NON_LVALUE_EXPR:
9026 case VIEW_CONVERT_EXPR:
9027 case SAVE_EXPR:
9028 case MODIFY_EXPR:
9029 return loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), want_address);
9031 case COMPONENT_REF:
9032 case BIT_FIELD_REF:
9033 case ARRAY_REF:
9034 case ARRAY_RANGE_REF:
9036 tree obj, offset;
9037 HOST_WIDE_INT bitsize, bitpos, bytepos;
9038 enum machine_mode mode;
9039 int volatilep;
9041 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
9042 &unsignedp, &volatilep, false);
9044 if (obj == loc)
9045 return 0;
9047 ret = loc_descriptor_from_tree_1 (obj, 1);
9048 if (ret == 0
9049 || bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
9050 return 0;
9052 if (offset != NULL_TREE)
9054 /* Variable offset. */
9055 add_loc_descr (&ret, loc_descriptor_from_tree_1 (offset, 0));
9056 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
9059 bytepos = bitpos / BITS_PER_UNIT;
9060 if (bytepos > 0)
9061 add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
9062 else if (bytepos < 0)
9064 add_loc_descr (&ret, int_loc_descriptor (bytepos));
9065 add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
9068 have_address = 1;
9069 break;
9072 case INTEGER_CST:
9073 if (host_integerp (loc, 0))
9074 ret = int_loc_descriptor (tree_low_cst (loc, 0));
9075 else
9076 return 0;
9077 break;
9079 case CONSTRUCTOR:
9081 /* Get an RTL for this, if something has been emitted. */
9082 rtx rtl = lookup_constant_def (loc);
9083 enum machine_mode mode;
9085 if (!rtl || !MEM_P (rtl))
9086 return 0;
9087 mode = GET_MODE (rtl);
9088 rtl = XEXP (rtl, 0);
9089 ret = mem_loc_descriptor (rtl, mode, false);
9090 have_address = 1;
9091 break;
9094 case TRUTH_AND_EXPR:
9095 case TRUTH_ANDIF_EXPR:
9096 case BIT_AND_EXPR:
9097 op = DW_OP_and;
9098 goto do_binop;
9100 case TRUTH_XOR_EXPR:
9101 case BIT_XOR_EXPR:
9102 op = DW_OP_xor;
9103 goto do_binop;
9105 case TRUTH_OR_EXPR:
9106 case TRUTH_ORIF_EXPR:
9107 case BIT_IOR_EXPR:
9108 op = DW_OP_or;
9109 goto do_binop;
9111 case FLOOR_DIV_EXPR:
9112 case CEIL_DIV_EXPR:
9113 case ROUND_DIV_EXPR:
9114 case TRUNC_DIV_EXPR:
9115 op = DW_OP_div;
9116 goto do_binop;
9118 case MINUS_EXPR:
9119 op = DW_OP_minus;
9120 goto do_binop;
9122 case FLOOR_MOD_EXPR:
9123 case CEIL_MOD_EXPR:
9124 case ROUND_MOD_EXPR:
9125 case TRUNC_MOD_EXPR:
9126 op = DW_OP_mod;
9127 goto do_binop;
9129 case MULT_EXPR:
9130 op = DW_OP_mul;
9131 goto do_binop;
9133 case LSHIFT_EXPR:
9134 op = DW_OP_shl;
9135 goto do_binop;
9137 case RSHIFT_EXPR:
9138 op = (unsignedp ? DW_OP_shr : DW_OP_shra);
9139 goto do_binop;
9141 case PLUS_EXPR:
9142 if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
9143 && host_integerp (TREE_OPERAND (loc, 1), 0))
9145 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9146 if (ret == 0)
9147 return 0;
9149 add_loc_descr (&ret,
9150 new_loc_descr (DW_OP_plus_uconst,
9151 tree_low_cst (TREE_OPERAND (loc, 1),
9153 0));
9154 break;
9157 op = DW_OP_plus;
9158 goto do_binop;
9160 case LE_EXPR:
9161 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9162 return 0;
9164 op = DW_OP_le;
9165 goto do_binop;
9167 case GE_EXPR:
9168 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9169 return 0;
9171 op = DW_OP_ge;
9172 goto do_binop;
9174 case LT_EXPR:
9175 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9176 return 0;
9178 op = DW_OP_lt;
9179 goto do_binop;
9181 case GT_EXPR:
9182 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9183 return 0;
9185 op = DW_OP_gt;
9186 goto do_binop;
9188 case EQ_EXPR:
9189 op = DW_OP_eq;
9190 goto do_binop;
9192 case NE_EXPR:
9193 op = DW_OP_ne;
9194 goto do_binop;
9196 do_binop:
9197 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9198 ret1 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 1), 0);
9199 if (ret == 0 || ret1 == 0)
9200 return 0;
9202 add_loc_descr (&ret, ret1);
9203 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
9204 break;
9206 case TRUTH_NOT_EXPR:
9207 case BIT_NOT_EXPR:
9208 op = DW_OP_not;
9209 goto do_unop;
9211 case ABS_EXPR:
9212 op = DW_OP_abs;
9213 goto do_unop;
9215 case NEGATE_EXPR:
9216 op = DW_OP_neg;
9217 goto do_unop;
9219 do_unop:
9220 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9221 if (ret == 0)
9222 return 0;
9224 add_loc_descr (&ret, new_loc_descr (op, 0, 0));
9225 break;
9227 case MIN_EXPR:
9228 case MAX_EXPR:
9230 const enum tree_code code =
9231 TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
9233 loc = build3 (COND_EXPR, TREE_TYPE (loc),
9234 build2 (code, integer_type_node,
9235 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
9236 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
9239 /* ... fall through ... */
9241 case COND_EXPR:
9243 dw_loc_descr_ref lhs
9244 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 1), 0);
9245 dw_loc_descr_ref rhs
9246 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 2), 0);
9247 dw_loc_descr_ref bra_node, jump_node, tmp;
9249 ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9250 if (ret == 0 || lhs == 0 || rhs == 0)
9251 return 0;
9253 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
9254 add_loc_descr (&ret, bra_node);
9256 add_loc_descr (&ret, rhs);
9257 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
9258 add_loc_descr (&ret, jump_node);
9260 add_loc_descr (&ret, lhs);
9261 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
9262 bra_node->dw_loc_oprnd1.v.val_loc = lhs;
9264 /* ??? Need a node to point the skip at. Use a nop. */
9265 tmp = new_loc_descr (DW_OP_nop, 0, 0);
9266 add_loc_descr (&ret, tmp);
9267 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
9268 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
9270 break;
9272 case FIX_TRUNC_EXPR:
9273 case FIX_CEIL_EXPR:
9274 case FIX_FLOOR_EXPR:
9275 case FIX_ROUND_EXPR:
9276 return 0;
9278 default:
9279 /* Leave front-end specific codes as simply unknown. This comes
9280 up, for instance, with the C STMT_EXPR. */
9281 if ((unsigned int) TREE_CODE (loc)
9282 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
9283 return 0;
9285 #ifdef ENABLE_CHECKING
9286 /* Otherwise this is a generic code; we should just lists all of
9287 these explicitly. We forgot one. */
9288 gcc_unreachable ();
9289 #else
9290 /* In a release build, we want to degrade gracefully: better to
9291 generate incomplete debugging information than to crash. */
9292 return NULL;
9293 #endif
9296 /* Show if we can't fill the request for an address. */
9297 if (want_address && !have_address)
9298 return 0;
9300 /* If we've got an address and don't want one, dereference. */
9301 if (!want_address && have_address)
9303 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
9305 if (size > DWARF2_ADDR_SIZE || size == -1)
9306 return 0;
9307 else if (size == DWARF2_ADDR_SIZE)
9308 op = DW_OP_deref;
9309 else
9310 op = DW_OP_deref_size;
9312 add_loc_descr (&ret, new_loc_descr (op, size, 0));
9315 return ret;
9318 static inline dw_loc_descr_ref
9319 loc_descriptor_from_tree (tree loc)
9321 return loc_descriptor_from_tree_1 (loc, 2);
9324 /* Given a value, round it up to the lowest multiple of `boundary'
9325 which is not less than the value itself. */
9327 static inline HOST_WIDE_INT
9328 ceiling (HOST_WIDE_INT value, unsigned int boundary)
9330 return (((value + boundary - 1) / boundary) * boundary);
9333 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
9334 pointer to the declared type for the relevant field variable, or return
9335 `integer_type_node' if the given node turns out to be an
9336 ERROR_MARK node. */
9338 static inline tree
9339 field_type (tree decl)
9341 tree type;
9343 if (TREE_CODE (decl) == ERROR_MARK)
9344 return integer_type_node;
9346 type = DECL_BIT_FIELD_TYPE (decl);
9347 if (type == NULL_TREE)
9348 type = TREE_TYPE (decl);
9350 return type;
9353 /* Given a pointer to a tree node, return the alignment in bits for
9354 it, or else return BITS_PER_WORD if the node actually turns out to
9355 be an ERROR_MARK node. */
9357 static inline unsigned
9358 simple_type_align_in_bits (tree type)
9360 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
9363 static inline unsigned
9364 simple_decl_align_in_bits (tree decl)
9366 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
9369 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
9370 lowest addressed byte of the "containing object" for the given FIELD_DECL,
9371 or return 0 if we are unable to determine what that offset is, either
9372 because the argument turns out to be a pointer to an ERROR_MARK node, or
9373 because the offset is actually variable. (We can't handle the latter case
9374 just yet). */
9376 static HOST_WIDE_INT
9377 field_byte_offset (tree decl)
9379 unsigned int type_align_in_bits;
9380 unsigned int decl_align_in_bits;
9381 unsigned HOST_WIDE_INT type_size_in_bits;
9382 HOST_WIDE_INT object_offset_in_bits;
9383 tree type;
9384 tree field_size_tree;
9385 HOST_WIDE_INT bitpos_int;
9386 HOST_WIDE_INT deepest_bitpos;
9387 unsigned HOST_WIDE_INT field_size_in_bits;
9389 if (TREE_CODE (decl) == ERROR_MARK)
9390 return 0;
9392 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
9394 type = field_type (decl);
9395 field_size_tree = DECL_SIZE (decl);
9397 /* The size could be unspecified if there was an error, or for
9398 a flexible array member. */
9399 if (! field_size_tree)
9400 field_size_tree = bitsize_zero_node;
9402 /* We cannot yet cope with fields whose positions are variable, so
9403 for now, when we see such things, we simply return 0. Someday, we may
9404 be able to handle such cases, but it will be damn difficult. */
9405 if (! host_integerp (bit_position (decl), 0))
9406 return 0;
9408 bitpos_int = int_bit_position (decl);
9410 /* If we don't know the size of the field, pretend it's a full word. */
9411 if (host_integerp (field_size_tree, 1))
9412 field_size_in_bits = tree_low_cst (field_size_tree, 1);
9413 else
9414 field_size_in_bits = BITS_PER_WORD;
9416 type_size_in_bits = simple_type_size_in_bits (type);
9417 type_align_in_bits = simple_type_align_in_bits (type);
9418 decl_align_in_bits = simple_decl_align_in_bits (decl);
9420 /* The GCC front-end doesn't make any attempt to keep track of the starting
9421 bit offset (relative to the start of the containing structure type) of the
9422 hypothetical "containing object" for a bit-field. Thus, when computing
9423 the byte offset value for the start of the "containing object" of a
9424 bit-field, we must deduce this information on our own. This can be rather
9425 tricky to do in some cases. For example, handling the following structure
9426 type definition when compiling for an i386/i486 target (which only aligns
9427 long long's to 32-bit boundaries) can be very tricky:
9429 struct S { int field1; long long field2:31; };
9431 Fortunately, there is a simple rule-of-thumb which can be used in such
9432 cases. When compiling for an i386/i486, GCC will allocate 8 bytes for the
9433 structure shown above. It decides to do this based upon one simple rule
9434 for bit-field allocation. GCC allocates each "containing object" for each
9435 bit-field at the first (i.e. lowest addressed) legitimate alignment
9436 boundary (based upon the required minimum alignment for the declared type
9437 of the field) which it can possibly use, subject to the condition that
9438 there is still enough available space remaining in the containing object
9439 (when allocated at the selected point) to fully accommodate all of the
9440 bits of the bit-field itself.
9442 This simple rule makes it obvious why GCC allocates 8 bytes for each
9443 object of the structure type shown above. When looking for a place to
9444 allocate the "containing object" for `field2', the compiler simply tries
9445 to allocate a 64-bit "containing object" at each successive 32-bit
9446 boundary (starting at zero) until it finds a place to allocate that 64-
9447 bit field such that at least 31 contiguous (and previously unallocated)
9448 bits remain within that selected 64 bit field. (As it turns out, for the
9449 example above, the compiler finds it is OK to allocate the "containing
9450 object" 64-bit field at bit-offset zero within the structure type.)
9452 Here we attempt to work backwards from the limited set of facts we're
9453 given, and we try to deduce from those facts, where GCC must have believed
9454 that the containing object started (within the structure type). The value
9455 we deduce is then used (by the callers of this routine) to generate
9456 DW_AT_location and DW_AT_bit_offset attributes for fields (both bit-fields
9457 and, in the case of DW_AT_location, regular fields as well). */
9459 /* Figure out the bit-distance from the start of the structure to the
9460 "deepest" bit of the bit-field. */
9461 deepest_bitpos = bitpos_int + field_size_in_bits;
9463 /* This is the tricky part. Use some fancy footwork to deduce where the
9464 lowest addressed bit of the containing object must be. */
9465 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9467 /* Round up to type_align by default. This works best for bitfields. */
9468 object_offset_in_bits += type_align_in_bits - 1;
9469 object_offset_in_bits /= type_align_in_bits;
9470 object_offset_in_bits *= type_align_in_bits;
9472 if (object_offset_in_bits > bitpos_int)
9474 /* Sigh, the decl must be packed. */
9475 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9477 /* Round up to decl_align instead. */
9478 object_offset_in_bits += decl_align_in_bits - 1;
9479 object_offset_in_bits /= decl_align_in_bits;
9480 object_offset_in_bits *= decl_align_in_bits;
9483 return object_offset_in_bits / BITS_PER_UNIT;
9486 /* The following routines define various Dwarf attributes and any data
9487 associated with them. */
9489 /* Add a location description attribute value to a DIE.
9491 This emits location attributes suitable for whole variables and
9492 whole parameters. Note that the location attributes for struct fields are
9493 generated by the routine `data_member_location_attribute' below. */
9495 static inline void
9496 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
9497 dw_loc_descr_ref descr)
9499 if (descr != 0)
9500 add_AT_loc (die, attr_kind, descr);
9503 /* Attach the specialized form of location attribute used for data members of
9504 struct and union types. In the special case of a FIELD_DECL node which
9505 represents a bit-field, the "offset" part of this special location
9506 descriptor must indicate the distance in bytes from the lowest-addressed
9507 byte of the containing struct or union type to the lowest-addressed byte of
9508 the "containing object" for the bit-field. (See the `field_byte_offset'
9509 function above).
9511 For any given bit-field, the "containing object" is a hypothetical object
9512 (of some integral or enum type) within which the given bit-field lives. The
9513 type of this hypothetical "containing object" is always the same as the
9514 declared type of the individual bit-field itself (for GCC anyway... the
9515 DWARF spec doesn't actually mandate this). Note that it is the size (in
9516 bytes) of the hypothetical "containing object" which will be given in the
9517 DW_AT_byte_size attribute for this bit-field. (See the
9518 `byte_size_attribute' function below.) It is also used when calculating the
9519 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
9520 function below.) */
9522 static void
9523 add_data_member_location_attribute (dw_die_ref die, tree decl)
9525 HOST_WIDE_INT offset;
9526 dw_loc_descr_ref loc_descr = 0;
9528 if (TREE_CODE (decl) == TREE_BINFO)
9530 /* We're working on the TAG_inheritance for a base class. */
9531 if (BINFO_VIRTUAL_P (decl) && is_cxx ())
9533 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
9534 aren't at a fixed offset from all (sub)objects of the same
9535 type. We need to extract the appropriate offset from our
9536 vtable. The following dwarf expression means
9538 BaseAddr = ObAddr + *((*ObAddr) - Offset)
9540 This is specific to the V3 ABI, of course. */
9542 dw_loc_descr_ref tmp;
9544 /* Make a copy of the object address. */
9545 tmp = new_loc_descr (DW_OP_dup, 0, 0);
9546 add_loc_descr (&loc_descr, tmp);
9548 /* Extract the vtable address. */
9549 tmp = new_loc_descr (DW_OP_deref, 0, 0);
9550 add_loc_descr (&loc_descr, tmp);
9552 /* Calculate the address of the offset. */
9553 offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
9554 gcc_assert (offset < 0);
9556 tmp = int_loc_descriptor (-offset);
9557 add_loc_descr (&loc_descr, tmp);
9558 tmp = new_loc_descr (DW_OP_minus, 0, 0);
9559 add_loc_descr (&loc_descr, tmp);
9561 /* Extract the offset. */
9562 tmp = new_loc_descr (DW_OP_deref, 0, 0);
9563 add_loc_descr (&loc_descr, tmp);
9565 /* Add it to the object address. */
9566 tmp = new_loc_descr (DW_OP_plus, 0, 0);
9567 add_loc_descr (&loc_descr, tmp);
9569 else
9570 offset = tree_low_cst (BINFO_OFFSET (decl), 0);
9572 else
9573 offset = field_byte_offset (decl);
9575 if (! loc_descr)
9577 enum dwarf_location_atom op;
9579 /* The DWARF2 standard says that we should assume that the structure
9580 address is already on the stack, so we can specify a structure field
9581 address by using DW_OP_plus_uconst. */
9583 #ifdef MIPS_DEBUGGING_INFO
9584 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
9585 operator correctly. It works only if we leave the offset on the
9586 stack. */
9587 op = DW_OP_constu;
9588 #else
9589 op = DW_OP_plus_uconst;
9590 #endif
9592 loc_descr = new_loc_descr (op, offset, 0);
9595 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
9598 /* Writes integer values to dw_vec_const array. */
9600 static void
9601 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
9603 while (size != 0)
9605 *dest++ = val & 0xff;
9606 val >>= 8;
9607 --size;
9611 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
9613 static HOST_WIDE_INT
9614 extract_int (const unsigned char *src, unsigned int size)
9616 HOST_WIDE_INT val = 0;
9618 src += size;
9619 while (size != 0)
9621 val <<= 8;
9622 val |= *--src & 0xff;
9623 --size;
9625 return val;
9628 /* Writes floating point values to dw_vec_const array. */
9630 static void
9631 insert_float (rtx rtl, unsigned char *array)
9633 REAL_VALUE_TYPE rv;
9634 long val[4];
9635 int i;
9637 REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
9638 real_to_target (val, &rv, GET_MODE (rtl));
9640 /* real_to_target puts 32-bit pieces in each long. Pack them. */
9641 for (i = 0; i < GET_MODE_SIZE (GET_MODE (rtl)) / 4; i++)
9643 insert_int (val[i], 4, array);
9644 array += 4;
9648 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
9649 does not have a "location" either in memory or in a register. These
9650 things can arise in GNU C when a constant is passed as an actual parameter
9651 to an inlined function. They can also arise in C++ where declared
9652 constants do not necessarily get memory "homes". */
9654 static void
9655 add_const_value_attribute (dw_die_ref die, rtx rtl)
9657 switch (GET_CODE (rtl))
9659 case CONST_INT:
9661 HOST_WIDE_INT val = INTVAL (rtl);
9663 if (val < 0)
9664 add_AT_int (die, DW_AT_const_value, val);
9665 else
9666 add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
9668 break;
9670 case CONST_DOUBLE:
9671 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
9672 floating-point constant. A CONST_DOUBLE is used whenever the
9673 constant requires more than one word in order to be adequately
9674 represented. We output CONST_DOUBLEs as blocks. */
9676 enum machine_mode mode = GET_MODE (rtl);
9678 if (GET_MODE_CLASS (mode) == MODE_FLOAT)
9680 unsigned int length = GET_MODE_SIZE (mode);
9681 unsigned char *array = ggc_alloc (length);
9683 insert_float (rtl, array);
9684 add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
9686 else
9688 /* ??? We really should be using HOST_WIDE_INT throughout. */
9689 gcc_assert (HOST_BITS_PER_LONG == HOST_BITS_PER_WIDE_INT);
9691 add_AT_long_long (die, DW_AT_const_value,
9692 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
9695 break;
9697 case CONST_VECTOR:
9699 enum machine_mode mode = GET_MODE (rtl);
9700 unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
9701 unsigned int length = CONST_VECTOR_NUNITS (rtl);
9702 unsigned char *array = ggc_alloc (length * elt_size);
9703 unsigned int i;
9704 unsigned char *p;
9706 switch (GET_MODE_CLASS (mode))
9708 case MODE_VECTOR_INT:
9709 for (i = 0, p = array; i < length; i++, p += elt_size)
9711 rtx elt = CONST_VECTOR_ELT (rtl, i);
9712 HOST_WIDE_INT lo, hi;
9714 switch (GET_CODE (elt))
9716 case CONST_INT:
9717 lo = INTVAL (elt);
9718 hi = -(lo < 0);
9719 break;
9721 case CONST_DOUBLE:
9722 lo = CONST_DOUBLE_LOW (elt);
9723 hi = CONST_DOUBLE_HIGH (elt);
9724 break;
9726 default:
9727 gcc_unreachable ();
9730 if (elt_size <= sizeof (HOST_WIDE_INT))
9731 insert_int (lo, elt_size, p);
9732 else
9734 unsigned char *p0 = p;
9735 unsigned char *p1 = p + sizeof (HOST_WIDE_INT);
9737 gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
9738 if (WORDS_BIG_ENDIAN)
9740 p0 = p1;
9741 p1 = p;
9743 insert_int (lo, sizeof (HOST_WIDE_INT), p0);
9744 insert_int (hi, sizeof (HOST_WIDE_INT), p1);
9747 break;
9749 case MODE_VECTOR_FLOAT:
9750 for (i = 0, p = array; i < length; i++, p += elt_size)
9752 rtx elt = CONST_VECTOR_ELT (rtl, i);
9753 insert_float (elt, p);
9755 break;
9757 default:
9758 gcc_unreachable ();
9761 add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
9763 break;
9765 case CONST_STRING:
9766 add_AT_string (die, DW_AT_const_value, XSTR (rtl, 0));
9767 break;
9769 case SYMBOL_REF:
9770 case LABEL_REF:
9771 case CONST:
9772 add_AT_addr (die, DW_AT_const_value, rtl);
9773 VARRAY_PUSH_RTX (used_rtx_varray, rtl);
9774 break;
9776 case PLUS:
9777 /* In cases where an inlined instance of an inline function is passed
9778 the address of an `auto' variable (which is local to the caller) we
9779 can get a situation where the DECL_RTL of the artificial local
9780 variable (for the inlining) which acts as a stand-in for the
9781 corresponding formal parameter (of the inline function) will look
9782 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
9783 exactly a compile-time constant expression, but it isn't the address
9784 of the (artificial) local variable either. Rather, it represents the
9785 *value* which the artificial local variable always has during its
9786 lifetime. We currently have no way to represent such quasi-constant
9787 values in Dwarf, so for now we just punt and generate nothing. */
9788 break;
9790 default:
9791 /* No other kinds of rtx should be possible here. */
9792 gcc_unreachable ();
9797 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
9798 for use in a later add_const_value_attribute call. */
9800 static rtx
9801 rtl_for_decl_init (tree init, tree type)
9803 rtx rtl = NULL_RTX;
9805 /* If a variable is initialized with a string constant without embedded
9806 zeros, build CONST_STRING. */
9807 if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
9809 tree enttype = TREE_TYPE (type);
9810 tree domain = TYPE_DOMAIN (type);
9811 enum machine_mode mode = TYPE_MODE (enttype);
9813 if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_SIZE (mode) == 1
9814 && domain
9815 && integer_zerop (TYPE_MIN_VALUE (domain))
9816 && compare_tree_int (TYPE_MAX_VALUE (domain),
9817 TREE_STRING_LENGTH (init) - 1) == 0
9818 && ((size_t) TREE_STRING_LENGTH (init)
9819 == strlen (TREE_STRING_POINTER (init)) + 1))
9820 rtl = gen_rtx_CONST_STRING (VOIDmode,
9821 ggc_strdup (TREE_STRING_POINTER (init)));
9823 /* If the initializer is something that we know will expand into an
9824 immediate RTL constant, expand it now. Expanding anything else
9825 tends to produce unresolved symbols; see debug/5770 and c++/6381. */
9826 /* Aggregate, vector, and complex types may contain constructors that may
9827 result in code being generated when expand_expr is called, so we can't
9828 handle them here. Integer and float are useful and safe types to handle
9829 here. */
9830 else if ((INTEGRAL_TYPE_P (type) || SCALAR_FLOAT_TYPE_P (type))
9831 && initializer_constant_valid_p (init, type) == null_pointer_node)
9833 rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
9835 /* If expand_expr returns a MEM, it wasn't immediate. */
9836 gcc_assert (!rtl || !MEM_P (rtl));
9839 return rtl;
9842 /* Generate RTL for the variable DECL to represent its location. */
9844 static rtx
9845 rtl_for_decl_location (tree decl)
9847 rtx rtl;
9849 /* Here we have to decide where we are going to say the parameter "lives"
9850 (as far as the debugger is concerned). We only have a couple of
9851 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
9853 DECL_RTL normally indicates where the parameter lives during most of the
9854 activation of the function. If optimization is enabled however, this
9855 could be either NULL or else a pseudo-reg. Both of those cases indicate
9856 that the parameter doesn't really live anywhere (as far as the code
9857 generation parts of GCC are concerned) during most of the function's
9858 activation. That will happen (for example) if the parameter is never
9859 referenced within the function.
9861 We could just generate a location descriptor here for all non-NULL
9862 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
9863 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
9864 where DECL_RTL is NULL or is a pseudo-reg.
9866 Note however that we can only get away with using DECL_INCOMING_RTL as
9867 a backup substitute for DECL_RTL in certain limited cases. In cases
9868 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
9869 we can be sure that the parameter was passed using the same type as it is
9870 declared to have within the function, and that its DECL_INCOMING_RTL
9871 points us to a place where a value of that type is passed.
9873 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
9874 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
9875 because in these cases DECL_INCOMING_RTL points us to a value of some
9876 type which is *different* from the type of the parameter itself. Thus,
9877 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
9878 such cases, the debugger would end up (for example) trying to fetch a
9879 `float' from a place which actually contains the first part of a
9880 `double'. That would lead to really incorrect and confusing
9881 output at debug-time.
9883 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
9884 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
9885 are a couple of exceptions however. On little-endian machines we can
9886 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
9887 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
9888 an integral type that is smaller than TREE_TYPE (decl). These cases arise
9889 when (on a little-endian machine) a non-prototyped function has a
9890 parameter declared to be of type `short' or `char'. In such cases,
9891 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
9892 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
9893 passed `int' value. If the debugger then uses that address to fetch
9894 a `short' or a `char' (on a little-endian machine) the result will be
9895 the correct data, so we allow for such exceptional cases below.
9897 Note that our goal here is to describe the place where the given formal
9898 parameter lives during most of the function's activation (i.e. between the
9899 end of the prologue and the start of the epilogue). We'll do that as best
9900 as we can. Note however that if the given formal parameter is modified
9901 sometime during the execution of the function, then a stack backtrace (at
9902 debug-time) will show the function as having been called with the *new*
9903 value rather than the value which was originally passed in. This happens
9904 rarely enough that it is not a major problem, but it *is* a problem, and
9905 I'd like to fix it.
9907 A future version of dwarf2out.c may generate two additional attributes for
9908 any given DW_TAG_formal_parameter DIE which will describe the "passed
9909 type" and the "passed location" for the given formal parameter in addition
9910 to the attributes we now generate to indicate the "declared type" and the
9911 "active location" for each parameter. This additional set of attributes
9912 could be used by debuggers for stack backtraces. Separately, note that
9913 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
9914 This happens (for example) for inlined-instances of inline function formal
9915 parameters which are never referenced. This really shouldn't be
9916 happening. All PARM_DECL nodes should get valid non-NULL
9917 DECL_INCOMING_RTL values. FIXME. */
9919 /* Use DECL_RTL as the "location" unless we find something better. */
9920 rtl = DECL_RTL_IF_SET (decl);
9922 /* When generating abstract instances, ignore everything except
9923 constants, symbols living in memory, and symbols living in
9924 fixed registers. */
9925 if (! reload_completed)
9927 if (rtl
9928 && (CONSTANT_P (rtl)
9929 || (MEM_P (rtl)
9930 && CONSTANT_P (XEXP (rtl, 0)))
9931 || (REG_P (rtl)
9932 && TREE_CODE (decl) == VAR_DECL
9933 && TREE_STATIC (decl))))
9935 rtl = targetm.delegitimize_address (rtl);
9936 return rtl;
9938 rtl = NULL_RTX;
9940 else if (TREE_CODE (decl) == PARM_DECL)
9942 if (rtl == NULL_RTX || is_pseudo_reg (rtl))
9944 tree declared_type = TREE_TYPE (decl);
9945 tree passed_type = DECL_ARG_TYPE (decl);
9946 enum machine_mode dmode = TYPE_MODE (declared_type);
9947 enum machine_mode pmode = TYPE_MODE (passed_type);
9949 /* This decl represents a formal parameter which was optimized out.
9950 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
9951 all cases where (rtl == NULL_RTX) just below. */
9952 if (dmode == pmode)
9953 rtl = DECL_INCOMING_RTL (decl);
9954 else if (SCALAR_INT_MODE_P (dmode)
9955 && GET_MODE_SIZE (dmode) <= GET_MODE_SIZE (pmode)
9956 && DECL_INCOMING_RTL (decl))
9958 rtx inc = DECL_INCOMING_RTL (decl);
9959 if (REG_P (inc))
9960 rtl = inc;
9961 else if (MEM_P (inc))
9963 if (BYTES_BIG_ENDIAN)
9964 rtl = adjust_address_nv (inc, dmode,
9965 GET_MODE_SIZE (pmode)
9966 - GET_MODE_SIZE (dmode));
9967 else
9968 rtl = inc;
9973 /* If the parm was passed in registers, but lives on the stack, then
9974 make a big endian correction if the mode of the type of the
9975 parameter is not the same as the mode of the rtl. */
9976 /* ??? This is the same series of checks that are made in dbxout.c before
9977 we reach the big endian correction code there. It isn't clear if all
9978 of these checks are necessary here, but keeping them all is the safe
9979 thing to do. */
9980 else if (MEM_P (rtl)
9981 && XEXP (rtl, 0) != const0_rtx
9982 && ! CONSTANT_P (XEXP (rtl, 0))
9983 /* Not passed in memory. */
9984 && !MEM_P (DECL_INCOMING_RTL (decl))
9985 /* Not passed by invisible reference. */
9986 && (!REG_P (XEXP (rtl, 0))
9987 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
9988 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
9989 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
9990 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
9991 #endif
9993 /* Big endian correction check. */
9994 && BYTES_BIG_ENDIAN
9995 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
9996 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
9997 < UNITS_PER_WORD))
9999 int offset = (UNITS_PER_WORD
10000 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
10002 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
10003 plus_constant (XEXP (rtl, 0), offset));
10006 else if (TREE_CODE (decl) == VAR_DECL
10007 && rtl
10008 && MEM_P (rtl)
10009 && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl))
10010 && BYTES_BIG_ENDIAN)
10012 int rsize = GET_MODE_SIZE (GET_MODE (rtl));
10013 int dsize = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)));
10015 /* If a variable is declared "register" yet is smaller than
10016 a register, then if we store the variable to memory, it
10017 looks like we're storing a register-sized value, when in
10018 fact we are not. We need to adjust the offset of the
10019 storage location to reflect the actual value's bytes,
10020 else gdb will not be able to display it. */
10021 if (rsize > dsize)
10022 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
10023 plus_constant (XEXP (rtl, 0), rsize-dsize));
10026 if (rtl != NULL_RTX)
10028 rtl = eliminate_regs (rtl, 0, NULL_RTX);
10029 #ifdef LEAF_REG_REMAP
10030 if (current_function_uses_only_leaf_regs)
10031 leaf_renumber_regs_insn (rtl);
10032 #endif
10035 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
10036 and will have been substituted directly into all expressions that use it.
10037 C does not have such a concept, but C++ and other languages do. */
10038 else if (TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
10039 rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
10041 if (rtl)
10042 rtl = targetm.delegitimize_address (rtl);
10044 /* If we don't look past the constant pool, we risk emitting a
10045 reference to a constant pool entry that isn't referenced from
10046 code, and thus is not emitted. */
10047 if (rtl)
10048 rtl = avoid_constant_pool_reference (rtl);
10050 return rtl;
10053 /* Return true if DECL's containing function has a frame base attribute.
10054 Return false otherwise. */
10056 static bool
10057 containing_function_has_frame_base (tree decl)
10059 tree declcontext = decl_function_context (decl);
10060 dw_die_ref context;
10061 dw_attr_ref attr;
10063 if (!declcontext)
10064 return false;
10066 context = lookup_decl_die (declcontext);
10067 if (!context)
10068 return false;
10070 for (attr = context->die_attr; attr; attr = attr->dw_attr_next)
10071 if (attr->dw_attr == DW_AT_frame_base)
10072 return true;
10073 return false;
10076 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
10077 data attribute for a variable or a parameter. We generate the
10078 DW_AT_const_value attribute only in those cases where the given variable
10079 or parameter does not have a true "location" either in memory or in a
10080 register. This can happen (for example) when a constant is passed as an
10081 actual argument in a call to an inline function. (It's possible that
10082 these things can crop up in other ways also.) Note that one type of
10083 constant value which can be passed into an inlined function is a constant
10084 pointer. This can happen for example if an actual argument in an inlined
10085 function call evaluates to a compile-time constant address. */
10087 static void
10088 add_location_or_const_value_attribute (dw_die_ref die, tree decl,
10089 enum dwarf_attribute attr)
10091 rtx rtl;
10092 dw_loc_descr_ref descr;
10093 var_loc_list *loc_list;
10094 bool can_use_fb;
10095 struct var_loc_node *node;
10096 if (TREE_CODE (decl) == ERROR_MARK)
10097 return;
10099 gcc_assert (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
10100 || TREE_CODE (decl) == RESULT_DECL);
10102 can_use_fb = containing_function_has_frame_base (decl);
10104 /* See if we possibly have multiple locations for this variable. */
10105 loc_list = lookup_decl_loc (decl);
10107 /* If it truly has multiple locations, the first and last node will
10108 differ. */
10109 if (loc_list && loc_list->first != loc_list->last)
10111 const char *secname;
10112 const char *endname;
10113 dw_loc_list_ref list;
10114 rtx varloc;
10116 /* We need to figure out what section we should use as the base
10117 for the address ranges where a given location is valid.
10118 1. If this particular DECL has a section associated with it,
10119 use that.
10120 2. If this function has a section associated with it, use
10121 that.
10122 3. Otherwise, use the text section.
10123 XXX: If you split a variable across multiple sections, this
10124 won't notice. */
10126 if (DECL_SECTION_NAME (decl))
10128 tree sectree = DECL_SECTION_NAME (decl);
10129 secname = TREE_STRING_POINTER (sectree);
10131 else if (current_function_decl
10132 && DECL_SECTION_NAME (current_function_decl))
10134 tree sectree = DECL_SECTION_NAME (current_function_decl);
10135 secname = TREE_STRING_POINTER (sectree);
10137 else if (cfun
10138 && (last_text_section == in_unlikely_executed_text
10139 || (last_text_section == in_named
10140 && last_text_section_name ==
10141 cfun->unlikely_text_section_name)))
10142 secname = cfun->cold_section_label;
10143 else
10144 secname = text_section_label;
10146 /* Now that we know what section we are using for a base,
10147 actually construct the list of locations.
10148 The first location information is what is passed to the
10149 function that creates the location list, and the remaining
10150 locations just get added on to that list.
10151 Note that we only know the start address for a location
10152 (IE location changes), so to build the range, we use
10153 the range [current location start, next location start].
10154 This means we have to special case the last node, and generate
10155 a range of [last location start, end of function label]. */
10157 node = loc_list->first;
10158 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
10159 list = new_loc_list (loc_descriptor (varloc, can_use_fb),
10160 node->label, node->next->label, secname, 1);
10161 node = node->next;
10163 for (; node->next; node = node->next)
10164 if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
10166 /* The variable has a location between NODE->LABEL and
10167 NODE->NEXT->LABEL. */
10168 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
10169 add_loc_descr_to_loc_list (&list,
10170 loc_descriptor (varloc,
10171 can_use_fb),
10172 node->label, node->next->label, secname);
10175 /* If the variable has a location at the last label
10176 it keeps its location until the end of function. */
10177 if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
10179 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
10181 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
10182 if (!current_function_decl)
10183 endname = text_end_label;
10184 else
10186 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
10187 current_function_funcdef_no);
10188 endname = ggc_strdup (label_id);
10190 add_loc_descr_to_loc_list (&list,
10191 loc_descriptor (varloc,
10192 can_use_fb),
10193 node->label, endname, secname);
10196 /* Finally, add the location list to the DIE, and we are done. */
10197 add_AT_loc_list (die, attr, list);
10198 return;
10201 /* Try to get some constant RTL for this decl, and use that as the value of
10202 the location. */
10204 rtl = rtl_for_decl_location (decl);
10205 if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING))
10207 add_const_value_attribute (die, rtl);
10208 return;
10211 /* We couldn't get any rtl, and we had no >1 element location list, so try
10212 directly generating the location description from the tree. */
10213 descr = loc_descriptor_from_tree (decl);
10214 if (descr)
10216 add_AT_location_description (die, attr, descr);
10217 return;
10220 /* Lastly, if we have tried to generate the location otherwise, and it
10221 didn't work out (we wouldn't be here if we did), and we have a one entry
10222 location list, try generating a location from that. */
10223 if (loc_list && loc_list->first)
10225 node = loc_list->first;
10226 descr = loc_descriptor (NOTE_VAR_LOCATION (node->var_loc_note),
10227 can_use_fb);
10228 if (descr)
10229 add_AT_location_description (die, attr, descr);
10233 /* If we don't have a copy of this variable in memory for some reason (such
10234 as a C++ member constant that doesn't have an out-of-line definition),
10235 we should tell the debugger about the constant value. */
10237 static void
10238 tree_add_const_value_attribute (dw_die_ref var_die, tree decl)
10240 tree init = DECL_INITIAL (decl);
10241 tree type = TREE_TYPE (decl);
10242 rtx rtl;
10244 if (TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl) && init)
10245 /* OK */;
10246 else
10247 return;
10249 rtl = rtl_for_decl_init (init, type);
10250 if (rtl)
10251 add_const_value_attribute (var_die, rtl);
10254 /* Generate a DW_AT_name attribute given some string value to be included as
10255 the value of the attribute. */
10257 static void
10258 add_name_attribute (dw_die_ref die, const char *name_string)
10260 if (name_string != NULL && *name_string != 0)
10262 if (demangle_name_func)
10263 name_string = (*demangle_name_func) (name_string);
10265 add_AT_string (die, DW_AT_name, name_string);
10269 /* Generate a DW_AT_comp_dir attribute for DIE. */
10271 static void
10272 add_comp_dir_attribute (dw_die_ref die)
10274 const char *wd = get_src_pwd ();
10275 if (wd != NULL)
10276 add_AT_string (die, DW_AT_comp_dir, wd);
10279 /* Given a tree node describing an array bound (either lower or upper) output
10280 a representation for that bound. */
10282 static void
10283 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree bound)
10285 switch (TREE_CODE (bound))
10287 case ERROR_MARK:
10288 return;
10290 /* All fixed-bounds are represented by INTEGER_CST nodes. */
10291 case INTEGER_CST:
10292 if (! host_integerp (bound, 0)
10293 || (bound_attr == DW_AT_lower_bound
10294 && (((is_c_family () || is_java ()) && integer_zerop (bound))
10295 || (is_fortran () && integer_onep (bound)))))
10296 /* Use the default. */
10298 else
10299 add_AT_unsigned (subrange_die, bound_attr, tree_low_cst (bound, 0));
10300 break;
10302 case CONVERT_EXPR:
10303 case NOP_EXPR:
10304 case NON_LVALUE_EXPR:
10305 case VIEW_CONVERT_EXPR:
10306 add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
10307 break;
10309 case SAVE_EXPR:
10310 break;
10312 case VAR_DECL:
10313 case PARM_DECL:
10314 case RESULT_DECL:
10316 dw_die_ref decl_die = lookup_decl_die (bound);
10318 /* ??? Can this happen, or should the variable have been bound
10319 first? Probably it can, since I imagine that we try to create
10320 the types of parameters in the order in which they exist in
10321 the list, and won't have created a forward reference to a
10322 later parameter. */
10323 if (decl_die != NULL)
10324 add_AT_die_ref (subrange_die, bound_attr, decl_die);
10325 break;
10328 default:
10330 /* Otherwise try to create a stack operation procedure to
10331 evaluate the value of the array bound. */
10333 dw_die_ref ctx, decl_die;
10334 dw_loc_descr_ref loc;
10336 loc = loc_descriptor_from_tree (bound);
10337 if (loc == NULL)
10338 break;
10340 if (current_function_decl == 0)
10341 ctx = comp_unit_die;
10342 else
10343 ctx = lookup_decl_die (current_function_decl);
10345 decl_die = new_die (DW_TAG_variable, ctx, bound);
10346 add_AT_flag (decl_die, DW_AT_artificial, 1);
10347 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
10348 add_AT_loc (decl_die, DW_AT_location, loc);
10350 add_AT_die_ref (subrange_die, bound_attr, decl_die);
10351 break;
10356 /* Note that the block of subscript information for an array type also
10357 includes information about the element type of type given array type. */
10359 static void
10360 add_subscript_info (dw_die_ref type_die, tree type)
10362 #ifndef MIPS_DEBUGGING_INFO
10363 unsigned dimension_number;
10364 #endif
10365 tree lower, upper;
10366 dw_die_ref subrange_die;
10368 /* The GNU compilers represent multidimensional array types as sequences of
10369 one dimensional array types whose element types are themselves array
10370 types. Here we squish that down, so that each multidimensional array
10371 type gets only one array_type DIE in the Dwarf debugging info. The draft
10372 Dwarf specification say that we are allowed to do this kind of
10373 compression in C (because there is no difference between an array or
10374 arrays and a multidimensional array in C) but for other source languages
10375 (e.g. Ada) we probably shouldn't do this. */
10377 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
10378 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
10379 We work around this by disabling this feature. See also
10380 gen_array_type_die. */
10381 #ifndef MIPS_DEBUGGING_INFO
10382 for (dimension_number = 0;
10383 TREE_CODE (type) == ARRAY_TYPE;
10384 type = TREE_TYPE (type), dimension_number++)
10385 #endif
10387 tree domain = TYPE_DOMAIN (type);
10389 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
10390 and (in GNU C only) variable bounds. Handle all three forms
10391 here. */
10392 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
10393 if (domain)
10395 /* We have an array type with specified bounds. */
10396 lower = TYPE_MIN_VALUE (domain);
10397 upper = TYPE_MAX_VALUE (domain);
10399 /* Define the index type. */
10400 if (TREE_TYPE (domain))
10402 /* ??? This is probably an Ada unnamed subrange type. Ignore the
10403 TREE_TYPE field. We can't emit debug info for this
10404 because it is an unnamed integral type. */
10405 if (TREE_CODE (domain) == INTEGER_TYPE
10406 && TYPE_NAME (domain) == NULL_TREE
10407 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
10408 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
10410 else
10411 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
10412 type_die);
10415 /* ??? If upper is NULL, the array has unspecified length,
10416 but it does have a lower bound. This happens with Fortran
10417 dimension arr(N:*)
10418 Since the debugger is definitely going to need to know N
10419 to produce useful results, go ahead and output the lower
10420 bound solo, and hope the debugger can cope. */
10422 add_bound_info (subrange_die, DW_AT_lower_bound, lower);
10423 if (upper)
10424 add_bound_info (subrange_die, DW_AT_upper_bound, upper);
10427 /* Otherwise we have an array type with an unspecified length. The
10428 DWARF-2 spec does not say how to handle this; let's just leave out the
10429 bounds. */
10433 static void
10434 add_byte_size_attribute (dw_die_ref die, tree tree_node)
10436 unsigned size;
10438 switch (TREE_CODE (tree_node))
10440 case ERROR_MARK:
10441 size = 0;
10442 break;
10443 case ENUMERAL_TYPE:
10444 case RECORD_TYPE:
10445 case UNION_TYPE:
10446 case QUAL_UNION_TYPE:
10447 size = int_size_in_bytes (tree_node);
10448 break;
10449 case FIELD_DECL:
10450 /* For a data member of a struct or union, the DW_AT_byte_size is
10451 generally given as the number of bytes normally allocated for an
10452 object of the *declared* type of the member itself. This is true
10453 even for bit-fields. */
10454 size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
10455 break;
10456 default:
10457 gcc_unreachable ();
10460 /* Note that `size' might be -1 when we get to this point. If it is, that
10461 indicates that the byte size of the entity in question is variable. We
10462 have no good way of expressing this fact in Dwarf at the present time,
10463 so just let the -1 pass on through. */
10464 add_AT_unsigned (die, DW_AT_byte_size, size);
10467 /* For a FIELD_DECL node which represents a bit-field, output an attribute
10468 which specifies the distance in bits from the highest order bit of the
10469 "containing object" for the bit-field to the highest order bit of the
10470 bit-field itself.
10472 For any given bit-field, the "containing object" is a hypothetical object
10473 (of some integral or enum type) within which the given bit-field lives. The
10474 type of this hypothetical "containing object" is always the same as the
10475 declared type of the individual bit-field itself. The determination of the
10476 exact location of the "containing object" for a bit-field is rather
10477 complicated. It's handled by the `field_byte_offset' function (above).
10479 Note that it is the size (in bytes) of the hypothetical "containing object"
10480 which will be given in the DW_AT_byte_size attribute for this bit-field.
10481 (See `byte_size_attribute' above). */
10483 static inline void
10484 add_bit_offset_attribute (dw_die_ref die, tree decl)
10486 HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
10487 tree type = DECL_BIT_FIELD_TYPE (decl);
10488 HOST_WIDE_INT bitpos_int;
10489 HOST_WIDE_INT highest_order_object_bit_offset;
10490 HOST_WIDE_INT highest_order_field_bit_offset;
10491 HOST_WIDE_INT unsigned bit_offset;
10493 /* Must be a field and a bit field. */
10494 gcc_assert (type && TREE_CODE (decl) == FIELD_DECL);
10496 /* We can't yet handle bit-fields whose offsets are variable, so if we
10497 encounter such things, just return without generating any attribute
10498 whatsoever. Likewise for variable or too large size. */
10499 if (! host_integerp (bit_position (decl), 0)
10500 || ! host_integerp (DECL_SIZE (decl), 1))
10501 return;
10503 bitpos_int = int_bit_position (decl);
10505 /* Note that the bit offset is always the distance (in bits) from the
10506 highest-order bit of the "containing object" to the highest-order bit of
10507 the bit-field itself. Since the "high-order end" of any object or field
10508 is different on big-endian and little-endian machines, the computation
10509 below must take account of these differences. */
10510 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
10511 highest_order_field_bit_offset = bitpos_int;
10513 if (! BYTES_BIG_ENDIAN)
10515 highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
10516 highest_order_object_bit_offset += simple_type_size_in_bits (type);
10519 bit_offset
10520 = (! BYTES_BIG_ENDIAN
10521 ? highest_order_object_bit_offset - highest_order_field_bit_offset
10522 : highest_order_field_bit_offset - highest_order_object_bit_offset);
10524 add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
10527 /* For a FIELD_DECL node which represents a bit field, output an attribute
10528 which specifies the length in bits of the given field. */
10530 static inline void
10531 add_bit_size_attribute (dw_die_ref die, tree decl)
10533 /* Must be a field and a bit field. */
10534 gcc_assert (TREE_CODE (decl) == FIELD_DECL
10535 && DECL_BIT_FIELD_TYPE (decl));
10537 if (host_integerp (DECL_SIZE (decl), 1))
10538 add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
10541 /* If the compiled language is ANSI C, then add a 'prototyped'
10542 attribute, if arg types are given for the parameters of a function. */
10544 static inline void
10545 add_prototyped_attribute (dw_die_ref die, tree func_type)
10547 if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
10548 && TYPE_ARG_TYPES (func_type) != NULL)
10549 add_AT_flag (die, DW_AT_prototyped, 1);
10552 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
10553 by looking in either the type declaration or object declaration
10554 equate table. */
10556 static inline void
10557 add_abstract_origin_attribute (dw_die_ref die, tree origin)
10559 dw_die_ref origin_die = NULL;
10561 if (TREE_CODE (origin) != FUNCTION_DECL)
10563 /* We may have gotten separated from the block for the inlined
10564 function, if we're in an exception handler or some such; make
10565 sure that the abstract function has been written out.
10567 Doing this for nested functions is wrong, however; functions are
10568 distinct units, and our context might not even be inline. */
10569 tree fn = origin;
10571 if (TYPE_P (fn))
10572 fn = TYPE_STUB_DECL (fn);
10574 fn = decl_function_context (fn);
10575 if (fn)
10576 dwarf2out_abstract_function (fn);
10579 if (DECL_P (origin))
10580 origin_die = lookup_decl_die (origin);
10581 else if (TYPE_P (origin))
10582 origin_die = lookup_type_die (origin);
10584 /* XXX: Functions that are never lowered don't always have correct block
10585 trees (in the case of java, they simply have no block tree, in some other
10586 languages). For these functions, there is nothing we can really do to
10587 output correct debug info for inlined functions in all cases. Rather
10588 than die, we'll just produce deficient debug info now, in that we will
10589 have variables without a proper abstract origin. In the future, when all
10590 functions are lowered, we should re-add a gcc_assert (origin_die)
10591 here. */
10593 if (origin_die)
10594 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
10597 /* We do not currently support the pure_virtual attribute. */
10599 static inline void
10600 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
10602 if (DECL_VINDEX (func_decl))
10604 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
10606 if (host_integerp (DECL_VINDEX (func_decl), 0))
10607 add_AT_loc (die, DW_AT_vtable_elem_location,
10608 new_loc_descr (DW_OP_constu,
10609 tree_low_cst (DECL_VINDEX (func_decl), 0),
10610 0));
10612 /* GNU extension: Record what type this method came from originally. */
10613 if (debug_info_level > DINFO_LEVEL_TERSE)
10614 add_AT_die_ref (die, DW_AT_containing_type,
10615 lookup_type_die (DECL_CONTEXT (func_decl)));
10619 /* Add source coordinate attributes for the given decl. */
10621 static void
10622 add_src_coords_attributes (dw_die_ref die, tree decl)
10624 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
10625 unsigned file_index = lookup_filename (s.file);
10627 add_AT_unsigned (die, DW_AT_decl_file, file_index);
10628 add_AT_unsigned (die, DW_AT_decl_line, s.line);
10631 /* Add a DW_AT_name attribute and source coordinate attribute for the
10632 given decl, but only if it actually has a name. */
10634 static void
10635 add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
10637 tree decl_name;
10639 decl_name = DECL_NAME (decl);
10640 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
10642 add_name_attribute (die, dwarf2_name (decl, 0));
10643 if (! DECL_ARTIFICIAL (decl))
10644 add_src_coords_attributes (die, decl);
10646 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
10647 && TREE_PUBLIC (decl)
10648 && DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
10649 && !DECL_ABSTRACT (decl))
10650 add_AT_string (die, DW_AT_MIPS_linkage_name,
10651 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
10654 #ifdef VMS_DEBUGGING_INFO
10655 /* Get the function's name, as described by its RTL. This may be different
10656 from the DECL_NAME name used in the source file. */
10657 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
10659 add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
10660 XEXP (DECL_RTL (decl), 0));
10661 VARRAY_PUSH_RTX (used_rtx_varray, XEXP (DECL_RTL (decl), 0));
10663 #endif
10666 /* Push a new declaration scope. */
10668 static void
10669 push_decl_scope (tree scope)
10671 VEC_safe_push (tree, gc, decl_scope_table, scope);
10674 /* Pop a declaration scope. */
10676 static inline void
10677 pop_decl_scope (void)
10679 VEC_pop (tree, decl_scope_table);
10682 /* Return the DIE for the scope that immediately contains this type.
10683 Non-named types get global scope. Named types nested in other
10684 types get their containing scope if it's open, or global scope
10685 otherwise. All other types (i.e. function-local named types) get
10686 the current active scope. */
10688 static dw_die_ref
10689 scope_die_for (tree t, dw_die_ref context_die)
10691 dw_die_ref scope_die = NULL;
10692 tree containing_scope;
10693 int i;
10695 /* Non-types always go in the current scope. */
10696 gcc_assert (TYPE_P (t));
10698 containing_scope = TYPE_CONTEXT (t);
10700 /* Use the containing namespace if it was passed in (for a declaration). */
10701 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
10703 if (context_die == lookup_decl_die (containing_scope))
10704 /* OK */;
10705 else
10706 containing_scope = NULL_TREE;
10709 /* Ignore function type "scopes" from the C frontend. They mean that
10710 a tagged type is local to a parmlist of a function declarator, but
10711 that isn't useful to DWARF. */
10712 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
10713 containing_scope = NULL_TREE;
10715 if (containing_scope == NULL_TREE)
10716 scope_die = comp_unit_die;
10717 else if (TYPE_P (containing_scope))
10719 /* For types, we can just look up the appropriate DIE. But
10720 first we check to see if we're in the middle of emitting it
10721 so we know where the new DIE should go. */
10722 for (i = VEC_length (tree, decl_scope_table) - 1; i >= 0; --i)
10723 if (VEC_index (tree, decl_scope_table, i) == containing_scope)
10724 break;
10726 if (i < 0)
10728 gcc_assert (debug_info_level <= DINFO_LEVEL_TERSE
10729 || TREE_ASM_WRITTEN (containing_scope));
10731 /* If none of the current dies are suitable, we get file scope. */
10732 scope_die = comp_unit_die;
10734 else
10735 scope_die = lookup_type_die (containing_scope);
10737 else
10738 scope_die = context_die;
10740 return scope_die;
10743 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
10745 static inline int
10746 local_scope_p (dw_die_ref context_die)
10748 for (; context_die; context_die = context_die->die_parent)
10749 if (context_die->die_tag == DW_TAG_inlined_subroutine
10750 || context_die->die_tag == DW_TAG_subprogram)
10751 return 1;
10753 return 0;
10756 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
10757 whether or not to treat a DIE in this context as a declaration. */
10759 static inline int
10760 class_or_namespace_scope_p (dw_die_ref context_die)
10762 return (context_die
10763 && (context_die->die_tag == DW_TAG_structure_type
10764 || context_die->die_tag == DW_TAG_union_type
10765 || context_die->die_tag == DW_TAG_namespace));
10768 /* Many forms of DIEs require a "type description" attribute. This
10769 routine locates the proper "type descriptor" die for the type given
10770 by 'type', and adds a DW_AT_type attribute below the given die. */
10772 static void
10773 add_type_attribute (dw_die_ref object_die, tree type, int decl_const,
10774 int decl_volatile, dw_die_ref context_die)
10776 enum tree_code code = TREE_CODE (type);
10777 dw_die_ref type_die = NULL;
10779 /* ??? If this type is an unnamed subrange type of an integral or
10780 floating-point type, use the inner type. This is because we have no
10781 support for unnamed types in base_type_die. This can happen if this is
10782 an Ada subrange type. Correct solution is emit a subrange type die. */
10783 if ((code == INTEGER_TYPE || code == REAL_TYPE)
10784 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
10785 type = TREE_TYPE (type), code = TREE_CODE (type);
10787 if (code == ERROR_MARK
10788 /* Handle a special case. For functions whose return type is void, we
10789 generate *no* type attribute. (Note that no object may have type
10790 `void', so this only applies to function return types). */
10791 || code == VOID_TYPE)
10792 return;
10794 type_die = modified_type_die (type,
10795 decl_const || TYPE_READONLY (type),
10796 decl_volatile || TYPE_VOLATILE (type),
10797 context_die);
10799 if (type_die != NULL)
10800 add_AT_die_ref (object_die, DW_AT_type, type_die);
10803 /* Given an object die, add the calling convention attribute for the
10804 function call type. */
10805 static void
10806 add_calling_convention_attribute (dw_die_ref subr_die, tree type)
10808 enum dwarf_calling_convention value = DW_CC_normal;
10810 value = targetm.dwarf_calling_convention (type);
10812 /* Only add the attribute if the backend requests it, and
10813 is not DW_CC_normal. */
10814 if (value && (value != DW_CC_normal))
10815 add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
10818 /* Given a tree pointer to a struct, class, union, or enum type node, return
10819 a pointer to the (string) tag name for the given type, or zero if the type
10820 was declared without a tag. */
10822 static const char *
10823 type_tag (tree type)
10825 const char *name = 0;
10827 if (TYPE_NAME (type) != 0)
10829 tree t = 0;
10831 /* Find the IDENTIFIER_NODE for the type name. */
10832 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
10833 t = TYPE_NAME (type);
10835 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
10836 a TYPE_DECL node, regardless of whether or not a `typedef' was
10837 involved. */
10838 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10839 && ! DECL_IGNORED_P (TYPE_NAME (type)))
10840 t = DECL_NAME (TYPE_NAME (type));
10842 /* Now get the name as a string, or invent one. */
10843 if (t != 0)
10844 name = IDENTIFIER_POINTER (t);
10847 return (name == 0 || *name == '\0') ? 0 : name;
10850 /* Return the type associated with a data member, make a special check
10851 for bit field types. */
10853 static inline tree
10854 member_declared_type (tree member)
10856 return (DECL_BIT_FIELD_TYPE (member)
10857 ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
10860 /* Get the decl's label, as described by its RTL. This may be different
10861 from the DECL_NAME name used in the source file. */
10863 #if 0
10864 static const char *
10865 decl_start_label (tree decl)
10867 rtx x;
10868 const char *fnname;
10870 x = DECL_RTL (decl);
10871 gcc_assert (MEM_P (x));
10873 x = XEXP (x, 0);
10874 gcc_assert (GET_CODE (x) == SYMBOL_REF);
10876 fnname = XSTR (x, 0);
10877 return fnname;
10879 #endif
10881 /* These routines generate the internal representation of the DIE's for
10882 the compilation unit. Debugging information is collected by walking
10883 the declaration trees passed in from dwarf2out_decl(). */
10885 static void
10886 gen_array_type_die (tree type, dw_die_ref context_die)
10888 dw_die_ref scope_die = scope_die_for (type, context_die);
10889 dw_die_ref array_die;
10890 tree element_type;
10892 /* ??? The SGI dwarf reader fails for array of array of enum types unless
10893 the inner array type comes before the outer array type. Thus we must
10894 call gen_type_die before we call new_die. See below also. */
10895 #ifdef MIPS_DEBUGGING_INFO
10896 gen_type_die (TREE_TYPE (type), context_die);
10897 #endif
10899 array_die = new_die (DW_TAG_array_type, scope_die, type);
10900 add_name_attribute (array_die, type_tag (type));
10901 equate_type_number_to_die (type, array_die);
10903 if (TREE_CODE (type) == VECTOR_TYPE)
10905 /* The frontend feeds us a representation for the vector as a struct
10906 containing an array. Pull out the array type. */
10907 type = TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type)));
10908 add_AT_flag (array_die, DW_AT_GNU_vector, 1);
10911 #if 0
10912 /* We default the array ordering. SDB will probably do
10913 the right things even if DW_AT_ordering is not present. It's not even
10914 an issue until we start to get into multidimensional arrays anyway. If
10915 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
10916 then we'll have to put the DW_AT_ordering attribute back in. (But if
10917 and when we find out that we need to put these in, we will only do so
10918 for multidimensional arrays. */
10919 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
10920 #endif
10922 #ifdef MIPS_DEBUGGING_INFO
10923 /* The SGI compilers handle arrays of unknown bound by setting
10924 AT_declaration and not emitting any subrange DIEs. */
10925 if (! TYPE_DOMAIN (type))
10926 add_AT_flag (array_die, DW_AT_declaration, 1);
10927 else
10928 #endif
10929 add_subscript_info (array_die, type);
10931 /* Add representation of the type of the elements of this array type. */
10932 element_type = TREE_TYPE (type);
10934 /* ??? The SGI dwarf reader fails for multidimensional arrays with a
10935 const enum type. E.g. const enum machine_mode insn_operand_mode[2][10].
10936 We work around this by disabling this feature. See also
10937 add_subscript_info. */
10938 #ifndef MIPS_DEBUGGING_INFO
10939 while (TREE_CODE (element_type) == ARRAY_TYPE)
10940 element_type = TREE_TYPE (element_type);
10942 gen_type_die (element_type, context_die);
10943 #endif
10945 add_type_attribute (array_die, element_type, 0, 0, context_die);
10948 #if 0
10949 static void
10950 gen_entry_point_die (tree decl, dw_die_ref context_die)
10952 tree origin = decl_ultimate_origin (decl);
10953 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
10955 if (origin != NULL)
10956 add_abstract_origin_attribute (decl_die, origin);
10957 else
10959 add_name_and_src_coords_attributes (decl_die, decl);
10960 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
10961 0, 0, context_die);
10964 if (DECL_ABSTRACT (decl))
10965 equate_decl_number_to_die (decl, decl_die);
10966 else
10967 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
10969 #endif
10971 /* Walk through the list of incomplete types again, trying once more to
10972 emit full debugging info for them. */
10974 static void
10975 retry_incomplete_types (void)
10977 int i;
10979 for (i = VEC_length (tree, incomplete_types) - 1; i >= 0; i--)
10980 gen_type_die (VEC_index (tree, incomplete_types, i), comp_unit_die);
10983 /* Generate a DIE to represent an inlined instance of an enumeration type. */
10985 static void
10986 gen_inlined_enumeration_type_die (tree type, dw_die_ref context_die)
10988 dw_die_ref type_die = new_die (DW_TAG_enumeration_type, context_die, type);
10990 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
10991 be incomplete and such types are not marked. */
10992 add_abstract_origin_attribute (type_die, type);
10995 /* Generate a DIE to represent an inlined instance of a structure type. */
10997 static void
10998 gen_inlined_structure_type_die (tree type, dw_die_ref context_die)
11000 dw_die_ref type_die = new_die (DW_TAG_structure_type, context_die, type);
11002 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11003 be incomplete and such types are not marked. */
11004 add_abstract_origin_attribute (type_die, type);
11007 /* Generate a DIE to represent an inlined instance of a union type. */
11009 static void
11010 gen_inlined_union_type_die (tree type, dw_die_ref context_die)
11012 dw_die_ref type_die = new_die (DW_TAG_union_type, context_die, type);
11014 /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11015 be incomplete and such types are not marked. */
11016 add_abstract_origin_attribute (type_die, type);
11019 /* Generate a DIE to represent an enumeration type. Note that these DIEs
11020 include all of the information about the enumeration values also. Each
11021 enumerated type name/value is listed as a child of the enumerated type
11022 DIE. */
11024 static dw_die_ref
11025 gen_enumeration_type_die (tree type, dw_die_ref context_die)
11027 dw_die_ref type_die = lookup_type_die (type);
11029 if (type_die == NULL)
11031 type_die = new_die (DW_TAG_enumeration_type,
11032 scope_die_for (type, context_die), type);
11033 equate_type_number_to_die (type, type_die);
11034 add_name_attribute (type_die, type_tag (type));
11036 else if (! TYPE_SIZE (type))
11037 return type_die;
11038 else
11039 remove_AT (type_die, DW_AT_declaration);
11041 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
11042 given enum type is incomplete, do not generate the DW_AT_byte_size
11043 attribute or the DW_AT_element_list attribute. */
11044 if (TYPE_SIZE (type))
11046 tree link;
11048 TREE_ASM_WRITTEN (type) = 1;
11049 add_byte_size_attribute (type_die, type);
11050 if (TYPE_STUB_DECL (type) != NULL_TREE)
11051 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
11053 /* If the first reference to this type was as the return type of an
11054 inline function, then it may not have a parent. Fix this now. */
11055 if (type_die->die_parent == NULL)
11056 add_child_die (scope_die_for (type, context_die), type_die);
11058 for (link = TYPE_VALUES (type);
11059 link != NULL; link = TREE_CHAIN (link))
11061 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
11062 tree value = TREE_VALUE (link);
11064 add_name_attribute (enum_die,
11065 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
11067 if (host_integerp (value, TYPE_UNSIGNED (TREE_TYPE (value))))
11068 /* DWARF2 does not provide a way of indicating whether or
11069 not enumeration constants are signed or unsigned. GDB
11070 always assumes the values are signed, so we output all
11071 values as if they were signed. That means that
11072 enumeration constants with very large unsigned values
11073 will appear to have negative values in the debugger. */
11074 add_AT_int (enum_die, DW_AT_const_value,
11075 tree_low_cst (value, tree_int_cst_sgn (value) > 0));
11078 else
11079 add_AT_flag (type_die, DW_AT_declaration, 1);
11081 return type_die;
11084 /* Generate a DIE to represent either a real live formal parameter decl or to
11085 represent just the type of some formal parameter position in some function
11086 type.
11088 Note that this routine is a bit unusual because its argument may be a
11089 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
11090 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
11091 node. If it's the former then this function is being called to output a
11092 DIE to represent a formal parameter object (or some inlining thereof). If
11093 it's the latter, then this function is only being called to output a
11094 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
11095 argument type of some subprogram type. */
11097 static dw_die_ref
11098 gen_formal_parameter_die (tree node, dw_die_ref context_die)
11100 dw_die_ref parm_die
11101 = new_die (DW_TAG_formal_parameter, context_die, node);
11102 tree origin;
11104 switch (TREE_CODE_CLASS (TREE_CODE (node)))
11106 case tcc_declaration:
11107 origin = decl_ultimate_origin (node);
11108 if (origin != NULL)
11109 add_abstract_origin_attribute (parm_die, origin);
11110 else
11112 add_name_and_src_coords_attributes (parm_die, node);
11113 add_type_attribute (parm_die, TREE_TYPE (node),
11114 TREE_READONLY (node),
11115 TREE_THIS_VOLATILE (node),
11116 context_die);
11117 if (DECL_ARTIFICIAL (node))
11118 add_AT_flag (parm_die, DW_AT_artificial, 1);
11121 equate_decl_number_to_die (node, parm_die);
11122 if (! DECL_ABSTRACT (node))
11123 add_location_or_const_value_attribute (parm_die, node, DW_AT_location);
11125 break;
11127 case tcc_type:
11128 /* We were called with some kind of a ..._TYPE node. */
11129 add_type_attribute (parm_die, node, 0, 0, context_die);
11130 break;
11132 default:
11133 gcc_unreachable ();
11136 return parm_die;
11139 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
11140 at the end of an (ANSI prototyped) formal parameters list. */
11142 static void
11143 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
11145 new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
11148 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
11149 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
11150 parameters as specified in some function type specification (except for
11151 those which appear as part of a function *definition*). */
11153 static void
11154 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
11156 tree link;
11157 tree formal_type = NULL;
11158 tree first_parm_type;
11159 tree arg;
11161 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
11163 arg = DECL_ARGUMENTS (function_or_method_type);
11164 function_or_method_type = TREE_TYPE (function_or_method_type);
11166 else
11167 arg = NULL_TREE;
11169 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
11171 /* Make our first pass over the list of formal parameter types and output a
11172 DW_TAG_formal_parameter DIE for each one. */
11173 for (link = first_parm_type; link; )
11175 dw_die_ref parm_die;
11177 formal_type = TREE_VALUE (link);
11178 if (formal_type == void_type_node)
11179 break;
11181 /* Output a (nameless) DIE to represent the formal parameter itself. */
11182 parm_die = gen_formal_parameter_die (formal_type, context_die);
11183 if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
11184 && link == first_parm_type)
11185 || (arg && DECL_ARTIFICIAL (arg)))
11186 add_AT_flag (parm_die, DW_AT_artificial, 1);
11188 link = TREE_CHAIN (link);
11189 if (arg)
11190 arg = TREE_CHAIN (arg);
11193 /* If this function type has an ellipsis, add a
11194 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
11195 if (formal_type != void_type_node)
11196 gen_unspecified_parameters_die (function_or_method_type, context_die);
11198 /* Make our second (and final) pass over the list of formal parameter types
11199 and output DIEs to represent those types (as necessary). */
11200 for (link = TYPE_ARG_TYPES (function_or_method_type);
11201 link && TREE_VALUE (link);
11202 link = TREE_CHAIN (link))
11203 gen_type_die (TREE_VALUE (link), context_die);
11206 /* We want to generate the DIE for TYPE so that we can generate the
11207 die for MEMBER, which has been defined; we will need to refer back
11208 to the member declaration nested within TYPE. If we're trying to
11209 generate minimal debug info for TYPE, processing TYPE won't do the
11210 trick; we need to attach the member declaration by hand. */
11212 static void
11213 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
11215 gen_type_die (type, context_die);
11217 /* If we're trying to avoid duplicate debug info, we may not have
11218 emitted the member decl for this function. Emit it now. */
11219 if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
11220 && ! lookup_decl_die (member))
11222 dw_die_ref type_die;
11223 gcc_assert (!decl_ultimate_origin (member));
11225 push_decl_scope (type);
11226 type_die = lookup_type_die (type);
11227 if (TREE_CODE (member) == FUNCTION_DECL)
11228 gen_subprogram_die (member, type_die);
11229 else if (TREE_CODE (member) == FIELD_DECL)
11231 /* Ignore the nameless fields that are used to skip bits but handle
11232 C++ anonymous unions and structs. */
11233 if (DECL_NAME (member) != NULL_TREE
11234 || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
11235 || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
11237 gen_type_die (member_declared_type (member), type_die);
11238 gen_field_die (member, type_die);
11241 else
11242 gen_variable_die (member, type_die);
11244 pop_decl_scope ();
11248 /* Generate the DWARF2 info for the "abstract" instance of a function which we
11249 may later generate inlined and/or out-of-line instances of. */
11251 static void
11252 dwarf2out_abstract_function (tree decl)
11254 dw_die_ref old_die;
11255 tree save_fn;
11256 tree context;
11257 int was_abstract = DECL_ABSTRACT (decl);
11259 /* Make sure we have the actual abstract inline, not a clone. */
11260 decl = DECL_ORIGIN (decl);
11262 old_die = lookup_decl_die (decl);
11263 if (old_die && get_AT (old_die, DW_AT_inline))
11264 /* We've already generated the abstract instance. */
11265 return;
11267 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
11268 we don't get confused by DECL_ABSTRACT. */
11269 if (debug_info_level > DINFO_LEVEL_TERSE)
11271 context = decl_class_context (decl);
11272 if (context)
11273 gen_type_die_for_member
11274 (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
11277 /* Pretend we've just finished compiling this function. */
11278 save_fn = current_function_decl;
11279 current_function_decl = decl;
11281 set_decl_abstract_flags (decl, 1);
11282 dwarf2out_decl (decl);
11283 if (! was_abstract)
11284 set_decl_abstract_flags (decl, 0);
11286 current_function_decl = save_fn;
11289 /* Generate a DIE to represent a declared function (either file-scope or
11290 block-local). */
11292 static void
11293 gen_subprogram_die (tree decl, dw_die_ref context_die)
11295 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
11296 tree origin = decl_ultimate_origin (decl);
11297 dw_die_ref subr_die;
11298 rtx fp_reg;
11299 tree fn_arg_types;
11300 tree outer_scope;
11301 dw_die_ref old_die = lookup_decl_die (decl);
11302 int declaration = (current_function_decl != decl
11303 || class_or_namespace_scope_p (context_die));
11305 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
11306 started to generate the abstract instance of an inline, decided to output
11307 its containing class, and proceeded to emit the declaration of the inline
11308 from the member list for the class. If so, DECLARATION takes priority;
11309 we'll get back to the abstract instance when done with the class. */
11311 /* The class-scope declaration DIE must be the primary DIE. */
11312 if (origin && declaration && class_or_namespace_scope_p (context_die))
11314 origin = NULL;
11315 gcc_assert (!old_die);
11318 if (origin != NULL)
11320 gcc_assert (!declaration || local_scope_p (context_die));
11322 /* Fixup die_parent for the abstract instance of a nested
11323 inline function. */
11324 if (old_die && old_die->die_parent == NULL)
11325 add_child_die (context_die, old_die);
11327 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11328 add_abstract_origin_attribute (subr_die, origin);
11330 else if (old_die)
11332 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
11333 unsigned file_index = lookup_filename (s.file);
11335 if (!get_AT_flag (old_die, DW_AT_declaration)
11336 /* We can have a normal definition following an inline one in the
11337 case of redefinition of GNU C extern inlines.
11338 It seems reasonable to use AT_specification in this case. */
11339 && !get_AT (old_die, DW_AT_inline))
11341 /* Detect and ignore this case, where we are trying to output
11342 something we have already output. */
11343 return;
11346 /* If the definition comes from the same place as the declaration,
11347 maybe use the old DIE. We always want the DIE for this function
11348 that has the *_pc attributes to be under comp_unit_die so the
11349 debugger can find it. We also need to do this for abstract
11350 instances of inlines, since the spec requires the out-of-line copy
11351 to have the same parent. For local class methods, this doesn't
11352 apply; we just use the old DIE. */
11353 if ((old_die->die_parent == comp_unit_die || context_die == NULL)
11354 && (DECL_ARTIFICIAL (decl)
11355 || (get_AT_unsigned (old_die, DW_AT_decl_file) == file_index
11356 && (get_AT_unsigned (old_die, DW_AT_decl_line)
11357 == (unsigned) s.line))))
11359 subr_die = old_die;
11361 /* Clear out the declaration attribute and the formal parameters.
11362 Do not remove all children, because it is possible that this
11363 declaration die was forced using force_decl_die(). In such
11364 cases die that forced declaration die (e.g. TAG_imported_module)
11365 is one of the children that we do not want to remove. */
11366 remove_AT (subr_die, DW_AT_declaration);
11367 remove_child_TAG (subr_die, DW_TAG_formal_parameter);
11369 else
11371 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11372 add_AT_specification (subr_die, old_die);
11373 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
11374 add_AT_unsigned (subr_die, DW_AT_decl_file, file_index);
11375 if (get_AT_unsigned (old_die, DW_AT_decl_line)
11376 != (unsigned) s.line)
11377 add_AT_unsigned
11378 (subr_die, DW_AT_decl_line, s.line);
11381 else
11383 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11385 if (TREE_PUBLIC (decl))
11386 add_AT_flag (subr_die, DW_AT_external, 1);
11388 add_name_and_src_coords_attributes (subr_die, decl);
11389 if (debug_info_level > DINFO_LEVEL_TERSE)
11391 add_prototyped_attribute (subr_die, TREE_TYPE (decl));
11392 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
11393 0, 0, context_die);
11396 add_pure_or_virtual_attribute (subr_die, decl);
11397 if (DECL_ARTIFICIAL (decl))
11398 add_AT_flag (subr_die, DW_AT_artificial, 1);
11400 if (TREE_PROTECTED (decl))
11401 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
11402 else if (TREE_PRIVATE (decl))
11403 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
11406 if (declaration)
11408 if (!old_die || !get_AT (old_die, DW_AT_inline))
11410 add_AT_flag (subr_die, DW_AT_declaration, 1);
11412 /* The first time we see a member function, it is in the context of
11413 the class to which it belongs. We make sure of this by emitting
11414 the class first. The next time is the definition, which is
11415 handled above. The two may come from the same source text.
11417 Note that force_decl_die() forces function declaration die. It is
11418 later reused to represent definition. */
11419 equate_decl_number_to_die (decl, subr_die);
11422 else if (DECL_ABSTRACT (decl))
11424 if (DECL_DECLARED_INLINE_P (decl))
11426 if (cgraph_function_possibly_inlined_p (decl))
11427 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
11428 else
11429 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
11431 else
11433 if (cgraph_function_possibly_inlined_p (decl))
11434 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
11435 else
11436 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_not_inlined);
11439 equate_decl_number_to_die (decl, subr_die);
11441 else if (!DECL_EXTERNAL (decl))
11443 if (!old_die || !get_AT (old_die, DW_AT_inline))
11444 equate_decl_number_to_die (decl, subr_die);
11446 if (!flag_reorder_blocks_and_partition)
11448 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
11449 current_function_funcdef_no);
11450 add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
11451 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
11452 current_function_funcdef_no);
11453 add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
11455 add_pubname (decl, subr_die);
11456 add_arange (decl, subr_die);
11458 else
11459 { /* Do nothing for now; maybe need to duplicate die, one for
11460 hot section and ond for cold section, then use the hot/cold
11461 section begin/end labels to generate the aranges... */
11463 add_AT_lbl_id (subr_die, DW_AT_low_pc, hot_section_label);
11464 add_AT_lbl_id (subr_die, DW_AT_high_pc, hot_section_end_label);
11465 add_AT_lbl_id (subr_die, DW_AT_lo_user, unlikely_section_label);
11466 add_AT_lbl_id (subr_die, DW_AT_hi_user, cold_section_end_label);
11468 add_pubname (decl, subr_die);
11469 add_arange (decl, subr_die);
11470 add_arange (decl, subr_die);
11474 #ifdef MIPS_DEBUGGING_INFO
11475 /* Add a reference to the FDE for this routine. */
11476 add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
11477 #endif
11479 /* Define the "frame base" location for this routine. We use the
11480 frame pointer or stack pointer registers, since the RTL for local
11481 variables is relative to one of them. */
11482 if (frame_base_decl && lookup_decl_loc (frame_base_decl) != NULL)
11484 add_location_or_const_value_attribute (subr_die, frame_base_decl,
11485 DW_AT_frame_base);
11487 else
11489 fp_reg
11490 = frame_pointer_needed ? hard_frame_pointer_rtx : stack_pointer_rtx;
11491 add_AT_loc (subr_die, DW_AT_frame_base, reg_loc_descriptor (fp_reg));
11494 if (cfun->static_chain_decl)
11495 add_AT_location_description (subr_die, DW_AT_static_link,
11496 loc_descriptor_from_tree (cfun->static_chain_decl));
11499 /* Now output descriptions of the arguments for this function. This gets
11500 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
11501 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
11502 `...' at the end of the formal parameter list. In order to find out if
11503 there was a trailing ellipsis or not, we must instead look at the type
11504 associated with the FUNCTION_DECL. This will be a node of type
11505 FUNCTION_TYPE. If the chain of type nodes hanging off of this
11506 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
11507 an ellipsis at the end. */
11509 /* In the case where we are describing a mere function declaration, all we
11510 need to do here (and all we *can* do here) is to describe the *types* of
11511 its formal parameters. */
11512 if (debug_info_level <= DINFO_LEVEL_TERSE)
11514 else if (declaration)
11515 gen_formal_types_die (decl, subr_die);
11516 else
11518 /* Generate DIEs to represent all known formal parameters. */
11519 tree arg_decls = DECL_ARGUMENTS (decl);
11520 tree parm;
11522 /* When generating DIEs, generate the unspecified_parameters DIE
11523 instead if we come across the arg "__builtin_va_alist" */
11524 for (parm = arg_decls; parm; parm = TREE_CHAIN (parm))
11525 if (TREE_CODE (parm) == PARM_DECL)
11527 if (DECL_NAME (parm)
11528 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm)),
11529 "__builtin_va_alist"))
11530 gen_unspecified_parameters_die (parm, subr_die);
11531 else
11532 gen_decl_die (parm, subr_die);
11535 /* Decide whether we need an unspecified_parameters DIE at the end.
11536 There are 2 more cases to do this for: 1) the ansi ... declaration -
11537 this is detectable when the end of the arg list is not a
11538 void_type_node 2) an unprototyped function declaration (not a
11539 definition). This just means that we have no info about the
11540 parameters at all. */
11541 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
11542 if (fn_arg_types != NULL)
11544 /* This is the prototyped case, check for.... */
11545 if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
11546 gen_unspecified_parameters_die (decl, subr_die);
11548 else if (DECL_INITIAL (decl) == NULL_TREE)
11549 gen_unspecified_parameters_die (decl, subr_die);
11552 /* Output Dwarf info for all of the stuff within the body of the function
11553 (if it has one - it may be just a declaration). */
11554 outer_scope = DECL_INITIAL (decl);
11556 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
11557 a function. This BLOCK actually represents the outermost binding contour
11558 for the function, i.e. the contour in which the function's formal
11559 parameters and labels get declared. Curiously, it appears that the front
11560 end doesn't actually put the PARM_DECL nodes for the current function onto
11561 the BLOCK_VARS list for this outer scope, but are strung off of the
11562 DECL_ARGUMENTS list for the function instead.
11564 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
11565 the LABEL_DECL nodes for the function however, and we output DWARF info
11566 for those in decls_for_scope. Just within the `outer_scope' there will be
11567 a BLOCK node representing the function's outermost pair of curly braces,
11568 and any blocks used for the base and member initializers of a C++
11569 constructor function. */
11570 if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
11572 /* Emit a DW_TAG_variable DIE for a named return value. */
11573 if (DECL_NAME (DECL_RESULT (decl)))
11574 gen_decl_die (DECL_RESULT (decl), subr_die);
11576 current_function_has_inlines = 0;
11577 decls_for_scope (outer_scope, subr_die, 0);
11579 #if 0 && defined (MIPS_DEBUGGING_INFO)
11580 if (current_function_has_inlines)
11582 add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
11583 if (! comp_unit_has_inlines)
11585 add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
11586 comp_unit_has_inlines = 1;
11589 #endif
11591 /* Add the calling convention attribute if requested. */
11592 add_calling_convention_attribute (subr_die, TREE_TYPE (decl));
11596 /* Generate a DIE to represent a declared data object. */
11598 static void
11599 gen_variable_die (tree decl, dw_die_ref context_die)
11601 tree origin = decl_ultimate_origin (decl);
11602 dw_die_ref var_die = new_die (DW_TAG_variable, context_die, decl);
11604 dw_die_ref old_die = lookup_decl_die (decl);
11605 int declaration = (DECL_EXTERNAL (decl)
11606 || class_or_namespace_scope_p (context_die));
11608 if (origin != NULL)
11609 add_abstract_origin_attribute (var_die, origin);
11611 /* Loop unrolling can create multiple blocks that refer to the same
11612 static variable, so we must test for the DW_AT_declaration flag.
11614 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
11615 copy decls and set the DECL_ABSTRACT flag on them instead of
11616 sharing them.
11618 ??? Duplicated blocks have been rewritten to use .debug_ranges.
11620 ??? The declare_in_namespace support causes us to get two DIEs for one
11621 variable, both of which are declarations. We want to avoid considering
11622 one to be a specification, so we must test that this DIE is not a
11623 declaration. */
11624 else if (old_die && TREE_STATIC (decl) && ! declaration
11625 && get_AT_flag (old_die, DW_AT_declaration) == 1)
11627 /* This is a definition of a C++ class level static. */
11628 add_AT_specification (var_die, old_die);
11629 if (DECL_NAME (decl))
11631 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
11632 unsigned file_index = lookup_filename (s.file);
11634 if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
11635 add_AT_unsigned (var_die, DW_AT_decl_file, file_index);
11637 if (get_AT_unsigned (old_die, DW_AT_decl_line)
11638 != (unsigned) s.line)
11640 add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
11643 else
11645 add_name_and_src_coords_attributes (var_die, decl);
11646 add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
11647 TREE_THIS_VOLATILE (decl), context_die);
11649 if (TREE_PUBLIC (decl))
11650 add_AT_flag (var_die, DW_AT_external, 1);
11652 if (DECL_ARTIFICIAL (decl))
11653 add_AT_flag (var_die, DW_AT_artificial, 1);
11655 if (TREE_PROTECTED (decl))
11656 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
11657 else if (TREE_PRIVATE (decl))
11658 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
11661 if (declaration)
11662 add_AT_flag (var_die, DW_AT_declaration, 1);
11664 if (DECL_ABSTRACT (decl) || declaration)
11665 equate_decl_number_to_die (decl, var_die);
11667 if (! declaration && ! DECL_ABSTRACT (decl))
11669 add_location_or_const_value_attribute (var_die, decl, DW_AT_location);
11670 add_pubname (decl, var_die);
11672 else
11673 tree_add_const_value_attribute (var_die, decl);
11676 /* Generate a DIE to represent a label identifier. */
11678 static void
11679 gen_label_die (tree decl, dw_die_ref context_die)
11681 tree origin = decl_ultimate_origin (decl);
11682 dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
11683 rtx insn;
11684 char label[MAX_ARTIFICIAL_LABEL_BYTES];
11686 if (origin != NULL)
11687 add_abstract_origin_attribute (lbl_die, origin);
11688 else
11689 add_name_and_src_coords_attributes (lbl_die, decl);
11691 if (DECL_ABSTRACT (decl))
11692 equate_decl_number_to_die (decl, lbl_die);
11693 else
11695 insn = DECL_RTL_IF_SET (decl);
11697 /* Deleted labels are programmer specified labels which have been
11698 eliminated because of various optimizations. We still emit them
11699 here so that it is possible to put breakpoints on them. */
11700 if (insn
11701 && (LABEL_P (insn)
11702 || ((NOTE_P (insn)
11703 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL))))
11705 /* When optimization is enabled (via -O) some parts of the compiler
11706 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
11707 represent source-level labels which were explicitly declared by
11708 the user. This really shouldn't be happening though, so catch
11709 it if it ever does happen. */
11710 gcc_assert (!INSN_DELETED_P (insn));
11712 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
11713 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
11718 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
11719 Add low_pc and high_pc attributes to the DIE for a block STMT. */
11721 static inline void
11722 add_high_low_attributes (tree stmt, dw_die_ref die)
11724 char label[MAX_ARTIFICIAL_LABEL_BYTES];
11726 if (BLOCK_FRAGMENT_CHAIN (stmt))
11728 tree chain;
11730 add_AT_range_list (die, DW_AT_ranges, add_ranges (stmt));
11732 chain = BLOCK_FRAGMENT_CHAIN (stmt);
11735 add_ranges (chain);
11736 chain = BLOCK_FRAGMENT_CHAIN (chain);
11738 while (chain);
11739 add_ranges (NULL);
11741 else
11743 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
11744 BLOCK_NUMBER (stmt));
11745 add_AT_lbl_id (die, DW_AT_low_pc, label);
11746 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
11747 BLOCK_NUMBER (stmt));
11748 add_AT_lbl_id (die, DW_AT_high_pc, label);
11752 /* Generate a DIE for a lexical block. */
11754 static void
11755 gen_lexical_block_die (tree stmt, dw_die_ref context_die, int depth)
11757 dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
11759 if (! BLOCK_ABSTRACT (stmt))
11760 add_high_low_attributes (stmt, stmt_die);
11762 decls_for_scope (stmt, stmt_die, depth);
11765 /* Generate a DIE for an inlined subprogram. */
11767 static void
11768 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die, int depth)
11770 tree decl = block_ultimate_origin (stmt);
11772 /* Emit info for the abstract instance first, if we haven't yet. We
11773 must emit this even if the block is abstract, otherwise when we
11774 emit the block below (or elsewhere), we may end up trying to emit
11775 a die whose origin die hasn't been emitted, and crashing. */
11776 dwarf2out_abstract_function (decl);
11778 if (! BLOCK_ABSTRACT (stmt))
11780 dw_die_ref subr_die
11781 = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
11783 add_abstract_origin_attribute (subr_die, decl);
11784 add_high_low_attributes (stmt, subr_die);
11786 decls_for_scope (stmt, subr_die, depth);
11787 current_function_has_inlines = 1;
11789 else
11790 /* We may get here if we're the outer block of function A that was
11791 inlined into function B that was inlined into function C. When
11792 generating debugging info for C, dwarf2out_abstract_function(B)
11793 would mark all inlined blocks as abstract, including this one.
11794 So, we wouldn't (and shouldn't) expect labels to be generated
11795 for this one. Instead, just emit debugging info for
11796 declarations within the block. This is particularly important
11797 in the case of initializers of arguments passed from B to us:
11798 if they're statement expressions containing declarations, we
11799 wouldn't generate dies for their abstract variables, and then,
11800 when generating dies for the real variables, we'd die (pun
11801 intended :-) */
11802 gen_lexical_block_die (stmt, context_die, depth);
11805 /* Generate a DIE for a field in a record, or structure. */
11807 static void
11808 gen_field_die (tree decl, dw_die_ref context_die)
11810 dw_die_ref decl_die;
11812 if (TREE_TYPE (decl) == error_mark_node)
11813 return;
11815 decl_die = new_die (DW_TAG_member, context_die, decl);
11816 add_name_and_src_coords_attributes (decl_die, decl);
11817 add_type_attribute (decl_die, member_declared_type (decl),
11818 TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
11819 context_die);
11821 if (DECL_BIT_FIELD_TYPE (decl))
11823 add_byte_size_attribute (decl_die, decl);
11824 add_bit_size_attribute (decl_die, decl);
11825 add_bit_offset_attribute (decl_die, decl);
11828 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
11829 add_data_member_location_attribute (decl_die, decl);
11831 if (DECL_ARTIFICIAL (decl))
11832 add_AT_flag (decl_die, DW_AT_artificial, 1);
11834 if (TREE_PROTECTED (decl))
11835 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
11836 else if (TREE_PRIVATE (decl))
11837 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
11839 /* Equate decl number to die, so that we can look up this decl later on. */
11840 equate_decl_number_to_die (decl, decl_die);
11843 #if 0
11844 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
11845 Use modified_type_die instead.
11846 We keep this code here just in case these types of DIEs may be needed to
11847 represent certain things in other languages (e.g. Pascal) someday. */
11849 static void
11850 gen_pointer_type_die (tree type, dw_die_ref context_die)
11852 dw_die_ref ptr_die
11853 = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
11855 equate_type_number_to_die (type, ptr_die);
11856 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
11857 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
11860 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
11861 Use modified_type_die instead.
11862 We keep this code here just in case these types of DIEs may be needed to
11863 represent certain things in other languages (e.g. Pascal) someday. */
11865 static void
11866 gen_reference_type_die (tree type, dw_die_ref context_die)
11868 dw_die_ref ref_die
11869 = new_die (DW_TAG_reference_type, scope_die_for (type, context_die), type);
11871 equate_type_number_to_die (type, ref_die);
11872 add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
11873 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
11875 #endif
11877 /* Generate a DIE for a pointer to a member type. */
11879 static void
11880 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
11882 dw_die_ref ptr_die
11883 = new_die (DW_TAG_ptr_to_member_type,
11884 scope_die_for (type, context_die), type);
11886 equate_type_number_to_die (type, ptr_die);
11887 add_AT_die_ref (ptr_die, DW_AT_containing_type,
11888 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
11889 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
11892 /* Generate the DIE for the compilation unit. */
11894 static dw_die_ref
11895 gen_compile_unit_die (const char *filename)
11897 dw_die_ref die;
11898 char producer[250];
11899 const char *language_string = lang_hooks.name;
11900 int language;
11902 die = new_die (DW_TAG_compile_unit, NULL, NULL);
11904 if (filename)
11906 add_name_attribute (die, filename);
11907 /* Don't add cwd for <built-in>. */
11908 if (filename[0] != DIR_SEPARATOR && filename[0] != '<')
11909 add_comp_dir_attribute (die);
11912 sprintf (producer, "%s %s", language_string, version_string);
11914 #ifdef MIPS_DEBUGGING_INFO
11915 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
11916 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
11917 not appear in the producer string, the debugger reaches the conclusion
11918 that the object file is stripped and has no debugging information.
11919 To get the MIPS/SGI debugger to believe that there is debugging
11920 information in the object file, we add a -g to the producer string. */
11921 if (debug_info_level > DINFO_LEVEL_TERSE)
11922 strcat (producer, " -g");
11923 #endif
11925 add_AT_string (die, DW_AT_producer, producer);
11927 if (strcmp (language_string, "GNU C++") == 0)
11928 language = DW_LANG_C_plus_plus;
11929 else if (strcmp (language_string, "GNU Ada") == 0)
11930 language = DW_LANG_Ada95;
11931 else if (strcmp (language_string, "GNU F77") == 0)
11932 language = DW_LANG_Fortran77;
11933 else if (strcmp (language_string, "GNU F95") == 0)
11934 language = DW_LANG_Fortran95;
11935 else if (strcmp (language_string, "GNU Pascal") == 0)
11936 language = DW_LANG_Pascal83;
11937 else if (strcmp (language_string, "GNU Java") == 0)
11938 language = DW_LANG_Java;
11939 else
11940 language = DW_LANG_C89;
11942 add_AT_unsigned (die, DW_AT_language, language);
11943 return die;
11946 /* Generate a DIE for a string type. */
11948 static void
11949 gen_string_type_die (tree type, dw_die_ref context_die)
11951 dw_die_ref type_die
11952 = new_die (DW_TAG_string_type, scope_die_for (type, context_die), type);
11954 equate_type_number_to_die (type, type_die);
11956 /* ??? Fudge the string length attribute for now.
11957 TODO: add string length info. */
11958 #if 0
11959 string_length_attribute (TYPE_MAX_VALUE (TYPE_DOMAIN (type)));
11960 bound_representation (upper_bound, 0, 'u');
11961 #endif
11964 /* Generate the DIE for a base class. */
11966 static void
11967 gen_inheritance_die (tree binfo, tree access, dw_die_ref context_die)
11969 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
11971 add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
11972 add_data_member_location_attribute (die, binfo);
11974 if (BINFO_VIRTUAL_P (binfo))
11975 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
11977 if (access == access_public_node)
11978 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
11979 else if (access == access_protected_node)
11980 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
11983 /* Generate a DIE for a class member. */
11985 static void
11986 gen_member_die (tree type, dw_die_ref context_die)
11988 tree member;
11989 tree binfo = TYPE_BINFO (type);
11990 dw_die_ref child;
11992 /* If this is not an incomplete type, output descriptions of each of its
11993 members. Note that as we output the DIEs necessary to represent the
11994 members of this record or union type, we will also be trying to output
11995 DIEs to represent the *types* of those members. However the `type'
11996 function (above) will specifically avoid generating type DIEs for member
11997 types *within* the list of member DIEs for this (containing) type except
11998 for those types (of members) which are explicitly marked as also being
11999 members of this (containing) type themselves. The g++ front- end can
12000 force any given type to be treated as a member of some other (containing)
12001 type by setting the TYPE_CONTEXT of the given (member) type to point to
12002 the TREE node representing the appropriate (containing) type. */
12004 /* First output info about the base classes. */
12005 if (binfo)
12007 VEC(tree,gc) *accesses = BINFO_BASE_ACCESSES (binfo);
12008 int i;
12009 tree base;
12011 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
12012 gen_inheritance_die (base,
12013 (accesses ? VEC_index (tree, accesses, i)
12014 : access_public_node), context_die);
12017 /* Now output info about the data members and type members. */
12018 for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
12020 /* If we thought we were generating minimal debug info for TYPE
12021 and then changed our minds, some of the member declarations
12022 may have already been defined. Don't define them again, but
12023 do put them in the right order. */
12025 child = lookup_decl_die (member);
12026 if (child)
12027 splice_child_die (context_die, child);
12028 else
12029 gen_decl_die (member, context_die);
12032 /* Now output info about the function members (if any). */
12033 for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
12035 /* Don't include clones in the member list. */
12036 if (DECL_ABSTRACT_ORIGIN (member))
12037 continue;
12039 child = lookup_decl_die (member);
12040 if (child)
12041 splice_child_die (context_die, child);
12042 else
12043 gen_decl_die (member, context_die);
12047 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
12048 is set, we pretend that the type was never defined, so we only get the
12049 member DIEs needed by later specification DIEs. */
12051 static void
12052 gen_struct_or_union_type_die (tree type, dw_die_ref context_die)
12054 dw_die_ref type_die = lookup_type_die (type);
12055 dw_die_ref scope_die = 0;
12056 int nested = 0;
12057 int complete = (TYPE_SIZE (type)
12058 && (! TYPE_STUB_DECL (type)
12059 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
12060 int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
12062 if (type_die && ! complete)
12063 return;
12065 if (TYPE_CONTEXT (type) != NULL_TREE
12066 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
12067 || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
12068 nested = 1;
12070 scope_die = scope_die_for (type, context_die);
12072 if (! type_die || (nested && scope_die == comp_unit_die))
12073 /* First occurrence of type or toplevel definition of nested class. */
12075 dw_die_ref old_die = type_die;
12077 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
12078 ? DW_TAG_structure_type : DW_TAG_union_type,
12079 scope_die, type);
12080 equate_type_number_to_die (type, type_die);
12081 if (old_die)
12082 add_AT_specification (type_die, old_die);
12083 else
12084 add_name_attribute (type_die, type_tag (type));
12086 else
12087 remove_AT (type_die, DW_AT_declaration);
12089 /* If this type has been completed, then give it a byte_size attribute and
12090 then give a list of members. */
12091 if (complete && !ns_decl)
12093 /* Prevent infinite recursion in cases where the type of some member of
12094 this type is expressed in terms of this type itself. */
12095 TREE_ASM_WRITTEN (type) = 1;
12096 add_byte_size_attribute (type_die, type);
12097 if (TYPE_STUB_DECL (type) != NULL_TREE)
12098 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
12100 /* If the first reference to this type was as the return type of an
12101 inline function, then it may not have a parent. Fix this now. */
12102 if (type_die->die_parent == NULL)
12103 add_child_die (scope_die, type_die);
12105 push_decl_scope (type);
12106 gen_member_die (type, type_die);
12107 pop_decl_scope ();
12109 /* GNU extension: Record what type our vtable lives in. */
12110 if (TYPE_VFIELD (type))
12112 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
12114 gen_type_die (vtype, context_die);
12115 add_AT_die_ref (type_die, DW_AT_containing_type,
12116 lookup_type_die (vtype));
12119 else
12121 add_AT_flag (type_die, DW_AT_declaration, 1);
12123 /* We don't need to do this for function-local types. */
12124 if (TYPE_STUB_DECL (type)
12125 && ! decl_function_context (TYPE_STUB_DECL (type)))
12126 VEC_safe_push (tree, gc, incomplete_types, type);
12130 /* Generate a DIE for a subroutine _type_. */
12132 static void
12133 gen_subroutine_type_die (tree type, dw_die_ref context_die)
12135 tree return_type = TREE_TYPE (type);
12136 dw_die_ref subr_die
12137 = new_die (DW_TAG_subroutine_type,
12138 scope_die_for (type, context_die), type);
12140 equate_type_number_to_die (type, subr_die);
12141 add_prototyped_attribute (subr_die, type);
12142 add_type_attribute (subr_die, return_type, 0, 0, context_die);
12143 gen_formal_types_die (type, subr_die);
12146 /* Generate a DIE for a type definition. */
12148 static void
12149 gen_typedef_die (tree decl, dw_die_ref context_die)
12151 dw_die_ref type_die;
12152 tree origin;
12154 if (TREE_ASM_WRITTEN (decl))
12155 return;
12157 TREE_ASM_WRITTEN (decl) = 1;
12158 type_die = new_die (DW_TAG_typedef, context_die, decl);
12159 origin = decl_ultimate_origin (decl);
12160 if (origin != NULL)
12161 add_abstract_origin_attribute (type_die, origin);
12162 else
12164 tree type;
12166 add_name_and_src_coords_attributes (type_die, decl);
12167 if (DECL_ORIGINAL_TYPE (decl))
12169 type = DECL_ORIGINAL_TYPE (decl);
12171 gcc_assert (type != TREE_TYPE (decl));
12172 equate_type_number_to_die (TREE_TYPE (decl), type_die);
12174 else
12175 type = TREE_TYPE (decl);
12177 add_type_attribute (type_die, type, TREE_READONLY (decl),
12178 TREE_THIS_VOLATILE (decl), context_die);
12181 if (DECL_ABSTRACT (decl))
12182 equate_decl_number_to_die (decl, type_die);
12185 /* Generate a type description DIE. */
12187 static void
12188 gen_type_die (tree type, dw_die_ref context_die)
12190 int need_pop;
12192 if (type == NULL_TREE || type == error_mark_node)
12193 return;
12195 if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
12196 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
12198 if (TREE_ASM_WRITTEN (type))
12199 return;
12201 /* Prevent broken recursion; we can't hand off to the same type. */
12202 gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type)) != type);
12204 TREE_ASM_WRITTEN (type) = 1;
12205 gen_decl_die (TYPE_NAME (type), context_die);
12206 return;
12209 /* We are going to output a DIE to represent the unqualified version
12210 of this type (i.e. without any const or volatile qualifiers) so
12211 get the main variant (i.e. the unqualified version) of this type
12212 now. (Vectors are special because the debugging info is in the
12213 cloned type itself). */
12214 if (TREE_CODE (type) != VECTOR_TYPE)
12215 type = type_main_variant (type);
12217 if (TREE_ASM_WRITTEN (type))
12218 return;
12220 switch (TREE_CODE (type))
12222 case ERROR_MARK:
12223 break;
12225 case POINTER_TYPE:
12226 case REFERENCE_TYPE:
12227 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
12228 ensures that the gen_type_die recursion will terminate even if the
12229 type is recursive. Recursive types are possible in Ada. */
12230 /* ??? We could perhaps do this for all types before the switch
12231 statement. */
12232 TREE_ASM_WRITTEN (type) = 1;
12234 /* For these types, all that is required is that we output a DIE (or a
12235 set of DIEs) to represent the "basis" type. */
12236 gen_type_die (TREE_TYPE (type), context_die);
12237 break;
12239 case OFFSET_TYPE:
12240 /* This code is used for C++ pointer-to-data-member types.
12241 Output a description of the relevant class type. */
12242 gen_type_die (TYPE_OFFSET_BASETYPE (type), context_die);
12244 /* Output a description of the type of the object pointed to. */
12245 gen_type_die (TREE_TYPE (type), context_die);
12247 /* Now output a DIE to represent this pointer-to-data-member type
12248 itself. */
12249 gen_ptr_to_mbr_type_die (type, context_die);
12250 break;
12252 case FUNCTION_TYPE:
12253 /* Force out return type (in case it wasn't forced out already). */
12254 gen_type_die (TREE_TYPE (type), context_die);
12255 gen_subroutine_type_die (type, context_die);
12256 break;
12258 case METHOD_TYPE:
12259 /* Force out return type (in case it wasn't forced out already). */
12260 gen_type_die (TREE_TYPE (type), context_die);
12261 gen_subroutine_type_die (type, context_die);
12262 break;
12264 case ARRAY_TYPE:
12265 if (TYPE_STRING_FLAG (type) && TREE_CODE (TREE_TYPE (type)) == CHAR_TYPE)
12267 gen_type_die (TREE_TYPE (type), context_die);
12268 gen_string_type_die (type, context_die);
12270 else
12271 gen_array_type_die (type, context_die);
12272 break;
12274 case VECTOR_TYPE:
12275 gen_array_type_die (type, context_die);
12276 break;
12278 case ENUMERAL_TYPE:
12279 case RECORD_TYPE:
12280 case UNION_TYPE:
12281 case QUAL_UNION_TYPE:
12282 /* If this is a nested type whose containing class hasn't been written
12283 out yet, writing it out will cover this one, too. This does not apply
12284 to instantiations of member class templates; they need to be added to
12285 the containing class as they are generated. FIXME: This hurts the
12286 idea of combining type decls from multiple TUs, since we can't predict
12287 what set of template instantiations we'll get. */
12288 if (TYPE_CONTEXT (type)
12289 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
12290 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
12292 gen_type_die (TYPE_CONTEXT (type), context_die);
12294 if (TREE_ASM_WRITTEN (type))
12295 return;
12297 /* If that failed, attach ourselves to the stub. */
12298 push_decl_scope (TYPE_CONTEXT (type));
12299 context_die = lookup_type_die (TYPE_CONTEXT (type));
12300 need_pop = 1;
12302 else
12304 declare_in_namespace (type, context_die);
12305 need_pop = 0;
12308 if (TREE_CODE (type) == ENUMERAL_TYPE)
12309 gen_enumeration_type_die (type, context_die);
12310 else
12311 gen_struct_or_union_type_die (type, context_die);
12313 if (need_pop)
12314 pop_decl_scope ();
12316 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
12317 it up if it is ever completed. gen_*_type_die will set it for us
12318 when appropriate. */
12319 return;
12321 case VOID_TYPE:
12322 case INTEGER_TYPE:
12323 case REAL_TYPE:
12324 case COMPLEX_TYPE:
12325 case BOOLEAN_TYPE:
12326 case CHAR_TYPE:
12327 /* No DIEs needed for fundamental types. */
12328 break;
12330 case LANG_TYPE:
12331 /* No Dwarf representation currently defined. */
12332 break;
12334 default:
12335 gcc_unreachable ();
12338 TREE_ASM_WRITTEN (type) = 1;
12341 /* Generate a DIE for a tagged type instantiation. */
12343 static void
12344 gen_tagged_type_instantiation_die (tree type, dw_die_ref context_die)
12346 if (type == NULL_TREE || type == error_mark_node)
12347 return;
12349 /* We are going to output a DIE to represent the unqualified version of
12350 this type (i.e. without any const or volatile qualifiers) so make sure
12351 that we have the main variant (i.e. the unqualified version) of this
12352 type now. */
12353 gcc_assert (type == type_main_variant (type));
12355 /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
12356 an instance of an unresolved type. */
12358 switch (TREE_CODE (type))
12360 case ERROR_MARK:
12361 break;
12363 case ENUMERAL_TYPE:
12364 gen_inlined_enumeration_type_die (type, context_die);
12365 break;
12367 case RECORD_TYPE:
12368 gen_inlined_structure_type_die (type, context_die);
12369 break;
12371 case UNION_TYPE:
12372 case QUAL_UNION_TYPE:
12373 gen_inlined_union_type_die (type, context_die);
12374 break;
12376 default:
12377 gcc_unreachable ();
12381 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
12382 things which are local to the given block. */
12384 static void
12385 gen_block_die (tree stmt, dw_die_ref context_die, int depth)
12387 int must_output_die = 0;
12388 tree origin;
12389 tree decl;
12390 enum tree_code origin_code;
12392 /* Ignore blocks that are NULL. */
12393 if (stmt == NULL_TREE)
12394 return;
12396 /* If the block is one fragment of a non-contiguous block, do not
12397 process the variables, since they will have been done by the
12398 origin block. Do process subblocks. */
12399 if (BLOCK_FRAGMENT_ORIGIN (stmt))
12401 tree sub;
12403 for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
12404 gen_block_die (sub, context_die, depth + 1);
12406 return;
12409 /* Determine the "ultimate origin" of this block. This block may be an
12410 inlined instance of an inlined instance of inline function, so we have
12411 to trace all of the way back through the origin chain to find out what
12412 sort of node actually served as the original seed for the creation of
12413 the current block. */
12414 origin = block_ultimate_origin (stmt);
12415 origin_code = (origin != NULL) ? TREE_CODE (origin) : ERROR_MARK;
12417 /* Determine if we need to output any Dwarf DIEs at all to represent this
12418 block. */
12419 if (origin_code == FUNCTION_DECL)
12420 /* The outer scopes for inlinings *must* always be represented. We
12421 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
12422 must_output_die = 1;
12423 else
12425 /* In the case where the current block represents an inlining of the
12426 "body block" of an inline function, we must *NOT* output any DIE for
12427 this block because we have already output a DIE to represent the whole
12428 inlined function scope and the "body block" of any function doesn't
12429 really represent a different scope according to ANSI C rules. So we
12430 check here to make sure that this block does not represent a "body
12431 block inlining" before trying to set the MUST_OUTPUT_DIE flag. */
12432 if (! is_body_block (origin ? origin : stmt))
12434 /* Determine if this block directly contains any "significant"
12435 local declarations which we will need to output DIEs for. */
12436 if (debug_info_level > DINFO_LEVEL_TERSE)
12437 /* We are not in terse mode so *any* local declaration counts
12438 as being a "significant" one. */
12439 must_output_die = (BLOCK_VARS (stmt) != NULL
12440 && (TREE_USED (stmt)
12441 || TREE_ASM_WRITTEN (stmt)
12442 || BLOCK_ABSTRACT (stmt)));
12443 else
12444 /* We are in terse mode, so only local (nested) function
12445 definitions count as "significant" local declarations. */
12446 for (decl = BLOCK_VARS (stmt);
12447 decl != NULL; decl = TREE_CHAIN (decl))
12448 if (TREE_CODE (decl) == FUNCTION_DECL
12449 && DECL_INITIAL (decl))
12451 must_output_die = 1;
12452 break;
12457 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
12458 DIE for any block which contains no significant local declarations at
12459 all. Rather, in such cases we just call `decls_for_scope' so that any
12460 needed Dwarf info for any sub-blocks will get properly generated. Note
12461 that in terse mode, our definition of what constitutes a "significant"
12462 local declaration gets restricted to include only inlined function
12463 instances and local (nested) function definitions. */
12464 if (must_output_die)
12466 if (origin_code == FUNCTION_DECL)
12467 gen_inlined_subroutine_die (stmt, context_die, depth);
12468 else
12469 gen_lexical_block_die (stmt, context_die, depth);
12471 else
12472 decls_for_scope (stmt, context_die, depth);
12475 /* Generate all of the decls declared within a given scope and (recursively)
12476 all of its sub-blocks. */
12478 static void
12479 decls_for_scope (tree stmt, dw_die_ref context_die, int depth)
12481 tree decl;
12482 tree subblocks;
12484 /* Ignore NULL blocks. */
12485 if (stmt == NULL_TREE)
12486 return;
12488 if (TREE_USED (stmt))
12490 /* Output the DIEs to represent all of the data objects and typedefs
12491 declared directly within this block but not within any nested
12492 sub-blocks. Also, nested function and tag DIEs have been
12493 generated with a parent of NULL; fix that up now. */
12494 for (decl = BLOCK_VARS (stmt); decl != NULL; decl = TREE_CHAIN (decl))
12496 dw_die_ref die;
12498 if (TREE_CODE (decl) == FUNCTION_DECL)
12499 die = lookup_decl_die (decl);
12500 else if (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl))
12501 die = lookup_type_die (TREE_TYPE (decl));
12502 else
12503 die = NULL;
12505 if (die != NULL && die->die_parent == NULL)
12506 add_child_die (context_die, die);
12507 else
12508 gen_decl_die (decl, context_die);
12512 /* If we're at -g1, we're not interested in subblocks. */
12513 if (debug_info_level <= DINFO_LEVEL_TERSE)
12514 return;
12516 /* Output the DIEs to represent all sub-blocks (and the items declared
12517 therein) of this block. */
12518 for (subblocks = BLOCK_SUBBLOCKS (stmt);
12519 subblocks != NULL;
12520 subblocks = BLOCK_CHAIN (subblocks))
12521 gen_block_die (subblocks, context_die, depth + 1);
12524 /* Is this a typedef we can avoid emitting? */
12526 static inline int
12527 is_redundant_typedef (tree decl)
12529 if (TYPE_DECL_IS_STUB (decl))
12530 return 1;
12532 if (DECL_ARTIFICIAL (decl)
12533 && DECL_CONTEXT (decl)
12534 && is_tagged_type (DECL_CONTEXT (decl))
12535 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
12536 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
12537 /* Also ignore the artificial member typedef for the class name. */
12538 return 1;
12540 return 0;
12543 /* Returns the DIE for decl. A DIE will always be returned. */
12545 static dw_die_ref
12546 force_decl_die (tree decl)
12548 dw_die_ref decl_die;
12549 unsigned saved_external_flag;
12550 tree save_fn = NULL_TREE;
12551 decl_die = lookup_decl_die (decl);
12552 if (!decl_die)
12554 dw_die_ref context_die;
12555 tree decl_context = DECL_CONTEXT (decl);
12556 if (decl_context)
12558 /* Find die that represents this context. */
12559 if (TYPE_P (decl_context))
12560 context_die = force_type_die (decl_context);
12561 else
12562 context_die = force_decl_die (decl_context);
12564 else
12565 context_die = comp_unit_die;
12567 switch (TREE_CODE (decl))
12569 case FUNCTION_DECL:
12570 /* Clear current_function_decl, so that gen_subprogram_die thinks
12571 that this is a declaration. At this point, we just want to force
12572 declaration die. */
12573 save_fn = current_function_decl;
12574 current_function_decl = NULL_TREE;
12575 gen_subprogram_die (decl, context_die);
12576 current_function_decl = save_fn;
12577 break;
12579 case VAR_DECL:
12580 /* Set external flag to force declaration die. Restore it after
12581 gen_decl_die() call. */
12582 saved_external_flag = DECL_EXTERNAL (decl);
12583 DECL_EXTERNAL (decl) = 1;
12584 gen_decl_die (decl, context_die);
12585 DECL_EXTERNAL (decl) = saved_external_flag;
12586 break;
12588 case NAMESPACE_DECL:
12589 dwarf2out_decl (decl);
12590 break;
12592 default:
12593 gcc_unreachable ();
12596 /* We should be able to find the DIE now. */
12597 if (!decl_die)
12598 decl_die = lookup_decl_die (decl);
12599 gcc_assert (decl_die);
12602 return decl_die;
12605 /* Returns the DIE for TYPE. A DIE is always returned. */
12607 static dw_die_ref
12608 force_type_die (tree type)
12610 dw_die_ref type_die;
12612 type_die = lookup_type_die (type);
12613 if (!type_die)
12615 dw_die_ref context_die;
12616 if (TYPE_CONTEXT (type))
12617 if (TYPE_P (TYPE_CONTEXT (type)))
12618 context_die = force_type_die (TYPE_CONTEXT (type));
12619 else
12620 context_die = force_decl_die (TYPE_CONTEXT (type));
12621 else
12622 context_die = comp_unit_die;
12624 gen_type_die (type, context_die);
12625 type_die = lookup_type_die (type);
12626 gcc_assert (type_die);
12628 return type_die;
12631 /* Force out any required namespaces to be able to output DECL,
12632 and return the new context_die for it, if it's changed. */
12634 static dw_die_ref
12635 setup_namespace_context (tree thing, dw_die_ref context_die)
12637 tree context = (DECL_P (thing)
12638 ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
12639 if (context && TREE_CODE (context) == NAMESPACE_DECL)
12640 /* Force out the namespace. */
12641 context_die = force_decl_die (context);
12643 return context_die;
12646 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
12647 type) within its namespace, if appropriate.
12649 For compatibility with older debuggers, namespace DIEs only contain
12650 declarations; all definitions are emitted at CU scope. */
12652 static void
12653 declare_in_namespace (tree thing, dw_die_ref context_die)
12655 dw_die_ref ns_context;
12657 if (debug_info_level <= DINFO_LEVEL_TERSE)
12658 return;
12660 /* If this decl is from an inlined function, then don't try to emit it in its
12661 namespace, as we will get confused. It would have already been emitted
12662 when the abstract instance of the inline function was emitted anyways. */
12663 if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
12664 return;
12666 ns_context = setup_namespace_context (thing, context_die);
12668 if (ns_context != context_die)
12670 if (DECL_P (thing))
12671 gen_decl_die (thing, ns_context);
12672 else
12673 gen_type_die (thing, ns_context);
12677 /* Generate a DIE for a namespace or namespace alias. */
12679 static void
12680 gen_namespace_die (tree decl)
12682 dw_die_ref context_die = setup_namespace_context (decl, comp_unit_die);
12684 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
12685 they are an alias of. */
12686 if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
12688 /* Output a real namespace. */
12689 dw_die_ref namespace_die
12690 = new_die (DW_TAG_namespace, context_die, decl);
12691 add_name_and_src_coords_attributes (namespace_die, decl);
12692 equate_decl_number_to_die (decl, namespace_die);
12694 else
12696 /* Output a namespace alias. */
12698 /* Force out the namespace we are an alias of, if necessary. */
12699 dw_die_ref origin_die
12700 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
12702 /* Now create the namespace alias DIE. */
12703 dw_die_ref namespace_die
12704 = new_die (DW_TAG_imported_declaration, context_die, decl);
12705 add_name_and_src_coords_attributes (namespace_die, decl);
12706 add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
12707 equate_decl_number_to_die (decl, namespace_die);
12711 /* Generate Dwarf debug information for a decl described by DECL. */
12713 static void
12714 gen_decl_die (tree decl, dw_die_ref context_die)
12716 tree origin;
12718 if (DECL_P (decl) && DECL_IGNORED_P (decl))
12719 return;
12721 switch (TREE_CODE (decl))
12723 case ERROR_MARK:
12724 break;
12726 case CONST_DECL:
12727 /* The individual enumerators of an enum type get output when we output
12728 the Dwarf representation of the relevant enum type itself. */
12729 break;
12731 case FUNCTION_DECL:
12732 /* Don't output any DIEs to represent mere function declarations,
12733 unless they are class members or explicit block externs. */
12734 if (DECL_INITIAL (decl) == NULL_TREE && DECL_CONTEXT (decl) == NULL_TREE
12735 && (current_function_decl == NULL_TREE || DECL_ARTIFICIAL (decl)))
12736 break;
12738 #if 0
12739 /* FIXME */
12740 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
12741 on local redeclarations of global functions. That seems broken. */
12742 if (current_function_decl != decl)
12743 /* This is only a declaration. */;
12744 #endif
12746 /* If we're emitting a clone, emit info for the abstract instance. */
12747 if (DECL_ORIGIN (decl) != decl)
12748 dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl));
12750 /* If we're emitting an out-of-line copy of an inline function,
12751 emit info for the abstract instance and set up to refer to it. */
12752 else if (cgraph_function_possibly_inlined_p (decl)
12753 && ! DECL_ABSTRACT (decl)
12754 && ! class_or_namespace_scope_p (context_die)
12755 /* dwarf2out_abstract_function won't emit a die if this is just
12756 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
12757 that case, because that works only if we have a die. */
12758 && DECL_INITIAL (decl) != NULL_TREE)
12760 dwarf2out_abstract_function (decl);
12761 set_decl_origin_self (decl);
12764 /* Otherwise we're emitting the primary DIE for this decl. */
12765 else if (debug_info_level > DINFO_LEVEL_TERSE)
12767 /* Before we describe the FUNCTION_DECL itself, make sure that we
12768 have described its return type. */
12769 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
12771 /* And its virtual context. */
12772 if (DECL_VINDEX (decl) != NULL_TREE)
12773 gen_type_die (DECL_CONTEXT (decl), context_die);
12775 /* And its containing type. */
12776 origin = decl_class_context (decl);
12777 if (origin != NULL_TREE)
12778 gen_type_die_for_member (origin, decl, context_die);
12780 /* And its containing namespace. */
12781 declare_in_namespace (decl, context_die);
12784 /* Now output a DIE to represent the function itself. */
12785 gen_subprogram_die (decl, context_die);
12786 break;
12788 case TYPE_DECL:
12789 /* If we are in terse mode, don't generate any DIEs to represent any
12790 actual typedefs. */
12791 if (debug_info_level <= DINFO_LEVEL_TERSE)
12792 break;
12794 /* In the special case of a TYPE_DECL node representing the declaration
12795 of some type tag, if the given TYPE_DECL is marked as having been
12796 instantiated from some other (original) TYPE_DECL node (e.g. one which
12797 was generated within the original definition of an inline function) we
12798 have to generate a special (abbreviated) DW_TAG_structure_type,
12799 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. */
12800 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
12802 gen_tagged_type_instantiation_die (TREE_TYPE (decl), context_die);
12803 break;
12806 if (is_redundant_typedef (decl))
12807 gen_type_die (TREE_TYPE (decl), context_die);
12808 else
12809 /* Output a DIE to represent the typedef itself. */
12810 gen_typedef_die (decl, context_die);
12811 break;
12813 case LABEL_DECL:
12814 if (debug_info_level >= DINFO_LEVEL_NORMAL)
12815 gen_label_die (decl, context_die);
12816 break;
12818 case VAR_DECL:
12819 case RESULT_DECL:
12820 /* If we are in terse mode, don't generate any DIEs to represent any
12821 variable declarations or definitions. */
12822 if (debug_info_level <= DINFO_LEVEL_TERSE)
12823 break;
12825 /* Output any DIEs that are needed to specify the type of this data
12826 object. */
12827 gen_type_die (TREE_TYPE (decl), context_die);
12829 /* And its containing type. */
12830 origin = decl_class_context (decl);
12831 if (origin != NULL_TREE)
12832 gen_type_die_for_member (origin, decl, context_die);
12834 /* And its containing namespace. */
12835 declare_in_namespace (decl, context_die);
12837 /* Now output the DIE to represent the data object itself. This gets
12838 complicated because of the possibility that the VAR_DECL really
12839 represents an inlined instance of a formal parameter for an inline
12840 function. */
12841 origin = decl_ultimate_origin (decl);
12842 if (origin != NULL_TREE && TREE_CODE (origin) == PARM_DECL)
12843 gen_formal_parameter_die (decl, context_die);
12844 else
12845 gen_variable_die (decl, context_die);
12846 break;
12848 case FIELD_DECL:
12849 /* Ignore the nameless fields that are used to skip bits but handle C++
12850 anonymous unions and structs. */
12851 if (DECL_NAME (decl) != NULL_TREE
12852 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
12853 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
12855 gen_type_die (member_declared_type (decl), context_die);
12856 gen_field_die (decl, context_die);
12858 break;
12860 case PARM_DECL:
12861 gen_type_die (TREE_TYPE (decl), context_die);
12862 gen_formal_parameter_die (decl, context_die);
12863 break;
12865 case NAMESPACE_DECL:
12866 gen_namespace_die (decl);
12867 break;
12869 default:
12870 /* Probably some frontend-internal decl. Assume we don't care. */
12871 gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
12872 break;
12876 /* Add Ada "use" clause information for SGI Workshop debugger. */
12878 void
12879 dwarf2out_add_library_unit_info (const char *filename, const char *context_list)
12881 unsigned int file_index;
12883 if (filename != NULL)
12885 dw_die_ref unit_die = new_die (DW_TAG_module, comp_unit_die, NULL);
12886 tree context_list_decl
12887 = build_decl (LABEL_DECL, get_identifier (context_list),
12888 void_type_node);
12890 TREE_PUBLIC (context_list_decl) = TRUE;
12891 add_name_attribute (unit_die, context_list);
12892 file_index = lookup_filename (filename);
12893 add_AT_unsigned (unit_die, DW_AT_decl_file, file_index);
12894 add_pubname (context_list_decl, unit_die);
12898 /* Output debug information for global decl DECL. Called from toplev.c after
12899 compilation proper has finished. */
12901 static void
12902 dwarf2out_global_decl (tree decl)
12904 /* Output DWARF2 information for file-scope tentative data object
12905 declarations, file-scope (extern) function declarations (which had no
12906 corresponding body) and file-scope tagged type declarations and
12907 definitions which have not yet been forced out. */
12908 if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
12909 dwarf2out_decl (decl);
12912 /* Output debug information for type decl DECL. Called from toplev.c
12913 and from language front ends (to record built-in types). */
12914 static void
12915 dwarf2out_type_decl (tree decl, int local)
12917 if (!local)
12918 dwarf2out_decl (decl);
12921 /* Output debug information for imported module or decl. */
12923 static void
12924 dwarf2out_imported_module_or_decl (tree decl, tree context)
12926 dw_die_ref imported_die, at_import_die;
12927 dw_die_ref scope_die;
12928 unsigned file_index;
12929 expanded_location xloc;
12931 if (debug_info_level <= DINFO_LEVEL_TERSE)
12932 return;
12934 gcc_assert (decl);
12936 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
12937 We need decl DIE for reference and scope die. First, get DIE for the decl
12938 itself. */
12940 /* Get the scope die for decl context. Use comp_unit_die for global module
12941 or decl. If die is not found for non globals, force new die. */
12942 if (!context)
12943 scope_die = comp_unit_die;
12944 else if (TYPE_P (context))
12945 scope_die = force_type_die (context);
12946 else
12947 scope_die = force_decl_die (context);
12949 /* For TYPE_DECL or CONST_DECL, lookup TREE_TYPE. */
12950 if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
12951 at_import_die = force_type_die (TREE_TYPE (decl));
12952 else
12954 at_import_die = lookup_decl_die (decl);
12955 if (!at_import_die)
12957 /* If we're trying to avoid duplicate debug info, we may not have
12958 emitted the member decl for this field. Emit it now. */
12959 if (TREE_CODE (decl) == FIELD_DECL)
12961 tree type = DECL_CONTEXT (decl);
12962 dw_die_ref type_context_die;
12964 if (TYPE_CONTEXT (type))
12965 if (TYPE_P (TYPE_CONTEXT (type)))
12966 type_context_die = force_type_die (TYPE_CONTEXT (type));
12967 else
12968 type_context_die = force_decl_die (TYPE_CONTEXT (type));
12969 else
12970 type_context_die = comp_unit_die;
12971 gen_type_die_for_member (type, decl, type_context_die);
12973 at_import_die = force_decl_die (decl);
12977 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
12978 if (TREE_CODE (decl) == NAMESPACE_DECL)
12979 imported_die = new_die (DW_TAG_imported_module, scope_die, context);
12980 else
12981 imported_die = new_die (DW_TAG_imported_declaration, scope_die, context);
12983 xloc = expand_location (input_location);
12984 file_index = lookup_filename (xloc.file);
12985 add_AT_unsigned (imported_die, DW_AT_decl_file, file_index);
12986 add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
12987 add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
12990 /* Write the debugging output for DECL. */
12992 void
12993 dwarf2out_decl (tree decl)
12995 dw_die_ref context_die = comp_unit_die;
12997 switch (TREE_CODE (decl))
12999 case ERROR_MARK:
13000 return;
13002 case FUNCTION_DECL:
13003 /* What we would really like to do here is to filter out all mere
13004 file-scope declarations of file-scope functions which are never
13005 referenced later within this translation unit (and keep all of ones
13006 that *are* referenced later on) but we aren't clairvoyant, so we have
13007 no idea which functions will be referenced in the future (i.e. later
13008 on within the current translation unit). So here we just ignore all
13009 file-scope function declarations which are not also definitions. If
13010 and when the debugger needs to know something about these functions,
13011 it will have to hunt around and find the DWARF information associated
13012 with the definition of the function.
13014 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
13015 nodes represent definitions and which ones represent mere
13016 declarations. We have to check DECL_INITIAL instead. That's because
13017 the C front-end supports some weird semantics for "extern inline"
13018 function definitions. These can get inlined within the current
13019 translation unit (an thus, we need to generate Dwarf info for their
13020 abstract instances so that the Dwarf info for the concrete inlined
13021 instances can have something to refer to) but the compiler never
13022 generates any out-of-lines instances of such things (despite the fact
13023 that they *are* definitions).
13025 The important point is that the C front-end marks these "extern
13026 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
13027 them anyway. Note that the C++ front-end also plays some similar games
13028 for inline function definitions appearing within include files which
13029 also contain `#pragma interface' pragmas. */
13030 if (DECL_INITIAL (decl) == NULL_TREE)
13031 return;
13033 /* If we're a nested function, initially use a parent of NULL; if we're
13034 a plain function, this will be fixed up in decls_for_scope. If
13035 we're a method, it will be ignored, since we already have a DIE. */
13036 if (decl_function_context (decl)
13037 /* But if we're in terse mode, we don't care about scope. */
13038 && debug_info_level > DINFO_LEVEL_TERSE)
13039 context_die = NULL;
13040 break;
13042 case VAR_DECL:
13043 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
13044 declaration and if the declaration was never even referenced from
13045 within this entire compilation unit. We suppress these DIEs in
13046 order to save space in the .debug section (by eliminating entries
13047 which are probably useless). Note that we must not suppress
13048 block-local extern declarations (whether used or not) because that
13049 would screw-up the debugger's name lookup mechanism and cause it to
13050 miss things which really ought to be in scope at a given point. */
13051 if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
13052 return;
13054 /* If we are in terse mode, don't generate any DIEs to represent any
13055 variable declarations or definitions. */
13056 if (debug_info_level <= DINFO_LEVEL_TERSE)
13057 return;
13058 break;
13060 case NAMESPACE_DECL:
13061 if (debug_info_level <= DINFO_LEVEL_TERSE)
13062 return;
13063 if (lookup_decl_die (decl) != NULL)
13064 return;
13065 break;
13067 case TYPE_DECL:
13068 /* Don't emit stubs for types unless they are needed by other DIEs. */
13069 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
13070 return;
13072 /* Don't bother trying to generate any DIEs to represent any of the
13073 normal built-in types for the language we are compiling. */
13074 if (DECL_IS_BUILTIN (decl))
13076 /* OK, we need to generate one for `bool' so GDB knows what type
13077 comparisons have. */
13078 if ((get_AT_unsigned (comp_unit_die, DW_AT_language)
13079 == DW_LANG_C_plus_plus)
13080 && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE
13081 && ! DECL_IGNORED_P (decl))
13082 modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
13084 return;
13087 /* If we are in terse mode, don't generate any DIEs for types. */
13088 if (debug_info_level <= DINFO_LEVEL_TERSE)
13089 return;
13091 /* If we're a function-scope tag, initially use a parent of NULL;
13092 this will be fixed up in decls_for_scope. */
13093 if (decl_function_context (decl))
13094 context_die = NULL;
13096 break;
13098 default:
13099 return;
13102 gen_decl_die (decl, context_die);
13105 /* Output a marker (i.e. a label) for the beginning of the generated code for
13106 a lexical block. */
13108 static void
13109 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
13110 unsigned int blocknum)
13112 current_function_section (current_function_decl);
13113 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
13116 /* Output a marker (i.e. a label) for the end of the generated code for a
13117 lexical block. */
13119 static void
13120 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
13122 current_function_section (current_function_decl);
13123 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
13126 /* Returns nonzero if it is appropriate not to emit any debugging
13127 information for BLOCK, because it doesn't contain any instructions.
13129 Don't allow this for blocks with nested functions or local classes
13130 as we would end up with orphans, and in the presence of scheduling
13131 we may end up calling them anyway. */
13133 static bool
13134 dwarf2out_ignore_block (tree block)
13136 tree decl;
13138 for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
13139 if (TREE_CODE (decl) == FUNCTION_DECL
13140 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
13141 return 0;
13143 return 1;
13146 /* Lookup FILE_NAME (in the list of filenames that we know about here in
13147 dwarf2out.c) and return its "index". The index of each (known) filename is
13148 just a unique number which is associated with only that one filename. We
13149 need such numbers for the sake of generating labels (in the .debug_sfnames
13150 section) and references to those files numbers (in the .debug_srcinfo
13151 and.debug_macinfo sections). If the filename given as an argument is not
13152 found in our current list, add it to the list and assign it the next
13153 available unique index number. In order to speed up searches, we remember
13154 the index of the filename was looked up last. This handles the majority of
13155 all searches. */
13157 static unsigned
13158 lookup_filename (const char *file_name)
13160 size_t i, n;
13161 char *save_file_name;
13163 /* Check to see if the file name that was searched on the previous
13164 call matches this file name. If so, return the index. */
13165 if (file_table_last_lookup_index != 0)
13167 const char *last
13168 = VARRAY_CHAR_PTR (file_table, file_table_last_lookup_index);
13169 if (strcmp (file_name, last) == 0)
13170 return file_table_last_lookup_index;
13173 /* Didn't match the previous lookup, search the table. */
13174 n = VARRAY_ACTIVE_SIZE (file_table);
13175 for (i = 1; i < n; i++)
13176 if (strcmp (file_name, VARRAY_CHAR_PTR (file_table, i)) == 0)
13178 file_table_last_lookup_index = i;
13179 return i;
13182 /* Add the new entry to the end of the filename table. */
13183 file_table_last_lookup_index = n;
13184 save_file_name = (char *) ggc_strdup (file_name);
13185 VARRAY_PUSH_CHAR_PTR (file_table, save_file_name);
13186 VARRAY_PUSH_UINT (file_table_emitted, 0);
13188 /* If the assembler is emitting the file table, and we aren't eliminating
13189 unused debug types, then we must emit .file here. If we are eliminating
13190 unused debug types, then this will be done by the maybe_emit_file call in
13191 prune_unused_types_walk_attribs. */
13193 if (DWARF2_ASM_LINE_DEBUG_INFO && ! flag_eliminate_unused_debug_types)
13194 maybe_emit_file (i);
13196 return i;
13199 static int
13200 maybe_emit_file (int fileno)
13202 if (DWARF2_ASM_LINE_DEBUG_INFO && fileno > 0)
13204 if (!VARRAY_UINT (file_table_emitted, fileno))
13206 VARRAY_UINT (file_table_emitted, fileno) = ++emitcount;
13207 fprintf (asm_out_file, "\t.file %u ",
13208 VARRAY_UINT (file_table_emitted, fileno));
13209 output_quoted_string (asm_out_file,
13210 VARRAY_CHAR_PTR (file_table, fileno));
13211 fputc ('\n', asm_out_file);
13213 return VARRAY_UINT (file_table_emitted, fileno);
13215 else
13216 return fileno;
13219 static void
13220 init_file_table (void)
13222 /* Allocate the initial hunk of the file_table. */
13223 VARRAY_CHAR_PTR_INIT (file_table, 64, "file_table");
13224 VARRAY_UINT_INIT (file_table_emitted, 64, "file_table_emitted");
13226 /* Skip the first entry - file numbers begin at 1. */
13227 VARRAY_PUSH_CHAR_PTR (file_table, NULL);
13228 VARRAY_PUSH_UINT (file_table_emitted, 0);
13229 file_table_last_lookup_index = 0;
13232 /* Called by the final INSN scan whenever we see a var location. We
13233 use it to drop labels in the right places, and throw the location in
13234 our lookup table. */
13236 static void
13237 dwarf2out_var_location (rtx loc_note)
13239 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES];
13240 struct var_loc_node *newloc;
13241 rtx prev_insn;
13242 static rtx last_insn;
13243 static const char *last_label;
13244 tree decl;
13246 if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
13247 return;
13248 prev_insn = PREV_INSN (loc_note);
13250 newloc = ggc_alloc_cleared (sizeof (struct var_loc_node));
13251 /* If the insn we processed last time is the previous insn
13252 and it is also a var location note, use the label we emitted
13253 last time. */
13254 if (last_insn != NULL_RTX
13255 && last_insn == prev_insn
13256 && NOTE_P (prev_insn)
13257 && NOTE_LINE_NUMBER (prev_insn) == NOTE_INSN_VAR_LOCATION)
13259 newloc->label = last_label;
13261 else
13263 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
13264 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
13265 loclabel_num++;
13266 newloc->label = ggc_strdup (loclabel);
13268 newloc->var_loc_note = loc_note;
13269 newloc->next = NULL;
13271 if (cfun
13272 && (last_text_section == in_unlikely_executed_text
13273 || (last_text_section == in_named
13274 && last_text_section_name == cfun->unlikely_text_section_name)))
13275 newloc->section_label = cfun->cold_section_label;
13276 else
13277 newloc->section_label = text_section_label;
13279 last_insn = loc_note;
13280 last_label = newloc->label;
13281 decl = NOTE_VAR_LOCATION_DECL (loc_note);
13282 if (DECL_DEBUG_EXPR (decl) && DECL_DEBUG_EXPR_IS_FROM (decl)
13283 && DECL_P (DECL_DEBUG_EXPR (decl)))
13284 decl = DECL_DEBUG_EXPR (decl);
13285 add_var_loc_to_decl (decl, newloc);
13288 /* We need to reset the locations at the beginning of each
13289 function. We can't do this in the end_function hook, because the
13290 declarations that use the locations won't have been outputted when
13291 that hook is called. */
13293 static void
13294 dwarf2out_begin_function (tree unused ATTRIBUTE_UNUSED)
13296 htab_empty (decl_loc_table);
13299 /* Output a label to mark the beginning of a source code line entry
13300 and record information relating to this source line, in
13301 'line_info_table' for later output of the .debug_line section. */
13303 static void
13304 dwarf2out_source_line (unsigned int line, const char *filename)
13306 if (debug_info_level >= DINFO_LEVEL_NORMAL
13307 && line != 0)
13309 current_function_section (current_function_decl);
13311 /* If requested, emit something human-readable. */
13312 if (flag_debug_asm)
13313 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
13314 filename, line);
13316 if (DWARF2_ASM_LINE_DEBUG_INFO)
13318 unsigned file_num = lookup_filename (filename);
13320 file_num = maybe_emit_file (file_num);
13322 /* Emit the .loc directive understood by GNU as. */
13323 fprintf (asm_out_file, "\t.loc %d %d 0\n", file_num, line);
13325 /* Indicate that line number info exists. */
13326 line_info_table_in_use++;
13328 /* Indicate that multiple line number tables exist. */
13329 if (DECL_SECTION_NAME (current_function_decl))
13330 separate_line_info_table_in_use++;
13332 else if (DECL_SECTION_NAME (current_function_decl))
13334 dw_separate_line_info_ref line_info;
13335 targetm.asm_out.internal_label (asm_out_file, SEPARATE_LINE_CODE_LABEL,
13336 separate_line_info_table_in_use);
13338 /* Expand the line info table if necessary. */
13339 if (separate_line_info_table_in_use
13340 == separate_line_info_table_allocated)
13342 separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
13343 separate_line_info_table
13344 = ggc_realloc (separate_line_info_table,
13345 separate_line_info_table_allocated
13346 * sizeof (dw_separate_line_info_entry));
13347 memset (separate_line_info_table
13348 + separate_line_info_table_in_use,
13350 (LINE_INFO_TABLE_INCREMENT
13351 * sizeof (dw_separate_line_info_entry)));
13354 /* Add the new entry at the end of the line_info_table. */
13355 line_info
13356 = &separate_line_info_table[separate_line_info_table_in_use++];
13357 line_info->dw_file_num = lookup_filename (filename);
13358 line_info->dw_line_num = line;
13359 line_info->function = current_function_funcdef_no;
13361 else
13363 dw_line_info_ref line_info;
13365 targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL,
13366 line_info_table_in_use);
13368 /* Expand the line info table if necessary. */
13369 if (line_info_table_in_use == line_info_table_allocated)
13371 line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
13372 line_info_table
13373 = ggc_realloc (line_info_table,
13374 (line_info_table_allocated
13375 * sizeof (dw_line_info_entry)));
13376 memset (line_info_table + line_info_table_in_use, 0,
13377 LINE_INFO_TABLE_INCREMENT * sizeof (dw_line_info_entry));
13380 /* Add the new entry at the end of the line_info_table. */
13381 line_info = &line_info_table[line_info_table_in_use++];
13382 line_info->dw_file_num = lookup_filename (filename);
13383 line_info->dw_line_num = line;
13388 /* Record the beginning of a new source file. */
13390 static void
13391 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
13393 if (flag_eliminate_dwarf2_dups)
13395 /* Record the beginning of the file for break_out_includes. */
13396 dw_die_ref bincl_die;
13398 bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die, NULL);
13399 add_AT_string (bincl_die, DW_AT_name, filename);
13402 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13404 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13405 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
13406 dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
13407 lineno);
13408 maybe_emit_file (lookup_filename (filename));
13409 dw2_asm_output_data_uleb128 (lookup_filename (filename),
13410 "Filename we just started");
13414 /* Record the end of a source file. */
13416 static void
13417 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
13419 if (flag_eliminate_dwarf2_dups)
13420 /* Record the end of the file for break_out_includes. */
13421 new_die (DW_TAG_GNU_EINCL, comp_unit_die, NULL);
13423 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13425 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13426 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
13430 /* Called from debug_define in toplev.c. The `buffer' parameter contains
13431 the tail part of the directive line, i.e. the part which is past the
13432 initial whitespace, #, whitespace, directive-name, whitespace part. */
13434 static void
13435 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
13436 const char *buffer ATTRIBUTE_UNUSED)
13438 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13440 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13441 dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
13442 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
13443 dw2_asm_output_nstring (buffer, -1, "The macro");
13447 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
13448 the tail part of the directive line, i.e. the part which is past the
13449 initial whitespace, #, whitespace, directive-name, whitespace part. */
13451 static void
13452 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
13453 const char *buffer ATTRIBUTE_UNUSED)
13455 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13457 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13458 dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
13459 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
13460 dw2_asm_output_nstring (buffer, -1, "The macro");
13464 /* Set up for Dwarf output at the start of compilation. */
13466 static void
13467 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
13469 init_file_table ();
13471 /* Allocate the decl_die_table. */
13472 decl_die_table = htab_create_ggc (10, decl_die_table_hash,
13473 decl_die_table_eq, NULL);
13475 /* Allocate the decl_loc_table. */
13476 decl_loc_table = htab_create_ggc (10, decl_loc_table_hash,
13477 decl_loc_table_eq, NULL);
13479 /* Allocate the initial hunk of the decl_scope_table. */
13480 decl_scope_table = VEC_alloc (tree, gc, 256);
13482 /* Allocate the initial hunk of the abbrev_die_table. */
13483 abbrev_die_table = ggc_alloc_cleared (ABBREV_DIE_TABLE_INCREMENT
13484 * sizeof (dw_die_ref));
13485 abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
13486 /* Zero-th entry is allocated, but unused. */
13487 abbrev_die_table_in_use = 1;
13489 /* Allocate the initial hunk of the line_info_table. */
13490 line_info_table = ggc_alloc_cleared (LINE_INFO_TABLE_INCREMENT
13491 * sizeof (dw_line_info_entry));
13492 line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
13494 /* Zero-th entry is allocated, but unused. */
13495 line_info_table_in_use = 1;
13497 /* Generate the initial DIE for the .debug section. Note that the (string)
13498 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
13499 will (typically) be a relative pathname and that this pathname should be
13500 taken as being relative to the directory from which the compiler was
13501 invoked when the given (base) source file was compiled. We will fill
13502 in this value in dwarf2out_finish. */
13503 comp_unit_die = gen_compile_unit_die (NULL);
13505 incomplete_types = VEC_alloc (tree, gc, 64);
13507 VARRAY_RTX_INIT (used_rtx_varray, 32, "used_rtx_varray");
13509 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
13510 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
13511 DEBUG_ABBREV_SECTION_LABEL, 0);
13512 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
13513 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
13514 COLD_TEXT_SECTION_LABEL, 0);
13515 ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
13517 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
13518 DEBUG_INFO_SECTION_LABEL, 0);
13519 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
13520 DEBUG_LINE_SECTION_LABEL, 0);
13521 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
13522 DEBUG_RANGES_SECTION_LABEL, 0);
13523 named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
13524 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
13525 named_section_flags (DEBUG_INFO_SECTION, SECTION_DEBUG);
13526 ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
13527 named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
13528 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
13530 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13532 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13533 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
13534 DEBUG_MACINFO_SECTION_LABEL, 0);
13535 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
13538 text_section ();
13539 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
13540 if (flag_reorder_blocks_and_partition)
13542 unlikely_text_section ();
13543 ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
13547 /* A helper function for dwarf2out_finish called through
13548 ht_forall. Emit one queued .debug_str string. */
13550 static int
13551 output_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
13553 struct indirect_string_node *node = (struct indirect_string_node *) *h;
13555 if (node->form == DW_FORM_strp)
13557 named_section_flags (DEBUG_STR_SECTION, DEBUG_STR_SECTION_FLAGS);
13558 ASM_OUTPUT_LABEL (asm_out_file, node->label);
13559 assemble_string (node->str, strlen (node->str) + 1);
13562 return 1;
13567 /* Clear the marks for a die and its children.
13568 Be cool if the mark isn't set. */
13570 static void
13571 prune_unmark_dies (dw_die_ref die)
13573 dw_die_ref c;
13574 die->die_mark = 0;
13575 for (c = die->die_child; c; c = c->die_sib)
13576 prune_unmark_dies (c);
13580 /* Given DIE that we're marking as used, find any other dies
13581 it references as attributes and mark them as used. */
13583 static void
13584 prune_unused_types_walk_attribs (dw_die_ref die)
13586 dw_attr_ref a;
13588 for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
13590 if (a->dw_attr_val.val_class == dw_val_class_die_ref)
13592 /* A reference to another DIE.
13593 Make sure that it will get emitted. */
13594 prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
13596 else if (a->dw_attr == DW_AT_decl_file)
13598 /* A reference to a file. Make sure the file name is emitted. */
13599 a->dw_attr_val.v.val_unsigned =
13600 maybe_emit_file (a->dw_attr_val.v.val_unsigned);
13606 /* Mark DIE as being used. If DOKIDS is true, then walk down
13607 to DIE's children. */
13609 static void
13610 prune_unused_types_mark (dw_die_ref die, int dokids)
13612 dw_die_ref c;
13614 if (die->die_mark == 0)
13616 /* We haven't done this node yet. Mark it as used. */
13617 die->die_mark = 1;
13619 /* We also have to mark its parents as used.
13620 (But we don't want to mark our parents' kids due to this.) */
13621 if (die->die_parent)
13622 prune_unused_types_mark (die->die_parent, 0);
13624 /* Mark any referenced nodes. */
13625 prune_unused_types_walk_attribs (die);
13627 /* If this node is a specification,
13628 also mark the definition, if it exists. */
13629 if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
13630 prune_unused_types_mark (die->die_definition, 1);
13633 if (dokids && die->die_mark != 2)
13635 /* We need to walk the children, but haven't done so yet.
13636 Remember that we've walked the kids. */
13637 die->die_mark = 2;
13639 /* Walk them. */
13640 for (c = die->die_child; c; c = c->die_sib)
13642 /* If this is an array type, we need to make sure our
13643 kids get marked, even if they're types. */
13644 if (die->die_tag == DW_TAG_array_type)
13645 prune_unused_types_mark (c, 1);
13646 else
13647 prune_unused_types_walk (c);
13653 /* Walk the tree DIE and mark types that we actually use. */
13655 static void
13656 prune_unused_types_walk (dw_die_ref die)
13658 dw_die_ref c;
13660 /* Don't do anything if this node is already marked. */
13661 if (die->die_mark)
13662 return;
13664 switch (die->die_tag) {
13665 case DW_TAG_const_type:
13666 case DW_TAG_packed_type:
13667 case DW_TAG_pointer_type:
13668 case DW_TAG_reference_type:
13669 case DW_TAG_volatile_type:
13670 case DW_TAG_typedef:
13671 case DW_TAG_array_type:
13672 case DW_TAG_structure_type:
13673 case DW_TAG_union_type:
13674 case DW_TAG_class_type:
13675 case DW_TAG_friend:
13676 case DW_TAG_variant_part:
13677 case DW_TAG_enumeration_type:
13678 case DW_TAG_subroutine_type:
13679 case DW_TAG_string_type:
13680 case DW_TAG_set_type:
13681 case DW_TAG_subrange_type:
13682 case DW_TAG_ptr_to_member_type:
13683 case DW_TAG_file_type:
13684 /* It's a type node --- don't mark it. */
13685 return;
13687 default:
13688 /* Mark everything else. */
13689 break;
13692 die->die_mark = 1;
13694 /* Now, mark any dies referenced from here. */
13695 prune_unused_types_walk_attribs (die);
13697 /* Mark children. */
13698 for (c = die->die_child; c; c = c->die_sib)
13699 prune_unused_types_walk (c);
13703 /* Remove from the tree DIE any dies that aren't marked. */
13705 static void
13706 prune_unused_types_prune (dw_die_ref die)
13708 dw_die_ref c, p, n;
13710 gcc_assert (die->die_mark);
13712 p = NULL;
13713 for (c = die->die_child; c; c = n)
13715 n = c->die_sib;
13716 if (c->die_mark)
13718 prune_unused_types_prune (c);
13719 p = c;
13721 else
13723 if (p)
13724 p->die_sib = n;
13725 else
13726 die->die_child = n;
13727 free_die (c);
13733 /* Remove dies representing declarations that we never use. */
13735 static void
13736 prune_unused_types (void)
13738 unsigned int i;
13739 limbo_die_node *node;
13741 /* Clear all the marks. */
13742 prune_unmark_dies (comp_unit_die);
13743 for (node = limbo_die_list; node; node = node->next)
13744 prune_unmark_dies (node->die);
13746 /* Set the mark on nodes that are actually used. */
13747 prune_unused_types_walk (comp_unit_die);
13748 for (node = limbo_die_list; node; node = node->next)
13749 prune_unused_types_walk (node->die);
13751 /* Also set the mark on nodes referenced from the
13752 pubname_table or arange_table. */
13753 for (i = 0; i < pubname_table_in_use; i++)
13754 prune_unused_types_mark (pubname_table[i].die, 1);
13755 for (i = 0; i < arange_table_in_use; i++)
13756 prune_unused_types_mark (arange_table[i], 1);
13758 /* Get rid of nodes that aren't marked. */
13759 prune_unused_types_prune (comp_unit_die);
13760 for (node = limbo_die_list; node; node = node->next)
13761 prune_unused_types_prune (node->die);
13763 /* Leave the marks clear. */
13764 prune_unmark_dies (comp_unit_die);
13765 for (node = limbo_die_list; node; node = node->next)
13766 prune_unmark_dies (node->die);
13769 /* Output stuff that dwarf requires at the end of every file,
13770 and generate the DWARF-2 debugging info. */
13772 static void
13773 dwarf2out_finish (const char *filename)
13775 limbo_die_node *node, *next_node;
13776 dw_die_ref die = 0;
13778 /* Add the name for the main input file now. We delayed this from
13779 dwarf2out_init to avoid complications with PCH. */
13780 add_name_attribute (comp_unit_die, filename);
13781 if (filename[0] != DIR_SEPARATOR)
13782 add_comp_dir_attribute (comp_unit_die);
13783 else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL)
13785 size_t i;
13786 for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
13787 if (VARRAY_CHAR_PTR (file_table, i)[0] != DIR_SEPARATOR
13788 /* Don't add cwd for <built-in>. */
13789 && VARRAY_CHAR_PTR (file_table, i)[0] != '<')
13791 add_comp_dir_attribute (comp_unit_die);
13792 break;
13796 /* Traverse the limbo die list, and add parent/child links. The only
13797 dies without parents that should be here are concrete instances of
13798 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
13799 For concrete instances, we can get the parent die from the abstract
13800 instance. */
13801 for (node = limbo_die_list; node; node = next_node)
13803 next_node = node->next;
13804 die = node->die;
13806 if (die->die_parent == NULL)
13808 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
13810 if (origin)
13811 add_child_die (origin->die_parent, die);
13812 else if (die == comp_unit_die)
13814 else if (errorcount > 0 || sorrycount > 0)
13815 /* It's OK to be confused by errors in the input. */
13816 add_child_die (comp_unit_die, die);
13817 else
13819 /* In certain situations, the lexical block containing a
13820 nested function can be optimized away, which results
13821 in the nested function die being orphaned. Likewise
13822 with the return type of that nested function. Force
13823 this to be a child of the containing function.
13825 It may happen that even the containing function got fully
13826 inlined and optimized out. In that case we are lost and
13827 assign the empty child. This should not be big issue as
13828 the function is likely unreachable too. */
13829 tree context = NULL_TREE;
13831 gcc_assert (node->created_for);
13833 if (DECL_P (node->created_for))
13834 context = DECL_CONTEXT (node->created_for);
13835 else if (TYPE_P (node->created_for))
13836 context = TYPE_CONTEXT (node->created_for);
13838 gcc_assert (context && TREE_CODE (context) == FUNCTION_DECL);
13840 origin = lookup_decl_die (context);
13841 if (origin)
13842 add_child_die (origin, die);
13843 else
13844 add_child_die (comp_unit_die, die);
13849 limbo_die_list = NULL;
13851 /* Walk through the list of incomplete types again, trying once more to
13852 emit full debugging info for them. */
13853 retry_incomplete_types ();
13855 /* We need to reverse all the dies before break_out_includes, or
13856 we'll see the end of an include file before the beginning. */
13857 reverse_all_dies (comp_unit_die);
13859 if (flag_eliminate_unused_debug_types)
13860 prune_unused_types ();
13862 /* Generate separate CUs for each of the include files we've seen.
13863 They will go into limbo_die_list. */
13864 if (flag_eliminate_dwarf2_dups)
13865 break_out_includes (comp_unit_die);
13867 /* Traverse the DIE's and add add sibling attributes to those DIE's
13868 that have children. */
13869 add_sibling_attributes (comp_unit_die);
13870 for (node = limbo_die_list; node; node = node->next)
13871 add_sibling_attributes (node->die);
13873 /* Output a terminator label for the .text section. */
13874 text_section ();
13875 targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
13876 if (flag_reorder_blocks_and_partition)
13878 unlikely_text_section ();
13879 targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
13882 /* Output the source line correspondence table. We must do this
13883 even if there is no line information. Otherwise, on an empty
13884 translation unit, we will generate a present, but empty,
13885 .debug_info section. IRIX 6.5 `nm' will then complain when
13886 examining the file. */
13887 if (! DWARF2_ASM_LINE_DEBUG_INFO)
13889 named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
13890 output_line_info ();
13893 /* Output location list section if necessary. */
13894 if (have_location_lists)
13896 /* Output the location lists info. */
13897 named_section_flags (DEBUG_LOC_SECTION, SECTION_DEBUG);
13898 ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
13899 DEBUG_LOC_SECTION_LABEL, 0);
13900 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
13901 output_location_lists (die);
13902 have_location_lists = 0;
13905 /* We can only use the low/high_pc attributes if all of the code was
13906 in .text. */
13907 if (separate_line_info_table_in_use == 0)
13909 add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
13910 add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
13913 /* If it wasn't, we need to give .debug_loc and .debug_ranges an appropriate
13914 "base address". Use zero so that these addresses become absolute. */
13915 else if (have_location_lists || ranges_table_in_use)
13916 add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
13918 if (debug_info_level >= DINFO_LEVEL_NORMAL)
13919 add_AT_lbl_offset (comp_unit_die, DW_AT_stmt_list,
13920 debug_line_section_label);
13922 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13923 add_AT_lbl_offset (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
13925 /* Output all of the compilation units. We put the main one last so that
13926 the offsets are available to output_pubnames. */
13927 for (node = limbo_die_list; node; node = node->next)
13928 output_comp_unit (node->die, 0);
13930 output_comp_unit (comp_unit_die, 0);
13932 /* Output the abbreviation table. */
13933 named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
13934 output_abbrev_section ();
13936 /* Output public names table if necessary. */
13937 if (pubname_table_in_use)
13939 named_section_flags (DEBUG_PUBNAMES_SECTION, SECTION_DEBUG);
13940 output_pubnames ();
13943 /* Output the address range information. We only put functions in the arange
13944 table, so don't write it out if we don't have any. */
13945 if (fde_table_in_use)
13947 named_section_flags (DEBUG_ARANGES_SECTION, SECTION_DEBUG);
13948 output_aranges ();
13951 /* Output ranges section if necessary. */
13952 if (ranges_table_in_use)
13954 named_section_flags (DEBUG_RANGES_SECTION, SECTION_DEBUG);
13955 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
13956 output_ranges ();
13959 /* Have to end the macro section. */
13960 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13962 named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13963 dw2_asm_output_data (1, 0, "End compilation unit");
13966 /* If we emitted any DW_FORM_strp form attribute, output the string
13967 table too. */
13968 if (debug_str_hash)
13969 htab_traverse (debug_str_hash, output_indirect_string, NULL);
13971 #else
13973 /* This should never be used, but its address is needed for comparisons. */
13974 const struct gcc_debug_hooks dwarf2_debug_hooks;
13976 #endif /* DWARF2_DEBUGGING_INFO */
13978 #include "gt-dwarf2out.h"