2010-06-27 Richard Guenther <rguenther@suse.de>
[official-gcc.git] / gcc / dwarf2out.c
blob2a0f151380db28efcea6935473ee06bec71ce1a3
1 /* Output Dwarf2 format symbol table information from GCC.
2 Copyright (C) 1992, 1993, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
3 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
4 Free Software Foundation, Inc.
5 Contributed by Gary Funck (gary@intrepid.com).
6 Derived from DWARF 1 implementation of Ron Guilmette (rfg@monkeys.com).
7 Extensively modified by Jason Merrill (jason@cygnus.com).
9 This file is part of GCC.
11 GCC is free software; you can redistribute it and/or modify it under
12 the terms of the GNU General Public License as published by the Free
13 Software Foundation; either version 3, or (at your option) any later
14 version.
16 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
17 WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 for more details.
21 You should have received a copy of the GNU General Public License
22 along with GCC; see the file COPYING3. If not see
23 <http://www.gnu.org/licenses/>. */
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 /* DWARF2 Abbreviation Glossary:
39 CFA = Canonical Frame Address
40 a fixed address on the stack which identifies a call frame.
41 We define it to be the value of SP just before the call insn.
42 The CFA register and offset, which may change during the course
43 of the function, are used to calculate its value at runtime.
45 CFI = Call Frame Instruction
46 an instruction for the DWARF2 abstract machine
48 CIE = Common Information Entry
49 information describing information common to one or more FDEs
51 DIE = Debugging Information Entry
53 FDE = Frame Description Entry
54 information describing the stack call frame, in particular,
55 how to restore registers
57 DW_CFA_... = DWARF2 CFA call frame instruction
58 DW_TAG_... = DWARF2 DIE tag */
60 #include "config.h"
61 #include "system.h"
62 #include "coretypes.h"
63 #include "tm.h"
64 #include "tree.h"
65 #include "version.h"
66 #include "flags.h"
67 #include "real.h"
68 #include "rtl.h"
69 #include "hard-reg-set.h"
70 #include "regs.h"
71 #include "insn-config.h"
72 #include "reload.h"
73 #include "function.h"
74 #include "output.h"
75 #include "expr.h"
76 #include "libfuncs.h"
77 #include "except.h"
78 #include "dwarf2.h"
79 #include "dwarf2out.h"
80 #include "dwarf2asm.h"
81 #include "toplev.h"
82 #include "varray.h"
83 #include "ggc.h"
84 #include "md5.h"
85 #include "tm_p.h"
86 #include "diagnostic.h"
87 #include "debug.h"
88 #include "target.h"
89 #include "langhooks.h"
90 #include "hashtab.h"
91 #include "cgraph.h"
92 #include "input.h"
93 #include "gimple.h"
94 #include "tree-pass.h"
96 #ifdef DWARF2_DEBUGGING_INFO
97 static void dwarf2out_source_line (unsigned int, const char *, int, bool);
99 static rtx last_var_location_insn;
100 #endif
102 #ifdef VMS_DEBUGGING_INFO
103 int vms_file_stats_name (const char *, long long *, long *, char *, int *);
105 /* Define this macro to be a nonzero value if the directory specifications
106 which are output in the debug info should end with a separator. */
107 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 1
108 /* Define this macro to evaluate to a nonzero value if GCC should refrain
109 from generating indirect strings in DWARF2 debug information, for instance
110 if your target is stuck with an old version of GDB that is unable to
111 process them properly or uses VMS Debug. */
112 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 1
113 #else
114 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 0
115 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 0
116 #endif
118 #ifndef DWARF2_FRAME_INFO
119 # ifdef DWARF2_DEBUGGING_INFO
120 # define DWARF2_FRAME_INFO \
121 (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
122 # else
123 # define DWARF2_FRAME_INFO 0
124 # endif
125 #endif
127 /* Map register numbers held in the call frame info that gcc has
128 collected using DWARF_FRAME_REGNUM to those that should be output in
129 .debug_frame and .eh_frame. */
130 #ifndef DWARF2_FRAME_REG_OUT
131 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
132 #endif
134 /* Save the result of dwarf2out_do_frame across PCH. */
135 static GTY(()) bool saved_do_cfi_asm = 0;
137 /* Decide whether we want to emit frame unwind information for the current
138 translation unit. */
141 dwarf2out_do_frame (void)
143 /* We want to emit correct CFA location expressions or lists, so we
144 have to return true if we're going to output debug info, even if
145 we're not going to output frame or unwind info. */
146 return (write_symbols == DWARF2_DEBUG
147 || write_symbols == VMS_AND_DWARF2_DEBUG
148 || DWARF2_FRAME_INFO || saved_do_cfi_asm
149 #ifdef DWARF2_UNWIND_INFO
150 || (DWARF2_UNWIND_INFO
151 && (flag_unwind_tables
152 || (flag_exceptions && ! USING_SJLJ_EXCEPTIONS)))
153 #endif
157 /* Decide whether to emit frame unwind via assembler directives. */
160 dwarf2out_do_cfi_asm (void)
162 int enc;
164 #ifdef MIPS_DEBUGGING_INFO
165 return false;
166 #endif
167 if (!flag_dwarf2_cfi_asm || !dwarf2out_do_frame ())
168 return false;
169 if (saved_do_cfi_asm)
170 return true;
171 if (!HAVE_GAS_CFI_PERSONALITY_DIRECTIVE)
172 return false;
174 /* Make sure the personality encoding is one the assembler can support.
175 In particular, aligned addresses can't be handled. */
176 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,/*global=*/1);
177 if ((enc & 0x70) != 0 && (enc & 0x70) != DW_EH_PE_pcrel)
178 return false;
179 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,/*global=*/0);
180 if ((enc & 0x70) != 0 && (enc & 0x70) != DW_EH_PE_pcrel)
181 return false;
183 if (!HAVE_GAS_CFI_SECTIONS_DIRECTIVE)
185 #ifdef TARGET_UNWIND_INFO
186 return false;
187 #else
188 if (USING_SJLJ_EXCEPTIONS || (!flag_unwind_tables && !flag_exceptions))
189 return false;
190 #endif
193 saved_do_cfi_asm = true;
194 return true;
197 /* The size of the target's pointer type. */
198 #ifndef PTR_SIZE
199 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
200 #endif
202 /* Array of RTXes referenced by the debugging information, which therefore
203 must be kept around forever. */
204 static GTY(()) VEC(rtx,gc) *used_rtx_array;
206 /* A pointer to the base of a list of incomplete types which might be
207 completed at some later time. incomplete_types_list needs to be a
208 VEC(tree,gc) because we want to tell the garbage collector about
209 it. */
210 static GTY(()) VEC(tree,gc) *incomplete_types;
212 /* A pointer to the base of a table of references to declaration
213 scopes. This table is a display which tracks the nesting
214 of declaration scopes at the current scope and containing
215 scopes. This table is used to find the proper place to
216 define type declaration DIE's. */
217 static GTY(()) VEC(tree,gc) *decl_scope_table;
219 /* Pointers to various DWARF2 sections. */
220 static GTY(()) section *debug_info_section;
221 static GTY(()) section *debug_abbrev_section;
222 static GTY(()) section *debug_aranges_section;
223 static GTY(()) section *debug_macinfo_section;
224 static GTY(()) section *debug_line_section;
225 static GTY(()) section *debug_loc_section;
226 static GTY(()) section *debug_pubnames_section;
227 static GTY(()) section *debug_pubtypes_section;
228 static GTY(()) section *debug_dcall_section;
229 static GTY(()) section *debug_vcall_section;
230 static GTY(()) section *debug_str_section;
231 static GTY(()) section *debug_ranges_section;
232 static GTY(()) section *debug_frame_section;
234 /* Personality decl of current unit. Used only when assembler does not support
235 personality CFI. */
236 static GTY(()) rtx current_unit_personality;
238 /* How to start an assembler comment. */
239 #ifndef ASM_COMMENT_START
240 #define ASM_COMMENT_START ";#"
241 #endif
243 typedef struct dw_cfi_struct *dw_cfi_ref;
244 typedef struct dw_fde_struct *dw_fde_ref;
245 typedef union dw_cfi_oprnd_struct *dw_cfi_oprnd_ref;
247 /* Call frames are described using a sequence of Call Frame
248 Information instructions. The register number, offset
249 and address fields are provided as possible operands;
250 their use is selected by the opcode field. */
252 enum dw_cfi_oprnd_type {
253 dw_cfi_oprnd_unused,
254 dw_cfi_oprnd_reg_num,
255 dw_cfi_oprnd_offset,
256 dw_cfi_oprnd_addr,
257 dw_cfi_oprnd_loc
260 typedef union GTY(()) dw_cfi_oprnd_struct {
261 unsigned int GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num;
262 HOST_WIDE_INT GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset;
263 const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr;
264 struct dw_loc_descr_struct * GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc;
266 dw_cfi_oprnd;
268 typedef struct GTY(()) dw_cfi_struct {
269 dw_cfi_ref dw_cfi_next;
270 enum dwarf_call_frame_info dw_cfi_opc;
271 dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd1_desc (%1.dw_cfi_opc)")))
272 dw_cfi_oprnd1;
273 dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd2_desc (%1.dw_cfi_opc)")))
274 dw_cfi_oprnd2;
276 dw_cfi_node;
278 /* This is how we define the location of the CFA. We use to handle it
279 as REG + OFFSET all the time, but now it can be more complex.
280 It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
281 Instead of passing around REG and OFFSET, we pass a copy
282 of this structure. */
283 typedef struct GTY(()) cfa_loc {
284 HOST_WIDE_INT offset;
285 HOST_WIDE_INT base_offset;
286 unsigned int reg;
287 BOOL_BITFIELD indirect : 1; /* 1 if CFA is accessed via a dereference. */
288 BOOL_BITFIELD in_use : 1; /* 1 if a saved cfa is stored here. */
289 } dw_cfa_location;
291 /* All call frame descriptions (FDE's) in the GCC generated DWARF
292 refer to a single Common Information Entry (CIE), defined at
293 the beginning of the .debug_frame section. This use of a single
294 CIE obviates the need to keep track of multiple CIE's
295 in the DWARF generation routines below. */
297 typedef struct GTY(()) dw_fde_struct {
298 tree decl;
299 const char *dw_fde_begin;
300 const char *dw_fde_current_label;
301 const char *dw_fde_end;
302 const char *dw_fde_hot_section_label;
303 const char *dw_fde_hot_section_end_label;
304 const char *dw_fde_unlikely_section_label;
305 const char *dw_fde_unlikely_section_end_label;
306 dw_cfi_ref dw_fde_cfi;
307 dw_cfi_ref dw_fde_switch_cfi; /* Last CFI before switching sections. */
308 unsigned funcdef_number;
309 HOST_WIDE_INT stack_realignment;
310 /* Dynamic realign argument pointer register. */
311 unsigned int drap_reg;
312 /* Virtual dynamic realign argument pointer register. */
313 unsigned int vdrap_reg;
314 unsigned all_throwers_are_sibcalls : 1;
315 unsigned nothrow : 1;
316 unsigned uses_eh_lsda : 1;
317 /* Whether we did stack realign in this call frame. */
318 unsigned stack_realign : 1;
319 /* Whether dynamic realign argument pointer register has been saved. */
320 unsigned drap_reg_saved: 1;
321 /* True iff dw_fde_begin label is in text_section or cold_text_section. */
322 unsigned in_std_section : 1;
323 /* True iff dw_fde_unlikely_section_label is in text_section or
324 cold_text_section. */
325 unsigned cold_in_std_section : 1;
326 /* True iff switched sections. */
327 unsigned dw_fde_switched_sections : 1;
328 /* True iff switching from cold to hot section. */
329 unsigned dw_fde_switched_cold_to_hot : 1;
331 dw_fde_node;
333 /* Maximum size (in bytes) of an artificially generated label. */
334 #define MAX_ARTIFICIAL_LABEL_BYTES 30
336 /* The size of addresses as they appear in the Dwarf 2 data.
337 Some architectures use word addresses to refer to code locations,
338 but Dwarf 2 info always uses byte addresses. On such machines,
339 Dwarf 2 addresses need to be larger than the architecture's
340 pointers. */
341 #ifndef DWARF2_ADDR_SIZE
342 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
343 #endif
345 /* The size in bytes of a DWARF field indicating an offset or length
346 relative to a debug info section, specified to be 4 bytes in the
347 DWARF-2 specification. The SGI/MIPS ABI defines it to be the same
348 as PTR_SIZE. */
350 #ifndef DWARF_OFFSET_SIZE
351 #define DWARF_OFFSET_SIZE 4
352 #endif
354 /* The size in bytes of a DWARF 4 type signature. */
356 #ifndef DWARF_TYPE_SIGNATURE_SIZE
357 #define DWARF_TYPE_SIGNATURE_SIZE 8
358 #endif
360 /* According to the (draft) DWARF 3 specification, the initial length
361 should either be 4 or 12 bytes. When it's 12 bytes, the first 4
362 bytes are 0xffffffff, followed by the length stored in the next 8
363 bytes.
365 However, the SGI/MIPS ABI uses an initial length which is equal to
366 DWARF_OFFSET_SIZE. It is defined (elsewhere) accordingly. */
368 #ifndef DWARF_INITIAL_LENGTH_SIZE
369 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
370 #endif
372 /* Round SIZE up to the nearest BOUNDARY. */
373 #define DWARF_ROUND(SIZE,BOUNDARY) \
374 ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
376 /* Offsets recorded in opcodes are a multiple of this alignment factor. */
377 #ifndef DWARF_CIE_DATA_ALIGNMENT
378 #ifdef STACK_GROWS_DOWNWARD
379 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
380 #else
381 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
382 #endif
383 #endif
385 /* CIE identifier. */
386 #if HOST_BITS_PER_WIDE_INT >= 64
387 #define DWARF_CIE_ID \
388 (unsigned HOST_WIDE_INT) (DWARF_OFFSET_SIZE == 4 ? DW_CIE_ID : DW64_CIE_ID)
389 #else
390 #define DWARF_CIE_ID DW_CIE_ID
391 #endif
393 /* A pointer to the base of a table that contains frame description
394 information for each routine. */
395 static GTY((length ("fde_table_allocated"))) dw_fde_ref fde_table;
397 /* Number of elements currently allocated for fde_table. */
398 static GTY(()) unsigned fde_table_allocated;
400 /* Number of elements in fde_table currently in use. */
401 static GTY(()) unsigned fde_table_in_use;
403 /* Size (in elements) of increments by which we may expand the
404 fde_table. */
405 #define FDE_TABLE_INCREMENT 256
407 /* Get the current fde_table entry we should use. */
409 static inline dw_fde_ref
410 current_fde (void)
412 return fde_table_in_use ? &fde_table[fde_table_in_use - 1] : NULL;
415 /* A list of call frame insns for the CIE. */
416 static GTY(()) dw_cfi_ref cie_cfi_head;
418 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
419 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
420 attribute that accelerates the lookup of the FDE associated
421 with the subprogram. This variable holds the table index of the FDE
422 associated with the current function (body) definition. */
423 static unsigned current_funcdef_fde;
424 #endif
426 struct GTY(()) indirect_string_node {
427 const char *str;
428 unsigned int refcount;
429 enum dwarf_form form;
430 char *label;
433 static GTY ((param_is (struct indirect_string_node))) htab_t debug_str_hash;
435 /* True if the compilation unit has location entries that reference
436 debug strings. */
437 static GTY(()) bool debug_str_hash_forced = false;
439 static GTY(()) int dw2_string_counter;
440 static GTY(()) unsigned long dwarf2out_cfi_label_num;
442 /* True if the compilation unit places functions in more than one section. */
443 static GTY(()) bool have_multiple_function_sections = false;
445 /* Whether the default text and cold text sections have been used at all. */
447 static GTY(()) bool text_section_used = false;
448 static GTY(()) bool cold_text_section_used = false;
450 /* The default cold text section. */
451 static GTY(()) section *cold_text_section;
453 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
455 /* Forward declarations for functions defined in this file. */
457 static char *stripattributes (const char *);
458 static const char *dwarf_cfi_name (unsigned);
459 static dw_cfi_ref new_cfi (void);
460 static void add_cfi (dw_cfi_ref *, dw_cfi_ref);
461 static void add_fde_cfi (const char *, dw_cfi_ref);
462 static void lookup_cfa_1 (dw_cfi_ref, dw_cfa_location *, dw_cfa_location *);
463 static void lookup_cfa (dw_cfa_location *);
464 static void reg_save (const char *, unsigned, unsigned, HOST_WIDE_INT);
465 #ifdef DWARF2_UNWIND_INFO
466 static void initial_return_save (rtx);
467 #endif
468 static HOST_WIDE_INT stack_adjust_offset (const_rtx, HOST_WIDE_INT,
469 HOST_WIDE_INT);
470 static void output_cfi (dw_cfi_ref, dw_fde_ref, int);
471 static void output_cfi_directive (dw_cfi_ref);
472 static void output_call_frame_info (int);
473 static void dwarf2out_note_section_used (void);
474 static void flush_queued_reg_saves (void);
475 static bool clobbers_queued_reg_save (const_rtx);
476 static void dwarf2out_frame_debug_expr (rtx, const char *);
478 /* Support for complex CFA locations. */
479 static void output_cfa_loc (dw_cfi_ref);
480 static void output_cfa_loc_raw (dw_cfi_ref);
481 static void get_cfa_from_loc_descr (dw_cfa_location *,
482 struct dw_loc_descr_struct *);
483 static struct dw_loc_descr_struct *build_cfa_loc
484 (dw_cfa_location *, HOST_WIDE_INT);
485 static struct dw_loc_descr_struct *build_cfa_aligned_loc
486 (HOST_WIDE_INT, HOST_WIDE_INT);
487 static void def_cfa_1 (const char *, dw_cfa_location *);
489 /* How to start an assembler comment. */
490 #ifndef ASM_COMMENT_START
491 #define ASM_COMMENT_START ";#"
492 #endif
494 /* Data and reference forms for relocatable data. */
495 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
496 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
498 #ifndef DEBUG_FRAME_SECTION
499 #define DEBUG_FRAME_SECTION ".debug_frame"
500 #endif
502 #ifndef FUNC_BEGIN_LABEL
503 #define FUNC_BEGIN_LABEL "LFB"
504 #endif
506 #ifndef FUNC_END_LABEL
507 #define FUNC_END_LABEL "LFE"
508 #endif
510 #ifndef FRAME_BEGIN_LABEL
511 #define FRAME_BEGIN_LABEL "Lframe"
512 #endif
513 #define CIE_AFTER_SIZE_LABEL "LSCIE"
514 #define CIE_END_LABEL "LECIE"
515 #define FDE_LABEL "LSFDE"
516 #define FDE_AFTER_SIZE_LABEL "LASFDE"
517 #define FDE_END_LABEL "LEFDE"
518 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
519 #define LINE_NUMBER_END_LABEL "LELT"
520 #define LN_PROLOG_AS_LABEL "LASLTP"
521 #define LN_PROLOG_END_LABEL "LELTP"
522 #define DIE_LABEL_PREFIX "DW"
524 /* The DWARF 2 CFA column which tracks the return address. Normally this
525 is the column for PC, or the first column after all of the hard
526 registers. */
527 #ifndef DWARF_FRAME_RETURN_COLUMN
528 #ifdef PC_REGNUM
529 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGNUM (PC_REGNUM)
530 #else
531 #define DWARF_FRAME_RETURN_COLUMN DWARF_FRAME_REGISTERS
532 #endif
533 #endif
535 /* The mapping from gcc register number to DWARF 2 CFA column number. By
536 default, we just provide columns for all registers. */
537 #ifndef DWARF_FRAME_REGNUM
538 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
539 #endif
541 /* Hook used by __throw. */
544 expand_builtin_dwarf_sp_column (void)
546 unsigned int dwarf_regnum = DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM);
547 return GEN_INT (DWARF2_FRAME_REG_OUT (dwarf_regnum, 1));
550 /* Return a pointer to a copy of the section string name S with all
551 attributes stripped off, and an asterisk prepended (for assemble_name). */
553 static inline char *
554 stripattributes (const char *s)
556 char *stripped = XNEWVEC (char, strlen (s) + 2);
557 char *p = stripped;
559 *p++ = '*';
561 while (*s && *s != ',')
562 *p++ = *s++;
564 *p = '\0';
565 return stripped;
568 /* MEM is a memory reference for the register size table, each element of
569 which has mode MODE. Initialize column C as a return address column. */
571 static void
572 init_return_column_size (enum machine_mode mode, rtx mem, unsigned int c)
574 HOST_WIDE_INT offset = c * GET_MODE_SIZE (mode);
575 HOST_WIDE_INT size = GET_MODE_SIZE (Pmode);
576 emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
579 /* Divide OFF by DWARF_CIE_DATA_ALIGNMENT, asserting no remainder. */
581 static inline HOST_WIDE_INT
582 div_data_align (HOST_WIDE_INT off)
584 HOST_WIDE_INT r = off / DWARF_CIE_DATA_ALIGNMENT;
585 gcc_assert (r * DWARF_CIE_DATA_ALIGNMENT == off);
586 return r;
589 /* Return true if we need a signed version of a given opcode
590 (e.g. DW_CFA_offset_extended_sf vs DW_CFA_offset_extended). */
592 static inline bool
593 need_data_align_sf_opcode (HOST_WIDE_INT off)
595 return DWARF_CIE_DATA_ALIGNMENT < 0 ? off > 0 : off < 0;
598 /* Generate code to initialize the register size table. */
600 void
601 expand_builtin_init_dwarf_reg_sizes (tree address)
603 unsigned int i;
604 enum machine_mode mode = TYPE_MODE (char_type_node);
605 rtx addr = expand_normal (address);
606 rtx mem = gen_rtx_MEM (BLKmode, addr);
607 bool wrote_return_column = false;
609 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
611 int rnum = DWARF2_FRAME_REG_OUT (DWARF_FRAME_REGNUM (i), 1);
613 if (rnum < DWARF_FRAME_REGISTERS)
615 HOST_WIDE_INT offset = rnum * GET_MODE_SIZE (mode);
616 enum machine_mode save_mode = reg_raw_mode[i];
617 HOST_WIDE_INT size;
619 if (HARD_REGNO_CALL_PART_CLOBBERED (i, save_mode))
620 save_mode = choose_hard_reg_mode (i, 1, true);
621 if (DWARF_FRAME_REGNUM (i) == DWARF_FRAME_RETURN_COLUMN)
623 if (save_mode == VOIDmode)
624 continue;
625 wrote_return_column = true;
627 size = GET_MODE_SIZE (save_mode);
628 if (offset < 0)
629 continue;
631 emit_move_insn (adjust_address (mem, mode, offset),
632 gen_int_mode (size, mode));
636 if (!wrote_return_column)
637 init_return_column_size (mode, mem, DWARF_FRAME_RETURN_COLUMN);
639 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
640 init_return_column_size (mode, mem, DWARF_ALT_FRAME_RETURN_COLUMN);
641 #endif
643 targetm.init_dwarf_reg_sizes_extra (address);
646 /* Convert a DWARF call frame info. operation to its string name */
648 static const char *
649 dwarf_cfi_name (unsigned int cfi_opc)
651 switch (cfi_opc)
653 case DW_CFA_advance_loc:
654 return "DW_CFA_advance_loc";
655 case DW_CFA_offset:
656 return "DW_CFA_offset";
657 case DW_CFA_restore:
658 return "DW_CFA_restore";
659 case DW_CFA_nop:
660 return "DW_CFA_nop";
661 case DW_CFA_set_loc:
662 return "DW_CFA_set_loc";
663 case DW_CFA_advance_loc1:
664 return "DW_CFA_advance_loc1";
665 case DW_CFA_advance_loc2:
666 return "DW_CFA_advance_loc2";
667 case DW_CFA_advance_loc4:
668 return "DW_CFA_advance_loc4";
669 case DW_CFA_offset_extended:
670 return "DW_CFA_offset_extended";
671 case DW_CFA_restore_extended:
672 return "DW_CFA_restore_extended";
673 case DW_CFA_undefined:
674 return "DW_CFA_undefined";
675 case DW_CFA_same_value:
676 return "DW_CFA_same_value";
677 case DW_CFA_register:
678 return "DW_CFA_register";
679 case DW_CFA_remember_state:
680 return "DW_CFA_remember_state";
681 case DW_CFA_restore_state:
682 return "DW_CFA_restore_state";
683 case DW_CFA_def_cfa:
684 return "DW_CFA_def_cfa";
685 case DW_CFA_def_cfa_register:
686 return "DW_CFA_def_cfa_register";
687 case DW_CFA_def_cfa_offset:
688 return "DW_CFA_def_cfa_offset";
690 /* DWARF 3 */
691 case DW_CFA_def_cfa_expression:
692 return "DW_CFA_def_cfa_expression";
693 case DW_CFA_expression:
694 return "DW_CFA_expression";
695 case DW_CFA_offset_extended_sf:
696 return "DW_CFA_offset_extended_sf";
697 case DW_CFA_def_cfa_sf:
698 return "DW_CFA_def_cfa_sf";
699 case DW_CFA_def_cfa_offset_sf:
700 return "DW_CFA_def_cfa_offset_sf";
702 /* SGI/MIPS specific */
703 case DW_CFA_MIPS_advance_loc8:
704 return "DW_CFA_MIPS_advance_loc8";
706 /* GNU extensions */
707 case DW_CFA_GNU_window_save:
708 return "DW_CFA_GNU_window_save";
709 case DW_CFA_GNU_args_size:
710 return "DW_CFA_GNU_args_size";
711 case DW_CFA_GNU_negative_offset_extended:
712 return "DW_CFA_GNU_negative_offset_extended";
714 default:
715 return "DW_CFA_<unknown>";
719 /* Return a pointer to a newly allocated Call Frame Instruction. */
721 static inline dw_cfi_ref
722 new_cfi (void)
724 dw_cfi_ref cfi = GGC_NEW (dw_cfi_node);
726 cfi->dw_cfi_next = NULL;
727 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
728 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
730 return cfi;
733 /* Add a Call Frame Instruction to list of instructions. */
735 static inline void
736 add_cfi (dw_cfi_ref *list_head, dw_cfi_ref cfi)
738 dw_cfi_ref *p;
739 dw_fde_ref fde = current_fde ();
741 /* When DRAP is used, CFA is defined with an expression. Redefine
742 CFA may lead to a different CFA value. */
743 /* ??? Of course, this heuristic fails when we're annotating epilogues,
744 because of course we'll always want to redefine the CFA back to the
745 stack pointer on the way out. Where should we move this check? */
746 if (0 && fde && fde->drap_reg != INVALID_REGNUM)
747 switch (cfi->dw_cfi_opc)
749 case DW_CFA_def_cfa_register:
750 case DW_CFA_def_cfa_offset:
751 case DW_CFA_def_cfa_offset_sf:
752 case DW_CFA_def_cfa:
753 case DW_CFA_def_cfa_sf:
754 gcc_unreachable ();
756 default:
757 break;
760 /* Find the end of the chain. */
761 for (p = list_head; (*p) != NULL; p = &(*p)->dw_cfi_next)
764 *p = cfi;
767 /* Generate a new label for the CFI info to refer to. FORCE is true
768 if a label needs to be output even when using .cfi_* directives. */
770 char *
771 dwarf2out_cfi_label (bool force)
773 static char label[20];
775 if (!force && dwarf2out_do_cfi_asm ())
777 /* In this case, we will be emitting the asm directive instead of
778 the label, so just return a placeholder to keep the rest of the
779 interfaces happy. */
780 strcpy (label, "<do not output>");
782 else
784 ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", dwarf2out_cfi_label_num++);
785 ASM_OUTPUT_LABEL (asm_out_file, label);
788 return label;
791 /* True if remember_state should be emitted before following CFI directive. */
792 static bool emit_cfa_remember;
794 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
795 or to the CIE if LABEL is NULL. */
797 static void
798 add_fde_cfi (const char *label, dw_cfi_ref cfi)
800 dw_cfi_ref *list_head;
802 if (emit_cfa_remember)
804 dw_cfi_ref cfi_remember;
806 /* Emit the state save. */
807 emit_cfa_remember = false;
808 cfi_remember = new_cfi ();
809 cfi_remember->dw_cfi_opc = DW_CFA_remember_state;
810 add_fde_cfi (label, cfi_remember);
813 list_head = &cie_cfi_head;
815 if (dwarf2out_do_cfi_asm ())
817 if (label)
819 dw_fde_ref fde = current_fde ();
821 gcc_assert (fde != NULL);
823 /* We still have to add the cfi to the list so that lookup_cfa
824 works later on. When -g2 and above we even need to force
825 emitting of CFI labels and add to list a DW_CFA_set_loc for
826 convert_cfa_to_fb_loc_list purposes. If we're generating
827 DWARF3 output we use DW_OP_call_frame_cfa and so don't use
828 convert_cfa_to_fb_loc_list. */
829 if (dwarf_version == 2
830 && debug_info_level > DINFO_LEVEL_TERSE
831 && (write_symbols == DWARF2_DEBUG
832 || write_symbols == VMS_AND_DWARF2_DEBUG))
834 switch (cfi->dw_cfi_opc)
836 case DW_CFA_def_cfa_offset:
837 case DW_CFA_def_cfa_offset_sf:
838 case DW_CFA_def_cfa_register:
839 case DW_CFA_def_cfa:
840 case DW_CFA_def_cfa_sf:
841 case DW_CFA_def_cfa_expression:
842 case DW_CFA_restore_state:
843 if (*label == 0 || strcmp (label, "<do not output>") == 0)
844 label = dwarf2out_cfi_label (true);
846 if (fde->dw_fde_current_label == NULL
847 || strcmp (label, fde->dw_fde_current_label) != 0)
849 dw_cfi_ref xcfi;
851 label = xstrdup (label);
853 /* Set the location counter to the new label. */
854 xcfi = new_cfi ();
855 /* It doesn't metter whether DW_CFA_set_loc
856 or DW_CFA_advance_loc4 is added here, those aren't
857 emitted into assembly, only looked up by
858 convert_cfa_to_fb_loc_list. */
859 xcfi->dw_cfi_opc = DW_CFA_set_loc;
860 xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
861 add_cfi (&fde->dw_fde_cfi, xcfi);
862 fde->dw_fde_current_label = label;
864 break;
865 default:
866 break;
870 output_cfi_directive (cfi);
872 list_head = &fde->dw_fde_cfi;
874 /* ??? If this is a CFI for the CIE, we don't emit. This
875 assumes that the standard CIE contents that the assembler
876 uses matches the standard CIE contents that the compiler
877 uses. This is probably a bad assumption. I'm not quite
878 sure how to address this for now. */
880 else if (label)
882 dw_fde_ref fde = current_fde ();
884 gcc_assert (fde != NULL);
886 if (*label == 0)
887 label = dwarf2out_cfi_label (false);
889 if (fde->dw_fde_current_label == NULL
890 || strcmp (label, fde->dw_fde_current_label) != 0)
892 dw_cfi_ref xcfi;
894 label = xstrdup (label);
896 /* Set the location counter to the new label. */
897 xcfi = new_cfi ();
898 /* If we have a current label, advance from there, otherwise
899 set the location directly using set_loc. */
900 xcfi->dw_cfi_opc = fde->dw_fde_current_label
901 ? DW_CFA_advance_loc4
902 : DW_CFA_set_loc;
903 xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
904 add_cfi (&fde->dw_fde_cfi, xcfi);
906 fde->dw_fde_current_label = label;
909 list_head = &fde->dw_fde_cfi;
912 add_cfi (list_head, cfi);
915 /* Subroutine of lookup_cfa. */
917 static void
918 lookup_cfa_1 (dw_cfi_ref cfi, dw_cfa_location *loc, dw_cfa_location *remember)
920 switch (cfi->dw_cfi_opc)
922 case DW_CFA_def_cfa_offset:
923 case DW_CFA_def_cfa_offset_sf:
924 loc->offset = cfi->dw_cfi_oprnd1.dw_cfi_offset;
925 break;
926 case DW_CFA_def_cfa_register:
927 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
928 break;
929 case DW_CFA_def_cfa:
930 case DW_CFA_def_cfa_sf:
931 loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
932 loc->offset = cfi->dw_cfi_oprnd2.dw_cfi_offset;
933 break;
934 case DW_CFA_def_cfa_expression:
935 get_cfa_from_loc_descr (loc, cfi->dw_cfi_oprnd1.dw_cfi_loc);
936 break;
938 case DW_CFA_remember_state:
939 gcc_assert (!remember->in_use);
940 *remember = *loc;
941 remember->in_use = 1;
942 break;
943 case DW_CFA_restore_state:
944 gcc_assert (remember->in_use);
945 *loc = *remember;
946 remember->in_use = 0;
947 break;
949 default:
950 break;
954 /* Find the previous value for the CFA. */
956 static void
957 lookup_cfa (dw_cfa_location *loc)
959 dw_cfi_ref cfi;
960 dw_fde_ref fde;
961 dw_cfa_location remember;
963 memset (loc, 0, sizeof (*loc));
964 loc->reg = INVALID_REGNUM;
965 remember = *loc;
967 for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
968 lookup_cfa_1 (cfi, loc, &remember);
970 fde = current_fde ();
971 if (fde)
972 for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
973 lookup_cfa_1 (cfi, loc, &remember);
976 /* The current rule for calculating the DWARF2 canonical frame address. */
977 static dw_cfa_location cfa;
979 /* The register used for saving registers to the stack, and its offset
980 from the CFA. */
981 static dw_cfa_location cfa_store;
983 /* The current save location around an epilogue. */
984 static dw_cfa_location cfa_remember;
986 /* The running total of the size of arguments pushed onto the stack. */
987 static HOST_WIDE_INT args_size;
989 /* The last args_size we actually output. */
990 static HOST_WIDE_INT old_args_size;
992 /* Entry point to update the canonical frame address (CFA).
993 LABEL is passed to add_fde_cfi. The value of CFA is now to be
994 calculated from REG+OFFSET. */
996 void
997 dwarf2out_def_cfa (const char *label, unsigned int reg, HOST_WIDE_INT offset)
999 dw_cfa_location loc;
1000 loc.indirect = 0;
1001 loc.base_offset = 0;
1002 loc.reg = reg;
1003 loc.offset = offset;
1004 def_cfa_1 (label, &loc);
1007 /* Determine if two dw_cfa_location structures define the same data. */
1009 static bool
1010 cfa_equal_p (const dw_cfa_location *loc1, const dw_cfa_location *loc2)
1012 return (loc1->reg == loc2->reg
1013 && loc1->offset == loc2->offset
1014 && loc1->indirect == loc2->indirect
1015 && (loc1->indirect == 0
1016 || loc1->base_offset == loc2->base_offset));
1019 /* This routine does the actual work. The CFA is now calculated from
1020 the dw_cfa_location structure. */
1022 static void
1023 def_cfa_1 (const char *label, dw_cfa_location *loc_p)
1025 dw_cfi_ref cfi;
1026 dw_cfa_location old_cfa, loc;
1028 cfa = *loc_p;
1029 loc = *loc_p;
1031 if (cfa_store.reg == loc.reg && loc.indirect == 0)
1032 cfa_store.offset = loc.offset;
1034 loc.reg = DWARF_FRAME_REGNUM (loc.reg);
1035 lookup_cfa (&old_cfa);
1037 /* If nothing changed, no need to issue any call frame instructions. */
1038 if (cfa_equal_p (&loc, &old_cfa))
1039 return;
1041 cfi = new_cfi ();
1043 if (loc.reg == old_cfa.reg && !loc.indirect && !old_cfa.indirect)
1045 /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction, indicating
1046 the CFA register did not change but the offset did. The data
1047 factoring for DW_CFA_def_cfa_offset_sf happens in output_cfi, or
1048 in the assembler via the .cfi_def_cfa_offset directive. */
1049 if (loc.offset < 0)
1050 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset_sf;
1051 else
1052 cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
1053 cfi->dw_cfi_oprnd1.dw_cfi_offset = loc.offset;
1056 #ifndef MIPS_DEBUGGING_INFO /* SGI dbx thinks this means no offset. */
1057 else if (loc.offset == old_cfa.offset
1058 && old_cfa.reg != INVALID_REGNUM
1059 && !loc.indirect
1060 && !old_cfa.indirect)
1062 /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
1063 indicating the CFA register has changed to <register> but the
1064 offset has not changed. */
1065 cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
1066 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
1068 #endif
1070 else if (loc.indirect == 0)
1072 /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
1073 indicating the CFA register has changed to <register> with
1074 the specified offset. The data factoring for DW_CFA_def_cfa_sf
1075 happens in output_cfi, or in the assembler via the .cfi_def_cfa
1076 directive. */
1077 if (loc.offset < 0)
1078 cfi->dw_cfi_opc = DW_CFA_def_cfa_sf;
1079 else
1080 cfi->dw_cfi_opc = DW_CFA_def_cfa;
1081 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
1082 cfi->dw_cfi_oprnd2.dw_cfi_offset = loc.offset;
1084 else
1086 /* Construct a DW_CFA_def_cfa_expression instruction to
1087 calculate the CFA using a full location expression since no
1088 register-offset pair is available. */
1089 struct dw_loc_descr_struct *loc_list;
1091 cfi->dw_cfi_opc = DW_CFA_def_cfa_expression;
1092 loc_list = build_cfa_loc (&loc, 0);
1093 cfi->dw_cfi_oprnd1.dw_cfi_loc = loc_list;
1096 add_fde_cfi (label, cfi);
1099 /* Add the CFI for saving a register. REG is the CFA column number.
1100 LABEL is passed to add_fde_cfi.
1101 If SREG is -1, the register is saved at OFFSET from the CFA;
1102 otherwise it is saved in SREG. */
1104 static void
1105 reg_save (const char *label, unsigned int reg, unsigned int sreg, HOST_WIDE_INT offset)
1107 dw_cfi_ref cfi = new_cfi ();
1108 dw_fde_ref fde = current_fde ();
1110 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
1112 /* When stack is aligned, store REG using DW_CFA_expression with
1113 FP. */
1114 if (fde
1115 && fde->stack_realign
1116 && sreg == INVALID_REGNUM)
1118 cfi->dw_cfi_opc = DW_CFA_expression;
1119 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
1120 cfi->dw_cfi_oprnd2.dw_cfi_loc
1121 = build_cfa_aligned_loc (offset, fde->stack_realignment);
1123 else if (sreg == INVALID_REGNUM)
1125 if (need_data_align_sf_opcode (offset))
1126 cfi->dw_cfi_opc = DW_CFA_offset_extended_sf;
1127 else if (reg & ~0x3f)
1128 cfi->dw_cfi_opc = DW_CFA_offset_extended;
1129 else
1130 cfi->dw_cfi_opc = DW_CFA_offset;
1131 cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
1133 else if (sreg == reg)
1134 cfi->dw_cfi_opc = DW_CFA_same_value;
1135 else
1137 cfi->dw_cfi_opc = DW_CFA_register;
1138 cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
1141 add_fde_cfi (label, cfi);
1144 /* Add the CFI for saving a register window. LABEL is passed to reg_save.
1145 This CFI tells the unwinder that it needs to restore the window registers
1146 from the previous frame's window save area.
1148 ??? Perhaps we should note in the CIE where windows are saved (instead of
1149 assuming 0(cfa)) and what registers are in the window. */
1151 void
1152 dwarf2out_window_save (const char *label)
1154 dw_cfi_ref cfi = new_cfi ();
1156 cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
1157 add_fde_cfi (label, cfi);
1160 /* Entry point for saving a register to the stack. REG is the GCC register
1161 number. LABEL and OFFSET are passed to reg_save. */
1163 void
1164 dwarf2out_reg_save (const char *label, unsigned int reg, HOST_WIDE_INT offset)
1166 reg_save (label, DWARF_FRAME_REGNUM (reg), INVALID_REGNUM, offset);
1169 /* Entry point for saving the return address in the stack.
1170 LABEL and OFFSET are passed to reg_save. */
1172 void
1173 dwarf2out_return_save (const char *label, HOST_WIDE_INT offset)
1175 reg_save (label, DWARF_FRAME_RETURN_COLUMN, INVALID_REGNUM, offset);
1178 /* Entry point for saving the return address in a register.
1179 LABEL and SREG are passed to reg_save. */
1181 void
1182 dwarf2out_return_reg (const char *label, unsigned int sreg)
1184 reg_save (label, DWARF_FRAME_RETURN_COLUMN, DWARF_FRAME_REGNUM (sreg), 0);
1187 #ifdef DWARF2_UNWIND_INFO
1188 /* Record the initial position of the return address. RTL is
1189 INCOMING_RETURN_ADDR_RTX. */
1191 static void
1192 initial_return_save (rtx rtl)
1194 unsigned int reg = INVALID_REGNUM;
1195 HOST_WIDE_INT offset = 0;
1197 switch (GET_CODE (rtl))
1199 case REG:
1200 /* RA is in a register. */
1201 reg = DWARF_FRAME_REGNUM (REGNO (rtl));
1202 break;
1204 case MEM:
1205 /* RA is on the stack. */
1206 rtl = XEXP (rtl, 0);
1207 switch (GET_CODE (rtl))
1209 case REG:
1210 gcc_assert (REGNO (rtl) == STACK_POINTER_REGNUM);
1211 offset = 0;
1212 break;
1214 case PLUS:
1215 gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
1216 offset = INTVAL (XEXP (rtl, 1));
1217 break;
1219 case MINUS:
1220 gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
1221 offset = -INTVAL (XEXP (rtl, 1));
1222 break;
1224 default:
1225 gcc_unreachable ();
1228 break;
1230 case PLUS:
1231 /* The return address is at some offset from any value we can
1232 actually load. For instance, on the SPARC it is in %i7+8. Just
1233 ignore the offset for now; it doesn't matter for unwinding frames. */
1234 gcc_assert (CONST_INT_P (XEXP (rtl, 1)));
1235 initial_return_save (XEXP (rtl, 0));
1236 return;
1238 default:
1239 gcc_unreachable ();
1242 if (reg != DWARF_FRAME_RETURN_COLUMN)
1243 reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa.offset);
1245 #endif
1247 /* Given a SET, calculate the amount of stack adjustment it
1248 contains. */
1250 static HOST_WIDE_INT
1251 stack_adjust_offset (const_rtx pattern, HOST_WIDE_INT cur_args_size,
1252 HOST_WIDE_INT cur_offset)
1254 const_rtx src = SET_SRC (pattern);
1255 const_rtx dest = SET_DEST (pattern);
1256 HOST_WIDE_INT offset = 0;
1257 enum rtx_code code;
1259 if (dest == stack_pointer_rtx)
1261 code = GET_CODE (src);
1263 /* Assume (set (reg sp) (reg whatever)) sets args_size
1264 level to 0. */
1265 if (code == REG && src != stack_pointer_rtx)
1267 offset = -cur_args_size;
1268 #ifndef STACK_GROWS_DOWNWARD
1269 offset = -offset;
1270 #endif
1271 return offset - cur_offset;
1274 if (! (code == PLUS || code == MINUS)
1275 || XEXP (src, 0) != stack_pointer_rtx
1276 || !CONST_INT_P (XEXP (src, 1)))
1277 return 0;
1279 /* (set (reg sp) (plus (reg sp) (const_int))) */
1280 offset = INTVAL (XEXP (src, 1));
1281 if (code == PLUS)
1282 offset = -offset;
1283 return offset;
1286 if (MEM_P (src) && !MEM_P (dest))
1287 dest = src;
1288 if (MEM_P (dest))
1290 /* (set (mem (pre_dec (reg sp))) (foo)) */
1291 src = XEXP (dest, 0);
1292 code = GET_CODE (src);
1294 switch (code)
1296 case PRE_MODIFY:
1297 case POST_MODIFY:
1298 if (XEXP (src, 0) == stack_pointer_rtx)
1300 rtx val = XEXP (XEXP (src, 1), 1);
1301 /* We handle only adjustments by constant amount. */
1302 gcc_assert (GET_CODE (XEXP (src, 1)) == PLUS
1303 && CONST_INT_P (val));
1304 offset = -INTVAL (val);
1305 break;
1307 return 0;
1309 case PRE_DEC:
1310 case POST_DEC:
1311 if (XEXP (src, 0) == stack_pointer_rtx)
1313 offset = GET_MODE_SIZE (GET_MODE (dest));
1314 break;
1316 return 0;
1318 case PRE_INC:
1319 case POST_INC:
1320 if (XEXP (src, 0) == stack_pointer_rtx)
1322 offset = -GET_MODE_SIZE (GET_MODE (dest));
1323 break;
1325 return 0;
1327 default:
1328 return 0;
1331 else
1332 return 0;
1334 return offset;
1337 /* Precomputed args_size for CODE_LABELs and BARRIERs preceeding them,
1338 indexed by INSN_UID. */
1340 static HOST_WIDE_INT *barrier_args_size;
1342 /* Helper function for compute_barrier_args_size. Handle one insn. */
1344 static HOST_WIDE_INT
1345 compute_barrier_args_size_1 (rtx insn, HOST_WIDE_INT cur_args_size,
1346 VEC (rtx, heap) **next)
1348 HOST_WIDE_INT offset = 0;
1349 int i;
1351 if (! RTX_FRAME_RELATED_P (insn))
1353 if (prologue_epilogue_contains (insn))
1354 /* Nothing */;
1355 else if (GET_CODE (PATTERN (insn)) == SET)
1356 offset = stack_adjust_offset (PATTERN (insn), cur_args_size, 0);
1357 else if (GET_CODE (PATTERN (insn)) == PARALLEL
1358 || GET_CODE (PATTERN (insn)) == SEQUENCE)
1360 /* There may be stack adjustments inside compound insns. Search
1361 for them. */
1362 for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1363 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1364 offset += stack_adjust_offset (XVECEXP (PATTERN (insn), 0, i),
1365 cur_args_size, offset);
1368 else
1370 rtx expr = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1372 if (expr)
1374 expr = XEXP (expr, 0);
1375 if (GET_CODE (expr) == PARALLEL
1376 || GET_CODE (expr) == SEQUENCE)
1377 for (i = 1; i < XVECLEN (expr, 0); i++)
1379 rtx elem = XVECEXP (expr, 0, i);
1381 if (GET_CODE (elem) == SET && !RTX_FRAME_RELATED_P (elem))
1382 offset += stack_adjust_offset (elem, cur_args_size, offset);
1387 #ifndef STACK_GROWS_DOWNWARD
1388 offset = -offset;
1389 #endif
1391 cur_args_size += offset;
1392 if (cur_args_size < 0)
1393 cur_args_size = 0;
1395 if (JUMP_P (insn))
1397 rtx dest = JUMP_LABEL (insn);
1399 if (dest)
1401 if (barrier_args_size [INSN_UID (dest)] < 0)
1403 barrier_args_size [INSN_UID (dest)] = cur_args_size;
1404 VEC_safe_push (rtx, heap, *next, dest);
1409 return cur_args_size;
1412 /* Walk the whole function and compute args_size on BARRIERs. */
1414 static void
1415 compute_barrier_args_size (void)
1417 int max_uid = get_max_uid (), i;
1418 rtx insn;
1419 VEC (rtx, heap) *worklist, *next, *tmp;
1421 barrier_args_size = XNEWVEC (HOST_WIDE_INT, max_uid);
1422 for (i = 0; i < max_uid; i++)
1423 barrier_args_size[i] = -1;
1425 worklist = VEC_alloc (rtx, heap, 20);
1426 next = VEC_alloc (rtx, heap, 20);
1427 insn = get_insns ();
1428 barrier_args_size[INSN_UID (insn)] = 0;
1429 VEC_quick_push (rtx, worklist, insn);
1430 for (;;)
1432 while (!VEC_empty (rtx, worklist))
1434 rtx prev, body, first_insn;
1435 HOST_WIDE_INT cur_args_size;
1437 first_insn = insn = VEC_pop (rtx, worklist);
1438 cur_args_size = barrier_args_size[INSN_UID (insn)];
1439 prev = prev_nonnote_insn (insn);
1440 if (prev && BARRIER_P (prev))
1441 barrier_args_size[INSN_UID (prev)] = cur_args_size;
1443 for (; insn; insn = NEXT_INSN (insn))
1445 if (INSN_DELETED_P (insn) || NOTE_P (insn))
1446 continue;
1447 if (BARRIER_P (insn))
1448 break;
1450 if (LABEL_P (insn))
1452 if (insn == first_insn)
1453 continue;
1454 else if (barrier_args_size[INSN_UID (insn)] < 0)
1456 barrier_args_size[INSN_UID (insn)] = cur_args_size;
1457 continue;
1459 else
1461 /* The insns starting with this label have been
1462 already scanned or are in the worklist. */
1463 break;
1467 body = PATTERN (insn);
1468 if (GET_CODE (body) == SEQUENCE)
1470 HOST_WIDE_INT dest_args_size = cur_args_size;
1471 for (i = 1; i < XVECLEN (body, 0); i++)
1472 if (INSN_ANNULLED_BRANCH_P (XVECEXP (body, 0, 0))
1473 && INSN_FROM_TARGET_P (XVECEXP (body, 0, i)))
1474 dest_args_size
1475 = compute_barrier_args_size_1 (XVECEXP (body, 0, i),
1476 dest_args_size, &next);
1477 else
1478 cur_args_size
1479 = compute_barrier_args_size_1 (XVECEXP (body, 0, i),
1480 cur_args_size, &next);
1482 if (INSN_ANNULLED_BRANCH_P (XVECEXP (body, 0, 0)))
1483 compute_barrier_args_size_1 (XVECEXP (body, 0, 0),
1484 dest_args_size, &next);
1485 else
1486 cur_args_size
1487 = compute_barrier_args_size_1 (XVECEXP (body, 0, 0),
1488 cur_args_size, &next);
1490 else
1491 cur_args_size
1492 = compute_barrier_args_size_1 (insn, cur_args_size, &next);
1496 if (VEC_empty (rtx, next))
1497 break;
1499 /* Swap WORKLIST with NEXT and truncate NEXT for next iteration. */
1500 tmp = next;
1501 next = worklist;
1502 worklist = tmp;
1503 VEC_truncate (rtx, next, 0);
1506 VEC_free (rtx, heap, worklist);
1507 VEC_free (rtx, heap, next);
1510 /* Add a CFI to update the running total of the size of arguments
1511 pushed onto the stack. */
1513 static void
1514 dwarf2out_args_size (const char *label, HOST_WIDE_INT size)
1516 dw_cfi_ref cfi;
1518 if (size == old_args_size)
1519 return;
1521 old_args_size = size;
1523 cfi = new_cfi ();
1524 cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
1525 cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
1526 add_fde_cfi (label, cfi);
1529 /* Record a stack adjustment of OFFSET bytes. */
1531 static void
1532 dwarf2out_stack_adjust (HOST_WIDE_INT offset, const char *label)
1534 if (cfa.reg == STACK_POINTER_REGNUM)
1535 cfa.offset += offset;
1537 if (cfa_store.reg == STACK_POINTER_REGNUM)
1538 cfa_store.offset += offset;
1540 if (ACCUMULATE_OUTGOING_ARGS)
1541 return;
1543 #ifndef STACK_GROWS_DOWNWARD
1544 offset = -offset;
1545 #endif
1547 args_size += offset;
1548 if (args_size < 0)
1549 args_size = 0;
1551 def_cfa_1 (label, &cfa);
1552 if (flag_asynchronous_unwind_tables)
1553 dwarf2out_args_size (label, args_size);
1556 /* Check INSN to see if it looks like a push or a stack adjustment, and
1557 make a note of it if it does. EH uses this information to find out
1558 how much extra space it needs to pop off the stack. */
1560 static void
1561 dwarf2out_notice_stack_adjust (rtx insn, bool after_p)
1563 HOST_WIDE_INT offset;
1564 const char *label;
1565 int i;
1567 /* Don't handle epilogues at all. Certainly it would be wrong to do so
1568 with this function. Proper support would require all frame-related
1569 insns to be marked, and to be able to handle saving state around
1570 epilogues textually in the middle of the function. */
1571 if (prologue_epilogue_contains (insn))
1572 return;
1574 /* If INSN is an instruction from target of an annulled branch, the
1575 effects are for the target only and so current argument size
1576 shouldn't change at all. */
1577 if (final_sequence
1578 && INSN_ANNULLED_BRANCH_P (XVECEXP (final_sequence, 0, 0))
1579 && INSN_FROM_TARGET_P (insn))
1580 return;
1582 /* If only calls can throw, and we have a frame pointer,
1583 save up adjustments until we see the CALL_INSN. */
1584 if (!flag_asynchronous_unwind_tables && cfa.reg != STACK_POINTER_REGNUM)
1586 if (CALL_P (insn) && !after_p)
1588 /* Extract the size of the args from the CALL rtx itself. */
1589 insn = PATTERN (insn);
1590 if (GET_CODE (insn) == PARALLEL)
1591 insn = XVECEXP (insn, 0, 0);
1592 if (GET_CODE (insn) == SET)
1593 insn = SET_SRC (insn);
1594 gcc_assert (GET_CODE (insn) == CALL);
1595 dwarf2out_args_size ("", INTVAL (XEXP (insn, 1)));
1597 return;
1600 if (CALL_P (insn) && !after_p)
1602 if (!flag_asynchronous_unwind_tables)
1603 dwarf2out_args_size ("", args_size);
1604 return;
1606 else if (BARRIER_P (insn))
1608 /* Don't call compute_barrier_args_size () if the only
1609 BARRIER is at the end of function. */
1610 if (barrier_args_size == NULL && next_nonnote_insn (insn))
1611 compute_barrier_args_size ();
1612 if (barrier_args_size == NULL)
1613 offset = 0;
1614 else
1616 offset = barrier_args_size[INSN_UID (insn)];
1617 if (offset < 0)
1618 offset = 0;
1621 offset -= args_size;
1622 #ifndef STACK_GROWS_DOWNWARD
1623 offset = -offset;
1624 #endif
1626 else if (GET_CODE (PATTERN (insn)) == SET)
1627 offset = stack_adjust_offset (PATTERN (insn), args_size, 0);
1628 else if (GET_CODE (PATTERN (insn)) == PARALLEL
1629 || GET_CODE (PATTERN (insn)) == SEQUENCE)
1631 /* There may be stack adjustments inside compound insns. Search
1632 for them. */
1633 for (offset = 0, i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1634 if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1635 offset += stack_adjust_offset (XVECEXP (PATTERN (insn), 0, i),
1636 args_size, offset);
1638 else
1639 return;
1641 if (offset == 0)
1642 return;
1644 label = dwarf2out_cfi_label (false);
1645 dwarf2out_stack_adjust (offset, label);
1648 #endif
1650 /* We delay emitting a register save until either (a) we reach the end
1651 of the prologue or (b) the register is clobbered. This clusters
1652 register saves so that there are fewer pc advances. */
1654 struct GTY(()) queued_reg_save {
1655 struct queued_reg_save *next;
1656 rtx reg;
1657 HOST_WIDE_INT cfa_offset;
1658 rtx saved_reg;
1661 static GTY(()) struct queued_reg_save *queued_reg_saves;
1663 /* The caller's ORIG_REG is saved in SAVED_IN_REG. */
1664 struct GTY(()) reg_saved_in_data {
1665 rtx orig_reg;
1666 rtx saved_in_reg;
1669 /* A list of registers saved in other registers.
1670 The list intentionally has a small maximum capacity of 4; if your
1671 port needs more than that, you might consider implementing a
1672 more efficient data structure. */
1673 static GTY(()) struct reg_saved_in_data regs_saved_in_regs[4];
1674 static GTY(()) size_t num_regs_saved_in_regs;
1676 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1677 static const char *last_reg_save_label;
1679 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1680 SREG, or if SREG is NULL then it is saved at OFFSET to the CFA. */
1682 static void
1683 queue_reg_save (const char *label, rtx reg, rtx sreg, HOST_WIDE_INT offset)
1685 struct queued_reg_save *q;
1687 /* Duplicates waste space, but it's also necessary to remove them
1688 for correctness, since the queue gets output in reverse
1689 order. */
1690 for (q = queued_reg_saves; q != NULL; q = q->next)
1691 if (REGNO (q->reg) == REGNO (reg))
1692 break;
1694 if (q == NULL)
1696 q = GGC_NEW (struct queued_reg_save);
1697 q->next = queued_reg_saves;
1698 queued_reg_saves = q;
1701 q->reg = reg;
1702 q->cfa_offset = offset;
1703 q->saved_reg = sreg;
1705 last_reg_save_label = label;
1708 /* Output all the entries in QUEUED_REG_SAVES. */
1710 static void
1711 flush_queued_reg_saves (void)
1713 struct queued_reg_save *q;
1715 for (q = queued_reg_saves; q; q = q->next)
1717 size_t i;
1718 unsigned int reg, sreg;
1720 for (i = 0; i < num_regs_saved_in_regs; i++)
1721 if (REGNO (regs_saved_in_regs[i].orig_reg) == REGNO (q->reg))
1722 break;
1723 if (q->saved_reg && i == num_regs_saved_in_regs)
1725 gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1726 num_regs_saved_in_regs++;
1728 if (i != num_regs_saved_in_regs)
1730 regs_saved_in_regs[i].orig_reg = q->reg;
1731 regs_saved_in_regs[i].saved_in_reg = q->saved_reg;
1734 reg = DWARF_FRAME_REGNUM (REGNO (q->reg));
1735 if (q->saved_reg)
1736 sreg = DWARF_FRAME_REGNUM (REGNO (q->saved_reg));
1737 else
1738 sreg = INVALID_REGNUM;
1739 reg_save (last_reg_save_label, reg, sreg, q->cfa_offset);
1742 queued_reg_saves = NULL;
1743 last_reg_save_label = NULL;
1746 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1747 location for? Or, does it clobber a register which we've previously
1748 said that some other register is saved in, and for which we now
1749 have a new location for? */
1751 static bool
1752 clobbers_queued_reg_save (const_rtx insn)
1754 struct queued_reg_save *q;
1756 for (q = queued_reg_saves; q; q = q->next)
1758 size_t i;
1759 if (modified_in_p (q->reg, insn))
1760 return true;
1761 for (i = 0; i < num_regs_saved_in_regs; i++)
1762 if (REGNO (q->reg) == REGNO (regs_saved_in_regs[i].orig_reg)
1763 && modified_in_p (regs_saved_in_regs[i].saved_in_reg, insn))
1764 return true;
1767 return false;
1770 /* Entry point for saving the first register into the second. */
1772 void
1773 dwarf2out_reg_save_reg (const char *label, rtx reg, rtx sreg)
1775 size_t i;
1776 unsigned int regno, sregno;
1778 for (i = 0; i < num_regs_saved_in_regs; i++)
1779 if (REGNO (regs_saved_in_regs[i].orig_reg) == REGNO (reg))
1780 break;
1781 if (i == num_regs_saved_in_regs)
1783 gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1784 num_regs_saved_in_regs++;
1786 regs_saved_in_regs[i].orig_reg = reg;
1787 regs_saved_in_regs[i].saved_in_reg = sreg;
1789 regno = DWARF_FRAME_REGNUM (REGNO (reg));
1790 sregno = DWARF_FRAME_REGNUM (REGNO (sreg));
1791 reg_save (label, regno, sregno, 0);
1794 /* What register, if any, is currently saved in REG? */
1796 static rtx
1797 reg_saved_in (rtx reg)
1799 unsigned int regn = REGNO (reg);
1800 size_t i;
1801 struct queued_reg_save *q;
1803 for (q = queued_reg_saves; q; q = q->next)
1804 if (q->saved_reg && regn == REGNO (q->saved_reg))
1805 return q->reg;
1807 for (i = 0; i < num_regs_saved_in_regs; i++)
1808 if (regs_saved_in_regs[i].saved_in_reg
1809 && regn == REGNO (regs_saved_in_regs[i].saved_in_reg))
1810 return regs_saved_in_regs[i].orig_reg;
1812 return NULL_RTX;
1816 /* A temporary register holding an integral value used in adjusting SP
1817 or setting up the store_reg. The "offset" field holds the integer
1818 value, not an offset. */
1819 static dw_cfa_location cfa_temp;
1821 /* A subroutine of dwarf2out_frame_debug, process a REG_DEF_CFA note. */
1823 static void
1824 dwarf2out_frame_debug_def_cfa (rtx pat, const char *label)
1826 memset (&cfa, 0, sizeof (cfa));
1828 switch (GET_CODE (pat))
1830 case PLUS:
1831 cfa.reg = REGNO (XEXP (pat, 0));
1832 cfa.offset = INTVAL (XEXP (pat, 1));
1833 break;
1835 case REG:
1836 cfa.reg = REGNO (pat);
1837 break;
1839 default:
1840 /* Recurse and define an expression. */
1841 gcc_unreachable ();
1844 def_cfa_1 (label, &cfa);
1847 /* A subroutine of dwarf2out_frame_debug, process a REG_ADJUST_CFA note. */
1849 static void
1850 dwarf2out_frame_debug_adjust_cfa (rtx pat, const char *label)
1852 rtx src, dest;
1854 gcc_assert (GET_CODE (pat) == SET);
1855 dest = XEXP (pat, 0);
1856 src = XEXP (pat, 1);
1858 switch (GET_CODE (src))
1860 case PLUS:
1861 gcc_assert (REGNO (XEXP (src, 0)) == cfa.reg);
1862 cfa.offset -= INTVAL (XEXP (src, 1));
1863 break;
1865 case REG:
1866 break;
1868 default:
1869 gcc_unreachable ();
1872 cfa.reg = REGNO (dest);
1873 gcc_assert (cfa.indirect == 0);
1875 def_cfa_1 (label, &cfa);
1878 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_OFFSET note. */
1880 static void
1881 dwarf2out_frame_debug_cfa_offset (rtx set, const char *label)
1883 HOST_WIDE_INT offset;
1884 rtx src, addr, span;
1886 src = XEXP (set, 1);
1887 addr = XEXP (set, 0);
1888 gcc_assert (MEM_P (addr));
1889 addr = XEXP (addr, 0);
1891 /* As documented, only consider extremely simple addresses. */
1892 switch (GET_CODE (addr))
1894 case REG:
1895 gcc_assert (REGNO (addr) == cfa.reg);
1896 offset = -cfa.offset;
1897 break;
1898 case PLUS:
1899 gcc_assert (REGNO (XEXP (addr, 0)) == cfa.reg);
1900 offset = INTVAL (XEXP (addr, 1)) - cfa.offset;
1901 break;
1902 default:
1903 gcc_unreachable ();
1906 span = targetm.dwarf_register_span (src);
1908 /* ??? We'd like to use queue_reg_save, but we need to come up with
1909 a different flushing heuristic for epilogues. */
1910 if (!span)
1911 reg_save (label, DWARF_FRAME_REGNUM (REGNO (src)), INVALID_REGNUM, offset);
1912 else
1914 /* We have a PARALLEL describing where the contents of SRC live.
1915 Queue register saves for each piece of the PARALLEL. */
1916 int par_index;
1917 int limit;
1918 HOST_WIDE_INT span_offset = offset;
1920 gcc_assert (GET_CODE (span) == PARALLEL);
1922 limit = XVECLEN (span, 0);
1923 for (par_index = 0; par_index < limit; par_index++)
1925 rtx elem = XVECEXP (span, 0, par_index);
1927 reg_save (label, DWARF_FRAME_REGNUM (REGNO (elem)),
1928 INVALID_REGNUM, span_offset);
1929 span_offset += GET_MODE_SIZE (GET_MODE (elem));
1934 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_REGISTER note. */
1936 static void
1937 dwarf2out_frame_debug_cfa_register (rtx set, const char *label)
1939 rtx src, dest;
1940 unsigned sregno, dregno;
1942 src = XEXP (set, 1);
1943 dest = XEXP (set, 0);
1945 if (src == pc_rtx)
1946 sregno = DWARF_FRAME_RETURN_COLUMN;
1947 else
1948 sregno = DWARF_FRAME_REGNUM (REGNO (src));
1950 dregno = DWARF_FRAME_REGNUM (REGNO (dest));
1952 /* ??? We'd like to use queue_reg_save, but we need to come up with
1953 a different flushing heuristic for epilogues. */
1954 reg_save (label, sregno, dregno, 0);
1957 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_RESTORE note. */
1959 static void
1960 dwarf2out_frame_debug_cfa_restore (rtx reg, const char *label)
1962 dw_cfi_ref cfi = new_cfi ();
1963 unsigned int regno = DWARF_FRAME_REGNUM (REGNO (reg));
1965 cfi->dw_cfi_opc = (regno & ~0x3f ? DW_CFA_restore_extended : DW_CFA_restore);
1966 cfi->dw_cfi_oprnd1.dw_cfi_reg_num = regno;
1968 add_fde_cfi (label, cfi);
1971 /* Record call frame debugging information for an expression EXPR,
1972 which either sets SP or FP (adjusting how we calculate the frame
1973 address) or saves a register to the stack or another register.
1974 LABEL indicates the address of EXPR.
1976 This function encodes a state machine mapping rtxes to actions on
1977 cfa, cfa_store, and cfa_temp.reg. We describe these rules so
1978 users need not read the source code.
1980 The High-Level Picture
1982 Changes in the register we use to calculate the CFA: Currently we
1983 assume that if you copy the CFA register into another register, we
1984 should take the other one as the new CFA register; this seems to
1985 work pretty well. If it's wrong for some target, it's simple
1986 enough not to set RTX_FRAME_RELATED_P on the insn in question.
1988 Changes in the register we use for saving registers to the stack:
1989 This is usually SP, but not always. Again, we deduce that if you
1990 copy SP into another register (and SP is not the CFA register),
1991 then the new register is the one we will be using for register
1992 saves. This also seems to work.
1994 Register saves: There's not much guesswork about this one; if
1995 RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1996 register save, and the register used to calculate the destination
1997 had better be the one we think we're using for this purpose.
1998 It's also assumed that a copy from a call-saved register to another
1999 register is saving that register if RTX_FRAME_RELATED_P is set on
2000 that instruction. If the copy is from a call-saved register to
2001 the *same* register, that means that the register is now the same
2002 value as in the caller.
2004 Except: If the register being saved is the CFA register, and the
2005 offset is nonzero, we are saving the CFA, so we assume we have to
2006 use DW_CFA_def_cfa_expression. If the offset is 0, we assume that
2007 the intent is to save the value of SP from the previous frame.
2009 In addition, if a register has previously been saved to a different
2010 register,
2012 Invariants / Summaries of Rules
2014 cfa current rule for calculating the CFA. It usually
2015 consists of a register and an offset.
2016 cfa_store register used by prologue code to save things to the stack
2017 cfa_store.offset is the offset from the value of
2018 cfa_store.reg to the actual CFA
2019 cfa_temp register holding an integral value. cfa_temp.offset
2020 stores the value, which will be used to adjust the
2021 stack pointer. cfa_temp is also used like cfa_store,
2022 to track stores to the stack via fp or a temp reg.
2024 Rules 1- 4: Setting a register's value to cfa.reg or an expression
2025 with cfa.reg as the first operand changes the cfa.reg and its
2026 cfa.offset. Rule 1 and 4 also set cfa_temp.reg and
2027 cfa_temp.offset.
2029 Rules 6- 9: Set a non-cfa.reg register value to a constant or an
2030 expression yielding a constant. This sets cfa_temp.reg
2031 and cfa_temp.offset.
2033 Rule 5: Create a new register cfa_store used to save items to the
2034 stack.
2036 Rules 10-14: Save a register to the stack. Define offset as the
2037 difference of the original location and cfa_store's
2038 location (or cfa_temp's location if cfa_temp is used).
2040 Rules 16-20: If AND operation happens on sp in prologue, we assume
2041 stack is realigned. We will use a group of DW_OP_XXX
2042 expressions to represent the location of the stored
2043 register instead of CFA+offset.
2045 The Rules
2047 "{a,b}" indicates a choice of a xor b.
2048 "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
2050 Rule 1:
2051 (set <reg1> <reg2>:cfa.reg)
2052 effects: cfa.reg = <reg1>
2053 cfa.offset unchanged
2054 cfa_temp.reg = <reg1>
2055 cfa_temp.offset = cfa.offset
2057 Rule 2:
2058 (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
2059 {<const_int>,<reg>:cfa_temp.reg}))
2060 effects: cfa.reg = sp if fp used
2061 cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
2062 cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
2063 if cfa_store.reg==sp
2065 Rule 3:
2066 (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
2067 effects: cfa.reg = fp
2068 cfa_offset += +/- <const_int>
2070 Rule 4:
2071 (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
2072 constraints: <reg1> != fp
2073 <reg1> != sp
2074 effects: cfa.reg = <reg1>
2075 cfa_temp.reg = <reg1>
2076 cfa_temp.offset = cfa.offset
2078 Rule 5:
2079 (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
2080 constraints: <reg1> != fp
2081 <reg1> != sp
2082 effects: cfa_store.reg = <reg1>
2083 cfa_store.offset = cfa.offset - cfa_temp.offset
2085 Rule 6:
2086 (set <reg> <const_int>)
2087 effects: cfa_temp.reg = <reg>
2088 cfa_temp.offset = <const_int>
2090 Rule 7:
2091 (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
2092 effects: cfa_temp.reg = <reg1>
2093 cfa_temp.offset |= <const_int>
2095 Rule 8:
2096 (set <reg> (high <exp>))
2097 effects: none
2099 Rule 9:
2100 (set <reg> (lo_sum <exp> <const_int>))
2101 effects: cfa_temp.reg = <reg>
2102 cfa_temp.offset = <const_int>
2104 Rule 10:
2105 (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
2106 effects: cfa_store.offset -= <const_int>
2107 cfa.offset = cfa_store.offset if cfa.reg == sp
2108 cfa.reg = sp
2109 cfa.base_offset = -cfa_store.offset
2111 Rule 11:
2112 (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
2113 effects: cfa_store.offset += -/+ mode_size(mem)
2114 cfa.offset = cfa_store.offset if cfa.reg == sp
2115 cfa.reg = sp
2116 cfa.base_offset = -cfa_store.offset
2118 Rule 12:
2119 (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
2121 <reg2>)
2122 effects: cfa.reg = <reg1>
2123 cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
2125 Rule 13:
2126 (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
2127 effects: cfa.reg = <reg1>
2128 cfa.base_offset = -{cfa_store,cfa_temp}.offset
2130 Rule 14:
2131 (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
2132 effects: cfa.reg = <reg1>
2133 cfa.base_offset = -cfa_temp.offset
2134 cfa_temp.offset -= mode_size(mem)
2136 Rule 15:
2137 (set <reg> {unspec, unspec_volatile})
2138 effects: target-dependent
2140 Rule 16:
2141 (set sp (and: sp <const_int>))
2142 constraints: cfa_store.reg == sp
2143 effects: current_fde.stack_realign = 1
2144 cfa_store.offset = 0
2145 fde->drap_reg = cfa.reg if cfa.reg != sp and cfa.reg != fp
2147 Rule 17:
2148 (set (mem ({pre_inc, pre_dec} sp)) (mem (plus (cfa.reg) (const_int))))
2149 effects: cfa_store.offset += -/+ mode_size(mem)
2151 Rule 18:
2152 (set (mem ({pre_inc, pre_dec} sp)) fp)
2153 constraints: fde->stack_realign == 1
2154 effects: cfa_store.offset = 0
2155 cfa.reg != HARD_FRAME_POINTER_REGNUM
2157 Rule 19:
2158 (set (mem ({pre_inc, pre_dec} sp)) cfa.reg)
2159 constraints: fde->stack_realign == 1
2160 && cfa.offset == 0
2161 && cfa.indirect == 0
2162 && cfa.reg != HARD_FRAME_POINTER_REGNUM
2163 effects: Use DW_CFA_def_cfa_expression to define cfa
2164 cfa.reg == fde->drap_reg */
2166 static void
2167 dwarf2out_frame_debug_expr (rtx expr, const char *label)
2169 rtx src, dest, span;
2170 HOST_WIDE_INT offset;
2171 dw_fde_ref fde;
2173 /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
2174 the PARALLEL independently. The first element is always processed if
2175 it is a SET. This is for backward compatibility. Other elements
2176 are processed only if they are SETs and the RTX_FRAME_RELATED_P
2177 flag is set in them. */
2178 if (GET_CODE (expr) == PARALLEL || GET_CODE (expr) == SEQUENCE)
2180 int par_index;
2181 int limit = XVECLEN (expr, 0);
2182 rtx elem;
2184 /* PARALLELs have strict read-modify-write semantics, so we
2185 ought to evaluate every rvalue before changing any lvalue.
2186 It's cumbersome to do that in general, but there's an
2187 easy approximation that is enough for all current users:
2188 handle register saves before register assignments. */
2189 if (GET_CODE (expr) == PARALLEL)
2190 for (par_index = 0; par_index < limit; par_index++)
2192 elem = XVECEXP (expr, 0, par_index);
2193 if (GET_CODE (elem) == SET
2194 && MEM_P (SET_DEST (elem))
2195 && (RTX_FRAME_RELATED_P (elem) || par_index == 0))
2196 dwarf2out_frame_debug_expr (elem, label);
2199 for (par_index = 0; par_index < limit; par_index++)
2201 elem = XVECEXP (expr, 0, par_index);
2202 if (GET_CODE (elem) == SET
2203 && (!MEM_P (SET_DEST (elem)) || GET_CODE (expr) == SEQUENCE)
2204 && (RTX_FRAME_RELATED_P (elem) || par_index == 0))
2205 dwarf2out_frame_debug_expr (elem, label);
2206 else if (GET_CODE (elem) == SET
2207 && par_index != 0
2208 && !RTX_FRAME_RELATED_P (elem))
2210 /* Stack adjustment combining might combine some post-prologue
2211 stack adjustment into a prologue stack adjustment. */
2212 HOST_WIDE_INT offset = stack_adjust_offset (elem, args_size, 0);
2214 if (offset != 0)
2215 dwarf2out_stack_adjust (offset, label);
2218 return;
2221 gcc_assert (GET_CODE (expr) == SET);
2223 src = SET_SRC (expr);
2224 dest = SET_DEST (expr);
2226 if (REG_P (src))
2228 rtx rsi = reg_saved_in (src);
2229 if (rsi)
2230 src = rsi;
2233 fde = current_fde ();
2235 switch (GET_CODE (dest))
2237 case REG:
2238 switch (GET_CODE (src))
2240 /* Setting FP from SP. */
2241 case REG:
2242 if (cfa.reg == (unsigned) REGNO (src))
2244 /* Rule 1 */
2245 /* Update the CFA rule wrt SP or FP. Make sure src is
2246 relative to the current CFA register.
2248 We used to require that dest be either SP or FP, but the
2249 ARM copies SP to a temporary register, and from there to
2250 FP. So we just rely on the backends to only set
2251 RTX_FRAME_RELATED_P on appropriate insns. */
2252 cfa.reg = REGNO (dest);
2253 cfa_temp.reg = cfa.reg;
2254 cfa_temp.offset = cfa.offset;
2256 else
2258 /* Saving a register in a register. */
2259 gcc_assert (!fixed_regs [REGNO (dest)]
2260 /* For the SPARC and its register window. */
2261 || (DWARF_FRAME_REGNUM (REGNO (src))
2262 == DWARF_FRAME_RETURN_COLUMN));
2264 /* After stack is aligned, we can only save SP in FP
2265 if drap register is used. In this case, we have
2266 to restore stack pointer with the CFA value and we
2267 don't generate this DWARF information. */
2268 if (fde
2269 && fde->stack_realign
2270 && REGNO (src) == STACK_POINTER_REGNUM)
2271 gcc_assert (REGNO (dest) == HARD_FRAME_POINTER_REGNUM
2272 && fde->drap_reg != INVALID_REGNUM
2273 && cfa.reg != REGNO (src));
2274 else
2275 queue_reg_save (label, src, dest, 0);
2277 break;
2279 case PLUS:
2280 case MINUS:
2281 case LO_SUM:
2282 if (dest == stack_pointer_rtx)
2284 /* Rule 2 */
2285 /* Adjusting SP. */
2286 switch (GET_CODE (XEXP (src, 1)))
2288 case CONST_INT:
2289 offset = INTVAL (XEXP (src, 1));
2290 break;
2291 case REG:
2292 gcc_assert ((unsigned) REGNO (XEXP (src, 1))
2293 == cfa_temp.reg);
2294 offset = cfa_temp.offset;
2295 break;
2296 default:
2297 gcc_unreachable ();
2300 if (XEXP (src, 0) == hard_frame_pointer_rtx)
2302 /* Restoring SP from FP in the epilogue. */
2303 gcc_assert (cfa.reg == (unsigned) HARD_FRAME_POINTER_REGNUM);
2304 cfa.reg = STACK_POINTER_REGNUM;
2306 else if (GET_CODE (src) == LO_SUM)
2307 /* Assume we've set the source reg of the LO_SUM from sp. */
2309 else
2310 gcc_assert (XEXP (src, 0) == stack_pointer_rtx);
2312 if (GET_CODE (src) != MINUS)
2313 offset = -offset;
2314 if (cfa.reg == STACK_POINTER_REGNUM)
2315 cfa.offset += offset;
2316 if (cfa_store.reg == STACK_POINTER_REGNUM)
2317 cfa_store.offset += offset;
2319 else if (dest == hard_frame_pointer_rtx)
2321 /* Rule 3 */
2322 /* Either setting the FP from an offset of the SP,
2323 or adjusting the FP */
2324 gcc_assert (frame_pointer_needed);
2326 gcc_assert (REG_P (XEXP (src, 0))
2327 && (unsigned) REGNO (XEXP (src, 0)) == cfa.reg
2328 && CONST_INT_P (XEXP (src, 1)));
2329 offset = INTVAL (XEXP (src, 1));
2330 if (GET_CODE (src) != MINUS)
2331 offset = -offset;
2332 cfa.offset += offset;
2333 cfa.reg = HARD_FRAME_POINTER_REGNUM;
2335 else
2337 gcc_assert (GET_CODE (src) != MINUS);
2339 /* Rule 4 */
2340 if (REG_P (XEXP (src, 0))
2341 && REGNO (XEXP (src, 0)) == cfa.reg
2342 && CONST_INT_P (XEXP (src, 1)))
2344 /* Setting a temporary CFA register that will be copied
2345 into the FP later on. */
2346 offset = - INTVAL (XEXP (src, 1));
2347 cfa.offset += offset;
2348 cfa.reg = REGNO (dest);
2349 /* Or used to save regs to the stack. */
2350 cfa_temp.reg = cfa.reg;
2351 cfa_temp.offset = cfa.offset;
2354 /* Rule 5 */
2355 else if (REG_P (XEXP (src, 0))
2356 && REGNO (XEXP (src, 0)) == cfa_temp.reg
2357 && XEXP (src, 1) == stack_pointer_rtx)
2359 /* Setting a scratch register that we will use instead
2360 of SP for saving registers to the stack. */
2361 gcc_assert (cfa.reg == STACK_POINTER_REGNUM);
2362 cfa_store.reg = REGNO (dest);
2363 cfa_store.offset = cfa.offset - cfa_temp.offset;
2366 /* Rule 9 */
2367 else if (GET_CODE (src) == LO_SUM
2368 && CONST_INT_P (XEXP (src, 1)))
2370 cfa_temp.reg = REGNO (dest);
2371 cfa_temp.offset = INTVAL (XEXP (src, 1));
2373 else
2374 gcc_unreachable ();
2376 break;
2378 /* Rule 6 */
2379 case CONST_INT:
2380 cfa_temp.reg = REGNO (dest);
2381 cfa_temp.offset = INTVAL (src);
2382 break;
2384 /* Rule 7 */
2385 case IOR:
2386 gcc_assert (REG_P (XEXP (src, 0))
2387 && (unsigned) REGNO (XEXP (src, 0)) == cfa_temp.reg
2388 && CONST_INT_P (XEXP (src, 1)));
2390 if ((unsigned) REGNO (dest) != cfa_temp.reg)
2391 cfa_temp.reg = REGNO (dest);
2392 cfa_temp.offset |= INTVAL (XEXP (src, 1));
2393 break;
2395 /* Skip over HIGH, assuming it will be followed by a LO_SUM,
2396 which will fill in all of the bits. */
2397 /* Rule 8 */
2398 case HIGH:
2399 break;
2401 /* Rule 15 */
2402 case UNSPEC:
2403 case UNSPEC_VOLATILE:
2404 gcc_assert (targetm.dwarf_handle_frame_unspec);
2405 targetm.dwarf_handle_frame_unspec (label, expr, XINT (src, 1));
2406 return;
2408 /* Rule 16 */
2409 case AND:
2410 /* If this AND operation happens on stack pointer in prologue,
2411 we assume the stack is realigned and we extract the
2412 alignment. */
2413 if (fde && XEXP (src, 0) == stack_pointer_rtx)
2415 gcc_assert (cfa_store.reg == REGNO (XEXP (src, 0)));
2416 fde->stack_realign = 1;
2417 fde->stack_realignment = INTVAL (XEXP (src, 1));
2418 cfa_store.offset = 0;
2420 if (cfa.reg != STACK_POINTER_REGNUM
2421 && cfa.reg != HARD_FRAME_POINTER_REGNUM)
2422 fde->drap_reg = cfa.reg;
2424 return;
2426 default:
2427 gcc_unreachable ();
2430 def_cfa_1 (label, &cfa);
2431 break;
2433 case MEM:
2435 /* Saving a register to the stack. Make sure dest is relative to the
2436 CFA register. */
2437 switch (GET_CODE (XEXP (dest, 0)))
2439 /* Rule 10 */
2440 /* With a push. */
2441 case PRE_MODIFY:
2442 /* We can't handle variable size modifications. */
2443 gcc_assert (GET_CODE (XEXP (XEXP (XEXP (dest, 0), 1), 1))
2444 == CONST_INT);
2445 offset = -INTVAL (XEXP (XEXP (XEXP (dest, 0), 1), 1));
2447 gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
2448 && cfa_store.reg == STACK_POINTER_REGNUM);
2450 cfa_store.offset += offset;
2451 if (cfa.reg == STACK_POINTER_REGNUM)
2452 cfa.offset = cfa_store.offset;
2454 offset = -cfa_store.offset;
2455 break;
2457 /* Rule 11 */
2458 case PRE_INC:
2459 case PRE_DEC:
2460 offset = GET_MODE_SIZE (GET_MODE (dest));
2461 if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
2462 offset = -offset;
2464 gcc_assert ((REGNO (XEXP (XEXP (dest, 0), 0))
2465 == STACK_POINTER_REGNUM)
2466 && cfa_store.reg == STACK_POINTER_REGNUM);
2468 cfa_store.offset += offset;
2470 /* Rule 18: If stack is aligned, we will use FP as a
2471 reference to represent the address of the stored
2472 regiser. */
2473 if (fde
2474 && fde->stack_realign
2475 && src == hard_frame_pointer_rtx)
2477 gcc_assert (cfa.reg != HARD_FRAME_POINTER_REGNUM);
2478 cfa_store.offset = 0;
2481 if (cfa.reg == STACK_POINTER_REGNUM)
2482 cfa.offset = cfa_store.offset;
2484 offset = -cfa_store.offset;
2485 break;
2487 /* Rule 12 */
2488 /* With an offset. */
2489 case PLUS:
2490 case MINUS:
2491 case LO_SUM:
2493 int regno;
2495 gcc_assert (CONST_INT_P (XEXP (XEXP (dest, 0), 1))
2496 && REG_P (XEXP (XEXP (dest, 0), 0)));
2497 offset = INTVAL (XEXP (XEXP (dest, 0), 1));
2498 if (GET_CODE (XEXP (dest, 0)) == MINUS)
2499 offset = -offset;
2501 regno = REGNO (XEXP (XEXP (dest, 0), 0));
2503 if (cfa_store.reg == (unsigned) regno)
2504 offset -= cfa_store.offset;
2505 else
2507 gcc_assert (cfa_temp.reg == (unsigned) regno);
2508 offset -= cfa_temp.offset;
2511 break;
2513 /* Rule 13 */
2514 /* Without an offset. */
2515 case REG:
2517 int regno = REGNO (XEXP (dest, 0));
2519 if (cfa_store.reg == (unsigned) regno)
2520 offset = -cfa_store.offset;
2521 else
2523 gcc_assert (cfa_temp.reg == (unsigned) regno);
2524 offset = -cfa_temp.offset;
2527 break;
2529 /* Rule 14 */
2530 case POST_INC:
2531 gcc_assert (cfa_temp.reg
2532 == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)));
2533 offset = -cfa_temp.offset;
2534 cfa_temp.offset -= GET_MODE_SIZE (GET_MODE (dest));
2535 break;
2537 default:
2538 gcc_unreachable ();
2541 /* Rule 17 */
2542 /* If the source operand of this MEM operation is not a
2543 register, basically the source is return address. Here
2544 we only care how much stack grew and we don't save it. */
2545 if (!REG_P (src))
2546 break;
2548 if (REGNO (src) != STACK_POINTER_REGNUM
2549 && REGNO (src) != HARD_FRAME_POINTER_REGNUM
2550 && (unsigned) REGNO (src) == cfa.reg)
2552 /* We're storing the current CFA reg into the stack. */
2554 if (cfa.offset == 0)
2556 /* Rule 19 */
2557 /* If stack is aligned, putting CFA reg into stack means
2558 we can no longer use reg + offset to represent CFA.
2559 Here we use DW_CFA_def_cfa_expression instead. The
2560 result of this expression equals to the original CFA
2561 value. */
2562 if (fde
2563 && fde->stack_realign
2564 && cfa.indirect == 0
2565 && cfa.reg != HARD_FRAME_POINTER_REGNUM)
2567 dw_cfa_location cfa_exp;
2569 gcc_assert (fde->drap_reg == cfa.reg);
2571 cfa_exp.indirect = 1;
2572 cfa_exp.reg = HARD_FRAME_POINTER_REGNUM;
2573 cfa_exp.base_offset = offset;
2574 cfa_exp.offset = 0;
2576 fde->drap_reg_saved = 1;
2578 def_cfa_1 (label, &cfa_exp);
2579 break;
2582 /* If the source register is exactly the CFA, assume
2583 we're saving SP like any other register; this happens
2584 on the ARM. */
2585 def_cfa_1 (label, &cfa);
2586 queue_reg_save (label, stack_pointer_rtx, NULL_RTX, offset);
2587 break;
2589 else
2591 /* Otherwise, we'll need to look in the stack to
2592 calculate the CFA. */
2593 rtx x = XEXP (dest, 0);
2595 if (!REG_P (x))
2596 x = XEXP (x, 0);
2597 gcc_assert (REG_P (x));
2599 cfa.reg = REGNO (x);
2600 cfa.base_offset = offset;
2601 cfa.indirect = 1;
2602 def_cfa_1 (label, &cfa);
2603 break;
2607 def_cfa_1 (label, &cfa);
2609 span = targetm.dwarf_register_span (src);
2611 if (!span)
2612 queue_reg_save (label, src, NULL_RTX, offset);
2613 else
2615 /* We have a PARALLEL describing where the contents of SRC
2616 live. Queue register saves for each piece of the
2617 PARALLEL. */
2618 int par_index;
2619 int limit;
2620 HOST_WIDE_INT span_offset = offset;
2622 gcc_assert (GET_CODE (span) == PARALLEL);
2624 limit = XVECLEN (span, 0);
2625 for (par_index = 0; par_index < limit; par_index++)
2627 rtx elem = XVECEXP (span, 0, par_index);
2629 queue_reg_save (label, elem, NULL_RTX, span_offset);
2630 span_offset += GET_MODE_SIZE (GET_MODE (elem));
2634 break;
2636 default:
2637 gcc_unreachable ();
2641 /* Record call frame debugging information for INSN, which either
2642 sets SP or FP (adjusting how we calculate the frame address) or saves a
2643 register to the stack. If INSN is NULL_RTX, initialize our state.
2645 If AFTER_P is false, we're being called before the insn is emitted,
2646 otherwise after. Call instructions get invoked twice. */
2648 void
2649 dwarf2out_frame_debug (rtx insn, bool after_p)
2651 const char *label;
2652 rtx note, n;
2653 bool handled_one = false;
2655 if (insn == NULL_RTX)
2657 size_t i;
2659 /* Flush any queued register saves. */
2660 flush_queued_reg_saves ();
2662 /* Set up state for generating call frame debug info. */
2663 lookup_cfa (&cfa);
2664 gcc_assert (cfa.reg
2665 == (unsigned long)DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM));
2667 cfa.reg = STACK_POINTER_REGNUM;
2668 cfa_store = cfa;
2669 cfa_temp.reg = -1;
2670 cfa_temp.offset = 0;
2672 for (i = 0; i < num_regs_saved_in_regs; i++)
2674 regs_saved_in_regs[i].orig_reg = NULL_RTX;
2675 regs_saved_in_regs[i].saved_in_reg = NULL_RTX;
2677 num_regs_saved_in_regs = 0;
2679 if (barrier_args_size)
2681 XDELETEVEC (barrier_args_size);
2682 barrier_args_size = NULL;
2684 return;
2687 if (!NONJUMP_INSN_P (insn) || clobbers_queued_reg_save (insn))
2688 flush_queued_reg_saves ();
2690 if (!RTX_FRAME_RELATED_P (insn))
2692 /* ??? This should be done unconditionally since stack adjustments
2693 matter if the stack pointer is not the CFA register anymore but
2694 is still used to save registers. */
2695 if (!ACCUMULATE_OUTGOING_ARGS)
2696 dwarf2out_notice_stack_adjust (insn, after_p);
2697 return;
2700 label = dwarf2out_cfi_label (false);
2702 for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
2703 switch (REG_NOTE_KIND (note))
2705 case REG_FRAME_RELATED_EXPR:
2706 insn = XEXP (note, 0);
2707 goto found;
2709 case REG_CFA_DEF_CFA:
2710 dwarf2out_frame_debug_def_cfa (XEXP (note, 0), label);
2711 handled_one = true;
2712 break;
2714 case REG_CFA_ADJUST_CFA:
2715 n = XEXP (note, 0);
2716 if (n == NULL)
2718 n = PATTERN (insn);
2719 if (GET_CODE (n) == PARALLEL)
2720 n = XVECEXP (n, 0, 0);
2722 dwarf2out_frame_debug_adjust_cfa (n, label);
2723 handled_one = true;
2724 break;
2726 case REG_CFA_OFFSET:
2727 n = XEXP (note, 0);
2728 if (n == NULL)
2729 n = single_set (insn);
2730 dwarf2out_frame_debug_cfa_offset (n, label);
2731 handled_one = true;
2732 break;
2734 case REG_CFA_REGISTER:
2735 n = XEXP (note, 0);
2736 if (n == NULL)
2738 n = PATTERN (insn);
2739 if (GET_CODE (n) == PARALLEL)
2740 n = XVECEXP (n, 0, 0);
2742 dwarf2out_frame_debug_cfa_register (n, label);
2743 handled_one = true;
2744 break;
2746 case REG_CFA_RESTORE:
2747 n = XEXP (note, 0);
2748 if (n == NULL)
2750 n = PATTERN (insn);
2751 if (GET_CODE (n) == PARALLEL)
2752 n = XVECEXP (n, 0, 0);
2753 n = XEXP (n, 0);
2755 dwarf2out_frame_debug_cfa_restore (n, label);
2756 handled_one = true;
2757 break;
2759 case REG_CFA_SET_VDRAP:
2760 n = XEXP (note, 0);
2761 if (REG_P (n))
2763 dw_fde_ref fde = current_fde ();
2764 if (fde)
2766 gcc_assert (fde->vdrap_reg == INVALID_REGNUM);
2767 if (REG_P (n))
2768 fde->vdrap_reg = REGNO (n);
2771 handled_one = true;
2772 break;
2774 default:
2775 break;
2777 if (handled_one)
2778 return;
2780 insn = PATTERN (insn);
2781 found:
2782 dwarf2out_frame_debug_expr (insn, label);
2785 /* Determine if we need to save and restore CFI information around this
2786 epilogue. If SIBCALL is true, then this is a sibcall epilogue. If
2787 we do need to save/restore, then emit the save now, and insert a
2788 NOTE_INSN_CFA_RESTORE_STATE at the appropriate place in the stream. */
2790 void
2791 dwarf2out_begin_epilogue (rtx insn)
2793 bool saw_frp = false;
2794 rtx i;
2796 /* Scan forward to the return insn, noticing if there are possible
2797 frame related insns. */
2798 for (i = NEXT_INSN (insn); i ; i = NEXT_INSN (i))
2800 if (!INSN_P (i))
2801 continue;
2803 /* Look for both regular and sibcalls to end the block. */
2804 if (returnjump_p (i))
2805 break;
2806 if (CALL_P (i) && SIBLING_CALL_P (i))
2807 break;
2809 if (GET_CODE (PATTERN (i)) == SEQUENCE)
2811 int idx;
2812 rtx seq = PATTERN (i);
2814 if (returnjump_p (XVECEXP (seq, 0, 0)))
2815 break;
2816 if (CALL_P (XVECEXP (seq, 0, 0))
2817 && SIBLING_CALL_P (XVECEXP (seq, 0, 0)))
2818 break;
2820 for (idx = 0; idx < XVECLEN (seq, 0); idx++)
2821 if (RTX_FRAME_RELATED_P (XVECEXP (seq, 0, idx)))
2822 saw_frp = true;
2825 if (RTX_FRAME_RELATED_P (i))
2826 saw_frp = true;
2829 /* If the port doesn't emit epilogue unwind info, we don't need a
2830 save/restore pair. */
2831 if (!saw_frp)
2832 return;
2834 /* Otherwise, search forward to see if the return insn was the last
2835 basic block of the function. If so, we don't need save/restore. */
2836 gcc_assert (i != NULL);
2837 i = next_real_insn (i);
2838 if (i == NULL)
2839 return;
2841 /* Insert the restore before that next real insn in the stream, and before
2842 a potential NOTE_INSN_EPILOGUE_BEG -- we do need these notes to be
2843 properly nested. This should be after any label or alignment. This
2844 will be pushed into the CFI stream by the function below. */
2845 while (1)
2847 rtx p = PREV_INSN (i);
2848 if (!NOTE_P (p))
2849 break;
2850 if (NOTE_KIND (p) == NOTE_INSN_BASIC_BLOCK)
2851 break;
2852 i = p;
2854 emit_note_before (NOTE_INSN_CFA_RESTORE_STATE, i);
2856 emit_cfa_remember = true;
2858 /* And emulate the state save. */
2859 gcc_assert (!cfa_remember.in_use);
2860 cfa_remember = cfa;
2861 cfa_remember.in_use = 1;
2864 /* A "subroutine" of dwarf2out_begin_epilogue. Emit the restore required. */
2866 void
2867 dwarf2out_frame_debug_restore_state (void)
2869 dw_cfi_ref cfi = new_cfi ();
2870 const char *label = dwarf2out_cfi_label (false);
2872 cfi->dw_cfi_opc = DW_CFA_restore_state;
2873 add_fde_cfi (label, cfi);
2875 gcc_assert (cfa_remember.in_use);
2876 cfa = cfa_remember;
2877 cfa_remember.in_use = 0;
2880 #endif
2882 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used. */
2883 static enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
2884 (enum dwarf_call_frame_info cfi);
2886 static enum dw_cfi_oprnd_type
2887 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi)
2889 switch (cfi)
2891 case DW_CFA_nop:
2892 case DW_CFA_GNU_window_save:
2893 case DW_CFA_remember_state:
2894 case DW_CFA_restore_state:
2895 return dw_cfi_oprnd_unused;
2897 case DW_CFA_set_loc:
2898 case DW_CFA_advance_loc1:
2899 case DW_CFA_advance_loc2:
2900 case DW_CFA_advance_loc4:
2901 case DW_CFA_MIPS_advance_loc8:
2902 return dw_cfi_oprnd_addr;
2904 case DW_CFA_offset:
2905 case DW_CFA_offset_extended:
2906 case DW_CFA_def_cfa:
2907 case DW_CFA_offset_extended_sf:
2908 case DW_CFA_def_cfa_sf:
2909 case DW_CFA_restore:
2910 case DW_CFA_restore_extended:
2911 case DW_CFA_undefined:
2912 case DW_CFA_same_value:
2913 case DW_CFA_def_cfa_register:
2914 case DW_CFA_register:
2915 case DW_CFA_expression:
2916 return dw_cfi_oprnd_reg_num;
2918 case DW_CFA_def_cfa_offset:
2919 case DW_CFA_GNU_args_size:
2920 case DW_CFA_def_cfa_offset_sf:
2921 return dw_cfi_oprnd_offset;
2923 case DW_CFA_def_cfa_expression:
2924 return dw_cfi_oprnd_loc;
2926 default:
2927 gcc_unreachable ();
2931 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used. */
2932 static enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
2933 (enum dwarf_call_frame_info cfi);
2935 static enum dw_cfi_oprnd_type
2936 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi)
2938 switch (cfi)
2940 case DW_CFA_def_cfa:
2941 case DW_CFA_def_cfa_sf:
2942 case DW_CFA_offset:
2943 case DW_CFA_offset_extended_sf:
2944 case DW_CFA_offset_extended:
2945 return dw_cfi_oprnd_offset;
2947 case DW_CFA_register:
2948 return dw_cfi_oprnd_reg_num;
2950 case DW_CFA_expression:
2951 return dw_cfi_oprnd_loc;
2953 default:
2954 return dw_cfi_oprnd_unused;
2958 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
2960 /* Switch [BACK] to eh_frame_section. If we don't have an eh_frame_section,
2961 switch to the data section instead, and write out a synthetic start label
2962 for collect2 the first time around. */
2964 static void
2965 switch_to_eh_frame_section (bool back)
2967 tree label;
2969 #ifdef EH_FRAME_SECTION_NAME
2970 if (eh_frame_section == 0)
2972 int flags;
2974 if (EH_TABLES_CAN_BE_READ_ONLY)
2976 int fde_encoding;
2977 int per_encoding;
2978 int lsda_encoding;
2980 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
2981 /*global=*/0);
2982 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
2983 /*global=*/1);
2984 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
2985 /*global=*/0);
2986 flags = ((! flag_pic
2987 || ((fde_encoding & 0x70) != DW_EH_PE_absptr
2988 && (fde_encoding & 0x70) != DW_EH_PE_aligned
2989 && (per_encoding & 0x70) != DW_EH_PE_absptr
2990 && (per_encoding & 0x70) != DW_EH_PE_aligned
2991 && (lsda_encoding & 0x70) != DW_EH_PE_absptr
2992 && (lsda_encoding & 0x70) != DW_EH_PE_aligned))
2993 ? 0 : SECTION_WRITE);
2995 else
2996 flags = SECTION_WRITE;
2997 eh_frame_section = get_section (EH_FRAME_SECTION_NAME, flags, NULL);
2999 #endif
3001 if (eh_frame_section)
3002 switch_to_section (eh_frame_section);
3003 else
3005 /* We have no special eh_frame section. Put the information in
3006 the data section and emit special labels to guide collect2. */
3007 switch_to_section (data_section);
3009 if (!back)
3011 label = get_file_function_name ("F");
3012 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
3013 targetm.asm_out.globalize_label (asm_out_file,
3014 IDENTIFIER_POINTER (label));
3015 ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
3020 /* Switch [BACK] to the eh or debug frame table section, depending on
3021 FOR_EH. */
3023 static void
3024 switch_to_frame_table_section (int for_eh, bool back)
3026 if (for_eh)
3027 switch_to_eh_frame_section (back);
3028 else
3030 if (!debug_frame_section)
3031 debug_frame_section = get_section (DEBUG_FRAME_SECTION,
3032 SECTION_DEBUG, NULL);
3033 switch_to_section (debug_frame_section);
3037 /* Output a Call Frame Information opcode and its operand(s). */
3039 static void
3040 output_cfi (dw_cfi_ref cfi, dw_fde_ref fde, int for_eh)
3042 unsigned long r;
3043 HOST_WIDE_INT off;
3045 if (cfi->dw_cfi_opc == DW_CFA_advance_loc)
3046 dw2_asm_output_data (1, (cfi->dw_cfi_opc
3047 | (cfi->dw_cfi_oprnd1.dw_cfi_offset & 0x3f)),
3048 "DW_CFA_advance_loc " HOST_WIDE_INT_PRINT_HEX,
3049 ((unsigned HOST_WIDE_INT)
3050 cfi->dw_cfi_oprnd1.dw_cfi_offset));
3051 else if (cfi->dw_cfi_opc == DW_CFA_offset)
3053 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3054 dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
3055 "DW_CFA_offset, column 0x%lx", r);
3056 off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3057 dw2_asm_output_data_uleb128 (off, NULL);
3059 else if (cfi->dw_cfi_opc == DW_CFA_restore)
3061 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3062 dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
3063 "DW_CFA_restore, column 0x%lx", r);
3065 else
3067 dw2_asm_output_data (1, cfi->dw_cfi_opc,
3068 "%s", dwarf_cfi_name (cfi->dw_cfi_opc));
3070 switch (cfi->dw_cfi_opc)
3072 case DW_CFA_set_loc:
3073 if (for_eh)
3074 dw2_asm_output_encoded_addr_rtx (
3075 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
3076 gen_rtx_SYMBOL_REF (Pmode, cfi->dw_cfi_oprnd1.dw_cfi_addr),
3077 false, NULL);
3078 else
3079 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
3080 cfi->dw_cfi_oprnd1.dw_cfi_addr, NULL);
3081 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3082 break;
3084 case DW_CFA_advance_loc1:
3085 dw2_asm_output_delta (1, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3086 fde->dw_fde_current_label, NULL);
3087 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3088 break;
3090 case DW_CFA_advance_loc2:
3091 dw2_asm_output_delta (2, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3092 fde->dw_fde_current_label, NULL);
3093 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3094 break;
3096 case DW_CFA_advance_loc4:
3097 dw2_asm_output_delta (4, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3098 fde->dw_fde_current_label, NULL);
3099 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3100 break;
3102 case DW_CFA_MIPS_advance_loc8:
3103 dw2_asm_output_delta (8, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3104 fde->dw_fde_current_label, NULL);
3105 fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3106 break;
3108 case DW_CFA_offset_extended:
3109 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3110 dw2_asm_output_data_uleb128 (r, NULL);
3111 off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3112 dw2_asm_output_data_uleb128 (off, NULL);
3113 break;
3115 case DW_CFA_def_cfa:
3116 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3117 dw2_asm_output_data_uleb128 (r, NULL);
3118 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
3119 break;
3121 case DW_CFA_offset_extended_sf:
3122 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3123 dw2_asm_output_data_uleb128 (r, NULL);
3124 off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3125 dw2_asm_output_data_sleb128 (off, NULL);
3126 break;
3128 case DW_CFA_def_cfa_sf:
3129 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3130 dw2_asm_output_data_uleb128 (r, NULL);
3131 off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3132 dw2_asm_output_data_sleb128 (off, NULL);
3133 break;
3135 case DW_CFA_restore_extended:
3136 case DW_CFA_undefined:
3137 case DW_CFA_same_value:
3138 case DW_CFA_def_cfa_register:
3139 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3140 dw2_asm_output_data_uleb128 (r, NULL);
3141 break;
3143 case DW_CFA_register:
3144 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3145 dw2_asm_output_data_uleb128 (r, NULL);
3146 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, for_eh);
3147 dw2_asm_output_data_uleb128 (r, NULL);
3148 break;
3150 case DW_CFA_def_cfa_offset:
3151 case DW_CFA_GNU_args_size:
3152 dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
3153 break;
3155 case DW_CFA_def_cfa_offset_sf:
3156 off = div_data_align (cfi->dw_cfi_oprnd1.dw_cfi_offset);
3157 dw2_asm_output_data_sleb128 (off, NULL);
3158 break;
3160 case DW_CFA_GNU_window_save:
3161 break;
3163 case DW_CFA_def_cfa_expression:
3164 case DW_CFA_expression:
3165 output_cfa_loc (cfi);
3166 break;
3168 case DW_CFA_GNU_negative_offset_extended:
3169 /* Obsoleted by DW_CFA_offset_extended_sf. */
3170 gcc_unreachable ();
3172 default:
3173 break;
3178 /* Similar, but do it via assembler directives instead. */
3180 static void
3181 output_cfi_directive (dw_cfi_ref cfi)
3183 unsigned long r, r2;
3185 switch (cfi->dw_cfi_opc)
3187 case DW_CFA_advance_loc:
3188 case DW_CFA_advance_loc1:
3189 case DW_CFA_advance_loc2:
3190 case DW_CFA_advance_loc4:
3191 case DW_CFA_MIPS_advance_loc8:
3192 case DW_CFA_set_loc:
3193 /* Should only be created by add_fde_cfi in a code path not
3194 followed when emitting via directives. The assembler is
3195 going to take care of this for us. */
3196 gcc_unreachable ();
3198 case DW_CFA_offset:
3199 case DW_CFA_offset_extended:
3200 case DW_CFA_offset_extended_sf:
3201 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3202 fprintf (asm_out_file, "\t.cfi_offset %lu, "HOST_WIDE_INT_PRINT_DEC"\n",
3203 r, cfi->dw_cfi_oprnd2.dw_cfi_offset);
3204 break;
3206 case DW_CFA_restore:
3207 case DW_CFA_restore_extended:
3208 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3209 fprintf (asm_out_file, "\t.cfi_restore %lu\n", r);
3210 break;
3212 case DW_CFA_undefined:
3213 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3214 fprintf (asm_out_file, "\t.cfi_undefined %lu\n", r);
3215 break;
3217 case DW_CFA_same_value:
3218 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3219 fprintf (asm_out_file, "\t.cfi_same_value %lu\n", r);
3220 break;
3222 case DW_CFA_def_cfa:
3223 case DW_CFA_def_cfa_sf:
3224 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3225 fprintf (asm_out_file, "\t.cfi_def_cfa %lu, "HOST_WIDE_INT_PRINT_DEC"\n",
3226 r, cfi->dw_cfi_oprnd2.dw_cfi_offset);
3227 break;
3229 case DW_CFA_def_cfa_register:
3230 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3231 fprintf (asm_out_file, "\t.cfi_def_cfa_register %lu\n", r);
3232 break;
3234 case DW_CFA_register:
3235 r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3236 r2 = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, 1);
3237 fprintf (asm_out_file, "\t.cfi_register %lu, %lu\n", r, r2);
3238 break;
3240 case DW_CFA_def_cfa_offset:
3241 case DW_CFA_def_cfa_offset_sf:
3242 fprintf (asm_out_file, "\t.cfi_def_cfa_offset "
3243 HOST_WIDE_INT_PRINT_DEC"\n",
3244 cfi->dw_cfi_oprnd1.dw_cfi_offset);
3245 break;
3247 case DW_CFA_remember_state:
3248 fprintf (asm_out_file, "\t.cfi_remember_state\n");
3249 break;
3250 case DW_CFA_restore_state:
3251 fprintf (asm_out_file, "\t.cfi_restore_state\n");
3252 break;
3254 case DW_CFA_GNU_args_size:
3255 fprintf (asm_out_file, "\t.cfi_escape 0x%x,", DW_CFA_GNU_args_size);
3256 dw2_asm_output_data_uleb128_raw (cfi->dw_cfi_oprnd1.dw_cfi_offset);
3257 if (flag_debug_asm)
3258 fprintf (asm_out_file, "\t%s args_size "HOST_WIDE_INT_PRINT_DEC,
3259 ASM_COMMENT_START, cfi->dw_cfi_oprnd1.dw_cfi_offset);
3260 fputc ('\n', asm_out_file);
3261 break;
3263 case DW_CFA_GNU_window_save:
3264 fprintf (asm_out_file, "\t.cfi_window_save\n");
3265 break;
3267 case DW_CFA_def_cfa_expression:
3268 case DW_CFA_expression:
3269 fprintf (asm_out_file, "\t.cfi_escape 0x%x,", cfi->dw_cfi_opc);
3270 output_cfa_loc_raw (cfi);
3271 fputc ('\n', asm_out_file);
3272 break;
3274 default:
3275 gcc_unreachable ();
3279 DEF_VEC_P (dw_cfi_ref);
3280 DEF_VEC_ALLOC_P (dw_cfi_ref, heap);
3282 /* Output CFIs to bring current FDE to the same state as after executing
3283 CFIs in CFI chain. DO_CFI_ASM is true if .cfi_* directives shall
3284 be emitted, false otherwise. If it is false, FDE and FOR_EH are the
3285 other arguments to pass to output_cfi. */
3287 static void
3288 output_cfis (dw_cfi_ref cfi, bool do_cfi_asm, dw_fde_ref fde, bool for_eh)
3290 struct dw_cfi_struct cfi_buf;
3291 dw_cfi_ref cfi2;
3292 dw_cfi_ref cfi_args_size = NULL, cfi_cfa = NULL, cfi_cfa_offset = NULL;
3293 VEC (dw_cfi_ref, heap) *regs = VEC_alloc (dw_cfi_ref, heap, 32);
3294 unsigned int len, idx;
3296 for (;; cfi = cfi->dw_cfi_next)
3297 switch (cfi ? cfi->dw_cfi_opc : DW_CFA_nop)
3299 case DW_CFA_advance_loc:
3300 case DW_CFA_advance_loc1:
3301 case DW_CFA_advance_loc2:
3302 case DW_CFA_advance_loc4:
3303 case DW_CFA_MIPS_advance_loc8:
3304 case DW_CFA_set_loc:
3305 /* All advances should be ignored. */
3306 break;
3307 case DW_CFA_remember_state:
3309 dw_cfi_ref args_size = cfi_args_size;
3311 /* Skip everything between .cfi_remember_state and
3312 .cfi_restore_state. */
3313 for (cfi2 = cfi->dw_cfi_next; cfi2; cfi2 = cfi2->dw_cfi_next)
3314 if (cfi2->dw_cfi_opc == DW_CFA_restore_state)
3315 break;
3316 else if (cfi2->dw_cfi_opc == DW_CFA_GNU_args_size)
3317 args_size = cfi2;
3318 else
3319 gcc_assert (cfi2->dw_cfi_opc != DW_CFA_remember_state);
3321 if (cfi2 == NULL)
3322 goto flush_all;
3323 else
3325 cfi = cfi2;
3326 cfi_args_size = args_size;
3328 break;
3330 case DW_CFA_GNU_args_size:
3331 cfi_args_size = cfi;
3332 break;
3333 case DW_CFA_GNU_window_save:
3334 goto flush_all;
3335 case DW_CFA_offset:
3336 case DW_CFA_offset_extended:
3337 case DW_CFA_offset_extended_sf:
3338 case DW_CFA_restore:
3339 case DW_CFA_restore_extended:
3340 case DW_CFA_undefined:
3341 case DW_CFA_same_value:
3342 case DW_CFA_register:
3343 case DW_CFA_val_offset:
3344 case DW_CFA_val_offset_sf:
3345 case DW_CFA_expression:
3346 case DW_CFA_val_expression:
3347 case DW_CFA_GNU_negative_offset_extended:
3348 if (VEC_length (dw_cfi_ref, regs) <= cfi->dw_cfi_oprnd1.dw_cfi_reg_num)
3349 VEC_safe_grow_cleared (dw_cfi_ref, heap, regs,
3350 cfi->dw_cfi_oprnd1.dw_cfi_reg_num + 1);
3351 VEC_replace (dw_cfi_ref, regs, cfi->dw_cfi_oprnd1.dw_cfi_reg_num, cfi);
3352 break;
3353 case DW_CFA_def_cfa:
3354 case DW_CFA_def_cfa_sf:
3355 case DW_CFA_def_cfa_expression:
3356 cfi_cfa = cfi;
3357 cfi_cfa_offset = cfi;
3358 break;
3359 case DW_CFA_def_cfa_register:
3360 cfi_cfa = cfi;
3361 break;
3362 case DW_CFA_def_cfa_offset:
3363 case DW_CFA_def_cfa_offset_sf:
3364 cfi_cfa_offset = cfi;
3365 break;
3366 case DW_CFA_nop:
3367 gcc_assert (cfi == NULL);
3368 flush_all:
3369 len = VEC_length (dw_cfi_ref, regs);
3370 for (idx = 0; idx < len; idx++)
3372 cfi2 = VEC_replace (dw_cfi_ref, regs, idx, NULL);
3373 if (cfi2 != NULL
3374 && cfi2->dw_cfi_opc != DW_CFA_restore
3375 && cfi2->dw_cfi_opc != DW_CFA_restore_extended)
3377 if (do_cfi_asm)
3378 output_cfi_directive (cfi2);
3379 else
3380 output_cfi (cfi2, fde, for_eh);
3383 if (cfi_cfa && cfi_cfa_offset && cfi_cfa_offset != cfi_cfa)
3385 gcc_assert (cfi_cfa->dw_cfi_opc != DW_CFA_def_cfa_expression);
3386 cfi_buf = *cfi_cfa;
3387 switch (cfi_cfa_offset->dw_cfi_opc)
3389 case DW_CFA_def_cfa_offset:
3390 cfi_buf.dw_cfi_opc = DW_CFA_def_cfa;
3391 cfi_buf.dw_cfi_oprnd2 = cfi_cfa_offset->dw_cfi_oprnd1;
3392 break;
3393 case DW_CFA_def_cfa_offset_sf:
3394 cfi_buf.dw_cfi_opc = DW_CFA_def_cfa_sf;
3395 cfi_buf.dw_cfi_oprnd2 = cfi_cfa_offset->dw_cfi_oprnd1;
3396 break;
3397 case DW_CFA_def_cfa:
3398 case DW_CFA_def_cfa_sf:
3399 cfi_buf.dw_cfi_opc = cfi_cfa_offset->dw_cfi_opc;
3400 cfi_buf.dw_cfi_oprnd2 = cfi_cfa_offset->dw_cfi_oprnd2;
3401 break;
3402 default:
3403 gcc_unreachable ();
3405 cfi_cfa = &cfi_buf;
3407 else if (cfi_cfa_offset)
3408 cfi_cfa = cfi_cfa_offset;
3409 if (cfi_cfa)
3411 if (do_cfi_asm)
3412 output_cfi_directive (cfi_cfa);
3413 else
3414 output_cfi (cfi_cfa, fde, for_eh);
3416 cfi_cfa = NULL;
3417 cfi_cfa_offset = NULL;
3418 if (cfi_args_size
3419 && cfi_args_size->dw_cfi_oprnd1.dw_cfi_offset)
3421 if (do_cfi_asm)
3422 output_cfi_directive (cfi_args_size);
3423 else
3424 output_cfi (cfi_args_size, fde, for_eh);
3426 cfi_args_size = NULL;
3427 if (cfi == NULL)
3429 VEC_free (dw_cfi_ref, heap, regs);
3430 return;
3432 else if (do_cfi_asm)
3433 output_cfi_directive (cfi);
3434 else
3435 output_cfi (cfi, fde, for_eh);
3436 break;
3437 default:
3438 gcc_unreachable ();
3442 /* Output one FDE. */
3444 static void
3445 output_fde (dw_fde_ref fde, bool for_eh, bool second,
3446 char *section_start_label, int fde_encoding, char *augmentation,
3447 bool any_lsda_needed, int lsda_encoding)
3449 const char *begin, *end;
3450 static unsigned int j;
3451 char l1[20], l2[20];
3452 dw_cfi_ref cfi;
3454 targetm.asm_out.unwind_label (asm_out_file, fde->decl, for_eh,
3455 /* empty */ 0);
3456 targetm.asm_out.internal_label (asm_out_file, FDE_LABEL,
3457 for_eh + j);
3458 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + j);
3459 ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + j);
3460 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4 && !for_eh)
3461 dw2_asm_output_data (4, 0xffffffff, "Initial length escape value"
3462 " indicating 64-bit DWARF extension");
3463 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
3464 "FDE Length");
3465 ASM_OUTPUT_LABEL (asm_out_file, l1);
3467 if (for_eh)
3468 dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
3469 else
3470 dw2_asm_output_offset (DWARF_OFFSET_SIZE, section_start_label,
3471 debug_frame_section, "FDE CIE offset");
3473 if (!fde->dw_fde_switched_sections)
3475 begin = fde->dw_fde_begin;
3476 end = fde->dw_fde_end;
3478 else
3480 /* For the first section, prefer dw_fde_begin over
3481 dw_fde_{hot,cold}_section_label, as the latter
3482 might be separated from the real start of the
3483 function by alignment padding. */
3484 if (!second)
3485 begin = fde->dw_fde_begin;
3486 else if (fde->dw_fde_switched_cold_to_hot)
3487 begin = fde->dw_fde_hot_section_label;
3488 else
3489 begin = fde->dw_fde_unlikely_section_label;
3490 if (second ^ fde->dw_fde_switched_cold_to_hot)
3491 end = fde->dw_fde_unlikely_section_end_label;
3492 else
3493 end = fde->dw_fde_hot_section_end_label;
3496 if (for_eh)
3498 rtx sym_ref = gen_rtx_SYMBOL_REF (Pmode, begin);
3499 SYMBOL_REF_FLAGS (sym_ref) |= SYMBOL_FLAG_LOCAL;
3500 dw2_asm_output_encoded_addr_rtx (fde_encoding, sym_ref, false,
3501 "FDE initial location");
3502 dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
3503 end, begin, "FDE address range");
3505 else
3507 dw2_asm_output_addr (DWARF2_ADDR_SIZE, begin, "FDE initial location");
3508 dw2_asm_output_delta (DWARF2_ADDR_SIZE, end, begin, "FDE address range");
3511 if (augmentation[0])
3513 if (any_lsda_needed)
3515 int size = size_of_encoded_value (lsda_encoding);
3517 if (lsda_encoding == DW_EH_PE_aligned)
3519 int offset = ( 4 /* Length */
3520 + 4 /* CIE offset */
3521 + 2 * size_of_encoded_value (fde_encoding)
3522 + 1 /* Augmentation size */ );
3523 int pad = -offset & (PTR_SIZE - 1);
3525 size += pad;
3526 gcc_assert (size_of_uleb128 (size) == 1);
3529 dw2_asm_output_data_uleb128 (size, "Augmentation size");
3531 if (fde->uses_eh_lsda)
3533 ASM_GENERATE_INTERNAL_LABEL (l1, second ? "LLSDAC" : "LLSDA",
3534 fde->funcdef_number);
3535 dw2_asm_output_encoded_addr_rtx (lsda_encoding,
3536 gen_rtx_SYMBOL_REF (Pmode, l1),
3537 false,
3538 "Language Specific Data Area");
3540 else
3542 if (lsda_encoding == DW_EH_PE_aligned)
3543 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
3544 dw2_asm_output_data (size_of_encoded_value (lsda_encoding), 0,
3545 "Language Specific Data Area (none)");
3548 else
3549 dw2_asm_output_data_uleb128 (0, "Augmentation size");
3552 /* Loop through the Call Frame Instructions associated with
3553 this FDE. */
3554 fde->dw_fde_current_label = begin;
3555 if (!fde->dw_fde_switched_sections)
3556 for (cfi = fde->dw_fde_cfi; cfi != NULL; cfi = cfi->dw_cfi_next)
3557 output_cfi (cfi, fde, for_eh);
3558 else if (!second)
3560 if (fde->dw_fde_switch_cfi)
3561 for (cfi = fde->dw_fde_cfi; cfi != NULL; cfi = cfi->dw_cfi_next)
3563 output_cfi (cfi, fde, for_eh);
3564 if (cfi == fde->dw_fde_switch_cfi)
3565 break;
3568 else
3570 dw_cfi_ref cfi_next = fde->dw_fde_cfi;
3572 if (fde->dw_fde_switch_cfi)
3574 cfi_next = fde->dw_fde_switch_cfi->dw_cfi_next;
3575 fde->dw_fde_switch_cfi->dw_cfi_next = NULL;
3576 output_cfis (fde->dw_fde_cfi, false, fde, for_eh);
3577 fde->dw_fde_switch_cfi->dw_cfi_next = cfi_next;
3579 for (cfi = cfi_next; cfi != NULL; cfi = cfi->dw_cfi_next)
3580 output_cfi (cfi, fde, for_eh);
3583 /* If we are to emit a ref/link from function bodies to their frame tables,
3584 do it now. This is typically performed to make sure that tables
3585 associated with functions are dragged with them and not discarded in
3586 garbage collecting links. We need to do this on a per function basis to
3587 cope with -ffunction-sections. */
3589 #ifdef ASM_OUTPUT_DWARF_TABLE_REF
3590 /* Switch to the function section, emit the ref to the tables, and
3591 switch *back* into the table section. */
3592 switch_to_section (function_section (fde->decl));
3593 ASM_OUTPUT_DWARF_TABLE_REF (section_start_label);
3594 switch_to_frame_table_section (for_eh, true);
3595 #endif
3597 /* Pad the FDE out to an address sized boundary. */
3598 ASM_OUTPUT_ALIGN (asm_out_file,
3599 floor_log2 ((for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE)));
3600 ASM_OUTPUT_LABEL (asm_out_file, l2);
3602 j += 2;
3605 /* Output the call frame information used to record information
3606 that relates to calculating the frame pointer, and records the
3607 location of saved registers. */
3609 static void
3610 output_call_frame_info (int for_eh)
3612 unsigned int i;
3613 dw_fde_ref fde;
3614 dw_cfi_ref cfi;
3615 char l1[20], l2[20], section_start_label[20];
3616 bool any_lsda_needed = false;
3617 char augmentation[6];
3618 int augmentation_size;
3619 int fde_encoding = DW_EH_PE_absptr;
3620 int per_encoding = DW_EH_PE_absptr;
3621 int lsda_encoding = DW_EH_PE_absptr;
3622 int return_reg;
3623 rtx personality = NULL;
3624 int dw_cie_version;
3626 /* Don't emit a CIE if there won't be any FDEs. */
3627 if (fde_table_in_use == 0)
3628 return;
3630 /* Nothing to do if the assembler's doing it all. */
3631 if (dwarf2out_do_cfi_asm ())
3632 return;
3634 /* If we make FDEs linkonce, we may have to emit an empty label for
3635 an FDE that wouldn't otherwise be emitted. We want to avoid
3636 having an FDE kept around when the function it refers to is
3637 discarded. Example where this matters: a primary function
3638 template in C++ requires EH information, but an explicit
3639 specialization doesn't. */
3640 if (TARGET_USES_WEAK_UNWIND_INFO
3641 && ! flag_asynchronous_unwind_tables
3642 && flag_exceptions
3643 && for_eh)
3644 for (i = 0; i < fde_table_in_use; i++)
3645 if ((fde_table[i].nothrow || fde_table[i].all_throwers_are_sibcalls)
3646 && !fde_table[i].uses_eh_lsda
3647 && ! DECL_WEAK (fde_table[i].decl))
3648 targetm.asm_out.unwind_label (asm_out_file, fde_table[i].decl,
3649 for_eh, /* empty */ 1);
3651 /* If we don't have any functions we'll want to unwind out of, don't
3652 emit any EH unwind information. Note that if exceptions aren't
3653 enabled, we won't have collected nothrow information, and if we
3654 asked for asynchronous tables, we always want this info. */
3655 if (for_eh)
3657 bool any_eh_needed = !flag_exceptions || flag_asynchronous_unwind_tables;
3659 for (i = 0; i < fde_table_in_use; i++)
3660 if (fde_table[i].uses_eh_lsda)
3661 any_eh_needed = any_lsda_needed = true;
3662 else if (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde_table[i].decl))
3663 any_eh_needed = true;
3664 else if (! fde_table[i].nothrow
3665 && ! fde_table[i].all_throwers_are_sibcalls)
3666 any_eh_needed = true;
3668 if (! any_eh_needed)
3669 return;
3672 /* We're going to be generating comments, so turn on app. */
3673 if (flag_debug_asm)
3674 app_enable ();
3676 /* Switch to the proper frame section, first time. */
3677 switch_to_frame_table_section (for_eh, false);
3679 ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
3680 ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
3682 /* Output the CIE. */
3683 ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
3684 ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
3685 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4 && !for_eh)
3686 dw2_asm_output_data (4, 0xffffffff,
3687 "Initial length escape value indicating 64-bit DWARF extension");
3688 dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
3689 "Length of Common Information Entry");
3690 ASM_OUTPUT_LABEL (asm_out_file, l1);
3692 /* Now that the CIE pointer is PC-relative for EH,
3693 use 0 to identify the CIE. */
3694 dw2_asm_output_data ((for_eh ? 4 : DWARF_OFFSET_SIZE),
3695 (for_eh ? 0 : DWARF_CIE_ID),
3696 "CIE Identifier Tag");
3698 /* Use the CIE version 3 for DWARF3; allow DWARF2 to continue to
3699 use CIE version 1, unless that would produce incorrect results
3700 due to overflowing the return register column. */
3701 return_reg = DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN, for_eh);
3702 dw_cie_version = 1;
3703 if (return_reg >= 256 || dwarf_version > 2)
3704 dw_cie_version = 3;
3705 dw2_asm_output_data (1, dw_cie_version, "CIE Version");
3707 augmentation[0] = 0;
3708 augmentation_size = 0;
3710 personality = current_unit_personality;
3711 if (for_eh)
3713 char *p;
3715 /* Augmentation:
3716 z Indicates that a uleb128 is present to size the
3717 augmentation section.
3718 L Indicates the encoding (and thus presence) of
3719 an LSDA pointer in the FDE augmentation.
3720 R Indicates a non-default pointer encoding for
3721 FDE code pointers.
3722 P Indicates the presence of an encoding + language
3723 personality routine in the CIE augmentation. */
3725 fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
3726 per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
3727 lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
3729 p = augmentation + 1;
3730 if (personality)
3732 *p++ = 'P';
3733 augmentation_size += 1 + size_of_encoded_value (per_encoding);
3734 assemble_external_libcall (personality);
3736 if (any_lsda_needed)
3738 *p++ = 'L';
3739 augmentation_size += 1;
3741 if (fde_encoding != DW_EH_PE_absptr)
3743 *p++ = 'R';
3744 augmentation_size += 1;
3746 if (p > augmentation + 1)
3748 augmentation[0] = 'z';
3749 *p = '\0';
3752 /* Ug. Some platforms can't do unaligned dynamic relocations at all. */
3753 if (personality && per_encoding == DW_EH_PE_aligned)
3755 int offset = ( 4 /* Length */
3756 + 4 /* CIE Id */
3757 + 1 /* CIE version */
3758 + strlen (augmentation) + 1 /* Augmentation */
3759 + size_of_uleb128 (1) /* Code alignment */
3760 + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
3761 + 1 /* RA column */
3762 + 1 /* Augmentation size */
3763 + 1 /* Personality encoding */ );
3764 int pad = -offset & (PTR_SIZE - 1);
3766 augmentation_size += pad;
3768 /* Augmentations should be small, so there's scarce need to
3769 iterate for a solution. Die if we exceed one uleb128 byte. */
3770 gcc_assert (size_of_uleb128 (augmentation_size) == 1);
3774 dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
3775 dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
3776 dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
3777 "CIE Data Alignment Factor");
3779 if (dw_cie_version == 1)
3780 dw2_asm_output_data (1, return_reg, "CIE RA Column");
3781 else
3782 dw2_asm_output_data_uleb128 (return_reg, "CIE RA Column");
3784 if (augmentation[0])
3786 dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
3787 if (personality)
3789 dw2_asm_output_data (1, per_encoding, "Personality (%s)",
3790 eh_data_format_name (per_encoding));
3791 dw2_asm_output_encoded_addr_rtx (per_encoding,
3792 personality,
3793 true, NULL);
3796 if (any_lsda_needed)
3797 dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
3798 eh_data_format_name (lsda_encoding));
3800 if (fde_encoding != DW_EH_PE_absptr)
3801 dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
3802 eh_data_format_name (fde_encoding));
3805 for (cfi = cie_cfi_head; cfi != NULL; cfi = cfi->dw_cfi_next)
3806 output_cfi (cfi, NULL, for_eh);
3808 /* Pad the CIE out to an address sized boundary. */
3809 ASM_OUTPUT_ALIGN (asm_out_file,
3810 floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
3811 ASM_OUTPUT_LABEL (asm_out_file, l2);
3813 /* Loop through all of the FDE's. */
3814 for (i = 0; i < fde_table_in_use; i++)
3816 unsigned int k;
3817 fde = &fde_table[i];
3819 /* Don't emit EH unwind info for leaf functions that don't need it. */
3820 if (for_eh && !flag_asynchronous_unwind_tables && flag_exceptions
3821 && (fde->nothrow || fde->all_throwers_are_sibcalls)
3822 && ! (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde_table[i].decl))
3823 && !fde->uses_eh_lsda)
3824 continue;
3826 for (k = 0; k < (fde->dw_fde_switched_sections ? 2 : 1); k++)
3827 output_fde (fde, for_eh, k, section_start_label, fde_encoding,
3828 augmentation, any_lsda_needed, lsda_encoding);
3831 if (for_eh && targetm.terminate_dw2_eh_frame_info)
3832 dw2_asm_output_data (4, 0, "End of Table");
3833 #ifdef MIPS_DEBUGGING_INFO
3834 /* Work around Irix 6 assembler bug whereby labels at the end of a section
3835 get a value of 0. Putting .align 0 after the label fixes it. */
3836 ASM_OUTPUT_ALIGN (asm_out_file, 0);
3837 #endif
3839 /* Turn off app to make assembly quicker. */
3840 if (flag_debug_asm)
3841 app_disable ();
3844 /* Emit .cfi_startproc and .cfi_personality/.cfi_lsda if needed. */
3846 static void
3847 dwarf2out_do_cfi_startproc (bool second)
3849 int enc;
3850 rtx ref;
3851 rtx personality = get_personality_function (current_function_decl);
3853 fprintf (asm_out_file, "\t.cfi_startproc\n");
3855 if (personality)
3857 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
3858 ref = personality;
3860 /* ??? The GAS support isn't entirely consistent. We have to
3861 handle indirect support ourselves, but PC-relative is done
3862 in the assembler. Further, the assembler can't handle any
3863 of the weirder relocation types. */
3864 if (enc & DW_EH_PE_indirect)
3865 ref = dw2_force_const_mem (ref, true);
3867 fprintf (asm_out_file, "\t.cfi_personality 0x%x,", enc);
3868 output_addr_const (asm_out_file, ref);
3869 fputc ('\n', asm_out_file);
3872 if (crtl->uses_eh_lsda)
3874 char lab[20];
3876 enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
3877 ASM_GENERATE_INTERNAL_LABEL (lab, second ? "LLSDAC" : "LLSDA",
3878 current_function_funcdef_no);
3879 ref = gen_rtx_SYMBOL_REF (Pmode, lab);
3880 SYMBOL_REF_FLAGS (ref) = SYMBOL_FLAG_LOCAL;
3882 if (enc & DW_EH_PE_indirect)
3883 ref = dw2_force_const_mem (ref, true);
3885 fprintf (asm_out_file, "\t.cfi_lsda 0x%x,", enc);
3886 output_addr_const (asm_out_file, ref);
3887 fputc ('\n', asm_out_file);
3891 /* Output a marker (i.e. a label) for the beginning of a function, before
3892 the prologue. */
3894 void
3895 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED,
3896 const char *file ATTRIBUTE_UNUSED)
3898 char label[MAX_ARTIFICIAL_LABEL_BYTES];
3899 char * dup_label;
3900 dw_fde_ref fde;
3901 section *fnsec;
3903 current_function_func_begin_label = NULL;
3905 #ifdef TARGET_UNWIND_INFO
3906 /* ??? current_function_func_begin_label is also used by except.c
3907 for call-site information. We must emit this label if it might
3908 be used. */
3909 if ((! flag_exceptions || USING_SJLJ_EXCEPTIONS)
3910 && ! dwarf2out_do_frame ())
3911 return;
3912 #else
3913 if (! dwarf2out_do_frame ())
3914 return;
3915 #endif
3917 fnsec = function_section (current_function_decl);
3918 switch_to_section (fnsec);
3919 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
3920 current_function_funcdef_no);
3921 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
3922 current_function_funcdef_no);
3923 dup_label = xstrdup (label);
3924 current_function_func_begin_label = dup_label;
3926 #ifdef TARGET_UNWIND_INFO
3927 /* We can elide the fde allocation if we're not emitting debug info. */
3928 if (! dwarf2out_do_frame ())
3929 return;
3930 #endif
3932 /* Expand the fde table if necessary. */
3933 if (fde_table_in_use == fde_table_allocated)
3935 fde_table_allocated += FDE_TABLE_INCREMENT;
3936 fde_table = GGC_RESIZEVEC (dw_fde_node, fde_table, fde_table_allocated);
3937 memset (fde_table + fde_table_in_use, 0,
3938 FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
3941 /* Record the FDE associated with this function. */
3942 current_funcdef_fde = fde_table_in_use;
3944 /* Add the new FDE at the end of the fde_table. */
3945 fde = &fde_table[fde_table_in_use++];
3946 fde->decl = current_function_decl;
3947 fde->dw_fde_begin = dup_label;
3948 fde->dw_fde_current_label = dup_label;
3949 fde->dw_fde_hot_section_label = NULL;
3950 fde->dw_fde_hot_section_end_label = NULL;
3951 fde->dw_fde_unlikely_section_label = NULL;
3952 fde->dw_fde_unlikely_section_end_label = NULL;
3953 fde->dw_fde_switched_sections = 0;
3954 fde->dw_fde_switched_cold_to_hot = 0;
3955 fde->dw_fde_end = NULL;
3956 fde->dw_fde_cfi = NULL;
3957 fde->dw_fde_switch_cfi = NULL;
3958 fde->funcdef_number = current_function_funcdef_no;
3959 fde->nothrow = crtl->nothrow;
3960 fde->uses_eh_lsda = crtl->uses_eh_lsda;
3961 fde->all_throwers_are_sibcalls = crtl->all_throwers_are_sibcalls;
3962 fde->drap_reg = INVALID_REGNUM;
3963 fde->vdrap_reg = INVALID_REGNUM;
3964 if (flag_reorder_blocks_and_partition)
3966 section *unlikelysec;
3967 if (first_function_block_is_cold)
3968 fde->in_std_section = 1;
3969 else
3970 fde->in_std_section
3971 = (fnsec == text_section
3972 || (cold_text_section && fnsec == cold_text_section));
3973 unlikelysec = unlikely_text_section ();
3974 fde->cold_in_std_section
3975 = (unlikelysec == text_section
3976 || (cold_text_section && unlikelysec == cold_text_section));
3978 else
3980 fde->in_std_section
3981 = (fnsec == text_section
3982 || (cold_text_section && fnsec == cold_text_section));
3983 fde->cold_in_std_section = 0;
3986 args_size = old_args_size = 0;
3988 /* We only want to output line number information for the genuine dwarf2
3989 prologue case, not the eh frame case. */
3990 #ifdef DWARF2_DEBUGGING_INFO
3991 if (file)
3992 dwarf2out_source_line (line, file, 0, true);
3993 #endif
3995 if (dwarf2out_do_cfi_asm ())
3996 dwarf2out_do_cfi_startproc (false);
3997 else
3999 rtx personality = get_personality_function (current_function_decl);
4000 if (!current_unit_personality)
4001 current_unit_personality = personality;
4003 /* We cannot keep a current personality per function as without CFI
4004 asm at the point where we emit the CFI data there is no current
4005 function anymore. */
4006 if (personality
4007 && current_unit_personality != personality)
4008 sorry ("Multiple EH personalities are supported only with assemblers "
4009 "supporting .cfi.personality directive.");
4013 /* Output a marker (i.e. a label) for the absolute end of the generated code
4014 for a function definition. This gets called *after* the epilogue code has
4015 been generated. */
4017 void
4018 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
4019 const char *file ATTRIBUTE_UNUSED)
4021 dw_fde_ref fde;
4022 char label[MAX_ARTIFICIAL_LABEL_BYTES];
4024 #ifdef DWARF2_DEBUGGING_INFO
4025 last_var_location_insn = NULL_RTX;
4026 #endif
4028 if (dwarf2out_do_cfi_asm ())
4029 fprintf (asm_out_file, "\t.cfi_endproc\n");
4031 /* Output a label to mark the endpoint of the code generated for this
4032 function. */
4033 ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
4034 current_function_funcdef_no);
4035 ASM_OUTPUT_LABEL (asm_out_file, label);
4036 fde = current_fde ();
4037 gcc_assert (fde != NULL);
4038 fde->dw_fde_end = xstrdup (label);
4041 void
4042 dwarf2out_frame_init (void)
4044 /* Allocate the initial hunk of the fde_table. */
4045 fde_table = GGC_CNEWVEC (dw_fde_node, FDE_TABLE_INCREMENT);
4046 fde_table_allocated = FDE_TABLE_INCREMENT;
4047 fde_table_in_use = 0;
4049 /* Generate the CFA instructions common to all FDE's. Do it now for the
4050 sake of lookup_cfa. */
4052 /* On entry, the Canonical Frame Address is at SP. */
4053 dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
4055 #ifdef DWARF2_UNWIND_INFO
4056 if (DWARF2_UNWIND_INFO || DWARF2_FRAME_INFO)
4057 initial_return_save (INCOMING_RETURN_ADDR_RTX);
4058 #endif
4061 void
4062 dwarf2out_frame_finish (void)
4064 /* Output call frame information. */
4065 if (DWARF2_FRAME_INFO)
4066 output_call_frame_info (0);
4068 #ifndef TARGET_UNWIND_INFO
4069 /* Output another copy for the unwinder. */
4070 if (! USING_SJLJ_EXCEPTIONS && (flag_unwind_tables || flag_exceptions))
4071 output_call_frame_info (1);
4072 #endif
4075 /* Note that the current function section is being used for code. */
4077 static void
4078 dwarf2out_note_section_used (void)
4080 section *sec = current_function_section ();
4081 if (sec == text_section)
4082 text_section_used = true;
4083 else if (sec == cold_text_section)
4084 cold_text_section_used = true;
4087 void
4088 dwarf2out_switch_text_section (void)
4090 dw_fde_ref fde = current_fde ();
4092 gcc_assert (cfun && fde && !fde->dw_fde_switched_sections);
4094 fde->dw_fde_switched_sections = 1;
4095 fde->dw_fde_switched_cold_to_hot = !in_cold_section_p;
4097 fde->dw_fde_hot_section_label = crtl->subsections.hot_section_label;
4098 fde->dw_fde_hot_section_end_label = crtl->subsections.hot_section_end_label;
4099 fde->dw_fde_unlikely_section_label = crtl->subsections.cold_section_label;
4100 fde->dw_fde_unlikely_section_end_label = crtl->subsections.cold_section_end_label;
4101 have_multiple_function_sections = true;
4103 /* Reset the current label on switching text sections, so that we
4104 don't attempt to advance_loc4 between labels in different sections. */
4105 fde->dw_fde_current_label = NULL;
4107 /* There is no need to mark used sections when not debugging. */
4108 if (cold_text_section != NULL)
4109 dwarf2out_note_section_used ();
4111 if (dwarf2out_do_cfi_asm ())
4112 fprintf (asm_out_file, "\t.cfi_endproc\n");
4114 /* Now do the real section switch. */
4115 switch_to_section (current_function_section ());
4117 if (dwarf2out_do_cfi_asm ())
4119 dwarf2out_do_cfi_startproc (true);
4120 /* As this is a different FDE, insert all current CFI instructions
4121 again. */
4122 output_cfis (fde->dw_fde_cfi, true, fde, true);
4124 else
4126 dw_cfi_ref cfi = fde->dw_fde_cfi;
4128 cfi = fde->dw_fde_cfi;
4129 if (cfi)
4130 while (cfi->dw_cfi_next != NULL)
4131 cfi = cfi->dw_cfi_next;
4132 fde->dw_fde_switch_cfi = cfi;
4135 #endif
4137 /* And now, the subset of the debugging information support code necessary
4138 for emitting location expressions. */
4140 /* Data about a single source file. */
4141 struct GTY(()) dwarf_file_data {
4142 const char * filename;
4143 int emitted_number;
4146 typedef struct dw_val_struct *dw_val_ref;
4147 typedef struct die_struct *dw_die_ref;
4148 typedef const struct die_struct *const_dw_die_ref;
4149 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
4150 typedef struct dw_loc_list_struct *dw_loc_list_ref;
4152 typedef struct GTY(()) deferred_locations_struct
4154 tree variable;
4155 dw_die_ref die;
4156 } deferred_locations;
4158 DEF_VEC_O(deferred_locations);
4159 DEF_VEC_ALLOC_O(deferred_locations,gc);
4161 static GTY(()) VEC(deferred_locations, gc) *deferred_locations_list;
4163 DEF_VEC_P(dw_die_ref);
4164 DEF_VEC_ALLOC_P(dw_die_ref,heap);
4166 /* Each DIE may have a series of attribute/value pairs. Values
4167 can take on several forms. The forms that are used in this
4168 implementation are listed below. */
4170 enum dw_val_class
4172 dw_val_class_addr,
4173 dw_val_class_offset,
4174 dw_val_class_loc,
4175 dw_val_class_loc_list,
4176 dw_val_class_range_list,
4177 dw_val_class_const,
4178 dw_val_class_unsigned_const,
4179 dw_val_class_const_double,
4180 dw_val_class_vec,
4181 dw_val_class_flag,
4182 dw_val_class_die_ref,
4183 dw_val_class_fde_ref,
4184 dw_val_class_lbl_id,
4185 dw_val_class_lineptr,
4186 dw_val_class_str,
4187 dw_val_class_macptr,
4188 dw_val_class_file,
4189 dw_val_class_data8
4192 /* Describe a floating point constant value, or a vector constant value. */
4194 typedef struct GTY(()) dw_vec_struct {
4195 unsigned char * GTY((length ("%h.length"))) array;
4196 unsigned length;
4197 unsigned elt_size;
4199 dw_vec_const;
4201 /* The dw_val_node describes an attribute's value, as it is
4202 represented internally. */
4204 typedef struct GTY(()) dw_val_struct {
4205 enum dw_val_class val_class;
4206 union dw_val_struct_union
4208 rtx GTY ((tag ("dw_val_class_addr"))) val_addr;
4209 unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_offset"))) val_offset;
4210 dw_loc_list_ref GTY ((tag ("dw_val_class_loc_list"))) val_loc_list;
4211 dw_loc_descr_ref GTY ((tag ("dw_val_class_loc"))) val_loc;
4212 HOST_WIDE_INT GTY ((default)) val_int;
4213 unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned;
4214 double_int GTY ((tag ("dw_val_class_const_double"))) val_double;
4215 dw_vec_const GTY ((tag ("dw_val_class_vec"))) val_vec;
4216 struct dw_val_die_union
4218 dw_die_ref die;
4219 int external;
4220 } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref;
4221 unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index;
4222 struct indirect_string_node * GTY ((tag ("dw_val_class_str"))) val_str;
4223 char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id;
4224 unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag;
4225 struct dwarf_file_data * GTY ((tag ("dw_val_class_file"))) val_file;
4226 unsigned char GTY ((tag ("dw_val_class_data8"))) val_data8[8];
4228 GTY ((desc ("%1.val_class"))) v;
4230 dw_val_node;
4232 /* Locations in memory are described using a sequence of stack machine
4233 operations. */
4235 typedef struct GTY(()) dw_loc_descr_struct {
4236 dw_loc_descr_ref dw_loc_next;
4237 ENUM_BITFIELD (dwarf_location_atom) dw_loc_opc : 8;
4238 /* Used to distinguish DW_OP_addr with a direct symbol relocation
4239 from DW_OP_addr with a dtp-relative symbol relocation. */
4240 unsigned int dtprel : 1;
4241 int dw_loc_addr;
4242 dw_val_node dw_loc_oprnd1;
4243 dw_val_node dw_loc_oprnd2;
4245 dw_loc_descr_node;
4247 /* Location lists are ranges + location descriptions for that range,
4248 so you can track variables that are in different places over
4249 their entire life. */
4250 typedef struct GTY(()) dw_loc_list_struct {
4251 dw_loc_list_ref dw_loc_next;
4252 const char *begin; /* Label for begin address of range */
4253 const char *end; /* Label for end address of range */
4254 char *ll_symbol; /* Label for beginning of location list.
4255 Only on head of list */
4256 const char *section; /* Section this loclist is relative to */
4257 dw_loc_descr_ref expr;
4258 } dw_loc_list_node;
4260 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
4262 static dw_loc_descr_ref int_loc_descriptor (HOST_WIDE_INT);
4264 /* Convert a DWARF stack opcode into its string name. */
4266 static const char *
4267 dwarf_stack_op_name (unsigned int op)
4269 switch (op)
4271 case DW_OP_addr:
4272 return "DW_OP_addr";
4273 case DW_OP_deref:
4274 return "DW_OP_deref";
4275 case DW_OP_const1u:
4276 return "DW_OP_const1u";
4277 case DW_OP_const1s:
4278 return "DW_OP_const1s";
4279 case DW_OP_const2u:
4280 return "DW_OP_const2u";
4281 case DW_OP_const2s:
4282 return "DW_OP_const2s";
4283 case DW_OP_const4u:
4284 return "DW_OP_const4u";
4285 case DW_OP_const4s:
4286 return "DW_OP_const4s";
4287 case DW_OP_const8u:
4288 return "DW_OP_const8u";
4289 case DW_OP_const8s:
4290 return "DW_OP_const8s";
4291 case DW_OP_constu:
4292 return "DW_OP_constu";
4293 case DW_OP_consts:
4294 return "DW_OP_consts";
4295 case DW_OP_dup:
4296 return "DW_OP_dup";
4297 case DW_OP_drop:
4298 return "DW_OP_drop";
4299 case DW_OP_over:
4300 return "DW_OP_over";
4301 case DW_OP_pick:
4302 return "DW_OP_pick";
4303 case DW_OP_swap:
4304 return "DW_OP_swap";
4305 case DW_OP_rot:
4306 return "DW_OP_rot";
4307 case DW_OP_xderef:
4308 return "DW_OP_xderef";
4309 case DW_OP_abs:
4310 return "DW_OP_abs";
4311 case DW_OP_and:
4312 return "DW_OP_and";
4313 case DW_OP_div:
4314 return "DW_OP_div";
4315 case DW_OP_minus:
4316 return "DW_OP_minus";
4317 case DW_OP_mod:
4318 return "DW_OP_mod";
4319 case DW_OP_mul:
4320 return "DW_OP_mul";
4321 case DW_OP_neg:
4322 return "DW_OP_neg";
4323 case DW_OP_not:
4324 return "DW_OP_not";
4325 case DW_OP_or:
4326 return "DW_OP_or";
4327 case DW_OP_plus:
4328 return "DW_OP_plus";
4329 case DW_OP_plus_uconst:
4330 return "DW_OP_plus_uconst";
4331 case DW_OP_shl:
4332 return "DW_OP_shl";
4333 case DW_OP_shr:
4334 return "DW_OP_shr";
4335 case DW_OP_shra:
4336 return "DW_OP_shra";
4337 case DW_OP_xor:
4338 return "DW_OP_xor";
4339 case DW_OP_bra:
4340 return "DW_OP_bra";
4341 case DW_OP_eq:
4342 return "DW_OP_eq";
4343 case DW_OP_ge:
4344 return "DW_OP_ge";
4345 case DW_OP_gt:
4346 return "DW_OP_gt";
4347 case DW_OP_le:
4348 return "DW_OP_le";
4349 case DW_OP_lt:
4350 return "DW_OP_lt";
4351 case DW_OP_ne:
4352 return "DW_OP_ne";
4353 case DW_OP_skip:
4354 return "DW_OP_skip";
4355 case DW_OP_lit0:
4356 return "DW_OP_lit0";
4357 case DW_OP_lit1:
4358 return "DW_OP_lit1";
4359 case DW_OP_lit2:
4360 return "DW_OP_lit2";
4361 case DW_OP_lit3:
4362 return "DW_OP_lit3";
4363 case DW_OP_lit4:
4364 return "DW_OP_lit4";
4365 case DW_OP_lit5:
4366 return "DW_OP_lit5";
4367 case DW_OP_lit6:
4368 return "DW_OP_lit6";
4369 case DW_OP_lit7:
4370 return "DW_OP_lit7";
4371 case DW_OP_lit8:
4372 return "DW_OP_lit8";
4373 case DW_OP_lit9:
4374 return "DW_OP_lit9";
4375 case DW_OP_lit10:
4376 return "DW_OP_lit10";
4377 case DW_OP_lit11:
4378 return "DW_OP_lit11";
4379 case DW_OP_lit12:
4380 return "DW_OP_lit12";
4381 case DW_OP_lit13:
4382 return "DW_OP_lit13";
4383 case DW_OP_lit14:
4384 return "DW_OP_lit14";
4385 case DW_OP_lit15:
4386 return "DW_OP_lit15";
4387 case DW_OP_lit16:
4388 return "DW_OP_lit16";
4389 case DW_OP_lit17:
4390 return "DW_OP_lit17";
4391 case DW_OP_lit18:
4392 return "DW_OP_lit18";
4393 case DW_OP_lit19:
4394 return "DW_OP_lit19";
4395 case DW_OP_lit20:
4396 return "DW_OP_lit20";
4397 case DW_OP_lit21:
4398 return "DW_OP_lit21";
4399 case DW_OP_lit22:
4400 return "DW_OP_lit22";
4401 case DW_OP_lit23:
4402 return "DW_OP_lit23";
4403 case DW_OP_lit24:
4404 return "DW_OP_lit24";
4405 case DW_OP_lit25:
4406 return "DW_OP_lit25";
4407 case DW_OP_lit26:
4408 return "DW_OP_lit26";
4409 case DW_OP_lit27:
4410 return "DW_OP_lit27";
4411 case DW_OP_lit28:
4412 return "DW_OP_lit28";
4413 case DW_OP_lit29:
4414 return "DW_OP_lit29";
4415 case DW_OP_lit30:
4416 return "DW_OP_lit30";
4417 case DW_OP_lit31:
4418 return "DW_OP_lit31";
4419 case DW_OP_reg0:
4420 return "DW_OP_reg0";
4421 case DW_OP_reg1:
4422 return "DW_OP_reg1";
4423 case DW_OP_reg2:
4424 return "DW_OP_reg2";
4425 case DW_OP_reg3:
4426 return "DW_OP_reg3";
4427 case DW_OP_reg4:
4428 return "DW_OP_reg4";
4429 case DW_OP_reg5:
4430 return "DW_OP_reg5";
4431 case DW_OP_reg6:
4432 return "DW_OP_reg6";
4433 case DW_OP_reg7:
4434 return "DW_OP_reg7";
4435 case DW_OP_reg8:
4436 return "DW_OP_reg8";
4437 case DW_OP_reg9:
4438 return "DW_OP_reg9";
4439 case DW_OP_reg10:
4440 return "DW_OP_reg10";
4441 case DW_OP_reg11:
4442 return "DW_OP_reg11";
4443 case DW_OP_reg12:
4444 return "DW_OP_reg12";
4445 case DW_OP_reg13:
4446 return "DW_OP_reg13";
4447 case DW_OP_reg14:
4448 return "DW_OP_reg14";
4449 case DW_OP_reg15:
4450 return "DW_OP_reg15";
4451 case DW_OP_reg16:
4452 return "DW_OP_reg16";
4453 case DW_OP_reg17:
4454 return "DW_OP_reg17";
4455 case DW_OP_reg18:
4456 return "DW_OP_reg18";
4457 case DW_OP_reg19:
4458 return "DW_OP_reg19";
4459 case DW_OP_reg20:
4460 return "DW_OP_reg20";
4461 case DW_OP_reg21:
4462 return "DW_OP_reg21";
4463 case DW_OP_reg22:
4464 return "DW_OP_reg22";
4465 case DW_OP_reg23:
4466 return "DW_OP_reg23";
4467 case DW_OP_reg24:
4468 return "DW_OP_reg24";
4469 case DW_OP_reg25:
4470 return "DW_OP_reg25";
4471 case DW_OP_reg26:
4472 return "DW_OP_reg26";
4473 case DW_OP_reg27:
4474 return "DW_OP_reg27";
4475 case DW_OP_reg28:
4476 return "DW_OP_reg28";
4477 case DW_OP_reg29:
4478 return "DW_OP_reg29";
4479 case DW_OP_reg30:
4480 return "DW_OP_reg30";
4481 case DW_OP_reg31:
4482 return "DW_OP_reg31";
4483 case DW_OP_breg0:
4484 return "DW_OP_breg0";
4485 case DW_OP_breg1:
4486 return "DW_OP_breg1";
4487 case DW_OP_breg2:
4488 return "DW_OP_breg2";
4489 case DW_OP_breg3:
4490 return "DW_OP_breg3";
4491 case DW_OP_breg4:
4492 return "DW_OP_breg4";
4493 case DW_OP_breg5:
4494 return "DW_OP_breg5";
4495 case DW_OP_breg6:
4496 return "DW_OP_breg6";
4497 case DW_OP_breg7:
4498 return "DW_OP_breg7";
4499 case DW_OP_breg8:
4500 return "DW_OP_breg8";
4501 case DW_OP_breg9:
4502 return "DW_OP_breg9";
4503 case DW_OP_breg10:
4504 return "DW_OP_breg10";
4505 case DW_OP_breg11:
4506 return "DW_OP_breg11";
4507 case DW_OP_breg12:
4508 return "DW_OP_breg12";
4509 case DW_OP_breg13:
4510 return "DW_OP_breg13";
4511 case DW_OP_breg14:
4512 return "DW_OP_breg14";
4513 case DW_OP_breg15:
4514 return "DW_OP_breg15";
4515 case DW_OP_breg16:
4516 return "DW_OP_breg16";
4517 case DW_OP_breg17:
4518 return "DW_OP_breg17";
4519 case DW_OP_breg18:
4520 return "DW_OP_breg18";
4521 case DW_OP_breg19:
4522 return "DW_OP_breg19";
4523 case DW_OP_breg20:
4524 return "DW_OP_breg20";
4525 case DW_OP_breg21:
4526 return "DW_OP_breg21";
4527 case DW_OP_breg22:
4528 return "DW_OP_breg22";
4529 case DW_OP_breg23:
4530 return "DW_OP_breg23";
4531 case DW_OP_breg24:
4532 return "DW_OP_breg24";
4533 case DW_OP_breg25:
4534 return "DW_OP_breg25";
4535 case DW_OP_breg26:
4536 return "DW_OP_breg26";
4537 case DW_OP_breg27:
4538 return "DW_OP_breg27";
4539 case DW_OP_breg28:
4540 return "DW_OP_breg28";
4541 case DW_OP_breg29:
4542 return "DW_OP_breg29";
4543 case DW_OP_breg30:
4544 return "DW_OP_breg30";
4545 case DW_OP_breg31:
4546 return "DW_OP_breg31";
4547 case DW_OP_regx:
4548 return "DW_OP_regx";
4549 case DW_OP_fbreg:
4550 return "DW_OP_fbreg";
4551 case DW_OP_bregx:
4552 return "DW_OP_bregx";
4553 case DW_OP_piece:
4554 return "DW_OP_piece";
4555 case DW_OP_deref_size:
4556 return "DW_OP_deref_size";
4557 case DW_OP_xderef_size:
4558 return "DW_OP_xderef_size";
4559 case DW_OP_nop:
4560 return "DW_OP_nop";
4562 case DW_OP_push_object_address:
4563 return "DW_OP_push_object_address";
4564 case DW_OP_call2:
4565 return "DW_OP_call2";
4566 case DW_OP_call4:
4567 return "DW_OP_call4";
4568 case DW_OP_call_ref:
4569 return "DW_OP_call_ref";
4570 case DW_OP_implicit_value:
4571 return "DW_OP_implicit_value";
4572 case DW_OP_stack_value:
4573 return "DW_OP_stack_value";
4574 case DW_OP_form_tls_address:
4575 return "DW_OP_form_tls_address";
4576 case DW_OP_call_frame_cfa:
4577 return "DW_OP_call_frame_cfa";
4578 case DW_OP_bit_piece:
4579 return "DW_OP_bit_piece";
4581 case DW_OP_GNU_push_tls_address:
4582 return "DW_OP_GNU_push_tls_address";
4583 case DW_OP_GNU_uninit:
4584 return "DW_OP_GNU_uninit";
4585 case DW_OP_GNU_encoded_addr:
4586 return "DW_OP_GNU_encoded_addr";
4588 default:
4589 return "OP_<unknown>";
4593 /* Return a pointer to a newly allocated location description. Location
4594 descriptions are simple expression terms that can be strung
4595 together to form more complicated location (address) descriptions. */
4597 static inline dw_loc_descr_ref
4598 new_loc_descr (enum dwarf_location_atom op, unsigned HOST_WIDE_INT oprnd1,
4599 unsigned HOST_WIDE_INT oprnd2)
4601 dw_loc_descr_ref descr = GGC_CNEW (dw_loc_descr_node);
4603 descr->dw_loc_opc = op;
4604 descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
4605 descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
4606 descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
4607 descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
4609 return descr;
4612 /* Return a pointer to a newly allocated location description for
4613 REG and OFFSET. */
4615 static inline dw_loc_descr_ref
4616 new_reg_loc_descr (unsigned int reg, unsigned HOST_WIDE_INT offset)
4618 if (reg <= 31)
4619 return new_loc_descr ((enum dwarf_location_atom) (DW_OP_breg0 + reg),
4620 offset, 0);
4621 else
4622 return new_loc_descr (DW_OP_bregx, reg, offset);
4625 /* Add a location description term to a location description expression. */
4627 static inline void
4628 add_loc_descr (dw_loc_descr_ref *list_head, dw_loc_descr_ref descr)
4630 dw_loc_descr_ref *d;
4632 /* Find the end of the chain. */
4633 for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
4636 *d = descr;
4639 /* Add a constant OFFSET to a location expression. */
4641 static void
4642 loc_descr_plus_const (dw_loc_descr_ref *list_head, HOST_WIDE_INT offset)
4644 dw_loc_descr_ref loc;
4645 HOST_WIDE_INT *p;
4647 gcc_assert (*list_head != NULL);
4649 if (!offset)
4650 return;
4652 /* Find the end of the chain. */
4653 for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
4656 p = NULL;
4657 if (loc->dw_loc_opc == DW_OP_fbreg
4658 || (loc->dw_loc_opc >= DW_OP_breg0 && loc->dw_loc_opc <= DW_OP_breg31))
4659 p = &loc->dw_loc_oprnd1.v.val_int;
4660 else if (loc->dw_loc_opc == DW_OP_bregx)
4661 p = &loc->dw_loc_oprnd2.v.val_int;
4663 /* If the last operation is fbreg, breg{0..31,x}, optimize by adjusting its
4664 offset. Don't optimize if an signed integer overflow would happen. */
4665 if (p != NULL
4666 && ((offset > 0 && *p <= INTTYPE_MAXIMUM (HOST_WIDE_INT) - offset)
4667 || (offset < 0 && *p >= INTTYPE_MINIMUM (HOST_WIDE_INT) - offset)))
4668 *p += offset;
4670 else if (offset > 0)
4671 loc->dw_loc_next = new_loc_descr (DW_OP_plus_uconst, offset, 0);
4673 else
4675 loc->dw_loc_next = int_loc_descriptor (offset);
4676 add_loc_descr (&loc->dw_loc_next, new_loc_descr (DW_OP_plus, 0, 0));
4680 #ifdef DWARF2_DEBUGGING_INFO
4681 /* Add a constant OFFSET to a location list. */
4683 static void
4684 loc_list_plus_const (dw_loc_list_ref list_head, HOST_WIDE_INT offset)
4686 dw_loc_list_ref d;
4687 for (d = list_head; d != NULL; d = d->dw_loc_next)
4688 loc_descr_plus_const (&d->expr, offset);
4690 #endif
4692 /* Return the size of a location descriptor. */
4694 static unsigned long
4695 size_of_loc_descr (dw_loc_descr_ref loc)
4697 unsigned long size = 1;
4699 switch (loc->dw_loc_opc)
4701 case DW_OP_addr:
4702 size += DWARF2_ADDR_SIZE;
4703 break;
4704 case DW_OP_const1u:
4705 case DW_OP_const1s:
4706 size += 1;
4707 break;
4708 case DW_OP_const2u:
4709 case DW_OP_const2s:
4710 size += 2;
4711 break;
4712 case DW_OP_const4u:
4713 case DW_OP_const4s:
4714 size += 4;
4715 break;
4716 case DW_OP_const8u:
4717 case DW_OP_const8s:
4718 size += 8;
4719 break;
4720 case DW_OP_constu:
4721 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4722 break;
4723 case DW_OP_consts:
4724 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4725 break;
4726 case DW_OP_pick:
4727 size += 1;
4728 break;
4729 case DW_OP_plus_uconst:
4730 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4731 break;
4732 case DW_OP_skip:
4733 case DW_OP_bra:
4734 size += 2;
4735 break;
4736 case DW_OP_breg0:
4737 case DW_OP_breg1:
4738 case DW_OP_breg2:
4739 case DW_OP_breg3:
4740 case DW_OP_breg4:
4741 case DW_OP_breg5:
4742 case DW_OP_breg6:
4743 case DW_OP_breg7:
4744 case DW_OP_breg8:
4745 case DW_OP_breg9:
4746 case DW_OP_breg10:
4747 case DW_OP_breg11:
4748 case DW_OP_breg12:
4749 case DW_OP_breg13:
4750 case DW_OP_breg14:
4751 case DW_OP_breg15:
4752 case DW_OP_breg16:
4753 case DW_OP_breg17:
4754 case DW_OP_breg18:
4755 case DW_OP_breg19:
4756 case DW_OP_breg20:
4757 case DW_OP_breg21:
4758 case DW_OP_breg22:
4759 case DW_OP_breg23:
4760 case DW_OP_breg24:
4761 case DW_OP_breg25:
4762 case DW_OP_breg26:
4763 case DW_OP_breg27:
4764 case DW_OP_breg28:
4765 case DW_OP_breg29:
4766 case DW_OP_breg30:
4767 case DW_OP_breg31:
4768 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4769 break;
4770 case DW_OP_regx:
4771 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4772 break;
4773 case DW_OP_fbreg:
4774 size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4775 break;
4776 case DW_OP_bregx:
4777 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4778 size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
4779 break;
4780 case DW_OP_piece:
4781 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4782 break;
4783 case DW_OP_deref_size:
4784 case DW_OP_xderef_size:
4785 size += 1;
4786 break;
4787 case DW_OP_call2:
4788 size += 2;
4789 break;
4790 case DW_OP_call4:
4791 size += 4;
4792 break;
4793 case DW_OP_call_ref:
4794 size += DWARF2_ADDR_SIZE;
4795 break;
4796 case DW_OP_implicit_value:
4797 size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned)
4798 + loc->dw_loc_oprnd1.v.val_unsigned;
4799 break;
4800 default:
4801 break;
4804 return size;
4807 /* Return the size of a series of location descriptors. */
4809 static unsigned long
4810 size_of_locs (dw_loc_descr_ref loc)
4812 dw_loc_descr_ref l;
4813 unsigned long size;
4815 /* If there are no skip or bra opcodes, don't fill in the dw_loc_addr
4816 field, to avoid writing to a PCH file. */
4817 for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
4819 if (l->dw_loc_opc == DW_OP_skip || l->dw_loc_opc == DW_OP_bra)
4820 break;
4821 size += size_of_loc_descr (l);
4823 if (! l)
4824 return size;
4826 for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
4828 l->dw_loc_addr = size;
4829 size += size_of_loc_descr (l);
4832 return size;
4835 #ifdef DWARF2_DEBUGGING_INFO
4836 static HOST_WIDE_INT extract_int (const unsigned char *, unsigned);
4837 #endif
4839 /* Output location description stack opcode's operands (if any). */
4841 static void
4842 output_loc_operands (dw_loc_descr_ref loc)
4844 dw_val_ref val1 = &loc->dw_loc_oprnd1;
4845 dw_val_ref val2 = &loc->dw_loc_oprnd2;
4847 switch (loc->dw_loc_opc)
4849 #ifdef DWARF2_DEBUGGING_INFO
4850 case DW_OP_const2u:
4851 case DW_OP_const2s:
4852 dw2_asm_output_data (2, val1->v.val_int, NULL);
4853 break;
4854 case DW_OP_const4u:
4855 case DW_OP_const4s:
4856 dw2_asm_output_data (4, val1->v.val_int, NULL);
4857 break;
4858 case DW_OP_const8u:
4859 case DW_OP_const8s:
4860 gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
4861 dw2_asm_output_data (8, val1->v.val_int, NULL);
4862 break;
4863 case DW_OP_skip:
4864 case DW_OP_bra:
4866 int offset;
4868 gcc_assert (val1->val_class == dw_val_class_loc);
4869 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
4871 dw2_asm_output_data (2, offset, NULL);
4873 break;
4874 case DW_OP_implicit_value:
4875 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
4876 switch (val2->val_class)
4878 case dw_val_class_const:
4879 dw2_asm_output_data (val1->v.val_unsigned, val2->v.val_int, NULL);
4880 break;
4881 case dw_val_class_vec:
4883 unsigned int elt_size = val2->v.val_vec.elt_size;
4884 unsigned int len = val2->v.val_vec.length;
4885 unsigned int i;
4886 unsigned char *p;
4888 if (elt_size > sizeof (HOST_WIDE_INT))
4890 elt_size /= 2;
4891 len *= 2;
4893 for (i = 0, p = val2->v.val_vec.array;
4894 i < len;
4895 i++, p += elt_size)
4896 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
4897 "fp or vector constant word %u", i);
4899 break;
4900 case dw_val_class_const_double:
4902 unsigned HOST_WIDE_INT first, second;
4904 if (WORDS_BIG_ENDIAN)
4906 first = val2->v.val_double.high;
4907 second = val2->v.val_double.low;
4909 else
4911 first = val2->v.val_double.low;
4912 second = val2->v.val_double.high;
4914 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
4915 first, NULL);
4916 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
4917 second, NULL);
4919 break;
4920 case dw_val_class_addr:
4921 gcc_assert (val1->v.val_unsigned == DWARF2_ADDR_SIZE);
4922 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val2->v.val_addr, NULL);
4923 break;
4924 default:
4925 gcc_unreachable ();
4927 break;
4928 #else
4929 case DW_OP_const2u:
4930 case DW_OP_const2s:
4931 case DW_OP_const4u:
4932 case DW_OP_const4s:
4933 case DW_OP_const8u:
4934 case DW_OP_const8s:
4935 case DW_OP_skip:
4936 case DW_OP_bra:
4937 case DW_OP_implicit_value:
4938 /* We currently don't make any attempt to make sure these are
4939 aligned properly like we do for the main unwind info, so
4940 don't support emitting things larger than a byte if we're
4941 only doing unwinding. */
4942 gcc_unreachable ();
4943 #endif
4944 case DW_OP_const1u:
4945 case DW_OP_const1s:
4946 dw2_asm_output_data (1, val1->v.val_int, NULL);
4947 break;
4948 case DW_OP_constu:
4949 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
4950 break;
4951 case DW_OP_consts:
4952 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
4953 break;
4954 case DW_OP_pick:
4955 dw2_asm_output_data (1, val1->v.val_int, NULL);
4956 break;
4957 case DW_OP_plus_uconst:
4958 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
4959 break;
4960 case DW_OP_breg0:
4961 case DW_OP_breg1:
4962 case DW_OP_breg2:
4963 case DW_OP_breg3:
4964 case DW_OP_breg4:
4965 case DW_OP_breg5:
4966 case DW_OP_breg6:
4967 case DW_OP_breg7:
4968 case DW_OP_breg8:
4969 case DW_OP_breg9:
4970 case DW_OP_breg10:
4971 case DW_OP_breg11:
4972 case DW_OP_breg12:
4973 case DW_OP_breg13:
4974 case DW_OP_breg14:
4975 case DW_OP_breg15:
4976 case DW_OP_breg16:
4977 case DW_OP_breg17:
4978 case DW_OP_breg18:
4979 case DW_OP_breg19:
4980 case DW_OP_breg20:
4981 case DW_OP_breg21:
4982 case DW_OP_breg22:
4983 case DW_OP_breg23:
4984 case DW_OP_breg24:
4985 case DW_OP_breg25:
4986 case DW_OP_breg26:
4987 case DW_OP_breg27:
4988 case DW_OP_breg28:
4989 case DW_OP_breg29:
4990 case DW_OP_breg30:
4991 case DW_OP_breg31:
4992 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
4993 break;
4994 case DW_OP_regx:
4995 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
4996 break;
4997 case DW_OP_fbreg:
4998 dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
4999 break;
5000 case DW_OP_bregx:
5001 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5002 dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
5003 break;
5004 case DW_OP_piece:
5005 dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5006 break;
5007 case DW_OP_deref_size:
5008 case DW_OP_xderef_size:
5009 dw2_asm_output_data (1, val1->v.val_int, NULL);
5010 break;
5012 case DW_OP_addr:
5013 if (loc->dtprel)
5015 if (targetm.asm_out.output_dwarf_dtprel)
5017 targetm.asm_out.output_dwarf_dtprel (asm_out_file,
5018 DWARF2_ADDR_SIZE,
5019 val1->v.val_addr);
5020 fputc ('\n', asm_out_file);
5022 else
5023 gcc_unreachable ();
5025 else
5027 #ifdef DWARF2_DEBUGGING_INFO
5028 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
5029 #else
5030 gcc_unreachable ();
5031 #endif
5033 break;
5035 default:
5036 /* Other codes have no operands. */
5037 break;
5041 /* Output a sequence of location operations. */
5043 static void
5044 output_loc_sequence (dw_loc_descr_ref loc)
5046 for (; loc != NULL; loc = loc->dw_loc_next)
5048 /* Output the opcode. */
5049 dw2_asm_output_data (1, loc->dw_loc_opc,
5050 "%s", dwarf_stack_op_name (loc->dw_loc_opc));
5052 /* Output the operand(s) (if any). */
5053 output_loc_operands (loc);
5057 /* Output location description stack opcode's operands (if any).
5058 The output is single bytes on a line, suitable for .cfi_escape. */
5060 static void
5061 output_loc_operands_raw (dw_loc_descr_ref loc)
5063 dw_val_ref val1 = &loc->dw_loc_oprnd1;
5064 dw_val_ref val2 = &loc->dw_loc_oprnd2;
5066 switch (loc->dw_loc_opc)
5068 case DW_OP_addr:
5069 case DW_OP_implicit_value:
5070 /* We cannot output addresses in .cfi_escape, only bytes. */
5071 gcc_unreachable ();
5073 case DW_OP_const1u:
5074 case DW_OP_const1s:
5075 case DW_OP_pick:
5076 case DW_OP_deref_size:
5077 case DW_OP_xderef_size:
5078 fputc (',', asm_out_file);
5079 dw2_asm_output_data_raw (1, val1->v.val_int);
5080 break;
5082 case DW_OP_const2u:
5083 case DW_OP_const2s:
5084 fputc (',', asm_out_file);
5085 dw2_asm_output_data_raw (2, val1->v.val_int);
5086 break;
5088 case DW_OP_const4u:
5089 case DW_OP_const4s:
5090 fputc (',', asm_out_file);
5091 dw2_asm_output_data_raw (4, val1->v.val_int);
5092 break;
5094 case DW_OP_const8u:
5095 case DW_OP_const8s:
5096 gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
5097 fputc (',', asm_out_file);
5098 dw2_asm_output_data_raw (8, val1->v.val_int);
5099 break;
5101 case DW_OP_skip:
5102 case DW_OP_bra:
5104 int offset;
5106 gcc_assert (val1->val_class == dw_val_class_loc);
5107 offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
5109 fputc (',', asm_out_file);
5110 dw2_asm_output_data_raw (2, offset);
5112 break;
5114 case DW_OP_constu:
5115 case DW_OP_plus_uconst:
5116 case DW_OP_regx:
5117 case DW_OP_piece:
5118 fputc (',', asm_out_file);
5119 dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
5120 break;
5122 case DW_OP_consts:
5123 case DW_OP_breg0:
5124 case DW_OP_breg1:
5125 case DW_OP_breg2:
5126 case DW_OP_breg3:
5127 case DW_OP_breg4:
5128 case DW_OP_breg5:
5129 case DW_OP_breg6:
5130 case DW_OP_breg7:
5131 case DW_OP_breg8:
5132 case DW_OP_breg9:
5133 case DW_OP_breg10:
5134 case DW_OP_breg11:
5135 case DW_OP_breg12:
5136 case DW_OP_breg13:
5137 case DW_OP_breg14:
5138 case DW_OP_breg15:
5139 case DW_OP_breg16:
5140 case DW_OP_breg17:
5141 case DW_OP_breg18:
5142 case DW_OP_breg19:
5143 case DW_OP_breg20:
5144 case DW_OP_breg21:
5145 case DW_OP_breg22:
5146 case DW_OP_breg23:
5147 case DW_OP_breg24:
5148 case DW_OP_breg25:
5149 case DW_OP_breg26:
5150 case DW_OP_breg27:
5151 case DW_OP_breg28:
5152 case DW_OP_breg29:
5153 case DW_OP_breg30:
5154 case DW_OP_breg31:
5155 case DW_OP_fbreg:
5156 fputc (',', asm_out_file);
5157 dw2_asm_output_data_sleb128_raw (val1->v.val_int);
5158 break;
5160 case DW_OP_bregx:
5161 fputc (',', asm_out_file);
5162 dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
5163 fputc (',', asm_out_file);
5164 dw2_asm_output_data_sleb128_raw (val2->v.val_int);
5165 break;
5167 default:
5168 /* Other codes have no operands. */
5169 break;
5173 static void
5174 output_loc_sequence_raw (dw_loc_descr_ref loc)
5176 while (1)
5178 /* Output the opcode. */
5179 fprintf (asm_out_file, "0x%x", loc->dw_loc_opc);
5180 output_loc_operands_raw (loc);
5182 if (!loc->dw_loc_next)
5183 break;
5184 loc = loc->dw_loc_next;
5186 fputc (',', asm_out_file);
5190 /* This routine will generate the correct assembly data for a location
5191 description based on a cfi entry with a complex address. */
5193 static void
5194 output_cfa_loc (dw_cfi_ref cfi)
5196 dw_loc_descr_ref loc;
5197 unsigned long size;
5199 if (cfi->dw_cfi_opc == DW_CFA_expression)
5201 dw2_asm_output_data (1, cfi->dw_cfi_oprnd1.dw_cfi_reg_num, NULL);
5202 loc = cfi->dw_cfi_oprnd2.dw_cfi_loc;
5204 else
5205 loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
5207 /* Output the size of the block. */
5208 size = size_of_locs (loc);
5209 dw2_asm_output_data_uleb128 (size, NULL);
5211 /* Now output the operations themselves. */
5212 output_loc_sequence (loc);
5215 /* Similar, but used for .cfi_escape. */
5217 static void
5218 output_cfa_loc_raw (dw_cfi_ref cfi)
5220 dw_loc_descr_ref loc;
5221 unsigned long size;
5223 if (cfi->dw_cfi_opc == DW_CFA_expression)
5225 fprintf (asm_out_file, "0x%x,", cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
5226 loc = cfi->dw_cfi_oprnd2.dw_cfi_loc;
5228 else
5229 loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
5231 /* Output the size of the block. */
5232 size = size_of_locs (loc);
5233 dw2_asm_output_data_uleb128_raw (size);
5234 fputc (',', asm_out_file);
5236 /* Now output the operations themselves. */
5237 output_loc_sequence_raw (loc);
5240 /* This function builds a dwarf location descriptor sequence from a
5241 dw_cfa_location, adding the given OFFSET to the result of the
5242 expression. */
5244 static struct dw_loc_descr_struct *
5245 build_cfa_loc (dw_cfa_location *cfa, HOST_WIDE_INT offset)
5247 struct dw_loc_descr_struct *head, *tmp;
5249 offset += cfa->offset;
5251 if (cfa->indirect)
5253 head = new_reg_loc_descr (cfa->reg, cfa->base_offset);
5254 head->dw_loc_oprnd1.val_class = dw_val_class_const;
5255 tmp = new_loc_descr (DW_OP_deref, 0, 0);
5256 add_loc_descr (&head, tmp);
5257 if (offset != 0)
5259 tmp = new_loc_descr (DW_OP_plus_uconst, offset, 0);
5260 add_loc_descr (&head, tmp);
5263 else
5264 head = new_reg_loc_descr (cfa->reg, offset);
5266 return head;
5269 /* This function builds a dwarf location descriptor sequence for
5270 the address at OFFSET from the CFA when stack is aligned to
5271 ALIGNMENT byte. */
5273 static struct dw_loc_descr_struct *
5274 build_cfa_aligned_loc (HOST_WIDE_INT offset, HOST_WIDE_INT alignment)
5276 struct dw_loc_descr_struct *head;
5277 unsigned int dwarf_fp
5278 = DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM);
5280 /* When CFA is defined as FP+OFFSET, emulate stack alignment. */
5281 if (cfa.reg == HARD_FRAME_POINTER_REGNUM && cfa.indirect == 0)
5283 head = new_reg_loc_descr (dwarf_fp, 0);
5284 add_loc_descr (&head, int_loc_descriptor (alignment));
5285 add_loc_descr (&head, new_loc_descr (DW_OP_and, 0, 0));
5286 loc_descr_plus_const (&head, offset);
5288 else
5289 head = new_reg_loc_descr (dwarf_fp, offset);
5290 return head;
5293 /* This function fills in aa dw_cfa_location structure from a dwarf location
5294 descriptor sequence. */
5296 static void
5297 get_cfa_from_loc_descr (dw_cfa_location *cfa, struct dw_loc_descr_struct *loc)
5299 struct dw_loc_descr_struct *ptr;
5300 cfa->offset = 0;
5301 cfa->base_offset = 0;
5302 cfa->indirect = 0;
5303 cfa->reg = -1;
5305 for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
5307 enum dwarf_location_atom op = ptr->dw_loc_opc;
5309 switch (op)
5311 case DW_OP_reg0:
5312 case DW_OP_reg1:
5313 case DW_OP_reg2:
5314 case DW_OP_reg3:
5315 case DW_OP_reg4:
5316 case DW_OP_reg5:
5317 case DW_OP_reg6:
5318 case DW_OP_reg7:
5319 case DW_OP_reg8:
5320 case DW_OP_reg9:
5321 case DW_OP_reg10:
5322 case DW_OP_reg11:
5323 case DW_OP_reg12:
5324 case DW_OP_reg13:
5325 case DW_OP_reg14:
5326 case DW_OP_reg15:
5327 case DW_OP_reg16:
5328 case DW_OP_reg17:
5329 case DW_OP_reg18:
5330 case DW_OP_reg19:
5331 case DW_OP_reg20:
5332 case DW_OP_reg21:
5333 case DW_OP_reg22:
5334 case DW_OP_reg23:
5335 case DW_OP_reg24:
5336 case DW_OP_reg25:
5337 case DW_OP_reg26:
5338 case DW_OP_reg27:
5339 case DW_OP_reg28:
5340 case DW_OP_reg29:
5341 case DW_OP_reg30:
5342 case DW_OP_reg31:
5343 cfa->reg = op - DW_OP_reg0;
5344 break;
5345 case DW_OP_regx:
5346 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
5347 break;
5348 case DW_OP_breg0:
5349 case DW_OP_breg1:
5350 case DW_OP_breg2:
5351 case DW_OP_breg3:
5352 case DW_OP_breg4:
5353 case DW_OP_breg5:
5354 case DW_OP_breg6:
5355 case DW_OP_breg7:
5356 case DW_OP_breg8:
5357 case DW_OP_breg9:
5358 case DW_OP_breg10:
5359 case DW_OP_breg11:
5360 case DW_OP_breg12:
5361 case DW_OP_breg13:
5362 case DW_OP_breg14:
5363 case DW_OP_breg15:
5364 case DW_OP_breg16:
5365 case DW_OP_breg17:
5366 case DW_OP_breg18:
5367 case DW_OP_breg19:
5368 case DW_OP_breg20:
5369 case DW_OP_breg21:
5370 case DW_OP_breg22:
5371 case DW_OP_breg23:
5372 case DW_OP_breg24:
5373 case DW_OP_breg25:
5374 case DW_OP_breg26:
5375 case DW_OP_breg27:
5376 case DW_OP_breg28:
5377 case DW_OP_breg29:
5378 case DW_OP_breg30:
5379 case DW_OP_breg31:
5380 cfa->reg = op - DW_OP_breg0;
5381 cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
5382 break;
5383 case DW_OP_bregx:
5384 cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
5385 cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
5386 break;
5387 case DW_OP_deref:
5388 cfa->indirect = 1;
5389 break;
5390 case DW_OP_plus_uconst:
5391 cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
5392 break;
5393 default:
5394 internal_error ("DW_LOC_OP %s not implemented",
5395 dwarf_stack_op_name (ptr->dw_loc_opc));
5399 #endif /* .debug_frame support */
5401 /* And now, the support for symbolic debugging information. */
5402 #ifdef DWARF2_DEBUGGING_INFO
5404 /* .debug_str support. */
5405 static int output_indirect_string (void **, void *);
5407 static void dwarf2out_init (const char *);
5408 static void dwarf2out_finish (const char *);
5409 static void dwarf2out_assembly_start (void);
5410 static void dwarf2out_define (unsigned int, const char *);
5411 static void dwarf2out_undef (unsigned int, const char *);
5412 static void dwarf2out_start_source_file (unsigned, const char *);
5413 static void dwarf2out_end_source_file (unsigned);
5414 static void dwarf2out_function_decl (tree);
5415 static void dwarf2out_begin_block (unsigned, unsigned);
5416 static void dwarf2out_end_block (unsigned, unsigned);
5417 static bool dwarf2out_ignore_block (const_tree);
5418 static void dwarf2out_global_decl (tree);
5419 static void dwarf2out_type_decl (tree, int);
5420 static void dwarf2out_imported_module_or_decl (tree, tree, tree, bool);
5421 static void dwarf2out_imported_module_or_decl_1 (tree, tree, tree,
5422 dw_die_ref);
5423 static void dwarf2out_abstract_function (tree);
5424 static void dwarf2out_var_location (rtx);
5425 static void dwarf2out_direct_call (tree);
5426 static void dwarf2out_virtual_call_token (tree, int);
5427 static void dwarf2out_copy_call_info (rtx, rtx);
5428 static void dwarf2out_virtual_call (int);
5429 static void dwarf2out_begin_function (tree);
5430 static void dwarf2out_set_name (tree, tree);
5432 /* The debug hooks structure. */
5434 const struct gcc_debug_hooks dwarf2_debug_hooks =
5436 dwarf2out_init,
5437 dwarf2out_finish,
5438 dwarf2out_assembly_start,
5439 dwarf2out_define,
5440 dwarf2out_undef,
5441 dwarf2out_start_source_file,
5442 dwarf2out_end_source_file,
5443 dwarf2out_begin_block,
5444 dwarf2out_end_block,
5445 dwarf2out_ignore_block,
5446 dwarf2out_source_line,
5447 dwarf2out_begin_prologue,
5448 debug_nothing_int_charstar, /* end_prologue */
5449 dwarf2out_end_epilogue,
5450 dwarf2out_begin_function,
5451 debug_nothing_int, /* end_function */
5452 dwarf2out_function_decl, /* function_decl */
5453 dwarf2out_global_decl,
5454 dwarf2out_type_decl, /* type_decl */
5455 dwarf2out_imported_module_or_decl,
5456 debug_nothing_tree, /* deferred_inline_function */
5457 /* The DWARF 2 backend tries to reduce debugging bloat by not
5458 emitting the abstract description of inline functions until
5459 something tries to reference them. */
5460 dwarf2out_abstract_function, /* outlining_inline_function */
5461 debug_nothing_rtx, /* label */
5462 debug_nothing_int, /* handle_pch */
5463 dwarf2out_var_location,
5464 dwarf2out_switch_text_section,
5465 dwarf2out_direct_call,
5466 dwarf2out_virtual_call_token,
5467 dwarf2out_copy_call_info,
5468 dwarf2out_virtual_call,
5469 dwarf2out_set_name,
5470 1 /* start_end_main_source_file */
5472 #endif
5474 /* NOTE: In the comments in this file, many references are made to
5475 "Debugging Information Entries". This term is abbreviated as `DIE'
5476 throughout the remainder of this file. */
5478 /* An internal representation of the DWARF output is built, and then
5479 walked to generate the DWARF debugging info. The walk of the internal
5480 representation is done after the entire program has been compiled.
5481 The types below are used to describe the internal representation. */
5483 /* Various DIE's use offsets relative to the beginning of the
5484 .debug_info section to refer to each other. */
5486 typedef long int dw_offset;
5488 /* Define typedefs here to avoid circular dependencies. */
5490 typedef struct dw_attr_struct *dw_attr_ref;
5491 typedef struct dw_line_info_struct *dw_line_info_ref;
5492 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
5493 typedef struct pubname_struct *pubname_ref;
5494 typedef struct dw_ranges_struct *dw_ranges_ref;
5495 typedef struct dw_ranges_by_label_struct *dw_ranges_by_label_ref;
5496 typedef struct comdat_type_struct *comdat_type_node_ref;
5498 /* Each entry in the line_info_table maintains the file and
5499 line number associated with the label generated for that
5500 entry. The label gives the PC value associated with
5501 the line number entry. */
5503 typedef struct GTY(()) dw_line_info_struct {
5504 unsigned long dw_file_num;
5505 unsigned long dw_line_num;
5507 dw_line_info_entry;
5509 /* Line information for functions in separate sections; each one gets its
5510 own sequence. */
5511 typedef struct GTY(()) dw_separate_line_info_struct {
5512 unsigned long dw_file_num;
5513 unsigned long dw_line_num;
5514 unsigned long function;
5516 dw_separate_line_info_entry;
5518 /* Each DIE attribute has a field specifying the attribute kind,
5519 a link to the next attribute in the chain, and an attribute value.
5520 Attributes are typically linked below the DIE they modify. */
5522 typedef struct GTY(()) dw_attr_struct {
5523 enum dwarf_attribute dw_attr;
5524 dw_val_node dw_attr_val;
5526 dw_attr_node;
5528 DEF_VEC_O(dw_attr_node);
5529 DEF_VEC_ALLOC_O(dw_attr_node,gc);
5531 /* The Debugging Information Entry (DIE) structure. DIEs form a tree.
5532 The children of each node form a circular list linked by
5533 die_sib. die_child points to the node *before* the "first" child node. */
5535 typedef struct GTY((chain_circular ("%h.die_sib"))) die_struct {
5536 enum dwarf_tag die_tag;
5537 union die_symbol_or_type_node
5539 char * GTY ((tag ("0"))) die_symbol;
5540 comdat_type_node_ref GTY ((tag ("1"))) die_type_node;
5542 GTY ((desc ("dwarf_version >= 4"))) die_id;
5543 VEC(dw_attr_node,gc) * die_attr;
5544 dw_die_ref die_parent;
5545 dw_die_ref die_child;
5546 dw_die_ref die_sib;
5547 dw_die_ref die_definition; /* ref from a specification to its definition */
5548 dw_offset die_offset;
5549 unsigned long die_abbrev;
5550 int die_mark;
5551 /* Die is used and must not be pruned as unused. */
5552 int die_perennial_p;
5553 unsigned int decl_id;
5555 die_node;
5557 /* Evaluate 'expr' while 'c' is set to each child of DIE in order. */
5558 #define FOR_EACH_CHILD(die, c, expr) do { \
5559 c = die->die_child; \
5560 if (c) do { \
5561 c = c->die_sib; \
5562 expr; \
5563 } while (c != die->die_child); \
5564 } while (0)
5566 /* The pubname structure */
5568 typedef struct GTY(()) pubname_struct {
5569 dw_die_ref die;
5570 const char *name;
5572 pubname_entry;
5574 DEF_VEC_O(pubname_entry);
5575 DEF_VEC_ALLOC_O(pubname_entry, gc);
5577 struct GTY(()) dw_ranges_struct {
5578 /* If this is positive, it's a block number, otherwise it's a
5579 bitwise-negated index into dw_ranges_by_label. */
5580 int num;
5583 struct GTY(()) dw_ranges_by_label_struct {
5584 const char *begin;
5585 const char *end;
5588 /* The comdat type node structure. */
5589 typedef struct GTY(()) comdat_type_struct
5591 dw_die_ref root_die;
5592 dw_die_ref type_die;
5593 char signature[DWARF_TYPE_SIGNATURE_SIZE];
5594 struct comdat_type_struct *next;
5596 comdat_type_node;
5598 /* The limbo die list structure. */
5599 typedef struct GTY(()) limbo_die_struct {
5600 dw_die_ref die;
5601 tree created_for;
5602 struct limbo_die_struct *next;
5604 limbo_die_node;
5606 typedef struct GTY(()) skeleton_chain_struct
5608 dw_die_ref old_die;
5609 dw_die_ref new_die;
5610 struct skeleton_chain_struct *parent;
5612 skeleton_chain_node;
5614 /* How to start an assembler comment. */
5615 #ifndef ASM_COMMENT_START
5616 #define ASM_COMMENT_START ";#"
5617 #endif
5619 /* Define a macro which returns nonzero for a TYPE_DECL which was
5620 implicitly generated for a tagged type.
5622 Note that unlike the gcc front end (which generates a NULL named
5623 TYPE_DECL node for each complete tagged type, each array type, and
5624 each function type node created) the g++ front end generates a
5625 _named_ TYPE_DECL node for each tagged type node created.
5626 These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
5627 generate a DW_TAG_typedef DIE for them. */
5629 #define TYPE_DECL_IS_STUB(decl) \
5630 (DECL_NAME (decl) == NULL_TREE \
5631 || (DECL_ARTIFICIAL (decl) \
5632 && is_tagged_type (TREE_TYPE (decl)) \
5633 && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl))) \
5634 /* This is necessary for stub decls that \
5635 appear in nested inline functions. */ \
5636 || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
5637 && (decl_ultimate_origin (decl) \
5638 == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
5640 /* Information concerning the compilation unit's programming
5641 language, and compiler version. */
5643 /* Fixed size portion of the DWARF compilation unit header. */
5644 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
5645 (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
5647 /* Fixed size portion of the DWARF comdat type unit header. */
5648 #define DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE \
5649 (DWARF_COMPILE_UNIT_HEADER_SIZE + DWARF_TYPE_SIGNATURE_SIZE \
5650 + DWARF_OFFSET_SIZE)
5652 /* Fixed size portion of public names info. */
5653 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
5655 /* Fixed size portion of the address range info. */
5656 #define DWARF_ARANGES_HEADER_SIZE \
5657 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
5658 DWARF2_ADDR_SIZE * 2) \
5659 - DWARF_INITIAL_LENGTH_SIZE)
5661 /* Size of padding portion in the address range info. It must be
5662 aligned to twice the pointer size. */
5663 #define DWARF_ARANGES_PAD_SIZE \
5664 (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
5665 DWARF2_ADDR_SIZE * 2) \
5666 - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
5668 /* Use assembler line directives if available. */
5669 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
5670 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
5671 #define DWARF2_ASM_LINE_DEBUG_INFO 1
5672 #else
5673 #define DWARF2_ASM_LINE_DEBUG_INFO 0
5674 #endif
5675 #endif
5677 /* Minimum line offset in a special line info. opcode.
5678 This value was chosen to give a reasonable range of values. */
5679 #define DWARF_LINE_BASE -10
5681 /* First special line opcode - leave room for the standard opcodes. */
5682 #define DWARF_LINE_OPCODE_BASE 10
5684 /* Range of line offsets in a special line info. opcode. */
5685 #define DWARF_LINE_RANGE (254-DWARF_LINE_OPCODE_BASE+1)
5687 /* Flag that indicates the initial value of the is_stmt_start flag.
5688 In the present implementation, we do not mark any lines as
5689 the beginning of a source statement, because that information
5690 is not made available by the GCC front-end. */
5691 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
5693 /* Maximum number of operations per instruction bundle. */
5694 #ifndef DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
5695 #define DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN 1
5696 #endif
5698 #ifdef DWARF2_DEBUGGING_INFO
5699 /* This location is used by calc_die_sizes() to keep track
5700 the offset of each DIE within the .debug_info section. */
5701 static unsigned long next_die_offset;
5702 #endif
5704 /* Record the root of the DIE's built for the current compilation unit. */
5705 static GTY(()) dw_die_ref comp_unit_die;
5707 /* A list of type DIEs that have been separated into comdat sections. */
5708 static GTY(()) comdat_type_node *comdat_type_list;
5710 /* A list of DIEs with a NULL parent waiting to be relocated. */
5711 static GTY(()) limbo_die_node *limbo_die_list;
5713 /* A list of DIEs for which we may have to generate
5714 DW_AT_MIPS_linkage_name once their DECL_ASSEMBLER_NAMEs are
5715 set. */
5716 static GTY(()) limbo_die_node *deferred_asm_name;
5718 /* Filenames referenced by this compilation unit. */
5719 static GTY((param_is (struct dwarf_file_data))) htab_t file_table;
5721 /* A hash table of references to DIE's that describe declarations.
5722 The key is a DECL_UID() which is a unique number identifying each decl. */
5723 static GTY ((param_is (struct die_struct))) htab_t decl_die_table;
5725 /* A hash table of references to DIE's that describe COMMON blocks.
5726 The key is DECL_UID() ^ die_parent. */
5727 static GTY ((param_is (struct die_struct))) htab_t common_block_die_table;
5729 typedef struct GTY(()) die_arg_entry_struct {
5730 dw_die_ref die;
5731 tree arg;
5732 } die_arg_entry;
5734 DEF_VEC_O(die_arg_entry);
5735 DEF_VEC_ALLOC_O(die_arg_entry,gc);
5737 /* Node of the variable location list. */
5738 struct GTY ((chain_next ("%h.next"))) var_loc_node {
5739 rtx GTY (()) var_loc_note;
5740 const char * GTY (()) label;
5741 struct var_loc_node * GTY (()) next;
5744 /* Variable location list. */
5745 struct GTY (()) var_loc_list_def {
5746 struct var_loc_node * GTY (()) first;
5748 /* Do not mark the last element of the chained list because
5749 it is marked through the chain. */
5750 struct var_loc_node * GTY ((skip ("%h"))) last;
5752 /* DECL_UID of the variable decl. */
5753 unsigned int decl_id;
5755 typedef struct var_loc_list_def var_loc_list;
5758 /* Table of decl location linked lists. */
5759 static GTY ((param_is (var_loc_list))) htab_t decl_loc_table;
5761 /* A pointer to the base of a list of references to DIE's that
5762 are uniquely identified by their tag, presence/absence of
5763 children DIE's, and list of attribute/value pairs. */
5764 static GTY((length ("abbrev_die_table_allocated")))
5765 dw_die_ref *abbrev_die_table;
5767 /* Number of elements currently allocated for abbrev_die_table. */
5768 static GTY(()) unsigned abbrev_die_table_allocated;
5770 /* Number of elements in type_die_table currently in use. */
5771 static GTY(()) unsigned abbrev_die_table_in_use;
5773 /* Size (in elements) of increments by which we may expand the
5774 abbrev_die_table. */
5775 #define ABBREV_DIE_TABLE_INCREMENT 256
5777 /* A pointer to the base of a table that contains line information
5778 for each source code line in .text in the compilation unit. */
5779 static GTY((length ("line_info_table_allocated")))
5780 dw_line_info_ref line_info_table;
5782 /* Number of elements currently allocated for line_info_table. */
5783 static GTY(()) unsigned line_info_table_allocated;
5785 /* Number of elements in line_info_table currently in use. */
5786 static GTY(()) unsigned line_info_table_in_use;
5788 /* A pointer to the base of a table that contains line information
5789 for each source code line outside of .text in the compilation unit. */
5790 static GTY ((length ("separate_line_info_table_allocated")))
5791 dw_separate_line_info_ref separate_line_info_table;
5793 /* Number of elements currently allocated for separate_line_info_table. */
5794 static GTY(()) unsigned separate_line_info_table_allocated;
5796 /* Number of elements in separate_line_info_table currently in use. */
5797 static GTY(()) unsigned separate_line_info_table_in_use;
5799 /* Size (in elements) of increments by which we may expand the
5800 line_info_table. */
5801 #define LINE_INFO_TABLE_INCREMENT 1024
5803 /* A pointer to the base of a table that contains a list of publicly
5804 accessible names. */
5805 static GTY (()) VEC (pubname_entry, gc) * pubname_table;
5807 /* A pointer to the base of a table that contains a list of publicly
5808 accessible types. */
5809 static GTY (()) VEC (pubname_entry, gc) * pubtype_table;
5811 /* Array of dies for which we should generate .debug_arange info. */
5812 static GTY((length ("arange_table_allocated"))) dw_die_ref *arange_table;
5814 /* Number of elements currently allocated for arange_table. */
5815 static GTY(()) unsigned arange_table_allocated;
5817 /* Number of elements in arange_table currently in use. */
5818 static GTY(()) unsigned arange_table_in_use;
5820 /* Size (in elements) of increments by which we may expand the
5821 arange_table. */
5822 #define ARANGE_TABLE_INCREMENT 64
5824 /* Array of dies for which we should generate .debug_ranges info. */
5825 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table;
5827 /* Number of elements currently allocated for ranges_table. */
5828 static GTY(()) unsigned ranges_table_allocated;
5830 /* Number of elements in ranges_table currently in use. */
5831 static GTY(()) unsigned ranges_table_in_use;
5833 /* Array of pairs of labels referenced in ranges_table. */
5834 static GTY ((length ("ranges_by_label_allocated")))
5835 dw_ranges_by_label_ref ranges_by_label;
5837 /* Number of elements currently allocated for ranges_by_label. */
5838 static GTY(()) unsigned ranges_by_label_allocated;
5840 /* Number of elements in ranges_by_label currently in use. */
5841 static GTY(()) unsigned ranges_by_label_in_use;
5843 /* Size (in elements) of increments by which we may expand the
5844 ranges_table. */
5845 #define RANGES_TABLE_INCREMENT 64
5847 /* Whether we have location lists that need outputting */
5848 static GTY(()) bool have_location_lists;
5850 /* Unique label counter. */
5851 static GTY(()) unsigned int loclabel_num;
5853 /* Unique label counter for point-of-call tables. */
5854 static GTY(()) unsigned int poc_label_num;
5856 /* The direct call table structure. */
5858 typedef struct GTY(()) dcall_struct {
5859 unsigned int poc_label_num;
5860 tree poc_decl;
5861 dw_die_ref targ_die;
5863 dcall_entry;
5865 DEF_VEC_O(dcall_entry);
5866 DEF_VEC_ALLOC_O(dcall_entry, gc);
5868 /* The virtual call table structure. */
5870 typedef struct GTY(()) vcall_struct {
5871 unsigned int poc_label_num;
5872 unsigned int vtable_slot;
5874 vcall_entry;
5876 DEF_VEC_O(vcall_entry);
5877 DEF_VEC_ALLOC_O(vcall_entry, gc);
5879 /* Pointers to the direct and virtual call tables. */
5880 static GTY (()) VEC (dcall_entry, gc) * dcall_table = NULL;
5881 static GTY (()) VEC (vcall_entry, gc) * vcall_table = NULL;
5883 /* A hash table to map INSN_UIDs to vtable slot indexes. */
5885 struct GTY (()) vcall_insn {
5886 int insn_uid;
5887 unsigned int vtable_slot;
5890 static GTY ((param_is (struct vcall_insn))) htab_t vcall_insn_table;
5892 #ifdef DWARF2_DEBUGGING_INFO
5893 /* Record whether the function being analyzed contains inlined functions. */
5894 static int current_function_has_inlines;
5895 #endif
5896 #if 0 && defined (MIPS_DEBUGGING_INFO)
5897 static int comp_unit_has_inlines;
5898 #endif
5900 /* The last file entry emitted by maybe_emit_file(). */
5901 static GTY(()) struct dwarf_file_data * last_emitted_file;
5903 /* Number of internal labels generated by gen_internal_sym(). */
5904 static GTY(()) int label_num;
5906 /* Cached result of previous call to lookup_filename. */
5907 static GTY(()) struct dwarf_file_data * file_table_last_lookup;
5909 static GTY(()) VEC(die_arg_entry,gc) *tmpl_value_parm_die_table;
5911 #ifdef DWARF2_DEBUGGING_INFO
5913 /* Offset from the "steady-state frame pointer" to the frame base,
5914 within the current function. */
5915 static HOST_WIDE_INT frame_pointer_fb_offset;
5917 /* Forward declarations for functions defined in this file. */
5919 static int is_pseudo_reg (const_rtx);
5920 static tree type_main_variant (tree);
5921 static int is_tagged_type (const_tree);
5922 static const char *dwarf_tag_name (unsigned);
5923 static const char *dwarf_attr_name (unsigned);
5924 static const char *dwarf_form_name (unsigned);
5925 static tree decl_ultimate_origin (const_tree);
5926 static tree decl_class_context (tree);
5927 static void add_dwarf_attr (dw_die_ref, dw_attr_ref);
5928 static inline enum dw_val_class AT_class (dw_attr_ref);
5929 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
5930 static inline unsigned AT_flag (dw_attr_ref);
5931 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
5932 static inline HOST_WIDE_INT AT_int (dw_attr_ref);
5933 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
5934 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_ref);
5935 static void add_AT_double (dw_die_ref, enum dwarf_attribute,
5936 HOST_WIDE_INT, unsigned HOST_WIDE_INT);
5937 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
5938 unsigned int, unsigned char *);
5939 static void add_AT_data8 (dw_die_ref, enum dwarf_attribute, unsigned char *);
5940 static hashval_t debug_str_do_hash (const void *);
5941 static int debug_str_eq (const void *, const void *);
5942 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
5943 static inline const char *AT_string (dw_attr_ref);
5944 static enum dwarf_form AT_string_form (dw_attr_ref);
5945 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
5946 static void add_AT_specification (dw_die_ref, dw_die_ref);
5947 static inline dw_die_ref AT_ref (dw_attr_ref);
5948 static inline int AT_ref_external (dw_attr_ref);
5949 static inline void set_AT_ref_external (dw_attr_ref, int);
5950 static void add_AT_fde_ref (dw_die_ref, enum dwarf_attribute, unsigned);
5951 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
5952 static inline dw_loc_descr_ref AT_loc (dw_attr_ref);
5953 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
5954 dw_loc_list_ref);
5955 static inline dw_loc_list_ref AT_loc_list (dw_attr_ref);
5956 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx);
5957 static inline rtx AT_addr (dw_attr_ref);
5958 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
5959 static void add_AT_lineptr (dw_die_ref, enum dwarf_attribute, const char *);
5960 static void add_AT_macptr (dw_die_ref, enum dwarf_attribute, const char *);
5961 static void add_AT_offset (dw_die_ref, enum dwarf_attribute,
5962 unsigned HOST_WIDE_INT);
5963 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
5964 unsigned long);
5965 static inline const char *AT_lbl (dw_attr_ref);
5966 static dw_attr_ref get_AT (dw_die_ref, enum dwarf_attribute);
5967 static const char *get_AT_low_pc (dw_die_ref);
5968 static const char *get_AT_hi_pc (dw_die_ref);
5969 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
5970 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
5971 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
5972 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
5973 static bool is_cxx (void);
5974 static bool is_fortran (void);
5975 static bool is_ada (void);
5976 static void remove_AT (dw_die_ref, enum dwarf_attribute);
5977 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
5978 static void add_child_die (dw_die_ref, dw_die_ref);
5979 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
5980 static dw_die_ref lookup_type_die (tree);
5981 static void equate_type_number_to_die (tree, dw_die_ref);
5982 static hashval_t decl_die_table_hash (const void *);
5983 static int decl_die_table_eq (const void *, const void *);
5984 static dw_die_ref lookup_decl_die (tree);
5985 static hashval_t common_block_die_table_hash (const void *);
5986 static int common_block_die_table_eq (const void *, const void *);
5987 static hashval_t decl_loc_table_hash (const void *);
5988 static int decl_loc_table_eq (const void *, const void *);
5989 static var_loc_list *lookup_decl_loc (const_tree);
5990 static void equate_decl_number_to_die (tree, dw_die_ref);
5991 static struct var_loc_node *add_var_loc_to_decl (tree, rtx);
5992 static void print_spaces (FILE *);
5993 static void print_die (dw_die_ref, FILE *);
5994 static void print_dwarf_line_table (FILE *);
5995 static dw_die_ref push_new_compile_unit (dw_die_ref, dw_die_ref);
5996 static dw_die_ref pop_compile_unit (dw_die_ref);
5997 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
5998 static void attr_checksum (dw_attr_ref, struct md5_ctx *, int *);
5999 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
6000 static void checksum_sleb128 (HOST_WIDE_INT, struct md5_ctx *);
6001 static void checksum_uleb128 (unsigned HOST_WIDE_INT, struct md5_ctx *);
6002 static void loc_checksum_ordered (dw_loc_descr_ref, struct md5_ctx *);
6003 static void attr_checksum_ordered (enum dwarf_tag, dw_attr_ref,
6004 struct md5_ctx *, int *);
6005 struct checksum_attributes;
6006 static void collect_checksum_attributes (struct checksum_attributes *, dw_die_ref);
6007 static void die_checksum_ordered (dw_die_ref, struct md5_ctx *, int *);
6008 static void checksum_die_context (dw_die_ref, struct md5_ctx *);
6009 static void generate_type_signature (dw_die_ref, comdat_type_node *);
6010 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
6011 static int same_dw_val_p (const dw_val_node *, const dw_val_node *, int *);
6012 static int same_attr_p (dw_attr_ref, dw_attr_ref, int *);
6013 static int same_die_p (dw_die_ref, dw_die_ref, int *);
6014 static int same_die_p_wrap (dw_die_ref, dw_die_ref);
6015 static void compute_section_prefix (dw_die_ref);
6016 static int is_type_die (dw_die_ref);
6017 static int is_comdat_die (dw_die_ref);
6018 static int is_symbol_die (dw_die_ref);
6019 static void assign_symbol_names (dw_die_ref);
6020 static void break_out_includes (dw_die_ref);
6021 static int is_declaration_die (dw_die_ref);
6022 static int should_move_die_to_comdat (dw_die_ref);
6023 static dw_die_ref clone_as_declaration (dw_die_ref);
6024 static dw_die_ref clone_die (dw_die_ref);
6025 static dw_die_ref clone_tree (dw_die_ref);
6026 static void copy_declaration_context (dw_die_ref, dw_die_ref);
6027 static void generate_skeleton_ancestor_tree (skeleton_chain_node *);
6028 static void generate_skeleton_bottom_up (skeleton_chain_node *);
6029 static dw_die_ref generate_skeleton (dw_die_ref);
6030 static dw_die_ref remove_child_or_replace_with_skeleton (dw_die_ref,
6031 dw_die_ref);
6032 static void break_out_comdat_types (dw_die_ref);
6033 static dw_die_ref copy_ancestor_tree (dw_die_ref, dw_die_ref, htab_t);
6034 static void copy_decls_walk (dw_die_ref, dw_die_ref, htab_t);
6035 static void copy_decls_for_unworthy_types (dw_die_ref);
6037 static hashval_t htab_cu_hash (const void *);
6038 static int htab_cu_eq (const void *, const void *);
6039 static void htab_cu_del (void *);
6040 static int check_duplicate_cu (dw_die_ref, htab_t, unsigned *);
6041 static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
6042 static void add_sibling_attributes (dw_die_ref);
6043 static void build_abbrev_table (dw_die_ref);
6044 static void output_location_lists (dw_die_ref);
6045 static int constant_size (unsigned HOST_WIDE_INT);
6046 static unsigned long size_of_die (dw_die_ref);
6047 static void calc_die_sizes (dw_die_ref);
6048 static void mark_dies (dw_die_ref);
6049 static void unmark_dies (dw_die_ref);
6050 static void unmark_all_dies (dw_die_ref);
6051 static unsigned long size_of_pubnames (VEC (pubname_entry,gc) *);
6052 static unsigned long size_of_aranges (void);
6053 static enum dwarf_form value_format (dw_attr_ref);
6054 static void output_value_format (dw_attr_ref);
6055 static void output_abbrev_section (void);
6056 static void output_die_symbol (dw_die_ref);
6057 static void output_die (dw_die_ref);
6058 static void output_compilation_unit_header (void);
6059 static void output_comp_unit (dw_die_ref, int);
6060 static void output_comdat_type_unit (comdat_type_node *);
6061 static const char *dwarf2_name (tree, int);
6062 static void add_pubname (tree, dw_die_ref);
6063 static void add_pubname_string (const char *, dw_die_ref);
6064 static void add_pubtype (tree, dw_die_ref);
6065 static void output_pubnames (VEC (pubname_entry,gc) *);
6066 static void add_arange (tree, dw_die_ref);
6067 static void output_aranges (void);
6068 static unsigned int add_ranges_num (int);
6069 static unsigned int add_ranges (const_tree);
6070 static void add_ranges_by_labels (dw_die_ref, const char *, const char *,
6071 bool *);
6072 static void output_ranges (void);
6073 static void output_line_info (void);
6074 static void output_file_names (void);
6075 static dw_die_ref base_type_die (tree);
6076 static int is_base_type (tree);
6077 static dw_die_ref subrange_type_die (tree, tree, tree, dw_die_ref);
6078 static dw_die_ref modified_type_die (tree, int, int, dw_die_ref);
6079 static dw_die_ref generic_parameter_die (tree, tree, bool, dw_die_ref);
6080 static dw_die_ref template_parameter_pack_die (tree, tree, dw_die_ref);
6081 static int type_is_enum (const_tree);
6082 static unsigned int dbx_reg_number (const_rtx);
6083 static void add_loc_descr_op_piece (dw_loc_descr_ref *, int);
6084 static dw_loc_descr_ref reg_loc_descriptor (rtx, enum var_init_status);
6085 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int,
6086 enum var_init_status);
6087 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx,
6088 enum var_init_status);
6089 static dw_loc_descr_ref based_loc_descr (rtx, HOST_WIDE_INT,
6090 enum var_init_status);
6091 static int is_based_loc (const_rtx);
6092 static int resolve_one_addr (rtx *, void *);
6093 static dw_loc_descr_ref mem_loc_descriptor (rtx, enum machine_mode mode,
6094 enum var_init_status);
6095 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx,
6096 enum var_init_status);
6097 static dw_loc_descr_ref loc_descriptor (rtx, enum machine_mode mode,
6098 enum var_init_status);
6099 static dw_loc_list_ref loc_list_from_tree (tree, int);
6100 static dw_loc_descr_ref loc_descriptor_from_tree (tree, int);
6101 static HOST_WIDE_INT ceiling (HOST_WIDE_INT, unsigned int);
6102 static tree field_type (const_tree);
6103 static unsigned int simple_type_align_in_bits (const_tree);
6104 static unsigned int simple_decl_align_in_bits (const_tree);
6105 static unsigned HOST_WIDE_INT simple_type_size_in_bits (const_tree);
6106 static HOST_WIDE_INT field_byte_offset (const_tree);
6107 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
6108 dw_loc_list_ref);
6109 static void add_data_member_location_attribute (dw_die_ref, tree);
6110 static bool add_const_value_attribute (dw_die_ref, rtx);
6111 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
6112 static void insert_float (const_rtx, unsigned char *);
6113 static rtx rtl_for_decl_location (tree);
6114 static bool add_location_or_const_value_attribute (dw_die_ref, tree,
6115 enum dwarf_attribute);
6116 static bool tree_add_const_value_attribute (dw_die_ref, tree);
6117 static bool tree_add_const_value_attribute_for_decl (dw_die_ref, tree);
6118 static void add_name_attribute (dw_die_ref, const char *);
6119 static void add_comp_dir_attribute (dw_die_ref);
6120 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree);
6121 static void add_subscript_info (dw_die_ref, tree, bool);
6122 static void add_byte_size_attribute (dw_die_ref, tree);
6123 static void add_bit_offset_attribute (dw_die_ref, tree);
6124 static void add_bit_size_attribute (dw_die_ref, tree);
6125 static void add_prototyped_attribute (dw_die_ref, tree);
6126 static dw_die_ref add_abstract_origin_attribute (dw_die_ref, tree);
6127 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
6128 static void add_src_coords_attributes (dw_die_ref, tree);
6129 static void add_name_and_src_coords_attributes (dw_die_ref, tree);
6130 static void push_decl_scope (tree);
6131 static void pop_decl_scope (void);
6132 static dw_die_ref scope_die_for (tree, dw_die_ref);
6133 static inline int local_scope_p (dw_die_ref);
6134 static inline int class_scope_p (dw_die_ref);
6135 static inline int class_or_namespace_scope_p (dw_die_ref);
6136 static void add_type_attribute (dw_die_ref, tree, int, int, dw_die_ref);
6137 static void add_calling_convention_attribute (dw_die_ref, tree);
6138 static const char *type_tag (const_tree);
6139 static tree member_declared_type (const_tree);
6140 #if 0
6141 static const char *decl_start_label (tree);
6142 #endif
6143 static void gen_array_type_die (tree, dw_die_ref);
6144 static void gen_descr_array_type_die (tree, struct array_descr_info *, dw_die_ref);
6145 #if 0
6146 static void gen_entry_point_die (tree, dw_die_ref);
6147 #endif
6148 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
6149 static dw_die_ref gen_formal_parameter_die (tree, tree, bool, dw_die_ref);
6150 static dw_die_ref gen_formal_parameter_pack_die (tree, tree, dw_die_ref, tree*);
6151 static void gen_unspecified_parameters_die (tree, dw_die_ref);
6152 static void gen_formal_types_die (tree, dw_die_ref);
6153 static void gen_subprogram_die (tree, dw_die_ref);
6154 static void gen_variable_die (tree, tree, dw_die_ref);
6155 static void gen_const_die (tree, dw_die_ref);
6156 static void gen_label_die (tree, dw_die_ref);
6157 static void gen_lexical_block_die (tree, dw_die_ref, int);
6158 static void gen_inlined_subroutine_die (tree, dw_die_ref, int);
6159 static void gen_field_die (tree, dw_die_ref);
6160 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
6161 static dw_die_ref gen_compile_unit_die (const char *);
6162 static void gen_inheritance_die (tree, tree, dw_die_ref);
6163 static void gen_member_die (tree, dw_die_ref);
6164 static void gen_struct_or_union_type_die (tree, dw_die_ref,
6165 enum debug_info_usage);
6166 static void gen_subroutine_type_die (tree, dw_die_ref);
6167 static void gen_typedef_die (tree, dw_die_ref);
6168 static void gen_type_die (tree, dw_die_ref);
6169 static void gen_block_die (tree, dw_die_ref, int);
6170 static void decls_for_scope (tree, dw_die_ref, int);
6171 static int is_redundant_typedef (const_tree);
6172 static inline dw_die_ref get_context_die (tree);
6173 static void gen_namespace_die (tree, dw_die_ref);
6174 static void gen_decl_die (tree, tree, dw_die_ref);
6175 static dw_die_ref force_decl_die (tree);
6176 static dw_die_ref force_type_die (tree);
6177 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
6178 static dw_die_ref declare_in_namespace (tree, dw_die_ref);
6179 static struct dwarf_file_data * lookup_filename (const char *);
6180 static void retry_incomplete_types (void);
6181 static void gen_type_die_for_member (tree, tree, dw_die_ref);
6182 static void gen_generic_params_dies (tree);
6183 static void splice_child_die (dw_die_ref, dw_die_ref);
6184 static int file_info_cmp (const void *, const void *);
6185 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *,
6186 const char *, const char *);
6187 static void output_loc_list (dw_loc_list_ref);
6188 static char *gen_internal_sym (const char *);
6190 static void prune_unmark_dies (dw_die_ref);
6191 static void prune_unused_types_mark (dw_die_ref, int);
6192 static void prune_unused_types_walk (dw_die_ref);
6193 static void prune_unused_types_walk_attribs (dw_die_ref);
6194 static void prune_unused_types_prune (dw_die_ref);
6195 static void prune_unused_types (void);
6196 static int maybe_emit_file (struct dwarf_file_data *fd);
6197 static void append_entry_to_tmpl_value_parm_die_table (dw_die_ref, tree);
6198 static void gen_remaining_tmpl_value_param_die_attribute (void);
6200 /* Section names used to hold DWARF debugging information. */
6201 #ifndef DEBUG_INFO_SECTION
6202 #define DEBUG_INFO_SECTION ".debug_info"
6203 #endif
6204 #ifndef DEBUG_ABBREV_SECTION
6205 #define DEBUG_ABBREV_SECTION ".debug_abbrev"
6206 #endif
6207 #ifndef DEBUG_ARANGES_SECTION
6208 #define DEBUG_ARANGES_SECTION ".debug_aranges"
6209 #endif
6210 #ifndef DEBUG_MACINFO_SECTION
6211 #define DEBUG_MACINFO_SECTION ".debug_macinfo"
6212 #endif
6213 #ifndef DEBUG_LINE_SECTION
6214 #define DEBUG_LINE_SECTION ".debug_line"
6215 #endif
6216 #ifndef DEBUG_LOC_SECTION
6217 #define DEBUG_LOC_SECTION ".debug_loc"
6218 #endif
6219 #ifndef DEBUG_PUBNAMES_SECTION
6220 #define DEBUG_PUBNAMES_SECTION ".debug_pubnames"
6221 #endif
6222 #ifndef DEBUG_PUBTYPES_SECTION
6223 #define DEBUG_PUBTYPES_SECTION ".debug_pubtypes"
6224 #endif
6225 #ifndef DEBUG_DCALL_SECTION
6226 #define DEBUG_DCALL_SECTION ".debug_dcall"
6227 #endif
6228 #ifndef DEBUG_VCALL_SECTION
6229 #define DEBUG_VCALL_SECTION ".debug_vcall"
6230 #endif
6231 #ifndef DEBUG_STR_SECTION
6232 #define DEBUG_STR_SECTION ".debug_str"
6233 #endif
6234 #ifndef DEBUG_RANGES_SECTION
6235 #define DEBUG_RANGES_SECTION ".debug_ranges"
6236 #endif
6238 /* Standard ELF section names for compiled code and data. */
6239 #ifndef TEXT_SECTION_NAME
6240 #define TEXT_SECTION_NAME ".text"
6241 #endif
6243 /* Section flags for .debug_str section. */
6244 #define DEBUG_STR_SECTION_FLAGS \
6245 (HAVE_GAS_SHF_MERGE && flag_merge_debug_strings \
6246 ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1 \
6247 : SECTION_DEBUG)
6249 /* Labels we insert at beginning sections we can reference instead of
6250 the section names themselves. */
6252 #ifndef TEXT_SECTION_LABEL
6253 #define TEXT_SECTION_LABEL "Ltext"
6254 #endif
6255 #ifndef COLD_TEXT_SECTION_LABEL
6256 #define COLD_TEXT_SECTION_LABEL "Ltext_cold"
6257 #endif
6258 #ifndef DEBUG_LINE_SECTION_LABEL
6259 #define DEBUG_LINE_SECTION_LABEL "Ldebug_line"
6260 #endif
6261 #ifndef DEBUG_INFO_SECTION_LABEL
6262 #define DEBUG_INFO_SECTION_LABEL "Ldebug_info"
6263 #endif
6264 #ifndef DEBUG_ABBREV_SECTION_LABEL
6265 #define DEBUG_ABBREV_SECTION_LABEL "Ldebug_abbrev"
6266 #endif
6267 #ifndef DEBUG_LOC_SECTION_LABEL
6268 #define DEBUG_LOC_SECTION_LABEL "Ldebug_loc"
6269 #endif
6270 #ifndef DEBUG_RANGES_SECTION_LABEL
6271 #define DEBUG_RANGES_SECTION_LABEL "Ldebug_ranges"
6272 #endif
6273 #ifndef DEBUG_MACINFO_SECTION_LABEL
6274 #define DEBUG_MACINFO_SECTION_LABEL "Ldebug_macinfo"
6275 #endif
6277 /* Definitions of defaults for formats and names of various special
6278 (artificial) labels which may be generated within this file (when the -g
6279 options is used and DWARF2_DEBUGGING_INFO is in effect.
6280 If necessary, these may be overridden from within the tm.h file, but
6281 typically, overriding these defaults is unnecessary. */
6283 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
6284 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6285 static char cold_text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6286 static char cold_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
6287 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6288 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6289 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6290 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6291 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6292 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
6294 #ifndef TEXT_END_LABEL
6295 #define TEXT_END_LABEL "Letext"
6296 #endif
6297 #ifndef COLD_END_LABEL
6298 #define COLD_END_LABEL "Letext_cold"
6299 #endif
6300 #ifndef BLOCK_BEGIN_LABEL
6301 #define BLOCK_BEGIN_LABEL "LBB"
6302 #endif
6303 #ifndef BLOCK_END_LABEL
6304 #define BLOCK_END_LABEL "LBE"
6305 #endif
6306 #ifndef LINE_CODE_LABEL
6307 #define LINE_CODE_LABEL "LM"
6308 #endif
6309 #ifndef SEPARATE_LINE_CODE_LABEL
6310 #define SEPARATE_LINE_CODE_LABEL "LSM"
6311 #endif
6314 /* We allow a language front-end to designate a function that is to be
6315 called to "demangle" any name before it is put into a DIE. */
6317 static const char *(*demangle_name_func) (const char *);
6319 void
6320 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
6322 demangle_name_func = func;
6325 /* Test if rtl node points to a pseudo register. */
6327 static inline int
6328 is_pseudo_reg (const_rtx rtl)
6330 return ((REG_P (rtl) && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
6331 || (GET_CODE (rtl) == SUBREG
6332 && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
6335 /* Return a reference to a type, with its const and volatile qualifiers
6336 removed. */
6338 static inline tree
6339 type_main_variant (tree type)
6341 type = TYPE_MAIN_VARIANT (type);
6343 /* ??? There really should be only one main variant among any group of
6344 variants of a given type (and all of the MAIN_VARIANT values for all
6345 members of the group should point to that one type) but sometimes the C
6346 front-end messes this up for array types, so we work around that bug
6347 here. */
6348 if (TREE_CODE (type) == ARRAY_TYPE)
6349 while (type != TYPE_MAIN_VARIANT (type))
6350 type = TYPE_MAIN_VARIANT (type);
6352 return type;
6355 /* Return nonzero if the given type node represents a tagged type. */
6357 static inline int
6358 is_tagged_type (const_tree type)
6360 enum tree_code code = TREE_CODE (type);
6362 return (code == RECORD_TYPE || code == UNION_TYPE
6363 || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
6366 /* Convert a DIE tag into its string name. */
6368 static const char *
6369 dwarf_tag_name (unsigned int tag)
6371 switch (tag)
6373 case DW_TAG_padding:
6374 return "DW_TAG_padding";
6375 case DW_TAG_array_type:
6376 return "DW_TAG_array_type";
6377 case DW_TAG_class_type:
6378 return "DW_TAG_class_type";
6379 case DW_TAG_entry_point:
6380 return "DW_TAG_entry_point";
6381 case DW_TAG_enumeration_type:
6382 return "DW_TAG_enumeration_type";
6383 case DW_TAG_formal_parameter:
6384 return "DW_TAG_formal_parameter";
6385 case DW_TAG_imported_declaration:
6386 return "DW_TAG_imported_declaration";
6387 case DW_TAG_label:
6388 return "DW_TAG_label";
6389 case DW_TAG_lexical_block:
6390 return "DW_TAG_lexical_block";
6391 case DW_TAG_member:
6392 return "DW_TAG_member";
6393 case DW_TAG_pointer_type:
6394 return "DW_TAG_pointer_type";
6395 case DW_TAG_reference_type:
6396 return "DW_TAG_reference_type";
6397 case DW_TAG_compile_unit:
6398 return "DW_TAG_compile_unit";
6399 case DW_TAG_string_type:
6400 return "DW_TAG_string_type";
6401 case DW_TAG_structure_type:
6402 return "DW_TAG_structure_type";
6403 case DW_TAG_subroutine_type:
6404 return "DW_TAG_subroutine_type";
6405 case DW_TAG_typedef:
6406 return "DW_TAG_typedef";
6407 case DW_TAG_union_type:
6408 return "DW_TAG_union_type";
6409 case DW_TAG_unspecified_parameters:
6410 return "DW_TAG_unspecified_parameters";
6411 case DW_TAG_variant:
6412 return "DW_TAG_variant";
6413 case DW_TAG_common_block:
6414 return "DW_TAG_common_block";
6415 case DW_TAG_common_inclusion:
6416 return "DW_TAG_common_inclusion";
6417 case DW_TAG_inheritance:
6418 return "DW_TAG_inheritance";
6419 case DW_TAG_inlined_subroutine:
6420 return "DW_TAG_inlined_subroutine";
6421 case DW_TAG_module:
6422 return "DW_TAG_module";
6423 case DW_TAG_ptr_to_member_type:
6424 return "DW_TAG_ptr_to_member_type";
6425 case DW_TAG_set_type:
6426 return "DW_TAG_set_type";
6427 case DW_TAG_subrange_type:
6428 return "DW_TAG_subrange_type";
6429 case DW_TAG_with_stmt:
6430 return "DW_TAG_with_stmt";
6431 case DW_TAG_access_declaration:
6432 return "DW_TAG_access_declaration";
6433 case DW_TAG_base_type:
6434 return "DW_TAG_base_type";
6435 case DW_TAG_catch_block:
6436 return "DW_TAG_catch_block";
6437 case DW_TAG_const_type:
6438 return "DW_TAG_const_type";
6439 case DW_TAG_constant:
6440 return "DW_TAG_constant";
6441 case DW_TAG_enumerator:
6442 return "DW_TAG_enumerator";
6443 case DW_TAG_file_type:
6444 return "DW_TAG_file_type";
6445 case DW_TAG_friend:
6446 return "DW_TAG_friend";
6447 case DW_TAG_namelist:
6448 return "DW_TAG_namelist";
6449 case DW_TAG_namelist_item:
6450 return "DW_TAG_namelist_item";
6451 case DW_TAG_packed_type:
6452 return "DW_TAG_packed_type";
6453 case DW_TAG_subprogram:
6454 return "DW_TAG_subprogram";
6455 case DW_TAG_template_type_param:
6456 return "DW_TAG_template_type_param";
6457 case DW_TAG_template_value_param:
6458 return "DW_TAG_template_value_param";
6459 case DW_TAG_thrown_type:
6460 return "DW_TAG_thrown_type";
6461 case DW_TAG_try_block:
6462 return "DW_TAG_try_block";
6463 case DW_TAG_variant_part:
6464 return "DW_TAG_variant_part";
6465 case DW_TAG_variable:
6466 return "DW_TAG_variable";
6467 case DW_TAG_volatile_type:
6468 return "DW_TAG_volatile_type";
6469 case DW_TAG_dwarf_procedure:
6470 return "DW_TAG_dwarf_procedure";
6471 case DW_TAG_restrict_type:
6472 return "DW_TAG_restrict_type";
6473 case DW_TAG_interface_type:
6474 return "DW_TAG_interface_type";
6475 case DW_TAG_namespace:
6476 return "DW_TAG_namespace";
6477 case DW_TAG_imported_module:
6478 return "DW_TAG_imported_module";
6479 case DW_TAG_unspecified_type:
6480 return "DW_TAG_unspecified_type";
6481 case DW_TAG_partial_unit:
6482 return "DW_TAG_partial_unit";
6483 case DW_TAG_imported_unit:
6484 return "DW_TAG_imported_unit";
6485 case DW_TAG_condition:
6486 return "DW_TAG_condition";
6487 case DW_TAG_shared_type:
6488 return "DW_TAG_shared_type";
6489 case DW_TAG_type_unit:
6490 return "DW_TAG_type_unit";
6491 case DW_TAG_rvalue_reference_type:
6492 return "DW_TAG_rvalue_reference_type";
6493 case DW_TAG_template_alias:
6494 return "DW_TAG_template_alias";
6495 case DW_TAG_GNU_template_parameter_pack:
6496 return "DW_TAG_GNU_template_parameter_pack";
6497 case DW_TAG_GNU_formal_parameter_pack:
6498 return "DW_TAG_GNU_formal_parameter_pack";
6499 case DW_TAG_MIPS_loop:
6500 return "DW_TAG_MIPS_loop";
6501 case DW_TAG_format_label:
6502 return "DW_TAG_format_label";
6503 case DW_TAG_function_template:
6504 return "DW_TAG_function_template";
6505 case DW_TAG_class_template:
6506 return "DW_TAG_class_template";
6507 case DW_TAG_GNU_BINCL:
6508 return "DW_TAG_GNU_BINCL";
6509 case DW_TAG_GNU_EINCL:
6510 return "DW_TAG_GNU_EINCL";
6511 case DW_TAG_GNU_template_template_param:
6512 return "DW_TAG_GNU_template_template_param";
6513 default:
6514 return "DW_TAG_<unknown>";
6518 /* Convert a DWARF attribute code into its string name. */
6520 static const char *
6521 dwarf_attr_name (unsigned int attr)
6523 switch (attr)
6525 case DW_AT_sibling:
6526 return "DW_AT_sibling";
6527 case DW_AT_location:
6528 return "DW_AT_location";
6529 case DW_AT_name:
6530 return "DW_AT_name";
6531 case DW_AT_ordering:
6532 return "DW_AT_ordering";
6533 case DW_AT_subscr_data:
6534 return "DW_AT_subscr_data";
6535 case DW_AT_byte_size:
6536 return "DW_AT_byte_size";
6537 case DW_AT_bit_offset:
6538 return "DW_AT_bit_offset";
6539 case DW_AT_bit_size:
6540 return "DW_AT_bit_size";
6541 case DW_AT_element_list:
6542 return "DW_AT_element_list";
6543 case DW_AT_stmt_list:
6544 return "DW_AT_stmt_list";
6545 case DW_AT_low_pc:
6546 return "DW_AT_low_pc";
6547 case DW_AT_high_pc:
6548 return "DW_AT_high_pc";
6549 case DW_AT_language:
6550 return "DW_AT_language";
6551 case DW_AT_member:
6552 return "DW_AT_member";
6553 case DW_AT_discr:
6554 return "DW_AT_discr";
6555 case DW_AT_discr_value:
6556 return "DW_AT_discr_value";
6557 case DW_AT_visibility:
6558 return "DW_AT_visibility";
6559 case DW_AT_import:
6560 return "DW_AT_import";
6561 case DW_AT_string_length:
6562 return "DW_AT_string_length";
6563 case DW_AT_common_reference:
6564 return "DW_AT_common_reference";
6565 case DW_AT_comp_dir:
6566 return "DW_AT_comp_dir";
6567 case DW_AT_const_value:
6568 return "DW_AT_const_value";
6569 case DW_AT_containing_type:
6570 return "DW_AT_containing_type";
6571 case DW_AT_default_value:
6572 return "DW_AT_default_value";
6573 case DW_AT_inline:
6574 return "DW_AT_inline";
6575 case DW_AT_is_optional:
6576 return "DW_AT_is_optional";
6577 case DW_AT_lower_bound:
6578 return "DW_AT_lower_bound";
6579 case DW_AT_producer:
6580 return "DW_AT_producer";
6581 case DW_AT_prototyped:
6582 return "DW_AT_prototyped";
6583 case DW_AT_return_addr:
6584 return "DW_AT_return_addr";
6585 case DW_AT_start_scope:
6586 return "DW_AT_start_scope";
6587 case DW_AT_bit_stride:
6588 return "DW_AT_bit_stride";
6589 case DW_AT_upper_bound:
6590 return "DW_AT_upper_bound";
6591 case DW_AT_abstract_origin:
6592 return "DW_AT_abstract_origin";
6593 case DW_AT_accessibility:
6594 return "DW_AT_accessibility";
6595 case DW_AT_address_class:
6596 return "DW_AT_address_class";
6597 case DW_AT_artificial:
6598 return "DW_AT_artificial";
6599 case DW_AT_base_types:
6600 return "DW_AT_base_types";
6601 case DW_AT_calling_convention:
6602 return "DW_AT_calling_convention";
6603 case DW_AT_count:
6604 return "DW_AT_count";
6605 case DW_AT_data_member_location:
6606 return "DW_AT_data_member_location";
6607 case DW_AT_decl_column:
6608 return "DW_AT_decl_column";
6609 case DW_AT_decl_file:
6610 return "DW_AT_decl_file";
6611 case DW_AT_decl_line:
6612 return "DW_AT_decl_line";
6613 case DW_AT_declaration:
6614 return "DW_AT_declaration";
6615 case DW_AT_discr_list:
6616 return "DW_AT_discr_list";
6617 case DW_AT_encoding:
6618 return "DW_AT_encoding";
6619 case DW_AT_external:
6620 return "DW_AT_external";
6621 case DW_AT_explicit:
6622 return "DW_AT_explicit";
6623 case DW_AT_frame_base:
6624 return "DW_AT_frame_base";
6625 case DW_AT_friend:
6626 return "DW_AT_friend";
6627 case DW_AT_identifier_case:
6628 return "DW_AT_identifier_case";
6629 case DW_AT_macro_info:
6630 return "DW_AT_macro_info";
6631 case DW_AT_namelist_items:
6632 return "DW_AT_namelist_items";
6633 case DW_AT_priority:
6634 return "DW_AT_priority";
6635 case DW_AT_segment:
6636 return "DW_AT_segment";
6637 case DW_AT_specification:
6638 return "DW_AT_specification";
6639 case DW_AT_static_link:
6640 return "DW_AT_static_link";
6641 case DW_AT_type:
6642 return "DW_AT_type";
6643 case DW_AT_use_location:
6644 return "DW_AT_use_location";
6645 case DW_AT_variable_parameter:
6646 return "DW_AT_variable_parameter";
6647 case DW_AT_virtuality:
6648 return "DW_AT_virtuality";
6649 case DW_AT_vtable_elem_location:
6650 return "DW_AT_vtable_elem_location";
6652 case DW_AT_allocated:
6653 return "DW_AT_allocated";
6654 case DW_AT_associated:
6655 return "DW_AT_associated";
6656 case DW_AT_data_location:
6657 return "DW_AT_data_location";
6658 case DW_AT_byte_stride:
6659 return "DW_AT_byte_stride";
6660 case DW_AT_entry_pc:
6661 return "DW_AT_entry_pc";
6662 case DW_AT_use_UTF8:
6663 return "DW_AT_use_UTF8";
6664 case DW_AT_extension:
6665 return "DW_AT_extension";
6666 case DW_AT_ranges:
6667 return "DW_AT_ranges";
6668 case DW_AT_trampoline:
6669 return "DW_AT_trampoline";
6670 case DW_AT_call_column:
6671 return "DW_AT_call_column";
6672 case DW_AT_call_file:
6673 return "DW_AT_call_file";
6674 case DW_AT_call_line:
6675 return "DW_AT_call_line";
6677 case DW_AT_signature:
6678 return "DW_AT_signature";
6679 case DW_AT_main_subprogram:
6680 return "DW_AT_main_subprogram";
6681 case DW_AT_data_bit_offset:
6682 return "DW_AT_data_bit_offset";
6683 case DW_AT_const_expr:
6684 return "DW_AT_const_expr";
6685 case DW_AT_enum_class:
6686 return "DW_AT_enum_class";
6687 case DW_AT_linkage_name:
6688 return "DW_AT_linkage_name";
6690 case DW_AT_MIPS_fde:
6691 return "DW_AT_MIPS_fde";
6692 case DW_AT_MIPS_loop_begin:
6693 return "DW_AT_MIPS_loop_begin";
6694 case DW_AT_MIPS_tail_loop_begin:
6695 return "DW_AT_MIPS_tail_loop_begin";
6696 case DW_AT_MIPS_epilog_begin:
6697 return "DW_AT_MIPS_epilog_begin";
6698 case DW_AT_MIPS_loop_unroll_factor:
6699 return "DW_AT_MIPS_loop_unroll_factor";
6700 case DW_AT_MIPS_software_pipeline_depth:
6701 return "DW_AT_MIPS_software_pipeline_depth";
6702 case DW_AT_MIPS_linkage_name:
6703 return "DW_AT_MIPS_linkage_name";
6704 case DW_AT_MIPS_stride:
6705 return "DW_AT_MIPS_stride";
6706 case DW_AT_MIPS_abstract_name:
6707 return "DW_AT_MIPS_abstract_name";
6708 case DW_AT_MIPS_clone_origin:
6709 return "DW_AT_MIPS_clone_origin";
6710 case DW_AT_MIPS_has_inlines:
6711 return "DW_AT_MIPS_has_inlines";
6713 case DW_AT_sf_names:
6714 return "DW_AT_sf_names";
6715 case DW_AT_src_info:
6716 return "DW_AT_src_info";
6717 case DW_AT_mac_info:
6718 return "DW_AT_mac_info";
6719 case DW_AT_src_coords:
6720 return "DW_AT_src_coords";
6721 case DW_AT_body_begin:
6722 return "DW_AT_body_begin";
6723 case DW_AT_body_end:
6724 return "DW_AT_body_end";
6725 case DW_AT_GNU_vector:
6726 return "DW_AT_GNU_vector";
6727 case DW_AT_GNU_guarded_by:
6728 return "DW_AT_GNU_guarded_by";
6729 case DW_AT_GNU_pt_guarded_by:
6730 return "DW_AT_GNU_pt_guarded_by";
6731 case DW_AT_GNU_guarded:
6732 return "DW_AT_GNU_guarded";
6733 case DW_AT_GNU_pt_guarded:
6734 return "DW_AT_GNU_pt_guarded";
6735 case DW_AT_GNU_locks_excluded:
6736 return "DW_AT_GNU_locks_excluded";
6737 case DW_AT_GNU_exclusive_locks_required:
6738 return "DW_AT_GNU_exclusive_locks_required";
6739 case DW_AT_GNU_shared_locks_required:
6740 return "DW_AT_GNU_shared_locks_required";
6741 case DW_AT_GNU_odr_signature:
6742 return "DW_AT_GNU_odr_signature";
6743 case DW_AT_GNU_template_name:
6744 return "DW_AT_GNU_template_name";
6746 case DW_AT_VMS_rtnbeg_pd_address:
6747 return "DW_AT_VMS_rtnbeg_pd_address";
6749 default:
6750 return "DW_AT_<unknown>";
6754 /* Convert a DWARF value form code into its string name. */
6756 static const char *
6757 dwarf_form_name (unsigned int form)
6759 switch (form)
6761 case DW_FORM_addr:
6762 return "DW_FORM_addr";
6763 case DW_FORM_block2:
6764 return "DW_FORM_block2";
6765 case DW_FORM_block4:
6766 return "DW_FORM_block4";
6767 case DW_FORM_data2:
6768 return "DW_FORM_data2";
6769 case DW_FORM_data4:
6770 return "DW_FORM_data4";
6771 case DW_FORM_data8:
6772 return "DW_FORM_data8";
6773 case DW_FORM_string:
6774 return "DW_FORM_string";
6775 case DW_FORM_block:
6776 return "DW_FORM_block";
6777 case DW_FORM_block1:
6778 return "DW_FORM_block1";
6779 case DW_FORM_data1:
6780 return "DW_FORM_data1";
6781 case DW_FORM_flag:
6782 return "DW_FORM_flag";
6783 case DW_FORM_sdata:
6784 return "DW_FORM_sdata";
6785 case DW_FORM_strp:
6786 return "DW_FORM_strp";
6787 case DW_FORM_udata:
6788 return "DW_FORM_udata";
6789 case DW_FORM_ref_addr:
6790 return "DW_FORM_ref_addr";
6791 case DW_FORM_ref1:
6792 return "DW_FORM_ref1";
6793 case DW_FORM_ref2:
6794 return "DW_FORM_ref2";
6795 case DW_FORM_ref4:
6796 return "DW_FORM_ref4";
6797 case DW_FORM_ref8:
6798 return "DW_FORM_ref8";
6799 case DW_FORM_ref_udata:
6800 return "DW_FORM_ref_udata";
6801 case DW_FORM_indirect:
6802 return "DW_FORM_indirect";
6803 case DW_FORM_sec_offset:
6804 return "DW_FORM_sec_offset";
6805 case DW_FORM_exprloc:
6806 return "DW_FORM_exprloc";
6807 case DW_FORM_flag_present:
6808 return "DW_FORM_flag_present";
6809 case DW_FORM_ref_sig8:
6810 return "DW_FORM_ref_sig8";
6811 default:
6812 return "DW_FORM_<unknown>";
6816 /* Determine the "ultimate origin" of a decl. The decl may be an inlined
6817 instance of an inlined instance of a decl which is local to an inline
6818 function, so we have to trace all of the way back through the origin chain
6819 to find out what sort of node actually served as the original seed for the
6820 given block. */
6822 static tree
6823 decl_ultimate_origin (const_tree decl)
6825 if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_COMMON))
6826 return NULL_TREE;
6828 /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
6829 nodes in the function to point to themselves; ignore that if
6830 we're trying to output the abstract instance of this function. */
6831 if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
6832 return NULL_TREE;
6834 /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
6835 most distant ancestor, this should never happen. */
6836 gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl)));
6838 return DECL_ABSTRACT_ORIGIN (decl);
6841 /* Get the class to which DECL belongs, if any. In g++, the DECL_CONTEXT
6842 of a virtual function may refer to a base class, so we check the 'this'
6843 parameter. */
6845 static tree
6846 decl_class_context (tree decl)
6848 tree context = NULL_TREE;
6850 if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
6851 context = DECL_CONTEXT (decl);
6852 else
6853 context = TYPE_MAIN_VARIANT
6854 (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
6856 if (context && !TYPE_P (context))
6857 context = NULL_TREE;
6859 return context;
6862 /* Add an attribute/value pair to a DIE. */
6864 static inline void
6865 add_dwarf_attr (dw_die_ref die, dw_attr_ref attr)
6867 /* Maybe this should be an assert? */
6868 if (die == NULL)
6869 return;
6871 if (die->die_attr == NULL)
6872 die->die_attr = VEC_alloc (dw_attr_node, gc, 1);
6873 VEC_safe_push (dw_attr_node, gc, die->die_attr, attr);
6876 static inline enum dw_val_class
6877 AT_class (dw_attr_ref a)
6879 return a->dw_attr_val.val_class;
6882 /* Add a flag value attribute to a DIE. */
6884 static inline void
6885 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
6887 dw_attr_node attr;
6889 attr.dw_attr = attr_kind;
6890 attr.dw_attr_val.val_class = dw_val_class_flag;
6891 attr.dw_attr_val.v.val_flag = flag;
6892 add_dwarf_attr (die, &attr);
6895 static inline unsigned
6896 AT_flag (dw_attr_ref a)
6898 gcc_assert (a && AT_class (a) == dw_val_class_flag);
6899 return a->dw_attr_val.v.val_flag;
6902 /* Add a signed integer attribute value to a DIE. */
6904 static inline void
6905 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
6907 dw_attr_node attr;
6909 attr.dw_attr = attr_kind;
6910 attr.dw_attr_val.val_class = dw_val_class_const;
6911 attr.dw_attr_val.v.val_int = int_val;
6912 add_dwarf_attr (die, &attr);
6915 static inline HOST_WIDE_INT
6916 AT_int (dw_attr_ref a)
6918 gcc_assert (a && AT_class (a) == dw_val_class_const);
6919 return a->dw_attr_val.v.val_int;
6922 /* Add an unsigned integer attribute value to a DIE. */
6924 static inline void
6925 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
6926 unsigned HOST_WIDE_INT unsigned_val)
6928 dw_attr_node attr;
6930 attr.dw_attr = attr_kind;
6931 attr.dw_attr_val.val_class = dw_val_class_unsigned_const;
6932 attr.dw_attr_val.v.val_unsigned = unsigned_val;
6933 add_dwarf_attr (die, &attr);
6936 static inline unsigned HOST_WIDE_INT
6937 AT_unsigned (dw_attr_ref a)
6939 gcc_assert (a && AT_class (a) == dw_val_class_unsigned_const);
6940 return a->dw_attr_val.v.val_unsigned;
6943 /* Add an unsigned double integer attribute value to a DIE. */
6945 static inline void
6946 add_AT_double (dw_die_ref die, enum dwarf_attribute attr_kind,
6947 HOST_WIDE_INT high, unsigned HOST_WIDE_INT low)
6949 dw_attr_node attr;
6951 attr.dw_attr = attr_kind;
6952 attr.dw_attr_val.val_class = dw_val_class_const_double;
6953 attr.dw_attr_val.v.val_double.high = high;
6954 attr.dw_attr_val.v.val_double.low = low;
6955 add_dwarf_attr (die, &attr);
6958 /* Add a floating point attribute value to a DIE and return it. */
6960 static inline void
6961 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
6962 unsigned int length, unsigned int elt_size, unsigned char *array)
6964 dw_attr_node attr;
6966 attr.dw_attr = attr_kind;
6967 attr.dw_attr_val.val_class = dw_val_class_vec;
6968 attr.dw_attr_val.v.val_vec.length = length;
6969 attr.dw_attr_val.v.val_vec.elt_size = elt_size;
6970 attr.dw_attr_val.v.val_vec.array = array;
6971 add_dwarf_attr (die, &attr);
6974 /* Add an 8-byte data attribute value to a DIE. */
6976 static inline void
6977 add_AT_data8 (dw_die_ref die, enum dwarf_attribute attr_kind,
6978 unsigned char data8[8])
6980 dw_attr_node attr;
6982 attr.dw_attr = attr_kind;
6983 attr.dw_attr_val.val_class = dw_val_class_data8;
6984 memcpy (attr.dw_attr_val.v.val_data8, data8, 8);
6985 add_dwarf_attr (die, &attr);
6988 /* Hash and equality functions for debug_str_hash. */
6990 static hashval_t
6991 debug_str_do_hash (const void *x)
6993 return htab_hash_string (((const struct indirect_string_node *)x)->str);
6996 static int
6997 debug_str_eq (const void *x1, const void *x2)
6999 return strcmp ((((const struct indirect_string_node *)x1)->str),
7000 (const char *)x2) == 0;
7003 /* Add STR to the indirect string hash table. */
7005 static struct indirect_string_node *
7006 find_AT_string (const char *str)
7008 struct indirect_string_node *node;
7009 void **slot;
7011 if (! debug_str_hash)
7012 debug_str_hash = htab_create_ggc (10, debug_str_do_hash,
7013 debug_str_eq, NULL);
7015 slot = htab_find_slot_with_hash (debug_str_hash, str,
7016 htab_hash_string (str), INSERT);
7017 if (*slot == NULL)
7019 node = (struct indirect_string_node *)
7020 ggc_alloc_cleared (sizeof (struct indirect_string_node));
7021 node->str = ggc_strdup (str);
7022 *slot = node;
7024 else
7025 node = (struct indirect_string_node *) *slot;
7027 node->refcount++;
7028 return node;
7031 /* Add a string attribute value to a DIE. */
7033 static inline void
7034 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
7036 dw_attr_node attr;
7037 struct indirect_string_node *node;
7039 node = find_AT_string (str);
7041 attr.dw_attr = attr_kind;
7042 attr.dw_attr_val.val_class = dw_val_class_str;
7043 attr.dw_attr_val.v.val_str = node;
7044 add_dwarf_attr (die, &attr);
7047 /* Create a label for an indirect string node, ensuring it is going to
7048 be output, unless its reference count goes down to zero. */
7050 static inline void
7051 gen_label_for_indirect_string (struct indirect_string_node *node)
7053 char label[32];
7055 if (node->label)
7056 return;
7058 ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
7059 ++dw2_string_counter;
7060 node->label = xstrdup (label);
7063 /* Create a SYMBOL_REF rtx whose value is the initial address of a
7064 debug string STR. */
7066 static inline rtx
7067 get_debug_string_label (const char *str)
7069 struct indirect_string_node *node = find_AT_string (str);
7071 debug_str_hash_forced = true;
7073 gen_label_for_indirect_string (node);
7075 return gen_rtx_SYMBOL_REF (Pmode, node->label);
7078 static inline const char *
7079 AT_string (dw_attr_ref a)
7081 gcc_assert (a && AT_class (a) == dw_val_class_str);
7082 return a->dw_attr_val.v.val_str->str;
7085 /* Find out whether a string should be output inline in DIE
7086 or out-of-line in .debug_str section. */
7088 static enum dwarf_form
7089 AT_string_form (dw_attr_ref a)
7091 struct indirect_string_node *node;
7092 unsigned int len;
7094 gcc_assert (a && AT_class (a) == dw_val_class_str);
7096 node = a->dw_attr_val.v.val_str;
7097 if (node->form)
7098 return node->form;
7100 len = strlen (node->str) + 1;
7102 /* If the string is shorter or equal to the size of the reference, it is
7103 always better to put it inline. */
7104 if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
7105 return node->form = DW_FORM_string;
7107 /* If we cannot expect the linker to merge strings in .debug_str
7108 section, only put it into .debug_str if it is worth even in this
7109 single module. */
7110 if (DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
7111 || ((debug_str_section->common.flags & SECTION_MERGE) == 0
7112 && (len - DWARF_OFFSET_SIZE) * node->refcount <= len))
7113 return node->form = DW_FORM_string;
7115 gen_label_for_indirect_string (node);
7117 return node->form = DW_FORM_strp;
7120 /* Add a DIE reference attribute value to a DIE. */
7122 static inline void
7123 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
7125 dw_attr_node attr;
7127 attr.dw_attr = attr_kind;
7128 attr.dw_attr_val.val_class = dw_val_class_die_ref;
7129 attr.dw_attr_val.v.val_die_ref.die = targ_die;
7130 attr.dw_attr_val.v.val_die_ref.external = 0;
7131 add_dwarf_attr (die, &attr);
7134 /* Add an AT_specification attribute to a DIE, and also make the back
7135 pointer from the specification to the definition. */
7137 static inline void
7138 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
7140 add_AT_die_ref (die, DW_AT_specification, targ_die);
7141 gcc_assert (!targ_die->die_definition);
7142 targ_die->die_definition = die;
7145 static inline dw_die_ref
7146 AT_ref (dw_attr_ref a)
7148 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
7149 return a->dw_attr_val.v.val_die_ref.die;
7152 static inline int
7153 AT_ref_external (dw_attr_ref a)
7155 if (a && AT_class (a) == dw_val_class_die_ref)
7156 return a->dw_attr_val.v.val_die_ref.external;
7158 return 0;
7161 static inline void
7162 set_AT_ref_external (dw_attr_ref a, int i)
7164 gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
7165 a->dw_attr_val.v.val_die_ref.external = i;
7168 /* Add an FDE reference attribute value to a DIE. */
7170 static inline void
7171 add_AT_fde_ref (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int targ_fde)
7173 dw_attr_node attr;
7175 attr.dw_attr = attr_kind;
7176 attr.dw_attr_val.val_class = dw_val_class_fde_ref;
7177 attr.dw_attr_val.v.val_fde_index = targ_fde;
7178 add_dwarf_attr (die, &attr);
7181 /* Add a location description attribute value to a DIE. */
7183 static inline void
7184 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
7186 dw_attr_node attr;
7188 attr.dw_attr = attr_kind;
7189 attr.dw_attr_val.val_class = dw_val_class_loc;
7190 attr.dw_attr_val.v.val_loc = loc;
7191 add_dwarf_attr (die, &attr);
7194 static inline dw_loc_descr_ref
7195 AT_loc (dw_attr_ref a)
7197 gcc_assert (a && AT_class (a) == dw_val_class_loc);
7198 return a->dw_attr_val.v.val_loc;
7201 static inline void
7202 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
7204 dw_attr_node attr;
7206 attr.dw_attr = attr_kind;
7207 attr.dw_attr_val.val_class = dw_val_class_loc_list;
7208 attr.dw_attr_val.v.val_loc_list = loc_list;
7209 add_dwarf_attr (die, &attr);
7210 have_location_lists = true;
7213 static inline dw_loc_list_ref
7214 AT_loc_list (dw_attr_ref a)
7216 gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
7217 return a->dw_attr_val.v.val_loc_list;
7220 static inline dw_loc_list_ref *
7221 AT_loc_list_ptr (dw_attr_ref a)
7223 gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
7224 return &a->dw_attr_val.v.val_loc_list;
7227 /* Add an address constant attribute value to a DIE. */
7229 static inline void
7230 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr)
7232 dw_attr_node attr;
7234 attr.dw_attr = attr_kind;
7235 attr.dw_attr_val.val_class = dw_val_class_addr;
7236 attr.dw_attr_val.v.val_addr = addr;
7237 add_dwarf_attr (die, &attr);
7240 /* Get the RTX from to an address DIE attribute. */
7242 static inline rtx
7243 AT_addr (dw_attr_ref a)
7245 gcc_assert (a && AT_class (a) == dw_val_class_addr);
7246 return a->dw_attr_val.v.val_addr;
7249 /* Add a file attribute value to a DIE. */
7251 static inline void
7252 add_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind,
7253 struct dwarf_file_data *fd)
7255 dw_attr_node attr;
7257 attr.dw_attr = attr_kind;
7258 attr.dw_attr_val.val_class = dw_val_class_file;
7259 attr.dw_attr_val.v.val_file = fd;
7260 add_dwarf_attr (die, &attr);
7263 /* Get the dwarf_file_data from a file DIE attribute. */
7265 static inline struct dwarf_file_data *
7266 AT_file (dw_attr_ref a)
7268 gcc_assert (a && AT_class (a) == dw_val_class_file);
7269 return a->dw_attr_val.v.val_file;
7272 /* Add a label identifier attribute value to a DIE. */
7274 static inline void
7275 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind, const char *lbl_id)
7277 dw_attr_node attr;
7279 attr.dw_attr = attr_kind;
7280 attr.dw_attr_val.val_class = dw_val_class_lbl_id;
7281 attr.dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
7282 add_dwarf_attr (die, &attr);
7285 /* Add a section offset attribute value to a DIE, an offset into the
7286 debug_line section. */
7288 static inline void
7289 add_AT_lineptr (dw_die_ref die, enum dwarf_attribute attr_kind,
7290 const char *label)
7292 dw_attr_node attr;
7294 attr.dw_attr = attr_kind;
7295 attr.dw_attr_val.val_class = dw_val_class_lineptr;
7296 attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
7297 add_dwarf_attr (die, &attr);
7300 /* Add a section offset attribute value to a DIE, an offset into the
7301 debug_macinfo section. */
7303 static inline void
7304 add_AT_macptr (dw_die_ref die, enum dwarf_attribute attr_kind,
7305 const char *label)
7307 dw_attr_node attr;
7309 attr.dw_attr = attr_kind;
7310 attr.dw_attr_val.val_class = dw_val_class_macptr;
7311 attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
7312 add_dwarf_attr (die, &attr);
7315 /* Add an offset attribute value to a DIE. */
7317 static inline void
7318 add_AT_offset (dw_die_ref die, enum dwarf_attribute attr_kind,
7319 unsigned HOST_WIDE_INT offset)
7321 dw_attr_node attr;
7323 attr.dw_attr = attr_kind;
7324 attr.dw_attr_val.val_class = dw_val_class_offset;
7325 attr.dw_attr_val.v.val_offset = offset;
7326 add_dwarf_attr (die, &attr);
7329 /* Add an range_list attribute value to a DIE. */
7331 static void
7332 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
7333 long unsigned int offset)
7335 dw_attr_node attr;
7337 attr.dw_attr = attr_kind;
7338 attr.dw_attr_val.val_class = dw_val_class_range_list;
7339 attr.dw_attr_val.v.val_offset = offset;
7340 add_dwarf_attr (die, &attr);
7343 static inline const char *
7344 AT_lbl (dw_attr_ref a)
7346 gcc_assert (a && (AT_class (a) == dw_val_class_lbl_id
7347 || AT_class (a) == dw_val_class_lineptr
7348 || AT_class (a) == dw_val_class_macptr));
7349 return a->dw_attr_val.v.val_lbl_id;
7352 /* Get the attribute of type attr_kind. */
7354 static dw_attr_ref
7355 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
7357 dw_attr_ref a;
7358 unsigned ix;
7359 dw_die_ref spec = NULL;
7361 if (! die)
7362 return NULL;
7364 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
7365 if (a->dw_attr == attr_kind)
7366 return a;
7367 else if (a->dw_attr == DW_AT_specification
7368 || a->dw_attr == DW_AT_abstract_origin)
7369 spec = AT_ref (a);
7371 if (spec)
7372 return get_AT (spec, attr_kind);
7374 return NULL;
7377 /* Return the "low pc" attribute value, typically associated with a subprogram
7378 DIE. Return null if the "low pc" attribute is either not present, or if it
7379 cannot be represented as an assembler label identifier. */
7381 static inline const char *
7382 get_AT_low_pc (dw_die_ref die)
7384 dw_attr_ref a = get_AT (die, DW_AT_low_pc);
7386 return a ? AT_lbl (a) : NULL;
7389 /* Return the "high pc" attribute value, typically associated with a subprogram
7390 DIE. Return null if the "high pc" attribute is either not present, or if it
7391 cannot be represented as an assembler label identifier. */
7393 static inline const char *
7394 get_AT_hi_pc (dw_die_ref die)
7396 dw_attr_ref a = get_AT (die, DW_AT_high_pc);
7398 return a ? AT_lbl (a) : NULL;
7401 /* Return the value of the string attribute designated by ATTR_KIND, or
7402 NULL if it is not present. */
7404 static inline const char *
7405 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
7407 dw_attr_ref a = get_AT (die, attr_kind);
7409 return a ? AT_string (a) : NULL;
7412 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
7413 if it is not present. */
7415 static inline int
7416 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
7418 dw_attr_ref a = get_AT (die, attr_kind);
7420 return a ? AT_flag (a) : 0;
7423 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
7424 if it is not present. */
7426 static inline unsigned
7427 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
7429 dw_attr_ref a = get_AT (die, attr_kind);
7431 return a ? AT_unsigned (a) : 0;
7434 static inline dw_die_ref
7435 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
7437 dw_attr_ref a = get_AT (die, attr_kind);
7439 return a ? AT_ref (a) : NULL;
7442 static inline struct dwarf_file_data *
7443 get_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind)
7445 dw_attr_ref a = get_AT (die, attr_kind);
7447 return a ? AT_file (a) : NULL;
7450 /* Return TRUE if the language is C++. */
7452 static inline bool
7453 is_cxx (void)
7455 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
7457 return lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus;
7460 /* Return TRUE if the language is Fortran. */
7462 static inline bool
7463 is_fortran (void)
7465 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
7467 return (lang == DW_LANG_Fortran77
7468 || lang == DW_LANG_Fortran90
7469 || lang == DW_LANG_Fortran95);
7472 /* Return TRUE if the language is Ada. */
7474 static inline bool
7475 is_ada (void)
7477 unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
7479 return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
7482 /* Remove the specified attribute if present. */
7484 static void
7485 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
7487 dw_attr_ref a;
7488 unsigned ix;
7490 if (! die)
7491 return;
7493 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
7494 if (a->dw_attr == attr_kind)
7496 if (AT_class (a) == dw_val_class_str)
7497 if (a->dw_attr_val.v.val_str->refcount)
7498 a->dw_attr_val.v.val_str->refcount--;
7500 /* VEC_ordered_remove should help reduce the number of abbrevs
7501 that are needed. */
7502 VEC_ordered_remove (dw_attr_node, die->die_attr, ix);
7503 return;
7507 /* Remove CHILD from its parent. PREV must have the property that
7508 PREV->DIE_SIB == CHILD. Does not alter CHILD. */
7510 static void
7511 remove_child_with_prev (dw_die_ref child, dw_die_ref prev)
7513 gcc_assert (child->die_parent == prev->die_parent);
7514 gcc_assert (prev->die_sib == child);
7515 if (prev == child)
7517 gcc_assert (child->die_parent->die_child == child);
7518 prev = NULL;
7520 else
7521 prev->die_sib = child->die_sib;
7522 if (child->die_parent->die_child == child)
7523 child->die_parent->die_child = prev;
7526 /* Replace OLD_CHILD with NEW_CHILD. PREV must have the property that
7527 PREV->DIE_SIB == OLD_CHILD. Does not alter OLD_CHILD. */
7529 static void
7530 replace_child (dw_die_ref old_child, dw_die_ref new_child, dw_die_ref prev)
7532 dw_die_ref parent = old_child->die_parent;
7534 gcc_assert (parent == prev->die_parent);
7535 gcc_assert (prev->die_sib == old_child);
7537 new_child->die_parent = parent;
7538 if (prev == old_child)
7540 gcc_assert (parent->die_child == old_child);
7541 new_child->die_sib = new_child;
7543 else
7545 prev->die_sib = new_child;
7546 new_child->die_sib = old_child->die_sib;
7548 if (old_child->die_parent->die_child == old_child)
7549 old_child->die_parent->die_child = new_child;
7552 /* Move all children from OLD_PARENT to NEW_PARENT. */
7554 static void
7555 move_all_children (dw_die_ref old_parent, dw_die_ref new_parent)
7557 dw_die_ref c;
7558 new_parent->die_child = old_parent->die_child;
7559 old_parent->die_child = NULL;
7560 FOR_EACH_CHILD (new_parent, c, c->die_parent = new_parent);
7563 /* Remove child DIE whose die_tag is TAG. Do nothing if no child
7564 matches TAG. */
7566 static void
7567 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
7569 dw_die_ref c;
7571 c = die->die_child;
7572 if (c) do {
7573 dw_die_ref prev = c;
7574 c = c->die_sib;
7575 while (c->die_tag == tag)
7577 remove_child_with_prev (c, prev);
7578 /* Might have removed every child. */
7579 if (c == c->die_sib)
7580 return;
7581 c = c->die_sib;
7583 } while (c != die->die_child);
7586 /* Add a CHILD_DIE as the last child of DIE. */
7588 static void
7589 add_child_die (dw_die_ref die, dw_die_ref child_die)
7591 /* FIXME this should probably be an assert. */
7592 if (! die || ! child_die)
7593 return;
7594 gcc_assert (die != child_die);
7596 child_die->die_parent = die;
7597 if (die->die_child)
7599 child_die->die_sib = die->die_child->die_sib;
7600 die->die_child->die_sib = child_die;
7602 else
7603 child_die->die_sib = child_die;
7604 die->die_child = child_die;
7607 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
7608 is the specification, to the end of PARENT's list of children.
7609 This is done by removing and re-adding it. */
7611 static void
7612 splice_child_die (dw_die_ref parent, dw_die_ref child)
7614 dw_die_ref p;
7616 /* We want the declaration DIE from inside the class, not the
7617 specification DIE at toplevel. */
7618 if (child->die_parent != parent)
7620 dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
7622 if (tmp)
7623 child = tmp;
7626 gcc_assert (child->die_parent == parent
7627 || (child->die_parent
7628 == get_AT_ref (parent, DW_AT_specification)));
7630 for (p = child->die_parent->die_child; ; p = p->die_sib)
7631 if (p->die_sib == child)
7633 remove_child_with_prev (child, p);
7634 break;
7637 add_child_die (parent, child);
7640 /* Return a pointer to a newly created DIE node. */
7642 static inline dw_die_ref
7643 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
7645 dw_die_ref die = GGC_CNEW (die_node);
7647 die->die_tag = tag_value;
7649 if (parent_die != NULL)
7650 add_child_die (parent_die, die);
7651 else
7653 limbo_die_node *limbo_node;
7655 limbo_node = GGC_CNEW (limbo_die_node);
7656 limbo_node->die = die;
7657 limbo_node->created_for = t;
7658 limbo_node->next = limbo_die_list;
7659 limbo_die_list = limbo_node;
7662 return die;
7665 /* Return the DIE associated with the given type specifier. */
7667 static inline dw_die_ref
7668 lookup_type_die (tree type)
7670 return TYPE_SYMTAB_DIE (type);
7673 /* Equate a DIE to a given type specifier. */
7675 static inline void
7676 equate_type_number_to_die (tree type, dw_die_ref type_die)
7678 TYPE_SYMTAB_DIE (type) = type_die;
7681 /* Returns a hash value for X (which really is a die_struct). */
7683 static hashval_t
7684 decl_die_table_hash (const void *x)
7686 return (hashval_t) ((const_dw_die_ref) x)->decl_id;
7689 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y. */
7691 static int
7692 decl_die_table_eq (const void *x, const void *y)
7694 return (((const_dw_die_ref) x)->decl_id == DECL_UID ((const_tree) y));
7697 /* Return the DIE associated with a given declaration. */
7699 static inline dw_die_ref
7700 lookup_decl_die (tree decl)
7702 return (dw_die_ref) htab_find_with_hash (decl_die_table, decl, DECL_UID (decl));
7705 /* Returns a hash value for X (which really is a var_loc_list). */
7707 static hashval_t
7708 decl_loc_table_hash (const void *x)
7710 return (hashval_t) ((const var_loc_list *) x)->decl_id;
7713 /* Return nonzero if decl_id of var_loc_list X is the same as
7714 UID of decl *Y. */
7716 static int
7717 decl_loc_table_eq (const void *x, const void *y)
7719 return (((const var_loc_list *) x)->decl_id == DECL_UID ((const_tree) y));
7722 /* Return the var_loc list associated with a given declaration. */
7724 static inline var_loc_list *
7725 lookup_decl_loc (const_tree decl)
7727 if (!decl_loc_table)
7728 return NULL;
7729 return (var_loc_list *)
7730 htab_find_with_hash (decl_loc_table, decl, DECL_UID (decl));
7733 /* Equate a DIE to a particular declaration. */
7735 static void
7736 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
7738 unsigned int decl_id = DECL_UID (decl);
7739 void **slot;
7741 slot = htab_find_slot_with_hash (decl_die_table, decl, decl_id, INSERT);
7742 *slot = decl_die;
7743 decl_die->decl_id = decl_id;
7746 /* Add a variable location node to the linked list for DECL. */
7748 static struct var_loc_node *
7749 add_var_loc_to_decl (tree decl, rtx loc_note)
7751 unsigned int decl_id = DECL_UID (decl);
7752 var_loc_list *temp;
7753 void **slot;
7754 struct var_loc_node *loc = NULL;
7756 slot = htab_find_slot_with_hash (decl_loc_table, decl, decl_id, INSERT);
7757 if (*slot == NULL)
7759 temp = GGC_CNEW (var_loc_list);
7760 temp->decl_id = decl_id;
7761 *slot = temp;
7763 else
7764 temp = (var_loc_list *) *slot;
7766 if (temp->last)
7768 /* If the current location is the same as the end of the list,
7769 and either both or neither of the locations is uninitialized,
7770 we have nothing to do. */
7771 if ((!rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp->last->var_loc_note),
7772 NOTE_VAR_LOCATION_LOC (loc_note)))
7773 || ((NOTE_VAR_LOCATION_STATUS (temp->last->var_loc_note)
7774 != NOTE_VAR_LOCATION_STATUS (loc_note))
7775 && ((NOTE_VAR_LOCATION_STATUS (temp->last->var_loc_note)
7776 == VAR_INIT_STATUS_UNINITIALIZED)
7777 || (NOTE_VAR_LOCATION_STATUS (loc_note)
7778 == VAR_INIT_STATUS_UNINITIALIZED))))
7780 /* Add LOC to the end of list and update LAST. */
7781 loc = GGC_CNEW (struct var_loc_node);
7782 temp->last->next = loc;
7783 temp->last = loc;
7786 else
7788 loc = GGC_CNEW (struct var_loc_node);
7789 temp->first = loc;
7790 temp->last = loc;
7792 return loc;
7795 /* Keep track of the number of spaces used to indent the
7796 output of the debugging routines that print the structure of
7797 the DIE internal representation. */
7798 static int print_indent;
7800 /* Indent the line the number of spaces given by print_indent. */
7802 static inline void
7803 print_spaces (FILE *outfile)
7805 fprintf (outfile, "%*s", print_indent, "");
7808 /* Print a type signature in hex. */
7810 static inline void
7811 print_signature (FILE *outfile, char *sig)
7813 int i;
7815 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
7816 fprintf (outfile, "%02x", sig[i] & 0xff);
7819 /* Print the information associated with a given DIE, and its children.
7820 This routine is a debugging aid only. */
7822 static void
7823 print_die (dw_die_ref die, FILE *outfile)
7825 dw_attr_ref a;
7826 dw_die_ref c;
7827 unsigned ix;
7829 print_spaces (outfile);
7830 fprintf (outfile, "DIE %4ld: %s\n",
7831 die->die_offset, dwarf_tag_name (die->die_tag));
7832 print_spaces (outfile);
7833 fprintf (outfile, " abbrev id: %lu", die->die_abbrev);
7834 fprintf (outfile, " offset: %ld\n", die->die_offset);
7835 if (dwarf_version >= 4 && die->die_id.die_type_node)
7837 print_spaces (outfile);
7838 fprintf (outfile, " signature: ");
7839 print_signature (outfile, die->die_id.die_type_node->signature);
7840 fprintf (outfile, "\n");
7843 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
7845 print_spaces (outfile);
7846 fprintf (outfile, " %s: ", dwarf_attr_name (a->dw_attr));
7848 switch (AT_class (a))
7850 case dw_val_class_addr:
7851 fprintf (outfile, "address");
7852 break;
7853 case dw_val_class_offset:
7854 fprintf (outfile, "offset");
7855 break;
7856 case dw_val_class_loc:
7857 fprintf (outfile, "location descriptor");
7858 break;
7859 case dw_val_class_loc_list:
7860 fprintf (outfile, "location list -> label:%s",
7861 AT_loc_list (a)->ll_symbol);
7862 break;
7863 case dw_val_class_range_list:
7864 fprintf (outfile, "range list");
7865 break;
7866 case dw_val_class_const:
7867 fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, AT_int (a));
7868 break;
7869 case dw_val_class_unsigned_const:
7870 fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, AT_unsigned (a));
7871 break;
7872 case dw_val_class_const_double:
7873 fprintf (outfile, "constant ("HOST_WIDE_INT_PRINT_DEC","\
7874 HOST_WIDE_INT_PRINT_UNSIGNED")",
7875 a->dw_attr_val.v.val_double.high,
7876 a->dw_attr_val.v.val_double.low);
7877 break;
7878 case dw_val_class_vec:
7879 fprintf (outfile, "floating-point or vector constant");
7880 break;
7881 case dw_val_class_flag:
7882 fprintf (outfile, "%u", AT_flag (a));
7883 break;
7884 case dw_val_class_die_ref:
7885 if (AT_ref (a) != NULL)
7887 if (dwarf_version >= 4 && AT_ref (a)->die_id.die_type_node)
7889 fprintf (outfile, "die -> signature: ");
7890 print_signature (outfile,
7891 AT_ref (a)->die_id.die_type_node->signature);
7893 else if (dwarf_version < 4 && AT_ref (a)->die_id.die_symbol)
7894 fprintf (outfile, "die -> label: %s",
7895 AT_ref (a)->die_id.die_symbol);
7896 else
7897 fprintf (outfile, "die -> %ld", AT_ref (a)->die_offset);
7899 else
7900 fprintf (outfile, "die -> <null>");
7901 break;
7902 case dw_val_class_lbl_id:
7903 case dw_val_class_lineptr:
7904 case dw_val_class_macptr:
7905 fprintf (outfile, "label: %s", AT_lbl (a));
7906 break;
7907 case dw_val_class_str:
7908 if (AT_string (a) != NULL)
7909 fprintf (outfile, "\"%s\"", AT_string (a));
7910 else
7911 fprintf (outfile, "<null>");
7912 break;
7913 case dw_val_class_file:
7914 fprintf (outfile, "\"%s\" (%d)", AT_file (a)->filename,
7915 AT_file (a)->emitted_number);
7916 break;
7917 case dw_val_class_data8:
7919 int i;
7921 for (i = 0; i < 8; i++)
7922 fprintf (outfile, "%02x", a->dw_attr_val.v.val_data8[i]);
7923 break;
7925 default:
7926 break;
7929 fprintf (outfile, "\n");
7932 if (die->die_child != NULL)
7934 print_indent += 4;
7935 FOR_EACH_CHILD (die, c, print_die (c, outfile));
7936 print_indent -= 4;
7938 if (print_indent == 0)
7939 fprintf (outfile, "\n");
7942 /* Print the contents of the source code line number correspondence table.
7943 This routine is a debugging aid only. */
7945 static void
7946 print_dwarf_line_table (FILE *outfile)
7948 unsigned i;
7949 dw_line_info_ref line_info;
7951 fprintf (outfile, "\n\nDWARF source line information\n");
7952 for (i = 1; i < line_info_table_in_use; i++)
7954 line_info = &line_info_table[i];
7955 fprintf (outfile, "%5d: %4ld %6ld\n", i,
7956 line_info->dw_file_num,
7957 line_info->dw_line_num);
7960 fprintf (outfile, "\n\n");
7963 /* Print the information collected for a given DIE. */
7965 void
7966 debug_dwarf_die (dw_die_ref die)
7968 print_die (die, stderr);
7971 /* Print all DWARF information collected for the compilation unit.
7972 This routine is a debugging aid only. */
7974 void
7975 debug_dwarf (void)
7977 print_indent = 0;
7978 print_die (comp_unit_die, stderr);
7979 if (! DWARF2_ASM_LINE_DEBUG_INFO)
7980 print_dwarf_line_table (stderr);
7983 /* Start a new compilation unit DIE for an include file. OLD_UNIT is the CU
7984 for the enclosing include file, if any. BINCL_DIE is the DW_TAG_GNU_BINCL
7985 DIE that marks the start of the DIEs for this include file. */
7987 static dw_die_ref
7988 push_new_compile_unit (dw_die_ref old_unit, dw_die_ref bincl_die)
7990 const char *filename = get_AT_string (bincl_die, DW_AT_name);
7991 dw_die_ref new_unit = gen_compile_unit_die (filename);
7993 new_unit->die_sib = old_unit;
7994 return new_unit;
7997 /* Close an include-file CU and reopen the enclosing one. */
7999 static dw_die_ref
8000 pop_compile_unit (dw_die_ref old_unit)
8002 dw_die_ref new_unit = old_unit->die_sib;
8004 old_unit->die_sib = NULL;
8005 return new_unit;
8008 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
8009 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
8011 /* Calculate the checksum of a location expression. */
8013 static inline void
8014 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
8016 int tem;
8018 tem = (loc->dtprel << 8) | ((unsigned int) loc->dw_loc_opc);
8019 CHECKSUM (tem);
8020 CHECKSUM (loc->dw_loc_oprnd1);
8021 CHECKSUM (loc->dw_loc_oprnd2);
8024 /* Calculate the checksum of an attribute. */
8026 static void
8027 attr_checksum (dw_attr_ref at, struct md5_ctx *ctx, int *mark)
8029 dw_loc_descr_ref loc;
8030 rtx r;
8032 CHECKSUM (at->dw_attr);
8034 /* We don't care that this was compiled with a different compiler
8035 snapshot; if the output is the same, that's what matters. */
8036 if (at->dw_attr == DW_AT_producer)
8037 return;
8039 switch (AT_class (at))
8041 case dw_val_class_const:
8042 CHECKSUM (at->dw_attr_val.v.val_int);
8043 break;
8044 case dw_val_class_unsigned_const:
8045 CHECKSUM (at->dw_attr_val.v.val_unsigned);
8046 break;
8047 case dw_val_class_const_double:
8048 CHECKSUM (at->dw_attr_val.v.val_double);
8049 break;
8050 case dw_val_class_vec:
8051 CHECKSUM (at->dw_attr_val.v.val_vec);
8052 break;
8053 case dw_val_class_flag:
8054 CHECKSUM (at->dw_attr_val.v.val_flag);
8055 break;
8056 case dw_val_class_str:
8057 CHECKSUM_STRING (AT_string (at));
8058 break;
8060 case dw_val_class_addr:
8061 r = AT_addr (at);
8062 gcc_assert (GET_CODE (r) == SYMBOL_REF);
8063 CHECKSUM_STRING (XSTR (r, 0));
8064 break;
8066 case dw_val_class_offset:
8067 CHECKSUM (at->dw_attr_val.v.val_offset);
8068 break;
8070 case dw_val_class_loc:
8071 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
8072 loc_checksum (loc, ctx);
8073 break;
8075 case dw_val_class_die_ref:
8076 die_checksum (AT_ref (at), ctx, mark);
8077 break;
8079 case dw_val_class_fde_ref:
8080 case dw_val_class_lbl_id:
8081 case dw_val_class_lineptr:
8082 case dw_val_class_macptr:
8083 break;
8085 case dw_val_class_file:
8086 CHECKSUM_STRING (AT_file (at)->filename);
8087 break;
8089 case dw_val_class_data8:
8090 CHECKSUM (at->dw_attr_val.v.val_data8);
8091 break;
8093 default:
8094 break;
8098 /* Calculate the checksum of a DIE. */
8100 static void
8101 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
8103 dw_die_ref c;
8104 dw_attr_ref a;
8105 unsigned ix;
8107 /* To avoid infinite recursion. */
8108 if (die->die_mark)
8110 CHECKSUM (die->die_mark);
8111 return;
8113 die->die_mark = ++(*mark);
8115 CHECKSUM (die->die_tag);
8117 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
8118 attr_checksum (a, ctx, mark);
8120 FOR_EACH_CHILD (die, c, die_checksum (c, ctx, mark));
8123 #undef CHECKSUM
8124 #undef CHECKSUM_STRING
8126 /* For DWARF-4 types, include the trailing NULL when checksumming strings. */
8127 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
8128 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO) + 1, ctx)
8129 #define CHECKSUM_SLEB128(FOO) checksum_sleb128 ((FOO), ctx)
8130 #define CHECKSUM_ULEB128(FOO) checksum_uleb128 ((FOO), ctx)
8131 #define CHECKSUM_ATTR(FOO) \
8132 if (FOO) attr_checksum_ordered (die->die_tag, (FOO), ctx, mark)
8134 /* Calculate the checksum of a number in signed LEB128 format. */
8136 static void
8137 checksum_sleb128 (HOST_WIDE_INT value, struct md5_ctx *ctx)
8139 unsigned char byte;
8140 bool more;
8142 while (1)
8144 byte = (value & 0x7f);
8145 value >>= 7;
8146 more = !((value == 0 && (byte & 0x40) == 0)
8147 || (value == -1 && (byte & 0x40) != 0));
8148 if (more)
8149 byte |= 0x80;
8150 CHECKSUM (byte);
8151 if (!more)
8152 break;
8156 /* Calculate the checksum of a number in unsigned LEB128 format. */
8158 static void
8159 checksum_uleb128 (unsigned HOST_WIDE_INT value, struct md5_ctx *ctx)
8161 while (1)
8163 unsigned char byte = (value & 0x7f);
8164 value >>= 7;
8165 if (value != 0)
8166 /* More bytes to follow. */
8167 byte |= 0x80;
8168 CHECKSUM (byte);
8169 if (value == 0)
8170 break;
8174 /* Checksum the context of the DIE. This adds the names of any
8175 surrounding namespaces or structures to the checksum. */
8177 static void
8178 checksum_die_context (dw_die_ref die, struct md5_ctx *ctx)
8180 const char *name;
8181 dw_die_ref spec;
8182 int tag = die->die_tag;
8184 if (tag != DW_TAG_namespace
8185 && tag != DW_TAG_structure_type
8186 && tag != DW_TAG_class_type)
8187 return;
8189 name = get_AT_string (die, DW_AT_name);
8191 spec = get_AT_ref (die, DW_AT_specification);
8192 if (spec != NULL)
8193 die = spec;
8195 if (die->die_parent != NULL)
8196 checksum_die_context (die->die_parent, ctx);
8198 CHECKSUM_ULEB128 ('C');
8199 CHECKSUM_ULEB128 (tag);
8200 if (name != NULL)
8201 CHECKSUM_STRING (name);
8204 /* Calculate the checksum of a location expression. */
8206 static inline void
8207 loc_checksum_ordered (dw_loc_descr_ref loc, struct md5_ctx *ctx)
8209 /* Special case for lone DW_OP_plus_uconst: checksum as if the location
8210 were emitted as a DW_FORM_sdata instead of a location expression. */
8211 if (loc->dw_loc_opc == DW_OP_plus_uconst && loc->dw_loc_next == NULL)
8213 CHECKSUM_ULEB128 (DW_FORM_sdata);
8214 CHECKSUM_SLEB128 ((HOST_WIDE_INT) loc->dw_loc_oprnd1.v.val_unsigned);
8215 return;
8218 /* Otherwise, just checksum the raw location expression. */
8219 while (loc != NULL)
8221 CHECKSUM_ULEB128 (loc->dw_loc_opc);
8222 CHECKSUM (loc->dw_loc_oprnd1);
8223 CHECKSUM (loc->dw_loc_oprnd2);
8224 loc = loc->dw_loc_next;
8228 /* Calculate the checksum of an attribute. */
8230 static void
8231 attr_checksum_ordered (enum dwarf_tag tag, dw_attr_ref at,
8232 struct md5_ctx *ctx, int *mark)
8234 dw_loc_descr_ref loc;
8235 rtx r;
8237 if (AT_class (at) == dw_val_class_die_ref)
8239 dw_die_ref target_die = AT_ref (at);
8241 /* For pointer and reference types, we checksum only the (qualified)
8242 name of the target type (if there is a name). For friend entries,
8243 we checksum only the (qualified) name of the target type or function.
8244 This allows the checksum to remain the same whether the target type
8245 is complete or not. */
8246 if ((at->dw_attr == DW_AT_type
8247 && (tag == DW_TAG_pointer_type
8248 || tag == DW_TAG_reference_type
8249 || tag == DW_TAG_ptr_to_member_type))
8250 || (at->dw_attr == DW_AT_friend
8251 && tag == DW_TAG_friend))
8253 dw_attr_ref name_attr = get_AT (target_die, DW_AT_name);
8255 if (name_attr != NULL)
8257 dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
8259 if (decl == NULL)
8260 decl = target_die;
8261 CHECKSUM_ULEB128 ('N');
8262 CHECKSUM_ULEB128 (at->dw_attr);
8263 if (decl->die_parent != NULL)
8264 checksum_die_context (decl->die_parent, ctx);
8265 CHECKSUM_ULEB128 ('E');
8266 CHECKSUM_STRING (AT_string (name_attr));
8267 return;
8271 /* For all other references to another DIE, we check to see if the
8272 target DIE has already been visited. If it has, we emit a
8273 backward reference; if not, we descend recursively. */
8274 if (target_die->die_mark > 0)
8276 CHECKSUM_ULEB128 ('R');
8277 CHECKSUM_ULEB128 (at->dw_attr);
8278 CHECKSUM_ULEB128 (target_die->die_mark);
8280 else
8282 dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
8284 if (decl == NULL)
8285 decl = target_die;
8286 target_die->die_mark = ++(*mark);
8287 CHECKSUM_ULEB128 ('T');
8288 CHECKSUM_ULEB128 (at->dw_attr);
8289 if (decl->die_parent != NULL)
8290 checksum_die_context (decl->die_parent, ctx);
8291 die_checksum_ordered (target_die, ctx, mark);
8293 return;
8296 CHECKSUM_ULEB128 ('A');
8297 CHECKSUM_ULEB128 (at->dw_attr);
8299 switch (AT_class (at))
8301 case dw_val_class_const:
8302 CHECKSUM_ULEB128 (DW_FORM_sdata);
8303 CHECKSUM_SLEB128 (at->dw_attr_val.v.val_int);
8304 break;
8306 case dw_val_class_unsigned_const:
8307 CHECKSUM_ULEB128 (DW_FORM_sdata);
8308 CHECKSUM_SLEB128 ((int) at->dw_attr_val.v.val_unsigned);
8309 break;
8311 case dw_val_class_const_double:
8312 CHECKSUM_ULEB128 (DW_FORM_block);
8313 CHECKSUM_ULEB128 (sizeof (at->dw_attr_val.v.val_double));
8314 CHECKSUM (at->dw_attr_val.v.val_double);
8315 break;
8317 case dw_val_class_vec:
8318 CHECKSUM_ULEB128 (DW_FORM_block);
8319 CHECKSUM_ULEB128 (sizeof (at->dw_attr_val.v.val_vec));
8320 CHECKSUM (at->dw_attr_val.v.val_vec);
8321 break;
8323 case dw_val_class_flag:
8324 CHECKSUM_ULEB128 (DW_FORM_flag);
8325 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_flag ? 1 : 0);
8326 break;
8328 case dw_val_class_str:
8329 CHECKSUM_ULEB128 (DW_FORM_string);
8330 CHECKSUM_STRING (AT_string (at));
8331 break;
8333 case dw_val_class_addr:
8334 r = AT_addr (at);
8335 gcc_assert (GET_CODE (r) == SYMBOL_REF);
8336 CHECKSUM_ULEB128 (DW_FORM_string);
8337 CHECKSUM_STRING (XSTR (r, 0));
8338 break;
8340 case dw_val_class_offset:
8341 CHECKSUM_ULEB128 (DW_FORM_sdata);
8342 CHECKSUM_ULEB128 (at->dw_attr_val.v.val_offset);
8343 break;
8345 case dw_val_class_loc:
8346 for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
8347 loc_checksum_ordered (loc, ctx);
8348 break;
8350 case dw_val_class_fde_ref:
8351 case dw_val_class_lbl_id:
8352 case dw_val_class_lineptr:
8353 case dw_val_class_macptr:
8354 break;
8356 case dw_val_class_file:
8357 CHECKSUM_ULEB128 (DW_FORM_string);
8358 CHECKSUM_STRING (AT_file (at)->filename);
8359 break;
8361 case dw_val_class_data8:
8362 CHECKSUM (at->dw_attr_val.v.val_data8);
8363 break;
8365 default:
8366 break;
8370 struct checksum_attributes
8372 dw_attr_ref at_name;
8373 dw_attr_ref at_type;
8374 dw_attr_ref at_friend;
8375 dw_attr_ref at_accessibility;
8376 dw_attr_ref at_address_class;
8377 dw_attr_ref at_allocated;
8378 dw_attr_ref at_artificial;
8379 dw_attr_ref at_associated;
8380 dw_attr_ref at_binary_scale;
8381 dw_attr_ref at_bit_offset;
8382 dw_attr_ref at_bit_size;
8383 dw_attr_ref at_bit_stride;
8384 dw_attr_ref at_byte_size;
8385 dw_attr_ref at_byte_stride;
8386 dw_attr_ref at_const_value;
8387 dw_attr_ref at_containing_type;
8388 dw_attr_ref at_count;
8389 dw_attr_ref at_data_location;
8390 dw_attr_ref at_data_member_location;
8391 dw_attr_ref at_decimal_scale;
8392 dw_attr_ref at_decimal_sign;
8393 dw_attr_ref at_default_value;
8394 dw_attr_ref at_digit_count;
8395 dw_attr_ref at_discr;
8396 dw_attr_ref at_discr_list;
8397 dw_attr_ref at_discr_value;
8398 dw_attr_ref at_encoding;
8399 dw_attr_ref at_endianity;
8400 dw_attr_ref at_explicit;
8401 dw_attr_ref at_is_optional;
8402 dw_attr_ref at_location;
8403 dw_attr_ref at_lower_bound;
8404 dw_attr_ref at_mutable;
8405 dw_attr_ref at_ordering;
8406 dw_attr_ref at_picture_string;
8407 dw_attr_ref at_prototyped;
8408 dw_attr_ref at_small;
8409 dw_attr_ref at_segment;
8410 dw_attr_ref at_string_length;
8411 dw_attr_ref at_threads_scaled;
8412 dw_attr_ref at_upper_bound;
8413 dw_attr_ref at_use_location;
8414 dw_attr_ref at_use_UTF8;
8415 dw_attr_ref at_variable_parameter;
8416 dw_attr_ref at_virtuality;
8417 dw_attr_ref at_visibility;
8418 dw_attr_ref at_vtable_elem_location;
8421 /* Collect the attributes that we will want to use for the checksum. */
8423 static void
8424 collect_checksum_attributes (struct checksum_attributes *attrs, dw_die_ref die)
8426 dw_attr_ref a;
8427 unsigned ix;
8429 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
8431 switch (a->dw_attr)
8433 case DW_AT_name:
8434 attrs->at_name = a;
8435 break;
8436 case DW_AT_type:
8437 attrs->at_type = a;
8438 break;
8439 case DW_AT_friend:
8440 attrs->at_friend = a;
8441 break;
8442 case DW_AT_accessibility:
8443 attrs->at_accessibility = a;
8444 break;
8445 case DW_AT_address_class:
8446 attrs->at_address_class = a;
8447 break;
8448 case DW_AT_allocated:
8449 attrs->at_allocated = a;
8450 break;
8451 case DW_AT_artificial:
8452 attrs->at_artificial = a;
8453 break;
8454 case DW_AT_associated:
8455 attrs->at_associated = a;
8456 break;
8457 case DW_AT_binary_scale:
8458 attrs->at_binary_scale = a;
8459 break;
8460 case DW_AT_bit_offset:
8461 attrs->at_bit_offset = a;
8462 break;
8463 case DW_AT_bit_size:
8464 attrs->at_bit_size = a;
8465 break;
8466 case DW_AT_bit_stride:
8467 attrs->at_bit_stride = a;
8468 break;
8469 case DW_AT_byte_size:
8470 attrs->at_byte_size = a;
8471 break;
8472 case DW_AT_byte_stride:
8473 attrs->at_byte_stride = a;
8474 break;
8475 case DW_AT_const_value:
8476 attrs->at_const_value = a;
8477 break;
8478 case DW_AT_containing_type:
8479 attrs->at_containing_type = a;
8480 break;
8481 case DW_AT_count:
8482 attrs->at_count = a;
8483 break;
8484 case DW_AT_data_location:
8485 attrs->at_data_location = a;
8486 break;
8487 case DW_AT_data_member_location:
8488 attrs->at_data_member_location = a;
8489 break;
8490 case DW_AT_decimal_scale:
8491 attrs->at_decimal_scale = a;
8492 break;
8493 case DW_AT_decimal_sign:
8494 attrs->at_decimal_sign = a;
8495 break;
8496 case DW_AT_default_value:
8497 attrs->at_default_value = a;
8498 break;
8499 case DW_AT_digit_count:
8500 attrs->at_digit_count = a;
8501 break;
8502 case DW_AT_discr:
8503 attrs->at_discr = a;
8504 break;
8505 case DW_AT_discr_list:
8506 attrs->at_discr_list = a;
8507 break;
8508 case DW_AT_discr_value:
8509 attrs->at_discr_value = a;
8510 break;
8511 case DW_AT_encoding:
8512 attrs->at_encoding = a;
8513 break;
8514 case DW_AT_endianity:
8515 attrs->at_endianity = a;
8516 break;
8517 case DW_AT_explicit:
8518 attrs->at_explicit = a;
8519 break;
8520 case DW_AT_is_optional:
8521 attrs->at_is_optional = a;
8522 break;
8523 case DW_AT_location:
8524 attrs->at_location = a;
8525 break;
8526 case DW_AT_lower_bound:
8527 attrs->at_lower_bound = a;
8528 break;
8529 case DW_AT_mutable:
8530 attrs->at_mutable = a;
8531 break;
8532 case DW_AT_ordering:
8533 attrs->at_ordering = a;
8534 break;
8535 case DW_AT_picture_string:
8536 attrs->at_picture_string = a;
8537 break;
8538 case DW_AT_prototyped:
8539 attrs->at_prototyped = a;
8540 break;
8541 case DW_AT_small:
8542 attrs->at_small = a;
8543 break;
8544 case DW_AT_segment:
8545 attrs->at_segment = a;
8546 break;
8547 case DW_AT_string_length:
8548 attrs->at_string_length = a;
8549 break;
8550 case DW_AT_threads_scaled:
8551 attrs->at_threads_scaled = a;
8552 break;
8553 case DW_AT_upper_bound:
8554 attrs->at_upper_bound = a;
8555 break;
8556 case DW_AT_use_location:
8557 attrs->at_use_location = a;
8558 break;
8559 case DW_AT_use_UTF8:
8560 attrs->at_use_UTF8 = a;
8561 break;
8562 case DW_AT_variable_parameter:
8563 attrs->at_variable_parameter = a;
8564 break;
8565 case DW_AT_virtuality:
8566 attrs->at_virtuality = a;
8567 break;
8568 case DW_AT_visibility:
8569 attrs->at_visibility = a;
8570 break;
8571 case DW_AT_vtable_elem_location:
8572 attrs->at_vtable_elem_location = a;
8573 break;
8574 default:
8575 break;
8580 /* Calculate the checksum of a DIE, using an ordered subset of attributes. */
8582 static void
8583 die_checksum_ordered (dw_die_ref die, struct md5_ctx *ctx, int *mark)
8585 dw_die_ref c;
8586 dw_die_ref decl;
8587 struct checksum_attributes attrs;
8589 CHECKSUM_ULEB128 ('D');
8590 CHECKSUM_ULEB128 (die->die_tag);
8592 memset (&attrs, 0, sizeof (attrs));
8594 decl = get_AT_ref (die, DW_AT_specification);
8595 if (decl != NULL)
8596 collect_checksum_attributes (&attrs, decl);
8597 collect_checksum_attributes (&attrs, die);
8599 CHECKSUM_ATTR (attrs.at_name);
8600 CHECKSUM_ATTR (attrs.at_accessibility);
8601 CHECKSUM_ATTR (attrs.at_address_class);
8602 CHECKSUM_ATTR (attrs.at_allocated);
8603 CHECKSUM_ATTR (attrs.at_artificial);
8604 CHECKSUM_ATTR (attrs.at_associated);
8605 CHECKSUM_ATTR (attrs.at_binary_scale);
8606 CHECKSUM_ATTR (attrs.at_bit_offset);
8607 CHECKSUM_ATTR (attrs.at_bit_size);
8608 CHECKSUM_ATTR (attrs.at_bit_stride);
8609 CHECKSUM_ATTR (attrs.at_byte_size);
8610 CHECKSUM_ATTR (attrs.at_byte_stride);
8611 CHECKSUM_ATTR (attrs.at_const_value);
8612 CHECKSUM_ATTR (attrs.at_containing_type);
8613 CHECKSUM_ATTR (attrs.at_count);
8614 CHECKSUM_ATTR (attrs.at_data_location);
8615 CHECKSUM_ATTR (attrs.at_data_member_location);
8616 CHECKSUM_ATTR (attrs.at_decimal_scale);
8617 CHECKSUM_ATTR (attrs.at_decimal_sign);
8618 CHECKSUM_ATTR (attrs.at_default_value);
8619 CHECKSUM_ATTR (attrs.at_digit_count);
8620 CHECKSUM_ATTR (attrs.at_discr);
8621 CHECKSUM_ATTR (attrs.at_discr_list);
8622 CHECKSUM_ATTR (attrs.at_discr_value);
8623 CHECKSUM_ATTR (attrs.at_encoding);
8624 CHECKSUM_ATTR (attrs.at_endianity);
8625 CHECKSUM_ATTR (attrs.at_explicit);
8626 CHECKSUM_ATTR (attrs.at_is_optional);
8627 CHECKSUM_ATTR (attrs.at_location);
8628 CHECKSUM_ATTR (attrs.at_lower_bound);
8629 CHECKSUM_ATTR (attrs.at_mutable);
8630 CHECKSUM_ATTR (attrs.at_ordering);
8631 CHECKSUM_ATTR (attrs.at_picture_string);
8632 CHECKSUM_ATTR (attrs.at_prototyped);
8633 CHECKSUM_ATTR (attrs.at_small);
8634 CHECKSUM_ATTR (attrs.at_segment);
8635 CHECKSUM_ATTR (attrs.at_string_length);
8636 CHECKSUM_ATTR (attrs.at_threads_scaled);
8637 CHECKSUM_ATTR (attrs.at_upper_bound);
8638 CHECKSUM_ATTR (attrs.at_use_location);
8639 CHECKSUM_ATTR (attrs.at_use_UTF8);
8640 CHECKSUM_ATTR (attrs.at_variable_parameter);
8641 CHECKSUM_ATTR (attrs.at_virtuality);
8642 CHECKSUM_ATTR (attrs.at_visibility);
8643 CHECKSUM_ATTR (attrs.at_vtable_elem_location);
8644 CHECKSUM_ATTR (attrs.at_type);
8645 CHECKSUM_ATTR (attrs.at_friend);
8647 /* Checksum the child DIEs, except for nested types and member functions. */
8648 c = die->die_child;
8649 if (c) do {
8650 dw_attr_ref name_attr;
8652 c = c->die_sib;
8653 name_attr = get_AT (c, DW_AT_name);
8654 if ((is_type_die (c) || c->die_tag == DW_TAG_subprogram)
8655 && name_attr != NULL)
8657 CHECKSUM_ULEB128 ('S');
8658 CHECKSUM_ULEB128 (c->die_tag);
8659 CHECKSUM_STRING (AT_string (name_attr));
8661 else
8663 /* Mark this DIE so it gets processed when unmarking. */
8664 if (c->die_mark == 0)
8665 c->die_mark = -1;
8666 die_checksum_ordered (c, ctx, mark);
8668 } while (c != die->die_child);
8670 CHECKSUM_ULEB128 (0);
8673 #undef CHECKSUM
8674 #undef CHECKSUM_STRING
8675 #undef CHECKSUM_ATTR
8676 #undef CHECKSUM_LEB128
8677 #undef CHECKSUM_ULEB128
8679 /* Generate the type signature for DIE. This is computed by generating an
8680 MD5 checksum over the DIE's tag, its relevant attributes, and its
8681 children. Attributes that are references to other DIEs are processed
8682 by recursion, using the MARK field to prevent infinite recursion.
8683 If the DIE is nested inside a namespace or another type, we also
8684 need to include that context in the signature. The lower 64 bits
8685 of the resulting MD5 checksum comprise the signature. */
8687 static void
8688 generate_type_signature (dw_die_ref die, comdat_type_node *type_node)
8690 int mark;
8691 const char *name;
8692 unsigned char checksum[16];
8693 struct md5_ctx ctx;
8694 dw_die_ref decl;
8696 name = get_AT_string (die, DW_AT_name);
8697 decl = get_AT_ref (die, DW_AT_specification);
8699 /* First, compute a signature for just the type name (and its surrounding
8700 context, if any. This is stored in the type unit DIE for link-time
8701 ODR (one-definition rule) checking. */
8703 if (is_cxx() && name != NULL)
8705 md5_init_ctx (&ctx);
8707 /* Checksum the names of surrounding namespaces and structures. */
8708 if (decl != NULL && decl->die_parent != NULL)
8709 checksum_die_context (decl->die_parent, &ctx);
8711 md5_process_bytes (&die->die_tag, sizeof (die->die_tag), &ctx);
8712 md5_process_bytes (name, strlen (name) + 1, &ctx);
8713 md5_finish_ctx (&ctx, checksum);
8715 add_AT_data8 (type_node->root_die, DW_AT_GNU_odr_signature, &checksum[8]);
8718 /* Next, compute the complete type signature. */
8720 md5_init_ctx (&ctx);
8721 mark = 1;
8722 die->die_mark = mark;
8724 /* Checksum the names of surrounding namespaces and structures. */
8725 if (decl != NULL && decl->die_parent != NULL)
8726 checksum_die_context (decl->die_parent, &ctx);
8728 /* Checksum the DIE and its children. */
8729 die_checksum_ordered (die, &ctx, &mark);
8730 unmark_all_dies (die);
8731 md5_finish_ctx (&ctx, checksum);
8733 /* Store the signature in the type node and link the type DIE and the
8734 type node together. */
8735 memcpy (type_node->signature, &checksum[16 - DWARF_TYPE_SIGNATURE_SIZE],
8736 DWARF_TYPE_SIGNATURE_SIZE);
8737 die->die_id.die_type_node = type_node;
8738 type_node->type_die = die;
8740 /* If the DIE is a specification, link its declaration to the type node
8741 as well. */
8742 if (decl != NULL)
8743 decl->die_id.die_type_node = type_node;
8746 /* Do the location expressions look same? */
8747 static inline int
8748 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
8750 return loc1->dw_loc_opc == loc2->dw_loc_opc
8751 && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
8752 && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
8755 /* Do the values look the same? */
8756 static int
8757 same_dw_val_p (const dw_val_node *v1, const dw_val_node *v2, int *mark)
8759 dw_loc_descr_ref loc1, loc2;
8760 rtx r1, r2;
8762 if (v1->val_class != v2->val_class)
8763 return 0;
8765 switch (v1->val_class)
8767 case dw_val_class_const:
8768 return v1->v.val_int == v2->v.val_int;
8769 case dw_val_class_unsigned_const:
8770 return v1->v.val_unsigned == v2->v.val_unsigned;
8771 case dw_val_class_const_double:
8772 return v1->v.val_double.high == v2->v.val_double.high
8773 && v1->v.val_double.low == v2->v.val_double.low;
8774 case dw_val_class_vec:
8775 if (v1->v.val_vec.length != v2->v.val_vec.length
8776 || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
8777 return 0;
8778 if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
8779 v1->v.val_vec.length * v1->v.val_vec.elt_size))
8780 return 0;
8781 return 1;
8782 case dw_val_class_flag:
8783 return v1->v.val_flag == v2->v.val_flag;
8784 case dw_val_class_str:
8785 return !strcmp(v1->v.val_str->str, v2->v.val_str->str);
8787 case dw_val_class_addr:
8788 r1 = v1->v.val_addr;
8789 r2 = v2->v.val_addr;
8790 if (GET_CODE (r1) != GET_CODE (r2))
8791 return 0;
8792 return !rtx_equal_p (r1, r2);
8794 case dw_val_class_offset:
8795 return v1->v.val_offset == v2->v.val_offset;
8797 case dw_val_class_loc:
8798 for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
8799 loc1 && loc2;
8800 loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
8801 if (!same_loc_p (loc1, loc2, mark))
8802 return 0;
8803 return !loc1 && !loc2;
8805 case dw_val_class_die_ref:
8806 return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
8808 case dw_val_class_fde_ref:
8809 case dw_val_class_lbl_id:
8810 case dw_val_class_lineptr:
8811 case dw_val_class_macptr:
8812 return 1;
8814 case dw_val_class_file:
8815 return v1->v.val_file == v2->v.val_file;
8817 case dw_val_class_data8:
8818 return !memcmp (v1->v.val_data8, v2->v.val_data8, 8);
8820 default:
8821 return 1;
8825 /* Do the attributes look the same? */
8827 static int
8828 same_attr_p (dw_attr_ref at1, dw_attr_ref at2, int *mark)
8830 if (at1->dw_attr != at2->dw_attr)
8831 return 0;
8833 /* We don't care that this was compiled with a different compiler
8834 snapshot; if the output is the same, that's what matters. */
8835 if (at1->dw_attr == DW_AT_producer)
8836 return 1;
8838 return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
8841 /* Do the dies look the same? */
8843 static int
8844 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
8846 dw_die_ref c1, c2;
8847 dw_attr_ref a1;
8848 unsigned ix;
8850 /* To avoid infinite recursion. */
8851 if (die1->die_mark)
8852 return die1->die_mark == die2->die_mark;
8853 die1->die_mark = die2->die_mark = ++(*mark);
8855 if (die1->die_tag != die2->die_tag)
8856 return 0;
8858 if (VEC_length (dw_attr_node, die1->die_attr)
8859 != VEC_length (dw_attr_node, die2->die_attr))
8860 return 0;
8862 for (ix = 0; VEC_iterate (dw_attr_node, die1->die_attr, ix, a1); ix++)
8863 if (!same_attr_p (a1, VEC_index (dw_attr_node, die2->die_attr, ix), mark))
8864 return 0;
8866 c1 = die1->die_child;
8867 c2 = die2->die_child;
8868 if (! c1)
8870 if (c2)
8871 return 0;
8873 else
8874 for (;;)
8876 if (!same_die_p (c1, c2, mark))
8877 return 0;
8878 c1 = c1->die_sib;
8879 c2 = c2->die_sib;
8880 if (c1 == die1->die_child)
8882 if (c2 == die2->die_child)
8883 break;
8884 else
8885 return 0;
8889 return 1;
8892 /* Do the dies look the same? Wrapper around same_die_p. */
8894 static int
8895 same_die_p_wrap (dw_die_ref die1, dw_die_ref die2)
8897 int mark = 0;
8898 int ret = same_die_p (die1, die2, &mark);
8900 unmark_all_dies (die1);
8901 unmark_all_dies (die2);
8903 return ret;
8906 /* The prefix to attach to symbols on DIEs in the current comdat debug
8907 info section. */
8908 static char *comdat_symbol_id;
8910 /* The index of the current symbol within the current comdat CU. */
8911 static unsigned int comdat_symbol_number;
8913 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
8914 children, and set comdat_symbol_id accordingly. */
8916 static void
8917 compute_section_prefix (dw_die_ref unit_die)
8919 const char *die_name = get_AT_string (unit_die, DW_AT_name);
8920 const char *base = die_name ? lbasename (die_name) : "anonymous";
8921 char *name = XALLOCAVEC (char, strlen (base) + 64);
8922 char *p;
8923 int i, mark;
8924 unsigned char checksum[16];
8925 struct md5_ctx ctx;
8927 /* Compute the checksum of the DIE, then append part of it as hex digits to
8928 the name filename of the unit. */
8930 md5_init_ctx (&ctx);
8931 mark = 0;
8932 die_checksum (unit_die, &ctx, &mark);
8933 unmark_all_dies (unit_die);
8934 md5_finish_ctx (&ctx, checksum);
8936 sprintf (name, "%s.", base);
8937 clean_symbol_name (name);
8939 p = name + strlen (name);
8940 for (i = 0; i < 4; i++)
8942 sprintf (p, "%.2x", checksum[i]);
8943 p += 2;
8946 comdat_symbol_id = unit_die->die_id.die_symbol = xstrdup (name);
8947 comdat_symbol_number = 0;
8950 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P. */
8952 static int
8953 is_type_die (dw_die_ref die)
8955 switch (die->die_tag)
8957 case DW_TAG_array_type:
8958 case DW_TAG_class_type:
8959 case DW_TAG_interface_type:
8960 case DW_TAG_enumeration_type:
8961 case DW_TAG_pointer_type:
8962 case DW_TAG_reference_type:
8963 case DW_TAG_string_type:
8964 case DW_TAG_structure_type:
8965 case DW_TAG_subroutine_type:
8966 case DW_TAG_union_type:
8967 case DW_TAG_ptr_to_member_type:
8968 case DW_TAG_set_type:
8969 case DW_TAG_subrange_type:
8970 case DW_TAG_base_type:
8971 case DW_TAG_const_type:
8972 case DW_TAG_file_type:
8973 case DW_TAG_packed_type:
8974 case DW_TAG_volatile_type:
8975 case DW_TAG_typedef:
8976 return 1;
8977 default:
8978 return 0;
8982 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
8983 Basically, we want to choose the bits that are likely to be shared between
8984 compilations (types) and leave out the bits that are specific to individual
8985 compilations (functions). */
8987 static int
8988 is_comdat_die (dw_die_ref c)
8990 /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
8991 we do for stabs. The advantage is a greater likelihood of sharing between
8992 objects that don't include headers in the same order (and therefore would
8993 put the base types in a different comdat). jason 8/28/00 */
8995 if (c->die_tag == DW_TAG_base_type)
8996 return 0;
8998 if (c->die_tag == DW_TAG_pointer_type
8999 || c->die_tag == DW_TAG_reference_type
9000 || c->die_tag == DW_TAG_const_type
9001 || c->die_tag == DW_TAG_volatile_type)
9003 dw_die_ref t = get_AT_ref (c, DW_AT_type);
9005 return t ? is_comdat_die (t) : 0;
9008 return is_type_die (c);
9011 /* Returns 1 iff C is the sort of DIE that might be referred to from another
9012 compilation unit. */
9014 static int
9015 is_symbol_die (dw_die_ref c)
9017 return (is_type_die (c)
9018 || is_declaration_die (c)
9019 || c->die_tag == DW_TAG_namespace
9020 || c->die_tag == DW_TAG_module);
9023 static char *
9024 gen_internal_sym (const char *prefix)
9026 char buf[256];
9028 ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
9029 return xstrdup (buf);
9032 /* Assign symbols to all worthy DIEs under DIE. */
9034 static void
9035 assign_symbol_names (dw_die_ref die)
9037 dw_die_ref c;
9039 if (is_symbol_die (die))
9041 if (comdat_symbol_id)
9043 char *p = XALLOCAVEC (char, strlen (comdat_symbol_id) + 64);
9045 sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
9046 comdat_symbol_id, comdat_symbol_number++);
9047 die->die_id.die_symbol = xstrdup (p);
9049 else
9050 die->die_id.die_symbol = gen_internal_sym ("LDIE");
9053 FOR_EACH_CHILD (die, c, assign_symbol_names (c));
9056 struct cu_hash_table_entry
9058 dw_die_ref cu;
9059 unsigned min_comdat_num, max_comdat_num;
9060 struct cu_hash_table_entry *next;
9063 /* Routines to manipulate hash table of CUs. */
9064 static hashval_t
9065 htab_cu_hash (const void *of)
9067 const struct cu_hash_table_entry *const entry =
9068 (const struct cu_hash_table_entry *) of;
9070 return htab_hash_string (entry->cu->die_id.die_symbol);
9073 static int
9074 htab_cu_eq (const void *of1, const void *of2)
9076 const struct cu_hash_table_entry *const entry1 =
9077 (const struct cu_hash_table_entry *) of1;
9078 const struct die_struct *const entry2 = (const struct die_struct *) of2;
9080 return !strcmp (entry1->cu->die_id.die_symbol, entry2->die_id.die_symbol);
9083 static void
9084 htab_cu_del (void *what)
9086 struct cu_hash_table_entry *next,
9087 *entry = (struct cu_hash_table_entry *) what;
9089 while (entry)
9091 next = entry->next;
9092 free (entry);
9093 entry = next;
9097 /* Check whether we have already seen this CU and set up SYM_NUM
9098 accordingly. */
9099 static int
9100 check_duplicate_cu (dw_die_ref cu, htab_t htable, unsigned int *sym_num)
9102 struct cu_hash_table_entry dummy;
9103 struct cu_hash_table_entry **slot, *entry, *last = &dummy;
9105 dummy.max_comdat_num = 0;
9107 slot = (struct cu_hash_table_entry **)
9108 htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_id.die_symbol),
9109 INSERT);
9110 entry = *slot;
9112 for (; entry; last = entry, entry = entry->next)
9114 if (same_die_p_wrap (cu, entry->cu))
9115 break;
9118 if (entry)
9120 *sym_num = entry->min_comdat_num;
9121 return 1;
9124 entry = XCNEW (struct cu_hash_table_entry);
9125 entry->cu = cu;
9126 entry->min_comdat_num = *sym_num = last->max_comdat_num;
9127 entry->next = *slot;
9128 *slot = entry;
9130 return 0;
9133 /* Record SYM_NUM to record of CU in HTABLE. */
9134 static void
9135 record_comdat_symbol_number (dw_die_ref cu, htab_t htable, unsigned int sym_num)
9137 struct cu_hash_table_entry **slot, *entry;
9139 slot = (struct cu_hash_table_entry **)
9140 htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_id.die_symbol),
9141 NO_INSERT);
9142 entry = *slot;
9144 entry->max_comdat_num = sym_num;
9147 /* Traverse the DIE (which is always comp_unit_die), and set up
9148 additional compilation units for each of the include files we see
9149 bracketed by BINCL/EINCL. */
9151 static void
9152 break_out_includes (dw_die_ref die)
9154 dw_die_ref c;
9155 dw_die_ref unit = NULL;
9156 limbo_die_node *node, **pnode;
9157 htab_t cu_hash_table;
9159 c = die->die_child;
9160 if (c) do {
9161 dw_die_ref prev = c;
9162 c = c->die_sib;
9163 while (c->die_tag == DW_TAG_GNU_BINCL || c->die_tag == DW_TAG_GNU_EINCL
9164 || (unit && is_comdat_die (c)))
9166 dw_die_ref next = c->die_sib;
9168 /* This DIE is for a secondary CU; remove it from the main one. */
9169 remove_child_with_prev (c, prev);
9171 if (c->die_tag == DW_TAG_GNU_BINCL)
9172 unit = push_new_compile_unit (unit, c);
9173 else if (c->die_tag == DW_TAG_GNU_EINCL)
9174 unit = pop_compile_unit (unit);
9175 else
9176 add_child_die (unit, c);
9177 c = next;
9178 if (c == die->die_child)
9179 break;
9181 } while (c != die->die_child);
9183 #if 0
9184 /* We can only use this in debugging, since the frontend doesn't check
9185 to make sure that we leave every include file we enter. */
9186 gcc_assert (!unit);
9187 #endif
9189 assign_symbol_names (die);
9190 cu_hash_table = htab_create (10, htab_cu_hash, htab_cu_eq, htab_cu_del);
9191 for (node = limbo_die_list, pnode = &limbo_die_list;
9192 node;
9193 node = node->next)
9195 int is_dupl;
9197 compute_section_prefix (node->die);
9198 is_dupl = check_duplicate_cu (node->die, cu_hash_table,
9199 &comdat_symbol_number);
9200 assign_symbol_names (node->die);
9201 if (is_dupl)
9202 *pnode = node->next;
9203 else
9205 pnode = &node->next;
9206 record_comdat_symbol_number (node->die, cu_hash_table,
9207 comdat_symbol_number);
9210 htab_delete (cu_hash_table);
9213 /* Return non-zero if this DIE is a declaration. */
9215 static int
9216 is_declaration_die (dw_die_ref die)
9218 dw_attr_ref a;
9219 unsigned ix;
9221 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9222 if (a->dw_attr == DW_AT_declaration)
9223 return 1;
9225 return 0;
9228 /* Return non-zero if this is a type DIE that should be moved to a
9229 COMDAT .debug_types section. */
9231 static int
9232 should_move_die_to_comdat (dw_die_ref die)
9234 switch (die->die_tag)
9236 case DW_TAG_class_type:
9237 case DW_TAG_structure_type:
9238 case DW_TAG_enumeration_type:
9239 case DW_TAG_union_type:
9240 /* Don't move declarations or inlined instances. */
9241 if (is_declaration_die (die) || get_AT (die, DW_AT_abstract_origin))
9242 return 0;
9243 return 1;
9244 case DW_TAG_array_type:
9245 case DW_TAG_interface_type:
9246 case DW_TAG_pointer_type:
9247 case DW_TAG_reference_type:
9248 case DW_TAG_string_type:
9249 case DW_TAG_subroutine_type:
9250 case DW_TAG_ptr_to_member_type:
9251 case DW_TAG_set_type:
9252 case DW_TAG_subrange_type:
9253 case DW_TAG_base_type:
9254 case DW_TAG_const_type:
9255 case DW_TAG_file_type:
9256 case DW_TAG_packed_type:
9257 case DW_TAG_volatile_type:
9258 case DW_TAG_typedef:
9259 default:
9260 return 0;
9264 /* Make a clone of DIE. */
9266 static dw_die_ref
9267 clone_die (dw_die_ref die)
9269 dw_die_ref clone;
9270 dw_attr_ref a;
9271 unsigned ix;
9273 clone = GGC_CNEW (die_node);
9274 clone->die_tag = die->die_tag;
9276 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9277 add_dwarf_attr (clone, a);
9279 return clone;
9282 /* Make a clone of the tree rooted at DIE. */
9284 static dw_die_ref
9285 clone_tree (dw_die_ref die)
9287 dw_die_ref c;
9288 dw_die_ref clone = clone_die (die);
9290 FOR_EACH_CHILD (die, c, add_child_die (clone, clone_tree(c)));
9292 return clone;
9295 /* Make a clone of DIE as a declaration. */
9297 static dw_die_ref
9298 clone_as_declaration (dw_die_ref die)
9300 dw_die_ref clone;
9301 dw_die_ref decl;
9302 dw_attr_ref a;
9303 unsigned ix;
9305 /* If the DIE is already a declaration, just clone it. */
9306 if (is_declaration_die (die))
9307 return clone_die (die);
9309 /* If the DIE is a specification, just clone its declaration DIE. */
9310 decl = get_AT_ref (die, DW_AT_specification);
9311 if (decl != NULL)
9312 return clone_die (decl);
9314 clone = GGC_CNEW (die_node);
9315 clone->die_tag = die->die_tag;
9317 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9319 /* We don't want to copy over all attributes.
9320 For example we don't want DW_AT_byte_size because otherwise we will no
9321 longer have a declaration and GDB will treat it as a definition. */
9323 switch (a->dw_attr)
9325 case DW_AT_artificial:
9326 case DW_AT_containing_type:
9327 case DW_AT_external:
9328 case DW_AT_name:
9329 case DW_AT_type:
9330 case DW_AT_virtuality:
9331 case DW_AT_MIPS_linkage_name:
9332 add_dwarf_attr (clone, a);
9333 break;
9334 case DW_AT_byte_size:
9335 default:
9336 break;
9340 if (die->die_id.die_type_node)
9341 add_AT_die_ref (clone, DW_AT_signature, die);
9343 add_AT_flag (clone, DW_AT_declaration, 1);
9344 return clone;
9347 /* Copy the declaration context to the new compile unit DIE. This includes
9348 any surrounding namespace or type declarations. If the DIE has an
9349 AT_specification attribute, it also includes attributes and children
9350 attached to the specification. */
9352 static void
9353 copy_declaration_context (dw_die_ref unit, dw_die_ref die)
9355 dw_die_ref decl;
9356 dw_die_ref new_decl;
9358 decl = get_AT_ref (die, DW_AT_specification);
9359 if (decl == NULL)
9360 decl = die;
9361 else
9363 unsigned ix;
9364 dw_die_ref c;
9365 dw_attr_ref a;
9367 /* Copy the type node pointer from the new DIE to the original
9368 declaration DIE so we can forward references later. */
9369 decl->die_id.die_type_node = die->die_id.die_type_node;
9371 remove_AT (die, DW_AT_specification);
9373 for (ix = 0; VEC_iterate (dw_attr_node, decl->die_attr, ix, a); ix++)
9375 if (a->dw_attr != DW_AT_name
9376 && a->dw_attr != DW_AT_declaration
9377 && a->dw_attr != DW_AT_external)
9378 add_dwarf_attr (die, a);
9381 FOR_EACH_CHILD (decl, c, add_child_die (die, clone_tree(c)));
9384 if (decl->die_parent != NULL
9385 && decl->die_parent->die_tag != DW_TAG_compile_unit
9386 && decl->die_parent->die_tag != DW_TAG_type_unit)
9388 new_decl = copy_ancestor_tree (unit, decl, NULL);
9389 if (new_decl != NULL)
9391 remove_AT (new_decl, DW_AT_signature);
9392 add_AT_specification (die, new_decl);
9397 /* Generate the skeleton ancestor tree for the given NODE, then clone
9398 the DIE and add the clone into the tree. */
9400 static void
9401 generate_skeleton_ancestor_tree (skeleton_chain_node *node)
9403 if (node->new_die != NULL)
9404 return;
9406 node->new_die = clone_as_declaration (node->old_die);
9408 if (node->parent != NULL)
9410 generate_skeleton_ancestor_tree (node->parent);
9411 add_child_die (node->parent->new_die, node->new_die);
9415 /* Generate a skeleton tree of DIEs containing any declarations that are
9416 found in the original tree. We traverse the tree looking for declaration
9417 DIEs, and construct the skeleton from the bottom up whenever we find one. */
9419 static void
9420 generate_skeleton_bottom_up (skeleton_chain_node *parent)
9422 skeleton_chain_node node;
9423 dw_die_ref c;
9424 dw_die_ref first;
9425 dw_die_ref prev = NULL;
9426 dw_die_ref next = NULL;
9428 node.parent = parent;
9430 first = c = parent->old_die->die_child;
9431 if (c)
9432 next = c->die_sib;
9433 if (c) do {
9434 if (prev == NULL || prev->die_sib == c)
9435 prev = c;
9436 c = next;
9437 next = (c == first ? NULL : c->die_sib);
9438 node.old_die = c;
9439 node.new_die = NULL;
9440 if (is_declaration_die (c))
9442 /* Clone the existing DIE, move the original to the skeleton
9443 tree (which is in the main CU), and put the clone, with
9444 all the original's children, where the original came from. */
9445 dw_die_ref clone = clone_die (c);
9446 move_all_children (c, clone);
9448 replace_child (c, clone, prev);
9449 generate_skeleton_ancestor_tree (parent);
9450 add_child_die (parent->new_die, c);
9451 node.new_die = c;
9452 c = clone;
9454 generate_skeleton_bottom_up (&node);
9455 } while (next != NULL);
9458 /* Wrapper function for generate_skeleton_bottom_up. */
9460 static dw_die_ref
9461 generate_skeleton (dw_die_ref die)
9463 skeleton_chain_node node;
9465 node.old_die = die;
9466 node.new_die = NULL;
9467 node.parent = NULL;
9469 /* If this type definition is nested inside another type,
9470 always leave at least a declaration in its place. */
9471 if (die->die_parent != NULL && is_type_die (die->die_parent))
9472 node.new_die = clone_as_declaration (die);
9474 generate_skeleton_bottom_up (&node);
9475 return node.new_die;
9478 /* Remove the DIE from its parent, possibly replacing it with a cloned
9479 declaration. The original DIE will be moved to a new compile unit
9480 so that existing references to it follow it to the new location. If
9481 any of the original DIE's descendants is a declaration, we need to
9482 replace the original DIE with a skeleton tree and move the
9483 declarations back into the skeleton tree. */
9485 static dw_die_ref
9486 remove_child_or_replace_with_skeleton (dw_die_ref child, dw_die_ref prev)
9488 dw_die_ref skeleton;
9490 skeleton = generate_skeleton (child);
9491 if (skeleton == NULL)
9492 remove_child_with_prev (child, prev);
9493 else
9495 skeleton->die_id.die_type_node = child->die_id.die_type_node;
9496 replace_child (child, skeleton, prev);
9499 return skeleton;
9502 /* Traverse the DIE and set up additional .debug_types sections for each
9503 type worthy of being placed in a COMDAT section. */
9505 static void
9506 break_out_comdat_types (dw_die_ref die)
9508 dw_die_ref c;
9509 dw_die_ref first;
9510 dw_die_ref prev = NULL;
9511 dw_die_ref next = NULL;
9512 dw_die_ref unit = NULL;
9514 first = c = die->die_child;
9515 if (c)
9516 next = c->die_sib;
9517 if (c) do {
9518 if (prev == NULL || prev->die_sib == c)
9519 prev = c;
9520 c = next;
9521 next = (c == first ? NULL : c->die_sib);
9522 if (should_move_die_to_comdat (c))
9524 dw_die_ref replacement;
9525 comdat_type_node_ref type_node;
9527 /* Create a new type unit DIE as the root for the new tree, and
9528 add it to the list of comdat types. */
9529 unit = new_die (DW_TAG_type_unit, NULL, NULL);
9530 add_AT_unsigned (unit, DW_AT_language,
9531 get_AT_unsigned (comp_unit_die, DW_AT_language));
9532 type_node = GGC_CNEW (comdat_type_node);
9533 type_node->root_die = unit;
9534 type_node->next = comdat_type_list;
9535 comdat_type_list = type_node;
9537 /* Generate the type signature. */
9538 generate_type_signature (c, type_node);
9540 /* Copy the declaration context, attributes, and children of the
9541 declaration into the new compile unit DIE. */
9542 copy_declaration_context (unit, c);
9544 /* Remove this DIE from the main CU. */
9545 replacement = remove_child_or_replace_with_skeleton (c, prev);
9547 /* Break out nested types into their own type units. */
9548 break_out_comdat_types (c);
9550 /* Add the DIE to the new compunit. */
9551 add_child_die (unit, c);
9553 if (replacement != NULL)
9554 c = replacement;
9556 else if (c->die_tag == DW_TAG_namespace
9557 || c->die_tag == DW_TAG_class_type
9558 || c->die_tag == DW_TAG_structure_type
9559 || c->die_tag == DW_TAG_union_type)
9561 /* Look for nested types that can be broken out. */
9562 break_out_comdat_types (c);
9564 } while (next != NULL);
9567 /* Structure to map a DIE in one CU to its copy in a comdat type unit. */
9569 struct decl_table_entry
9571 dw_die_ref orig;
9572 dw_die_ref copy;
9575 /* Routines to manipulate hash table of copied declarations. */
9577 static hashval_t
9578 htab_decl_hash (const void *of)
9580 const struct decl_table_entry *const entry =
9581 (const struct decl_table_entry *) of;
9583 return htab_hash_pointer (entry->orig);
9586 static int
9587 htab_decl_eq (const void *of1, const void *of2)
9589 const struct decl_table_entry *const entry1 =
9590 (const struct decl_table_entry *) of1;
9591 const struct die_struct *const entry2 = (const struct die_struct *) of2;
9593 return entry1->orig == entry2;
9596 static void
9597 htab_decl_del (void *what)
9599 struct decl_table_entry *entry = (struct decl_table_entry *) what;
9601 free (entry);
9604 /* Copy DIE and its ancestors, up to, but not including, the compile unit
9605 or type unit entry, to a new tree. Adds the new tree to UNIT and returns
9606 a pointer to the copy of DIE. If DECL_TABLE is provided, it is used
9607 to check if the ancestor has already been copied into UNIT. */
9609 static dw_die_ref
9610 copy_ancestor_tree (dw_die_ref unit, dw_die_ref die, htab_t decl_table)
9612 dw_die_ref parent = die->die_parent;
9613 dw_die_ref new_parent = unit;
9614 dw_die_ref copy;
9615 void **slot = NULL;
9616 struct decl_table_entry *entry = NULL;
9618 if (decl_table)
9620 /* Check if the entry has already been copied to UNIT. */
9621 slot = htab_find_slot_with_hash (decl_table, die,
9622 htab_hash_pointer (die), INSERT);
9623 if (*slot != HTAB_EMPTY_ENTRY)
9625 entry = (struct decl_table_entry *) *slot;
9626 return entry->copy;
9629 /* Record in DECL_TABLE that DIE has been copied to UNIT. */
9630 entry = XCNEW (struct decl_table_entry);
9631 entry->orig = die;
9632 entry->copy = NULL;
9633 *slot = entry;
9636 if (parent != NULL)
9638 dw_die_ref spec = get_AT_ref (parent, DW_AT_specification);
9639 if (spec != NULL)
9640 parent = spec;
9641 if (parent->die_tag != DW_TAG_compile_unit
9642 && parent->die_tag != DW_TAG_type_unit)
9643 new_parent = copy_ancestor_tree (unit, parent, decl_table);
9646 copy = clone_as_declaration (die);
9647 add_child_die (new_parent, copy);
9649 if (decl_table != NULL)
9651 /* Make sure the copy is marked as part of the type unit. */
9652 copy->die_mark = 1;
9653 /* Record the pointer to the copy. */
9654 entry->copy = copy;
9657 return copy;
9660 /* Walk the DIE and its children, looking for references to incomplete
9661 or trivial types that are unmarked (i.e., that are not in the current
9662 type_unit). */
9664 static void
9665 copy_decls_walk (dw_die_ref unit, dw_die_ref die, htab_t decl_table)
9667 dw_die_ref c;
9668 dw_attr_ref a;
9669 unsigned ix;
9671 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9673 if (AT_class (a) == dw_val_class_die_ref)
9675 dw_die_ref targ = AT_ref (a);
9676 comdat_type_node_ref type_node = targ->die_id.die_type_node;
9677 void **slot;
9678 struct decl_table_entry *entry;
9680 if (targ->die_mark != 0 || type_node != NULL)
9681 continue;
9683 slot = htab_find_slot_with_hash (decl_table, targ,
9684 htab_hash_pointer (targ), INSERT);
9686 if (*slot != HTAB_EMPTY_ENTRY)
9688 /* TARG has already been copied, so we just need to
9689 modify the reference to point to the copy. */
9690 entry = (struct decl_table_entry *) *slot;
9691 a->dw_attr_val.v.val_die_ref.die = entry->copy;
9693 else
9695 dw_die_ref parent = unit;
9696 dw_die_ref copy = clone_tree (targ);
9698 /* Make sure the cloned tree is marked as part of the
9699 type unit. */
9700 mark_dies (copy);
9702 /* Record in DECL_TABLE that TARG has been copied.
9703 Need to do this now, before the recursive call,
9704 because DECL_TABLE may be expanded and SLOT
9705 would no longer be a valid pointer. */
9706 entry = XCNEW (struct decl_table_entry);
9707 entry->orig = targ;
9708 entry->copy = copy;
9709 *slot = entry;
9711 /* If TARG has surrounding context, copy its ancestor tree
9712 into the new type unit. */
9713 if (targ->die_parent != NULL
9714 && targ->die_parent->die_tag != DW_TAG_compile_unit
9715 && targ->die_parent->die_tag != DW_TAG_type_unit)
9716 parent = copy_ancestor_tree (unit, targ->die_parent,
9717 decl_table);
9719 add_child_die (parent, copy);
9720 a->dw_attr_val.v.val_die_ref.die = copy;
9722 /* Make sure the newly-copied DIE is walked. If it was
9723 installed in a previously-added context, it won't
9724 get visited otherwise. */
9725 if (parent != unit)
9726 copy_decls_walk (unit, parent, decl_table);
9731 FOR_EACH_CHILD (die, c, copy_decls_walk (unit, c, decl_table));
9734 /* Copy declarations for "unworthy" types into the new comdat section.
9735 Incomplete types, modified types, and certain other types aren't broken
9736 out into comdat sections of their own, so they don't have a signature,
9737 and we need to copy the declaration into the same section so that we
9738 don't have an external reference. */
9740 static void
9741 copy_decls_for_unworthy_types (dw_die_ref unit)
9743 htab_t decl_table;
9745 mark_dies (unit);
9746 decl_table = htab_create (10, htab_decl_hash, htab_decl_eq, htab_decl_del);
9747 copy_decls_walk (unit, unit, decl_table);
9748 htab_delete (decl_table);
9749 unmark_dies (unit);
9752 /* Traverse the DIE and add a sibling attribute if it may have the
9753 effect of speeding up access to siblings. To save some space,
9754 avoid generating sibling attributes for DIE's without children. */
9756 static void
9757 add_sibling_attributes (dw_die_ref die)
9759 dw_die_ref c;
9761 if (! die->die_child)
9762 return;
9764 if (die->die_parent && die != die->die_parent->die_child)
9765 add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
9767 FOR_EACH_CHILD (die, c, add_sibling_attributes (c));
9770 /* Output all location lists for the DIE and its children. */
9772 static void
9773 output_location_lists (dw_die_ref die)
9775 dw_die_ref c;
9776 dw_attr_ref a;
9777 unsigned ix;
9779 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9780 if (AT_class (a) == dw_val_class_loc_list)
9781 output_loc_list (AT_loc_list (a));
9783 FOR_EACH_CHILD (die, c, output_location_lists (c));
9786 /* The format of each DIE (and its attribute value pairs) is encoded in an
9787 abbreviation table. This routine builds the abbreviation table and assigns
9788 a unique abbreviation id for each abbreviation entry. The children of each
9789 die are visited recursively. */
9791 static void
9792 build_abbrev_table (dw_die_ref die)
9794 unsigned long abbrev_id;
9795 unsigned int n_alloc;
9796 dw_die_ref c;
9797 dw_attr_ref a;
9798 unsigned ix;
9800 /* Scan the DIE references, and mark as external any that refer to
9801 DIEs from other CUs (i.e. those which are not marked). */
9802 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9803 if (AT_class (a) == dw_val_class_die_ref
9804 && AT_ref (a)->die_mark == 0)
9806 gcc_assert (dwarf_version >= 4 || AT_ref (a)->die_id.die_symbol);
9807 set_AT_ref_external (a, 1);
9810 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
9812 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
9813 dw_attr_ref die_a, abbrev_a;
9814 unsigned ix;
9815 bool ok = true;
9817 if (abbrev->die_tag != die->die_tag)
9818 continue;
9819 if ((abbrev->die_child != NULL) != (die->die_child != NULL))
9820 continue;
9822 if (VEC_length (dw_attr_node, abbrev->die_attr)
9823 != VEC_length (dw_attr_node, die->die_attr))
9824 continue;
9826 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, die_a); ix++)
9828 abbrev_a = VEC_index (dw_attr_node, abbrev->die_attr, ix);
9829 if ((abbrev_a->dw_attr != die_a->dw_attr)
9830 || (value_format (abbrev_a) != value_format (die_a)))
9832 ok = false;
9833 break;
9836 if (ok)
9837 break;
9840 if (abbrev_id >= abbrev_die_table_in_use)
9842 if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
9844 n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
9845 abbrev_die_table = GGC_RESIZEVEC (dw_die_ref, abbrev_die_table,
9846 n_alloc);
9848 memset (&abbrev_die_table[abbrev_die_table_allocated], 0,
9849 (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
9850 abbrev_die_table_allocated = n_alloc;
9853 ++abbrev_die_table_in_use;
9854 abbrev_die_table[abbrev_id] = die;
9857 die->die_abbrev = abbrev_id;
9858 FOR_EACH_CHILD (die, c, build_abbrev_table (c));
9861 /* Return the power-of-two number of bytes necessary to represent VALUE. */
9863 static int
9864 constant_size (unsigned HOST_WIDE_INT value)
9866 int log;
9868 if (value == 0)
9869 log = 0;
9870 else
9871 log = floor_log2 (value);
9873 log = log / 8;
9874 log = 1 << (floor_log2 (log) + 1);
9876 return log;
9879 /* Return the size of a DIE as it is represented in the
9880 .debug_info section. */
9882 static unsigned long
9883 size_of_die (dw_die_ref die)
9885 unsigned long size = 0;
9886 dw_attr_ref a;
9887 unsigned ix;
9889 size += size_of_uleb128 (die->die_abbrev);
9890 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9892 switch (AT_class (a))
9894 case dw_val_class_addr:
9895 size += DWARF2_ADDR_SIZE;
9896 break;
9897 case dw_val_class_offset:
9898 size += DWARF_OFFSET_SIZE;
9899 break;
9900 case dw_val_class_loc:
9902 unsigned long lsize = size_of_locs (AT_loc (a));
9904 /* Block length. */
9905 if (dwarf_version >= 4)
9906 size += size_of_uleb128 (lsize);
9907 else
9908 size += constant_size (lsize);
9909 size += lsize;
9911 break;
9912 case dw_val_class_loc_list:
9913 size += DWARF_OFFSET_SIZE;
9914 break;
9915 case dw_val_class_range_list:
9916 size += DWARF_OFFSET_SIZE;
9917 break;
9918 case dw_val_class_const:
9919 size += size_of_sleb128 (AT_int (a));
9920 break;
9921 case dw_val_class_unsigned_const:
9922 size += constant_size (AT_unsigned (a));
9923 break;
9924 case dw_val_class_const_double:
9925 size += 2 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
9926 if (HOST_BITS_PER_WIDE_INT >= 64)
9927 size++; /* block */
9928 break;
9929 case dw_val_class_vec:
9930 size += constant_size (a->dw_attr_val.v.val_vec.length
9931 * a->dw_attr_val.v.val_vec.elt_size)
9932 + a->dw_attr_val.v.val_vec.length
9933 * a->dw_attr_val.v.val_vec.elt_size; /* block */
9934 break;
9935 case dw_val_class_flag:
9936 if (dwarf_version >= 4)
9937 /* Currently all add_AT_flag calls pass in 1 as last argument,
9938 so DW_FORM_flag_present can be used. If that ever changes,
9939 we'll need to use DW_FORM_flag and have some optimization
9940 in build_abbrev_table that will change those to
9941 DW_FORM_flag_present if it is set to 1 in all DIEs using
9942 the same abbrev entry. */
9943 gcc_assert (a->dw_attr_val.v.val_flag == 1);
9944 else
9945 size += 1;
9946 break;
9947 case dw_val_class_die_ref:
9948 if (AT_ref_external (a))
9950 /* In DWARF4, we use DW_FORM_sig8; for earlier versions
9951 we use DW_FORM_ref_addr. In DWARF2, DW_FORM_ref_addr
9952 is sized by target address length, whereas in DWARF3
9953 it's always sized as an offset. */
9954 if (dwarf_version >= 4)
9955 size += DWARF_TYPE_SIGNATURE_SIZE;
9956 else if (dwarf_version == 2)
9957 size += DWARF2_ADDR_SIZE;
9958 else
9959 size += DWARF_OFFSET_SIZE;
9961 else
9962 size += DWARF_OFFSET_SIZE;
9963 break;
9964 case dw_val_class_fde_ref:
9965 size += DWARF_OFFSET_SIZE;
9966 break;
9967 case dw_val_class_lbl_id:
9968 size += DWARF2_ADDR_SIZE;
9969 break;
9970 case dw_val_class_lineptr:
9971 case dw_val_class_macptr:
9972 size += DWARF_OFFSET_SIZE;
9973 break;
9974 case dw_val_class_str:
9975 if (AT_string_form (a) == DW_FORM_strp)
9976 size += DWARF_OFFSET_SIZE;
9977 else
9978 size += strlen (a->dw_attr_val.v.val_str->str) + 1;
9979 break;
9980 case dw_val_class_file:
9981 size += constant_size (maybe_emit_file (a->dw_attr_val.v.val_file));
9982 break;
9983 case dw_val_class_data8:
9984 size += 8;
9985 break;
9986 default:
9987 gcc_unreachable ();
9991 return size;
9994 /* Size the debugging information associated with a given DIE. Visits the
9995 DIE's children recursively. Updates the global variable next_die_offset, on
9996 each time through. Uses the current value of next_die_offset to update the
9997 die_offset field in each DIE. */
9999 static void
10000 calc_die_sizes (dw_die_ref die)
10002 dw_die_ref c;
10004 die->die_offset = next_die_offset;
10005 next_die_offset += size_of_die (die);
10007 FOR_EACH_CHILD (die, c, calc_die_sizes (c));
10009 if (die->die_child != NULL)
10010 /* Count the null byte used to terminate sibling lists. */
10011 next_die_offset += 1;
10014 /* Set the marks for a die and its children. We do this so
10015 that we know whether or not a reference needs to use FORM_ref_addr; only
10016 DIEs in the same CU will be marked. We used to clear out the offset
10017 and use that as the flag, but ran into ordering problems. */
10019 static void
10020 mark_dies (dw_die_ref die)
10022 dw_die_ref c;
10024 gcc_assert (!die->die_mark);
10026 die->die_mark = 1;
10027 FOR_EACH_CHILD (die, c, mark_dies (c));
10030 /* Clear the marks for a die and its children. */
10032 static void
10033 unmark_dies (dw_die_ref die)
10035 dw_die_ref c;
10037 if (dwarf_version < 4)
10038 gcc_assert (die->die_mark);
10040 die->die_mark = 0;
10041 FOR_EACH_CHILD (die, c, unmark_dies (c));
10044 /* Clear the marks for a die, its children and referred dies. */
10046 static void
10047 unmark_all_dies (dw_die_ref die)
10049 dw_die_ref c;
10050 dw_attr_ref a;
10051 unsigned ix;
10053 if (!die->die_mark)
10054 return;
10055 die->die_mark = 0;
10057 FOR_EACH_CHILD (die, c, unmark_all_dies (c));
10059 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
10060 if (AT_class (a) == dw_val_class_die_ref)
10061 unmark_all_dies (AT_ref (a));
10064 /* Return the size of the .debug_pubnames or .debug_pubtypes table
10065 generated for the compilation unit. */
10067 static unsigned long
10068 size_of_pubnames (VEC (pubname_entry, gc) * names)
10070 unsigned long size;
10071 unsigned i;
10072 pubname_ref p;
10074 size = DWARF_PUBNAMES_HEADER_SIZE;
10075 for (i = 0; VEC_iterate (pubname_entry, names, i, p); i++)
10076 if (names != pubtype_table
10077 || p->die->die_offset != 0
10078 || !flag_eliminate_unused_debug_types)
10079 size += strlen (p->name) + DWARF_OFFSET_SIZE + 1;
10081 size += DWARF_OFFSET_SIZE;
10082 return size;
10085 /* Return the size of the information in the .debug_aranges section. */
10087 static unsigned long
10088 size_of_aranges (void)
10090 unsigned long size;
10092 size = DWARF_ARANGES_HEADER_SIZE;
10094 /* Count the address/length pair for this compilation unit. */
10095 if (text_section_used)
10096 size += 2 * DWARF2_ADDR_SIZE;
10097 if (cold_text_section_used)
10098 size += 2 * DWARF2_ADDR_SIZE;
10099 size += 2 * DWARF2_ADDR_SIZE * arange_table_in_use;
10101 /* Count the two zero words used to terminated the address range table. */
10102 size += 2 * DWARF2_ADDR_SIZE;
10103 return size;
10106 /* Select the encoding of an attribute value. */
10108 static enum dwarf_form
10109 value_format (dw_attr_ref a)
10111 switch (a->dw_attr_val.val_class)
10113 case dw_val_class_addr:
10114 /* Only very few attributes allow DW_FORM_addr. */
10115 switch (a->dw_attr)
10117 case DW_AT_low_pc:
10118 case DW_AT_high_pc:
10119 case DW_AT_entry_pc:
10120 case DW_AT_trampoline:
10121 return DW_FORM_addr;
10122 default:
10123 break;
10125 switch (DWARF2_ADDR_SIZE)
10127 case 1:
10128 return DW_FORM_data1;
10129 case 2:
10130 return DW_FORM_data2;
10131 case 4:
10132 return DW_FORM_data4;
10133 case 8:
10134 return DW_FORM_data8;
10135 default:
10136 gcc_unreachable ();
10138 case dw_val_class_range_list:
10139 case dw_val_class_loc_list:
10140 if (dwarf_version >= 4)
10141 return DW_FORM_sec_offset;
10142 /* FALLTHRU */
10143 case dw_val_class_offset:
10144 switch (DWARF_OFFSET_SIZE)
10146 case 4:
10147 return DW_FORM_data4;
10148 case 8:
10149 return DW_FORM_data8;
10150 default:
10151 gcc_unreachable ();
10153 case dw_val_class_loc:
10154 if (dwarf_version >= 4)
10155 return DW_FORM_exprloc;
10156 switch (constant_size (size_of_locs (AT_loc (a))))
10158 case 1:
10159 return DW_FORM_block1;
10160 case 2:
10161 return DW_FORM_block2;
10162 default:
10163 gcc_unreachable ();
10165 case dw_val_class_const:
10166 return DW_FORM_sdata;
10167 case dw_val_class_unsigned_const:
10168 switch (constant_size (AT_unsigned (a)))
10170 case 1:
10171 return DW_FORM_data1;
10172 case 2:
10173 return DW_FORM_data2;
10174 case 4:
10175 return DW_FORM_data4;
10176 case 8:
10177 return DW_FORM_data8;
10178 default:
10179 gcc_unreachable ();
10181 case dw_val_class_const_double:
10182 switch (HOST_BITS_PER_WIDE_INT)
10184 case 8:
10185 return DW_FORM_data2;
10186 case 16:
10187 return DW_FORM_data4;
10188 case 32:
10189 return DW_FORM_data8;
10190 case 64:
10191 default:
10192 return DW_FORM_block1;
10194 case dw_val_class_vec:
10195 switch (constant_size (a->dw_attr_val.v.val_vec.length
10196 * a->dw_attr_val.v.val_vec.elt_size))
10198 case 1:
10199 return DW_FORM_block1;
10200 case 2:
10201 return DW_FORM_block2;
10202 case 4:
10203 return DW_FORM_block4;
10204 default:
10205 gcc_unreachable ();
10207 case dw_val_class_flag:
10208 if (dwarf_version >= 4)
10210 /* Currently all add_AT_flag calls pass in 1 as last argument,
10211 so DW_FORM_flag_present can be used. If that ever changes,
10212 we'll need to use DW_FORM_flag and have some optimization
10213 in build_abbrev_table that will change those to
10214 DW_FORM_flag_present if it is set to 1 in all DIEs using
10215 the same abbrev entry. */
10216 gcc_assert (a->dw_attr_val.v.val_flag == 1);
10217 return DW_FORM_flag_present;
10219 return DW_FORM_flag;
10220 case dw_val_class_die_ref:
10221 if (AT_ref_external (a))
10222 return dwarf_version >= 4 ? DW_FORM_sig8 : DW_FORM_ref_addr;
10223 else
10224 return DW_FORM_ref;
10225 case dw_val_class_fde_ref:
10226 return DW_FORM_data;
10227 case dw_val_class_lbl_id:
10228 return DW_FORM_addr;
10229 case dw_val_class_lineptr:
10230 case dw_val_class_macptr:
10231 return dwarf_version >= 4 ? DW_FORM_sec_offset : DW_FORM_data;
10232 case dw_val_class_str:
10233 return AT_string_form (a);
10234 case dw_val_class_file:
10235 switch (constant_size (maybe_emit_file (a->dw_attr_val.v.val_file)))
10237 case 1:
10238 return DW_FORM_data1;
10239 case 2:
10240 return DW_FORM_data2;
10241 case 4:
10242 return DW_FORM_data4;
10243 default:
10244 gcc_unreachable ();
10247 case dw_val_class_data8:
10248 return DW_FORM_data8;
10250 default:
10251 gcc_unreachable ();
10255 /* Output the encoding of an attribute value. */
10257 static void
10258 output_value_format (dw_attr_ref a)
10260 enum dwarf_form form = value_format (a);
10262 dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
10265 /* Output the .debug_abbrev section which defines the DIE abbreviation
10266 table. */
10268 static void
10269 output_abbrev_section (void)
10271 unsigned long abbrev_id;
10273 for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
10275 dw_die_ref abbrev = abbrev_die_table[abbrev_id];
10276 unsigned ix;
10277 dw_attr_ref a_attr;
10279 dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
10280 dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
10281 dwarf_tag_name (abbrev->die_tag));
10283 if (abbrev->die_child != NULL)
10284 dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
10285 else
10286 dw2_asm_output_data (1, DW_children_no, "DW_children_no");
10288 for (ix = 0; VEC_iterate (dw_attr_node, abbrev->die_attr, ix, a_attr);
10289 ix++)
10291 dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
10292 dwarf_attr_name (a_attr->dw_attr));
10293 output_value_format (a_attr);
10296 dw2_asm_output_data (1, 0, NULL);
10297 dw2_asm_output_data (1, 0, NULL);
10300 /* Terminate the table. */
10301 dw2_asm_output_data (1, 0, NULL);
10304 /* Output a symbol we can use to refer to this DIE from another CU. */
10306 static inline void
10307 output_die_symbol (dw_die_ref die)
10309 char *sym = die->die_id.die_symbol;
10311 if (sym == 0)
10312 return;
10314 if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
10315 /* We make these global, not weak; if the target doesn't support
10316 .linkonce, it doesn't support combining the sections, so debugging
10317 will break. */
10318 targetm.asm_out.globalize_label (asm_out_file, sym);
10320 ASM_OUTPUT_LABEL (asm_out_file, sym);
10323 /* Return a new location list, given the begin and end range, and the
10324 expression. */
10326 static inline dw_loc_list_ref
10327 new_loc_list (dw_loc_descr_ref expr, const char *begin, const char *end,
10328 const char *section)
10330 dw_loc_list_ref retlist = GGC_CNEW (dw_loc_list_node);
10332 retlist->begin = begin;
10333 retlist->end = end;
10334 retlist->expr = expr;
10335 retlist->section = section;
10337 return retlist;
10340 /* Generate a new internal symbol for this location list node, if it
10341 hasn't got one yet. */
10343 static inline void
10344 gen_llsym (dw_loc_list_ref list)
10346 gcc_assert (!list->ll_symbol);
10347 list->ll_symbol = gen_internal_sym ("LLST");
10350 /* Output the location list given to us. */
10352 static void
10353 output_loc_list (dw_loc_list_ref list_head)
10355 dw_loc_list_ref curr = list_head;
10357 ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
10359 /* Walk the location list, and output each range + expression. */
10360 for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
10362 unsigned long size;
10363 /* Don't output an entry that starts and ends at the same address. */
10364 if (strcmp (curr->begin, curr->end) == 0)
10365 continue;
10366 if (!have_multiple_function_sections)
10368 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
10369 "Location list begin address (%s)",
10370 list_head->ll_symbol);
10371 dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
10372 "Location list end address (%s)",
10373 list_head->ll_symbol);
10375 else
10377 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10378 "Location list begin address (%s)",
10379 list_head->ll_symbol);
10380 dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
10381 "Location list end address (%s)",
10382 list_head->ll_symbol);
10384 size = size_of_locs (curr->expr);
10386 /* Output the block length for this list of location operations. */
10387 gcc_assert (size <= 0xffff);
10388 dw2_asm_output_data (2, size, "%s", "Location expression size");
10390 output_loc_sequence (curr->expr);
10393 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10394 "Location list terminator begin (%s)",
10395 list_head->ll_symbol);
10396 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10397 "Location list terminator end (%s)",
10398 list_head->ll_symbol);
10401 /* Output a type signature. */
10403 static inline void
10404 output_signature (const char *sig, const char *name)
10406 int i;
10408 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
10409 dw2_asm_output_data (1, sig[i], i == 0 ? "%s" : NULL, name);
10412 /* Output the DIE and its attributes. Called recursively to generate
10413 the definitions of each child DIE. */
10415 static void
10416 output_die (dw_die_ref die)
10418 dw_attr_ref a;
10419 dw_die_ref c;
10420 unsigned long size;
10421 unsigned ix;
10423 /* If someone in another CU might refer to us, set up a symbol for
10424 them to point to. */
10425 if (dwarf_version < 4 && die->die_id.die_symbol)
10426 output_die_symbol (die);
10428 dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (0x%lx) %s)",
10429 (unsigned long)die->die_offset,
10430 dwarf_tag_name (die->die_tag));
10432 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
10434 const char *name = dwarf_attr_name (a->dw_attr);
10436 switch (AT_class (a))
10438 case dw_val_class_addr:
10439 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
10440 break;
10442 case dw_val_class_offset:
10443 dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
10444 "%s", name);
10445 break;
10447 case dw_val_class_range_list:
10449 char *p = strchr (ranges_section_label, '\0');
10451 sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
10452 a->dw_attr_val.v.val_offset);
10453 dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
10454 debug_ranges_section, "%s", name);
10455 *p = '\0';
10457 break;
10459 case dw_val_class_loc:
10460 size = size_of_locs (AT_loc (a));
10462 /* Output the block length for this list of location operations. */
10463 if (dwarf_version >= 4)
10464 dw2_asm_output_data_uleb128 (size, "%s", name);
10465 else
10466 dw2_asm_output_data (constant_size (size), size, "%s", name);
10468 output_loc_sequence (AT_loc (a));
10469 break;
10471 case dw_val_class_const:
10472 /* ??? It would be slightly more efficient to use a scheme like is
10473 used for unsigned constants below, but gdb 4.x does not sign
10474 extend. Gdb 5.x does sign extend. */
10475 dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
10476 break;
10478 case dw_val_class_unsigned_const:
10479 dw2_asm_output_data (constant_size (AT_unsigned (a)),
10480 AT_unsigned (a), "%s", name);
10481 break;
10483 case dw_val_class_const_double:
10485 unsigned HOST_WIDE_INT first, second;
10487 if (HOST_BITS_PER_WIDE_INT >= 64)
10488 dw2_asm_output_data (1,
10489 2 * HOST_BITS_PER_WIDE_INT
10490 / HOST_BITS_PER_CHAR,
10491 NULL);
10493 if (WORDS_BIG_ENDIAN)
10495 first = a->dw_attr_val.v.val_double.high;
10496 second = a->dw_attr_val.v.val_double.low;
10498 else
10500 first = a->dw_attr_val.v.val_double.low;
10501 second = a->dw_attr_val.v.val_double.high;
10504 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10505 first, name);
10506 dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10507 second, NULL);
10509 break;
10511 case dw_val_class_vec:
10513 unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
10514 unsigned int len = a->dw_attr_val.v.val_vec.length;
10515 unsigned int i;
10516 unsigned char *p;
10518 dw2_asm_output_data (constant_size (len * elt_size),
10519 len * elt_size, "%s", name);
10520 if (elt_size > sizeof (HOST_WIDE_INT))
10522 elt_size /= 2;
10523 len *= 2;
10525 for (i = 0, p = a->dw_attr_val.v.val_vec.array;
10526 i < len;
10527 i++, p += elt_size)
10528 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
10529 "fp or vector constant word %u", i);
10530 break;
10533 case dw_val_class_flag:
10534 if (dwarf_version >= 4)
10536 /* Currently all add_AT_flag calls pass in 1 as last argument,
10537 so DW_FORM_flag_present can be used. If that ever changes,
10538 we'll need to use DW_FORM_flag and have some optimization
10539 in build_abbrev_table that will change those to
10540 DW_FORM_flag_present if it is set to 1 in all DIEs using
10541 the same abbrev entry. */
10542 gcc_assert (AT_flag (a) == 1);
10543 if (flag_debug_asm)
10544 fprintf (asm_out_file, "\t\t\t%s %s\n",
10545 ASM_COMMENT_START, name);
10546 break;
10548 dw2_asm_output_data (1, AT_flag (a), "%s", name);
10549 break;
10551 case dw_val_class_loc_list:
10553 char *sym = AT_loc_list (a)->ll_symbol;
10555 gcc_assert (sym);
10556 dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, debug_loc_section,
10557 "%s", name);
10559 break;
10561 case dw_val_class_die_ref:
10562 if (AT_ref_external (a))
10564 if (dwarf_version >= 4)
10566 comdat_type_node_ref type_node =
10567 AT_ref (a)->die_id.die_type_node;
10569 gcc_assert (type_node);
10570 output_signature (type_node->signature, name);
10572 else
10574 char *sym = AT_ref (a)->die_id.die_symbol;
10575 int size;
10577 gcc_assert (sym);
10578 /* In DWARF2, DW_FORM_ref_addr is sized by target address
10579 length, whereas in DWARF3 it's always sized as an
10580 offset. */
10581 if (dwarf_version == 2)
10582 size = DWARF2_ADDR_SIZE;
10583 else
10584 size = DWARF_OFFSET_SIZE;
10585 dw2_asm_output_offset (size, sym, debug_info_section, "%s",
10586 name);
10589 else
10591 gcc_assert (AT_ref (a)->die_offset);
10592 dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
10593 "%s", name);
10595 break;
10597 case dw_val_class_fde_ref:
10599 char l1[20];
10601 ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
10602 a->dw_attr_val.v.val_fde_index * 2);
10603 dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, debug_frame_section,
10604 "%s", name);
10606 break;
10608 case dw_val_class_lbl_id:
10609 dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
10610 break;
10612 case dw_val_class_lineptr:
10613 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10614 debug_line_section, "%s", name);
10615 break;
10617 case dw_val_class_macptr:
10618 dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10619 debug_macinfo_section, "%s", name);
10620 break;
10622 case dw_val_class_str:
10623 if (AT_string_form (a) == DW_FORM_strp)
10624 dw2_asm_output_offset (DWARF_OFFSET_SIZE,
10625 a->dw_attr_val.v.val_str->label,
10626 debug_str_section,
10627 "%s: \"%s\"", name, AT_string (a));
10628 else
10629 dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
10630 break;
10632 case dw_val_class_file:
10634 int f = maybe_emit_file (a->dw_attr_val.v.val_file);
10636 dw2_asm_output_data (constant_size (f), f, "%s (%s)", name,
10637 a->dw_attr_val.v.val_file->filename);
10638 break;
10641 case dw_val_class_data8:
10643 int i;
10645 for (i = 0; i < 8; i++)
10646 dw2_asm_output_data (1, a->dw_attr_val.v.val_data8[i],
10647 i == 0 ? "%s" : NULL, name);
10648 break;
10651 default:
10652 gcc_unreachable ();
10656 FOR_EACH_CHILD (die, c, output_die (c));
10658 /* Add null byte to terminate sibling list. */
10659 if (die->die_child != NULL)
10660 dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
10661 (unsigned long) die->die_offset);
10664 /* Output the compilation unit that appears at the beginning of the
10665 .debug_info section, and precedes the DIE descriptions. */
10667 static void
10668 output_compilation_unit_header (void)
10670 int ver = dwarf_version;
10672 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
10673 dw2_asm_output_data (4, 0xffffffff,
10674 "Initial length escape value indicating 64-bit DWARF extension");
10675 dw2_asm_output_data (DWARF_OFFSET_SIZE,
10676 next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
10677 "Length of Compilation Unit Info");
10678 dw2_asm_output_data (2, ver, "DWARF version number");
10679 dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
10680 debug_abbrev_section,
10681 "Offset Into Abbrev. Section");
10682 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
10685 /* Output the compilation unit DIE and its children. */
10687 static void
10688 output_comp_unit (dw_die_ref die, int output_if_empty)
10690 const char *secname;
10691 char *oldsym, *tmp;
10693 /* Unless we are outputting main CU, we may throw away empty ones. */
10694 if (!output_if_empty && die->die_child == NULL)
10695 return;
10697 /* Even if there are no children of this DIE, we must output the information
10698 about the compilation unit. Otherwise, on an empty translation unit, we
10699 will generate a present, but empty, .debug_info section. IRIX 6.5 `nm'
10700 will then complain when examining the file. First mark all the DIEs in
10701 this CU so we know which get local refs. */
10702 mark_dies (die);
10704 build_abbrev_table (die);
10706 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
10707 next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
10708 calc_die_sizes (die);
10710 oldsym = die->die_id.die_symbol;
10711 if (oldsym)
10713 tmp = XALLOCAVEC (char, strlen (oldsym) + 24);
10715 sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
10716 secname = tmp;
10717 die->die_id.die_symbol = NULL;
10718 switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
10720 else
10721 switch_to_section (debug_info_section);
10723 /* Output debugging information. */
10724 output_compilation_unit_header ();
10725 output_die (die);
10727 /* Leave the marks on the main CU, so we can check them in
10728 output_pubnames. */
10729 if (oldsym)
10731 unmark_dies (die);
10732 die->die_id.die_symbol = oldsym;
10736 /* Output a comdat type unit DIE and its children. */
10738 static void
10739 output_comdat_type_unit (comdat_type_node *node)
10741 const char *secname;
10742 char *tmp;
10743 int i;
10744 #if defined (OBJECT_FORMAT_ELF)
10745 tree comdat_key;
10746 #endif
10748 /* First mark all the DIEs in this CU so we know which get local refs. */
10749 mark_dies (node->root_die);
10751 build_abbrev_table (node->root_die);
10753 /* Initialize the beginning DIE offset - and calculate sizes/offsets. */
10754 next_die_offset = DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE;
10755 calc_die_sizes (node->root_die);
10757 #if defined (OBJECT_FORMAT_ELF)
10758 secname = ".debug_types";
10759 tmp = XALLOCAVEC (char, 4 + DWARF_TYPE_SIGNATURE_SIZE * 2);
10760 sprintf (tmp, "wt.");
10761 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
10762 sprintf (tmp + 3 + i * 2, "%02x", node->signature[i] & 0xff);
10763 comdat_key = get_identifier (tmp);
10764 targetm.asm_out.named_section (secname,
10765 SECTION_DEBUG | SECTION_LINKONCE,
10766 comdat_key);
10767 #else
10768 tmp = XALLOCAVEC (char, 18 + DWARF_TYPE_SIGNATURE_SIZE * 2);
10769 sprintf (tmp, ".gnu.linkonce.wt.");
10770 for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
10771 sprintf (tmp + 17 + i * 2, "%02x", node->signature[i] & 0xff);
10772 secname = tmp;
10773 switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
10774 #endif
10776 /* Output debugging information. */
10777 output_compilation_unit_header ();
10778 output_signature (node->signature, "Type Signature");
10779 dw2_asm_output_data (DWARF_OFFSET_SIZE, node->type_die->die_offset,
10780 "Offset to Type DIE");
10781 output_die (node->root_die);
10783 unmark_dies (node->root_die);
10786 /* Return the DWARF2/3 pubname associated with a decl. */
10788 static const char *
10789 dwarf2_name (tree decl, int scope)
10791 return lang_hooks.dwarf_name (decl, scope ? 1 : 0);
10794 /* Add a new entry to .debug_pubnames if appropriate. */
10796 static void
10797 add_pubname_string (const char *str, dw_die_ref die)
10799 pubname_entry e;
10801 e.die = die;
10802 e.name = xstrdup (str);
10803 VEC_safe_push (pubname_entry, gc, pubname_table, &e);
10806 static void
10807 add_pubname (tree decl, dw_die_ref die)
10809 if (TREE_PUBLIC (decl))
10811 const char *name = dwarf2_name (decl, 1);
10812 if (name)
10813 add_pubname_string (name, die);
10817 /* Add a new entry to .debug_pubtypes if appropriate. */
10819 static void
10820 add_pubtype (tree decl, dw_die_ref die)
10822 pubname_entry e;
10824 e.name = NULL;
10825 if ((TREE_PUBLIC (decl)
10826 || die->die_parent == comp_unit_die)
10827 && (die->die_tag == DW_TAG_typedef || COMPLETE_TYPE_P (decl)))
10829 e.die = die;
10830 if (TYPE_P (decl))
10832 if (TYPE_NAME (decl))
10834 if (TREE_CODE (TYPE_NAME (decl)) == IDENTIFIER_NODE)
10835 e.name = IDENTIFIER_POINTER (TYPE_NAME (decl));
10836 else if (TREE_CODE (TYPE_NAME (decl)) == TYPE_DECL
10837 && DECL_NAME (TYPE_NAME (decl)))
10838 e.name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (decl)));
10839 else
10840 e.name = xstrdup ((const char *) get_AT_string (die, DW_AT_name));
10843 else
10845 e.name = dwarf2_name (decl, 1);
10846 if (e.name)
10847 e.name = xstrdup (e.name);
10850 /* If we don't have a name for the type, there's no point in adding
10851 it to the table. */
10852 if (e.name && e.name[0] != '\0')
10853 VEC_safe_push (pubname_entry, gc, pubtype_table, &e);
10857 /* Output the public names table used to speed up access to externally
10858 visible names; or the public types table used to find type definitions. */
10860 static void
10861 output_pubnames (VEC (pubname_entry, gc) * names)
10863 unsigned i;
10864 unsigned long pubnames_length = size_of_pubnames (names);
10865 pubname_ref pub;
10867 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
10868 dw2_asm_output_data (4, 0xffffffff,
10869 "Initial length escape value indicating 64-bit DWARF extension");
10870 if (names == pubname_table)
10871 dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
10872 "Length of Public Names Info");
10873 else
10874 dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
10875 "Length of Public Type Names Info");
10876 /* Version number for pubnames/pubtypes is still 2, even in DWARF3. */
10877 dw2_asm_output_data (2, 2, "DWARF Version");
10878 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
10879 debug_info_section,
10880 "Offset of Compilation Unit Info");
10881 dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
10882 "Compilation Unit Length");
10884 for (i = 0; VEC_iterate (pubname_entry, names, i, pub); i++)
10886 /* We shouldn't see pubnames for DIEs outside of the main CU. */
10887 if (names == pubname_table)
10888 gcc_assert (pub->die->die_mark);
10890 if (names != pubtype_table
10891 || pub->die->die_offset != 0
10892 || !flag_eliminate_unused_debug_types)
10894 dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
10895 "DIE offset");
10897 dw2_asm_output_nstring (pub->name, -1, "external name");
10901 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
10904 /* Add a new entry to .debug_aranges if appropriate. */
10906 static void
10907 add_arange (tree decl, dw_die_ref die)
10909 if (! DECL_SECTION_NAME (decl))
10910 return;
10912 if (arange_table_in_use == arange_table_allocated)
10914 arange_table_allocated += ARANGE_TABLE_INCREMENT;
10915 arange_table = GGC_RESIZEVEC (dw_die_ref, arange_table,
10916 arange_table_allocated);
10917 memset (arange_table + arange_table_in_use, 0,
10918 ARANGE_TABLE_INCREMENT * sizeof (dw_die_ref));
10921 arange_table[arange_table_in_use++] = die;
10924 /* Output the information that goes into the .debug_aranges table.
10925 Namely, define the beginning and ending address range of the
10926 text section generated for this compilation unit. */
10928 static void
10929 output_aranges (void)
10931 unsigned i;
10932 unsigned long aranges_length = size_of_aranges ();
10934 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
10935 dw2_asm_output_data (4, 0xffffffff,
10936 "Initial length escape value indicating 64-bit DWARF extension");
10937 dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
10938 "Length of Address Ranges Info");
10939 /* Version number for aranges is still 2, even in DWARF3. */
10940 dw2_asm_output_data (2, 2, "DWARF Version");
10941 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
10942 debug_info_section,
10943 "Offset of Compilation Unit Info");
10944 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
10945 dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
10947 /* We need to align to twice the pointer size here. */
10948 if (DWARF_ARANGES_PAD_SIZE)
10950 /* Pad using a 2 byte words so that padding is correct for any
10951 pointer size. */
10952 dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
10953 2 * DWARF2_ADDR_SIZE);
10954 for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
10955 dw2_asm_output_data (2, 0, NULL);
10958 /* It is necessary not to output these entries if the sections were
10959 not used; if the sections were not used, the length will be 0 and
10960 the address may end up as 0 if the section is discarded by ld
10961 --gc-sections, leaving an invalid (0, 0) entry that can be
10962 confused with the terminator. */
10963 if (text_section_used)
10965 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
10966 dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
10967 text_section_label, "Length");
10969 if (cold_text_section_used)
10971 dw2_asm_output_addr (DWARF2_ADDR_SIZE, cold_text_section_label,
10972 "Address");
10973 dw2_asm_output_delta (DWARF2_ADDR_SIZE, cold_end_label,
10974 cold_text_section_label, "Length");
10977 for (i = 0; i < arange_table_in_use; i++)
10979 dw_die_ref die = arange_table[i];
10981 /* We shouldn't see aranges for DIEs outside of the main CU. */
10982 gcc_assert (die->die_mark);
10984 if (die->die_tag == DW_TAG_subprogram)
10986 dw2_asm_output_addr (DWARF2_ADDR_SIZE, get_AT_low_pc (die),
10987 "Address");
10988 dw2_asm_output_delta (DWARF2_ADDR_SIZE, get_AT_hi_pc (die),
10989 get_AT_low_pc (die), "Length");
10991 else
10993 /* A static variable; extract the symbol from DW_AT_location.
10994 Note that this code isn't currently hit, as we only emit
10995 aranges for functions (jason 9/23/99). */
10996 dw_attr_ref a = get_AT (die, DW_AT_location);
10997 dw_loc_descr_ref loc;
10999 gcc_assert (a && AT_class (a) == dw_val_class_loc);
11001 loc = AT_loc (a);
11002 gcc_assert (loc->dw_loc_opc == DW_OP_addr);
11004 dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE,
11005 loc->dw_loc_oprnd1.v.val_addr, "Address");
11006 dw2_asm_output_data (DWARF2_ADDR_SIZE,
11007 get_AT_unsigned (die, DW_AT_byte_size),
11008 "Length");
11012 /* Output the terminator words. */
11013 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11014 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11017 /* Add a new entry to .debug_ranges. Return the offset at which it
11018 was placed. */
11020 static unsigned int
11021 add_ranges_num (int num)
11023 unsigned int in_use = ranges_table_in_use;
11025 if (in_use == ranges_table_allocated)
11027 ranges_table_allocated += RANGES_TABLE_INCREMENT;
11028 ranges_table = GGC_RESIZEVEC (struct dw_ranges_struct, ranges_table,
11029 ranges_table_allocated);
11030 memset (ranges_table + ranges_table_in_use, 0,
11031 RANGES_TABLE_INCREMENT * sizeof (struct dw_ranges_struct));
11034 ranges_table[in_use].num = num;
11035 ranges_table_in_use = in_use + 1;
11037 return in_use * 2 * DWARF2_ADDR_SIZE;
11040 /* Add a new entry to .debug_ranges corresponding to a block, or a
11041 range terminator if BLOCK is NULL. */
11043 static unsigned int
11044 add_ranges (const_tree block)
11046 return add_ranges_num (block ? BLOCK_NUMBER (block) : 0);
11049 /* Add a new entry to .debug_ranges corresponding to a pair of
11050 labels. */
11052 static void
11053 add_ranges_by_labels (dw_die_ref die, const char *begin, const char *end,
11054 bool *added)
11056 unsigned int in_use = ranges_by_label_in_use;
11057 unsigned int offset;
11059 if (in_use == ranges_by_label_allocated)
11061 ranges_by_label_allocated += RANGES_TABLE_INCREMENT;
11062 ranges_by_label = GGC_RESIZEVEC (struct dw_ranges_by_label_struct,
11063 ranges_by_label,
11064 ranges_by_label_allocated);
11065 memset (ranges_by_label + ranges_by_label_in_use, 0,
11066 RANGES_TABLE_INCREMENT
11067 * sizeof (struct dw_ranges_by_label_struct));
11070 ranges_by_label[in_use].begin = begin;
11071 ranges_by_label[in_use].end = end;
11072 ranges_by_label_in_use = in_use + 1;
11074 offset = add_ranges_num (-(int)in_use - 1);
11075 if (!*added)
11077 add_AT_range_list (die, DW_AT_ranges, offset);
11078 *added = true;
11082 static void
11083 output_ranges (void)
11085 unsigned i;
11086 static const char *const start_fmt = "Offset 0x%x";
11087 const char *fmt = start_fmt;
11089 for (i = 0; i < ranges_table_in_use; i++)
11091 int block_num = ranges_table[i].num;
11093 if (block_num > 0)
11095 char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
11096 char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
11098 ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
11099 ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
11101 /* If all code is in the text section, then the compilation
11102 unit base address defaults to DW_AT_low_pc, which is the
11103 base of the text section. */
11104 if (!have_multiple_function_sections)
11106 dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
11107 text_section_label,
11108 fmt, i * 2 * DWARF2_ADDR_SIZE);
11109 dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
11110 text_section_label, NULL);
11113 /* Otherwise, the compilation unit base address is zero,
11114 which allows us to use absolute addresses, and not worry
11115 about whether the target supports cross-section
11116 arithmetic. */
11117 else
11119 dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11120 fmt, i * 2 * DWARF2_ADDR_SIZE);
11121 dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
11124 fmt = NULL;
11127 /* Negative block_num stands for an index into ranges_by_label. */
11128 else if (block_num < 0)
11130 int lab_idx = - block_num - 1;
11132 if (!have_multiple_function_sections)
11134 gcc_unreachable ();
11135 #if 0
11136 /* If we ever use add_ranges_by_labels () for a single
11137 function section, all we have to do is to take out
11138 the #if 0 above. */
11139 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
11140 ranges_by_label[lab_idx].begin,
11141 text_section_label,
11142 fmt, i * 2 * DWARF2_ADDR_SIZE);
11143 dw2_asm_output_delta (DWARF2_ADDR_SIZE,
11144 ranges_by_label[lab_idx].end,
11145 text_section_label, NULL);
11146 #endif
11148 else
11150 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
11151 ranges_by_label[lab_idx].begin,
11152 fmt, i * 2 * DWARF2_ADDR_SIZE);
11153 dw2_asm_output_addr (DWARF2_ADDR_SIZE,
11154 ranges_by_label[lab_idx].end,
11155 NULL);
11158 else
11160 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11161 dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11162 fmt = start_fmt;
11167 /* Data structure containing information about input files. */
11168 struct file_info
11170 const char *path; /* Complete file name. */
11171 const char *fname; /* File name part. */
11172 int length; /* Length of entire string. */
11173 struct dwarf_file_data * file_idx; /* Index in input file table. */
11174 int dir_idx; /* Index in directory table. */
11177 /* Data structure containing information about directories with source
11178 files. */
11179 struct dir_info
11181 const char *path; /* Path including directory name. */
11182 int length; /* Path length. */
11183 int prefix; /* Index of directory entry which is a prefix. */
11184 int count; /* Number of files in this directory. */
11185 int dir_idx; /* Index of directory used as base. */
11188 /* Callback function for file_info comparison. We sort by looking at
11189 the directories in the path. */
11191 static int
11192 file_info_cmp (const void *p1, const void *p2)
11194 const struct file_info *const s1 = (const struct file_info *) p1;
11195 const struct file_info *const s2 = (const struct file_info *) p2;
11196 const unsigned char *cp1;
11197 const unsigned char *cp2;
11199 /* Take care of file names without directories. We need to make sure that
11200 we return consistent values to qsort since some will get confused if
11201 we return the same value when identical operands are passed in opposite
11202 orders. So if neither has a directory, return 0 and otherwise return
11203 1 or -1 depending on which one has the directory. */
11204 if ((s1->path == s1->fname || s2->path == s2->fname))
11205 return (s2->path == s2->fname) - (s1->path == s1->fname);
11207 cp1 = (const unsigned char *) s1->path;
11208 cp2 = (const unsigned char *) s2->path;
11210 while (1)
11212 ++cp1;
11213 ++cp2;
11214 /* Reached the end of the first path? If so, handle like above. */
11215 if ((cp1 == (const unsigned char *) s1->fname)
11216 || (cp2 == (const unsigned char *) s2->fname))
11217 return ((cp2 == (const unsigned char *) s2->fname)
11218 - (cp1 == (const unsigned char *) s1->fname));
11220 /* Character of current path component the same? */
11221 else if (*cp1 != *cp2)
11222 return *cp1 - *cp2;
11226 struct file_name_acquire_data
11228 struct file_info *files;
11229 int used_files;
11230 int max_files;
11233 /* Traversal function for the hash table. */
11235 static int
11236 file_name_acquire (void ** slot, void *data)
11238 struct file_name_acquire_data *fnad = (struct file_name_acquire_data *) data;
11239 struct dwarf_file_data *d = (struct dwarf_file_data *) *slot;
11240 struct file_info *fi;
11241 const char *f;
11243 gcc_assert (fnad->max_files >= d->emitted_number);
11245 if (! d->emitted_number)
11246 return 1;
11248 gcc_assert (fnad->max_files != fnad->used_files);
11250 fi = fnad->files + fnad->used_files++;
11252 /* Skip all leading "./". */
11253 f = d->filename;
11254 while (f[0] == '.' && IS_DIR_SEPARATOR (f[1]))
11255 f += 2;
11257 /* Create a new array entry. */
11258 fi->path = f;
11259 fi->length = strlen (f);
11260 fi->file_idx = d;
11262 /* Search for the file name part. */
11263 f = strrchr (f, DIR_SEPARATOR);
11264 #if defined (DIR_SEPARATOR_2)
11266 char *g = strrchr (fi->path, DIR_SEPARATOR_2);
11268 if (g != NULL)
11270 if (f == NULL || f < g)
11271 f = g;
11274 #endif
11276 fi->fname = f == NULL ? fi->path : f + 1;
11277 return 1;
11280 /* Output the directory table and the file name table. We try to minimize
11281 the total amount of memory needed. A heuristic is used to avoid large
11282 slowdowns with many input files. */
11284 static void
11285 output_file_names (void)
11287 struct file_name_acquire_data fnad;
11288 int numfiles;
11289 struct file_info *files;
11290 struct dir_info *dirs;
11291 int *saved;
11292 int *savehere;
11293 int *backmap;
11294 int ndirs;
11295 int idx_offset;
11296 int i;
11298 if (!last_emitted_file)
11300 dw2_asm_output_data (1, 0, "End directory table");
11301 dw2_asm_output_data (1, 0, "End file name table");
11302 return;
11305 numfiles = last_emitted_file->emitted_number;
11307 /* Allocate the various arrays we need. */
11308 files = XALLOCAVEC (struct file_info, numfiles);
11309 dirs = XALLOCAVEC (struct dir_info, numfiles);
11311 fnad.files = files;
11312 fnad.used_files = 0;
11313 fnad.max_files = numfiles;
11314 htab_traverse (file_table, file_name_acquire, &fnad);
11315 gcc_assert (fnad.used_files == fnad.max_files);
11317 qsort (files, numfiles, sizeof (files[0]), file_info_cmp);
11319 /* Find all the different directories used. */
11320 dirs[0].path = files[0].path;
11321 dirs[0].length = files[0].fname - files[0].path;
11322 dirs[0].prefix = -1;
11323 dirs[0].count = 1;
11324 dirs[0].dir_idx = 0;
11325 files[0].dir_idx = 0;
11326 ndirs = 1;
11328 for (i = 1; i < numfiles; i++)
11329 if (files[i].fname - files[i].path == dirs[ndirs - 1].length
11330 && memcmp (dirs[ndirs - 1].path, files[i].path,
11331 dirs[ndirs - 1].length) == 0)
11333 /* Same directory as last entry. */
11334 files[i].dir_idx = ndirs - 1;
11335 ++dirs[ndirs - 1].count;
11337 else
11339 int j;
11341 /* This is a new directory. */
11342 dirs[ndirs].path = files[i].path;
11343 dirs[ndirs].length = files[i].fname - files[i].path;
11344 dirs[ndirs].count = 1;
11345 dirs[ndirs].dir_idx = ndirs;
11346 files[i].dir_idx = ndirs;
11348 /* Search for a prefix. */
11349 dirs[ndirs].prefix = -1;
11350 for (j = 0; j < ndirs; j++)
11351 if (dirs[j].length < dirs[ndirs].length
11352 && dirs[j].length > 1
11353 && (dirs[ndirs].prefix == -1
11354 || dirs[j].length > dirs[dirs[ndirs].prefix].length)
11355 && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
11356 dirs[ndirs].prefix = j;
11358 ++ndirs;
11361 /* Now to the actual work. We have to find a subset of the directories which
11362 allow expressing the file name using references to the directory table
11363 with the least amount of characters. We do not do an exhaustive search
11364 where we would have to check out every combination of every single
11365 possible prefix. Instead we use a heuristic which provides nearly optimal
11366 results in most cases and never is much off. */
11367 saved = XALLOCAVEC (int, ndirs);
11368 savehere = XALLOCAVEC (int, ndirs);
11370 memset (saved, '\0', ndirs * sizeof (saved[0]));
11371 for (i = 0; i < ndirs; i++)
11373 int j;
11374 int total;
11376 /* We can always save some space for the current directory. But this
11377 does not mean it will be enough to justify adding the directory. */
11378 savehere[i] = dirs[i].length;
11379 total = (savehere[i] - saved[i]) * dirs[i].count;
11381 for (j = i + 1; j < ndirs; j++)
11383 savehere[j] = 0;
11384 if (saved[j] < dirs[i].length)
11386 /* Determine whether the dirs[i] path is a prefix of the
11387 dirs[j] path. */
11388 int k;
11390 k = dirs[j].prefix;
11391 while (k != -1 && k != (int) i)
11392 k = dirs[k].prefix;
11394 if (k == (int) i)
11396 /* Yes it is. We can possibly save some memory by
11397 writing the filenames in dirs[j] relative to
11398 dirs[i]. */
11399 savehere[j] = dirs[i].length;
11400 total += (savehere[j] - saved[j]) * dirs[j].count;
11405 /* Check whether we can save enough to justify adding the dirs[i]
11406 directory. */
11407 if (total > dirs[i].length + 1)
11409 /* It's worthwhile adding. */
11410 for (j = i; j < ndirs; j++)
11411 if (savehere[j] > 0)
11413 /* Remember how much we saved for this directory so far. */
11414 saved[j] = savehere[j];
11416 /* Remember the prefix directory. */
11417 dirs[j].dir_idx = i;
11422 /* Emit the directory name table. */
11423 idx_offset = dirs[0].length > 0 ? 1 : 0;
11424 for (i = 1 - idx_offset; i < ndirs; i++)
11425 dw2_asm_output_nstring (dirs[i].path,
11426 dirs[i].length
11427 - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
11428 "Directory Entry: 0x%x", i + idx_offset);
11430 dw2_asm_output_data (1, 0, "End directory table");
11432 /* We have to emit them in the order of emitted_number since that's
11433 used in the debug info generation. To do this efficiently we
11434 generate a back-mapping of the indices first. */
11435 backmap = XALLOCAVEC (int, numfiles);
11436 for (i = 0; i < numfiles; i++)
11437 backmap[files[i].file_idx->emitted_number - 1] = i;
11439 /* Now write all the file names. */
11440 for (i = 0; i < numfiles; i++)
11442 int file_idx = backmap[i];
11443 int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
11445 #ifdef VMS_DEBUGGING_INFO
11446 #define MAX_VMS_VERSION_LEN 6 /* ";32768" */
11448 /* Setting these fields can lead to debugger miscomparisons,
11449 but VMS Debug requires them to be set correctly. */
11451 int ver;
11452 long long cdt;
11453 long siz;
11454 int maxfilelen = strlen (files[file_idx].path)
11455 + dirs[dir_idx].length
11456 + MAX_VMS_VERSION_LEN + 1;
11457 char *filebuf = XALLOCAVEC (char, maxfilelen);
11459 vms_file_stats_name (files[file_idx].path, 0, 0, 0, &ver);
11460 snprintf (filebuf, maxfilelen, "%s;%d",
11461 files[file_idx].path + dirs[dir_idx].length, ver);
11463 dw2_asm_output_nstring
11464 (filebuf, -1, "File Entry: 0x%x", (unsigned) i + 1);
11466 /* Include directory index. */
11467 dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
11469 /* Modification time. */
11470 dw2_asm_output_data_uleb128
11471 ((vms_file_stats_name (files[file_idx].path, &cdt, 0, 0, 0) == 0)
11472 ? cdt : 0,
11473 NULL);
11475 /* File length in bytes. */
11476 dw2_asm_output_data_uleb128
11477 ((vms_file_stats_name (files[file_idx].path, 0, &siz, 0, 0) == 0)
11478 ? siz : 0,
11479 NULL);
11480 #else
11481 dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
11482 "File Entry: 0x%x", (unsigned) i + 1);
11484 /* Include directory index. */
11485 dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
11487 /* Modification time. */
11488 dw2_asm_output_data_uleb128 (0, NULL);
11490 /* File length in bytes. */
11491 dw2_asm_output_data_uleb128 (0, NULL);
11492 #endif
11495 dw2_asm_output_data (1, 0, "End file name table");
11499 /* Output the source line number correspondence information. This
11500 information goes into the .debug_line section. */
11502 static void
11503 output_line_info (void)
11505 char l1[20], l2[20], p1[20], p2[20];
11506 char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
11507 char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
11508 unsigned opc;
11509 unsigned n_op_args;
11510 unsigned long lt_index;
11511 unsigned long current_line;
11512 long line_offset;
11513 long line_delta;
11514 unsigned long current_file;
11515 unsigned long function;
11516 int ver = dwarf_version;
11518 ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
11519 ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
11520 ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
11521 ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
11523 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11524 dw2_asm_output_data (4, 0xffffffff,
11525 "Initial length escape value indicating 64-bit DWARF extension");
11526 dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
11527 "Length of Source Line Info");
11528 ASM_OUTPUT_LABEL (asm_out_file, l1);
11530 dw2_asm_output_data (2, ver, "DWARF Version");
11531 dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
11532 ASM_OUTPUT_LABEL (asm_out_file, p1);
11534 /* Define the architecture-dependent minimum instruction length (in
11535 bytes). In this implementation of DWARF, this field is used for
11536 information purposes only. Since GCC generates assembly language,
11537 we have no a priori knowledge of how many instruction bytes are
11538 generated for each source line, and therefore can use only the
11539 DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
11540 commands. Accordingly, we fix this as `1', which is "correct
11541 enough" for all architectures, and don't let the target override. */
11542 dw2_asm_output_data (1, 1,
11543 "Minimum Instruction Length");
11545 if (ver >= 4)
11546 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN,
11547 "Maximum Operations Per Instruction");
11548 dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
11549 "Default is_stmt_start flag");
11550 dw2_asm_output_data (1, DWARF_LINE_BASE,
11551 "Line Base Value (Special Opcodes)");
11552 dw2_asm_output_data (1, DWARF_LINE_RANGE,
11553 "Line Range Value (Special Opcodes)");
11554 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
11555 "Special Opcode Base");
11557 for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
11559 switch (opc)
11561 case DW_LNS_advance_pc:
11562 case DW_LNS_advance_line:
11563 case DW_LNS_set_file:
11564 case DW_LNS_set_column:
11565 case DW_LNS_fixed_advance_pc:
11566 n_op_args = 1;
11567 break;
11568 default:
11569 n_op_args = 0;
11570 break;
11573 dw2_asm_output_data (1, n_op_args, "opcode: 0x%x has %d args",
11574 opc, n_op_args);
11577 /* Write out the information about the files we use. */
11578 output_file_names ();
11579 ASM_OUTPUT_LABEL (asm_out_file, p2);
11581 /* We used to set the address register to the first location in the text
11582 section here, but that didn't accomplish anything since we already
11583 have a line note for the opening brace of the first function. */
11585 /* Generate the line number to PC correspondence table, encoded as
11586 a series of state machine operations. */
11587 current_file = 1;
11588 current_line = 1;
11590 if (cfun && in_cold_section_p)
11591 strcpy (prev_line_label, crtl->subsections.cold_section_label);
11592 else
11593 strcpy (prev_line_label, text_section_label);
11594 for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
11596 dw_line_info_ref line_info = &line_info_table[lt_index];
11598 #if 0
11599 /* Disable this optimization for now; GDB wants to see two line notes
11600 at the beginning of a function so it can find the end of the
11601 prologue. */
11603 /* Don't emit anything for redundant notes. Just updating the
11604 address doesn't accomplish anything, because we already assume
11605 that anything after the last address is this line. */
11606 if (line_info->dw_line_num == current_line
11607 && line_info->dw_file_num == current_file)
11608 continue;
11609 #endif
11611 /* Emit debug info for the address of the current line.
11613 Unfortunately, we have little choice here currently, and must always
11614 use the most general form. GCC does not know the address delta
11615 itself, so we can't use DW_LNS_advance_pc. Many ports do have length
11616 attributes which will give an upper bound on the address range. We
11617 could perhaps use length attributes to determine when it is safe to
11618 use DW_LNS_fixed_advance_pc. */
11620 ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
11621 if (0)
11623 /* This can handle deltas up to 0xffff. This takes 3 bytes. */
11624 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
11625 "DW_LNS_fixed_advance_pc");
11626 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
11628 else
11630 /* This can handle any delta. This takes
11631 4+DWARF2_ADDR_SIZE bytes. */
11632 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
11633 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
11634 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
11635 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
11638 strcpy (prev_line_label, line_label);
11640 /* Emit debug info for the source file of the current line, if
11641 different from the previous line. */
11642 if (line_info->dw_file_num != current_file)
11644 current_file = line_info->dw_file_num;
11645 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
11646 dw2_asm_output_data_uleb128 (current_file, "%lu", current_file);
11649 /* Emit debug info for the current line number, choosing the encoding
11650 that uses the least amount of space. */
11651 if (line_info->dw_line_num != current_line)
11653 line_offset = line_info->dw_line_num - current_line;
11654 line_delta = line_offset - DWARF_LINE_BASE;
11655 current_line = line_info->dw_line_num;
11656 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
11657 /* This can handle deltas from -10 to 234, using the current
11658 definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE. This
11659 takes 1 byte. */
11660 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
11661 "line %lu", current_line);
11662 else
11664 /* This can handle any delta. This takes at least 4 bytes,
11665 depending on the value being encoded. */
11666 dw2_asm_output_data (1, DW_LNS_advance_line,
11667 "advance to line %lu", current_line);
11668 dw2_asm_output_data_sleb128 (line_offset, NULL);
11669 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
11672 else
11673 /* We still need to start a new row, so output a copy insn. */
11674 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
11677 /* Emit debug info for the address of the end of the function. */
11678 if (0)
11680 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
11681 "DW_LNS_fixed_advance_pc");
11682 dw2_asm_output_delta (2, text_end_label, prev_line_label, NULL);
11684 else
11686 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
11687 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
11688 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
11689 dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_end_label, NULL);
11692 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
11693 dw2_asm_output_data_uleb128 (1, NULL);
11694 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
11696 function = 0;
11697 current_file = 1;
11698 current_line = 1;
11699 for (lt_index = 0; lt_index < separate_line_info_table_in_use;)
11701 dw_separate_line_info_ref line_info
11702 = &separate_line_info_table[lt_index];
11704 #if 0
11705 /* Don't emit anything for redundant notes. */
11706 if (line_info->dw_line_num == current_line
11707 && line_info->dw_file_num == current_file
11708 && line_info->function == function)
11709 goto cont;
11710 #endif
11712 /* Emit debug info for the address of the current line. If this is
11713 a new function, or the first line of a function, then we need
11714 to handle it differently. */
11715 ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
11716 lt_index);
11717 if (function != line_info->function)
11719 function = line_info->function;
11721 /* Set the address register to the first line in the function. */
11722 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
11723 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
11724 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
11725 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
11727 else
11729 /* ??? See the DW_LNS_advance_pc comment above. */
11730 if (0)
11732 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
11733 "DW_LNS_fixed_advance_pc");
11734 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
11736 else
11738 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
11739 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
11740 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
11741 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
11745 strcpy (prev_line_label, line_label);
11747 /* Emit debug info for the source file of the current line, if
11748 different from the previous line. */
11749 if (line_info->dw_file_num != current_file)
11751 current_file = line_info->dw_file_num;
11752 dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
11753 dw2_asm_output_data_uleb128 (current_file, "%lu", current_file);
11756 /* Emit debug info for the current line number, choosing the encoding
11757 that uses the least amount of space. */
11758 if (line_info->dw_line_num != current_line)
11760 line_offset = line_info->dw_line_num - current_line;
11761 line_delta = line_offset - DWARF_LINE_BASE;
11762 current_line = line_info->dw_line_num;
11763 if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
11764 dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
11765 "line %lu", current_line);
11766 else
11768 dw2_asm_output_data (1, DW_LNS_advance_line,
11769 "advance to line %lu", current_line);
11770 dw2_asm_output_data_sleb128 (line_offset, NULL);
11771 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
11774 else
11775 dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
11777 #if 0
11778 cont:
11779 #endif
11781 lt_index++;
11783 /* If we're done with a function, end its sequence. */
11784 if (lt_index == separate_line_info_table_in_use
11785 || separate_line_info_table[lt_index].function != function)
11787 current_file = 1;
11788 current_line = 1;
11790 /* Emit debug info for the address of the end of the function. */
11791 ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
11792 if (0)
11794 dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
11795 "DW_LNS_fixed_advance_pc");
11796 dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
11798 else
11800 dw2_asm_output_data (1, 0, "DW_LNE_set_address");
11801 dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
11802 dw2_asm_output_data (1, DW_LNE_set_address, NULL);
11803 dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
11806 /* Output the marker for the end of this sequence. */
11807 dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
11808 dw2_asm_output_data_uleb128 (1, NULL);
11809 dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
11813 /* Output the marker for the end of the line number info. */
11814 ASM_OUTPUT_LABEL (asm_out_file, l2);
11817 /* Return the size of the .debug_dcall table for the compilation unit. */
11819 static unsigned long
11820 size_of_dcall_table (void)
11822 unsigned long size;
11823 unsigned int i;
11824 dcall_entry *p;
11825 tree last_poc_decl = NULL;
11827 /* Header: version + debug info section pointer + pointer size. */
11828 size = 2 + DWARF_OFFSET_SIZE + 1;
11830 /* Each entry: code label + DIE offset. */
11831 for (i = 0; VEC_iterate (dcall_entry, dcall_table, i, p); i++)
11833 gcc_assert (p->targ_die != NULL);
11834 /* Insert a "from" entry when the point-of-call DIE offset changes. */
11835 if (p->poc_decl != last_poc_decl)
11837 dw_die_ref poc_die = lookup_decl_die (p->poc_decl);
11838 gcc_assert (poc_die);
11839 last_poc_decl = p->poc_decl;
11840 if (poc_die)
11841 size += (DWARF_OFFSET_SIZE
11842 + size_of_uleb128 (poc_die->die_offset));
11844 size += DWARF_OFFSET_SIZE + size_of_uleb128 (p->targ_die->die_offset);
11847 return size;
11850 /* Output the direct call table used to disambiguate PC values when
11851 identical function have been merged. */
11853 static void
11854 output_dcall_table (void)
11856 unsigned i;
11857 unsigned long dcall_length = size_of_dcall_table ();
11858 dcall_entry *p;
11859 char poc_label[MAX_ARTIFICIAL_LABEL_BYTES];
11860 tree last_poc_decl = NULL;
11862 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11863 dw2_asm_output_data (4, 0xffffffff,
11864 "Initial length escape value indicating 64-bit DWARF extension");
11865 dw2_asm_output_data (DWARF_OFFSET_SIZE, dcall_length,
11866 "Length of Direct Call Table");
11867 dw2_asm_output_data (2, 4, "Version number");
11868 dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
11869 debug_info_section,
11870 "Offset of Compilation Unit Info");
11871 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11873 for (i = 0; VEC_iterate (dcall_entry, dcall_table, i, p); i++)
11875 /* Insert a "from" entry when the point-of-call DIE offset changes. */
11876 if (p->poc_decl != last_poc_decl)
11878 dw_die_ref poc_die = lookup_decl_die (p->poc_decl);
11879 last_poc_decl = p->poc_decl;
11880 if (poc_die)
11882 dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, "New caller");
11883 dw2_asm_output_data_uleb128 (poc_die->die_offset,
11884 "Caller DIE offset");
11887 ASM_GENERATE_INTERNAL_LABEL (poc_label, "LPOC", p->poc_label_num);
11888 dw2_asm_output_addr (DWARF_OFFSET_SIZE, poc_label, "Point of call");
11889 dw2_asm_output_data_uleb128 (p->targ_die->die_offset,
11890 "Callee DIE offset");
11894 /* Return the size of the .debug_vcall table for the compilation unit. */
11896 static unsigned long
11897 size_of_vcall_table (void)
11899 unsigned long size;
11900 unsigned int i;
11901 vcall_entry *p;
11903 /* Header: version + pointer size. */
11904 size = 2 + 1;
11906 /* Each entry: code label + vtable slot index. */
11907 for (i = 0; VEC_iterate (vcall_entry, vcall_table, i, p); i++)
11908 size += DWARF_OFFSET_SIZE + size_of_uleb128 (p->vtable_slot);
11910 return size;
11913 /* Output the virtual call table used to disambiguate PC values when
11914 identical function have been merged. */
11916 static void
11917 output_vcall_table (void)
11919 unsigned i;
11920 unsigned long vcall_length = size_of_vcall_table ();
11921 vcall_entry *p;
11922 char poc_label[MAX_ARTIFICIAL_LABEL_BYTES];
11924 if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11925 dw2_asm_output_data (4, 0xffffffff,
11926 "Initial length escape value indicating 64-bit DWARF extension");
11927 dw2_asm_output_data (DWARF_OFFSET_SIZE, vcall_length,
11928 "Length of Virtual Call Table");
11929 dw2_asm_output_data (2, 4, "Version number");
11930 dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11932 for (i = 0; VEC_iterate (vcall_entry, vcall_table, i, p); i++)
11934 ASM_GENERATE_INTERNAL_LABEL (poc_label, "LPOC", p->poc_label_num);
11935 dw2_asm_output_addr (DWARF_OFFSET_SIZE, poc_label, "Point of call");
11936 dw2_asm_output_data_uleb128 (p->vtable_slot, "Vtable slot");
11940 /* Given a pointer to a tree node for some base type, return a pointer to
11941 a DIE that describes the given type.
11943 This routine must only be called for GCC type nodes that correspond to
11944 Dwarf base (fundamental) types. */
11946 static dw_die_ref
11947 base_type_die (tree type)
11949 dw_die_ref base_type_result;
11950 enum dwarf_type encoding;
11952 if (TREE_CODE (type) == ERROR_MARK || TREE_CODE (type) == VOID_TYPE)
11953 return 0;
11955 /* If this is a subtype that should not be emitted as a subrange type,
11956 use the base type. See subrange_type_for_debug_p. */
11957 if (TREE_CODE (type) == INTEGER_TYPE && TREE_TYPE (type) != NULL_TREE)
11958 type = TREE_TYPE (type);
11960 switch (TREE_CODE (type))
11962 case INTEGER_TYPE:
11963 if (TYPE_STRING_FLAG (type))
11965 if (TYPE_UNSIGNED (type))
11966 encoding = DW_ATE_unsigned_char;
11967 else
11968 encoding = DW_ATE_signed_char;
11970 else if (TYPE_UNSIGNED (type))
11971 encoding = DW_ATE_unsigned;
11972 else
11973 encoding = DW_ATE_signed;
11974 break;
11976 case REAL_TYPE:
11977 if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type)))
11979 if (dwarf_version >= 3 || !dwarf_strict)
11980 encoding = DW_ATE_decimal_float;
11981 else
11982 encoding = DW_ATE_lo_user;
11984 else
11985 encoding = DW_ATE_float;
11986 break;
11988 case FIXED_POINT_TYPE:
11989 if (!(dwarf_version >= 3 || !dwarf_strict))
11990 encoding = DW_ATE_lo_user;
11991 else if (TYPE_UNSIGNED (type))
11992 encoding = DW_ATE_unsigned_fixed;
11993 else
11994 encoding = DW_ATE_signed_fixed;
11995 break;
11997 /* Dwarf2 doesn't know anything about complex ints, so use
11998 a user defined type for it. */
11999 case COMPLEX_TYPE:
12000 if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
12001 encoding = DW_ATE_complex_float;
12002 else
12003 encoding = DW_ATE_lo_user;
12004 break;
12006 case BOOLEAN_TYPE:
12007 /* GNU FORTRAN/Ada/C++ BOOLEAN type. */
12008 encoding = DW_ATE_boolean;
12009 break;
12011 default:
12012 /* No other TREE_CODEs are Dwarf fundamental types. */
12013 gcc_unreachable ();
12016 base_type_result = new_die (DW_TAG_base_type, comp_unit_die, type);
12018 /* This probably indicates a bug. */
12019 if (! TYPE_NAME (type))
12020 add_name_attribute (base_type_result, "__unknown__");
12022 add_AT_unsigned (base_type_result, DW_AT_byte_size,
12023 int_size_in_bytes (type));
12024 add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
12026 return base_type_result;
12029 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
12030 given input type is a Dwarf "fundamental" type. Otherwise return null. */
12032 static inline int
12033 is_base_type (tree type)
12035 switch (TREE_CODE (type))
12037 case ERROR_MARK:
12038 case VOID_TYPE:
12039 case INTEGER_TYPE:
12040 case REAL_TYPE:
12041 case FIXED_POINT_TYPE:
12042 case COMPLEX_TYPE:
12043 case BOOLEAN_TYPE:
12044 return 1;
12046 case ARRAY_TYPE:
12047 case RECORD_TYPE:
12048 case UNION_TYPE:
12049 case QUAL_UNION_TYPE:
12050 case ENUMERAL_TYPE:
12051 case FUNCTION_TYPE:
12052 case METHOD_TYPE:
12053 case POINTER_TYPE:
12054 case REFERENCE_TYPE:
12055 case OFFSET_TYPE:
12056 case LANG_TYPE:
12057 case VECTOR_TYPE:
12058 return 0;
12060 default:
12061 gcc_unreachable ();
12064 return 0;
12067 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
12068 node, return the size in bits for the type if it is a constant, or else
12069 return the alignment for the type if the type's size is not constant, or
12070 else return BITS_PER_WORD if the type actually turns out to be an
12071 ERROR_MARK node. */
12073 static inline unsigned HOST_WIDE_INT
12074 simple_type_size_in_bits (const_tree type)
12076 if (TREE_CODE (type) == ERROR_MARK)
12077 return BITS_PER_WORD;
12078 else if (TYPE_SIZE (type) == NULL_TREE)
12079 return 0;
12080 else if (host_integerp (TYPE_SIZE (type), 1))
12081 return tree_low_cst (TYPE_SIZE (type), 1);
12082 else
12083 return TYPE_ALIGN (type);
12086 /* Given a pointer to a tree node for a subrange type, return a pointer
12087 to a DIE that describes the given type. */
12089 static dw_die_ref
12090 subrange_type_die (tree type, tree low, tree high, dw_die_ref context_die)
12092 dw_die_ref subrange_die;
12093 const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
12095 if (context_die == NULL)
12096 context_die = comp_unit_die;
12098 subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
12100 if (int_size_in_bytes (TREE_TYPE (type)) != size_in_bytes)
12102 /* The size of the subrange type and its base type do not match,
12103 so we need to generate a size attribute for the subrange type. */
12104 add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
12107 if (low)
12108 add_bound_info (subrange_die, DW_AT_lower_bound, low);
12109 if (high)
12110 add_bound_info (subrange_die, DW_AT_upper_bound, high);
12112 return subrange_die;
12115 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
12116 entry that chains various modifiers in front of the given type. */
12118 static dw_die_ref
12119 modified_type_die (tree type, int is_const_type, int is_volatile_type,
12120 dw_die_ref context_die)
12122 enum tree_code code = TREE_CODE (type);
12123 dw_die_ref mod_type_die;
12124 dw_die_ref sub_die = NULL;
12125 tree item_type = NULL;
12126 tree qualified_type;
12127 tree name, low, high;
12129 if (code == ERROR_MARK)
12130 return NULL;
12132 /* See if we already have the appropriately qualified variant of
12133 this type. */
12134 qualified_type
12135 = get_qualified_type (type,
12136 ((is_const_type ? TYPE_QUAL_CONST : 0)
12137 | (is_volatile_type ? TYPE_QUAL_VOLATILE : 0)));
12139 /* If we do, then we can just use its DIE, if it exists. */
12140 if (qualified_type)
12142 mod_type_die = lookup_type_die (qualified_type);
12143 if (mod_type_die)
12144 return mod_type_die;
12147 name = qualified_type ? TYPE_NAME (qualified_type) : NULL;
12149 /* Handle C typedef types. */
12150 if (name && TREE_CODE (name) == TYPE_DECL && DECL_ORIGINAL_TYPE (name))
12152 tree dtype = TREE_TYPE (name);
12154 if (qualified_type == dtype)
12156 /* For a named type, use the typedef. */
12157 gen_type_die (qualified_type, context_die);
12158 return lookup_type_die (qualified_type);
12160 else if (is_const_type < TYPE_READONLY (dtype)
12161 || is_volatile_type < TYPE_VOLATILE (dtype)
12162 || (is_const_type <= TYPE_READONLY (dtype)
12163 && is_volatile_type <= TYPE_VOLATILE (dtype)
12164 && DECL_ORIGINAL_TYPE (name) != type))
12165 /* cv-unqualified version of named type. Just use the unnamed
12166 type to which it refers. */
12167 return modified_type_die (DECL_ORIGINAL_TYPE (name),
12168 is_const_type, is_volatile_type,
12169 context_die);
12170 /* Else cv-qualified version of named type; fall through. */
12173 if (is_const_type)
12175 mod_type_die = new_die (DW_TAG_const_type, comp_unit_die, type);
12176 sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
12178 else if (is_volatile_type)
12180 mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die, type);
12181 sub_die = modified_type_die (type, 0, 0, context_die);
12183 else if (code == POINTER_TYPE)
12185 mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die, type);
12186 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
12187 simple_type_size_in_bits (type) / BITS_PER_UNIT);
12188 item_type = TREE_TYPE (type);
12189 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type)))
12190 add_AT_unsigned (mod_type_die, DW_AT_address_class,
12191 TYPE_ADDR_SPACE (item_type));
12193 else if (code == REFERENCE_TYPE)
12195 mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die, type);
12196 add_AT_unsigned (mod_type_die, DW_AT_byte_size,
12197 simple_type_size_in_bits (type) / BITS_PER_UNIT);
12198 item_type = TREE_TYPE (type);
12199 if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type)))
12200 add_AT_unsigned (mod_type_die, DW_AT_address_class,
12201 TYPE_ADDR_SPACE (item_type));
12203 else if (code == INTEGER_TYPE
12204 && TREE_TYPE (type) != NULL_TREE
12205 && subrange_type_for_debug_p (type, &low, &high))
12207 mod_type_die = subrange_type_die (type, low, high, context_die);
12208 item_type = TREE_TYPE (type);
12210 else if (is_base_type (type))
12211 mod_type_die = base_type_die (type);
12212 else
12214 gen_type_die (type, context_die);
12216 /* We have to get the type_main_variant here (and pass that to the
12217 `lookup_type_die' routine) because the ..._TYPE node we have
12218 might simply be a *copy* of some original type node (where the
12219 copy was created to help us keep track of typedef names) and
12220 that copy might have a different TYPE_UID from the original
12221 ..._TYPE node. */
12222 if (TREE_CODE (type) != VECTOR_TYPE)
12223 return lookup_type_die (type_main_variant (type));
12224 else
12225 /* Vectors have the debugging information in the type,
12226 not the main variant. */
12227 return lookup_type_die (type);
12230 /* Builtin types don't have a DECL_ORIGINAL_TYPE. For those,
12231 don't output a DW_TAG_typedef, since there isn't one in the
12232 user's program; just attach a DW_AT_name to the type.
12233 Don't attach a DW_AT_name to DW_TAG_const_type or DW_TAG_volatile_type
12234 if the base type already has the same name. */
12235 if (name
12236 && ((TREE_CODE (name) != TYPE_DECL
12237 && (qualified_type == TYPE_MAIN_VARIANT (type)
12238 || (!is_const_type && !is_volatile_type)))
12239 || (TREE_CODE (name) == TYPE_DECL
12240 && TREE_TYPE (name) == qualified_type
12241 && DECL_NAME (name))))
12243 if (TREE_CODE (name) == TYPE_DECL)
12244 /* Could just call add_name_and_src_coords_attributes here,
12245 but since this is a builtin type it doesn't have any
12246 useful source coordinates anyway. */
12247 name = DECL_NAME (name);
12248 add_name_attribute (mod_type_die, IDENTIFIER_POINTER (name));
12251 if (qualified_type)
12252 equate_type_number_to_die (qualified_type, mod_type_die);
12254 if (item_type)
12255 /* We must do this after the equate_type_number_to_die call, in case
12256 this is a recursive type. This ensures that the modified_type_die
12257 recursion will terminate even if the type is recursive. Recursive
12258 types are possible in Ada. */
12259 sub_die = modified_type_die (item_type,
12260 TYPE_READONLY (item_type),
12261 TYPE_VOLATILE (item_type),
12262 context_die);
12264 if (sub_die != NULL)
12265 add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
12267 return mod_type_die;
12270 /* Generate DIEs for the generic parameters of T.
12271 T must be either a generic type or a generic function.
12272 See http://gcc.gnu.org/wiki/TemplateParmsDwarf for more. */
12274 static void
12275 gen_generic_params_dies (tree t)
12277 tree parms, args;
12278 int parms_num, i;
12279 dw_die_ref die = NULL;
12281 if (!t || (TYPE_P (t) && !COMPLETE_TYPE_P (t)))
12282 return;
12284 if (TYPE_P (t))
12285 die = lookup_type_die (t);
12286 else if (DECL_P (t))
12287 die = lookup_decl_die (t);
12289 gcc_assert (die);
12291 parms = lang_hooks.get_innermost_generic_parms (t);
12292 if (!parms)
12293 /* T has no generic parameter. It means T is neither a generic type
12294 or function. End of story. */
12295 return;
12297 parms_num = TREE_VEC_LENGTH (parms);
12298 args = lang_hooks.get_innermost_generic_args (t);
12299 for (i = 0; i < parms_num; i++)
12301 tree parm, arg, arg_pack_elems;
12303 parm = TREE_VEC_ELT (parms, i);
12304 arg = TREE_VEC_ELT (args, i);
12305 arg_pack_elems = lang_hooks.types.get_argument_pack_elems (arg);
12306 gcc_assert (parm && TREE_VALUE (parm) && arg);
12308 if (parm && TREE_VALUE (parm) && arg)
12310 /* If PARM represents a template parameter pack,
12311 emit a DW_TAG_GNU_template_parameter_pack DIE, followed
12312 by DW_TAG_template_*_parameter DIEs for the argument
12313 pack elements of ARG. Note that ARG would then be
12314 an argument pack. */
12315 if (arg_pack_elems)
12316 template_parameter_pack_die (TREE_VALUE (parm),
12317 arg_pack_elems,
12318 die);
12319 else
12320 generic_parameter_die (TREE_VALUE (parm), arg,
12321 true /* Emit DW_AT_name */, die);
12326 /* Create and return a DIE for PARM which should be
12327 the representation of a generic type parameter.
12328 For instance, in the C++ front end, PARM would be a template parameter.
12329 ARG is the argument to PARM.
12330 EMIT_NAME_P if tree, the DIE will have DW_AT_name attribute set to the
12331 name of the PARM.
12332 PARENT_DIE is the parent DIE which the new created DIE should be added to,
12333 as a child node. */
12335 static dw_die_ref
12336 generic_parameter_die (tree parm, tree arg,
12337 bool emit_name_p,
12338 dw_die_ref parent_die)
12340 dw_die_ref tmpl_die = NULL;
12341 const char *name = NULL;
12343 if (!parm || !DECL_NAME (parm) || !arg)
12344 return NULL;
12346 /* We support non-type generic parameters and arguments,
12347 type generic parameters and arguments, as well as
12348 generic generic parameters (a.k.a. template template parameters in C++)
12349 and arguments. */
12350 if (TREE_CODE (parm) == PARM_DECL)
12351 /* PARM is a nontype generic parameter */
12352 tmpl_die = new_die (DW_TAG_template_value_param, parent_die, parm);
12353 else if (TREE_CODE (parm) == TYPE_DECL)
12354 /* PARM is a type generic parameter. */
12355 tmpl_die = new_die (DW_TAG_template_type_param, parent_die, parm);
12356 else if (lang_hooks.decls.generic_generic_parameter_decl_p (parm))
12357 /* PARM is a generic generic parameter.
12358 Its DIE is a GNU extension. It shall have a
12359 DW_AT_name attribute to represent the name of the template template
12360 parameter, and a DW_AT_GNU_template_name attribute to represent the
12361 name of the template template argument. */
12362 tmpl_die = new_die (DW_TAG_GNU_template_template_param,
12363 parent_die, parm);
12364 else
12365 gcc_unreachable ();
12367 if (tmpl_die)
12369 tree tmpl_type;
12371 /* If PARM is a generic parameter pack, it means we are
12372 emitting debug info for a template argument pack element.
12373 In other terms, ARG is a template argument pack element.
12374 In that case, we don't emit any DW_AT_name attribute for
12375 the die. */
12376 if (emit_name_p)
12378 name = IDENTIFIER_POINTER (DECL_NAME (parm));
12379 gcc_assert (name);
12380 add_AT_string (tmpl_die, DW_AT_name, name);
12383 if (!lang_hooks.decls.generic_generic_parameter_decl_p (parm))
12385 /* DWARF3, 5.6.8 says if PARM is a non-type generic parameter
12386 TMPL_DIE should have a child DW_AT_type attribute that is set
12387 to the type of the argument to PARM, which is ARG.
12388 If PARM is a type generic parameter, TMPL_DIE should have a
12389 child DW_AT_type that is set to ARG. */
12390 tmpl_type = TYPE_P (arg) ? arg : TREE_TYPE (arg);
12391 add_type_attribute (tmpl_die, tmpl_type, 0,
12392 TREE_THIS_VOLATILE (tmpl_type),
12393 parent_die);
12395 else
12397 /* So TMPL_DIE is a DIE representing a
12398 a generic generic template parameter, a.k.a template template
12399 parameter in C++ and arg is a template. */
12401 /* The DW_AT_GNU_template_name attribute of the DIE must be set
12402 to the name of the argument. */
12403 name = dwarf2_name (TYPE_P (arg) ? TYPE_NAME (arg) : arg, 1);
12404 if (name)
12405 add_AT_string (tmpl_die, DW_AT_GNU_template_name, name);
12408 if (TREE_CODE (parm) == PARM_DECL)
12409 /* So PARM is a non-type generic parameter.
12410 DWARF3 5.6.8 says we must set a DW_AT_const_value child
12411 attribute of TMPL_DIE which value represents the value
12412 of ARG.
12413 We must be careful here:
12414 The value of ARG might reference some function decls.
12415 We might currently be emitting debug info for a generic
12416 type and types are emitted before function decls, we don't
12417 know if the function decls referenced by ARG will actually be
12418 emitted after cgraph computations.
12419 So must defer the generation of the DW_AT_const_value to
12420 after cgraph is ready. */
12421 append_entry_to_tmpl_value_parm_die_table (tmpl_die, arg);
12424 return tmpl_die;
12427 /* Generate and return a DW_TAG_GNU_template_parameter_pack DIE representing.
12428 PARM_PACK must be a template parameter pack. The returned DIE
12429 will be child DIE of PARENT_DIE. */
12431 static dw_die_ref
12432 template_parameter_pack_die (tree parm_pack,
12433 tree parm_pack_args,
12434 dw_die_ref parent_die)
12436 dw_die_ref die;
12437 int j;
12439 gcc_assert (parent_die && parm_pack);
12441 die = new_die (DW_TAG_GNU_template_parameter_pack, parent_die, parm_pack);
12442 add_name_and_src_coords_attributes (die, parm_pack);
12443 for (j = 0; j < TREE_VEC_LENGTH (parm_pack_args); j++)
12444 generic_parameter_die (parm_pack,
12445 TREE_VEC_ELT (parm_pack_args, j),
12446 false /* Don't emit DW_AT_name */,
12447 die);
12448 return die;
12451 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
12452 an enumerated type. */
12454 static inline int
12455 type_is_enum (const_tree type)
12457 return TREE_CODE (type) == ENUMERAL_TYPE;
12460 /* Return the DBX register number described by a given RTL node. */
12462 static unsigned int
12463 dbx_reg_number (const_rtx rtl)
12465 unsigned regno = REGNO (rtl);
12467 gcc_assert (regno < FIRST_PSEUDO_REGISTER);
12469 #ifdef LEAF_REG_REMAP
12470 if (current_function_uses_only_leaf_regs)
12472 int leaf_reg = LEAF_REG_REMAP (regno);
12473 if (leaf_reg != -1)
12474 regno = (unsigned) leaf_reg;
12476 #endif
12478 return DBX_REGISTER_NUMBER (regno);
12481 /* Optionally add a DW_OP_piece term to a location description expression.
12482 DW_OP_piece is only added if the location description expression already
12483 doesn't end with DW_OP_piece. */
12485 static void
12486 add_loc_descr_op_piece (dw_loc_descr_ref *list_head, int size)
12488 dw_loc_descr_ref loc;
12490 if (*list_head != NULL)
12492 /* Find the end of the chain. */
12493 for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
12496 if (loc->dw_loc_opc != DW_OP_piece)
12497 loc->dw_loc_next = new_loc_descr (DW_OP_piece, size, 0);
12501 /* Return a location descriptor that designates a machine register or
12502 zero if there is none. */
12504 static dw_loc_descr_ref
12505 reg_loc_descriptor (rtx rtl, enum var_init_status initialized)
12507 rtx regs;
12509 if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
12510 return 0;
12512 regs = targetm.dwarf_register_span (rtl);
12514 if (hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)] > 1 || regs)
12515 return multiple_reg_loc_descriptor (rtl, regs, initialized);
12516 else
12517 return one_reg_loc_descriptor (dbx_reg_number (rtl), initialized);
12520 /* Return a location descriptor that designates a machine register for
12521 a given hard register number. */
12523 static dw_loc_descr_ref
12524 one_reg_loc_descriptor (unsigned int regno, enum var_init_status initialized)
12526 dw_loc_descr_ref reg_loc_descr;
12528 if (regno <= 31)
12529 reg_loc_descr
12530 = new_loc_descr ((enum dwarf_location_atom) (DW_OP_reg0 + regno), 0, 0);
12531 else
12532 reg_loc_descr = new_loc_descr (DW_OP_regx, regno, 0);
12534 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
12535 add_loc_descr (&reg_loc_descr, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
12537 return reg_loc_descr;
12540 /* Given an RTL of a register, return a location descriptor that
12541 designates a value that spans more than one register. */
12543 static dw_loc_descr_ref
12544 multiple_reg_loc_descriptor (rtx rtl, rtx regs,
12545 enum var_init_status initialized)
12547 int nregs, size, i;
12548 unsigned reg;
12549 dw_loc_descr_ref loc_result = NULL;
12551 reg = REGNO (rtl);
12552 #ifdef LEAF_REG_REMAP
12553 if (current_function_uses_only_leaf_regs)
12555 int leaf_reg = LEAF_REG_REMAP (reg);
12556 if (leaf_reg != -1)
12557 reg = (unsigned) leaf_reg;
12559 #endif
12560 gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg) == dbx_reg_number (rtl));
12561 nregs = hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)];
12563 /* Simple, contiguous registers. */
12564 if (regs == NULL_RTX)
12566 size = GET_MODE_SIZE (GET_MODE (rtl)) / nregs;
12568 loc_result = NULL;
12569 while (nregs--)
12571 dw_loc_descr_ref t;
12573 t = one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg),
12574 VAR_INIT_STATUS_INITIALIZED);
12575 add_loc_descr (&loc_result, t);
12576 add_loc_descr_op_piece (&loc_result, size);
12577 ++reg;
12579 return loc_result;
12582 /* Now onto stupid register sets in non contiguous locations. */
12584 gcc_assert (GET_CODE (regs) == PARALLEL);
12586 size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
12587 loc_result = NULL;
12589 for (i = 0; i < XVECLEN (regs, 0); ++i)
12591 dw_loc_descr_ref t;
12593 t = one_reg_loc_descriptor (REGNO (XVECEXP (regs, 0, i)),
12594 VAR_INIT_STATUS_INITIALIZED);
12595 add_loc_descr (&loc_result, t);
12596 size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
12597 add_loc_descr_op_piece (&loc_result, size);
12600 if (loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
12601 add_loc_descr (&loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
12602 return loc_result;
12605 #endif /* DWARF2_DEBUGGING_INFO */
12607 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
12609 /* Return a location descriptor that designates a constant. */
12611 static dw_loc_descr_ref
12612 int_loc_descriptor (HOST_WIDE_INT i)
12614 enum dwarf_location_atom op;
12616 /* Pick the smallest representation of a constant, rather than just
12617 defaulting to the LEB encoding. */
12618 if (i >= 0)
12620 if (i <= 31)
12621 op = (enum dwarf_location_atom) (DW_OP_lit0 + i);
12622 else if (i <= 0xff)
12623 op = DW_OP_const1u;
12624 else if (i <= 0xffff)
12625 op = DW_OP_const2u;
12626 else if (HOST_BITS_PER_WIDE_INT == 32
12627 || i <= 0xffffffff)
12628 op = DW_OP_const4u;
12629 else
12630 op = DW_OP_constu;
12632 else
12634 if (i >= -0x80)
12635 op = DW_OP_const1s;
12636 else if (i >= -0x8000)
12637 op = DW_OP_const2s;
12638 else if (HOST_BITS_PER_WIDE_INT == 32
12639 || i >= -0x80000000)
12640 op = DW_OP_const4s;
12641 else
12642 op = DW_OP_consts;
12645 return new_loc_descr (op, i, 0);
12647 #endif
12649 #ifdef DWARF2_DEBUGGING_INFO
12650 /* Return loc description representing "address" of integer value.
12651 This can appear only as toplevel expression. */
12653 static dw_loc_descr_ref
12654 address_of_int_loc_descriptor (int size, HOST_WIDE_INT i)
12656 int litsize;
12657 dw_loc_descr_ref loc_result = NULL;
12659 if (!(dwarf_version >= 4 || !dwarf_strict))
12660 return NULL;
12662 if (i >= 0)
12664 if (i <= 31)
12665 litsize = 1;
12666 else if (i <= 0xff)
12667 litsize = 2;
12668 else if (i <= 0xffff)
12669 litsize = 3;
12670 else if (HOST_BITS_PER_WIDE_INT == 32
12671 || i <= 0xffffffff)
12672 litsize = 5;
12673 else
12674 litsize = 1 + size_of_uleb128 ((unsigned HOST_WIDE_INT) i);
12676 else
12678 if (i >= -0x80)
12679 litsize = 2;
12680 else if (i >= -0x8000)
12681 litsize = 3;
12682 else if (HOST_BITS_PER_WIDE_INT == 32
12683 || i >= -0x80000000)
12684 litsize = 5;
12685 else
12686 litsize = 1 + size_of_sleb128 (i);
12688 /* Determine if DW_OP_stack_value or DW_OP_implicit_value
12689 is more compact. For DW_OP_stack_value we need:
12690 litsize + 1 (DW_OP_stack_value)
12691 and for DW_OP_implicit_value:
12692 1 (DW_OP_implicit_value) + 1 (length) + size. */
12693 if ((int) DWARF2_ADDR_SIZE >= size && litsize + 1 <= 1 + 1 + size)
12695 loc_result = int_loc_descriptor (i);
12696 add_loc_descr (&loc_result,
12697 new_loc_descr (DW_OP_stack_value, 0, 0));
12698 return loc_result;
12701 loc_result = new_loc_descr (DW_OP_implicit_value,
12702 size, 0);
12703 loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
12704 loc_result->dw_loc_oprnd2.v.val_int = i;
12705 return loc_result;
12708 /* Return a location descriptor that designates a base+offset location. */
12710 static dw_loc_descr_ref
12711 based_loc_descr (rtx reg, HOST_WIDE_INT offset,
12712 enum var_init_status initialized)
12714 unsigned int regno;
12715 dw_loc_descr_ref result;
12716 dw_fde_ref fde = current_fde ();
12718 /* We only use "frame base" when we're sure we're talking about the
12719 post-prologue local stack frame. We do this by *not* running
12720 register elimination until this point, and recognizing the special
12721 argument pointer and soft frame pointer rtx's. */
12722 if (reg == arg_pointer_rtx || reg == frame_pointer_rtx)
12724 rtx elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
12726 if (elim != reg)
12728 if (GET_CODE (elim) == PLUS)
12730 offset += INTVAL (XEXP (elim, 1));
12731 elim = XEXP (elim, 0);
12733 gcc_assert ((SUPPORTS_STACK_ALIGNMENT
12734 && (elim == hard_frame_pointer_rtx
12735 || elim == stack_pointer_rtx))
12736 || elim == (frame_pointer_needed
12737 ? hard_frame_pointer_rtx
12738 : stack_pointer_rtx));
12740 /* If drap register is used to align stack, use frame
12741 pointer + offset to access stack variables. If stack
12742 is aligned without drap, use stack pointer + offset to
12743 access stack variables. */
12744 if (crtl->stack_realign_tried
12745 && reg == frame_pointer_rtx)
12747 int base_reg
12748 = DWARF_FRAME_REGNUM ((fde && fde->drap_reg != INVALID_REGNUM)
12749 ? HARD_FRAME_POINTER_REGNUM
12750 : STACK_POINTER_REGNUM);
12751 return new_reg_loc_descr (base_reg, offset);
12754 offset += frame_pointer_fb_offset;
12755 return new_loc_descr (DW_OP_fbreg, offset, 0);
12758 else if (!optimize
12759 && fde
12760 && (fde->drap_reg == REGNO (reg)
12761 || fde->vdrap_reg == REGNO (reg)))
12763 /* Use cfa+offset to represent the location of arguments passed
12764 on the stack when drap is used to align stack.
12765 Only do this when not optimizing, for optimized code var-tracking
12766 is supposed to track where the arguments live and the register
12767 used as vdrap or drap in some spot might be used for something
12768 else in other part of the routine. */
12769 return new_loc_descr (DW_OP_fbreg, offset, 0);
12772 regno = dbx_reg_number (reg);
12773 if (regno <= 31)
12774 result = new_loc_descr ((enum dwarf_location_atom) (DW_OP_breg0 + regno),
12775 offset, 0);
12776 else
12777 result = new_loc_descr (DW_OP_bregx, regno, offset);
12779 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
12780 add_loc_descr (&result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
12782 return result;
12785 /* Return true if this RTL expression describes a base+offset calculation. */
12787 static inline int
12788 is_based_loc (const_rtx rtl)
12790 return (GET_CODE (rtl) == PLUS
12791 && ((REG_P (XEXP (rtl, 0))
12792 && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
12793 && CONST_INT_P (XEXP (rtl, 1)))));
12796 /* Try to handle TLS MEMs, for which mem_loc_descriptor on XEXP (mem, 0)
12797 failed. */
12799 static dw_loc_descr_ref
12800 tls_mem_loc_descriptor (rtx mem)
12802 tree base;
12803 dw_loc_descr_ref loc_result;
12805 if (MEM_EXPR (mem) == NULL_TREE || MEM_OFFSET (mem) == NULL_RTX)
12806 return NULL;
12808 base = get_base_address (MEM_EXPR (mem));
12809 if (base == NULL
12810 || TREE_CODE (base) != VAR_DECL
12811 || !DECL_THREAD_LOCAL_P (base))
12812 return NULL;
12814 loc_result = loc_descriptor_from_tree (MEM_EXPR (mem), 1);
12815 if (loc_result == NULL)
12816 return NULL;
12818 if (INTVAL (MEM_OFFSET (mem)))
12819 loc_descr_plus_const (&loc_result, INTVAL (MEM_OFFSET (mem)));
12821 return loc_result;
12824 /* Output debug info about reason why we failed to expand expression as dwarf
12825 expression. */
12827 static void
12828 expansion_failed (tree expr, rtx rtl, char const *reason)
12830 if (dump_file && (dump_flags & TDF_DETAILS))
12832 fprintf (dump_file, "Failed to expand as dwarf: ");
12833 if (expr)
12834 print_generic_expr (dump_file, expr, dump_flags);
12835 if (rtl)
12837 fprintf (dump_file, "\n");
12838 print_rtl (dump_file, rtl);
12840 fprintf (dump_file, "\nReason: %s\n", reason);
12844 /* Helper function for const_ok_for_output, called either directly
12845 or via for_each_rtx. */
12847 static int
12848 const_ok_for_output_1 (rtx *rtlp, void *data ATTRIBUTE_UNUSED)
12850 rtx rtl = *rtlp;
12852 if (GET_CODE (rtl) == UNSPEC)
12854 /* If delegitimize_address couldn't do anything with the UNSPEC, assume
12855 we can't express it in the debug info. */
12856 #ifdef ENABLE_CHECKING
12857 inform (current_function_decl
12858 ? DECL_SOURCE_LOCATION (current_function_decl)
12859 : UNKNOWN_LOCATION,
12860 "non-delegitimized UNSPEC %d found in variable location",
12861 XINT (rtl, 1));
12862 #endif
12863 expansion_failed (NULL_TREE, rtl,
12864 "UNSPEC hasn't been delegitimized.\n");
12865 return 1;
12868 if (GET_CODE (rtl) != SYMBOL_REF)
12869 return 0;
12871 if (CONSTANT_POOL_ADDRESS_P (rtl))
12873 bool marked;
12874 get_pool_constant_mark (rtl, &marked);
12875 /* If all references to this pool constant were optimized away,
12876 it was not output and thus we can't represent it. */
12877 if (!marked)
12879 expansion_failed (NULL_TREE, rtl,
12880 "Constant was removed from constant pool.\n");
12881 return 1;
12885 if (SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
12886 return 1;
12888 /* Avoid references to external symbols in debug info, on several targets
12889 the linker might even refuse to link when linking a shared library,
12890 and in many other cases the relocations for .debug_info/.debug_loc are
12891 dropped, so the address becomes zero anyway. Hidden symbols, guaranteed
12892 to be defined within the same shared library or executable are fine. */
12893 if (SYMBOL_REF_EXTERNAL_P (rtl))
12895 tree decl = SYMBOL_REF_DECL (rtl);
12897 if (decl == NULL || !targetm.binds_local_p (decl))
12899 expansion_failed (NULL_TREE, rtl,
12900 "Symbol not defined in current TU.\n");
12901 return 1;
12905 return 0;
12908 /* Return true if constant RTL can be emitted in DW_OP_addr or
12909 DW_AT_const_value. TLS SYMBOL_REFs, external SYMBOL_REFs or
12910 non-marked constant pool SYMBOL_REFs can't be referenced in it. */
12912 static bool
12913 const_ok_for_output (rtx rtl)
12915 if (GET_CODE (rtl) == SYMBOL_REF)
12916 return const_ok_for_output_1 (&rtl, NULL) == 0;
12918 if (GET_CODE (rtl) == CONST)
12919 return for_each_rtx (&XEXP (rtl, 0), const_ok_for_output_1, NULL) == 0;
12921 return true;
12924 /* The following routine converts the RTL for a variable or parameter
12925 (resident in memory) into an equivalent Dwarf representation of a
12926 mechanism for getting the address of that same variable onto the top of a
12927 hypothetical "address evaluation" stack.
12929 When creating memory location descriptors, we are effectively transforming
12930 the RTL for a memory-resident object into its Dwarf postfix expression
12931 equivalent. This routine recursively descends an RTL tree, turning
12932 it into Dwarf postfix code as it goes.
12934 MODE is the mode of the memory reference, needed to handle some
12935 autoincrement addressing modes.
12937 CAN_USE_FBREG is a flag whether we can use DW_AT_frame_base in the
12938 location list for RTL.
12940 Return 0 if we can't represent the location. */
12942 static dw_loc_descr_ref
12943 mem_loc_descriptor (rtx rtl, enum machine_mode mode,
12944 enum var_init_status initialized)
12946 dw_loc_descr_ref mem_loc_result = NULL;
12947 enum dwarf_location_atom op;
12948 dw_loc_descr_ref op0, op1;
12950 /* Note that for a dynamically sized array, the location we will generate a
12951 description of here will be the lowest numbered location which is
12952 actually within the array. That's *not* necessarily the same as the
12953 zeroth element of the array. */
12955 rtl = targetm.delegitimize_address (rtl);
12957 switch (GET_CODE (rtl))
12959 case POST_INC:
12960 case POST_DEC:
12961 case POST_MODIFY:
12962 return mem_loc_descriptor (XEXP (rtl, 0), mode, initialized);
12964 case SUBREG:
12965 /* The case of a subreg may arise when we have a local (register)
12966 variable or a formal (register) parameter which doesn't quite fill
12967 up an entire register. For now, just assume that it is
12968 legitimate to make the Dwarf info refer to the whole register which
12969 contains the given subreg. */
12970 if (!subreg_lowpart_p (rtl))
12971 break;
12972 rtl = SUBREG_REG (rtl);
12973 if (GET_MODE_SIZE (GET_MODE (rtl)) > DWARF2_ADDR_SIZE)
12974 break;
12975 if (GET_MODE_CLASS (GET_MODE (rtl)) != MODE_INT)
12976 break;
12977 mem_loc_result = mem_loc_descriptor (rtl, mode, initialized);
12978 break;
12980 case REG:
12981 /* Whenever a register number forms a part of the description of the
12982 method for calculating the (dynamic) address of a memory resident
12983 object, DWARF rules require the register number be referred to as
12984 a "base register". This distinction is not based in any way upon
12985 what category of register the hardware believes the given register
12986 belongs to. This is strictly DWARF terminology we're dealing with
12987 here. Note that in cases where the location of a memory-resident
12988 data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
12989 OP_CONST (0)) the actual DWARF location descriptor that we generate
12990 may just be OP_BASEREG (basereg). This may look deceptively like
12991 the object in question was allocated to a register (rather than in
12992 memory) so DWARF consumers need to be aware of the subtle
12993 distinction between OP_REG and OP_BASEREG. */
12994 if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
12995 mem_loc_result = based_loc_descr (rtl, 0, VAR_INIT_STATUS_INITIALIZED);
12996 else if (stack_realign_drap
12997 && crtl->drap_reg
12998 && crtl->args.internal_arg_pointer == rtl
12999 && REGNO (crtl->drap_reg) < FIRST_PSEUDO_REGISTER)
13001 /* If RTL is internal_arg_pointer, which has been optimized
13002 out, use DRAP instead. */
13003 mem_loc_result = based_loc_descr (crtl->drap_reg, 0,
13004 VAR_INIT_STATUS_INITIALIZED);
13006 break;
13008 case SIGN_EXTEND:
13009 case ZERO_EXTEND:
13010 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13011 VAR_INIT_STATUS_INITIALIZED);
13012 if (op0 == 0)
13013 break;
13014 else
13016 int shift = DWARF2_ADDR_SIZE
13017 - GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0)));
13018 shift *= BITS_PER_UNIT;
13019 if (GET_CODE (rtl) == SIGN_EXTEND)
13020 op = DW_OP_shra;
13021 else
13022 op = DW_OP_shr;
13023 mem_loc_result = op0;
13024 add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
13025 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
13026 add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
13027 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13029 break;
13031 case MEM:
13032 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl),
13033 VAR_INIT_STATUS_INITIALIZED);
13034 if (mem_loc_result == NULL)
13035 mem_loc_result = tls_mem_loc_descriptor (rtl);
13036 if (mem_loc_result != 0)
13038 if (GET_MODE_SIZE (GET_MODE (rtl)) > DWARF2_ADDR_SIZE)
13040 expansion_failed (NULL_TREE, rtl, "DWARF address size mismatch");
13041 return 0;
13043 else if (GET_MODE_SIZE (GET_MODE (rtl)) == DWARF2_ADDR_SIZE)
13044 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
13045 else
13046 add_loc_descr (&mem_loc_result,
13047 new_loc_descr (DW_OP_deref_size,
13048 GET_MODE_SIZE (GET_MODE (rtl)), 0));
13050 else
13052 rtx new_rtl = avoid_constant_pool_reference (rtl);
13053 if (new_rtl != rtl)
13054 return mem_loc_descriptor (new_rtl, mode, initialized);
13056 break;
13058 case LO_SUM:
13059 rtl = XEXP (rtl, 1);
13061 /* ... fall through ... */
13063 case LABEL_REF:
13064 /* Some ports can transform a symbol ref into a label ref, because
13065 the symbol ref is too far away and has to be dumped into a constant
13066 pool. */
13067 case CONST:
13068 case SYMBOL_REF:
13069 if (GET_CODE (rtl) == SYMBOL_REF
13070 && SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
13072 dw_loc_descr_ref temp;
13074 /* If this is not defined, we have no way to emit the data. */
13075 if (!targetm.have_tls || !targetm.asm_out.output_dwarf_dtprel)
13076 break;
13078 temp = new_loc_descr (DW_OP_addr, 0, 0);
13079 temp->dw_loc_oprnd1.val_class = dw_val_class_addr;
13080 temp->dw_loc_oprnd1.v.val_addr = rtl;
13081 temp->dtprel = true;
13083 mem_loc_result = new_loc_descr (DW_OP_GNU_push_tls_address, 0, 0);
13084 add_loc_descr (&mem_loc_result, temp);
13086 break;
13089 if (!const_ok_for_output (rtl))
13090 break;
13092 symref:
13093 mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
13094 mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
13095 mem_loc_result->dw_loc_oprnd1.v.val_addr = rtl;
13096 VEC_safe_push (rtx, gc, used_rtx_array, rtl);
13097 break;
13099 case CONCAT:
13100 case CONCATN:
13101 case VAR_LOCATION:
13102 expansion_failed (NULL_TREE, rtl,
13103 "CONCAT/CONCATN/VAR_LOCATION is handled only by loc_descriptor");
13104 return 0;
13106 case PRE_MODIFY:
13107 /* Extract the PLUS expression nested inside and fall into
13108 PLUS code below. */
13109 rtl = XEXP (rtl, 1);
13110 goto plus;
13112 case PRE_INC:
13113 case PRE_DEC:
13114 /* Turn these into a PLUS expression and fall into the PLUS code
13115 below. */
13116 rtl = gen_rtx_PLUS (word_mode, XEXP (rtl, 0),
13117 GEN_INT (GET_CODE (rtl) == PRE_INC
13118 ? GET_MODE_UNIT_SIZE (mode)
13119 : -GET_MODE_UNIT_SIZE (mode)));
13121 /* ... fall through ... */
13123 case PLUS:
13124 plus:
13125 if (is_based_loc (rtl))
13126 mem_loc_result = based_loc_descr (XEXP (rtl, 0),
13127 INTVAL (XEXP (rtl, 1)),
13128 VAR_INIT_STATUS_INITIALIZED);
13129 else
13131 mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode,
13132 VAR_INIT_STATUS_INITIALIZED);
13133 if (mem_loc_result == 0)
13134 break;
13136 if (CONST_INT_P (XEXP (rtl, 1)))
13137 loc_descr_plus_const (&mem_loc_result, INTVAL (XEXP (rtl, 1)));
13138 else
13140 dw_loc_descr_ref mem_loc_result2
13141 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13142 VAR_INIT_STATUS_INITIALIZED);
13143 if (mem_loc_result2 == 0)
13144 break;
13145 add_loc_descr (&mem_loc_result, mem_loc_result2);
13146 add_loc_descr (&mem_loc_result,
13147 new_loc_descr (DW_OP_plus, 0, 0));
13150 break;
13152 /* If a pseudo-reg is optimized away, it is possible for it to
13153 be replaced with a MEM containing a multiply or shift. */
13154 case MINUS:
13155 op = DW_OP_minus;
13156 goto do_binop;
13158 case MULT:
13159 op = DW_OP_mul;
13160 goto do_binop;
13162 case DIV:
13163 op = DW_OP_div;
13164 goto do_binop;
13166 case UMOD:
13167 op = DW_OP_mod;
13168 goto do_binop;
13170 case ASHIFT:
13171 op = DW_OP_shl;
13172 goto do_binop;
13174 case ASHIFTRT:
13175 op = DW_OP_shra;
13176 goto do_binop;
13178 case LSHIFTRT:
13179 op = DW_OP_shr;
13180 goto do_binop;
13182 case AND:
13183 op = DW_OP_and;
13184 goto do_binop;
13186 case IOR:
13187 op = DW_OP_or;
13188 goto do_binop;
13190 case XOR:
13191 op = DW_OP_xor;
13192 goto do_binop;
13194 do_binop:
13195 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13196 VAR_INIT_STATUS_INITIALIZED);
13197 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13198 VAR_INIT_STATUS_INITIALIZED);
13200 if (op0 == 0 || op1 == 0)
13201 break;
13203 mem_loc_result = op0;
13204 add_loc_descr (&mem_loc_result, op1);
13205 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13206 break;
13208 case MOD:
13209 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13210 VAR_INIT_STATUS_INITIALIZED);
13211 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13212 VAR_INIT_STATUS_INITIALIZED);
13214 if (op0 == 0 || op1 == 0)
13215 break;
13217 mem_loc_result = op0;
13218 add_loc_descr (&mem_loc_result, op1);
13219 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
13220 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
13221 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_div, 0, 0));
13222 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
13223 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_minus, 0, 0));
13224 break;
13226 case NOT:
13227 op = DW_OP_not;
13228 goto do_unop;
13230 case ABS:
13231 op = DW_OP_abs;
13232 goto do_unop;
13234 case NEG:
13235 op = DW_OP_neg;
13236 goto do_unop;
13238 do_unop:
13239 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13240 VAR_INIT_STATUS_INITIALIZED);
13242 if (op0 == 0)
13243 break;
13245 mem_loc_result = op0;
13246 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13247 break;
13249 case CONST_INT:
13250 mem_loc_result = int_loc_descriptor (INTVAL (rtl));
13251 break;
13253 case EQ:
13254 op = DW_OP_eq;
13255 goto do_scompare;
13257 case GE:
13258 op = DW_OP_ge;
13259 goto do_scompare;
13261 case GT:
13262 op = DW_OP_gt;
13263 goto do_scompare;
13265 case LE:
13266 op = DW_OP_le;
13267 goto do_scompare;
13269 case LT:
13270 op = DW_OP_lt;
13271 goto do_scompare;
13273 case NE:
13274 op = DW_OP_ne;
13275 goto do_scompare;
13277 do_scompare:
13278 if (GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) > DWARF2_ADDR_SIZE
13279 || GET_MODE_SIZE (GET_MODE (XEXP (rtl, 1))) > DWARF2_ADDR_SIZE)
13280 break;
13281 else
13283 enum machine_mode op_mode = GET_MODE (XEXP (rtl, 0));
13285 if (op_mode == VOIDmode)
13286 op_mode = GET_MODE (XEXP (rtl, 1));
13287 if (op_mode != VOIDmode && GET_MODE_CLASS (op_mode) != MODE_INT)
13288 break;
13290 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13291 VAR_INIT_STATUS_INITIALIZED);
13292 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13293 VAR_INIT_STATUS_INITIALIZED);
13295 if (op0 == 0 || op1 == 0)
13296 break;
13298 if (op_mode != VOIDmode
13299 && GET_MODE_SIZE (op_mode) < DWARF2_ADDR_SIZE)
13301 int shift = DWARF2_ADDR_SIZE - GET_MODE_SIZE (op_mode);
13302 shift *= BITS_PER_UNIT;
13303 /* For eq/ne, if the operands are known to be zero-extended,
13304 there is no need to do the fancy shifting up. */
13305 if (op == DW_OP_eq || op == DW_OP_ne)
13307 dw_loc_descr_ref last0, last1;
13308 for (last0 = op0;
13309 last0->dw_loc_next != NULL;
13310 last0 = last0->dw_loc_next)
13312 for (last1 = op1;
13313 last1->dw_loc_next != NULL;
13314 last1 = last1->dw_loc_next)
13316 /* deref_size zero extends, and for constants we can check
13317 whether they are zero extended or not. */
13318 if (((last0->dw_loc_opc == DW_OP_deref_size
13319 && last0->dw_loc_oprnd1.v.val_int
13320 <= GET_MODE_SIZE (op_mode))
13321 || (CONST_INT_P (XEXP (rtl, 0))
13322 && (unsigned HOST_WIDE_INT) INTVAL (XEXP (rtl, 0))
13323 == (INTVAL (XEXP (rtl, 0))
13324 & GET_MODE_MASK (op_mode))))
13325 && ((last1->dw_loc_opc == DW_OP_deref_size
13326 && last1->dw_loc_oprnd1.v.val_int
13327 <= GET_MODE_SIZE (op_mode))
13328 || (CONST_INT_P (XEXP (rtl, 1))
13329 && (unsigned HOST_WIDE_INT)
13330 INTVAL (XEXP (rtl, 1))
13331 == (INTVAL (XEXP (rtl, 1))
13332 & GET_MODE_MASK (op_mode)))))
13333 goto do_compare;
13335 add_loc_descr (&op0, int_loc_descriptor (shift));
13336 add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
13337 if (CONST_INT_P (XEXP (rtl, 1)))
13338 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1)) << shift);
13339 else
13341 add_loc_descr (&op1, int_loc_descriptor (shift));
13342 add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
13347 do_compare:
13348 mem_loc_result = op0;
13349 add_loc_descr (&mem_loc_result, op1);
13350 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13351 if (STORE_FLAG_VALUE != 1)
13353 add_loc_descr (&mem_loc_result,
13354 int_loc_descriptor (STORE_FLAG_VALUE));
13355 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
13357 break;
13359 case GEU:
13360 op = DW_OP_ge;
13361 goto do_ucompare;
13363 case GTU:
13364 op = DW_OP_gt;
13365 goto do_ucompare;
13367 case LEU:
13368 op = DW_OP_le;
13369 goto do_ucompare;
13371 case LTU:
13372 op = DW_OP_lt;
13373 goto do_ucompare;
13375 do_ucompare:
13376 if (GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) > DWARF2_ADDR_SIZE
13377 || GET_MODE_SIZE (GET_MODE (XEXP (rtl, 1))) > DWARF2_ADDR_SIZE)
13378 break;
13379 else
13381 enum machine_mode op_mode = GET_MODE (XEXP (rtl, 0));
13383 if (op_mode == VOIDmode)
13384 op_mode = GET_MODE (XEXP (rtl, 1));
13385 if (op_mode != VOIDmode && GET_MODE_CLASS (op_mode) != MODE_INT)
13386 break;
13388 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13389 VAR_INIT_STATUS_INITIALIZED);
13390 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13391 VAR_INIT_STATUS_INITIALIZED);
13393 if (op0 == 0 || op1 == 0)
13394 break;
13396 if (op_mode != VOIDmode
13397 && GET_MODE_SIZE (op_mode) < DWARF2_ADDR_SIZE)
13399 HOST_WIDE_INT mask = GET_MODE_MASK (op_mode);
13400 dw_loc_descr_ref last0, last1;
13401 for (last0 = op0;
13402 last0->dw_loc_next != NULL;
13403 last0 = last0->dw_loc_next)
13405 for (last1 = op1;
13406 last1->dw_loc_next != NULL;
13407 last1 = last1->dw_loc_next)
13409 if (CONST_INT_P (XEXP (rtl, 0)))
13410 op0 = int_loc_descriptor (INTVAL (XEXP (rtl, 0)) & mask);
13411 /* deref_size zero extends, so no need to mask it again. */
13412 else if (last0->dw_loc_opc != DW_OP_deref_size
13413 || last0->dw_loc_oprnd1.v.val_int
13414 > GET_MODE_SIZE (op_mode))
13416 add_loc_descr (&op0, int_loc_descriptor (mask));
13417 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
13419 if (CONST_INT_P (XEXP (rtl, 1)))
13420 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1)) & mask);
13421 /* deref_size zero extends, so no need to mask it again. */
13422 else if (last1->dw_loc_opc != DW_OP_deref_size
13423 || last1->dw_loc_oprnd1.v.val_int
13424 > GET_MODE_SIZE (op_mode))
13426 add_loc_descr (&op1, int_loc_descriptor (mask));
13427 add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
13430 else
13432 HOST_WIDE_INT bias = 1;
13433 bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
13434 add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
13435 if (CONST_INT_P (XEXP (rtl, 1)))
13436 op1 = int_loc_descriptor ((unsigned HOST_WIDE_INT) bias
13437 + INTVAL (XEXP (rtl, 1)));
13438 else
13439 add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst,
13440 bias, 0));
13443 goto do_compare;
13445 case SMIN:
13446 case SMAX:
13447 case UMIN:
13448 case UMAX:
13449 if (GET_MODE_CLASS (GET_MODE (XEXP (rtl, 0))) != MODE_INT
13450 || GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) > DWARF2_ADDR_SIZE
13451 || GET_MODE (XEXP (rtl, 0)) != GET_MODE (XEXP (rtl, 1)))
13452 break;
13454 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13455 VAR_INIT_STATUS_INITIALIZED);
13456 op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13457 VAR_INIT_STATUS_INITIALIZED);
13459 if (op0 == 0 || op1 == 0)
13460 break;
13462 add_loc_descr (&op0, new_loc_descr (DW_OP_dup, 0, 0));
13463 add_loc_descr (&op1, new_loc_descr (DW_OP_swap, 0, 0));
13464 add_loc_descr (&op1, new_loc_descr (DW_OP_over, 0, 0));
13465 if (GET_CODE (rtl) == UMIN || GET_CODE (rtl) == UMAX)
13467 if (GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) < DWARF2_ADDR_SIZE)
13469 HOST_WIDE_INT mask = GET_MODE_MASK (GET_MODE (XEXP (rtl, 0)));
13470 add_loc_descr (&op0, int_loc_descriptor (mask));
13471 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
13472 add_loc_descr (&op1, int_loc_descriptor (mask));
13473 add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
13475 else
13477 HOST_WIDE_INT bias = 1;
13478 bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
13479 add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
13480 add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst, bias, 0));
13483 else if (GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) < DWARF2_ADDR_SIZE)
13485 int shift = DWARF2_ADDR_SIZE
13486 - GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0)));
13487 shift *= BITS_PER_UNIT;
13488 add_loc_descr (&op0, int_loc_descriptor (shift));
13489 add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
13490 add_loc_descr (&op1, int_loc_descriptor (shift));
13491 add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
13494 if (GET_CODE (rtl) == SMIN || GET_CODE (rtl) == UMIN)
13495 op = DW_OP_lt;
13496 else
13497 op = DW_OP_gt;
13498 mem_loc_result = op0;
13499 add_loc_descr (&mem_loc_result, op1);
13500 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13502 dw_loc_descr_ref bra_node, drop_node;
13504 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
13505 add_loc_descr (&mem_loc_result, bra_node);
13506 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_swap, 0, 0));
13507 drop_node = new_loc_descr (DW_OP_drop, 0, 0);
13508 add_loc_descr (&mem_loc_result, drop_node);
13509 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
13510 bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
13512 break;
13514 case ZERO_EXTRACT:
13515 case SIGN_EXTRACT:
13516 if (CONST_INT_P (XEXP (rtl, 1))
13517 && CONST_INT_P (XEXP (rtl, 2))
13518 && ((unsigned) INTVAL (XEXP (rtl, 1))
13519 + (unsigned) INTVAL (XEXP (rtl, 2))
13520 <= GET_MODE_BITSIZE (GET_MODE (rtl)))
13521 && GET_MODE_BITSIZE (GET_MODE (rtl)) <= DWARF2_ADDR_SIZE
13522 && GET_MODE_BITSIZE (GET_MODE (XEXP (rtl, 0))) <= DWARF2_ADDR_SIZE)
13524 int shift, size;
13525 op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13526 VAR_INIT_STATUS_INITIALIZED);
13527 if (op0 == 0)
13528 break;
13529 if (GET_CODE (rtl) == SIGN_EXTRACT)
13530 op = DW_OP_shra;
13531 else
13532 op = DW_OP_shr;
13533 mem_loc_result = op0;
13534 size = INTVAL (XEXP (rtl, 1));
13535 shift = INTVAL (XEXP (rtl, 2));
13536 if (BITS_BIG_ENDIAN)
13537 shift = GET_MODE_BITSIZE (GET_MODE (XEXP (rtl, 0)))
13538 - shift - size;
13539 if (shift + size != (int) DWARF2_ADDR_SIZE)
13541 add_loc_descr (&mem_loc_result,
13542 int_loc_descriptor (DWARF2_ADDR_SIZE
13543 - shift - size));
13544 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
13546 if (size != (int) DWARF2_ADDR_SIZE)
13548 add_loc_descr (&mem_loc_result,
13549 int_loc_descriptor (DWARF2_ADDR_SIZE - size));
13550 add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13553 break;
13555 case COMPARE:
13556 case IF_THEN_ELSE:
13557 case ROTATE:
13558 case ROTATERT:
13559 case TRUNCATE:
13560 /* In theory, we could implement the above. */
13561 /* DWARF cannot represent the unsigned compare operations
13562 natively. */
13563 case SS_MULT:
13564 case US_MULT:
13565 case SS_DIV:
13566 case US_DIV:
13567 case SS_PLUS:
13568 case US_PLUS:
13569 case SS_MINUS:
13570 case US_MINUS:
13571 case SS_NEG:
13572 case US_NEG:
13573 case SS_ABS:
13574 case SS_ASHIFT:
13575 case US_ASHIFT:
13576 case SS_TRUNCATE:
13577 case US_TRUNCATE:
13578 case UDIV:
13579 case UNORDERED:
13580 case ORDERED:
13581 case UNEQ:
13582 case UNGE:
13583 case UNGT:
13584 case UNLE:
13585 case UNLT:
13586 case LTGT:
13587 case FLOAT_EXTEND:
13588 case FLOAT_TRUNCATE:
13589 case FLOAT:
13590 case UNSIGNED_FLOAT:
13591 case FIX:
13592 case UNSIGNED_FIX:
13593 case FRACT_CONVERT:
13594 case UNSIGNED_FRACT_CONVERT:
13595 case SAT_FRACT:
13596 case UNSIGNED_SAT_FRACT:
13597 case SQRT:
13598 case BSWAP:
13599 case FFS:
13600 case CLZ:
13601 case CTZ:
13602 case POPCOUNT:
13603 case PARITY:
13604 case ASM_OPERANDS:
13605 case VEC_MERGE:
13606 case VEC_SELECT:
13607 case VEC_CONCAT:
13608 case VEC_DUPLICATE:
13609 case UNSPEC:
13610 case HIGH:
13611 /* If delegitimize_address couldn't do anything with the UNSPEC, we
13612 can't express it in the debug info. This can happen e.g. with some
13613 TLS UNSPECs. */
13614 break;
13616 case CONST_STRING:
13617 resolve_one_addr (&rtl, NULL);
13618 goto symref;
13620 default:
13621 #ifdef ENABLE_CHECKING
13622 print_rtl (stderr, rtl);
13623 gcc_unreachable ();
13624 #else
13625 break;
13626 #endif
13629 if (mem_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
13630 add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13632 return mem_loc_result;
13635 /* Return a descriptor that describes the concatenation of two locations.
13636 This is typically a complex variable. */
13638 static dw_loc_descr_ref
13639 concat_loc_descriptor (rtx x0, rtx x1, enum var_init_status initialized)
13641 dw_loc_descr_ref cc_loc_result = NULL;
13642 dw_loc_descr_ref x0_ref
13643 = loc_descriptor (x0, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
13644 dw_loc_descr_ref x1_ref
13645 = loc_descriptor (x1, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
13647 if (x0_ref == 0 || x1_ref == 0)
13648 return 0;
13650 cc_loc_result = x0_ref;
13651 add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x0)));
13653 add_loc_descr (&cc_loc_result, x1_ref);
13654 add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x1)));
13656 if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
13657 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13659 return cc_loc_result;
13662 /* Return a descriptor that describes the concatenation of N
13663 locations. */
13665 static dw_loc_descr_ref
13666 concatn_loc_descriptor (rtx concatn, enum var_init_status initialized)
13668 unsigned int i;
13669 dw_loc_descr_ref cc_loc_result = NULL;
13670 unsigned int n = XVECLEN (concatn, 0);
13672 for (i = 0; i < n; ++i)
13674 dw_loc_descr_ref ref;
13675 rtx x = XVECEXP (concatn, 0, i);
13677 ref = loc_descriptor (x, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
13678 if (ref == NULL)
13679 return NULL;
13681 add_loc_descr (&cc_loc_result, ref);
13682 add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x)));
13685 if (cc_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
13686 add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13688 return cc_loc_result;
13691 /* Output a proper Dwarf location descriptor for a variable or parameter
13692 which is either allocated in a register or in a memory location. For a
13693 register, we just generate an OP_REG and the register number. For a
13694 memory location we provide a Dwarf postfix expression describing how to
13695 generate the (dynamic) address of the object onto the address stack.
13697 MODE is mode of the decl if this loc_descriptor is going to be used in
13698 .debug_loc section where DW_OP_stack_value and DW_OP_implicit_value are
13699 allowed, VOIDmode otherwise.
13701 If we don't know how to describe it, return 0. */
13703 static dw_loc_descr_ref
13704 loc_descriptor (rtx rtl, enum machine_mode mode,
13705 enum var_init_status initialized)
13707 dw_loc_descr_ref loc_result = NULL;
13709 switch (GET_CODE (rtl))
13711 case SUBREG:
13712 /* The case of a subreg may arise when we have a local (register)
13713 variable or a formal (register) parameter which doesn't quite fill
13714 up an entire register. For now, just assume that it is
13715 legitimate to make the Dwarf info refer to the whole register which
13716 contains the given subreg. */
13717 loc_result = loc_descriptor (SUBREG_REG (rtl), mode, initialized);
13718 break;
13720 case REG:
13721 loc_result = reg_loc_descriptor (rtl, initialized);
13722 break;
13724 case SIGN_EXTEND:
13725 case ZERO_EXTEND:
13726 loc_result = loc_descriptor (XEXP (rtl, 0), mode, initialized);
13727 break;
13729 case MEM:
13730 loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl),
13731 initialized);
13732 if (loc_result == NULL)
13733 loc_result = tls_mem_loc_descriptor (rtl);
13734 if (loc_result == NULL)
13736 rtx new_rtl = avoid_constant_pool_reference (rtl);
13737 if (new_rtl != rtl)
13738 loc_result = loc_descriptor (new_rtl, mode, initialized);
13740 break;
13742 case CONCAT:
13743 loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1),
13744 initialized);
13745 break;
13747 case CONCATN:
13748 loc_result = concatn_loc_descriptor (rtl, initialized);
13749 break;
13751 case VAR_LOCATION:
13752 /* Single part. */
13753 if (GET_CODE (PAT_VAR_LOCATION_LOC (rtl)) != PARALLEL)
13755 rtx loc = PAT_VAR_LOCATION_LOC (rtl);
13756 if (GET_CODE (loc) == EXPR_LIST)
13757 loc = XEXP (loc, 0);
13758 loc_result = loc_descriptor (loc, mode, initialized);
13759 break;
13762 rtl = XEXP (rtl, 1);
13763 /* FALLTHRU */
13765 case PARALLEL:
13767 rtvec par_elems = XVEC (rtl, 0);
13768 int num_elem = GET_NUM_ELEM (par_elems);
13769 enum machine_mode mode;
13770 int i;
13772 /* Create the first one, so we have something to add to. */
13773 loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0),
13774 VOIDmode, initialized);
13775 if (loc_result == NULL)
13776 return NULL;
13777 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
13778 add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
13779 for (i = 1; i < num_elem; i++)
13781 dw_loc_descr_ref temp;
13783 temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0),
13784 VOIDmode, initialized);
13785 if (temp == NULL)
13786 return NULL;
13787 add_loc_descr (&loc_result, temp);
13788 mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
13789 add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
13792 break;
13794 case CONST_INT:
13795 if (mode != VOIDmode && mode != BLKmode)
13796 loc_result = address_of_int_loc_descriptor (GET_MODE_SIZE (mode),
13797 INTVAL (rtl));
13798 break;
13800 case CONST_DOUBLE:
13801 if (mode == VOIDmode)
13802 mode = GET_MODE (rtl);
13804 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
13806 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
13808 /* Note that a CONST_DOUBLE rtx could represent either an integer
13809 or a floating-point constant. A CONST_DOUBLE is used whenever
13810 the constant requires more than one word in order to be
13811 adequately represented. We output CONST_DOUBLEs as blocks. */
13812 loc_result = new_loc_descr (DW_OP_implicit_value,
13813 GET_MODE_SIZE (mode), 0);
13814 if (SCALAR_FLOAT_MODE_P (mode))
13816 unsigned int length = GET_MODE_SIZE (mode);
13817 unsigned char *array = GGC_NEWVEC (unsigned char, length);
13819 insert_float (rtl, array);
13820 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
13821 loc_result->dw_loc_oprnd2.v.val_vec.length = length / 4;
13822 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = 4;
13823 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
13825 else
13827 loc_result->dw_loc_oprnd2.val_class = dw_val_class_const_double;
13828 loc_result->dw_loc_oprnd2.v.val_double.high
13829 = CONST_DOUBLE_HIGH (rtl);
13830 loc_result->dw_loc_oprnd2.v.val_double.low
13831 = CONST_DOUBLE_LOW (rtl);
13834 break;
13836 case CONST_VECTOR:
13837 if (mode == VOIDmode)
13838 mode = GET_MODE (rtl);
13840 if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
13842 unsigned int elt_size = GET_MODE_UNIT_SIZE (GET_MODE (rtl));
13843 unsigned int length = CONST_VECTOR_NUNITS (rtl);
13844 unsigned char *array = GGC_NEWVEC (unsigned char, length * elt_size);
13845 unsigned int i;
13846 unsigned char *p;
13848 gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
13849 switch (GET_MODE_CLASS (mode))
13851 case MODE_VECTOR_INT:
13852 for (i = 0, p = array; i < length; i++, p += elt_size)
13854 rtx elt = CONST_VECTOR_ELT (rtl, i);
13855 HOST_WIDE_INT lo, hi;
13857 switch (GET_CODE (elt))
13859 case CONST_INT:
13860 lo = INTVAL (elt);
13861 hi = -(lo < 0);
13862 break;
13864 case CONST_DOUBLE:
13865 lo = CONST_DOUBLE_LOW (elt);
13866 hi = CONST_DOUBLE_HIGH (elt);
13867 break;
13869 default:
13870 gcc_unreachable ();
13873 if (elt_size <= sizeof (HOST_WIDE_INT))
13874 insert_int (lo, elt_size, p);
13875 else
13877 unsigned char *p0 = p;
13878 unsigned char *p1 = p + sizeof (HOST_WIDE_INT);
13880 gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
13881 if (WORDS_BIG_ENDIAN)
13883 p0 = p1;
13884 p1 = p;
13886 insert_int (lo, sizeof (HOST_WIDE_INT), p0);
13887 insert_int (hi, sizeof (HOST_WIDE_INT), p1);
13890 break;
13892 case MODE_VECTOR_FLOAT:
13893 for (i = 0, p = array; i < length; i++, p += elt_size)
13895 rtx elt = CONST_VECTOR_ELT (rtl, i);
13896 insert_float (elt, p);
13898 break;
13900 default:
13901 gcc_unreachable ();
13904 loc_result = new_loc_descr (DW_OP_implicit_value,
13905 length * elt_size, 0);
13906 loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
13907 loc_result->dw_loc_oprnd2.v.val_vec.length = length;
13908 loc_result->dw_loc_oprnd2.v.val_vec.elt_size = elt_size;
13909 loc_result->dw_loc_oprnd2.v.val_vec.array = array;
13911 break;
13913 case CONST:
13914 if (mode == VOIDmode
13915 || GET_CODE (XEXP (rtl, 0)) == CONST_INT
13916 || GET_CODE (XEXP (rtl, 0)) == CONST_DOUBLE
13917 || GET_CODE (XEXP (rtl, 0)) == CONST_VECTOR)
13919 loc_result = loc_descriptor (XEXP (rtl, 0), mode, initialized);
13920 break;
13922 /* FALLTHROUGH */
13923 case SYMBOL_REF:
13924 if (!const_ok_for_output (rtl))
13925 break;
13926 case LABEL_REF:
13927 if (mode != VOIDmode && GET_MODE_SIZE (mode) == DWARF2_ADDR_SIZE
13928 && (dwarf_version >= 4 || !dwarf_strict))
13930 loc_result = new_loc_descr (DW_OP_addr, 0, 0);
13931 loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
13932 loc_result->dw_loc_oprnd1.v.val_addr = rtl;
13933 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
13934 VEC_safe_push (rtx, gc, used_rtx_array, rtl);
13936 break;
13938 default:
13939 if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE (rtl) == mode
13940 && GET_MODE_SIZE (GET_MODE (rtl)) <= DWARF2_ADDR_SIZE
13941 && (dwarf_version >= 4 || !dwarf_strict))
13943 /* Value expression. */
13944 loc_result = mem_loc_descriptor (rtl, VOIDmode, initialized);
13945 if (loc_result)
13946 add_loc_descr (&loc_result,
13947 new_loc_descr (DW_OP_stack_value, 0, 0));
13949 break;
13952 return loc_result;
13955 /* We need to figure out what section we should use as the base for the
13956 address ranges where a given location is valid.
13957 1. If this particular DECL has a section associated with it, use that.
13958 2. If this function has a section associated with it, use that.
13959 3. Otherwise, use the text section.
13960 XXX: If you split a variable across multiple sections, we won't notice. */
13962 static const char *
13963 secname_for_decl (const_tree decl)
13965 const char *secname;
13967 if (VAR_OR_FUNCTION_DECL_P (decl) && DECL_SECTION_NAME (decl))
13969 tree sectree = DECL_SECTION_NAME (decl);
13970 secname = TREE_STRING_POINTER (sectree);
13972 else if (current_function_decl && DECL_SECTION_NAME (current_function_decl))
13974 tree sectree = DECL_SECTION_NAME (current_function_decl);
13975 secname = TREE_STRING_POINTER (sectree);
13977 else if (cfun && in_cold_section_p)
13978 secname = crtl->subsections.cold_section_label;
13979 else
13980 secname = text_section_label;
13982 return secname;
13985 /* Return true when DECL_BY_REFERENCE is defined and set for DECL. */
13987 static bool
13988 decl_by_reference_p (tree decl)
13990 return ((TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL
13991 || TREE_CODE (decl) == VAR_DECL)
13992 && DECL_BY_REFERENCE (decl));
13995 /* Helper function for dw_loc_list. Compute proper Dwarf location descriptor
13996 for VARLOC. */
13998 static dw_loc_descr_ref
13999 dw_loc_list_1 (tree loc, rtx varloc, int want_address,
14000 enum var_init_status initialized)
14002 int have_address = 0;
14003 dw_loc_descr_ref descr;
14004 enum machine_mode mode;
14006 if (want_address != 2)
14008 gcc_assert (GET_CODE (varloc) == VAR_LOCATION);
14009 /* Single part. */
14010 if (GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
14012 varloc = PAT_VAR_LOCATION_LOC (varloc);
14013 if (GET_CODE (varloc) == EXPR_LIST)
14014 varloc = XEXP (varloc, 0);
14015 mode = GET_MODE (varloc);
14016 if (MEM_P (varloc))
14018 rtx addr = XEXP (varloc, 0);
14019 descr = mem_loc_descriptor (addr, mode, initialized);
14020 if (descr)
14021 have_address = 1;
14022 else
14024 rtx x = avoid_constant_pool_reference (varloc);
14025 if (x != varloc)
14026 descr = mem_loc_descriptor (x, mode, initialized);
14029 else
14030 descr = mem_loc_descriptor (varloc, mode, initialized);
14032 else
14033 return 0;
14035 else
14037 descr = loc_descriptor (varloc, DECL_MODE (loc), initialized);
14038 have_address = 1;
14041 if (!descr)
14042 return 0;
14044 if (want_address == 2 && !have_address
14045 && (dwarf_version >= 4 || !dwarf_strict))
14047 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
14049 expansion_failed (loc, NULL_RTX,
14050 "DWARF address size mismatch");
14051 return 0;
14053 add_loc_descr (&descr, new_loc_descr (DW_OP_stack_value, 0, 0));
14054 have_address = 1;
14056 /* Show if we can't fill the request for an address. */
14057 if (want_address && !have_address)
14059 expansion_failed (loc, NULL_RTX,
14060 "Want address and only have value");
14061 return 0;
14064 /* If we've got an address and don't want one, dereference. */
14065 if (!want_address && have_address)
14067 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
14068 enum dwarf_location_atom op;
14070 if (size > DWARF2_ADDR_SIZE || size == -1)
14072 expansion_failed (loc, NULL_RTX,
14073 "DWARF address size mismatch");
14074 return 0;
14076 else if (size == DWARF2_ADDR_SIZE)
14077 op = DW_OP_deref;
14078 else
14079 op = DW_OP_deref_size;
14081 add_loc_descr (&descr, new_loc_descr (op, size, 0));
14084 return descr;
14087 /* Return the dwarf representation of the location list LOC_LIST of
14088 DECL. WANT_ADDRESS has the same meaning as in loc_list_from_tree
14089 function. */
14091 static dw_loc_list_ref
14092 dw_loc_list (var_loc_list *loc_list, tree decl, int want_address)
14094 const char *endname, *secname;
14095 rtx varloc;
14096 enum var_init_status initialized;
14097 struct var_loc_node *node;
14098 dw_loc_descr_ref descr;
14099 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
14100 dw_loc_list_ref list = NULL;
14101 dw_loc_list_ref *listp = &list;
14103 /* Now that we know what section we are using for a base,
14104 actually construct the list of locations.
14105 The first location information is what is passed to the
14106 function that creates the location list, and the remaining
14107 locations just get added on to that list.
14108 Note that we only know the start address for a location
14109 (IE location changes), so to build the range, we use
14110 the range [current location start, next location start].
14111 This means we have to special case the last node, and generate
14112 a range of [last location start, end of function label]. */
14114 secname = secname_for_decl (decl);
14116 for (node = loc_list->first; node->next; node = node->next)
14117 if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
14119 /* The variable has a location between NODE->LABEL and
14120 NODE->NEXT->LABEL. */
14121 initialized = NOTE_VAR_LOCATION_STATUS (node->var_loc_note);
14122 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
14123 descr = dw_loc_list_1 (decl, varloc, want_address, initialized);
14124 if (descr)
14126 *listp = new_loc_list (descr, node->label, node->next->label,
14127 secname);
14128 listp = &(*listp)->dw_loc_next;
14132 /* If the variable has a location at the last label
14133 it keeps its location until the end of function. */
14134 if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
14136 initialized = NOTE_VAR_LOCATION_STATUS (node->var_loc_note);
14137 varloc = NOTE_VAR_LOCATION (node->var_loc_note);
14138 descr = dw_loc_list_1 (decl, varloc, want_address, initialized);
14139 if (descr)
14141 if (!current_function_decl)
14142 endname = text_end_label;
14143 else
14145 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
14146 current_function_funcdef_no);
14147 endname = ggc_strdup (label_id);
14150 *listp = new_loc_list (descr, node->label, endname, secname);
14151 listp = &(*listp)->dw_loc_next;
14155 /* Try to avoid the overhead of a location list emitting a location
14156 expression instead, but only if we didn't have more than one
14157 location entry in the first place. If some entries were not
14158 representable, we don't want to pretend a single entry that was
14159 applies to the entire scope in which the variable is
14160 available. */
14161 if (list && loc_list->first->next)
14162 gen_llsym (list);
14164 return list;
14167 /* Return if the loc_list has only single element and thus can be represented
14168 as location description. */
14170 static bool
14171 single_element_loc_list_p (dw_loc_list_ref list)
14173 gcc_assert (!list->dw_loc_next || list->ll_symbol);
14174 return !list->ll_symbol;
14177 /* To each location in list LIST add loc descr REF. */
14179 static void
14180 add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
14182 dw_loc_descr_ref copy;
14183 add_loc_descr (&list->expr, ref);
14184 list = list->dw_loc_next;
14185 while (list)
14187 copy = GGC_CNEW (dw_loc_descr_node);
14188 memcpy (copy, ref, sizeof (dw_loc_descr_node));
14189 add_loc_descr (&list->expr, copy);
14190 while (copy->dw_loc_next)
14192 dw_loc_descr_ref new_copy = GGC_CNEW (dw_loc_descr_node);
14193 memcpy (new_copy, copy->dw_loc_next, sizeof (dw_loc_descr_node));
14194 copy->dw_loc_next = new_copy;
14195 copy = new_copy;
14197 list = list->dw_loc_next;
14201 /* Given two lists RET and LIST
14202 produce location list that is result of adding expression in LIST
14203 to expression in RET on each possition in program.
14204 Might be destructive on both RET and LIST.
14206 TODO: We handle only simple cases of RET or LIST having at most one
14207 element. General case would inolve sorting the lists in program order
14208 and merging them that will need some additional work.
14209 Adding that will improve quality of debug info especially for SRA-ed
14210 structures. */
14212 static void
14213 add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list)
14215 if (!list)
14216 return;
14217 if (!*ret)
14219 *ret = list;
14220 return;
14222 if (!list->dw_loc_next)
14224 add_loc_descr_to_each (*ret, list->expr);
14225 return;
14227 if (!(*ret)->dw_loc_next)
14229 add_loc_descr_to_each (list, (*ret)->expr);
14230 *ret = list;
14231 return;
14233 expansion_failed (NULL_TREE, NULL_RTX,
14234 "Don't know how to merge two non-trivial"
14235 " location lists.\n");
14236 *ret = NULL;
14237 return;
14240 /* LOC is constant expression. Try a luck, look it up in constant
14241 pool and return its loc_descr of its address. */
14243 static dw_loc_descr_ref
14244 cst_pool_loc_descr (tree loc)
14246 /* Get an RTL for this, if something has been emitted. */
14247 rtx rtl = lookup_constant_def (loc);
14248 enum machine_mode mode;
14250 if (!rtl || !MEM_P (rtl))
14252 gcc_assert (!rtl);
14253 return 0;
14255 gcc_assert (GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF);
14257 /* TODO: We might get more coverage if we was actually delaying expansion
14258 of all expressions till end of compilation when constant pools are fully
14259 populated. */
14260 if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl, 0))))
14262 expansion_failed (loc, NULL_RTX,
14263 "CST value in contant pool but not marked.");
14264 return 0;
14266 mode = GET_MODE (rtl);
14267 rtl = XEXP (rtl, 0);
14268 return mem_loc_descriptor (rtl, mode, VAR_INIT_STATUS_INITIALIZED);
14271 /* Return dw_loc_list representing address of addr_expr LOC
14272 by looking for innder INDIRECT_REF expression and turing it
14273 into simple arithmetics. */
14275 static dw_loc_list_ref
14276 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc, bool toplev)
14278 tree obj, offset;
14279 HOST_WIDE_INT bitsize, bitpos, bytepos;
14280 enum machine_mode mode;
14281 int volatilep;
14282 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
14283 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
14285 obj = get_inner_reference (TREE_OPERAND (loc, 0),
14286 &bitsize, &bitpos, &offset, &mode,
14287 &unsignedp, &volatilep, false);
14288 STRIP_NOPS (obj);
14289 if (bitpos % BITS_PER_UNIT)
14291 expansion_failed (loc, NULL_RTX, "bitfield access");
14292 return 0;
14294 if (!INDIRECT_REF_P (obj))
14296 expansion_failed (obj,
14297 NULL_RTX, "no indirect ref in inner refrence");
14298 return 0;
14300 if (!offset && !bitpos)
14301 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), toplev ? 2 : 1);
14302 else if (toplev
14303 && int_size_in_bytes (TREE_TYPE (loc)) <= DWARF2_ADDR_SIZE
14304 && (dwarf_version >= 4 || !dwarf_strict))
14306 list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), 0);
14307 if (!list_ret)
14308 return 0;
14309 if (offset)
14311 /* Variable offset. */
14312 list_ret1 = loc_list_from_tree (offset, 0);
14313 if (list_ret1 == 0)
14314 return 0;
14315 add_loc_list (&list_ret, list_ret1);
14316 if (!list_ret)
14317 return 0;
14318 add_loc_descr_to_each (list_ret,
14319 new_loc_descr (DW_OP_plus, 0, 0));
14321 bytepos = bitpos / BITS_PER_UNIT;
14322 if (bytepos > 0)
14323 add_loc_descr_to_each (list_ret,
14324 new_loc_descr (DW_OP_plus_uconst,
14325 bytepos, 0));
14326 else if (bytepos < 0)
14327 loc_list_plus_const (list_ret, bytepos);
14328 add_loc_descr_to_each (list_ret,
14329 new_loc_descr (DW_OP_stack_value, 0, 0));
14331 return list_ret;
14335 /* Generate Dwarf location list representing LOC.
14336 If WANT_ADDRESS is false, expression computing LOC will be computed
14337 If WANT_ADDRESS is 1, expression computing address of LOC will be returned
14338 if WANT_ADDRESS is 2, expression computing address useable in location
14339 will be returned (i.e. DW_OP_reg can be used
14340 to refer to register values). */
14342 static dw_loc_list_ref
14343 loc_list_from_tree (tree loc, int want_address)
14345 dw_loc_descr_ref ret = NULL, ret1 = NULL;
14346 dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
14347 int have_address = 0;
14348 enum dwarf_location_atom op;
14350 /* ??? Most of the time we do not take proper care for sign/zero
14351 extending the values properly. Hopefully this won't be a real
14352 problem... */
14354 switch (TREE_CODE (loc))
14356 case ERROR_MARK:
14357 expansion_failed (loc, NULL_RTX, "ERROR_MARK");
14358 return 0;
14360 case PLACEHOLDER_EXPR:
14361 /* This case involves extracting fields from an object to determine the
14362 position of other fields. We don't try to encode this here. The
14363 only user of this is Ada, which encodes the needed information using
14364 the names of types. */
14365 expansion_failed (loc, NULL_RTX, "PLACEHOLDER_EXPR");
14366 return 0;
14368 case CALL_EXPR:
14369 expansion_failed (loc, NULL_RTX, "CALL_EXPR");
14370 /* There are no opcodes for these operations. */
14371 return 0;
14373 case PREINCREMENT_EXPR:
14374 case PREDECREMENT_EXPR:
14375 case POSTINCREMENT_EXPR:
14376 case POSTDECREMENT_EXPR:
14377 expansion_failed (loc, NULL_RTX, "PRE/POST INDCREMENT/DECREMENT");
14378 /* There are no opcodes for these operations. */
14379 return 0;
14381 case ADDR_EXPR:
14382 /* If we already want an address, see if there is INDIRECT_REF inside
14383 e.g. for &this->field. */
14384 if (want_address)
14386 list_ret = loc_list_for_address_of_addr_expr_of_indirect_ref
14387 (loc, want_address == 2);
14388 if (list_ret)
14389 have_address = 1;
14390 else if (decl_address_ip_invariant_p (TREE_OPERAND (loc, 0))
14391 && (ret = cst_pool_loc_descr (loc)))
14392 have_address = 1;
14394 /* Otherwise, process the argument and look for the address. */
14395 if (!list_ret && !ret)
14396 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 1);
14397 else
14399 if (want_address)
14400 expansion_failed (loc, NULL_RTX, "need address of ADDR_EXPR");
14401 return NULL;
14403 break;
14405 case VAR_DECL:
14406 if (DECL_THREAD_LOCAL_P (loc))
14408 rtx rtl;
14409 enum dwarf_location_atom first_op;
14410 enum dwarf_location_atom second_op;
14411 bool dtprel = false;
14413 if (targetm.have_tls)
14415 /* If this is not defined, we have no way to emit the
14416 data. */
14417 if (!targetm.asm_out.output_dwarf_dtprel)
14418 return 0;
14420 /* The way DW_OP_GNU_push_tls_address is specified, we
14421 can only look up addresses of objects in the current
14422 module. */
14423 if (DECL_EXTERNAL (loc) && !targetm.binds_local_p (loc))
14424 return 0;
14425 first_op = DW_OP_addr;
14426 dtprel = true;
14427 second_op = DW_OP_GNU_push_tls_address;
14429 else
14431 if (!targetm.emutls.debug_form_tls_address
14432 || !(dwarf_version >= 3 || !dwarf_strict))
14433 return 0;
14434 loc = emutls_decl (loc);
14435 first_op = DW_OP_addr;
14436 second_op = DW_OP_form_tls_address;
14439 rtl = rtl_for_decl_location (loc);
14440 if (rtl == NULL_RTX)
14441 return 0;
14443 if (!MEM_P (rtl))
14444 return 0;
14445 rtl = XEXP (rtl, 0);
14446 if (! CONSTANT_P (rtl))
14447 return 0;
14449 ret = new_loc_descr (first_op, 0, 0);
14450 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
14451 ret->dw_loc_oprnd1.v.val_addr = rtl;
14452 ret->dtprel = dtprel;
14454 ret1 = new_loc_descr (second_op, 0, 0);
14455 add_loc_descr (&ret, ret1);
14457 have_address = 1;
14458 break;
14460 /* FALLTHRU */
14462 case PARM_DECL:
14463 if (DECL_HAS_VALUE_EXPR_P (loc))
14464 return loc_list_from_tree (DECL_VALUE_EXPR (loc),
14465 want_address);
14466 /* FALLTHRU */
14468 case RESULT_DECL:
14469 case FUNCTION_DECL:
14471 rtx rtl;
14472 var_loc_list *loc_list = lookup_decl_loc (loc);
14474 if (loc_list && loc_list->first)
14476 list_ret = dw_loc_list (loc_list, loc, want_address);
14477 have_address = want_address != 0;
14478 break;
14480 rtl = rtl_for_decl_location (loc);
14481 if (rtl == NULL_RTX)
14483 expansion_failed (loc, NULL_RTX, "DECL has no RTL");
14484 return 0;
14486 else if (CONST_INT_P (rtl))
14488 HOST_WIDE_INT val = INTVAL (rtl);
14489 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
14490 val &= GET_MODE_MASK (DECL_MODE (loc));
14491 ret = int_loc_descriptor (val);
14493 else if (GET_CODE (rtl) == CONST_STRING)
14495 expansion_failed (loc, NULL_RTX, "CONST_STRING");
14496 return 0;
14498 else if (CONSTANT_P (rtl) && const_ok_for_output (rtl))
14500 ret = new_loc_descr (DW_OP_addr, 0, 0);
14501 ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
14502 ret->dw_loc_oprnd1.v.val_addr = rtl;
14504 else
14506 enum machine_mode mode;
14508 /* Certain constructs can only be represented at top-level. */
14509 if (want_address == 2)
14511 ret = loc_descriptor (rtl, VOIDmode,
14512 VAR_INIT_STATUS_INITIALIZED);
14513 have_address = 1;
14515 else
14517 mode = GET_MODE (rtl);
14518 if (MEM_P (rtl))
14520 rtl = XEXP (rtl, 0);
14521 have_address = 1;
14523 ret = mem_loc_descriptor (rtl, mode, VAR_INIT_STATUS_INITIALIZED);
14525 if (!ret)
14526 expansion_failed (loc, rtl,
14527 "failed to produce loc descriptor for rtl");
14530 break;
14532 case INDIRECT_REF:
14533 case ALIGN_INDIRECT_REF:
14534 case MISALIGNED_INDIRECT_REF:
14535 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
14536 have_address = 1;
14537 break;
14539 case COMPOUND_EXPR:
14540 return loc_list_from_tree (TREE_OPERAND (loc, 1), want_address);
14542 CASE_CONVERT:
14543 case VIEW_CONVERT_EXPR:
14544 case SAVE_EXPR:
14545 case MODIFY_EXPR:
14546 return loc_list_from_tree (TREE_OPERAND (loc, 0), want_address);
14548 case COMPONENT_REF:
14549 case BIT_FIELD_REF:
14550 case ARRAY_REF:
14551 case ARRAY_RANGE_REF:
14552 case REALPART_EXPR:
14553 case IMAGPART_EXPR:
14555 tree obj, offset;
14556 HOST_WIDE_INT bitsize, bitpos, bytepos;
14557 enum machine_mode mode;
14558 int volatilep;
14559 int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
14561 obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
14562 &unsignedp, &volatilep, false);
14564 gcc_assert (obj != loc);
14566 list_ret = loc_list_from_tree (obj,
14567 want_address == 2
14568 && !bitpos && !offset ? 2 : 1);
14569 /* TODO: We can extract value of the small expression via shifting even
14570 for nonzero bitpos. */
14571 if (list_ret == 0)
14572 return 0;
14573 if (bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
14575 expansion_failed (loc, NULL_RTX,
14576 "bitfield access");
14577 return 0;
14580 if (offset != NULL_TREE)
14582 /* Variable offset. */
14583 list_ret1 = loc_list_from_tree (offset, 0);
14584 if (list_ret1 == 0)
14585 return 0;
14586 add_loc_list (&list_ret, list_ret1);
14587 if (!list_ret)
14588 return 0;
14589 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus, 0, 0));
14592 bytepos = bitpos / BITS_PER_UNIT;
14593 if (bytepos > 0)
14594 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
14595 else if (bytepos < 0)
14596 loc_list_plus_const (list_ret, bytepos);
14598 have_address = 1;
14599 break;
14602 case INTEGER_CST:
14603 if ((want_address || !host_integerp (loc, 0))
14604 && (ret = cst_pool_loc_descr (loc)))
14605 have_address = 1;
14606 else if (want_address == 2
14607 && host_integerp (loc, 0)
14608 && (ret = address_of_int_loc_descriptor
14609 (int_size_in_bytes (TREE_TYPE (loc)),
14610 tree_low_cst (loc, 0))))
14611 have_address = 1;
14612 else if (host_integerp (loc, 0))
14613 ret = int_loc_descriptor (tree_low_cst (loc, 0));
14614 else
14616 expansion_failed (loc, NULL_RTX,
14617 "Integer operand is not host integer");
14618 return 0;
14620 break;
14622 case CONSTRUCTOR:
14623 case REAL_CST:
14624 case STRING_CST:
14625 case COMPLEX_CST:
14626 if ((ret = cst_pool_loc_descr (loc)))
14627 have_address = 1;
14628 else
14629 /* We can construct small constants here using int_loc_descriptor. */
14630 expansion_failed (loc, NULL_RTX,
14631 "constructor or constant not in constant pool");
14632 break;
14634 case TRUTH_AND_EXPR:
14635 case TRUTH_ANDIF_EXPR:
14636 case BIT_AND_EXPR:
14637 op = DW_OP_and;
14638 goto do_binop;
14640 case TRUTH_XOR_EXPR:
14641 case BIT_XOR_EXPR:
14642 op = DW_OP_xor;
14643 goto do_binop;
14645 case TRUTH_OR_EXPR:
14646 case TRUTH_ORIF_EXPR:
14647 case BIT_IOR_EXPR:
14648 op = DW_OP_or;
14649 goto do_binop;
14651 case FLOOR_DIV_EXPR:
14652 case CEIL_DIV_EXPR:
14653 case ROUND_DIV_EXPR:
14654 case TRUNC_DIV_EXPR:
14655 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
14656 return 0;
14657 op = DW_OP_div;
14658 goto do_binop;
14660 case MINUS_EXPR:
14661 op = DW_OP_minus;
14662 goto do_binop;
14664 case FLOOR_MOD_EXPR:
14665 case CEIL_MOD_EXPR:
14666 case ROUND_MOD_EXPR:
14667 case TRUNC_MOD_EXPR:
14668 if (TYPE_UNSIGNED (TREE_TYPE (loc)))
14670 op = DW_OP_mod;
14671 goto do_binop;
14673 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
14674 list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0);
14675 if (list_ret == 0 || list_ret1 == 0)
14676 return 0;
14678 add_loc_list (&list_ret, list_ret1);
14679 if (list_ret == 0)
14680 return 0;
14681 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
14682 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
14683 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_div, 0, 0));
14684 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_mul, 0, 0));
14685 add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_minus, 0, 0));
14686 break;
14688 case MULT_EXPR:
14689 op = DW_OP_mul;
14690 goto do_binop;
14692 case LSHIFT_EXPR:
14693 op = DW_OP_shl;
14694 goto do_binop;
14696 case RSHIFT_EXPR:
14697 op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
14698 goto do_binop;
14700 case POINTER_PLUS_EXPR:
14701 case PLUS_EXPR:
14702 if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
14703 && host_integerp (TREE_OPERAND (loc, 1), 0))
14705 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
14706 if (list_ret == 0)
14707 return 0;
14709 loc_list_plus_const (list_ret, tree_low_cst (TREE_OPERAND (loc, 1), 0));
14710 break;
14713 op = DW_OP_plus;
14714 goto do_binop;
14716 case LE_EXPR:
14717 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
14718 return 0;
14720 op = DW_OP_le;
14721 goto do_binop;
14723 case GE_EXPR:
14724 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
14725 return 0;
14727 op = DW_OP_ge;
14728 goto do_binop;
14730 case LT_EXPR:
14731 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
14732 return 0;
14734 op = DW_OP_lt;
14735 goto do_binop;
14737 case GT_EXPR:
14738 if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
14739 return 0;
14741 op = DW_OP_gt;
14742 goto do_binop;
14744 case EQ_EXPR:
14745 op = DW_OP_eq;
14746 goto do_binop;
14748 case NE_EXPR:
14749 op = DW_OP_ne;
14750 goto do_binop;
14752 do_binop:
14753 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
14754 list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0);
14755 if (list_ret == 0 || list_ret1 == 0)
14756 return 0;
14758 add_loc_list (&list_ret, list_ret1);
14759 if (list_ret == 0)
14760 return 0;
14761 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
14762 break;
14764 case TRUTH_NOT_EXPR:
14765 case BIT_NOT_EXPR:
14766 op = DW_OP_not;
14767 goto do_unop;
14769 case ABS_EXPR:
14770 op = DW_OP_abs;
14771 goto do_unop;
14773 case NEGATE_EXPR:
14774 op = DW_OP_neg;
14775 goto do_unop;
14777 do_unop:
14778 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
14779 if (list_ret == 0)
14780 return 0;
14782 add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
14783 break;
14785 case MIN_EXPR:
14786 case MAX_EXPR:
14788 const enum tree_code code =
14789 TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
14791 loc = build3 (COND_EXPR, TREE_TYPE (loc),
14792 build2 (code, integer_type_node,
14793 TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
14794 TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
14797 /* ... fall through ... */
14799 case COND_EXPR:
14801 dw_loc_descr_ref lhs
14802 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
14803 dw_loc_list_ref rhs
14804 = loc_list_from_tree (TREE_OPERAND (loc, 2), 0);
14805 dw_loc_descr_ref bra_node, jump_node, tmp;
14807 list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
14808 if (list_ret == 0 || lhs == 0 || rhs == 0)
14809 return 0;
14811 bra_node = new_loc_descr (DW_OP_bra, 0, 0);
14812 add_loc_descr_to_each (list_ret, bra_node);
14814 add_loc_list (&list_ret, rhs);
14815 jump_node = new_loc_descr (DW_OP_skip, 0, 0);
14816 add_loc_descr_to_each (list_ret, jump_node);
14818 add_loc_descr_to_each (list_ret, lhs);
14819 bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14820 bra_node->dw_loc_oprnd1.v.val_loc = lhs;
14822 /* ??? Need a node to point the skip at. Use a nop. */
14823 tmp = new_loc_descr (DW_OP_nop, 0, 0);
14824 add_loc_descr_to_each (list_ret, tmp);
14825 jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14826 jump_node->dw_loc_oprnd1.v.val_loc = tmp;
14828 break;
14830 case FIX_TRUNC_EXPR:
14831 return 0;
14833 default:
14834 /* Leave front-end specific codes as simply unknown. This comes
14835 up, for instance, with the C STMT_EXPR. */
14836 if ((unsigned int) TREE_CODE (loc)
14837 >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
14839 expansion_failed (loc, NULL_RTX,
14840 "language specific tree node");
14841 return 0;
14844 #ifdef ENABLE_CHECKING
14845 /* Otherwise this is a generic code; we should just lists all of
14846 these explicitly. We forgot one. */
14847 gcc_unreachable ();
14848 #else
14849 /* In a release build, we want to degrade gracefully: better to
14850 generate incomplete debugging information than to crash. */
14851 return NULL;
14852 #endif
14855 if (!ret && !list_ret)
14856 return 0;
14858 if (want_address == 2 && !have_address
14859 && (dwarf_version >= 4 || !dwarf_strict))
14861 if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
14863 expansion_failed (loc, NULL_RTX,
14864 "DWARF address size mismatch");
14865 return 0;
14867 if (ret)
14868 add_loc_descr (&ret, new_loc_descr (DW_OP_stack_value, 0, 0));
14869 else
14870 add_loc_descr_to_each (list_ret,
14871 new_loc_descr (DW_OP_stack_value, 0, 0));
14872 have_address = 1;
14874 /* Show if we can't fill the request for an address. */
14875 if (want_address && !have_address)
14877 expansion_failed (loc, NULL_RTX,
14878 "Want address and only have value");
14879 return 0;
14882 gcc_assert (!ret || !list_ret);
14884 /* If we've got an address and don't want one, dereference. */
14885 if (!want_address && have_address)
14887 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
14889 if (size > DWARF2_ADDR_SIZE || size == -1)
14891 expansion_failed (loc, NULL_RTX,
14892 "DWARF address size mismatch");
14893 return 0;
14895 else if (size == DWARF2_ADDR_SIZE)
14896 op = DW_OP_deref;
14897 else
14898 op = DW_OP_deref_size;
14900 if (ret)
14901 add_loc_descr (&ret, new_loc_descr (op, size, 0));
14902 else
14903 add_loc_descr_to_each (list_ret, new_loc_descr (op, size, 0));
14905 if (ret)
14906 list_ret = new_loc_list (ret, NULL, NULL, NULL);
14908 return list_ret;
14911 /* Same as above but return only single location expression. */
14912 static dw_loc_descr_ref
14913 loc_descriptor_from_tree (tree loc, int want_address)
14915 dw_loc_list_ref ret = loc_list_from_tree (loc, want_address);
14916 if (!ret)
14917 return NULL;
14918 if (ret->dw_loc_next)
14920 expansion_failed (loc, NULL_RTX,
14921 "Location list where only loc descriptor needed");
14922 return NULL;
14924 return ret->expr;
14927 /* Given a value, round it up to the lowest multiple of `boundary'
14928 which is not less than the value itself. */
14930 static inline HOST_WIDE_INT
14931 ceiling (HOST_WIDE_INT value, unsigned int boundary)
14933 return (((value + boundary - 1) / boundary) * boundary);
14936 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
14937 pointer to the declared type for the relevant field variable, or return
14938 `integer_type_node' if the given node turns out to be an
14939 ERROR_MARK node. */
14941 static inline tree
14942 field_type (const_tree decl)
14944 tree type;
14946 if (TREE_CODE (decl) == ERROR_MARK)
14947 return integer_type_node;
14949 type = DECL_BIT_FIELD_TYPE (decl);
14950 if (type == NULL_TREE)
14951 type = TREE_TYPE (decl);
14953 return type;
14956 /* Given a pointer to a tree node, return the alignment in bits for
14957 it, or else return BITS_PER_WORD if the node actually turns out to
14958 be an ERROR_MARK node. */
14960 static inline unsigned
14961 simple_type_align_in_bits (const_tree type)
14963 return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
14966 static inline unsigned
14967 simple_decl_align_in_bits (const_tree decl)
14969 return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
14972 /* Return the result of rounding T up to ALIGN. */
14974 static inline HOST_WIDE_INT
14975 round_up_to_align (HOST_WIDE_INT t, unsigned int align)
14977 /* We must be careful if T is negative because HOST_WIDE_INT can be
14978 either "above" or "below" unsigned int as per the C promotion
14979 rules, depending on the host, thus making the signedness of the
14980 direct multiplication and division unpredictable. */
14981 unsigned HOST_WIDE_INT u = (unsigned HOST_WIDE_INT) t;
14983 u += align - 1;
14984 u /= align;
14985 u *= align;
14987 return (HOST_WIDE_INT) u;
14990 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
14991 lowest addressed byte of the "containing object" for the given FIELD_DECL,
14992 or return 0 if we are unable to determine what that offset is, either
14993 because the argument turns out to be a pointer to an ERROR_MARK node, or
14994 because the offset is actually variable. (We can't handle the latter case
14995 just yet). */
14997 static HOST_WIDE_INT
14998 field_byte_offset (const_tree decl)
15000 HOST_WIDE_INT object_offset_in_bits;
15001 HOST_WIDE_INT bitpos_int;
15003 if (TREE_CODE (decl) == ERROR_MARK)
15004 return 0;
15006 gcc_assert (TREE_CODE (decl) == FIELD_DECL);
15008 /* We cannot yet cope with fields whose positions are variable, so
15009 for now, when we see such things, we simply return 0. Someday, we may
15010 be able to handle such cases, but it will be damn difficult. */
15011 if (! host_integerp (bit_position (decl), 0))
15012 return 0;
15014 bitpos_int = int_bit_position (decl);
15016 #ifdef PCC_BITFIELD_TYPE_MATTERS
15017 if (PCC_BITFIELD_TYPE_MATTERS)
15019 tree type;
15020 tree field_size_tree;
15021 HOST_WIDE_INT deepest_bitpos;
15022 unsigned HOST_WIDE_INT field_size_in_bits;
15023 unsigned int type_align_in_bits;
15024 unsigned int decl_align_in_bits;
15025 unsigned HOST_WIDE_INT type_size_in_bits;
15027 type = field_type (decl);
15028 type_size_in_bits = simple_type_size_in_bits (type);
15029 type_align_in_bits = simple_type_align_in_bits (type);
15031 field_size_tree = DECL_SIZE (decl);
15033 /* The size could be unspecified if there was an error, or for
15034 a flexible array member. */
15035 if (!field_size_tree)
15036 field_size_tree = bitsize_zero_node;
15038 /* If the size of the field is not constant, use the type size. */
15039 if (host_integerp (field_size_tree, 1))
15040 field_size_in_bits = tree_low_cst (field_size_tree, 1);
15041 else
15042 field_size_in_bits = type_size_in_bits;
15044 decl_align_in_bits = simple_decl_align_in_bits (decl);
15046 /* The GCC front-end doesn't make any attempt to keep track of the
15047 starting bit offset (relative to the start of the containing
15048 structure type) of the hypothetical "containing object" for a
15049 bit-field. Thus, when computing the byte offset value for the
15050 start of the "containing object" of a bit-field, we must deduce
15051 this information on our own. This can be rather tricky to do in
15052 some cases. For example, handling the following structure type
15053 definition when compiling for an i386/i486 target (which only
15054 aligns long long's to 32-bit boundaries) can be very tricky:
15056 struct S { int field1; long long field2:31; };
15058 Fortunately, there is a simple rule-of-thumb which can be used
15059 in such cases. When compiling for an i386/i486, GCC will
15060 allocate 8 bytes for the structure shown above. It decides to
15061 do this based upon one simple rule for bit-field allocation.
15062 GCC allocates each "containing object" for each bit-field at
15063 the first (i.e. lowest addressed) legitimate alignment boundary
15064 (based upon the required minimum alignment for the declared
15065 type of the field) which it can possibly use, subject to the
15066 condition that there is still enough available space remaining
15067 in the containing object (when allocated at the selected point)
15068 to fully accommodate all of the bits of the bit-field itself.
15070 This simple rule makes it obvious why GCC allocates 8 bytes for
15071 each object of the structure type shown above. When looking
15072 for a place to allocate the "containing object" for `field2',
15073 the compiler simply tries to allocate a 64-bit "containing
15074 object" at each successive 32-bit boundary (starting at zero)
15075 until it finds a place to allocate that 64- bit field such that
15076 at least 31 contiguous (and previously unallocated) bits remain
15077 within that selected 64 bit field. (As it turns out, for the
15078 example above, the compiler finds it is OK to allocate the
15079 "containing object" 64-bit field at bit-offset zero within the
15080 structure type.)
15082 Here we attempt to work backwards from the limited set of facts
15083 we're given, and we try to deduce from those facts, where GCC
15084 must have believed that the containing object started (within
15085 the structure type). The value we deduce is then used (by the
15086 callers of this routine) to generate DW_AT_location and
15087 DW_AT_bit_offset attributes for fields (both bit-fields and, in
15088 the case of DW_AT_location, regular fields as well). */
15090 /* Figure out the bit-distance from the start of the structure to
15091 the "deepest" bit of the bit-field. */
15092 deepest_bitpos = bitpos_int + field_size_in_bits;
15094 /* This is the tricky part. Use some fancy footwork to deduce
15095 where the lowest addressed bit of the containing object must
15096 be. */
15097 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
15099 /* Round up to type_align by default. This works best for
15100 bitfields. */
15101 object_offset_in_bits
15102 = round_up_to_align (object_offset_in_bits, type_align_in_bits);
15104 if (object_offset_in_bits > bitpos_int)
15106 object_offset_in_bits = deepest_bitpos - type_size_in_bits;
15108 /* Round up to decl_align instead. */
15109 object_offset_in_bits
15110 = round_up_to_align (object_offset_in_bits, decl_align_in_bits);
15113 else
15114 #endif
15115 object_offset_in_bits = bitpos_int;
15117 return object_offset_in_bits / BITS_PER_UNIT;
15120 /* The following routines define various Dwarf attributes and any data
15121 associated with them. */
15123 /* Add a location description attribute value to a DIE.
15125 This emits location attributes suitable for whole variables and
15126 whole parameters. Note that the location attributes for struct fields are
15127 generated by the routine `data_member_location_attribute' below. */
15129 static inline void
15130 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
15131 dw_loc_list_ref descr)
15133 if (descr == 0)
15134 return;
15135 if (single_element_loc_list_p (descr))
15136 add_AT_loc (die, attr_kind, descr->expr);
15137 else
15138 add_AT_loc_list (die, attr_kind, descr);
15141 /* Attach the specialized form of location attribute used for data members of
15142 struct and union types. In the special case of a FIELD_DECL node which
15143 represents a bit-field, the "offset" part of this special location
15144 descriptor must indicate the distance in bytes from the lowest-addressed
15145 byte of the containing struct or union type to the lowest-addressed byte of
15146 the "containing object" for the bit-field. (See the `field_byte_offset'
15147 function above).
15149 For any given bit-field, the "containing object" is a hypothetical object
15150 (of some integral or enum type) within which the given bit-field lives. The
15151 type of this hypothetical "containing object" is always the same as the
15152 declared type of the individual bit-field itself (for GCC anyway... the
15153 DWARF spec doesn't actually mandate this). Note that it is the size (in
15154 bytes) of the hypothetical "containing object" which will be given in the
15155 DW_AT_byte_size attribute for this bit-field. (See the
15156 `byte_size_attribute' function below.) It is also used when calculating the
15157 value of the DW_AT_bit_offset attribute. (See the `bit_offset_attribute'
15158 function below.) */
15160 static void
15161 add_data_member_location_attribute (dw_die_ref die, tree decl)
15163 HOST_WIDE_INT offset;
15164 dw_loc_descr_ref loc_descr = 0;
15166 if (TREE_CODE (decl) == TREE_BINFO)
15168 /* We're working on the TAG_inheritance for a base class. */
15169 if (BINFO_VIRTUAL_P (decl) && is_cxx ())
15171 /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
15172 aren't at a fixed offset from all (sub)objects of the same
15173 type. We need to extract the appropriate offset from our
15174 vtable. The following dwarf expression means
15176 BaseAddr = ObAddr + *((*ObAddr) - Offset)
15178 This is specific to the V3 ABI, of course. */
15180 dw_loc_descr_ref tmp;
15182 /* Make a copy of the object address. */
15183 tmp = new_loc_descr (DW_OP_dup, 0, 0);
15184 add_loc_descr (&loc_descr, tmp);
15186 /* Extract the vtable address. */
15187 tmp = new_loc_descr (DW_OP_deref, 0, 0);
15188 add_loc_descr (&loc_descr, tmp);
15190 /* Calculate the address of the offset. */
15191 offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
15192 gcc_assert (offset < 0);
15194 tmp = int_loc_descriptor (-offset);
15195 add_loc_descr (&loc_descr, tmp);
15196 tmp = new_loc_descr (DW_OP_minus, 0, 0);
15197 add_loc_descr (&loc_descr, tmp);
15199 /* Extract the offset. */
15200 tmp = new_loc_descr (DW_OP_deref, 0, 0);
15201 add_loc_descr (&loc_descr, tmp);
15203 /* Add it to the object address. */
15204 tmp = new_loc_descr (DW_OP_plus, 0, 0);
15205 add_loc_descr (&loc_descr, tmp);
15207 else
15208 offset = tree_low_cst (BINFO_OFFSET (decl), 0);
15210 else
15211 offset = field_byte_offset (decl);
15213 if (! loc_descr)
15215 if (dwarf_version > 2)
15217 /* Don't need to output a location expression, just the constant. */
15218 add_AT_int (die, DW_AT_data_member_location, offset);
15219 return;
15221 else
15223 enum dwarf_location_atom op;
15225 /* The DWARF2 standard says that we should assume that the structure
15226 address is already on the stack, so we can specify a structure
15227 field address by using DW_OP_plus_uconst. */
15229 #ifdef MIPS_DEBUGGING_INFO
15230 /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
15231 operator correctly. It works only if we leave the offset on the
15232 stack. */
15233 op = DW_OP_constu;
15234 #else
15235 op = DW_OP_plus_uconst;
15236 #endif
15238 loc_descr = new_loc_descr (op, offset, 0);
15242 add_AT_loc (die, DW_AT_data_member_location, loc_descr);
15245 /* Writes integer values to dw_vec_const array. */
15247 static void
15248 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
15250 while (size != 0)
15252 *dest++ = val & 0xff;
15253 val >>= 8;
15254 --size;
15258 /* Reads integers from dw_vec_const array. Inverse of insert_int. */
15260 static HOST_WIDE_INT
15261 extract_int (const unsigned char *src, unsigned int size)
15263 HOST_WIDE_INT val = 0;
15265 src += size;
15266 while (size != 0)
15268 val <<= 8;
15269 val |= *--src & 0xff;
15270 --size;
15272 return val;
15275 /* Writes floating point values to dw_vec_const array. */
15277 static void
15278 insert_float (const_rtx rtl, unsigned char *array)
15280 REAL_VALUE_TYPE rv;
15281 long val[4];
15282 int i;
15284 REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
15285 real_to_target (val, &rv, GET_MODE (rtl));
15287 /* real_to_target puts 32-bit pieces in each long. Pack them. */
15288 for (i = 0; i < GET_MODE_SIZE (GET_MODE (rtl)) / 4; i++)
15290 insert_int (val[i], 4, array);
15291 array += 4;
15295 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
15296 does not have a "location" either in memory or in a register. These
15297 things can arise in GNU C when a constant is passed as an actual parameter
15298 to an inlined function. They can also arise in C++ where declared
15299 constants do not necessarily get memory "homes". */
15301 static bool
15302 add_const_value_attribute (dw_die_ref die, rtx rtl)
15304 switch (GET_CODE (rtl))
15306 case CONST_INT:
15308 HOST_WIDE_INT val = INTVAL (rtl);
15310 if (val < 0)
15311 add_AT_int (die, DW_AT_const_value, val);
15312 else
15313 add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
15315 return true;
15317 case CONST_DOUBLE:
15318 /* Note that a CONST_DOUBLE rtx could represent either an integer or a
15319 floating-point constant. A CONST_DOUBLE is used whenever the
15320 constant requires more than one word in order to be adequately
15321 represented. */
15323 enum machine_mode mode = GET_MODE (rtl);
15325 if (SCALAR_FLOAT_MODE_P (mode))
15327 unsigned int length = GET_MODE_SIZE (mode);
15328 unsigned char *array = GGC_NEWVEC (unsigned char, length);
15330 insert_float (rtl, array);
15331 add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
15333 else
15334 add_AT_double (die, DW_AT_const_value,
15335 CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
15337 return true;
15339 case CONST_VECTOR:
15341 enum machine_mode mode = GET_MODE (rtl);
15342 unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
15343 unsigned int length = CONST_VECTOR_NUNITS (rtl);
15344 unsigned char *array = GGC_NEWVEC (unsigned char, length * elt_size);
15345 unsigned int i;
15346 unsigned char *p;
15348 switch (GET_MODE_CLASS (mode))
15350 case MODE_VECTOR_INT:
15351 for (i = 0, p = array; i < length; i++, p += elt_size)
15353 rtx elt = CONST_VECTOR_ELT (rtl, i);
15354 HOST_WIDE_INT lo, hi;
15356 switch (GET_CODE (elt))
15358 case CONST_INT:
15359 lo = INTVAL (elt);
15360 hi = -(lo < 0);
15361 break;
15363 case CONST_DOUBLE:
15364 lo = CONST_DOUBLE_LOW (elt);
15365 hi = CONST_DOUBLE_HIGH (elt);
15366 break;
15368 default:
15369 gcc_unreachable ();
15372 if (elt_size <= sizeof (HOST_WIDE_INT))
15373 insert_int (lo, elt_size, p);
15374 else
15376 unsigned char *p0 = p;
15377 unsigned char *p1 = p + sizeof (HOST_WIDE_INT);
15379 gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
15380 if (WORDS_BIG_ENDIAN)
15382 p0 = p1;
15383 p1 = p;
15385 insert_int (lo, sizeof (HOST_WIDE_INT), p0);
15386 insert_int (hi, sizeof (HOST_WIDE_INT), p1);
15389 break;
15391 case MODE_VECTOR_FLOAT:
15392 for (i = 0, p = array; i < length; i++, p += elt_size)
15394 rtx elt = CONST_VECTOR_ELT (rtl, i);
15395 insert_float (elt, p);
15397 break;
15399 default:
15400 gcc_unreachable ();
15403 add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
15405 return true;
15407 case CONST_STRING:
15408 if (dwarf_version >= 4 || !dwarf_strict)
15410 dw_loc_descr_ref loc_result;
15411 resolve_one_addr (&rtl, NULL);
15412 rtl_addr:
15413 loc_result = new_loc_descr (DW_OP_addr, 0, 0);
15414 loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
15415 loc_result->dw_loc_oprnd1.v.val_addr = rtl;
15416 add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
15417 add_AT_loc (die, DW_AT_location, loc_result);
15418 VEC_safe_push (rtx, gc, used_rtx_array, rtl);
15419 return true;
15421 return false;
15423 case CONST:
15424 if (CONSTANT_P (XEXP (rtl, 0)))
15425 return add_const_value_attribute (die, XEXP (rtl, 0));
15426 /* FALLTHROUGH */
15427 case SYMBOL_REF:
15428 if (!const_ok_for_output (rtl))
15429 return false;
15430 case LABEL_REF:
15431 if (dwarf_version >= 4 || !dwarf_strict)
15432 goto rtl_addr;
15433 return false;
15435 case PLUS:
15436 /* In cases where an inlined instance of an inline function is passed
15437 the address of an `auto' variable (which is local to the caller) we
15438 can get a situation where the DECL_RTL of the artificial local
15439 variable (for the inlining) which acts as a stand-in for the
15440 corresponding formal parameter (of the inline function) will look
15441 like (plus:SI (reg:SI FRAME_PTR) (const_int ...)). This is not
15442 exactly a compile-time constant expression, but it isn't the address
15443 of the (artificial) local variable either. Rather, it represents the
15444 *value* which the artificial local variable always has during its
15445 lifetime. We currently have no way to represent such quasi-constant
15446 values in Dwarf, so for now we just punt and generate nothing. */
15447 return false;
15449 case HIGH:
15450 case CONST_FIXED:
15451 return false;
15453 case MEM:
15454 if (GET_CODE (XEXP (rtl, 0)) == CONST_STRING
15455 && MEM_READONLY_P (rtl)
15456 && GET_MODE (rtl) == BLKmode)
15458 add_AT_string (die, DW_AT_const_value, XSTR (XEXP (rtl, 0), 0));
15459 return true;
15461 return false;
15463 default:
15464 /* No other kinds of rtx should be possible here. */
15465 gcc_unreachable ();
15467 return false;
15470 /* Determine whether the evaluation of EXPR references any variables
15471 or functions which aren't otherwise used (and therefore may not be
15472 output). */
15473 static tree
15474 reference_to_unused (tree * tp, int * walk_subtrees,
15475 void * data ATTRIBUTE_UNUSED)
15477 if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
15478 *walk_subtrees = 0;
15480 if (DECL_P (*tp) && ! TREE_PUBLIC (*tp) && ! TREE_USED (*tp)
15481 && ! TREE_ASM_WRITTEN (*tp))
15482 return *tp;
15483 /* ??? The C++ FE emits debug information for using decls, so
15484 putting gcc_unreachable here falls over. See PR31899. For now
15485 be conservative. */
15486 else if (!cgraph_global_info_ready
15487 && (TREE_CODE (*tp) == VAR_DECL || TREE_CODE (*tp) == FUNCTION_DECL))
15488 return *tp;
15489 else if (TREE_CODE (*tp) == VAR_DECL)
15491 struct varpool_node *node = varpool_node (*tp);
15492 if (!node->needed)
15493 return *tp;
15495 else if (TREE_CODE (*tp) == FUNCTION_DECL
15496 && (!DECL_EXTERNAL (*tp) || DECL_DECLARED_INLINE_P (*tp)))
15498 /* The call graph machinery must have finished analyzing,
15499 optimizing and gimplifying the CU by now.
15500 So if *TP has no call graph node associated
15501 to it, it means *TP will not be emitted. */
15502 if (!cgraph_get_node (*tp))
15503 return *tp;
15505 else if (TREE_CODE (*tp) == STRING_CST && !TREE_ASM_WRITTEN (*tp))
15506 return *tp;
15508 return NULL_TREE;
15511 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
15512 for use in a later add_const_value_attribute call. */
15514 static rtx
15515 rtl_for_decl_init (tree init, tree type)
15517 rtx rtl = NULL_RTX;
15519 /* If a variable is initialized with a string constant without embedded
15520 zeros, build CONST_STRING. */
15521 if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
15523 tree enttype = TREE_TYPE (type);
15524 tree domain = TYPE_DOMAIN (type);
15525 enum machine_mode mode = TYPE_MODE (enttype);
15527 if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_SIZE (mode) == 1
15528 && domain
15529 && integer_zerop (TYPE_MIN_VALUE (domain))
15530 && compare_tree_int (TYPE_MAX_VALUE (domain),
15531 TREE_STRING_LENGTH (init) - 1) == 0
15532 && ((size_t) TREE_STRING_LENGTH (init)
15533 == strlen (TREE_STRING_POINTER (init)) + 1))
15535 rtl = gen_rtx_CONST_STRING (VOIDmode,
15536 ggc_strdup (TREE_STRING_POINTER (init)));
15537 rtl = gen_rtx_MEM (BLKmode, rtl);
15538 MEM_READONLY_P (rtl) = 1;
15541 /* Other aggregates, and complex values, could be represented using
15542 CONCAT: FIXME! */
15543 else if (AGGREGATE_TYPE_P (type) || TREE_CODE (type) == COMPLEX_TYPE)
15545 /* Vectors only work if their mode is supported by the target.
15546 FIXME: generic vectors ought to work too. */
15547 else if (TREE_CODE (type) == VECTOR_TYPE && TYPE_MODE (type) == BLKmode)
15549 /* If the initializer is something that we know will expand into an
15550 immediate RTL constant, expand it now. We must be careful not to
15551 reference variables which won't be output. */
15552 else if (initializer_constant_valid_p (init, type)
15553 && ! walk_tree (&init, reference_to_unused, NULL, NULL))
15555 /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
15556 possible. */
15557 if (TREE_CODE (type) == VECTOR_TYPE)
15558 switch (TREE_CODE (init))
15560 case VECTOR_CST:
15561 break;
15562 case CONSTRUCTOR:
15563 if (TREE_CONSTANT (init))
15565 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (init);
15566 bool constant_p = true;
15567 tree value;
15568 unsigned HOST_WIDE_INT ix;
15570 /* Even when ctor is constant, it might contain non-*_CST
15571 elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
15572 belong into VECTOR_CST nodes. */
15573 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
15574 if (!CONSTANT_CLASS_P (value))
15576 constant_p = false;
15577 break;
15580 if (constant_p)
15582 init = build_vector_from_ctor (type, elts);
15583 break;
15586 /* FALLTHRU */
15588 default:
15589 return NULL;
15592 rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
15594 /* If expand_expr returns a MEM, it wasn't immediate. */
15595 gcc_assert (!rtl || !MEM_P (rtl));
15598 return rtl;
15601 /* Generate RTL for the variable DECL to represent its location. */
15603 static rtx
15604 rtl_for_decl_location (tree decl)
15606 rtx rtl;
15608 /* Here we have to decide where we are going to say the parameter "lives"
15609 (as far as the debugger is concerned). We only have a couple of
15610 choices. GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
15612 DECL_RTL normally indicates where the parameter lives during most of the
15613 activation of the function. If optimization is enabled however, this
15614 could be either NULL or else a pseudo-reg. Both of those cases indicate
15615 that the parameter doesn't really live anywhere (as far as the code
15616 generation parts of GCC are concerned) during most of the function's
15617 activation. That will happen (for example) if the parameter is never
15618 referenced within the function.
15620 We could just generate a location descriptor here for all non-NULL
15621 non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
15622 a little nicer than that if we also consider DECL_INCOMING_RTL in cases
15623 where DECL_RTL is NULL or is a pseudo-reg.
15625 Note however that we can only get away with using DECL_INCOMING_RTL as
15626 a backup substitute for DECL_RTL in certain limited cases. In cases
15627 where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
15628 we can be sure that the parameter was passed using the same type as it is
15629 declared to have within the function, and that its DECL_INCOMING_RTL
15630 points us to a place where a value of that type is passed.
15632 In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
15633 we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
15634 because in these cases DECL_INCOMING_RTL points us to a value of some
15635 type which is *different* from the type of the parameter itself. Thus,
15636 if we tried to use DECL_INCOMING_RTL to generate a location attribute in
15637 such cases, the debugger would end up (for example) trying to fetch a
15638 `float' from a place which actually contains the first part of a
15639 `double'. That would lead to really incorrect and confusing
15640 output at debug-time.
15642 So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
15643 in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl). There
15644 are a couple of exceptions however. On little-endian machines we can
15645 get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
15646 not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
15647 an integral type that is smaller than TREE_TYPE (decl). These cases arise
15648 when (on a little-endian machine) a non-prototyped function has a
15649 parameter declared to be of type `short' or `char'. In such cases,
15650 TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
15651 be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
15652 passed `int' value. If the debugger then uses that address to fetch
15653 a `short' or a `char' (on a little-endian machine) the result will be
15654 the correct data, so we allow for such exceptional cases below.
15656 Note that our goal here is to describe the place where the given formal
15657 parameter lives during most of the function's activation (i.e. between the
15658 end of the prologue and the start of the epilogue). We'll do that as best
15659 as we can. Note however that if the given formal parameter is modified
15660 sometime during the execution of the function, then a stack backtrace (at
15661 debug-time) will show the function as having been called with the *new*
15662 value rather than the value which was originally passed in. This happens
15663 rarely enough that it is not a major problem, but it *is* a problem, and
15664 I'd like to fix it.
15666 A future version of dwarf2out.c may generate two additional attributes for
15667 any given DW_TAG_formal_parameter DIE which will describe the "passed
15668 type" and the "passed location" for the given formal parameter in addition
15669 to the attributes we now generate to indicate the "declared type" and the
15670 "active location" for each parameter. This additional set of attributes
15671 could be used by debuggers for stack backtraces. Separately, note that
15672 sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
15673 This happens (for example) for inlined-instances of inline function formal
15674 parameters which are never referenced. This really shouldn't be
15675 happening. All PARM_DECL nodes should get valid non-NULL
15676 DECL_INCOMING_RTL values. FIXME. */
15678 /* Use DECL_RTL as the "location" unless we find something better. */
15679 rtl = DECL_RTL_IF_SET (decl);
15681 /* When generating abstract instances, ignore everything except
15682 constants, symbols living in memory, and symbols living in
15683 fixed registers. */
15684 if (! reload_completed)
15686 if (rtl
15687 && (CONSTANT_P (rtl)
15688 || (MEM_P (rtl)
15689 && CONSTANT_P (XEXP (rtl, 0)))
15690 || (REG_P (rtl)
15691 && TREE_CODE (decl) == VAR_DECL
15692 && TREE_STATIC (decl))))
15694 rtl = targetm.delegitimize_address (rtl);
15695 return rtl;
15697 rtl = NULL_RTX;
15699 else if (TREE_CODE (decl) == PARM_DECL)
15701 if (rtl == NULL_RTX || is_pseudo_reg (rtl))
15703 tree declared_type = TREE_TYPE (decl);
15704 tree passed_type = DECL_ARG_TYPE (decl);
15705 enum machine_mode dmode = TYPE_MODE (declared_type);
15706 enum machine_mode pmode = TYPE_MODE (passed_type);
15708 /* This decl represents a formal parameter which was optimized out.
15709 Note that DECL_INCOMING_RTL may be NULL in here, but we handle
15710 all cases where (rtl == NULL_RTX) just below. */
15711 if (dmode == pmode)
15712 rtl = DECL_INCOMING_RTL (decl);
15713 else if (SCALAR_INT_MODE_P (dmode)
15714 && GET_MODE_SIZE (dmode) <= GET_MODE_SIZE (pmode)
15715 && DECL_INCOMING_RTL (decl))
15717 rtx inc = DECL_INCOMING_RTL (decl);
15718 if (REG_P (inc))
15719 rtl = inc;
15720 else if (MEM_P (inc))
15722 if (BYTES_BIG_ENDIAN)
15723 rtl = adjust_address_nv (inc, dmode,
15724 GET_MODE_SIZE (pmode)
15725 - GET_MODE_SIZE (dmode));
15726 else
15727 rtl = inc;
15732 /* If the parm was passed in registers, but lives on the stack, then
15733 make a big endian correction if the mode of the type of the
15734 parameter is not the same as the mode of the rtl. */
15735 /* ??? This is the same series of checks that are made in dbxout.c before
15736 we reach the big endian correction code there. It isn't clear if all
15737 of these checks are necessary here, but keeping them all is the safe
15738 thing to do. */
15739 else if (MEM_P (rtl)
15740 && XEXP (rtl, 0) != const0_rtx
15741 && ! CONSTANT_P (XEXP (rtl, 0))
15742 /* Not passed in memory. */
15743 && !MEM_P (DECL_INCOMING_RTL (decl))
15744 /* Not passed by invisible reference. */
15745 && (!REG_P (XEXP (rtl, 0))
15746 || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
15747 || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
15748 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
15749 || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
15750 #endif
15752 /* Big endian correction check. */
15753 && BYTES_BIG_ENDIAN
15754 && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
15755 && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
15756 < UNITS_PER_WORD))
15758 int offset = (UNITS_PER_WORD
15759 - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
15761 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
15762 plus_constant (XEXP (rtl, 0), offset));
15765 else if (TREE_CODE (decl) == VAR_DECL
15766 && rtl
15767 && MEM_P (rtl)
15768 && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl))
15769 && BYTES_BIG_ENDIAN)
15771 int rsize = GET_MODE_SIZE (GET_MODE (rtl));
15772 int dsize = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)));
15774 /* If a variable is declared "register" yet is smaller than
15775 a register, then if we store the variable to memory, it
15776 looks like we're storing a register-sized value, when in
15777 fact we are not. We need to adjust the offset of the
15778 storage location to reflect the actual value's bytes,
15779 else gdb will not be able to display it. */
15780 if (rsize > dsize)
15781 rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
15782 plus_constant (XEXP (rtl, 0), rsize-dsize));
15785 /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
15786 and will have been substituted directly into all expressions that use it.
15787 C does not have such a concept, but C++ and other languages do. */
15788 if (!rtl && TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
15789 rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
15791 if (rtl)
15792 rtl = targetm.delegitimize_address (rtl);
15794 /* If we don't look past the constant pool, we risk emitting a
15795 reference to a constant pool entry that isn't referenced from
15796 code, and thus is not emitted. */
15797 if (rtl)
15798 rtl = avoid_constant_pool_reference (rtl);
15800 /* Try harder to get a rtl. If this symbol ends up not being emitted
15801 in the current CU, resolve_addr will remove the expression referencing
15802 it. */
15803 if (rtl == NULL_RTX
15804 && TREE_CODE (decl) == VAR_DECL
15805 && !DECL_EXTERNAL (decl)
15806 && TREE_STATIC (decl)
15807 && DECL_NAME (decl)
15808 && !DECL_HARD_REGISTER (decl)
15809 && DECL_MODE (decl) != VOIDmode)
15811 rtl = make_decl_rtl_for_debug (decl);
15812 if (!MEM_P (rtl)
15813 || GET_CODE (XEXP (rtl, 0)) != SYMBOL_REF
15814 || SYMBOL_REF_DECL (XEXP (rtl, 0)) != decl)
15815 rtl = NULL_RTX;
15818 return rtl;
15821 /* Check whether decl is a Fortran COMMON symbol. If not, NULL_TREE is
15822 returned. If so, the decl for the COMMON block is returned, and the
15823 value is the offset into the common block for the symbol. */
15825 static tree
15826 fortran_common (tree decl, HOST_WIDE_INT *value)
15828 tree val_expr, cvar;
15829 enum machine_mode mode;
15830 HOST_WIDE_INT bitsize, bitpos;
15831 tree offset;
15832 int volatilep = 0, unsignedp = 0;
15834 /* If the decl isn't a VAR_DECL, or if it isn't static, or if
15835 it does not have a value (the offset into the common area), or if it
15836 is thread local (as opposed to global) then it isn't common, and shouldn't
15837 be handled as such. */
15838 if (TREE_CODE (decl) != VAR_DECL
15839 || !TREE_STATIC (decl)
15840 || !DECL_HAS_VALUE_EXPR_P (decl)
15841 || !is_fortran ())
15842 return NULL_TREE;
15844 val_expr = DECL_VALUE_EXPR (decl);
15845 if (TREE_CODE (val_expr) != COMPONENT_REF)
15846 return NULL_TREE;
15848 cvar = get_inner_reference (val_expr, &bitsize, &bitpos, &offset,
15849 &mode, &unsignedp, &volatilep, true);
15851 if (cvar == NULL_TREE
15852 || TREE_CODE (cvar) != VAR_DECL
15853 || DECL_ARTIFICIAL (cvar)
15854 || !TREE_PUBLIC (cvar))
15855 return NULL_TREE;
15857 *value = 0;
15858 if (offset != NULL)
15860 if (!host_integerp (offset, 0))
15861 return NULL_TREE;
15862 *value = tree_low_cst (offset, 0);
15864 if (bitpos != 0)
15865 *value += bitpos / BITS_PER_UNIT;
15867 return cvar;
15870 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
15871 data attribute for a variable or a parameter. We generate the
15872 DW_AT_const_value attribute only in those cases where the given variable
15873 or parameter does not have a true "location" either in memory or in a
15874 register. This can happen (for example) when a constant is passed as an
15875 actual argument in a call to an inline function. (It's possible that
15876 these things can crop up in other ways also.) Note that one type of
15877 constant value which can be passed into an inlined function is a constant
15878 pointer. This can happen for example if an actual argument in an inlined
15879 function call evaluates to a compile-time constant address. */
15881 static bool
15882 add_location_or_const_value_attribute (dw_die_ref die, tree decl,
15883 enum dwarf_attribute attr)
15885 rtx rtl;
15886 dw_loc_list_ref list;
15887 var_loc_list *loc_list;
15889 if (TREE_CODE (decl) == ERROR_MARK)
15890 return false;
15892 gcc_assert (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
15893 || TREE_CODE (decl) == RESULT_DECL);
15895 /* Try to get some constant RTL for this decl, and use that as the value of
15896 the location. */
15898 rtl = rtl_for_decl_location (decl);
15899 if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
15900 && add_const_value_attribute (die, rtl))
15901 return true;
15903 /* See if we have single element location list that is equivalent to
15904 a constant value. That way we are better to use add_const_value_attribute
15905 rather than expanding constant value equivalent. */
15906 loc_list = lookup_decl_loc (decl);
15907 if (loc_list
15908 && loc_list->first
15909 && loc_list->first == loc_list->last
15910 && NOTE_VAR_LOCATION (loc_list->first->var_loc_note)
15911 && NOTE_VAR_LOCATION_LOC (loc_list->first->var_loc_note))
15913 struct var_loc_node *node;
15915 node = loc_list->first;
15916 rtl = NOTE_VAR_LOCATION_LOC (node->var_loc_note);
15917 if (GET_CODE (rtl) == EXPR_LIST)
15918 rtl = XEXP (rtl, 0);
15919 if ((CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
15920 && add_const_value_attribute (die, rtl))
15921 return true;
15923 list = loc_list_from_tree (decl, decl_by_reference_p (decl) ? 0 : 2);
15924 if (list)
15926 add_AT_location_description (die, attr, list);
15927 return true;
15929 /* None of that worked, so it must not really have a location;
15930 try adding a constant value attribute from the DECL_INITIAL. */
15931 return tree_add_const_value_attribute_for_decl (die, decl);
15934 /* Add VARIABLE and DIE into deferred locations list. */
15936 static void
15937 defer_location (tree variable, dw_die_ref die)
15939 deferred_locations entry;
15940 entry.variable = variable;
15941 entry.die = die;
15942 VEC_safe_push (deferred_locations, gc, deferred_locations_list, &entry);
15945 /* Helper function for tree_add_const_value_attribute. Natively encode
15946 initializer INIT into an array. Return true if successful. */
15948 static bool
15949 native_encode_initializer (tree init, unsigned char *array, int size)
15951 tree type;
15953 if (init == NULL_TREE)
15954 return false;
15956 STRIP_NOPS (init);
15957 switch (TREE_CODE (init))
15959 case STRING_CST:
15960 type = TREE_TYPE (init);
15961 if (TREE_CODE (type) == ARRAY_TYPE)
15963 tree enttype = TREE_TYPE (type);
15964 enum machine_mode mode = TYPE_MODE (enttype);
15966 if (GET_MODE_CLASS (mode) != MODE_INT || GET_MODE_SIZE (mode) != 1)
15967 return false;
15968 if (int_size_in_bytes (type) != size)
15969 return false;
15970 if (size > TREE_STRING_LENGTH (init))
15972 memcpy (array, TREE_STRING_POINTER (init),
15973 TREE_STRING_LENGTH (init));
15974 memset (array + TREE_STRING_LENGTH (init),
15975 '\0', size - TREE_STRING_LENGTH (init));
15977 else
15978 memcpy (array, TREE_STRING_POINTER (init), size);
15979 return true;
15981 return false;
15982 case CONSTRUCTOR:
15983 type = TREE_TYPE (init);
15984 if (int_size_in_bytes (type) != size)
15985 return false;
15986 if (TREE_CODE (type) == ARRAY_TYPE)
15988 HOST_WIDE_INT min_index;
15989 unsigned HOST_WIDE_INT cnt;
15990 int curpos = 0, fieldsize;
15991 constructor_elt *ce;
15993 if (TYPE_DOMAIN (type) == NULL_TREE
15994 || !host_integerp (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0))
15995 return false;
15997 fieldsize = int_size_in_bytes (TREE_TYPE (type));
15998 if (fieldsize <= 0)
15999 return false;
16001 min_index = tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0);
16002 memset (array, '\0', size);
16003 for (cnt = 0;
16004 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (init), cnt, ce);
16005 cnt++)
16007 tree val = ce->value;
16008 tree index = ce->index;
16009 int pos = curpos;
16010 if (index && TREE_CODE (index) == RANGE_EXPR)
16011 pos = (tree_low_cst (TREE_OPERAND (index, 0), 0) - min_index)
16012 * fieldsize;
16013 else if (index)
16014 pos = (tree_low_cst (index, 0) - min_index) * fieldsize;
16016 if (val)
16018 STRIP_NOPS (val);
16019 if (!native_encode_initializer (val, array + pos, fieldsize))
16020 return false;
16022 curpos = pos + fieldsize;
16023 if (index && TREE_CODE (index) == RANGE_EXPR)
16025 int count = tree_low_cst (TREE_OPERAND (index, 1), 0)
16026 - tree_low_cst (TREE_OPERAND (index, 0), 0);
16027 while (count > 0)
16029 if (val)
16030 memcpy (array + curpos, array + pos, fieldsize);
16031 curpos += fieldsize;
16034 gcc_assert (curpos <= size);
16036 return true;
16038 else if (TREE_CODE (type) == RECORD_TYPE
16039 || TREE_CODE (type) == UNION_TYPE)
16041 tree field = NULL_TREE;
16042 unsigned HOST_WIDE_INT cnt;
16043 constructor_elt *ce;
16045 if (int_size_in_bytes (type) != size)
16046 return false;
16048 if (TREE_CODE (type) == RECORD_TYPE)
16049 field = TYPE_FIELDS (type);
16051 for (cnt = 0;
16052 VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (init), cnt, ce);
16053 cnt++, field = field ? TREE_CHAIN (field) : 0)
16055 tree val = ce->value;
16056 int pos, fieldsize;
16058 if (ce->index != 0)
16059 field = ce->index;
16061 if (val)
16062 STRIP_NOPS (val);
16064 if (field == NULL_TREE || DECL_BIT_FIELD (field))
16065 return false;
16067 if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
16068 && TYPE_DOMAIN (TREE_TYPE (field))
16069 && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
16070 return false;
16071 else if (DECL_SIZE_UNIT (field) == NULL_TREE
16072 || !host_integerp (DECL_SIZE_UNIT (field), 0))
16073 return false;
16074 fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 0);
16075 pos = int_byte_position (field);
16076 gcc_assert (pos + fieldsize <= size);
16077 if (val
16078 && !native_encode_initializer (val, array + pos, fieldsize))
16079 return false;
16081 return true;
16083 return false;
16084 case VIEW_CONVERT_EXPR:
16085 case NON_LVALUE_EXPR:
16086 return native_encode_initializer (TREE_OPERAND (init, 0), array, size);
16087 default:
16088 return native_encode_expr (init, array, size) == size;
16092 /* Attach a DW_AT_const_value attribute to DIE. The value of the
16093 attribute is the const value T. */
16095 static bool
16096 tree_add_const_value_attribute (dw_die_ref die, tree t)
16098 tree init;
16099 tree type = TREE_TYPE (t);
16100 rtx rtl;
16102 if (!t || !TREE_TYPE (t) || TREE_TYPE (t) == error_mark_node)
16103 return false;
16105 init = t;
16106 gcc_assert (!DECL_P (init));
16108 rtl = rtl_for_decl_init (init, type);
16109 if (rtl)
16110 return add_const_value_attribute (die, rtl);
16111 /* If the host and target are sane, try harder. */
16112 else if (CHAR_BIT == 8 && BITS_PER_UNIT == 8
16113 && initializer_constant_valid_p (init, type))
16115 HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (init));
16116 if (size > 0 && (int) size == size)
16118 unsigned char *array = GGC_CNEWVEC (unsigned char, size);
16120 if (native_encode_initializer (init, array, size))
16122 add_AT_vec (die, DW_AT_const_value, size, 1, array);
16123 return true;
16127 return false;
16130 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
16131 attribute is the const value of T, where T is an integral constant
16132 variable with static storage duration
16133 (so it can't be a PARM_DECL or a RESULT_DECL). */
16135 static bool
16136 tree_add_const_value_attribute_for_decl (dw_die_ref var_die, tree decl)
16139 if (!decl
16140 || (TREE_CODE (decl) != VAR_DECL
16141 && TREE_CODE (decl) != CONST_DECL))
16142 return false;
16144 if (TREE_READONLY (decl)
16145 && ! TREE_THIS_VOLATILE (decl)
16146 && DECL_INITIAL (decl))
16147 /* OK */;
16148 else
16149 return false;
16151 /* Don't add DW_AT_const_value if abstract origin already has one. */
16152 if (get_AT (var_die, DW_AT_const_value))
16153 return false;
16155 return tree_add_const_value_attribute (var_die, DECL_INITIAL (decl));
16158 /* Convert the CFI instructions for the current function into a
16159 location list. This is used for DW_AT_frame_base when we targeting
16160 a dwarf2 consumer that does not support the dwarf3
16161 DW_OP_call_frame_cfa. OFFSET is a constant to be added to all CFA
16162 expressions. */
16164 static dw_loc_list_ref
16165 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
16167 dw_fde_ref fde;
16168 dw_loc_list_ref list, *list_tail;
16169 dw_cfi_ref cfi;
16170 dw_cfa_location last_cfa, next_cfa;
16171 const char *start_label, *last_label, *section;
16172 dw_cfa_location remember;
16174 fde = current_fde ();
16175 gcc_assert (fde != NULL);
16177 section = secname_for_decl (current_function_decl);
16178 list_tail = &list;
16179 list = NULL;
16181 memset (&next_cfa, 0, sizeof (next_cfa));
16182 next_cfa.reg = INVALID_REGNUM;
16183 remember = next_cfa;
16185 start_label = fde->dw_fde_begin;
16187 /* ??? Bald assumption that the CIE opcode list does not contain
16188 advance opcodes. */
16189 for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
16190 lookup_cfa_1 (cfi, &next_cfa, &remember);
16192 last_cfa = next_cfa;
16193 last_label = start_label;
16195 for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
16196 switch (cfi->dw_cfi_opc)
16198 case DW_CFA_set_loc:
16199 case DW_CFA_advance_loc1:
16200 case DW_CFA_advance_loc2:
16201 case DW_CFA_advance_loc4:
16202 if (!cfa_equal_p (&last_cfa, &next_cfa))
16204 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
16205 start_label, last_label, section);
16207 list_tail = &(*list_tail)->dw_loc_next;
16208 last_cfa = next_cfa;
16209 start_label = last_label;
16211 last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
16212 break;
16214 case DW_CFA_advance_loc:
16215 /* The encoding is complex enough that we should never emit this. */
16216 gcc_unreachable ();
16218 default:
16219 lookup_cfa_1 (cfi, &next_cfa, &remember);
16220 break;
16223 if (!cfa_equal_p (&last_cfa, &next_cfa))
16225 *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
16226 start_label, last_label, section);
16227 list_tail = &(*list_tail)->dw_loc_next;
16228 start_label = last_label;
16231 *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
16232 start_label, fde->dw_fde_end, section);
16234 if (list && list->dw_loc_next)
16235 gen_llsym (list);
16237 return list;
16240 /* Compute a displacement from the "steady-state frame pointer" to the
16241 frame base (often the same as the CFA), and store it in
16242 frame_pointer_fb_offset. OFFSET is added to the displacement
16243 before the latter is negated. */
16245 static void
16246 compute_frame_pointer_to_fb_displacement (HOST_WIDE_INT offset)
16248 rtx reg, elim;
16250 #ifdef FRAME_POINTER_CFA_OFFSET
16251 reg = frame_pointer_rtx;
16252 offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
16253 #else
16254 reg = arg_pointer_rtx;
16255 offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
16256 #endif
16258 elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
16259 if (GET_CODE (elim) == PLUS)
16261 offset += INTVAL (XEXP (elim, 1));
16262 elim = XEXP (elim, 0);
16265 gcc_assert ((SUPPORTS_STACK_ALIGNMENT
16266 && (elim == hard_frame_pointer_rtx
16267 || elim == stack_pointer_rtx))
16268 || elim == (frame_pointer_needed
16269 ? hard_frame_pointer_rtx
16270 : stack_pointer_rtx));
16272 frame_pointer_fb_offset = -offset;
16275 /* Generate a DW_AT_name attribute given some string value to be included as
16276 the value of the attribute. */
16278 static void
16279 add_name_attribute (dw_die_ref die, const char *name_string)
16281 if (name_string != NULL && *name_string != 0)
16283 if (demangle_name_func)
16284 name_string = (*demangle_name_func) (name_string);
16286 add_AT_string (die, DW_AT_name, name_string);
16290 /* Generate a DW_AT_comp_dir attribute for DIE. */
16292 static void
16293 add_comp_dir_attribute (dw_die_ref die)
16295 const char *wd = get_src_pwd ();
16296 char *wd1;
16298 if (wd == NULL)
16299 return;
16301 if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR)
16303 int wdlen;
16305 wdlen = strlen (wd);
16306 wd1 = GGC_NEWVEC (char, wdlen + 2);
16307 strcpy (wd1, wd);
16308 wd1 [wdlen] = DIR_SEPARATOR;
16309 wd1 [wdlen + 1] = 0;
16310 wd = wd1;
16313 add_AT_string (die, DW_AT_comp_dir, remap_debug_filename (wd));
16316 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
16317 default. */
16319 static int
16320 lower_bound_default (void)
16322 switch (get_AT_unsigned (comp_unit_die, DW_AT_language))
16324 case DW_LANG_C:
16325 case DW_LANG_C89:
16326 case DW_LANG_C99:
16327 case DW_LANG_C_plus_plus:
16328 case DW_LANG_ObjC:
16329 case DW_LANG_ObjC_plus_plus:
16330 case DW_LANG_Java:
16331 return 0;
16332 case DW_LANG_Fortran77:
16333 case DW_LANG_Fortran90:
16334 case DW_LANG_Fortran95:
16335 return 1;
16336 case DW_LANG_UPC:
16337 case DW_LANG_D:
16338 return dwarf_version >= 4 ? 0 : -1;
16339 case DW_LANG_Ada95:
16340 case DW_LANG_Ada83:
16341 case DW_LANG_Cobol74:
16342 case DW_LANG_Cobol85:
16343 case DW_LANG_Pascal83:
16344 case DW_LANG_Modula2:
16345 case DW_LANG_PLI:
16346 return dwarf_version >= 4 ? 1 : -1;
16347 default:
16348 return -1;
16352 /* Given a tree node describing an array bound (either lower or upper) output
16353 a representation for that bound. */
16355 static void
16356 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree bound)
16358 int want_address = 2;
16360 switch (TREE_CODE (bound))
16362 case ERROR_MARK:
16363 return;
16365 /* All fixed-bounds are represented by INTEGER_CST nodes. */
16366 case INTEGER_CST:
16368 unsigned int prec = simple_type_size_in_bits (TREE_TYPE (bound));
16369 int dflt;
16371 /* Use the default if possible. */
16372 if (bound_attr == DW_AT_lower_bound
16373 && host_integerp (bound, 0)
16374 && (dflt = lower_bound_default ()) != -1
16375 && tree_low_cst (bound, 0) == dflt)
16378 /* Otherwise represent the bound as an unsigned value with the
16379 precision of its type. The precision and signedness of the
16380 type will be necessary to re-interpret it unambiguously. */
16381 else if (prec < HOST_BITS_PER_WIDE_INT)
16383 unsigned HOST_WIDE_INT mask
16384 = ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
16385 add_AT_unsigned (subrange_die, bound_attr,
16386 TREE_INT_CST_LOW (bound) & mask);
16388 else if (prec == HOST_BITS_PER_WIDE_INT
16389 || TREE_INT_CST_HIGH (bound) == 0)
16390 add_AT_unsigned (subrange_die, bound_attr,
16391 TREE_INT_CST_LOW (bound));
16392 else
16393 add_AT_double (subrange_die, bound_attr, TREE_INT_CST_HIGH (bound),
16394 TREE_INT_CST_LOW (bound));
16396 break;
16398 CASE_CONVERT:
16399 case VIEW_CONVERT_EXPR:
16400 add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
16401 break;
16403 case SAVE_EXPR:
16404 break;
16406 case VAR_DECL:
16407 case PARM_DECL:
16408 case RESULT_DECL:
16410 dw_die_ref decl_die = lookup_decl_die (bound);
16412 /* ??? Can this happen, or should the variable have been bound
16413 first? Probably it can, since I imagine that we try to create
16414 the types of parameters in the order in which they exist in
16415 the list, and won't have created a forward reference to a
16416 later parameter. */
16417 if (decl_die != NULL)
16419 add_AT_die_ref (subrange_die, bound_attr, decl_die);
16420 break;
16422 want_address = 0;
16424 /* FALLTHRU */
16426 default:
16428 /* Otherwise try to create a stack operation procedure to
16429 evaluate the value of the array bound. */
16431 dw_die_ref ctx, decl_die;
16432 dw_loc_list_ref list;
16434 list = loc_list_from_tree (bound, want_address);
16435 if (list == NULL)
16436 break;
16438 if (single_element_loc_list_p (list))
16440 add_AT_loc (subrange_die, bound_attr, list->expr);
16441 break;
16444 if (current_function_decl == 0)
16445 ctx = comp_unit_die;
16446 else
16447 ctx = lookup_decl_die (current_function_decl);
16449 decl_die = new_die (DW_TAG_variable, ctx, bound);
16450 add_AT_flag (decl_die, DW_AT_artificial, 1);
16451 add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
16452 add_AT_location_description (decl_die, DW_AT_location, list);
16453 add_AT_die_ref (subrange_die, bound_attr, decl_die);
16454 break;
16459 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
16460 possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
16461 Note that the block of subscript information for an array type also
16462 includes information about the element type of the given array type. */
16464 static void
16465 add_subscript_info (dw_die_ref type_die, tree type, bool collapse_p)
16467 unsigned dimension_number;
16468 tree lower, upper;
16469 dw_die_ref subrange_die;
16471 for (dimension_number = 0;
16472 TREE_CODE (type) == ARRAY_TYPE && (dimension_number == 0 || collapse_p);
16473 type = TREE_TYPE (type), dimension_number++)
16475 tree domain = TYPE_DOMAIN (type);
16477 if (TYPE_STRING_FLAG (type) && is_fortran () && dimension_number > 0)
16478 break;
16480 /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
16481 and (in GNU C only) variable bounds. Handle all three forms
16482 here. */
16483 subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
16484 if (domain)
16486 /* We have an array type with specified bounds. */
16487 lower = TYPE_MIN_VALUE (domain);
16488 upper = TYPE_MAX_VALUE (domain);
16490 /* Define the index type. */
16491 if (TREE_TYPE (domain))
16493 /* ??? This is probably an Ada unnamed subrange type. Ignore the
16494 TREE_TYPE field. We can't emit debug info for this
16495 because it is an unnamed integral type. */
16496 if (TREE_CODE (domain) == INTEGER_TYPE
16497 && TYPE_NAME (domain) == NULL_TREE
16498 && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
16499 && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
16501 else
16502 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
16503 type_die);
16506 /* ??? If upper is NULL, the array has unspecified length,
16507 but it does have a lower bound. This happens with Fortran
16508 dimension arr(N:*)
16509 Since the debugger is definitely going to need to know N
16510 to produce useful results, go ahead and output the lower
16511 bound solo, and hope the debugger can cope. */
16513 add_bound_info (subrange_die, DW_AT_lower_bound, lower);
16514 if (upper)
16515 add_bound_info (subrange_die, DW_AT_upper_bound, upper);
16518 /* Otherwise we have an array type with an unspecified length. The
16519 DWARF-2 spec does not say how to handle this; let's just leave out the
16520 bounds. */
16524 static void
16525 add_byte_size_attribute (dw_die_ref die, tree tree_node)
16527 unsigned size;
16529 switch (TREE_CODE (tree_node))
16531 case ERROR_MARK:
16532 size = 0;
16533 break;
16534 case ENUMERAL_TYPE:
16535 case RECORD_TYPE:
16536 case UNION_TYPE:
16537 case QUAL_UNION_TYPE:
16538 size = int_size_in_bytes (tree_node);
16539 break;
16540 case FIELD_DECL:
16541 /* For a data member of a struct or union, the DW_AT_byte_size is
16542 generally given as the number of bytes normally allocated for an
16543 object of the *declared* type of the member itself. This is true
16544 even for bit-fields. */
16545 size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
16546 break;
16547 default:
16548 gcc_unreachable ();
16551 /* Note that `size' might be -1 when we get to this point. If it is, that
16552 indicates that the byte size of the entity in question is variable. We
16553 have no good way of expressing this fact in Dwarf at the present time,
16554 so just let the -1 pass on through. */
16555 add_AT_unsigned (die, DW_AT_byte_size, size);
16558 /* For a FIELD_DECL node which represents a bit-field, output an attribute
16559 which specifies the distance in bits from the highest order bit of the
16560 "containing object" for the bit-field to the highest order bit of the
16561 bit-field itself.
16563 For any given bit-field, the "containing object" is a hypothetical object
16564 (of some integral or enum type) within which the given bit-field lives. The
16565 type of this hypothetical "containing object" is always the same as the
16566 declared type of the individual bit-field itself. The determination of the
16567 exact location of the "containing object" for a bit-field is rather
16568 complicated. It's handled by the `field_byte_offset' function (above).
16570 Note that it is the size (in bytes) of the hypothetical "containing object"
16571 which will be given in the DW_AT_byte_size attribute for this bit-field.
16572 (See `byte_size_attribute' above). */
16574 static inline void
16575 add_bit_offset_attribute (dw_die_ref die, tree decl)
16577 HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
16578 tree type = DECL_BIT_FIELD_TYPE (decl);
16579 HOST_WIDE_INT bitpos_int;
16580 HOST_WIDE_INT highest_order_object_bit_offset;
16581 HOST_WIDE_INT highest_order_field_bit_offset;
16582 HOST_WIDE_INT unsigned bit_offset;
16584 /* Must be a field and a bit field. */
16585 gcc_assert (type && TREE_CODE (decl) == FIELD_DECL);
16587 /* We can't yet handle bit-fields whose offsets are variable, so if we
16588 encounter such things, just return without generating any attribute
16589 whatsoever. Likewise for variable or too large size. */
16590 if (! host_integerp (bit_position (decl), 0)
16591 || ! host_integerp (DECL_SIZE (decl), 1))
16592 return;
16594 bitpos_int = int_bit_position (decl);
16596 /* Note that the bit offset is always the distance (in bits) from the
16597 highest-order bit of the "containing object" to the highest-order bit of
16598 the bit-field itself. Since the "high-order end" of any object or field
16599 is different on big-endian and little-endian machines, the computation
16600 below must take account of these differences. */
16601 highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
16602 highest_order_field_bit_offset = bitpos_int;
16604 if (! BYTES_BIG_ENDIAN)
16606 highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
16607 highest_order_object_bit_offset += simple_type_size_in_bits (type);
16610 bit_offset
16611 = (! BYTES_BIG_ENDIAN
16612 ? highest_order_object_bit_offset - highest_order_field_bit_offset
16613 : highest_order_field_bit_offset - highest_order_object_bit_offset);
16615 add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
16618 /* For a FIELD_DECL node which represents a bit field, output an attribute
16619 which specifies the length in bits of the given field. */
16621 static inline void
16622 add_bit_size_attribute (dw_die_ref die, tree decl)
16624 /* Must be a field and a bit field. */
16625 gcc_assert (TREE_CODE (decl) == FIELD_DECL
16626 && DECL_BIT_FIELD_TYPE (decl));
16628 if (host_integerp (DECL_SIZE (decl), 1))
16629 add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
16632 /* If the compiled language is ANSI C, then add a 'prototyped'
16633 attribute, if arg types are given for the parameters of a function. */
16635 static inline void
16636 add_prototyped_attribute (dw_die_ref die, tree func_type)
16638 if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
16639 && TYPE_ARG_TYPES (func_type) != NULL)
16640 add_AT_flag (die, DW_AT_prototyped, 1);
16643 /* Add an 'abstract_origin' attribute below a given DIE. The DIE is found
16644 by looking in either the type declaration or object declaration
16645 equate table. */
16647 static inline dw_die_ref
16648 add_abstract_origin_attribute (dw_die_ref die, tree origin)
16650 dw_die_ref origin_die = NULL;
16652 if (TREE_CODE (origin) != FUNCTION_DECL)
16654 /* We may have gotten separated from the block for the inlined
16655 function, if we're in an exception handler or some such; make
16656 sure that the abstract function has been written out.
16658 Doing this for nested functions is wrong, however; functions are
16659 distinct units, and our context might not even be inline. */
16660 tree fn = origin;
16662 if (TYPE_P (fn))
16663 fn = TYPE_STUB_DECL (fn);
16665 fn = decl_function_context (fn);
16666 if (fn)
16667 dwarf2out_abstract_function (fn);
16670 if (DECL_P (origin))
16671 origin_die = lookup_decl_die (origin);
16672 else if (TYPE_P (origin))
16673 origin_die = lookup_type_die (origin);
16675 /* XXX: Functions that are never lowered don't always have correct block
16676 trees (in the case of java, they simply have no block tree, in some other
16677 languages). For these functions, there is nothing we can really do to
16678 output correct debug info for inlined functions in all cases. Rather
16679 than die, we'll just produce deficient debug info now, in that we will
16680 have variables without a proper abstract origin. In the future, when all
16681 functions are lowered, we should re-add a gcc_assert (origin_die)
16682 here. */
16684 if (origin_die)
16685 add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
16686 return origin_die;
16689 /* We do not currently support the pure_virtual attribute. */
16691 static inline void
16692 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
16694 if (DECL_VINDEX (func_decl))
16696 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
16698 if (host_integerp (DECL_VINDEX (func_decl), 0))
16699 add_AT_loc (die, DW_AT_vtable_elem_location,
16700 new_loc_descr (DW_OP_constu,
16701 tree_low_cst (DECL_VINDEX (func_decl), 0),
16702 0));
16704 /* GNU extension: Record what type this method came from originally. */
16705 if (debug_info_level > DINFO_LEVEL_TERSE
16706 && DECL_CONTEXT (func_decl))
16707 add_AT_die_ref (die, DW_AT_containing_type,
16708 lookup_type_die (DECL_CONTEXT (func_decl)));
16712 /* Add source coordinate attributes for the given decl. */
16714 static void
16715 add_src_coords_attributes (dw_die_ref die, tree decl)
16717 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
16719 add_AT_file (die, DW_AT_decl_file, lookup_filename (s.file));
16720 add_AT_unsigned (die, DW_AT_decl_line, s.line);
16723 /* Add a DW_AT_name attribute and source coordinate attribute for the
16724 given decl, but only if it actually has a name. */
16726 static void
16727 add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
16729 tree decl_name;
16731 decl_name = DECL_NAME (decl);
16732 if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
16734 const char *name = dwarf2_name (decl, 0);
16735 if (name)
16736 add_name_attribute (die, name);
16737 if (! DECL_ARTIFICIAL (decl))
16738 add_src_coords_attributes (die, decl);
16740 if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
16741 && TREE_PUBLIC (decl)
16742 && !DECL_ABSTRACT (decl)
16743 && !(TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
16744 && !is_fortran ())
16746 /* Defer until we have an assembler name set. */
16747 if (!DECL_ASSEMBLER_NAME_SET_P (decl))
16749 limbo_die_node *asm_name;
16751 asm_name = GGC_CNEW (limbo_die_node);
16752 asm_name->die = die;
16753 asm_name->created_for = decl;
16754 asm_name->next = deferred_asm_name;
16755 deferred_asm_name = asm_name;
16757 else if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
16758 add_AT_string (die, DW_AT_MIPS_linkage_name,
16759 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
16763 #ifdef VMS_DEBUGGING_INFO
16764 /* Get the function's name, as described by its RTL. This may be different
16765 from the DECL_NAME name used in the source file. */
16766 if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
16768 add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
16769 XEXP (DECL_RTL (decl), 0));
16770 VEC_safe_push (rtx, gc, used_rtx_array, XEXP (DECL_RTL (decl), 0));
16772 #endif
16775 /* Push a new declaration scope. */
16777 static void
16778 push_decl_scope (tree scope)
16780 VEC_safe_push (tree, gc, decl_scope_table, scope);
16783 /* Pop a declaration scope. */
16785 static inline void
16786 pop_decl_scope (void)
16788 VEC_pop (tree, decl_scope_table);
16791 /* Return the DIE for the scope that immediately contains this type.
16792 Non-named types get global scope. Named types nested in other
16793 types get their containing scope if it's open, or global scope
16794 otherwise. All other types (i.e. function-local named types) get
16795 the current active scope. */
16797 static dw_die_ref
16798 scope_die_for (tree t, dw_die_ref context_die)
16800 dw_die_ref scope_die = NULL;
16801 tree containing_scope;
16802 int i;
16804 /* Non-types always go in the current scope. */
16805 gcc_assert (TYPE_P (t));
16807 containing_scope = TYPE_CONTEXT (t);
16809 /* Use the containing namespace if it was passed in (for a declaration). */
16810 if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
16812 if (context_die == lookup_decl_die (containing_scope))
16813 /* OK */;
16814 else
16815 containing_scope = NULL_TREE;
16818 /* Ignore function type "scopes" from the C frontend. They mean that
16819 a tagged type is local to a parmlist of a function declarator, but
16820 that isn't useful to DWARF. */
16821 if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
16822 containing_scope = NULL_TREE;
16824 if (containing_scope == NULL_TREE)
16825 scope_die = comp_unit_die;
16826 else if (TYPE_P (containing_scope))
16828 /* For types, we can just look up the appropriate DIE. But
16829 first we check to see if we're in the middle of emitting it
16830 so we know where the new DIE should go. */
16831 for (i = VEC_length (tree, decl_scope_table) - 1; i >= 0; --i)
16832 if (VEC_index (tree, decl_scope_table, i) == containing_scope)
16833 break;
16835 if (i < 0)
16837 gcc_assert (debug_info_level <= DINFO_LEVEL_TERSE
16838 || TREE_ASM_WRITTEN (containing_scope));
16840 /* If none of the current dies are suitable, we get file scope. */
16841 scope_die = comp_unit_die;
16843 else
16844 scope_die = lookup_type_die (containing_scope);
16846 else
16847 scope_die = context_die;
16849 return scope_die;
16852 /* Returns nonzero if CONTEXT_DIE is internal to a function. */
16854 static inline int
16855 local_scope_p (dw_die_ref context_die)
16857 for (; context_die; context_die = context_die->die_parent)
16858 if (context_die->die_tag == DW_TAG_inlined_subroutine
16859 || context_die->die_tag == DW_TAG_subprogram)
16860 return 1;
16862 return 0;
16865 /* Returns nonzero if CONTEXT_DIE is a class. */
16867 static inline int
16868 class_scope_p (dw_die_ref context_die)
16870 return (context_die
16871 && (context_die->die_tag == DW_TAG_structure_type
16872 || context_die->die_tag == DW_TAG_class_type
16873 || context_die->die_tag == DW_TAG_interface_type
16874 || context_die->die_tag == DW_TAG_union_type));
16877 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
16878 whether or not to treat a DIE in this context as a declaration. */
16880 static inline int
16881 class_or_namespace_scope_p (dw_die_ref context_die)
16883 return (class_scope_p (context_die)
16884 || (context_die && context_die->die_tag == DW_TAG_namespace));
16887 /* Many forms of DIEs require a "type description" attribute. This
16888 routine locates the proper "type descriptor" die for the type given
16889 by 'type', and adds a DW_AT_type attribute below the given die. */
16891 static void
16892 add_type_attribute (dw_die_ref object_die, tree type, int decl_const,
16893 int decl_volatile, dw_die_ref context_die)
16895 enum tree_code code = TREE_CODE (type);
16896 dw_die_ref type_die = NULL;
16898 /* ??? If this type is an unnamed subrange type of an integral, floating-point
16899 or fixed-point type, use the inner type. This is because we have no
16900 support for unnamed types in base_type_die. This can happen if this is
16901 an Ada subrange type. Correct solution is emit a subrange type die. */
16902 if ((code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE)
16903 && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
16904 type = TREE_TYPE (type), code = TREE_CODE (type);
16906 if (code == ERROR_MARK
16907 /* Handle a special case. For functions whose return type is void, we
16908 generate *no* type attribute. (Note that no object may have type
16909 `void', so this only applies to function return types). */
16910 || code == VOID_TYPE)
16911 return;
16913 type_die = modified_type_die (type,
16914 decl_const || TYPE_READONLY (type),
16915 decl_volatile || TYPE_VOLATILE (type),
16916 context_die);
16918 if (type_die != NULL)
16919 add_AT_die_ref (object_die, DW_AT_type, type_die);
16922 /* Given an object die, add the calling convention attribute for the
16923 function call type. */
16924 static void
16925 add_calling_convention_attribute (dw_die_ref subr_die, tree decl)
16927 enum dwarf_calling_convention value = DW_CC_normal;
16929 value = ((enum dwarf_calling_convention)
16930 targetm.dwarf_calling_convention (TREE_TYPE (decl)));
16932 /* DWARF doesn't provide a way to identify a program's source-level
16933 entry point. DW_AT_calling_convention attributes are only meant
16934 to describe functions' calling conventions. However, lacking a
16935 better way to signal the Fortran main program, we use this for the
16936 time being, following existing custom. */
16937 if (is_fortran ()
16938 && !strcmp (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)), "MAIN__"))
16939 value = DW_CC_program;
16941 /* Only add the attribute if the backend requests it, and
16942 is not DW_CC_normal. */
16943 if (value && (value != DW_CC_normal))
16944 add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
16947 /* Given a tree pointer to a struct, class, union, or enum type node, return
16948 a pointer to the (string) tag name for the given type, or zero if the type
16949 was declared without a tag. */
16951 static const char *
16952 type_tag (const_tree type)
16954 const char *name = 0;
16956 if (TYPE_NAME (type) != 0)
16958 tree t = 0;
16960 /* Find the IDENTIFIER_NODE for the type name. */
16961 if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
16962 t = TYPE_NAME (type);
16964 /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
16965 a TYPE_DECL node, regardless of whether or not a `typedef' was
16966 involved. */
16967 else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
16968 && ! DECL_IGNORED_P (TYPE_NAME (type)))
16970 /* We want to be extra verbose. Don't call dwarf_name if
16971 DECL_NAME isn't set. The default hook for decl_printable_name
16972 doesn't like that, and in this context it's correct to return
16973 0, instead of "<anonymous>" or the like. */
16974 if (DECL_NAME (TYPE_NAME (type)))
16975 name = lang_hooks.dwarf_name (TYPE_NAME (type), 2);
16978 /* Now get the name as a string, or invent one. */
16979 if (!name && t != 0)
16980 name = IDENTIFIER_POINTER (t);
16983 return (name == 0 || *name == '\0') ? 0 : name;
16986 /* Return the type associated with a data member, make a special check
16987 for bit field types. */
16989 static inline tree
16990 member_declared_type (const_tree member)
16992 return (DECL_BIT_FIELD_TYPE (member)
16993 ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
16996 /* Get the decl's label, as described by its RTL. This may be different
16997 from the DECL_NAME name used in the source file. */
16999 #if 0
17000 static const char *
17001 decl_start_label (tree decl)
17003 rtx x;
17004 const char *fnname;
17006 x = DECL_RTL (decl);
17007 gcc_assert (MEM_P (x));
17009 x = XEXP (x, 0);
17010 gcc_assert (GET_CODE (x) == SYMBOL_REF);
17012 fnname = XSTR (x, 0);
17013 return fnname;
17015 #endif
17017 /* These routines generate the internal representation of the DIE's for
17018 the compilation unit. Debugging information is collected by walking
17019 the declaration trees passed in from dwarf2out_decl(). */
17021 static void
17022 gen_array_type_die (tree type, dw_die_ref context_die)
17024 dw_die_ref scope_die = scope_die_for (type, context_die);
17025 dw_die_ref array_die;
17027 /* GNU compilers represent multidimensional array types as sequences of one
17028 dimensional array types whose element types are themselves array types.
17029 We sometimes squish that down to a single array_type DIE with multiple
17030 subscripts in the Dwarf debugging info. The draft Dwarf specification
17031 say that we are allowed to do this kind of compression in C, because
17032 there is no difference between an array of arrays and a multidimensional
17033 array. We don't do this for Ada to remain as close as possible to the
17034 actual representation, which is especially important against the language
17035 flexibilty wrt arrays of variable size. */
17037 bool collapse_nested_arrays = !is_ada ();
17038 tree element_type;
17040 /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
17041 DW_TAG_string_type doesn't have DW_AT_type attribute). */
17042 if (TYPE_STRING_FLAG (type)
17043 && TREE_CODE (type) == ARRAY_TYPE
17044 && is_fortran ()
17045 && TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (char_type_node))
17047 HOST_WIDE_INT size;
17049 array_die = new_die (DW_TAG_string_type, scope_die, type);
17050 add_name_attribute (array_die, type_tag (type));
17051 equate_type_number_to_die (type, array_die);
17052 size = int_size_in_bytes (type);
17053 if (size >= 0)
17054 add_AT_unsigned (array_die, DW_AT_byte_size, size);
17055 else if (TYPE_DOMAIN (type) != NULL_TREE
17056 && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != NULL_TREE
17057 && DECL_P (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
17059 tree szdecl = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
17060 dw_loc_list_ref loc = loc_list_from_tree (szdecl, 2);
17062 size = int_size_in_bytes (TREE_TYPE (szdecl));
17063 if (loc && size > 0)
17065 add_AT_location_description (array_die, DW_AT_string_length, loc);
17066 if (size != DWARF2_ADDR_SIZE)
17067 add_AT_unsigned (array_die, DW_AT_byte_size, size);
17070 return;
17073 /* ??? The SGI dwarf reader fails for array of array of enum types
17074 (e.g. const enum machine_mode insn_operand_mode[2][10]) unless the inner
17075 array type comes before the outer array type. We thus call gen_type_die
17076 before we new_die and must prevent nested array types collapsing for this
17077 target. */
17079 #ifdef MIPS_DEBUGGING_INFO
17080 gen_type_die (TREE_TYPE (type), context_die);
17081 collapse_nested_arrays = false;
17082 #endif
17084 array_die = new_die (DW_TAG_array_type, scope_die, type);
17085 add_name_attribute (array_die, type_tag (type));
17086 equate_type_number_to_die (type, array_die);
17088 if (TREE_CODE (type) == VECTOR_TYPE)
17090 /* The frontend feeds us a representation for the vector as a struct
17091 containing an array. Pull out the array type. */
17092 type = TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type)));
17093 add_AT_flag (array_die, DW_AT_GNU_vector, 1);
17096 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
17097 if (is_fortran ()
17098 && TREE_CODE (type) == ARRAY_TYPE
17099 && TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE
17100 && !TYPE_STRING_FLAG (TREE_TYPE (type)))
17101 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
17103 #if 0
17104 /* We default the array ordering. SDB will probably do
17105 the right things even if DW_AT_ordering is not present. It's not even
17106 an issue until we start to get into multidimensional arrays anyway. If
17107 SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
17108 then we'll have to put the DW_AT_ordering attribute back in. (But if
17109 and when we find out that we need to put these in, we will only do so
17110 for multidimensional arrays. */
17111 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
17112 #endif
17114 #ifdef MIPS_DEBUGGING_INFO
17115 /* The SGI compilers handle arrays of unknown bound by setting
17116 AT_declaration and not emitting any subrange DIEs. */
17117 if (! TYPE_DOMAIN (type))
17118 add_AT_flag (array_die, DW_AT_declaration, 1);
17119 else
17120 #endif
17121 add_subscript_info (array_die, type, collapse_nested_arrays);
17123 /* Add representation of the type of the elements of this array type and
17124 emit the corresponding DIE if we haven't done it already. */
17125 element_type = TREE_TYPE (type);
17126 if (collapse_nested_arrays)
17127 while (TREE_CODE (element_type) == ARRAY_TYPE)
17129 if (TYPE_STRING_FLAG (element_type) && is_fortran ())
17130 break;
17131 element_type = TREE_TYPE (element_type);
17134 #ifndef MIPS_DEBUGGING_INFO
17135 gen_type_die (element_type, context_die);
17136 #endif
17138 add_type_attribute (array_die, element_type, 0, 0, context_die);
17140 if (get_AT (array_die, DW_AT_name))
17141 add_pubtype (type, array_die);
17144 static dw_loc_descr_ref
17145 descr_info_loc (tree val, tree base_decl)
17147 HOST_WIDE_INT size;
17148 dw_loc_descr_ref loc, loc2;
17149 enum dwarf_location_atom op;
17151 if (val == base_decl)
17152 return new_loc_descr (DW_OP_push_object_address, 0, 0);
17154 switch (TREE_CODE (val))
17156 CASE_CONVERT:
17157 return descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17158 case VAR_DECL:
17159 return loc_descriptor_from_tree (val, 0);
17160 case INTEGER_CST:
17161 if (host_integerp (val, 0))
17162 return int_loc_descriptor (tree_low_cst (val, 0));
17163 break;
17164 case INDIRECT_REF:
17165 size = int_size_in_bytes (TREE_TYPE (val));
17166 if (size < 0)
17167 break;
17168 loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17169 if (!loc)
17170 break;
17171 if (size == DWARF2_ADDR_SIZE)
17172 add_loc_descr (&loc, new_loc_descr (DW_OP_deref, 0, 0));
17173 else
17174 add_loc_descr (&loc, new_loc_descr (DW_OP_deref_size, size, 0));
17175 return loc;
17176 case POINTER_PLUS_EXPR:
17177 case PLUS_EXPR:
17178 if (host_integerp (TREE_OPERAND (val, 1), 1)
17179 && (unsigned HOST_WIDE_INT) tree_low_cst (TREE_OPERAND (val, 1), 1)
17180 < 16384)
17182 loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17183 if (!loc)
17184 break;
17185 loc_descr_plus_const (&loc, tree_low_cst (TREE_OPERAND (val, 1), 0));
17187 else
17189 op = DW_OP_plus;
17190 do_binop:
17191 loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17192 if (!loc)
17193 break;
17194 loc2 = descr_info_loc (TREE_OPERAND (val, 1), base_decl);
17195 if (!loc2)
17196 break;
17197 add_loc_descr (&loc, loc2);
17198 add_loc_descr (&loc2, new_loc_descr (op, 0, 0));
17200 return loc;
17201 case MINUS_EXPR:
17202 op = DW_OP_minus;
17203 goto do_binop;
17204 case MULT_EXPR:
17205 op = DW_OP_mul;
17206 goto do_binop;
17207 case EQ_EXPR:
17208 op = DW_OP_eq;
17209 goto do_binop;
17210 case NE_EXPR:
17211 op = DW_OP_ne;
17212 goto do_binop;
17213 default:
17214 break;
17216 return NULL;
17219 static void
17220 add_descr_info_field (dw_die_ref die, enum dwarf_attribute attr,
17221 tree val, tree base_decl)
17223 dw_loc_descr_ref loc;
17225 if (host_integerp (val, 0))
17227 add_AT_unsigned (die, attr, tree_low_cst (val, 0));
17228 return;
17231 loc = descr_info_loc (val, base_decl);
17232 if (!loc)
17233 return;
17235 add_AT_loc (die, attr, loc);
17238 /* This routine generates DIE for array with hidden descriptor, details
17239 are filled into *info by a langhook. */
17241 static void
17242 gen_descr_array_type_die (tree type, struct array_descr_info *info,
17243 dw_die_ref context_die)
17245 dw_die_ref scope_die = scope_die_for (type, context_die);
17246 dw_die_ref array_die;
17247 int dim;
17249 array_die = new_die (DW_TAG_array_type, scope_die, type);
17250 add_name_attribute (array_die, type_tag (type));
17251 equate_type_number_to_die (type, array_die);
17253 /* For Fortran multidimensional arrays use DW_ORD_col_major ordering. */
17254 if (is_fortran ()
17255 && info->ndimensions >= 2)
17256 add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
17258 if (info->data_location)
17259 add_descr_info_field (array_die, DW_AT_data_location, info->data_location,
17260 info->base_decl);
17261 if (info->associated)
17262 add_descr_info_field (array_die, DW_AT_associated, info->associated,
17263 info->base_decl);
17264 if (info->allocated)
17265 add_descr_info_field (array_die, DW_AT_allocated, info->allocated,
17266 info->base_decl);
17268 for (dim = 0; dim < info->ndimensions; dim++)
17270 dw_die_ref subrange_die
17271 = new_die (DW_TAG_subrange_type, array_die, NULL);
17273 if (info->dimen[dim].lower_bound)
17275 /* If it is the default value, omit it. */
17276 int dflt;
17278 if (host_integerp (info->dimen[dim].lower_bound, 0)
17279 && (dflt = lower_bound_default ()) != -1
17280 && tree_low_cst (info->dimen[dim].lower_bound, 0) == dflt)
17282 else
17283 add_descr_info_field (subrange_die, DW_AT_lower_bound,
17284 info->dimen[dim].lower_bound,
17285 info->base_decl);
17287 if (info->dimen[dim].upper_bound)
17288 add_descr_info_field (subrange_die, DW_AT_upper_bound,
17289 info->dimen[dim].upper_bound,
17290 info->base_decl);
17291 if (info->dimen[dim].stride)
17292 add_descr_info_field (subrange_die, DW_AT_byte_stride,
17293 info->dimen[dim].stride,
17294 info->base_decl);
17297 gen_type_die (info->element_type, context_die);
17298 add_type_attribute (array_die, info->element_type, 0, 0, context_die);
17300 if (get_AT (array_die, DW_AT_name))
17301 add_pubtype (type, array_die);
17304 #if 0
17305 static void
17306 gen_entry_point_die (tree decl, dw_die_ref context_die)
17308 tree origin = decl_ultimate_origin (decl);
17309 dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
17311 if (origin != NULL)
17312 add_abstract_origin_attribute (decl_die, origin);
17313 else
17315 add_name_and_src_coords_attributes (decl_die, decl);
17316 add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
17317 0, 0, context_die);
17320 if (DECL_ABSTRACT (decl))
17321 equate_decl_number_to_die (decl, decl_die);
17322 else
17323 add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
17325 #endif
17327 /* Walk through the list of incomplete types again, trying once more to
17328 emit full debugging info for them. */
17330 static void
17331 retry_incomplete_types (void)
17333 int i;
17335 for (i = VEC_length (tree, incomplete_types) - 1; i >= 0; i--)
17336 if (should_emit_struct_debug (VEC_index (tree, incomplete_types, i),
17337 DINFO_USAGE_DIR_USE))
17338 gen_type_die (VEC_index (tree, incomplete_types, i), comp_unit_die);
17341 /* Determine what tag to use for a record type. */
17343 static enum dwarf_tag
17344 record_type_tag (tree type)
17346 if (! lang_hooks.types.classify_record)
17347 return DW_TAG_structure_type;
17349 switch (lang_hooks.types.classify_record (type))
17351 case RECORD_IS_STRUCT:
17352 return DW_TAG_structure_type;
17354 case RECORD_IS_CLASS:
17355 return DW_TAG_class_type;
17357 case RECORD_IS_INTERFACE:
17358 if (dwarf_version >= 3 || !dwarf_strict)
17359 return DW_TAG_interface_type;
17360 return DW_TAG_structure_type;
17362 default:
17363 gcc_unreachable ();
17367 /* Generate a DIE to represent an enumeration type. Note that these DIEs
17368 include all of the information about the enumeration values also. Each
17369 enumerated type name/value is listed as a child of the enumerated type
17370 DIE. */
17372 static dw_die_ref
17373 gen_enumeration_type_die (tree type, dw_die_ref context_die)
17375 dw_die_ref type_die = lookup_type_die (type);
17377 if (type_die == NULL)
17379 type_die = new_die (DW_TAG_enumeration_type,
17380 scope_die_for (type, context_die), type);
17381 equate_type_number_to_die (type, type_die);
17382 add_name_attribute (type_die, type_tag (type));
17384 else if (! TYPE_SIZE (type))
17385 return type_die;
17386 else
17387 remove_AT (type_die, DW_AT_declaration);
17389 /* Handle a GNU C/C++ extension, i.e. incomplete enum types. If the
17390 given enum type is incomplete, do not generate the DW_AT_byte_size
17391 attribute or the DW_AT_element_list attribute. */
17392 if (TYPE_SIZE (type))
17394 tree link;
17396 TREE_ASM_WRITTEN (type) = 1;
17397 add_byte_size_attribute (type_die, type);
17398 if (TYPE_STUB_DECL (type) != NULL_TREE)
17399 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
17401 /* If the first reference to this type was as the return type of an
17402 inline function, then it may not have a parent. Fix this now. */
17403 if (type_die->die_parent == NULL)
17404 add_child_die (scope_die_for (type, context_die), type_die);
17406 for (link = TYPE_VALUES (type);
17407 link != NULL; link = TREE_CHAIN (link))
17409 dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
17410 tree value = TREE_VALUE (link);
17412 add_name_attribute (enum_die,
17413 IDENTIFIER_POINTER (TREE_PURPOSE (link)));
17415 if (TREE_CODE (value) == CONST_DECL)
17416 value = DECL_INITIAL (value);
17418 if (host_integerp (value, TYPE_UNSIGNED (TREE_TYPE (value))))
17419 /* DWARF2 does not provide a way of indicating whether or
17420 not enumeration constants are signed or unsigned. GDB
17421 always assumes the values are signed, so we output all
17422 values as if they were signed. That means that
17423 enumeration constants with very large unsigned values
17424 will appear to have negative values in the debugger. */
17425 add_AT_int (enum_die, DW_AT_const_value,
17426 tree_low_cst (value, tree_int_cst_sgn (value) > 0));
17429 else
17430 add_AT_flag (type_die, DW_AT_declaration, 1);
17432 if (get_AT (type_die, DW_AT_name))
17433 add_pubtype (type, type_die);
17435 return type_die;
17438 /* Generate a DIE to represent either a real live formal parameter decl or to
17439 represent just the type of some formal parameter position in some function
17440 type.
17442 Note that this routine is a bit unusual because its argument may be a
17443 ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
17444 represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
17445 node. If it's the former then this function is being called to output a
17446 DIE to represent a formal parameter object (or some inlining thereof). If
17447 it's the latter, then this function is only being called to output a
17448 DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
17449 argument type of some subprogram type.
17450 If EMIT_NAME_P is true, name and source coordinate attributes
17451 are emitted. */
17453 static dw_die_ref
17454 gen_formal_parameter_die (tree node, tree origin, bool emit_name_p,
17455 dw_die_ref context_die)
17457 tree node_or_origin = node ? node : origin;
17458 tree ultimate_origin;
17459 dw_die_ref parm_die
17460 = new_die (DW_TAG_formal_parameter, context_die, node);
17462 switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin)))
17464 case tcc_declaration:
17465 ultimate_origin = decl_ultimate_origin (node_or_origin);
17466 if (node || ultimate_origin)
17467 origin = ultimate_origin;
17468 if (origin != NULL)
17469 add_abstract_origin_attribute (parm_die, origin);
17470 else
17472 tree type = TREE_TYPE (node);
17473 if (emit_name_p)
17474 add_name_and_src_coords_attributes (parm_die, node);
17475 if (decl_by_reference_p (node))
17476 add_type_attribute (parm_die, TREE_TYPE (type), 0, 0,
17477 context_die);
17478 else
17479 add_type_attribute (parm_die, type,
17480 TREE_READONLY (node),
17481 TREE_THIS_VOLATILE (node),
17482 context_die);
17483 if (DECL_ARTIFICIAL (node))
17484 add_AT_flag (parm_die, DW_AT_artificial, 1);
17487 if (node && node != origin)
17488 equate_decl_number_to_die (node, parm_die);
17489 if (! DECL_ABSTRACT (node_or_origin))
17490 add_location_or_const_value_attribute (parm_die, node_or_origin,
17491 DW_AT_location);
17493 break;
17495 case tcc_type:
17496 /* We were called with some kind of a ..._TYPE node. */
17497 add_type_attribute (parm_die, node_or_origin, 0, 0, context_die);
17498 break;
17500 default:
17501 gcc_unreachable ();
17504 return parm_die;
17507 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
17508 children DW_TAG_formal_parameter DIEs representing the arguments of the
17509 parameter pack.
17511 PARM_PACK must be a function parameter pack.
17512 PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
17513 must point to the subsequent arguments of the function PACK_ARG belongs to.
17514 SUBR_DIE is the DIE of the function PACK_ARG belongs to.
17515 If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
17516 following the last one for which a DIE was generated. */
17518 static dw_die_ref
17519 gen_formal_parameter_pack_die (tree parm_pack,
17520 tree pack_arg,
17521 dw_die_ref subr_die,
17522 tree *next_arg)
17524 tree arg;
17525 dw_die_ref parm_pack_die;
17527 gcc_assert (parm_pack
17528 && lang_hooks.function_parameter_pack_p (parm_pack)
17529 && subr_die);
17531 parm_pack_die = new_die (DW_TAG_GNU_formal_parameter_pack, subr_die, parm_pack);
17532 add_src_coords_attributes (parm_pack_die, parm_pack);
17534 for (arg = pack_arg; arg; arg = TREE_CHAIN (arg))
17536 if (! lang_hooks.decls.function_parm_expanded_from_pack_p (arg,
17537 parm_pack))
17538 break;
17539 gen_formal_parameter_die (arg, NULL,
17540 false /* Don't emit name attribute. */,
17541 parm_pack_die);
17543 if (next_arg)
17544 *next_arg = arg;
17545 return parm_pack_die;
17548 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
17549 at the end of an (ANSI prototyped) formal parameters list. */
17551 static void
17552 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
17554 new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
17557 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
17558 DW_TAG_unspecified_parameters DIE) to represent the types of the formal
17559 parameters as specified in some function type specification (except for
17560 those which appear as part of a function *definition*). */
17562 static void
17563 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
17565 tree link;
17566 tree formal_type = NULL;
17567 tree first_parm_type;
17568 tree arg;
17570 if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
17572 arg = DECL_ARGUMENTS (function_or_method_type);
17573 function_or_method_type = TREE_TYPE (function_or_method_type);
17575 else
17576 arg = NULL_TREE;
17578 first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
17580 /* Make our first pass over the list of formal parameter types and output a
17581 DW_TAG_formal_parameter DIE for each one. */
17582 for (link = first_parm_type; link; )
17584 dw_die_ref parm_die;
17586 formal_type = TREE_VALUE (link);
17587 if (formal_type == void_type_node)
17588 break;
17590 /* Output a (nameless) DIE to represent the formal parameter itself. */
17591 parm_die = gen_formal_parameter_die (formal_type, NULL,
17592 true /* Emit name attribute. */,
17593 context_die);
17594 if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
17595 && link == first_parm_type)
17596 || (arg && DECL_ARTIFICIAL (arg)))
17597 add_AT_flag (parm_die, DW_AT_artificial, 1);
17599 link = TREE_CHAIN (link);
17600 if (arg)
17601 arg = TREE_CHAIN (arg);
17604 /* If this function type has an ellipsis, add a
17605 DW_TAG_unspecified_parameters DIE to the end of the parameter list. */
17606 if (formal_type != void_type_node)
17607 gen_unspecified_parameters_die (function_or_method_type, context_die);
17609 /* Make our second (and final) pass over the list of formal parameter types
17610 and output DIEs to represent those types (as necessary). */
17611 for (link = TYPE_ARG_TYPES (function_or_method_type);
17612 link && TREE_VALUE (link);
17613 link = TREE_CHAIN (link))
17614 gen_type_die (TREE_VALUE (link), context_die);
17617 /* We want to generate the DIE for TYPE so that we can generate the
17618 die for MEMBER, which has been defined; we will need to refer back
17619 to the member declaration nested within TYPE. If we're trying to
17620 generate minimal debug info for TYPE, processing TYPE won't do the
17621 trick; we need to attach the member declaration by hand. */
17623 static void
17624 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
17626 gen_type_die (type, context_die);
17628 /* If we're trying to avoid duplicate debug info, we may not have
17629 emitted the member decl for this function. Emit it now. */
17630 if (TYPE_STUB_DECL (type)
17631 && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
17632 && ! lookup_decl_die (member))
17634 dw_die_ref type_die;
17635 gcc_assert (!decl_ultimate_origin (member));
17637 push_decl_scope (type);
17638 type_die = lookup_type_die (type);
17639 if (TREE_CODE (member) == FUNCTION_DECL)
17640 gen_subprogram_die (member, type_die);
17641 else if (TREE_CODE (member) == FIELD_DECL)
17643 /* Ignore the nameless fields that are used to skip bits but handle
17644 C++ anonymous unions and structs. */
17645 if (DECL_NAME (member) != NULL_TREE
17646 || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
17647 || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
17649 gen_type_die (member_declared_type (member), type_die);
17650 gen_field_die (member, type_die);
17653 else
17654 gen_variable_die (member, NULL_TREE, type_die);
17656 pop_decl_scope ();
17660 /* Generate the DWARF2 info for the "abstract" instance of a function which we
17661 may later generate inlined and/or out-of-line instances of. */
17663 static void
17664 dwarf2out_abstract_function (tree decl)
17666 dw_die_ref old_die;
17667 tree save_fn;
17668 tree context;
17669 int was_abstract;
17670 htab_t old_decl_loc_table;
17672 /* Make sure we have the actual abstract inline, not a clone. */
17673 decl = DECL_ORIGIN (decl);
17675 old_die = lookup_decl_die (decl);
17676 if (old_die && get_AT (old_die, DW_AT_inline))
17677 /* We've already generated the abstract instance. */
17678 return;
17680 /* We can be called while recursively when seeing block defining inlined subroutine
17681 DIE. Be sure to not clobber the outer location table nor use it or we would
17682 get locations in abstract instantces. */
17683 old_decl_loc_table = decl_loc_table;
17684 decl_loc_table = NULL;
17686 /* Be sure we've emitted the in-class declaration DIE (if any) first, so
17687 we don't get confused by DECL_ABSTRACT. */
17688 if (debug_info_level > DINFO_LEVEL_TERSE)
17690 context = decl_class_context (decl);
17691 if (context)
17692 gen_type_die_for_member
17693 (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
17696 /* Pretend we've just finished compiling this function. */
17697 save_fn = current_function_decl;
17698 current_function_decl = decl;
17699 push_cfun (DECL_STRUCT_FUNCTION (decl));
17701 was_abstract = DECL_ABSTRACT (decl);
17702 set_decl_abstract_flags (decl, 1);
17703 dwarf2out_decl (decl);
17704 if (! was_abstract)
17705 set_decl_abstract_flags (decl, 0);
17707 current_function_decl = save_fn;
17708 decl_loc_table = old_decl_loc_table;
17709 pop_cfun ();
17712 /* Helper function of premark_used_types() which gets called through
17713 htab_traverse.
17715 Marks the DIE of a given type in *SLOT as perennial, so it never gets
17716 marked as unused by prune_unused_types. */
17718 static int
17719 premark_used_types_helper (void **slot, void *data ATTRIBUTE_UNUSED)
17721 tree type;
17722 dw_die_ref die;
17724 type = (tree) *slot;
17725 die = lookup_type_die (type);
17726 if (die != NULL)
17727 die->die_perennial_p = 1;
17728 return 1;
17731 /* Helper function of premark_types_used_by_global_vars which gets called
17732 through htab_traverse.
17734 Marks the DIE of a given type in *SLOT as perennial, so it never gets
17735 marked as unused by prune_unused_types. The DIE of the type is marked
17736 only if the global variable using the type will actually be emitted. */
17738 static int
17739 premark_types_used_by_global_vars_helper (void **slot,
17740 void *data ATTRIBUTE_UNUSED)
17742 struct types_used_by_vars_entry *entry;
17743 dw_die_ref die;
17745 entry = (struct types_used_by_vars_entry *) *slot;
17746 gcc_assert (entry->type != NULL
17747 && entry->var_decl != NULL);
17748 die = lookup_type_die (entry->type);
17749 if (die)
17751 /* Ask cgraph if the global variable really is to be emitted.
17752 If yes, then we'll keep the DIE of ENTRY->TYPE. */
17753 struct varpool_node *node = varpool_node (entry->var_decl);
17754 if (node->needed)
17756 die->die_perennial_p = 1;
17757 /* Keep the parent DIEs as well. */
17758 while ((die = die->die_parent) && die->die_perennial_p == 0)
17759 die->die_perennial_p = 1;
17762 return 1;
17765 /* Mark all members of used_types_hash as perennial. */
17767 static void
17768 premark_used_types (void)
17770 if (cfun && cfun->used_types_hash)
17771 htab_traverse (cfun->used_types_hash, premark_used_types_helper, NULL);
17774 /* Mark all members of types_used_by_vars_entry as perennial. */
17776 static void
17777 premark_types_used_by_global_vars (void)
17779 if (types_used_by_vars_hash)
17780 htab_traverse (types_used_by_vars_hash,
17781 premark_types_used_by_global_vars_helper, NULL);
17784 /* Generate a DIE to represent a declared function (either file-scope or
17785 block-local). */
17787 static void
17788 gen_subprogram_die (tree decl, dw_die_ref context_die)
17790 char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
17791 tree origin = decl_ultimate_origin (decl);
17792 dw_die_ref subr_die;
17793 tree fn_arg_types;
17794 tree outer_scope;
17795 dw_die_ref old_die = lookup_decl_die (decl);
17796 int declaration = (current_function_decl != decl
17797 || class_or_namespace_scope_p (context_die));
17799 premark_used_types ();
17801 /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
17802 started to generate the abstract instance of an inline, decided to output
17803 its containing class, and proceeded to emit the declaration of the inline
17804 from the member list for the class. If so, DECLARATION takes priority;
17805 we'll get back to the abstract instance when done with the class. */
17807 /* The class-scope declaration DIE must be the primary DIE. */
17808 if (origin && declaration && class_or_namespace_scope_p (context_die))
17810 origin = NULL;
17811 gcc_assert (!old_die);
17814 /* Now that the C++ front end lazily declares artificial member fns, we
17815 might need to retrofit the declaration into its class. */
17816 if (!declaration && !origin && !old_die
17817 && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
17818 && !class_or_namespace_scope_p (context_die)
17819 && debug_info_level > DINFO_LEVEL_TERSE)
17820 old_die = force_decl_die (decl);
17822 if (origin != NULL)
17824 gcc_assert (!declaration || local_scope_p (context_die));
17826 /* Fixup die_parent for the abstract instance of a nested
17827 inline function. */
17828 if (old_die && old_die->die_parent == NULL)
17829 add_child_die (context_die, old_die);
17831 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
17832 add_abstract_origin_attribute (subr_die, origin);
17834 else if (old_die)
17836 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
17837 struct dwarf_file_data * file_index = lookup_filename (s.file);
17839 if (!get_AT_flag (old_die, DW_AT_declaration)
17840 /* We can have a normal definition following an inline one in the
17841 case of redefinition of GNU C extern inlines.
17842 It seems reasonable to use AT_specification in this case. */
17843 && !get_AT (old_die, DW_AT_inline))
17845 /* Detect and ignore this case, where we are trying to output
17846 something we have already output. */
17847 return;
17850 /* If the definition comes from the same place as the declaration,
17851 maybe use the old DIE. We always want the DIE for this function
17852 that has the *_pc attributes to be under comp_unit_die so the
17853 debugger can find it. We also need to do this for abstract
17854 instances of inlines, since the spec requires the out-of-line copy
17855 to have the same parent. For local class methods, this doesn't
17856 apply; we just use the old DIE. */
17857 if ((old_die->die_parent == comp_unit_die || context_die == NULL)
17858 && (DECL_ARTIFICIAL (decl)
17859 || (get_AT_file (old_die, DW_AT_decl_file) == file_index
17860 && (get_AT_unsigned (old_die, DW_AT_decl_line)
17861 == (unsigned) s.line))))
17863 subr_die = old_die;
17865 /* Clear out the declaration attribute and the formal parameters.
17866 Do not remove all children, because it is possible that this
17867 declaration die was forced using force_decl_die(). In such
17868 cases die that forced declaration die (e.g. TAG_imported_module)
17869 is one of the children that we do not want to remove. */
17870 remove_AT (subr_die, DW_AT_declaration);
17871 remove_child_TAG (subr_die, DW_TAG_formal_parameter);
17873 else
17875 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
17876 add_AT_specification (subr_die, old_die);
17877 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
17878 add_AT_file (subr_die, DW_AT_decl_file, file_index);
17879 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
17880 add_AT_unsigned (subr_die, DW_AT_decl_line, s.line);
17883 else
17885 subr_die = new_die (DW_TAG_subprogram, context_die, decl);
17887 if (TREE_PUBLIC (decl))
17888 add_AT_flag (subr_die, DW_AT_external, 1);
17890 add_name_and_src_coords_attributes (subr_die, decl);
17891 if (debug_info_level > DINFO_LEVEL_TERSE)
17893 add_prototyped_attribute (subr_die, TREE_TYPE (decl));
17894 add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
17895 0, 0, context_die);
17898 add_pure_or_virtual_attribute (subr_die, decl);
17899 if (DECL_ARTIFICIAL (decl))
17900 add_AT_flag (subr_die, DW_AT_artificial, 1);
17902 if (TREE_PROTECTED (decl))
17903 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
17904 else if (TREE_PRIVATE (decl))
17905 add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
17908 if (declaration)
17910 if (!old_die || !get_AT (old_die, DW_AT_inline))
17912 add_AT_flag (subr_die, DW_AT_declaration, 1);
17914 /* If this is an explicit function declaration then generate
17915 a DW_AT_explicit attribute. */
17916 if (lang_hooks.decls.function_decl_explicit_p (decl)
17917 && (dwarf_version >= 3 || !dwarf_strict))
17918 add_AT_flag (subr_die, DW_AT_explicit, 1);
17920 /* The first time we see a member function, it is in the context of
17921 the class to which it belongs. We make sure of this by emitting
17922 the class first. The next time is the definition, which is
17923 handled above. The two may come from the same source text.
17925 Note that force_decl_die() forces function declaration die. It is
17926 later reused to represent definition. */
17927 equate_decl_number_to_die (decl, subr_die);
17930 else if (DECL_ABSTRACT (decl))
17932 if (DECL_DECLARED_INLINE_P (decl))
17934 if (cgraph_function_possibly_inlined_p (decl))
17935 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
17936 else
17937 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
17939 else
17941 if (cgraph_function_possibly_inlined_p (decl))
17942 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
17943 else
17944 add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_not_inlined);
17947 if (DECL_DECLARED_INLINE_P (decl)
17948 && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl)))
17949 add_AT_flag (subr_die, DW_AT_artificial, 1);
17951 equate_decl_number_to_die (decl, subr_die);
17953 else if (!DECL_EXTERNAL (decl))
17955 HOST_WIDE_INT cfa_fb_offset;
17957 if (!old_die || !get_AT (old_die, DW_AT_inline))
17958 equate_decl_number_to_die (decl, subr_die);
17960 if (!flag_reorder_blocks_and_partition)
17962 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
17963 current_function_funcdef_no);
17964 add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
17965 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
17966 current_function_funcdef_no);
17967 add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
17969 add_pubname (decl, subr_die);
17970 add_arange (decl, subr_die);
17972 else
17973 { /* Do nothing for now; maybe need to duplicate die, one for
17974 hot section and one for cold section, then use the hot/cold
17975 section begin/end labels to generate the aranges... */
17977 add_AT_lbl_id (subr_die, DW_AT_low_pc, hot_section_label);
17978 add_AT_lbl_id (subr_die, DW_AT_high_pc, hot_section_end_label);
17979 add_AT_lbl_id (subr_die, DW_AT_lo_user, unlikely_section_label);
17980 add_AT_lbl_id (subr_die, DW_AT_hi_user, cold_section_end_label);
17982 add_pubname (decl, subr_die);
17983 add_arange (decl, subr_die);
17984 add_arange (decl, subr_die);
17988 #ifdef MIPS_DEBUGGING_INFO
17989 /* Add a reference to the FDE for this routine. */
17990 add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
17991 #endif
17993 cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
17995 /* We define the "frame base" as the function's CFA. This is more
17996 convenient for several reasons: (1) It's stable across the prologue
17997 and epilogue, which makes it better than just a frame pointer,
17998 (2) With dwarf3, there exists a one-byte encoding that allows us
17999 to reference the .debug_frame data by proxy, but failing that,
18000 (3) We can at least reuse the code inspection and interpretation
18001 code that determines the CFA position at various points in the
18002 function. */
18003 if (dwarf_version >= 3)
18005 dw_loc_descr_ref op = new_loc_descr (DW_OP_call_frame_cfa, 0, 0);
18006 add_AT_loc (subr_die, DW_AT_frame_base, op);
18008 else
18010 dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
18011 if (list->dw_loc_next)
18012 add_AT_loc_list (subr_die, DW_AT_frame_base, list);
18013 else
18014 add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
18017 /* Compute a displacement from the "steady-state frame pointer" to
18018 the CFA. The former is what all stack slots and argument slots
18019 will reference in the rtl; the later is what we've told the
18020 debugger about. We'll need to adjust all frame_base references
18021 by this displacement. */
18022 compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
18024 if (cfun->static_chain_decl)
18025 add_AT_location_description (subr_die, DW_AT_static_link,
18026 loc_list_from_tree (cfun->static_chain_decl, 2));
18029 /* Generate child dies for template paramaters. */
18030 if (debug_info_level > DINFO_LEVEL_TERSE)
18031 gen_generic_params_dies (decl);
18033 /* Now output descriptions of the arguments for this function. This gets
18034 (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
18035 for a FUNCTION_DECL doesn't indicate cases where there was a trailing
18036 `...' at the end of the formal parameter list. In order to find out if
18037 there was a trailing ellipsis or not, we must instead look at the type
18038 associated with the FUNCTION_DECL. This will be a node of type
18039 FUNCTION_TYPE. If the chain of type nodes hanging off of this
18040 FUNCTION_TYPE node ends with a void_type_node then there should *not* be
18041 an ellipsis at the end. */
18043 /* In the case where we are describing a mere function declaration, all we
18044 need to do here (and all we *can* do here) is to describe the *types* of
18045 its formal parameters. */
18046 if (debug_info_level <= DINFO_LEVEL_TERSE)
18048 else if (declaration)
18049 gen_formal_types_die (decl, subr_die);
18050 else
18052 /* Generate DIEs to represent all known formal parameters. */
18053 tree parm = DECL_ARGUMENTS (decl);
18054 tree generic_decl = lang_hooks.decls.get_generic_function_decl (decl);
18055 tree generic_decl_parm = generic_decl
18056 ? DECL_ARGUMENTS (generic_decl)
18057 : NULL;
18059 /* Now we want to walk the list of parameters of the function and
18060 emit their relevant DIEs.
18062 We consider the case of DECL being an instance of a generic function
18063 as well as it being a normal function.
18065 If DECL is an instance of a generic function we walk the
18066 parameters of the generic function declaration _and_ the parameters of
18067 DECL itself. This is useful because we want to emit specific DIEs for
18068 function parameter packs and those are declared as part of the
18069 generic function declaration. In that particular case,
18070 the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
18071 That DIE has children DIEs representing the set of arguments
18072 of the pack. Note that the set of pack arguments can be empty.
18073 In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
18074 children DIE.
18076 Otherwise, we just consider the parameters of DECL. */
18077 while (generic_decl_parm || parm)
18079 if (generic_decl_parm
18080 && lang_hooks.function_parameter_pack_p (generic_decl_parm))
18081 gen_formal_parameter_pack_die (generic_decl_parm,
18082 parm, subr_die,
18083 &parm);
18084 else if (parm)
18086 gen_decl_die (parm, NULL, subr_die);
18087 parm = TREE_CHAIN (parm);
18090 if (generic_decl_parm)
18091 generic_decl_parm = TREE_CHAIN (generic_decl_parm);
18094 /* Decide whether we need an unspecified_parameters DIE at the end.
18095 There are 2 more cases to do this for: 1) the ansi ... declaration -
18096 this is detectable when the end of the arg list is not a
18097 void_type_node 2) an unprototyped function declaration (not a
18098 definition). This just means that we have no info about the
18099 parameters at all. */
18100 fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
18101 if (fn_arg_types != NULL)
18103 /* This is the prototyped case, check for.... */
18104 if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
18105 gen_unspecified_parameters_die (decl, subr_die);
18107 else if (DECL_INITIAL (decl) == NULL_TREE)
18108 gen_unspecified_parameters_die (decl, subr_die);
18111 /* Output Dwarf info for all of the stuff within the body of the function
18112 (if it has one - it may be just a declaration). */
18113 outer_scope = DECL_INITIAL (decl);
18115 /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
18116 a function. This BLOCK actually represents the outermost binding contour
18117 for the function, i.e. the contour in which the function's formal
18118 parameters and labels get declared. Curiously, it appears that the front
18119 end doesn't actually put the PARM_DECL nodes for the current function onto
18120 the BLOCK_VARS list for this outer scope, but are strung off of the
18121 DECL_ARGUMENTS list for the function instead.
18123 The BLOCK_VARS list for the `outer_scope' does provide us with a list of
18124 the LABEL_DECL nodes for the function however, and we output DWARF info
18125 for those in decls_for_scope. Just within the `outer_scope' there will be
18126 a BLOCK node representing the function's outermost pair of curly braces,
18127 and any blocks used for the base and member initializers of a C++
18128 constructor function. */
18129 if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
18131 /* Emit a DW_TAG_variable DIE for a named return value. */
18132 if (DECL_NAME (DECL_RESULT (decl)))
18133 gen_decl_die (DECL_RESULT (decl), NULL, subr_die);
18135 current_function_has_inlines = 0;
18136 decls_for_scope (outer_scope, subr_die, 0);
18138 #if 0 && defined (MIPS_DEBUGGING_INFO)
18139 if (current_function_has_inlines)
18141 add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
18142 if (! comp_unit_has_inlines)
18144 add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
18145 comp_unit_has_inlines = 1;
18148 #endif
18150 /* Add the calling convention attribute if requested. */
18151 add_calling_convention_attribute (subr_die, decl);
18155 /* Returns a hash value for X (which really is a die_struct). */
18157 static hashval_t
18158 common_block_die_table_hash (const void *x)
18160 const_dw_die_ref d = (const_dw_die_ref) x;
18161 return (hashval_t) d->decl_id ^ htab_hash_pointer (d->die_parent);
18164 /* Return nonzero if decl_id and die_parent of die_struct X is the same
18165 as decl_id and die_parent of die_struct Y. */
18167 static int
18168 common_block_die_table_eq (const void *x, const void *y)
18170 const_dw_die_ref d = (const_dw_die_ref) x;
18171 const_dw_die_ref e = (const_dw_die_ref) y;
18172 return d->decl_id == e->decl_id && d->die_parent == e->die_parent;
18175 /* Generate a DIE to represent a declared data object.
18176 Either DECL or ORIGIN must be non-null. */
18178 static void
18179 gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
18181 HOST_WIDE_INT off;
18182 tree com_decl;
18183 tree decl_or_origin = decl ? decl : origin;
18184 tree ultimate_origin;
18185 dw_die_ref var_die;
18186 dw_die_ref old_die = decl ? lookup_decl_die (decl) : NULL;
18187 dw_die_ref origin_die;
18188 int declaration = (DECL_EXTERNAL (decl_or_origin)
18189 || class_or_namespace_scope_p (context_die));
18191 ultimate_origin = decl_ultimate_origin (decl_or_origin);
18192 if (decl || ultimate_origin)
18193 origin = ultimate_origin;
18194 com_decl = fortran_common (decl_or_origin, &off);
18196 /* Symbol in common gets emitted as a child of the common block, in the form
18197 of a data member. */
18198 if (com_decl)
18200 dw_die_ref com_die;
18201 dw_loc_list_ref loc;
18202 die_node com_die_arg;
18204 var_die = lookup_decl_die (decl_or_origin);
18205 if (var_die)
18207 if (get_AT (var_die, DW_AT_location) == NULL)
18209 loc = loc_list_from_tree (com_decl, off ? 1 : 2);
18210 if (loc)
18212 if (off)
18214 /* Optimize the common case. */
18215 if (single_element_loc_list_p (loc)
18216 && loc->expr->dw_loc_opc == DW_OP_addr
18217 && loc->expr->dw_loc_next == NULL
18218 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr)
18219 == SYMBOL_REF)
18220 loc->expr->dw_loc_oprnd1.v.val_addr
18221 = plus_constant (loc->expr->dw_loc_oprnd1.v.val_addr, off);
18222 else
18223 loc_list_plus_const (loc, off);
18225 add_AT_location_description (var_die, DW_AT_location, loc);
18226 remove_AT (var_die, DW_AT_declaration);
18229 return;
18232 if (common_block_die_table == NULL)
18233 common_block_die_table
18234 = htab_create_ggc (10, common_block_die_table_hash,
18235 common_block_die_table_eq, NULL);
18237 com_die_arg.decl_id = DECL_UID (com_decl);
18238 com_die_arg.die_parent = context_die;
18239 com_die = (dw_die_ref) htab_find (common_block_die_table, &com_die_arg);
18240 loc = loc_list_from_tree (com_decl, 2);
18241 if (com_die == NULL)
18243 const char *cnam
18244 = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl));
18245 void **slot;
18247 com_die = new_die (DW_TAG_common_block, context_die, decl);
18248 add_name_and_src_coords_attributes (com_die, com_decl);
18249 if (loc)
18251 add_AT_location_description (com_die, DW_AT_location, loc);
18252 /* Avoid sharing the same loc descriptor between
18253 DW_TAG_common_block and DW_TAG_variable. */
18254 loc = loc_list_from_tree (com_decl, 2);
18256 else if (DECL_EXTERNAL (decl))
18257 add_AT_flag (com_die, DW_AT_declaration, 1);
18258 add_pubname_string (cnam, com_die); /* ??? needed? */
18259 com_die->decl_id = DECL_UID (com_decl);
18260 slot = htab_find_slot (common_block_die_table, com_die, INSERT);
18261 *slot = (void *) com_die;
18263 else if (get_AT (com_die, DW_AT_location) == NULL && loc)
18265 add_AT_location_description (com_die, DW_AT_location, loc);
18266 loc = loc_list_from_tree (com_decl, 2);
18267 remove_AT (com_die, DW_AT_declaration);
18269 var_die = new_die (DW_TAG_variable, com_die, decl);
18270 add_name_and_src_coords_attributes (var_die, decl);
18271 add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
18272 TREE_THIS_VOLATILE (decl), context_die);
18273 add_AT_flag (var_die, DW_AT_external, 1);
18274 if (loc)
18276 if (off)
18278 /* Optimize the common case. */
18279 if (single_element_loc_list_p (loc)
18280 && loc->expr->dw_loc_opc == DW_OP_addr
18281 && loc->expr->dw_loc_next == NULL
18282 && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF)
18283 loc->expr->dw_loc_oprnd1.v.val_addr
18284 = plus_constant (loc->expr->dw_loc_oprnd1.v.val_addr, off);
18285 else
18286 loc_list_plus_const (loc, off);
18288 add_AT_location_description (var_die, DW_AT_location, loc);
18290 else if (DECL_EXTERNAL (decl))
18291 add_AT_flag (var_die, DW_AT_declaration, 1);
18292 equate_decl_number_to_die (decl, var_die);
18293 return;
18296 /* If the compiler emitted a definition for the DECL declaration
18297 and if we already emitted a DIE for it, don't emit a second
18298 DIE for it again. Allow re-declarations of DECLs that are
18299 inside functions, though. */
18300 if (old_die && declaration && !local_scope_p (context_die))
18301 return;
18303 /* For static data members, the declaration in the class is supposed
18304 to have DW_TAG_member tag; the specification should still be
18305 DW_TAG_variable referencing the DW_TAG_member DIE. */
18306 if (declaration && class_scope_p (context_die))
18307 var_die = new_die (DW_TAG_member, context_die, decl);
18308 else
18309 var_die = new_die (DW_TAG_variable, context_die, decl);
18311 origin_die = NULL;
18312 if (origin != NULL)
18313 origin_die = add_abstract_origin_attribute (var_die, origin);
18315 /* Loop unrolling can create multiple blocks that refer to the same
18316 static variable, so we must test for the DW_AT_declaration flag.
18318 ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
18319 copy decls and set the DECL_ABSTRACT flag on them instead of
18320 sharing them.
18322 ??? Duplicated blocks have been rewritten to use .debug_ranges.
18324 ??? The declare_in_namespace support causes us to get two DIEs for one
18325 variable, both of which are declarations. We want to avoid considering
18326 one to be a specification, so we must test that this DIE is not a
18327 declaration. */
18328 else if (old_die && TREE_STATIC (decl) && ! declaration
18329 && get_AT_flag (old_die, DW_AT_declaration) == 1)
18331 /* This is a definition of a C++ class level static. */
18332 add_AT_specification (var_die, old_die);
18333 if (DECL_NAME (decl))
18335 expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
18336 struct dwarf_file_data * file_index = lookup_filename (s.file);
18338 if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
18339 add_AT_file (var_die, DW_AT_decl_file, file_index);
18341 if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
18342 add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
18345 else
18347 tree type = TREE_TYPE (decl);
18349 add_name_and_src_coords_attributes (var_die, decl);
18350 if (decl_by_reference_p (decl))
18351 add_type_attribute (var_die, TREE_TYPE (type), 0, 0, context_die);
18352 else
18353 add_type_attribute (var_die, type, TREE_READONLY (decl),
18354 TREE_THIS_VOLATILE (decl), context_die);
18356 if (TREE_PUBLIC (decl))
18357 add_AT_flag (var_die, DW_AT_external, 1);
18359 if (DECL_ARTIFICIAL (decl))
18360 add_AT_flag (var_die, DW_AT_artificial, 1);
18362 if (TREE_PROTECTED (decl))
18363 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
18364 else if (TREE_PRIVATE (decl))
18365 add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
18368 if (declaration)
18369 add_AT_flag (var_die, DW_AT_declaration, 1);
18371 if (decl && (DECL_ABSTRACT (decl) || declaration))
18372 equate_decl_number_to_die (decl, var_die);
18374 if (! declaration
18375 && (! DECL_ABSTRACT (decl_or_origin)
18376 /* Local static vars are shared between all clones/inlines,
18377 so emit DW_AT_location on the abstract DIE if DECL_RTL is
18378 already set. */
18379 || (TREE_CODE (decl_or_origin) == VAR_DECL
18380 && TREE_STATIC (decl_or_origin)
18381 && DECL_RTL_SET_P (decl_or_origin)))
18382 /* When abstract origin already has DW_AT_location attribute, no need
18383 to add it again. */
18384 && (origin_die == NULL || get_AT (origin_die, DW_AT_location) == NULL))
18386 if (TREE_CODE (decl_or_origin) == VAR_DECL && TREE_STATIC (decl_or_origin)
18387 && !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl_or_origin)))
18388 defer_location (decl_or_origin, var_die);
18389 else
18390 add_location_or_const_value_attribute (var_die,
18391 decl_or_origin,
18392 DW_AT_location);
18393 add_pubname (decl_or_origin, var_die);
18395 else
18396 tree_add_const_value_attribute_for_decl (var_die, decl_or_origin);
18399 /* Generate a DIE to represent a named constant. */
18401 static void
18402 gen_const_die (tree decl, dw_die_ref context_die)
18404 dw_die_ref const_die;
18405 tree type = TREE_TYPE (decl);
18407 const_die = new_die (DW_TAG_constant, context_die, decl);
18408 add_name_and_src_coords_attributes (const_die, decl);
18409 add_type_attribute (const_die, type, 1, 0, context_die);
18410 if (TREE_PUBLIC (decl))
18411 add_AT_flag (const_die, DW_AT_external, 1);
18412 if (DECL_ARTIFICIAL (decl))
18413 add_AT_flag (const_die, DW_AT_artificial, 1);
18414 tree_add_const_value_attribute_for_decl (const_die, decl);
18417 /* Generate a DIE to represent a label identifier. */
18419 static void
18420 gen_label_die (tree decl, dw_die_ref context_die)
18422 tree origin = decl_ultimate_origin (decl);
18423 dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
18424 rtx insn;
18425 char label[MAX_ARTIFICIAL_LABEL_BYTES];
18427 if (origin != NULL)
18428 add_abstract_origin_attribute (lbl_die, origin);
18429 else
18430 add_name_and_src_coords_attributes (lbl_die, decl);
18432 if (DECL_ABSTRACT (decl))
18433 equate_decl_number_to_die (decl, lbl_die);
18434 else
18436 insn = DECL_RTL_IF_SET (decl);
18438 /* Deleted labels are programmer specified labels which have been
18439 eliminated because of various optimizations. We still emit them
18440 here so that it is possible to put breakpoints on them. */
18441 if (insn
18442 && (LABEL_P (insn)
18443 || ((NOTE_P (insn)
18444 && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL))))
18446 /* When optimization is enabled (via -O) some parts of the compiler
18447 (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
18448 represent source-level labels which were explicitly declared by
18449 the user. This really shouldn't be happening though, so catch
18450 it if it ever does happen. */
18451 gcc_assert (!INSN_DELETED_P (insn));
18453 ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
18454 add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
18459 /* A helper function for gen_inlined_subroutine_die. Add source coordinate
18460 attributes to the DIE for a block STMT, to describe where the inlined
18461 function was called from. This is similar to add_src_coords_attributes. */
18463 static inline void
18464 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
18466 expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (stmt));
18468 if (dwarf_version >= 3 || !dwarf_strict)
18470 add_AT_file (die, DW_AT_call_file, lookup_filename (s.file));
18471 add_AT_unsigned (die, DW_AT_call_line, s.line);
18476 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
18477 Add low_pc and high_pc attributes to the DIE for a block STMT. */
18479 static inline void
18480 add_high_low_attributes (tree stmt, dw_die_ref die)
18482 char label[MAX_ARTIFICIAL_LABEL_BYTES];
18484 if (BLOCK_FRAGMENT_CHAIN (stmt)
18485 && (dwarf_version >= 3 || !dwarf_strict))
18487 tree chain;
18489 if (inlined_function_outer_scope_p (stmt))
18491 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
18492 BLOCK_NUMBER (stmt));
18493 add_AT_lbl_id (die, DW_AT_entry_pc, label);
18496 add_AT_range_list (die, DW_AT_ranges, add_ranges (stmt));
18498 chain = BLOCK_FRAGMENT_CHAIN (stmt);
18501 add_ranges (chain);
18502 chain = BLOCK_FRAGMENT_CHAIN (chain);
18504 while (chain);
18505 add_ranges (NULL);
18507 else
18509 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
18510 BLOCK_NUMBER (stmt));
18511 add_AT_lbl_id (die, DW_AT_low_pc, label);
18512 ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
18513 BLOCK_NUMBER (stmt));
18514 add_AT_lbl_id (die, DW_AT_high_pc, label);
18518 /* Generate a DIE for a lexical block. */
18520 static void
18521 gen_lexical_block_die (tree stmt, dw_die_ref context_die, int depth)
18523 dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
18525 if (! BLOCK_ABSTRACT (stmt) && TREE_ASM_WRITTEN (stmt))
18526 add_high_low_attributes (stmt, stmt_die);
18528 decls_for_scope (stmt, stmt_die, depth);
18531 /* Generate a DIE for an inlined subprogram. */
18533 static void
18534 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die, int depth)
18536 tree decl;
18538 /* The instance of function that is effectively being inlined shall not
18539 be abstract. */
18540 gcc_assert (! BLOCK_ABSTRACT (stmt));
18542 decl = block_ultimate_origin (stmt);
18544 /* Emit info for the abstract instance first, if we haven't yet. We
18545 must emit this even if the block is abstract, otherwise when we
18546 emit the block below (or elsewhere), we may end up trying to emit
18547 a die whose origin die hasn't been emitted, and crashing. */
18548 dwarf2out_abstract_function (decl);
18550 if (! BLOCK_ABSTRACT (stmt))
18552 dw_die_ref subr_die
18553 = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
18555 add_abstract_origin_attribute (subr_die, decl);
18556 if (TREE_ASM_WRITTEN (stmt))
18557 add_high_low_attributes (stmt, subr_die);
18558 add_call_src_coords_attributes (stmt, subr_die);
18560 decls_for_scope (stmt, subr_die, depth);
18561 current_function_has_inlines = 1;
18565 /* Generate a DIE for a field in a record, or structure. */
18567 static void
18568 gen_field_die (tree decl, dw_die_ref context_die)
18570 dw_die_ref decl_die;
18572 if (TREE_TYPE (decl) == error_mark_node)
18573 return;
18575 decl_die = new_die (DW_TAG_member, context_die, decl);
18576 add_name_and_src_coords_attributes (decl_die, decl);
18577 add_type_attribute (decl_die, member_declared_type (decl),
18578 TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
18579 context_die);
18581 if (DECL_BIT_FIELD_TYPE (decl))
18583 add_byte_size_attribute (decl_die, decl);
18584 add_bit_size_attribute (decl_die, decl);
18585 add_bit_offset_attribute (decl_die, decl);
18588 if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
18589 add_data_member_location_attribute (decl_die, decl);
18591 if (DECL_ARTIFICIAL (decl))
18592 add_AT_flag (decl_die, DW_AT_artificial, 1);
18594 if (TREE_PROTECTED (decl))
18595 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
18596 else if (TREE_PRIVATE (decl))
18597 add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
18599 /* Equate decl number to die, so that we can look up this decl later on. */
18600 equate_decl_number_to_die (decl, decl_die);
18603 #if 0
18604 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
18605 Use modified_type_die instead.
18606 We keep this code here just in case these types of DIEs may be needed to
18607 represent certain things in other languages (e.g. Pascal) someday. */
18609 static void
18610 gen_pointer_type_die (tree type, dw_die_ref context_die)
18612 dw_die_ref ptr_die
18613 = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
18615 equate_type_number_to_die (type, ptr_die);
18616 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
18617 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
18620 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
18621 Use modified_type_die instead.
18622 We keep this code here just in case these types of DIEs may be needed to
18623 represent certain things in other languages (e.g. Pascal) someday. */
18625 static void
18626 gen_reference_type_die (tree type, dw_die_ref context_die)
18628 dw_die_ref ref_die
18629 = new_die (DW_TAG_reference_type, scope_die_for (type, context_die), type);
18631 equate_type_number_to_die (type, ref_die);
18632 add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
18633 add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
18635 #endif
18637 /* Generate a DIE for a pointer to a member type. */
18639 static void
18640 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
18642 dw_die_ref ptr_die
18643 = new_die (DW_TAG_ptr_to_member_type,
18644 scope_die_for (type, context_die), type);
18646 equate_type_number_to_die (type, ptr_die);
18647 add_AT_die_ref (ptr_die, DW_AT_containing_type,
18648 lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
18649 add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
18652 /* Generate the DIE for the compilation unit. */
18654 static dw_die_ref
18655 gen_compile_unit_die (const char *filename)
18657 dw_die_ref die;
18658 char producer[250];
18659 const char *language_string = lang_hooks.name;
18660 int language;
18662 die = new_die (DW_TAG_compile_unit, NULL, NULL);
18664 if (filename)
18666 add_name_attribute (die, filename);
18667 /* Don't add cwd for <built-in>. */
18668 if (!IS_ABSOLUTE_PATH (filename) && filename[0] != '<')
18669 add_comp_dir_attribute (die);
18672 sprintf (producer, "%s %s", language_string, version_string);
18674 #ifdef MIPS_DEBUGGING_INFO
18675 /* The MIPS/SGI compilers place the 'cc' command line options in the producer
18676 string. The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
18677 not appear in the producer string, the debugger reaches the conclusion
18678 that the object file is stripped and has no debugging information.
18679 To get the MIPS/SGI debugger to believe that there is debugging
18680 information in the object file, we add a -g to the producer string. */
18681 if (debug_info_level > DINFO_LEVEL_TERSE)
18682 strcat (producer, " -g");
18683 #endif
18685 add_AT_string (die, DW_AT_producer, producer);
18687 language = DW_LANG_C89;
18688 if (strcmp (language_string, "GNU C++") == 0)
18689 language = DW_LANG_C_plus_plus;
18690 else if (strcmp (language_string, "GNU F77") == 0)
18691 language = DW_LANG_Fortran77;
18692 else if (strcmp (language_string, "GNU Pascal") == 0)
18693 language = DW_LANG_Pascal83;
18694 else if (dwarf_version >= 3 || !dwarf_strict)
18696 if (strcmp (language_string, "GNU Ada") == 0)
18697 language = DW_LANG_Ada95;
18698 else if (strcmp (language_string, "GNU Fortran") == 0)
18699 language = DW_LANG_Fortran95;
18700 else if (strcmp (language_string, "GNU Java") == 0)
18701 language = DW_LANG_Java;
18702 else if (strcmp (language_string, "GNU Objective-C") == 0)
18703 language = DW_LANG_ObjC;
18704 else if (strcmp (language_string, "GNU Objective-C++") == 0)
18705 language = DW_LANG_ObjC_plus_plus;
18708 add_AT_unsigned (die, DW_AT_language, language);
18709 return die;
18712 /* Generate the DIE for a base class. */
18714 static void
18715 gen_inheritance_die (tree binfo, tree access, dw_die_ref context_die)
18717 dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
18719 add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
18720 add_data_member_location_attribute (die, binfo);
18722 if (BINFO_VIRTUAL_P (binfo))
18723 add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
18725 if (access == access_public_node)
18726 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
18727 else if (access == access_protected_node)
18728 add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
18731 /* Generate a DIE for a class member. */
18733 static void
18734 gen_member_die (tree type, dw_die_ref context_die)
18736 tree member;
18737 tree binfo = TYPE_BINFO (type);
18738 dw_die_ref child;
18740 /* If this is not an incomplete type, output descriptions of each of its
18741 members. Note that as we output the DIEs necessary to represent the
18742 members of this record or union type, we will also be trying to output
18743 DIEs to represent the *types* of those members. However the `type'
18744 function (above) will specifically avoid generating type DIEs for member
18745 types *within* the list of member DIEs for this (containing) type except
18746 for those types (of members) which are explicitly marked as also being
18747 members of this (containing) type themselves. The g++ front- end can
18748 force any given type to be treated as a member of some other (containing)
18749 type by setting the TYPE_CONTEXT of the given (member) type to point to
18750 the TREE node representing the appropriate (containing) type. */
18752 /* First output info about the base classes. */
18753 if (binfo)
18755 VEC(tree,gc) *accesses = BINFO_BASE_ACCESSES (binfo);
18756 int i;
18757 tree base;
18759 for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
18760 gen_inheritance_die (base,
18761 (accesses ? VEC_index (tree, accesses, i)
18762 : access_public_node), context_die);
18765 /* Now output info about the data members and type members. */
18766 for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
18768 /* If we thought we were generating minimal debug info for TYPE
18769 and then changed our minds, some of the member declarations
18770 may have already been defined. Don't define them again, but
18771 do put them in the right order. */
18773 child = lookup_decl_die (member);
18774 if (child)
18775 splice_child_die (context_die, child);
18776 else
18777 gen_decl_die (member, NULL, context_die);
18780 /* Now output info about the function members (if any). */
18781 for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
18783 /* Don't include clones in the member list. */
18784 if (DECL_ABSTRACT_ORIGIN (member))
18785 continue;
18787 child = lookup_decl_die (member);
18788 if (child)
18789 splice_child_die (context_die, child);
18790 else
18791 gen_decl_die (member, NULL, context_die);
18795 /* Generate a DIE for a structure or union type. If TYPE_DECL_SUPPRESS_DEBUG
18796 is set, we pretend that the type was never defined, so we only get the
18797 member DIEs needed by later specification DIEs. */
18799 static void
18800 gen_struct_or_union_type_die (tree type, dw_die_ref context_die,
18801 enum debug_info_usage usage)
18803 dw_die_ref type_die = lookup_type_die (type);
18804 dw_die_ref scope_die = 0;
18805 int nested = 0;
18806 int complete = (TYPE_SIZE (type)
18807 && (! TYPE_STUB_DECL (type)
18808 || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
18809 int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
18810 complete = complete && should_emit_struct_debug (type, usage);
18812 if (type_die && ! complete)
18813 return;
18815 if (TYPE_CONTEXT (type) != NULL_TREE
18816 && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
18817 || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
18818 nested = 1;
18820 scope_die = scope_die_for (type, context_die);
18822 if (! type_die || (nested && scope_die == comp_unit_die))
18823 /* First occurrence of type or toplevel definition of nested class. */
18825 dw_die_ref old_die = type_die;
18827 type_die = new_die (TREE_CODE (type) == RECORD_TYPE
18828 ? record_type_tag (type) : DW_TAG_union_type,
18829 scope_die, type);
18830 equate_type_number_to_die (type, type_die);
18831 if (old_die)
18832 add_AT_specification (type_die, old_die);
18833 else
18834 add_name_attribute (type_die, type_tag (type));
18836 else
18837 remove_AT (type_die, DW_AT_declaration);
18839 /* Generate child dies for template paramaters. */
18840 if (debug_info_level > DINFO_LEVEL_TERSE
18841 && COMPLETE_TYPE_P (type))
18842 gen_generic_params_dies (type);
18844 /* If this type has been completed, then give it a byte_size attribute and
18845 then give a list of members. */
18846 if (complete && !ns_decl)
18848 /* Prevent infinite recursion in cases where the type of some member of
18849 this type is expressed in terms of this type itself. */
18850 TREE_ASM_WRITTEN (type) = 1;
18851 add_byte_size_attribute (type_die, type);
18852 if (TYPE_STUB_DECL (type) != NULL_TREE)
18853 add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
18855 /* If the first reference to this type was as the return type of an
18856 inline function, then it may not have a parent. Fix this now. */
18857 if (type_die->die_parent == NULL)
18858 add_child_die (scope_die, type_die);
18860 push_decl_scope (type);
18861 gen_member_die (type, type_die);
18862 pop_decl_scope ();
18864 /* GNU extension: Record what type our vtable lives in. */
18865 if (TYPE_VFIELD (type))
18867 tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
18869 gen_type_die (vtype, context_die);
18870 add_AT_die_ref (type_die, DW_AT_containing_type,
18871 lookup_type_die (vtype));
18874 else
18876 add_AT_flag (type_die, DW_AT_declaration, 1);
18878 /* We don't need to do this for function-local types. */
18879 if (TYPE_STUB_DECL (type)
18880 && ! decl_function_context (TYPE_STUB_DECL (type)))
18881 VEC_safe_push (tree, gc, incomplete_types, type);
18884 if (get_AT (type_die, DW_AT_name))
18885 add_pubtype (type, type_die);
18888 /* Generate a DIE for a subroutine _type_. */
18890 static void
18891 gen_subroutine_type_die (tree type, dw_die_ref context_die)
18893 tree return_type = TREE_TYPE (type);
18894 dw_die_ref subr_die
18895 = new_die (DW_TAG_subroutine_type,
18896 scope_die_for (type, context_die), type);
18898 equate_type_number_to_die (type, subr_die);
18899 add_prototyped_attribute (subr_die, type);
18900 add_type_attribute (subr_die, return_type, 0, 0, context_die);
18901 gen_formal_types_die (type, subr_die);
18903 if (get_AT (subr_die, DW_AT_name))
18904 add_pubtype (type, subr_die);
18907 /* Generate a DIE for a type definition. */
18909 static void
18910 gen_typedef_die (tree decl, dw_die_ref context_die)
18912 dw_die_ref type_die;
18913 tree origin;
18915 if (TREE_ASM_WRITTEN (decl))
18916 return;
18918 TREE_ASM_WRITTEN (decl) = 1;
18919 type_die = new_die (DW_TAG_typedef, context_die, decl);
18920 origin = decl_ultimate_origin (decl);
18921 if (origin != NULL)
18922 add_abstract_origin_attribute (type_die, origin);
18923 else
18925 tree type;
18927 add_name_and_src_coords_attributes (type_die, decl);
18928 if (DECL_ORIGINAL_TYPE (decl))
18930 type = DECL_ORIGINAL_TYPE (decl);
18932 gcc_assert (type != TREE_TYPE (decl));
18933 equate_type_number_to_die (TREE_TYPE (decl), type_die);
18935 else
18936 type = TREE_TYPE (decl);
18938 add_type_attribute (type_die, type, TREE_READONLY (decl),
18939 TREE_THIS_VOLATILE (decl), context_die);
18942 if (DECL_ABSTRACT (decl))
18943 equate_decl_number_to_die (decl, type_die);
18945 if (get_AT (type_die, DW_AT_name))
18946 add_pubtype (decl, type_die);
18949 /* Generate a type description DIE. */
18951 static void
18952 gen_type_die_with_usage (tree type, dw_die_ref context_die,
18953 enum debug_info_usage usage)
18955 int need_pop;
18956 struct array_descr_info info;
18958 if (type == NULL_TREE || type == error_mark_node)
18959 return;
18961 /* If TYPE is a typedef type variant, let's generate debug info
18962 for the parent typedef which TYPE is a type of. */
18963 if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
18964 && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
18966 if (TREE_ASM_WRITTEN (type))
18967 return;
18969 /* Prevent broken recursion; we can't hand off to the same type. */
18970 gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type)) != type);
18972 /* Use the DIE of the containing namespace as the parent DIE of
18973 the type description DIE we want to generate. */
18974 if (DECL_CONTEXT (TYPE_NAME (type))
18975 && TREE_CODE (DECL_CONTEXT (TYPE_NAME (type))) == NAMESPACE_DECL)
18976 context_die = get_context_die (DECL_CONTEXT (TYPE_NAME (type)));
18978 TREE_ASM_WRITTEN (type) = 1;
18979 gen_decl_die (TYPE_NAME (type), NULL, context_die);
18980 return;
18983 /* If this is an array type with hidden descriptor, handle it first. */
18984 if (!TREE_ASM_WRITTEN (type)
18985 && lang_hooks.types.get_array_descr_info
18986 && lang_hooks.types.get_array_descr_info (type, &info)
18987 && (dwarf_version >= 3 || !dwarf_strict))
18989 gen_descr_array_type_die (type, &info, context_die);
18990 TREE_ASM_WRITTEN (type) = 1;
18991 return;
18994 /* We are going to output a DIE to represent the unqualified version
18995 of this type (i.e. without any const or volatile qualifiers) so
18996 get the main variant (i.e. the unqualified version) of this type
18997 now. (Vectors are special because the debugging info is in the
18998 cloned type itself). */
18999 if (TREE_CODE (type) != VECTOR_TYPE)
19000 type = type_main_variant (type);
19002 if (TREE_ASM_WRITTEN (type))
19003 return;
19005 switch (TREE_CODE (type))
19007 case ERROR_MARK:
19008 break;
19010 case POINTER_TYPE:
19011 case REFERENCE_TYPE:
19012 /* We must set TREE_ASM_WRITTEN in case this is a recursive type. This
19013 ensures that the gen_type_die recursion will terminate even if the
19014 type is recursive. Recursive types are possible in Ada. */
19015 /* ??? We could perhaps do this for all types before the switch
19016 statement. */
19017 TREE_ASM_WRITTEN (type) = 1;
19019 /* For these types, all that is required is that we output a DIE (or a
19020 set of DIEs) to represent the "basis" type. */
19021 gen_type_die_with_usage (TREE_TYPE (type), context_die,
19022 DINFO_USAGE_IND_USE);
19023 break;
19025 case OFFSET_TYPE:
19026 /* This code is used for C++ pointer-to-data-member types.
19027 Output a description of the relevant class type. */
19028 gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type), context_die,
19029 DINFO_USAGE_IND_USE);
19031 /* Output a description of the type of the object pointed to. */
19032 gen_type_die_with_usage (TREE_TYPE (type), context_die,
19033 DINFO_USAGE_IND_USE);
19035 /* Now output a DIE to represent this pointer-to-data-member type
19036 itself. */
19037 gen_ptr_to_mbr_type_die (type, context_die);
19038 break;
19040 case FUNCTION_TYPE:
19041 /* Force out return type (in case it wasn't forced out already). */
19042 gen_type_die_with_usage (TREE_TYPE (type), context_die,
19043 DINFO_USAGE_DIR_USE);
19044 gen_subroutine_type_die (type, context_die);
19045 break;
19047 case METHOD_TYPE:
19048 /* Force out return type (in case it wasn't forced out already). */
19049 gen_type_die_with_usage (TREE_TYPE (type), context_die,
19050 DINFO_USAGE_DIR_USE);
19051 gen_subroutine_type_die (type, context_die);
19052 break;
19054 case ARRAY_TYPE:
19055 gen_array_type_die (type, context_die);
19056 break;
19058 case VECTOR_TYPE:
19059 gen_array_type_die (type, context_die);
19060 break;
19062 case ENUMERAL_TYPE:
19063 case RECORD_TYPE:
19064 case UNION_TYPE:
19065 case QUAL_UNION_TYPE:
19066 /* If this is a nested type whose containing class hasn't been written
19067 out yet, writing it out will cover this one, too. This does not apply
19068 to instantiations of member class templates; they need to be added to
19069 the containing class as they are generated. FIXME: This hurts the
19070 idea of combining type decls from multiple TUs, since we can't predict
19071 what set of template instantiations we'll get. */
19072 if (TYPE_CONTEXT (type)
19073 && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
19074 && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
19076 gen_type_die_with_usage (TYPE_CONTEXT (type), context_die, usage);
19078 if (TREE_ASM_WRITTEN (type))
19079 return;
19081 /* If that failed, attach ourselves to the stub. */
19082 push_decl_scope (TYPE_CONTEXT (type));
19083 context_die = lookup_type_die (TYPE_CONTEXT (type));
19084 need_pop = 1;
19086 else if (TYPE_CONTEXT (type) != NULL_TREE
19087 && (TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL))
19089 /* If this type is local to a function that hasn't been written
19090 out yet, use a NULL context for now; it will be fixed up in
19091 decls_for_scope. */
19092 context_die = lookup_decl_die (TYPE_CONTEXT (type));
19093 need_pop = 0;
19095 else
19097 context_die = declare_in_namespace (type, context_die);
19098 need_pop = 0;
19101 if (TREE_CODE (type) == ENUMERAL_TYPE)
19103 /* This might have been written out by the call to
19104 declare_in_namespace. */
19105 if (!TREE_ASM_WRITTEN (type))
19106 gen_enumeration_type_die (type, context_die);
19108 else
19109 gen_struct_or_union_type_die (type, context_die, usage);
19111 if (need_pop)
19112 pop_decl_scope ();
19114 /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
19115 it up if it is ever completed. gen_*_type_die will set it for us
19116 when appropriate. */
19117 return;
19119 case VOID_TYPE:
19120 case INTEGER_TYPE:
19121 case REAL_TYPE:
19122 case FIXED_POINT_TYPE:
19123 case COMPLEX_TYPE:
19124 case BOOLEAN_TYPE:
19125 /* No DIEs needed for fundamental types. */
19126 break;
19128 case LANG_TYPE:
19129 /* No Dwarf representation currently defined. */
19130 break;
19132 default:
19133 gcc_unreachable ();
19136 TREE_ASM_WRITTEN (type) = 1;
19139 static void
19140 gen_type_die (tree type, dw_die_ref context_die)
19142 gen_type_die_with_usage (type, context_die, DINFO_USAGE_DIR_USE);
19145 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
19146 things which are local to the given block. */
19148 static void
19149 gen_block_die (tree stmt, dw_die_ref context_die, int depth)
19151 int must_output_die = 0;
19152 bool inlined_func;
19154 /* Ignore blocks that are NULL. */
19155 if (stmt == NULL_TREE)
19156 return;
19158 inlined_func = inlined_function_outer_scope_p (stmt);
19160 /* If the block is one fragment of a non-contiguous block, do not
19161 process the variables, since they will have been done by the
19162 origin block. Do process subblocks. */
19163 if (BLOCK_FRAGMENT_ORIGIN (stmt))
19165 tree sub;
19167 for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
19168 gen_block_die (sub, context_die, depth + 1);
19170 return;
19173 /* Determine if we need to output any Dwarf DIEs at all to represent this
19174 block. */
19175 if (inlined_func)
19176 /* The outer scopes for inlinings *must* always be represented. We
19177 generate DW_TAG_inlined_subroutine DIEs for them. (See below.) */
19178 must_output_die = 1;
19179 else
19181 /* Determine if this block directly contains any "significant"
19182 local declarations which we will need to output DIEs for. */
19183 if (debug_info_level > DINFO_LEVEL_TERSE)
19184 /* We are not in terse mode so *any* local declaration counts
19185 as being a "significant" one. */
19186 must_output_die = ((BLOCK_VARS (stmt) != NULL
19187 || BLOCK_NUM_NONLOCALIZED_VARS (stmt))
19188 && (TREE_USED (stmt)
19189 || TREE_ASM_WRITTEN (stmt)
19190 || BLOCK_ABSTRACT (stmt)));
19191 else if ((TREE_USED (stmt)
19192 || TREE_ASM_WRITTEN (stmt)
19193 || BLOCK_ABSTRACT (stmt))
19194 && !dwarf2out_ignore_block (stmt))
19195 must_output_die = 1;
19198 /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
19199 DIE for any block which contains no significant local declarations at
19200 all. Rather, in such cases we just call `decls_for_scope' so that any
19201 needed Dwarf info for any sub-blocks will get properly generated. Note
19202 that in terse mode, our definition of what constitutes a "significant"
19203 local declaration gets restricted to include only inlined function
19204 instances and local (nested) function definitions. */
19205 if (must_output_die)
19207 if (inlined_func)
19209 /* If STMT block is abstract, that means we have been called
19210 indirectly from dwarf2out_abstract_function.
19211 That function rightfully marks the descendent blocks (of
19212 the abstract function it is dealing with) as being abstract,
19213 precisely to prevent us from emitting any
19214 DW_TAG_inlined_subroutine DIE as a descendent
19215 of an abstract function instance. So in that case, we should
19216 not call gen_inlined_subroutine_die.
19218 Later though, when cgraph asks dwarf2out to emit info
19219 for the concrete instance of the function decl into which
19220 the concrete instance of STMT got inlined, the later will lead
19221 to the generation of a DW_TAG_inlined_subroutine DIE. */
19222 if (! BLOCK_ABSTRACT (stmt))
19223 gen_inlined_subroutine_die (stmt, context_die, depth);
19225 else
19226 gen_lexical_block_die (stmt, context_die, depth);
19228 else
19229 decls_for_scope (stmt, context_die, depth);
19232 /* Process variable DECL (or variable with origin ORIGIN) within
19233 block STMT and add it to CONTEXT_DIE. */
19234 static void
19235 process_scope_var (tree stmt, tree decl, tree origin, dw_die_ref context_die)
19237 dw_die_ref die;
19238 tree decl_or_origin = decl ? decl : origin;
19240 if (TREE_CODE (decl_or_origin) == FUNCTION_DECL)
19241 die = lookup_decl_die (decl_or_origin);
19242 else if (TREE_CODE (decl_or_origin) == TYPE_DECL
19243 && TYPE_DECL_IS_STUB (decl_or_origin))
19244 die = lookup_type_die (TREE_TYPE (decl_or_origin));
19245 else
19246 die = NULL;
19248 if (die != NULL && die->die_parent == NULL)
19249 add_child_die (context_die, die);
19250 else if (TREE_CODE (decl_or_origin) == IMPORTED_DECL)
19251 dwarf2out_imported_module_or_decl_1 (decl_or_origin, DECL_NAME (decl_or_origin),
19252 stmt, context_die);
19253 else
19254 gen_decl_die (decl, origin, context_die);
19257 /* Generate all of the decls declared within a given scope and (recursively)
19258 all of its sub-blocks. */
19260 static void
19261 decls_for_scope (tree stmt, dw_die_ref context_die, int depth)
19263 tree decl;
19264 unsigned int i;
19265 tree subblocks;
19267 /* Ignore NULL blocks. */
19268 if (stmt == NULL_TREE)
19269 return;
19271 /* Output the DIEs to represent all of the data objects and typedefs
19272 declared directly within this block but not within any nested
19273 sub-blocks. Also, nested function and tag DIEs have been
19274 generated with a parent of NULL; fix that up now. */
19275 for (decl = BLOCK_VARS (stmt); decl != NULL; decl = TREE_CHAIN (decl))
19276 process_scope_var (stmt, decl, NULL_TREE, context_die);
19277 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (stmt); i++)
19278 process_scope_var (stmt, NULL, BLOCK_NONLOCALIZED_VAR (stmt, i),
19279 context_die);
19281 /* If we're at -g1, we're not interested in subblocks. */
19282 if (debug_info_level <= DINFO_LEVEL_TERSE)
19283 return;
19285 /* Output the DIEs to represent all sub-blocks (and the items declared
19286 therein) of this block. */
19287 for (subblocks = BLOCK_SUBBLOCKS (stmt);
19288 subblocks != NULL;
19289 subblocks = BLOCK_CHAIN (subblocks))
19290 gen_block_die (subblocks, context_die, depth + 1);
19293 /* Is this a typedef we can avoid emitting? */
19295 static inline int
19296 is_redundant_typedef (const_tree decl)
19298 if (TYPE_DECL_IS_STUB (decl))
19299 return 1;
19301 if (DECL_ARTIFICIAL (decl)
19302 && DECL_CONTEXT (decl)
19303 && is_tagged_type (DECL_CONTEXT (decl))
19304 && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
19305 && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
19306 /* Also ignore the artificial member typedef for the class name. */
19307 return 1;
19309 return 0;
19312 /* Returns the DIE for a context. */
19314 static inline dw_die_ref
19315 get_context_die (tree context)
19317 if (context)
19319 /* Find die that represents this context. */
19320 if (TYPE_P (context))
19321 return force_type_die (TYPE_MAIN_VARIANT (context));
19322 else
19323 return force_decl_die (context);
19325 return comp_unit_die;
19328 /* Returns the DIE for decl. A DIE will always be returned. */
19330 static dw_die_ref
19331 force_decl_die (tree decl)
19333 dw_die_ref decl_die;
19334 unsigned saved_external_flag;
19335 tree save_fn = NULL_TREE;
19336 decl_die = lookup_decl_die (decl);
19337 if (!decl_die)
19339 dw_die_ref context_die = get_context_die (DECL_CONTEXT (decl));
19341 decl_die = lookup_decl_die (decl);
19342 if (decl_die)
19343 return decl_die;
19345 switch (TREE_CODE (decl))
19347 case FUNCTION_DECL:
19348 /* Clear current_function_decl, so that gen_subprogram_die thinks
19349 that this is a declaration. At this point, we just want to force
19350 declaration die. */
19351 save_fn = current_function_decl;
19352 current_function_decl = NULL_TREE;
19353 gen_subprogram_die (decl, context_die);
19354 current_function_decl = save_fn;
19355 break;
19357 case VAR_DECL:
19358 /* Set external flag to force declaration die. Restore it after
19359 gen_decl_die() call. */
19360 saved_external_flag = DECL_EXTERNAL (decl);
19361 DECL_EXTERNAL (decl) = 1;
19362 gen_decl_die (decl, NULL, context_die);
19363 DECL_EXTERNAL (decl) = saved_external_flag;
19364 break;
19366 case NAMESPACE_DECL:
19367 if (dwarf_version >= 3 || !dwarf_strict)
19368 dwarf2out_decl (decl);
19369 else
19370 /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace. */
19371 decl_die = comp_unit_die;
19372 break;
19374 default:
19375 gcc_unreachable ();
19378 /* We should be able to find the DIE now. */
19379 if (!decl_die)
19380 decl_die = lookup_decl_die (decl);
19381 gcc_assert (decl_die);
19384 return decl_die;
19387 /* Returns the DIE for TYPE, that must not be a base type. A DIE is
19388 always returned. */
19390 static dw_die_ref
19391 force_type_die (tree type)
19393 dw_die_ref type_die;
19395 type_die = lookup_type_die (type);
19396 if (!type_die)
19398 dw_die_ref context_die = get_context_die (TYPE_CONTEXT (type));
19400 type_die = modified_type_die (type, TYPE_READONLY (type),
19401 TYPE_VOLATILE (type), context_die);
19402 gcc_assert (type_die);
19404 return type_die;
19407 /* Force out any required namespaces to be able to output DECL,
19408 and return the new context_die for it, if it's changed. */
19410 static dw_die_ref
19411 setup_namespace_context (tree thing, dw_die_ref context_die)
19413 tree context = (DECL_P (thing)
19414 ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
19415 if (context && TREE_CODE (context) == NAMESPACE_DECL)
19416 /* Force out the namespace. */
19417 context_die = force_decl_die (context);
19419 return context_die;
19422 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
19423 type) within its namespace, if appropriate.
19425 For compatibility with older debuggers, namespace DIEs only contain
19426 declarations; all definitions are emitted at CU scope. */
19428 static dw_die_ref
19429 declare_in_namespace (tree thing, dw_die_ref context_die)
19431 dw_die_ref ns_context;
19433 if (debug_info_level <= DINFO_LEVEL_TERSE)
19434 return context_die;
19436 /* If this decl is from an inlined function, then don't try to emit it in its
19437 namespace, as we will get confused. It would have already been emitted
19438 when the abstract instance of the inline function was emitted anyways. */
19439 if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
19440 return context_die;
19442 ns_context = setup_namespace_context (thing, context_die);
19444 if (ns_context != context_die)
19446 if (is_fortran ())
19447 return ns_context;
19448 if (DECL_P (thing))
19449 gen_decl_die (thing, NULL, ns_context);
19450 else
19451 gen_type_die (thing, ns_context);
19453 return context_die;
19456 /* Generate a DIE for a namespace or namespace alias. */
19458 static void
19459 gen_namespace_die (tree decl, dw_die_ref context_die)
19461 dw_die_ref namespace_die;
19463 /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
19464 they are an alias of. */
19465 if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
19467 /* Output a real namespace or module. */
19468 context_die = setup_namespace_context (decl, comp_unit_die);
19469 namespace_die = new_die (is_fortran ()
19470 ? DW_TAG_module : DW_TAG_namespace,
19471 context_die, decl);
19472 /* For Fortran modules defined in different CU don't add src coords. */
19473 if (namespace_die->die_tag == DW_TAG_module && DECL_EXTERNAL (decl))
19475 const char *name = dwarf2_name (decl, 0);
19476 if (name)
19477 add_name_attribute (namespace_die, name);
19479 else
19480 add_name_and_src_coords_attributes (namespace_die, decl);
19481 if (DECL_EXTERNAL (decl))
19482 add_AT_flag (namespace_die, DW_AT_declaration, 1);
19483 equate_decl_number_to_die (decl, namespace_die);
19485 else
19487 /* Output a namespace alias. */
19489 /* Force out the namespace we are an alias of, if necessary. */
19490 dw_die_ref origin_die
19491 = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
19493 if (DECL_CONTEXT (decl) == NULL_TREE
19494 || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
19495 context_die = setup_namespace_context (decl, comp_unit_die);
19496 /* Now create the namespace alias DIE. */
19497 namespace_die = new_die (DW_TAG_imported_declaration, context_die, decl);
19498 add_name_and_src_coords_attributes (namespace_die, decl);
19499 add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
19500 equate_decl_number_to_die (decl, namespace_die);
19504 /* Generate Dwarf debug information for a decl described by DECL. */
19506 static void
19507 gen_decl_die (tree decl, tree origin, dw_die_ref context_die)
19509 tree decl_or_origin = decl ? decl : origin;
19510 tree class_origin = NULL, ultimate_origin;
19512 if (DECL_P (decl_or_origin) && DECL_IGNORED_P (decl_or_origin))
19513 return;
19515 switch (TREE_CODE (decl_or_origin))
19517 case ERROR_MARK:
19518 break;
19520 case CONST_DECL:
19521 if (!is_fortran ())
19523 /* The individual enumerators of an enum type get output when we output
19524 the Dwarf representation of the relevant enum type itself. */
19525 break;
19528 /* Emit its type. */
19529 gen_type_die (TREE_TYPE (decl), context_die);
19531 /* And its containing namespace. */
19532 context_die = declare_in_namespace (decl, context_die);
19534 gen_const_die (decl, context_die);
19535 break;
19537 case FUNCTION_DECL:
19538 /* Don't output any DIEs to represent mere function declarations,
19539 unless they are class members or explicit block externs. */
19540 if (DECL_INITIAL (decl_or_origin) == NULL_TREE
19541 && DECL_CONTEXT (decl_or_origin) == NULL_TREE
19542 && (current_function_decl == NULL_TREE
19543 || DECL_ARTIFICIAL (decl_or_origin)))
19544 break;
19546 #if 0
19547 /* FIXME */
19548 /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
19549 on local redeclarations of global functions. That seems broken. */
19550 if (current_function_decl != decl)
19551 /* This is only a declaration. */;
19552 #endif
19554 /* If we're emitting a clone, emit info for the abstract instance. */
19555 if (origin || DECL_ORIGIN (decl) != decl)
19556 dwarf2out_abstract_function (origin
19557 ? DECL_ORIGIN (origin)
19558 : DECL_ABSTRACT_ORIGIN (decl));
19560 /* If we're emitting an out-of-line copy of an inline function,
19561 emit info for the abstract instance and set up to refer to it. */
19562 else if (cgraph_function_possibly_inlined_p (decl)
19563 && ! DECL_ABSTRACT (decl)
19564 && ! class_or_namespace_scope_p (context_die)
19565 /* dwarf2out_abstract_function won't emit a die if this is just
19566 a declaration. We must avoid setting DECL_ABSTRACT_ORIGIN in
19567 that case, because that works only if we have a die. */
19568 && DECL_INITIAL (decl) != NULL_TREE)
19570 dwarf2out_abstract_function (decl);
19571 set_decl_origin_self (decl);
19574 /* Otherwise we're emitting the primary DIE for this decl. */
19575 else if (debug_info_level > DINFO_LEVEL_TERSE)
19577 /* Before we describe the FUNCTION_DECL itself, make sure that we
19578 have described its return type. */
19579 gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
19581 /* And its virtual context. */
19582 if (DECL_VINDEX (decl) != NULL_TREE)
19583 gen_type_die (DECL_CONTEXT (decl), context_die);
19585 /* And its containing type. */
19586 if (!origin)
19587 origin = decl_class_context (decl);
19588 if (origin != NULL_TREE)
19589 gen_type_die_for_member (origin, decl, context_die);
19591 /* And its containing namespace. */
19592 context_die = declare_in_namespace (decl, context_die);
19595 /* Now output a DIE to represent the function itself. */
19596 if (decl)
19597 gen_subprogram_die (decl, context_die);
19598 break;
19600 case TYPE_DECL:
19601 /* If we are in terse mode, don't generate any DIEs to represent any
19602 actual typedefs. */
19603 if (debug_info_level <= DINFO_LEVEL_TERSE)
19604 break;
19606 /* In the special case of a TYPE_DECL node representing the declaration
19607 of some type tag, if the given TYPE_DECL is marked as having been
19608 instantiated from some other (original) TYPE_DECL node (e.g. one which
19609 was generated within the original definition of an inline function) we
19610 used to generate a special (abbreviated) DW_TAG_structure_type,
19611 DW_TAG_union_type, or DW_TAG_enumeration_type DIE here. But nothing
19612 should be actually referencing those DIEs, as variable DIEs with that
19613 type would be emitted already in the abstract origin, so it was always
19614 removed during unused type prunning. Don't add anything in this
19615 case. */
19616 if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
19617 break;
19619 if (is_redundant_typedef (decl))
19620 gen_type_die (TREE_TYPE (decl), context_die);
19621 else
19622 /* Output a DIE to represent the typedef itself. */
19623 gen_typedef_die (decl, context_die);
19624 break;
19626 case LABEL_DECL:
19627 if (debug_info_level >= DINFO_LEVEL_NORMAL)
19628 gen_label_die (decl, context_die);
19629 break;
19631 case VAR_DECL:
19632 case RESULT_DECL:
19633 /* If we are in terse mode, don't generate any DIEs to represent any
19634 variable declarations or definitions. */
19635 if (debug_info_level <= DINFO_LEVEL_TERSE)
19636 break;
19638 /* Output any DIEs that are needed to specify the type of this data
19639 object. */
19640 if (decl_by_reference_p (decl_or_origin))
19641 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
19642 else
19643 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
19645 /* And its containing type. */
19646 class_origin = decl_class_context (decl_or_origin);
19647 if (class_origin != NULL_TREE)
19648 gen_type_die_for_member (class_origin, decl_or_origin, context_die);
19650 /* And its containing namespace. */
19651 context_die = declare_in_namespace (decl_or_origin, context_die);
19653 /* Now output the DIE to represent the data object itself. This gets
19654 complicated because of the possibility that the VAR_DECL really
19655 represents an inlined instance of a formal parameter for an inline
19656 function. */
19657 ultimate_origin = decl_ultimate_origin (decl_or_origin);
19658 if (ultimate_origin != NULL_TREE
19659 && TREE_CODE (ultimate_origin) == PARM_DECL)
19660 gen_formal_parameter_die (decl, origin,
19661 true /* Emit name attribute. */,
19662 context_die);
19663 else
19664 gen_variable_die (decl, origin, context_die);
19665 break;
19667 case FIELD_DECL:
19668 /* Ignore the nameless fields that are used to skip bits but handle C++
19669 anonymous unions and structs. */
19670 if (DECL_NAME (decl) != NULL_TREE
19671 || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
19672 || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
19674 gen_type_die (member_declared_type (decl), context_die);
19675 gen_field_die (decl, context_die);
19677 break;
19679 case PARM_DECL:
19680 if (DECL_BY_REFERENCE (decl_or_origin))
19681 gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
19682 else
19683 gen_type_die (TREE_TYPE (decl_or_origin), context_die);
19684 gen_formal_parameter_die (decl, origin,
19685 true /* Emit name attribute. */,
19686 context_die);
19687 break;
19689 case NAMESPACE_DECL:
19690 case IMPORTED_DECL:
19691 if (dwarf_version >= 3 || !dwarf_strict)
19692 gen_namespace_die (decl, context_die);
19693 break;
19695 default:
19696 /* Probably some frontend-internal decl. Assume we don't care. */
19697 gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
19698 break;
19702 /* Output debug information for global decl DECL. Called from toplev.c after
19703 compilation proper has finished. */
19705 static void
19706 dwarf2out_global_decl (tree decl)
19708 /* Output DWARF2 information for file-scope tentative data object
19709 declarations, file-scope (extern) function declarations (which
19710 had no corresponding body) and file-scope tagged type declarations
19711 and definitions which have not yet been forced out. */
19712 if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
19713 dwarf2out_decl (decl);
19716 /* Output debug information for type decl DECL. Called from toplev.c
19717 and from language front ends (to record built-in types). */
19718 static void
19719 dwarf2out_type_decl (tree decl, int local)
19721 if (!local)
19722 dwarf2out_decl (decl);
19725 /* Output debug information for imported module or decl DECL.
19726 NAME is non-NULL name in the lexical block if the decl has been renamed.
19727 LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
19728 that DECL belongs to.
19729 LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK. */
19730 static void
19731 dwarf2out_imported_module_or_decl_1 (tree decl,
19732 tree name,
19733 tree lexical_block,
19734 dw_die_ref lexical_block_die)
19736 expanded_location xloc;
19737 dw_die_ref imported_die = NULL;
19738 dw_die_ref at_import_die;
19740 if (TREE_CODE (decl) == IMPORTED_DECL)
19742 xloc = expand_location (DECL_SOURCE_LOCATION (decl));
19743 decl = IMPORTED_DECL_ASSOCIATED_DECL (decl);
19744 gcc_assert (decl);
19746 else
19747 xloc = expand_location (input_location);
19749 if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
19751 if (is_base_type (TREE_TYPE (decl)))
19752 at_import_die = base_type_die (TREE_TYPE (decl));
19753 else
19754 at_import_die = force_type_die (TREE_TYPE (decl));
19755 /* For namespace N { typedef void T; } using N::T; base_type_die
19756 returns NULL, but DW_TAG_imported_declaration requires
19757 the DW_AT_import tag. Force creation of DW_TAG_typedef. */
19758 if (!at_import_die)
19760 gcc_assert (TREE_CODE (decl) == TYPE_DECL);
19761 gen_typedef_die (decl, get_context_die (DECL_CONTEXT (decl)));
19762 at_import_die = lookup_type_die (TREE_TYPE (decl));
19763 gcc_assert (at_import_die);
19766 else
19768 at_import_die = lookup_decl_die (decl);
19769 if (!at_import_die)
19771 /* If we're trying to avoid duplicate debug info, we may not have
19772 emitted the member decl for this field. Emit it now. */
19773 if (TREE_CODE (decl) == FIELD_DECL)
19775 tree type = DECL_CONTEXT (decl);
19777 if (TYPE_CONTEXT (type)
19778 && TYPE_P (TYPE_CONTEXT (type))
19779 && !should_emit_struct_debug (TYPE_CONTEXT (type),
19780 DINFO_USAGE_DIR_USE))
19781 return;
19782 gen_type_die_for_member (type, decl,
19783 get_context_die (TYPE_CONTEXT (type)));
19785 at_import_die = force_decl_die (decl);
19789 if (TREE_CODE (decl) == NAMESPACE_DECL)
19791 if (dwarf_version >= 3 || !dwarf_strict)
19792 imported_die = new_die (DW_TAG_imported_module,
19793 lexical_block_die,
19794 lexical_block);
19795 else
19796 return;
19798 else
19799 imported_die = new_die (DW_TAG_imported_declaration,
19800 lexical_block_die,
19801 lexical_block);
19803 add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
19804 add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
19805 if (name)
19806 add_AT_string (imported_die, DW_AT_name,
19807 IDENTIFIER_POINTER (name));
19808 add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
19811 /* Output debug information for imported module or decl DECL.
19812 NAME is non-NULL name in context if the decl has been renamed.
19813 CHILD is true if decl is one of the renamed decls as part of
19814 importing whole module. */
19816 static void
19817 dwarf2out_imported_module_or_decl (tree decl, tree name, tree context,
19818 bool child)
19820 /* dw_die_ref at_import_die; */
19821 dw_die_ref scope_die;
19823 if (debug_info_level <= DINFO_LEVEL_TERSE)
19824 return;
19826 gcc_assert (decl);
19828 /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
19829 We need decl DIE for reference and scope die. First, get DIE for the decl
19830 itself. */
19832 /* Get the scope die for decl context. Use comp_unit_die for global module
19833 or decl. If die is not found for non globals, force new die. */
19834 if (context
19835 && TYPE_P (context)
19836 && !should_emit_struct_debug (context, DINFO_USAGE_DIR_USE))
19837 return;
19839 if (!(dwarf_version >= 3 || !dwarf_strict))
19840 return;
19842 scope_die = get_context_die (context);
19844 if (child)
19846 gcc_assert (scope_die->die_child);
19847 gcc_assert (scope_die->die_child->die_tag == DW_TAG_imported_module);
19848 gcc_assert (TREE_CODE (decl) != NAMESPACE_DECL);
19849 scope_die = scope_die->die_child;
19852 /* OK, now we have DIEs for decl as well as scope. Emit imported die. */
19853 dwarf2out_imported_module_or_decl_1 (decl, name, context, scope_die);
19857 /* Write the debugging output for DECL. */
19859 void
19860 dwarf2out_decl (tree decl)
19862 dw_die_ref context_die = comp_unit_die;
19864 switch (TREE_CODE (decl))
19866 case ERROR_MARK:
19867 return;
19869 case FUNCTION_DECL:
19870 /* What we would really like to do here is to filter out all mere
19871 file-scope declarations of file-scope functions which are never
19872 referenced later within this translation unit (and keep all of ones
19873 that *are* referenced later on) but we aren't clairvoyant, so we have
19874 no idea which functions will be referenced in the future (i.e. later
19875 on within the current translation unit). So here we just ignore all
19876 file-scope function declarations which are not also definitions. If
19877 and when the debugger needs to know something about these functions,
19878 it will have to hunt around and find the DWARF information associated
19879 with the definition of the function.
19881 We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
19882 nodes represent definitions and which ones represent mere
19883 declarations. We have to check DECL_INITIAL instead. That's because
19884 the C front-end supports some weird semantics for "extern inline"
19885 function definitions. These can get inlined within the current
19886 translation unit (and thus, we need to generate Dwarf info for their
19887 abstract instances so that the Dwarf info for the concrete inlined
19888 instances can have something to refer to) but the compiler never
19889 generates any out-of-lines instances of such things (despite the fact
19890 that they *are* definitions).
19892 The important point is that the C front-end marks these "extern
19893 inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
19894 them anyway. Note that the C++ front-end also plays some similar games
19895 for inline function definitions appearing within include files which
19896 also contain `#pragma interface' pragmas. */
19897 if (DECL_INITIAL (decl) == NULL_TREE)
19898 return;
19900 /* If we're a nested function, initially use a parent of NULL; if we're
19901 a plain function, this will be fixed up in decls_for_scope. If
19902 we're a method, it will be ignored, since we already have a DIE. */
19903 if (decl_function_context (decl)
19904 /* But if we're in terse mode, we don't care about scope. */
19905 && debug_info_level > DINFO_LEVEL_TERSE)
19906 context_die = NULL;
19907 break;
19909 case VAR_DECL:
19910 /* Ignore this VAR_DECL if it refers to a file-scope extern data object
19911 declaration and if the declaration was never even referenced from
19912 within this entire compilation unit. We suppress these DIEs in
19913 order to save space in the .debug section (by eliminating entries
19914 which are probably useless). Note that we must not suppress
19915 block-local extern declarations (whether used or not) because that
19916 would screw-up the debugger's name lookup mechanism and cause it to
19917 miss things which really ought to be in scope at a given point. */
19918 if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
19919 return;
19921 /* For local statics lookup proper context die. */
19922 if (TREE_STATIC (decl) && decl_function_context (decl))
19923 context_die = lookup_decl_die (DECL_CONTEXT (decl));
19925 /* If we are in terse mode, don't generate any DIEs to represent any
19926 variable declarations or definitions. */
19927 if (debug_info_level <= DINFO_LEVEL_TERSE)
19928 return;
19929 break;
19931 case CONST_DECL:
19932 if (debug_info_level <= DINFO_LEVEL_TERSE)
19933 return;
19934 if (!is_fortran ())
19935 return;
19936 if (TREE_STATIC (decl) && decl_function_context (decl))
19937 context_die = lookup_decl_die (DECL_CONTEXT (decl));
19938 break;
19940 case NAMESPACE_DECL:
19941 case IMPORTED_DECL:
19942 if (debug_info_level <= DINFO_LEVEL_TERSE)
19943 return;
19944 if (lookup_decl_die (decl) != NULL)
19945 return;
19946 break;
19948 case TYPE_DECL:
19949 /* Don't emit stubs for types unless they are needed by other DIEs. */
19950 if (TYPE_DECL_SUPPRESS_DEBUG (decl))
19951 return;
19953 /* Don't bother trying to generate any DIEs to represent any of the
19954 normal built-in types for the language we are compiling. */
19955 if (DECL_IS_BUILTIN (decl))
19957 /* OK, we need to generate one for `bool' so GDB knows what type
19958 comparisons have. */
19959 if (is_cxx ()
19960 && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE
19961 && ! DECL_IGNORED_P (decl))
19962 modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
19964 return;
19967 /* If we are in terse mode, don't generate any DIEs for types. */
19968 if (debug_info_level <= DINFO_LEVEL_TERSE)
19969 return;
19971 /* If we're a function-scope tag, initially use a parent of NULL;
19972 this will be fixed up in decls_for_scope. */
19973 if (decl_function_context (decl))
19974 context_die = NULL;
19976 break;
19978 default:
19979 return;
19982 gen_decl_die (decl, NULL, context_die);
19985 /* Write the debugging output for DECL. */
19987 static void
19988 dwarf2out_function_decl (tree decl)
19990 dwarf2out_decl (decl);
19992 htab_empty (decl_loc_table);
19995 /* Output a marker (i.e. a label) for the beginning of the generated code for
19996 a lexical block. */
19998 static void
19999 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
20000 unsigned int blocknum)
20002 switch_to_section (current_function_section ());
20003 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
20006 /* Output a marker (i.e. a label) for the end of the generated code for a
20007 lexical block. */
20009 static void
20010 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
20012 switch_to_section (current_function_section ());
20013 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
20016 /* Returns nonzero if it is appropriate not to emit any debugging
20017 information for BLOCK, because it doesn't contain any instructions.
20019 Don't allow this for blocks with nested functions or local classes
20020 as we would end up with orphans, and in the presence of scheduling
20021 we may end up calling them anyway. */
20023 static bool
20024 dwarf2out_ignore_block (const_tree block)
20026 tree decl;
20027 unsigned int i;
20029 for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
20030 if (TREE_CODE (decl) == FUNCTION_DECL
20031 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
20032 return 0;
20033 for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (block); i++)
20035 decl = BLOCK_NONLOCALIZED_VAR (block, i);
20036 if (TREE_CODE (decl) == FUNCTION_DECL
20037 || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
20038 return 0;
20041 return 1;
20044 /* Hash table routines for file_hash. */
20046 static int
20047 file_table_eq (const void *p1_p, const void *p2_p)
20049 const struct dwarf_file_data *const p1 =
20050 (const struct dwarf_file_data *) p1_p;
20051 const char *const p2 = (const char *) p2_p;
20052 return strcmp (p1->filename, p2) == 0;
20055 static hashval_t
20056 file_table_hash (const void *p_p)
20058 const struct dwarf_file_data *const p = (const struct dwarf_file_data *) p_p;
20059 return htab_hash_string (p->filename);
20062 /* Lookup FILE_NAME (in the list of filenames that we know about here in
20063 dwarf2out.c) and return its "index". The index of each (known) filename is
20064 just a unique number which is associated with only that one filename. We
20065 need such numbers for the sake of generating labels (in the .debug_sfnames
20066 section) and references to those files numbers (in the .debug_srcinfo
20067 and.debug_macinfo sections). If the filename given as an argument is not
20068 found in our current list, add it to the list and assign it the next
20069 available unique index number. In order to speed up searches, we remember
20070 the index of the filename was looked up last. This handles the majority of
20071 all searches. */
20073 static struct dwarf_file_data *
20074 lookup_filename (const char *file_name)
20076 void ** slot;
20077 struct dwarf_file_data * created;
20079 /* Check to see if the file name that was searched on the previous
20080 call matches this file name. If so, return the index. */
20081 if (file_table_last_lookup
20082 && (file_name == file_table_last_lookup->filename
20083 || strcmp (file_table_last_lookup->filename, file_name) == 0))
20084 return file_table_last_lookup;
20086 /* Didn't match the previous lookup, search the table. */
20087 slot = htab_find_slot_with_hash (file_table, file_name,
20088 htab_hash_string (file_name), INSERT);
20089 if (*slot)
20090 return (struct dwarf_file_data *) *slot;
20092 created = GGC_NEW (struct dwarf_file_data);
20093 created->filename = file_name;
20094 created->emitted_number = 0;
20095 *slot = created;
20096 return created;
20099 /* If the assembler will construct the file table, then translate the compiler
20100 internal file table number into the assembler file table number, and emit
20101 a .file directive if we haven't already emitted one yet. The file table
20102 numbers are different because we prune debug info for unused variables and
20103 types, which may include filenames. */
20105 static int
20106 maybe_emit_file (struct dwarf_file_data * fd)
20108 if (! fd->emitted_number)
20110 if (last_emitted_file)
20111 fd->emitted_number = last_emitted_file->emitted_number + 1;
20112 else
20113 fd->emitted_number = 1;
20114 last_emitted_file = fd;
20116 if (DWARF2_ASM_LINE_DEBUG_INFO)
20118 fprintf (asm_out_file, "\t.file %u ", fd->emitted_number);
20119 output_quoted_string (asm_out_file,
20120 remap_debug_filename (fd->filename));
20121 fputc ('\n', asm_out_file);
20125 return fd->emitted_number;
20128 /* Schedule generation of a DW_AT_const_value attribute to DIE.
20129 That generation should happen after function debug info has been
20130 generated. The value of the attribute is the constant value of ARG. */
20132 static void
20133 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die, tree arg)
20135 die_arg_entry entry;
20137 if (!die || !arg)
20138 return;
20140 if (!tmpl_value_parm_die_table)
20141 tmpl_value_parm_die_table
20142 = VEC_alloc (die_arg_entry, gc, 32);
20144 entry.die = die;
20145 entry.arg = arg;
20146 VEC_safe_push (die_arg_entry, gc,
20147 tmpl_value_parm_die_table,
20148 &entry);
20151 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
20152 by append_entry_to_tmpl_value_parm_die_table. This function must
20153 be called after function DIEs have been generated. */
20155 static void
20156 gen_remaining_tmpl_value_param_die_attribute (void)
20158 if (tmpl_value_parm_die_table)
20160 unsigned i;
20161 die_arg_entry *e;
20163 for (i = 0;
20164 VEC_iterate (die_arg_entry, tmpl_value_parm_die_table, i, e);
20165 i++)
20166 tree_add_const_value_attribute (e->die, e->arg);
20171 /* Replace DW_AT_name for the decl with name. */
20173 static void
20174 dwarf2out_set_name (tree decl, tree name)
20176 dw_die_ref die;
20177 dw_attr_ref attr;
20178 const char *dname;
20180 die = TYPE_SYMTAB_DIE (decl);
20181 if (!die)
20182 return;
20184 dname = dwarf2_name (name, 0);
20185 if (!dname)
20186 return;
20188 attr = get_AT (die, DW_AT_name);
20189 if (attr)
20191 struct indirect_string_node *node;
20193 node = find_AT_string (dname);
20194 /* replace the string. */
20195 attr->dw_attr_val.v.val_str = node;
20198 else
20199 add_name_attribute (die, dname);
20202 /* Called by the final INSN scan whenever we see a direct function call.
20203 Make an entry into the direct call table, recording the point of call
20204 and a reference to the target function's debug entry. */
20206 static void
20207 dwarf2out_direct_call (tree targ)
20209 dcall_entry e;
20210 tree origin = decl_ultimate_origin (targ);
20212 /* If this is a clone, use the abstract origin as the target. */
20213 if (origin)
20214 targ = origin;
20216 e.poc_label_num = poc_label_num++;
20217 e.poc_decl = current_function_decl;
20218 e.targ_die = force_decl_die (targ);
20219 VEC_safe_push (dcall_entry, gc, dcall_table, &e);
20221 /* Drop a label at the return point to mark the point of call. */
20222 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LPOC", e.poc_label_num);
20225 /* Returns a hash value for X (which really is a struct vcall_insn). */
20227 static hashval_t
20228 vcall_insn_table_hash (const void *x)
20230 return (hashval_t) ((const struct vcall_insn *) x)->insn_uid;
20233 /* Return nonzero if insn_uid of struct vcall_insn *X is the same as
20234 insnd_uid of *Y. */
20236 static int
20237 vcall_insn_table_eq (const void *x, const void *y)
20239 return (((const struct vcall_insn *) x)->insn_uid
20240 == ((const struct vcall_insn *) y)->insn_uid);
20243 /* Associate VTABLE_SLOT with INSN_UID in the VCALL_INSN_TABLE. */
20245 static void
20246 store_vcall_insn (unsigned int vtable_slot, int insn_uid)
20248 struct vcall_insn *item = GGC_NEW (struct vcall_insn);
20249 struct vcall_insn **slot;
20251 gcc_assert (item);
20252 item->insn_uid = insn_uid;
20253 item->vtable_slot = vtable_slot;
20254 slot = (struct vcall_insn **)
20255 htab_find_slot_with_hash (vcall_insn_table, &item,
20256 (hashval_t) insn_uid, INSERT);
20257 *slot = item;
20260 /* Return the VTABLE_SLOT associated with INSN_UID. */
20262 static unsigned int
20263 lookup_vcall_insn (unsigned int insn_uid)
20265 struct vcall_insn item;
20266 struct vcall_insn *p;
20268 item.insn_uid = insn_uid;
20269 item.vtable_slot = 0;
20270 p = (struct vcall_insn *) htab_find_with_hash (vcall_insn_table,
20271 (void *) &item,
20272 (hashval_t) insn_uid);
20273 if (p == NULL)
20274 return (unsigned int) -1;
20275 return p->vtable_slot;
20279 /* Called when lowering indirect calls to RTL. We make a note of INSN_UID
20280 and the OBJ_TYPE_REF_TOKEN from ADDR. For C++ virtual calls, the token
20281 is the vtable slot index that we will need to put in the virtual call
20282 table later. */
20284 static void
20285 dwarf2out_virtual_call_token (tree addr, int insn_uid)
20287 if (is_cxx() && TREE_CODE (addr) == OBJ_TYPE_REF)
20289 tree token = OBJ_TYPE_REF_TOKEN (addr);
20290 if (TREE_CODE (token) == INTEGER_CST)
20291 store_vcall_insn (TREE_INT_CST_LOW (token), insn_uid);
20295 /* Called when scheduling RTL, when a CALL_INSN is split. Copies the
20296 OBJ_TYPE_REF_TOKEN previously associated with OLD_INSN and associates it
20297 with NEW_INSN. */
20299 static void
20300 dwarf2out_copy_call_info (rtx old_insn, rtx new_insn)
20302 unsigned int vtable_slot = lookup_vcall_insn (INSN_UID (old_insn));
20304 if (vtable_slot != (unsigned int) -1)
20305 store_vcall_insn (vtable_slot, INSN_UID (new_insn));
20308 /* Called by the final INSN scan whenever we see a virtual function call.
20309 Make an entry into the virtual call table, recording the point of call
20310 and the slot index of the vtable entry used to call the virtual member
20311 function. The slot index was associated with the INSN_UID during the
20312 lowering to RTL. */
20314 static void
20315 dwarf2out_virtual_call (int insn_uid)
20317 unsigned int vtable_slot = lookup_vcall_insn (insn_uid);
20318 vcall_entry e;
20320 if (vtable_slot == (unsigned int) -1)
20321 return;
20323 e.poc_label_num = poc_label_num++;
20324 e.vtable_slot = vtable_slot;
20325 VEC_safe_push (vcall_entry, gc, vcall_table, &e);
20327 /* Drop a label at the return point to mark the point of call. */
20328 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LPOC", e.poc_label_num);
20331 /* Called by the final INSN scan whenever we see a var location. We
20332 use it to drop labels in the right places, and throw the location in
20333 our lookup table. */
20335 static void
20336 dwarf2out_var_location (rtx loc_note)
20338 char loclabel[MAX_ARTIFICIAL_LABEL_BYTES + 2];
20339 struct var_loc_node *newloc;
20340 rtx next_real;
20341 static const char *last_label;
20342 static const char *last_postcall_label;
20343 static bool last_in_cold_section_p;
20344 tree decl;
20346 if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
20347 return;
20349 next_real = next_real_insn (loc_note);
20350 /* If there are no instructions which would be affected by this note,
20351 don't do anything. */
20352 if (next_real == NULL_RTX)
20353 return;
20355 decl = NOTE_VAR_LOCATION_DECL (loc_note);
20356 newloc = add_var_loc_to_decl (decl, loc_note);
20357 if (newloc == NULL)
20358 return;
20360 /* If there were no real insns between note we processed last time
20361 and this note, use the label we emitted last time. */
20362 if (last_var_location_insn == NULL_RTX
20363 || last_var_location_insn != next_real
20364 || last_in_cold_section_p != in_cold_section_p)
20366 ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
20367 ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
20368 loclabel_num++;
20369 last_label = ggc_strdup (loclabel);
20370 last_postcall_label = NULL;
20372 newloc->var_loc_note = loc_note;
20373 newloc->next = NULL;
20375 if (!NOTE_DURING_CALL_P (loc_note))
20376 newloc->label = last_label;
20377 else
20379 if (!last_postcall_label)
20381 sprintf (loclabel, "%s-1", last_label);
20382 last_postcall_label = ggc_strdup (loclabel);
20384 newloc->label = last_postcall_label;
20387 last_var_location_insn = next_real;
20388 last_in_cold_section_p = in_cold_section_p;
20391 /* We need to reset the locations at the beginning of each
20392 function. We can't do this in the end_function hook, because the
20393 declarations that use the locations won't have been output when
20394 that hook is called. Also compute have_multiple_function_sections here. */
20396 static void
20397 dwarf2out_begin_function (tree fun)
20399 if (function_section (fun) != text_section)
20400 have_multiple_function_sections = true;
20402 dwarf2out_note_section_used ();
20405 /* Output a label to mark the beginning of a source code line entry
20406 and record information relating to this source line, in
20407 'line_info_table' for later output of the .debug_line section. */
20409 static void
20410 dwarf2out_source_line (unsigned int line, const char *filename,
20411 int discriminator, bool is_stmt)
20413 static bool last_is_stmt = true;
20415 if (debug_info_level >= DINFO_LEVEL_NORMAL
20416 && line != 0)
20418 int file_num = maybe_emit_file (lookup_filename (filename));
20420 switch_to_section (current_function_section ());
20422 /* If requested, emit something human-readable. */
20423 if (flag_debug_asm)
20424 fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
20425 filename, line);
20427 if (DWARF2_ASM_LINE_DEBUG_INFO)
20429 /* Emit the .loc directive understood by GNU as. */
20430 fprintf (asm_out_file, "\t.loc %d %d 0", file_num, line);
20431 if (is_stmt != last_is_stmt)
20433 fprintf (asm_out_file, " is_stmt %d", is_stmt ? 1 : 0);
20434 last_is_stmt = is_stmt;
20436 if (SUPPORTS_DISCRIMINATOR && discriminator != 0)
20437 fprintf (asm_out_file, " discriminator %d", discriminator);
20438 fputc ('\n', asm_out_file);
20440 /* Indicate that line number info exists. */
20441 line_info_table_in_use++;
20443 else if (function_section (current_function_decl) != text_section)
20445 dw_separate_line_info_ref line_info;
20446 targetm.asm_out.internal_label (asm_out_file,
20447 SEPARATE_LINE_CODE_LABEL,
20448 separate_line_info_table_in_use);
20450 /* Expand the line info table if necessary. */
20451 if (separate_line_info_table_in_use
20452 == separate_line_info_table_allocated)
20454 separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
20455 separate_line_info_table
20456 = GGC_RESIZEVEC (dw_separate_line_info_entry,
20457 separate_line_info_table,
20458 separate_line_info_table_allocated);
20459 memset (separate_line_info_table
20460 + separate_line_info_table_in_use,
20462 (LINE_INFO_TABLE_INCREMENT
20463 * sizeof (dw_separate_line_info_entry)));
20466 /* Add the new entry at the end of the line_info_table. */
20467 line_info
20468 = &separate_line_info_table[separate_line_info_table_in_use++];
20469 line_info->dw_file_num = file_num;
20470 line_info->dw_line_num = line;
20471 line_info->function = current_function_funcdef_no;
20473 else
20475 dw_line_info_ref line_info;
20477 targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL,
20478 line_info_table_in_use);
20480 /* Expand the line info table if necessary. */
20481 if (line_info_table_in_use == line_info_table_allocated)
20483 line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
20484 line_info_table
20485 = GGC_RESIZEVEC (dw_line_info_entry, line_info_table,
20486 line_info_table_allocated);
20487 memset (line_info_table + line_info_table_in_use, 0,
20488 LINE_INFO_TABLE_INCREMENT * sizeof (dw_line_info_entry));
20491 /* Add the new entry at the end of the line_info_table. */
20492 line_info = &line_info_table[line_info_table_in_use++];
20493 line_info->dw_file_num = file_num;
20494 line_info->dw_line_num = line;
20499 /* Record the beginning of a new source file. */
20501 static void
20502 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
20504 if (flag_eliminate_dwarf2_dups && dwarf_version < 4)
20506 /* Record the beginning of the file for break_out_includes. */
20507 dw_die_ref bincl_die;
20509 bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die, NULL);
20510 add_AT_string (bincl_die, DW_AT_name, remap_debug_filename (filename));
20513 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
20515 int file_num = maybe_emit_file (lookup_filename (filename));
20517 switch_to_section (debug_macinfo_section);
20518 dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
20519 dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
20520 lineno);
20522 dw2_asm_output_data_uleb128 (file_num, "file %s", filename);
20526 /* Record the end of a source file. */
20528 static void
20529 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
20531 if (flag_eliminate_dwarf2_dups && dwarf_version < 4)
20532 /* Record the end of the file for break_out_includes. */
20533 new_die (DW_TAG_GNU_EINCL, comp_unit_die, NULL);
20535 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
20537 switch_to_section (debug_macinfo_section);
20538 dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
20542 /* Called from debug_define in toplev.c. The `buffer' parameter contains
20543 the tail part of the directive line, i.e. the part which is past the
20544 initial whitespace, #, whitespace, directive-name, whitespace part. */
20546 static void
20547 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
20548 const char *buffer ATTRIBUTE_UNUSED)
20550 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
20552 switch_to_section (debug_macinfo_section);
20553 dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
20554 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
20555 dw2_asm_output_nstring (buffer, -1, "The macro");
20559 /* Called from debug_undef in toplev.c. The `buffer' parameter contains
20560 the tail part of the directive line, i.e. the part which is past the
20561 initial whitespace, #, whitespace, directive-name, whitespace part. */
20563 static void
20564 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
20565 const char *buffer ATTRIBUTE_UNUSED)
20567 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
20569 switch_to_section (debug_macinfo_section);
20570 dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
20571 dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
20572 dw2_asm_output_nstring (buffer, -1, "The macro");
20576 /* Set up for Dwarf output at the start of compilation. */
20578 static void
20579 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
20581 /* Allocate the file_table. */
20582 file_table = htab_create_ggc (50, file_table_hash,
20583 file_table_eq, NULL);
20585 /* Allocate the decl_die_table. */
20586 decl_die_table = htab_create_ggc (10, decl_die_table_hash,
20587 decl_die_table_eq, NULL);
20589 /* Allocate the decl_loc_table. */
20590 decl_loc_table = htab_create_ggc (10, decl_loc_table_hash,
20591 decl_loc_table_eq, NULL);
20593 /* Allocate the initial hunk of the decl_scope_table. */
20594 decl_scope_table = VEC_alloc (tree, gc, 256);
20596 /* Allocate the initial hunk of the abbrev_die_table. */
20597 abbrev_die_table = GGC_CNEWVEC (dw_die_ref, ABBREV_DIE_TABLE_INCREMENT);
20598 abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
20599 /* Zero-th entry is allocated, but unused. */
20600 abbrev_die_table_in_use = 1;
20602 /* Allocate the initial hunk of the line_info_table. */
20603 line_info_table = GGC_CNEWVEC (dw_line_info_entry, LINE_INFO_TABLE_INCREMENT);
20604 line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
20606 /* Zero-th entry is allocated, but unused. */
20607 line_info_table_in_use = 1;
20609 /* Allocate the pubtypes and pubnames vectors. */
20610 pubname_table = VEC_alloc (pubname_entry, gc, 32);
20611 pubtype_table = VEC_alloc (pubname_entry, gc, 32);
20613 /* Allocate the table that maps insn UIDs to vtable slot indexes. */
20614 vcall_insn_table = htab_create_ggc (10, vcall_insn_table_hash,
20615 vcall_insn_table_eq, NULL);
20617 /* Generate the initial DIE for the .debug section. Note that the (string)
20618 value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
20619 will (typically) be a relative pathname and that this pathname should be
20620 taken as being relative to the directory from which the compiler was
20621 invoked when the given (base) source file was compiled. We will fill
20622 in this value in dwarf2out_finish. */
20623 comp_unit_die = gen_compile_unit_die (NULL);
20625 incomplete_types = VEC_alloc (tree, gc, 64);
20627 used_rtx_array = VEC_alloc (rtx, gc, 32);
20629 debug_info_section = get_section (DEBUG_INFO_SECTION,
20630 SECTION_DEBUG, NULL);
20631 debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
20632 SECTION_DEBUG, NULL);
20633 debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
20634 SECTION_DEBUG, NULL);
20635 debug_macinfo_section = get_section (DEBUG_MACINFO_SECTION,
20636 SECTION_DEBUG, NULL);
20637 debug_line_section = get_section (DEBUG_LINE_SECTION,
20638 SECTION_DEBUG, NULL);
20639 debug_loc_section = get_section (DEBUG_LOC_SECTION,
20640 SECTION_DEBUG, NULL);
20641 debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
20642 SECTION_DEBUG, NULL);
20643 debug_pubtypes_section = get_section (DEBUG_PUBTYPES_SECTION,
20644 SECTION_DEBUG, NULL);
20645 debug_dcall_section = get_section (DEBUG_DCALL_SECTION,
20646 SECTION_DEBUG, NULL);
20647 debug_vcall_section = get_section (DEBUG_VCALL_SECTION,
20648 SECTION_DEBUG, NULL);
20649 debug_str_section = get_section (DEBUG_STR_SECTION,
20650 DEBUG_STR_SECTION_FLAGS, NULL);
20651 debug_ranges_section = get_section (DEBUG_RANGES_SECTION,
20652 SECTION_DEBUG, NULL);
20653 debug_frame_section = get_section (DEBUG_FRAME_SECTION,
20654 SECTION_DEBUG, NULL);
20656 ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
20657 ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
20658 DEBUG_ABBREV_SECTION_LABEL, 0);
20659 ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
20660 ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
20661 COLD_TEXT_SECTION_LABEL, 0);
20662 ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
20664 ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
20665 DEBUG_INFO_SECTION_LABEL, 0);
20666 ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
20667 DEBUG_LINE_SECTION_LABEL, 0);
20668 ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
20669 DEBUG_RANGES_SECTION_LABEL, 0);
20670 switch_to_section (debug_abbrev_section);
20671 ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
20672 switch_to_section (debug_info_section);
20673 ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
20674 switch_to_section (debug_line_section);
20675 ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
20677 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
20679 switch_to_section (debug_macinfo_section);
20680 ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
20681 DEBUG_MACINFO_SECTION_LABEL, 0);
20682 ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
20685 switch_to_section (text_section);
20686 ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
20687 if (flag_reorder_blocks_and_partition)
20689 cold_text_section = unlikely_text_section ();
20690 switch_to_section (cold_text_section);
20691 ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
20696 /* Called before cgraph_optimize starts outputtting functions, variables
20697 and toplevel asms into assembly. */
20699 static void
20700 dwarf2out_assembly_start (void)
20702 if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE && dwarf2out_do_cfi_asm ())
20704 #ifndef TARGET_UNWIND_INFO
20705 if (USING_SJLJ_EXCEPTIONS || (!flag_unwind_tables && !flag_exceptions))
20706 #endif
20707 fprintf (asm_out_file, "\t.cfi_sections\t.debug_frame\n");
20711 /* A helper function for dwarf2out_finish called through
20712 htab_traverse. Emit one queued .debug_str string. */
20714 static int
20715 output_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
20717 struct indirect_string_node *node = (struct indirect_string_node *) *h;
20719 if (node->label && node->refcount)
20721 switch_to_section (debug_str_section);
20722 ASM_OUTPUT_LABEL (asm_out_file, node->label);
20723 assemble_string (node->str, strlen (node->str) + 1);
20726 return 1;
20729 #if ENABLE_ASSERT_CHECKING
20730 /* Verify that all marks are clear. */
20732 static void
20733 verify_marks_clear (dw_die_ref die)
20735 dw_die_ref c;
20737 gcc_assert (! die->die_mark);
20738 FOR_EACH_CHILD (die, c, verify_marks_clear (c));
20740 #endif /* ENABLE_ASSERT_CHECKING */
20742 /* Clear the marks for a die and its children.
20743 Be cool if the mark isn't set. */
20745 static void
20746 prune_unmark_dies (dw_die_ref die)
20748 dw_die_ref c;
20750 if (die->die_mark)
20751 die->die_mark = 0;
20752 FOR_EACH_CHILD (die, c, prune_unmark_dies (c));
20755 /* Given DIE that we're marking as used, find any other dies
20756 it references as attributes and mark them as used. */
20758 static void
20759 prune_unused_types_walk_attribs (dw_die_ref die)
20761 dw_attr_ref a;
20762 unsigned ix;
20764 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
20766 if (a->dw_attr_val.val_class == dw_val_class_die_ref)
20768 /* A reference to another DIE.
20769 Make sure that it will get emitted.
20770 If it was broken out into a comdat group, don't follow it. */
20771 if (dwarf_version < 4
20772 || a->dw_attr == DW_AT_specification
20773 || a->dw_attr_val.v.val_die_ref.die->die_id.die_type_node == NULL)
20774 prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
20776 /* Set the string's refcount to 0 so that prune_unused_types_mark
20777 accounts properly for it. */
20778 if (AT_class (a) == dw_val_class_str)
20779 a->dw_attr_val.v.val_str->refcount = 0;
20784 /* Mark DIE as being used. If DOKIDS is true, then walk down
20785 to DIE's children. */
20787 static void
20788 prune_unused_types_mark (dw_die_ref die, int dokids)
20790 dw_die_ref c;
20792 if (die->die_mark == 0)
20794 /* We haven't done this node yet. Mark it as used. */
20795 die->die_mark = 1;
20797 /* We also have to mark its parents as used.
20798 (But we don't want to mark our parents' kids due to this.) */
20799 if (die->die_parent)
20800 prune_unused_types_mark (die->die_parent, 0);
20802 /* Mark any referenced nodes. */
20803 prune_unused_types_walk_attribs (die);
20805 /* If this node is a specification,
20806 also mark the definition, if it exists. */
20807 if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
20808 prune_unused_types_mark (die->die_definition, 1);
20811 if (dokids && die->die_mark != 2)
20813 /* We need to walk the children, but haven't done so yet.
20814 Remember that we've walked the kids. */
20815 die->die_mark = 2;
20817 /* If this is an array type, we need to make sure our
20818 kids get marked, even if they're types. If we're
20819 breaking out types into comdat sections, do this
20820 for all type definitions. */
20821 if (die->die_tag == DW_TAG_array_type
20822 || (dwarf_version >= 4
20823 && is_type_die (die) && ! is_declaration_die (die)))
20824 FOR_EACH_CHILD (die, c, prune_unused_types_mark (c, 1));
20825 else
20826 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
20830 /* For local classes, look if any static member functions were emitted
20831 and if so, mark them. */
20833 static void
20834 prune_unused_types_walk_local_classes (dw_die_ref die)
20836 dw_die_ref c;
20838 if (die->die_mark == 2)
20839 return;
20841 switch (die->die_tag)
20843 case DW_TAG_structure_type:
20844 case DW_TAG_union_type:
20845 case DW_TAG_class_type:
20846 break;
20848 case DW_TAG_subprogram:
20849 if (!get_AT_flag (die, DW_AT_declaration)
20850 || die->die_definition != NULL)
20851 prune_unused_types_mark (die, 1);
20852 return;
20854 default:
20855 return;
20858 /* Mark children. */
20859 FOR_EACH_CHILD (die, c, prune_unused_types_walk_local_classes (c));
20862 /* Walk the tree DIE and mark types that we actually use. */
20864 static void
20865 prune_unused_types_walk (dw_die_ref die)
20867 dw_die_ref c;
20869 /* Don't do anything if this node is already marked and
20870 children have been marked as well. */
20871 if (die->die_mark == 2)
20872 return;
20874 switch (die->die_tag)
20876 case DW_TAG_structure_type:
20877 case DW_TAG_union_type:
20878 case DW_TAG_class_type:
20879 if (die->die_perennial_p)
20880 break;
20882 for (c = die->die_parent; c; c = c->die_parent)
20883 if (c->die_tag == DW_TAG_subprogram)
20884 break;
20886 /* Finding used static member functions inside of classes
20887 is needed just for local classes, because for other classes
20888 static member function DIEs with DW_AT_specification
20889 are emitted outside of the DW_TAG_*_type. If we ever change
20890 it, we'd need to call this even for non-local classes. */
20891 if (c)
20892 prune_unused_types_walk_local_classes (die);
20894 /* It's a type node --- don't mark it. */
20895 return;
20897 case DW_TAG_const_type:
20898 case DW_TAG_packed_type:
20899 case DW_TAG_pointer_type:
20900 case DW_TAG_reference_type:
20901 case DW_TAG_volatile_type:
20902 case DW_TAG_typedef:
20903 case DW_TAG_array_type:
20904 case DW_TAG_interface_type:
20905 case DW_TAG_friend:
20906 case DW_TAG_variant_part:
20907 case DW_TAG_enumeration_type:
20908 case DW_TAG_subroutine_type:
20909 case DW_TAG_string_type:
20910 case DW_TAG_set_type:
20911 case DW_TAG_subrange_type:
20912 case DW_TAG_ptr_to_member_type:
20913 case DW_TAG_file_type:
20914 if (die->die_perennial_p)
20915 break;
20917 /* It's a type node --- don't mark it. */
20918 return;
20920 default:
20921 /* Mark everything else. */
20922 break;
20925 if (die->die_mark == 0)
20927 die->die_mark = 1;
20929 /* Now, mark any dies referenced from here. */
20930 prune_unused_types_walk_attribs (die);
20933 die->die_mark = 2;
20935 /* Mark children. */
20936 FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
20939 /* Increment the string counts on strings referred to from DIE's
20940 attributes. */
20942 static void
20943 prune_unused_types_update_strings (dw_die_ref die)
20945 dw_attr_ref a;
20946 unsigned ix;
20948 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
20949 if (AT_class (a) == dw_val_class_str)
20951 struct indirect_string_node *s = a->dw_attr_val.v.val_str;
20952 s->refcount++;
20953 /* Avoid unnecessarily putting strings that are used less than
20954 twice in the hash table. */
20955 if (s->refcount
20956 == ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) ? 1 : 2))
20958 void ** slot;
20959 slot = htab_find_slot_with_hash (debug_str_hash, s->str,
20960 htab_hash_string (s->str),
20961 INSERT);
20962 gcc_assert (*slot == NULL);
20963 *slot = s;
20968 /* Remove from the tree DIE any dies that aren't marked. */
20970 static void
20971 prune_unused_types_prune (dw_die_ref die)
20973 dw_die_ref c;
20975 gcc_assert (die->die_mark);
20976 prune_unused_types_update_strings (die);
20978 if (! die->die_child)
20979 return;
20981 c = die->die_child;
20982 do {
20983 dw_die_ref prev = c;
20984 for (c = c->die_sib; ! c->die_mark; c = c->die_sib)
20985 if (c == die->die_child)
20987 /* No marked children between 'prev' and the end of the list. */
20988 if (prev == c)
20989 /* No marked children at all. */
20990 die->die_child = NULL;
20991 else
20993 prev->die_sib = c->die_sib;
20994 die->die_child = prev;
20996 return;
20999 if (c != prev->die_sib)
21000 prev->die_sib = c;
21001 prune_unused_types_prune (c);
21002 } while (c != die->die_child);
21005 /* A helper function for dwarf2out_finish called through
21006 htab_traverse. Clear .debug_str strings that we haven't already
21007 decided to emit. */
21009 static int
21010 prune_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
21012 struct indirect_string_node *node = (struct indirect_string_node *) *h;
21014 if (!node->label || !node->refcount)
21015 htab_clear_slot (debug_str_hash, h);
21017 return 1;
21020 /* Remove dies representing declarations that we never use. */
21022 static void
21023 prune_unused_types (void)
21025 unsigned int i;
21026 limbo_die_node *node;
21027 comdat_type_node *ctnode;
21028 pubname_ref pub;
21029 dcall_entry *dcall;
21031 #if ENABLE_ASSERT_CHECKING
21032 /* All the marks should already be clear. */
21033 verify_marks_clear (comp_unit_die);
21034 for (node = limbo_die_list; node; node = node->next)
21035 verify_marks_clear (node->die);
21036 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21037 verify_marks_clear (ctnode->root_die);
21038 #endif /* ENABLE_ASSERT_CHECKING */
21040 /* Mark types that are used in global variables. */
21041 premark_types_used_by_global_vars ();
21043 /* Set the mark on nodes that are actually used. */
21044 prune_unused_types_walk (comp_unit_die);
21045 for (node = limbo_die_list; node; node = node->next)
21046 prune_unused_types_walk (node->die);
21047 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21049 prune_unused_types_walk (ctnode->root_die);
21050 prune_unused_types_mark (ctnode->type_die, 1);
21053 /* Also set the mark on nodes referenced from the
21054 pubname_table or arange_table. */
21055 for (i = 0; VEC_iterate (pubname_entry, pubname_table, i, pub); i++)
21056 prune_unused_types_mark (pub->die, 1);
21057 for (i = 0; i < arange_table_in_use; i++)
21058 prune_unused_types_mark (arange_table[i], 1);
21060 /* Mark nodes referenced from the direct call table. */
21061 for (i = 0; VEC_iterate (dcall_entry, dcall_table, i, dcall); i++)
21062 prune_unused_types_mark (dcall->targ_die, 1);
21064 /* Get rid of nodes that aren't marked; and update the string counts. */
21065 if (debug_str_hash && debug_str_hash_forced)
21066 htab_traverse (debug_str_hash, prune_indirect_string, NULL);
21067 else if (debug_str_hash)
21068 htab_empty (debug_str_hash);
21069 prune_unused_types_prune (comp_unit_die);
21070 for (node = limbo_die_list; node; node = node->next)
21071 prune_unused_types_prune (node->die);
21072 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21073 prune_unused_types_prune (ctnode->root_die);
21075 /* Leave the marks clear. */
21076 prune_unmark_dies (comp_unit_die);
21077 for (node = limbo_die_list; node; node = node->next)
21078 prune_unmark_dies (node->die);
21079 for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21080 prune_unmark_dies (ctnode->root_die);
21083 /* Set the parameter to true if there are any relative pathnames in
21084 the file table. */
21085 static int
21086 file_table_relative_p (void ** slot, void *param)
21088 bool *p = (bool *) param;
21089 struct dwarf_file_data *d = (struct dwarf_file_data *) *slot;
21090 if (!IS_ABSOLUTE_PATH (d->filename))
21092 *p = true;
21093 return 0;
21095 return 1;
21098 /* Routines to manipulate hash table of comdat type units. */
21100 static hashval_t
21101 htab_ct_hash (const void *of)
21103 hashval_t h;
21104 const comdat_type_node *const type_node = (const comdat_type_node *) of;
21106 memcpy (&h, type_node->signature, sizeof (h));
21107 return h;
21110 static int
21111 htab_ct_eq (const void *of1, const void *of2)
21113 const comdat_type_node *const type_node_1 = (const comdat_type_node *) of1;
21114 const comdat_type_node *const type_node_2 = (const comdat_type_node *) of2;
21116 return (! memcmp (type_node_1->signature, type_node_2->signature,
21117 DWARF_TYPE_SIGNATURE_SIZE));
21120 /* Move a DW_AT_MIPS_linkage_name attribute just added to dw_die_ref
21121 to the location it would have been added, should we know its
21122 DECL_ASSEMBLER_NAME when we added other attributes. This will
21123 probably improve compactness of debug info, removing equivalent
21124 abbrevs, and hide any differences caused by deferring the
21125 computation of the assembler name, triggered by e.g. PCH. */
21127 static inline void
21128 move_linkage_attr (dw_die_ref die)
21130 unsigned ix = VEC_length (dw_attr_node, die->die_attr);
21131 dw_attr_node linkage = *VEC_index (dw_attr_node, die->die_attr, ix - 1);
21133 gcc_assert (linkage.dw_attr == DW_AT_MIPS_linkage_name);
21135 while (--ix > 0)
21137 dw_attr_node *prev = VEC_index (dw_attr_node, die->die_attr, ix - 1);
21139 if (prev->dw_attr == DW_AT_decl_line || prev->dw_attr == DW_AT_name)
21140 break;
21143 if (ix != VEC_length (dw_attr_node, die->die_attr) - 1)
21145 VEC_pop (dw_attr_node, die->die_attr);
21146 VEC_quick_insert (dw_attr_node, die->die_attr, ix, &linkage);
21150 /* Helper function for resolve_addr, attempt to resolve
21151 one CONST_STRING, return non-zero if not successful. Similarly verify that
21152 SYMBOL_REFs refer to variables emitted in the current CU. */
21154 static int
21155 resolve_one_addr (rtx *addr, void *data ATTRIBUTE_UNUSED)
21157 rtx rtl = *addr;
21159 if (GET_CODE (rtl) == CONST_STRING)
21161 size_t len = strlen (XSTR (rtl, 0)) + 1;
21162 tree t = build_string (len, XSTR (rtl, 0));
21163 tree tlen = build_int_cst (NULL_TREE, len - 1);
21164 TREE_TYPE (t)
21165 = build_array_type (char_type_node, build_index_type (tlen));
21166 rtl = lookup_constant_def (t);
21167 if (!rtl || !MEM_P (rtl))
21168 return 1;
21169 rtl = XEXP (rtl, 0);
21170 VEC_safe_push (rtx, gc, used_rtx_array, rtl);
21171 *addr = rtl;
21172 return 0;
21175 if (GET_CODE (rtl) == SYMBOL_REF
21176 && SYMBOL_REF_DECL (rtl)
21177 && TREE_CODE (SYMBOL_REF_DECL (rtl)) == VAR_DECL
21178 && !TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
21179 return 1;
21181 if (GET_CODE (rtl) == CONST
21182 && for_each_rtx (&XEXP (rtl, 0), resolve_one_addr, NULL))
21183 return 1;
21185 return 0;
21188 /* Helper function for resolve_addr, handle one location
21189 expression, return false if at least one CONST_STRING or SYMBOL_REF in
21190 the location list couldn't be resolved. */
21192 static bool
21193 resolve_addr_in_expr (dw_loc_descr_ref loc)
21195 for (; loc; loc = loc->dw_loc_next)
21196 if ((loc->dw_loc_opc == DW_OP_addr
21197 && resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr, NULL))
21198 || (loc->dw_loc_opc == DW_OP_implicit_value
21199 && loc->dw_loc_oprnd2.val_class == dw_val_class_addr
21200 && resolve_one_addr (&loc->dw_loc_oprnd2.v.val_addr, NULL)))
21201 return false;
21202 return true;
21205 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
21206 an address in .rodata section if the string literal is emitted there,
21207 or remove the containing location list or replace DW_AT_const_value
21208 with DW_AT_location and empty location expression, if it isn't found
21209 in .rodata. Similarly for SYMBOL_REFs, keep only those that refer
21210 to something that has been emitted in the current CU. */
21212 static void
21213 resolve_addr (dw_die_ref die)
21215 dw_die_ref c;
21216 dw_attr_ref a;
21217 dw_loc_list_ref *curr;
21218 unsigned ix;
21220 for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
21221 switch (AT_class (a))
21223 case dw_val_class_loc_list:
21224 curr = AT_loc_list_ptr (a);
21225 while (*curr)
21227 if (!resolve_addr_in_expr ((*curr)->expr))
21229 dw_loc_list_ref next = (*curr)->dw_loc_next;
21230 if (next && (*curr)->ll_symbol)
21232 gcc_assert (!next->ll_symbol);
21233 next->ll_symbol = (*curr)->ll_symbol;
21235 *curr = next;
21237 else
21238 curr = &(*curr)->dw_loc_next;
21240 if (!AT_loc_list (a))
21242 remove_AT (die, a->dw_attr);
21243 ix--;
21245 break;
21246 case dw_val_class_loc:
21247 if (!resolve_addr_in_expr (AT_loc (a)))
21249 remove_AT (die, a->dw_attr);
21250 ix--;
21252 break;
21253 case dw_val_class_addr:
21254 if (a->dw_attr == DW_AT_const_value
21255 && resolve_one_addr (&a->dw_attr_val.v.val_addr, NULL))
21257 remove_AT (die, a->dw_attr);
21258 ix--;
21260 break;
21261 default:
21262 break;
21265 FOR_EACH_CHILD (die, c, resolve_addr (c));
21268 /* Output stuff that dwarf requires at the end of every file,
21269 and generate the DWARF-2 debugging info. */
21271 static void
21272 dwarf2out_finish (const char *filename)
21274 limbo_die_node *node, *next_node;
21275 comdat_type_node *ctnode;
21276 htab_t comdat_type_table;
21277 dw_die_ref die = 0;
21278 unsigned int i;
21280 gen_remaining_tmpl_value_param_die_attribute ();
21282 /* Add the name for the main input file now. We delayed this from
21283 dwarf2out_init to avoid complications with PCH. */
21284 add_name_attribute (comp_unit_die, remap_debug_filename (filename));
21285 if (!IS_ABSOLUTE_PATH (filename))
21286 add_comp_dir_attribute (comp_unit_die);
21287 else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL)
21289 bool p = false;
21290 htab_traverse (file_table, file_table_relative_p, &p);
21291 if (p)
21292 add_comp_dir_attribute (comp_unit_die);
21295 for (i = 0; i < VEC_length (deferred_locations, deferred_locations_list); i++)
21297 add_location_or_const_value_attribute (
21298 VEC_index (deferred_locations, deferred_locations_list, i)->die,
21299 VEC_index (deferred_locations, deferred_locations_list, i)->variable,
21300 DW_AT_location);
21303 /* Traverse the limbo die list, and add parent/child links. The only
21304 dies without parents that should be here are concrete instances of
21305 inline functions, and the comp_unit_die. We can ignore the comp_unit_die.
21306 For concrete instances, we can get the parent die from the abstract
21307 instance. */
21308 for (node = limbo_die_list; node; node = next_node)
21310 next_node = node->next;
21311 die = node->die;
21313 if (die->die_parent == NULL)
21315 dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
21317 if (origin)
21318 add_child_die (origin->die_parent, die);
21319 else if (die == comp_unit_die)
21321 else if (errorcount > 0 || sorrycount > 0)
21322 /* It's OK to be confused by errors in the input. */
21323 add_child_die (comp_unit_die, die);
21324 else
21326 /* In certain situations, the lexical block containing a
21327 nested function can be optimized away, which results
21328 in the nested function die being orphaned. Likewise
21329 with the return type of that nested function. Force
21330 this to be a child of the containing function.
21332 It may happen that even the containing function got fully
21333 inlined and optimized out. In that case we are lost and
21334 assign the empty child. This should not be big issue as
21335 the function is likely unreachable too. */
21336 tree context = NULL_TREE;
21338 gcc_assert (node->created_for);
21340 if (DECL_P (node->created_for))
21341 context = DECL_CONTEXT (node->created_for);
21342 else if (TYPE_P (node->created_for))
21343 context = TYPE_CONTEXT (node->created_for);
21345 gcc_assert (context
21346 && (TREE_CODE (context) == FUNCTION_DECL
21347 || TREE_CODE (context) == NAMESPACE_DECL));
21349 origin = lookup_decl_die (context);
21350 if (origin)
21351 add_child_die (origin, die);
21352 else
21353 add_child_die (comp_unit_die, die);
21358 limbo_die_list = NULL;
21360 resolve_addr (comp_unit_die);
21362 for (node = deferred_asm_name; node; node = node->next)
21364 tree decl = node->created_for;
21365 if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
21367 add_AT_string (node->die, DW_AT_MIPS_linkage_name,
21368 IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
21369 move_linkage_attr (node->die);
21373 deferred_asm_name = NULL;
21375 /* Walk through the list of incomplete types again, trying once more to
21376 emit full debugging info for them. */
21377 retry_incomplete_types ();
21379 if (flag_eliminate_unused_debug_types)
21380 prune_unused_types ();
21382 /* Generate separate CUs for each of the include files we've seen.
21383 They will go into limbo_die_list. */
21384 if (flag_eliminate_dwarf2_dups && dwarf_version < 4)
21385 break_out_includes (comp_unit_die);
21387 /* Generate separate COMDAT sections for type DIEs. */
21388 if (dwarf_version >= 4)
21390 break_out_comdat_types (comp_unit_die);
21392 /* Each new type_unit DIE was added to the limbo die list when created.
21393 Since these have all been added to comdat_type_list, clear the
21394 limbo die list. */
21395 limbo_die_list = NULL;
21397 /* For each new comdat type unit, copy declarations for incomplete
21398 types to make the new unit self-contained (i.e., no direct
21399 references to the main compile unit). */
21400 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
21401 copy_decls_for_unworthy_types (ctnode->root_die);
21402 copy_decls_for_unworthy_types (comp_unit_die);
21404 /* In the process of copying declarations from one unit to another,
21405 we may have left some declarations behind that are no longer
21406 referenced. Prune them. */
21407 prune_unused_types ();
21410 /* Traverse the DIE's and add add sibling attributes to those DIE's
21411 that have children. */
21412 add_sibling_attributes (comp_unit_die);
21413 for (node = limbo_die_list; node; node = node->next)
21414 add_sibling_attributes (node->die);
21415 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
21416 add_sibling_attributes (ctnode->root_die);
21418 /* Output a terminator label for the .text section. */
21419 switch_to_section (text_section);
21420 targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
21421 if (flag_reorder_blocks_and_partition)
21423 switch_to_section (unlikely_text_section ());
21424 targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
21427 /* We can only use the low/high_pc attributes if all of the code was
21428 in .text. */
21429 if (!have_multiple_function_sections
21430 || !(dwarf_version >= 3 || !dwarf_strict))
21432 add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
21433 add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
21436 else
21438 unsigned fde_idx = 0;
21439 bool range_list_added = false;
21441 /* We need to give .debug_loc and .debug_ranges an appropriate
21442 "base address". Use zero so that these addresses become
21443 absolute. Historically, we've emitted the unexpected
21444 DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
21445 Emit both to give time for other tools to adapt. */
21446 add_AT_addr (comp_unit_die, DW_AT_low_pc, const0_rtx);
21447 add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
21449 if (text_section_used)
21450 add_ranges_by_labels (comp_unit_die, text_section_label,
21451 text_end_label, &range_list_added);
21452 if (flag_reorder_blocks_and_partition && cold_text_section_used)
21453 add_ranges_by_labels (comp_unit_die, cold_text_section_label,
21454 cold_end_label, &range_list_added);
21456 for (fde_idx = 0; fde_idx < fde_table_in_use; fde_idx++)
21458 dw_fde_ref fde = &fde_table[fde_idx];
21460 if (fde->dw_fde_switched_sections)
21462 if (!fde->in_std_section)
21463 add_ranges_by_labels (comp_unit_die,
21464 fde->dw_fde_hot_section_label,
21465 fde->dw_fde_hot_section_end_label,
21466 &range_list_added);
21467 if (!fde->cold_in_std_section)
21468 add_ranges_by_labels (comp_unit_die,
21469 fde->dw_fde_unlikely_section_label,
21470 fde->dw_fde_unlikely_section_end_label,
21471 &range_list_added);
21473 else if (!fde->in_std_section)
21474 add_ranges_by_labels (comp_unit_die, fde->dw_fde_begin,
21475 fde->dw_fde_end, &range_list_added);
21478 if (range_list_added)
21479 add_ranges (NULL);
21482 /* Output location list section if necessary. */
21483 if (have_location_lists)
21485 /* Output the location lists info. */
21486 switch_to_section (debug_loc_section);
21487 ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
21488 DEBUG_LOC_SECTION_LABEL, 0);
21489 ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
21490 output_location_lists (die);
21493 if (debug_info_level >= DINFO_LEVEL_NORMAL)
21494 add_AT_lineptr (comp_unit_die, DW_AT_stmt_list,
21495 debug_line_section_label);
21497 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21498 add_AT_macptr (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
21500 /* Output all of the compilation units. We put the main one last so that
21501 the offsets are available to output_pubnames. */
21502 for (node = limbo_die_list; node; node = node->next)
21503 output_comp_unit (node->die, 0);
21505 comdat_type_table = htab_create (100, htab_ct_hash, htab_ct_eq, NULL);
21506 for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
21508 void **slot = htab_find_slot (comdat_type_table, ctnode, INSERT);
21510 /* Don't output duplicate types. */
21511 if (*slot != HTAB_EMPTY_ENTRY)
21512 continue;
21514 /* Add a pointer to the line table for the main compilation unit
21515 so that the debugger can make sense of DW_AT_decl_file
21516 attributes. */
21517 if (debug_info_level >= DINFO_LEVEL_NORMAL)
21518 add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
21519 debug_line_section_label);
21521 output_comdat_type_unit (ctnode);
21522 *slot = ctnode;
21524 htab_delete (comdat_type_table);
21526 /* Output the main compilation unit if non-empty or if .debug_macinfo
21527 has been emitted. */
21528 output_comp_unit (comp_unit_die, debug_info_level >= DINFO_LEVEL_VERBOSE);
21530 /* Output the abbreviation table. */
21531 switch_to_section (debug_abbrev_section);
21532 output_abbrev_section ();
21534 /* Output public names table if necessary. */
21535 if (!VEC_empty (pubname_entry, pubname_table))
21537 switch_to_section (debug_pubnames_section);
21538 output_pubnames (pubname_table);
21541 /* Output public types table if necessary. */
21542 /* ??? Only defined by DWARF3, but emitted by Darwin for DWARF2.
21543 It shouldn't hurt to emit it always, since pure DWARF2 consumers
21544 simply won't look for the section. */
21545 if (!VEC_empty (pubname_entry, pubtype_table))
21547 switch_to_section (debug_pubtypes_section);
21548 output_pubnames (pubtype_table);
21551 /* Output direct and virtual call tables if necessary. */
21552 if (!VEC_empty (dcall_entry, dcall_table))
21554 switch_to_section (debug_dcall_section);
21555 output_dcall_table ();
21557 if (!VEC_empty (vcall_entry, vcall_table))
21559 switch_to_section (debug_vcall_section);
21560 output_vcall_table ();
21563 /* Output the address range information. We only put functions in the arange
21564 table, so don't write it out if we don't have any. */
21565 if (fde_table_in_use)
21567 switch_to_section (debug_aranges_section);
21568 output_aranges ();
21571 /* Output ranges section if necessary. */
21572 if (ranges_table_in_use)
21574 switch_to_section (debug_ranges_section);
21575 ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
21576 output_ranges ();
21579 /* Output the source line correspondence table. We must do this
21580 even if there is no line information. Otherwise, on an empty
21581 translation unit, we will generate a present, but empty,
21582 .debug_info section. IRIX 6.5 `nm' will then complain when
21583 examining the file. This is done late so that any filenames
21584 used by the debug_info section are marked as 'used'. */
21585 if (! DWARF2_ASM_LINE_DEBUG_INFO)
21587 switch_to_section (debug_line_section);
21588 output_line_info ();
21591 /* Have to end the macro section. */
21592 if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21594 switch_to_section (debug_macinfo_section);
21595 dw2_asm_output_data (1, 0, "End compilation unit");
21598 /* If we emitted any DW_FORM_strp form attribute, output the string
21599 table too. */
21600 if (debug_str_hash)
21601 htab_traverse (debug_str_hash, output_indirect_string, NULL);
21603 #else
21605 /* This should never be used, but its address is needed for comparisons. */
21606 const struct gcc_debug_hooks dwarf2_debug_hooks =
21608 0, /* init */
21609 0, /* finish */
21610 0, /* assembly_start */
21611 0, /* define */
21612 0, /* undef */
21613 0, /* start_source_file */
21614 0, /* end_source_file */
21615 0, /* begin_block */
21616 0, /* end_block */
21617 0, /* ignore_block */
21618 0, /* source_line */
21619 0, /* begin_prologue */
21620 0, /* end_prologue */
21621 0, /* end_epilogue */
21622 0, /* begin_function */
21623 0, /* end_function */
21624 0, /* function_decl */
21625 0, /* global_decl */
21626 0, /* type_decl */
21627 0, /* imported_module_or_decl */
21628 0, /* deferred_inline_function */
21629 0, /* outlining_inline_function */
21630 0, /* label */
21631 0, /* handle_pch */
21632 0, /* var_location */
21633 0, /* switch_text_section */
21634 0, /* direct_call */
21635 0, /* virtual_call_token */
21636 0, /* copy_call_info */
21637 0, /* virtual_call */
21638 0, /* set_name */
21639 0 /* start_end_main_source_file */
21642 #endif /* DWARF2_DEBUGGING_INFO */
21644 #include "gt-dwarf2out.h"