OSDN Git Service

49779e7686f8de41e0e8a778118c13bb3121a82b
[pf3gnuchains/gcc-fork.git] / gcc / dwarf2out.c
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).
8
9 This file is part of GCC.
10
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.
15
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.
20
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/>.  */
24
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.  */
30
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.  */
36
37 /* DWARF2 Abbreviation Glossary:
38
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.
44
45    CFI = Call Frame Instruction
46            an instruction for the DWARF2 abstract machine
47
48    CIE = Common Information Entry
49            information describing information common to one or more FDEs
50
51    DIE = Debugging Information Entry
52
53    FDE = Frame Description Entry
54            information describing the stack call frame, in particular,
55            how to restore registers
56
57    DW_CFA_... = DWARF2 CFA call frame instruction
58    DW_TAG_... = DWARF2 DIE tag */
59
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 "ggc.h"
83 #include "md5.h"
84 #include "tm_p.h"
85 #include "diagnostic.h"
86 #include "debug.h"
87 #include "target.h"
88 #include "langhooks.h"
89 #include "hashtab.h"
90 #include "cgraph.h"
91 #include "input.h"
92 #include "gimple.h"
93 #include "tree-pass.h"
94 #include "tree-flow.h"
95
96 #ifdef DWARF2_DEBUGGING_INFO
97 static void dwarf2out_source_line (unsigned int, const char *, int, bool);
98
99 static rtx last_var_location_insn;
100 #endif
101
102 #ifdef VMS_DEBUGGING_INFO
103 int vms_file_stats_name (const char *, long long *, long *, char *, int *);
104
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
117
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
126
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
133
134 /* Save the result of dwarf2out_do_frame across PCH.  */
135 static GTY(()) bool saved_do_cfi_asm = 0;
136
137 /* Decide whether we want to emit frame unwind information for the current
138    translation unit.  */
139
140 int
141 dwarf2out_do_frame (void)
142 {
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
154           );
155 }
156
157 /* Decide whether to emit frame unwind via assembler directives.  */
158
159 int
160 dwarf2out_do_cfi_asm (void)
161 {
162   int enc;
163
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;
173
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;
182
183   if (!HAVE_GAS_CFI_SECTIONS_DIRECTIVE)
184     {
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
191     }
192
193   saved_do_cfi_asm = true;
194   return true;
195 }
196
197 /* The size of the target's pointer type.  */
198 #ifndef PTR_SIZE
199 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
200 #endif
201
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;
205
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;
211
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;
218
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;
233
234 /* Personality decl of current unit.  Used only when assembler does not support
235    personality CFI.  */
236 static GTY(()) rtx current_unit_personality;
237
238 /* How to start an assembler comment.  */
239 #ifndef ASM_COMMENT_START
240 #define ASM_COMMENT_START ";#"
241 #endif
242
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;
246
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.  */
251
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
258 };
259
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;
265 }
266 dw_cfi_oprnd;
267
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;
275 }
276 dw_cfi_node;
277
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;
290
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.  */
296
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;
330 }
331 dw_fde_node;
332
333 /* Maximum size (in bytes) of an artificially generated label.  */
334 #define MAX_ARTIFICIAL_LABEL_BYTES      30
335
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
344
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.  */
349
350 #ifndef DWARF_OFFSET_SIZE
351 #define DWARF_OFFSET_SIZE 4
352 #endif
353
354 /* The size in bytes of a DWARF 4 type signature.  */
355
356 #ifndef DWARF_TYPE_SIGNATURE_SIZE
357 #define DWARF_TYPE_SIGNATURE_SIZE 8
358 #endif
359
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.
364
365    However, the SGI/MIPS ABI uses an initial length which is equal to
366    DWARF_OFFSET_SIZE.  It is defined (elsewhere) accordingly.  */
367
368 #ifndef DWARF_INITIAL_LENGTH_SIZE
369 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
370 #endif
371
372 /* Round SIZE up to the nearest BOUNDARY.  */
373 #define DWARF_ROUND(SIZE,BOUNDARY) \
374   ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
375
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
384
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
392
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;
396
397 /* Number of elements currently allocated for fde_table.  */
398 static GTY(()) unsigned fde_table_allocated;
399
400 /* Number of elements in fde_table currently in use.  */
401 static GTY(()) unsigned fde_table_in_use;
402
403 /* Size (in elements) of increments by which we may expand the
404    fde_table.  */
405 #define FDE_TABLE_INCREMENT 256
406
407 /* Get the current fde_table entry we should use.  */
408
409 static inline dw_fde_ref
410 current_fde (void)
411 {
412   return fde_table_in_use ? &fde_table[fde_table_in_use - 1] : NULL;
413 }
414
415 /* A list of call frame insns for the CIE.  */
416 static GTY(()) dw_cfi_ref cie_cfi_head;
417
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
425
426 struct GTY(()) indirect_string_node {
427   const char *str;
428   unsigned int refcount;
429   enum dwarf_form form;
430   char *label;
431 };
432
433 static GTY ((param_is (struct indirect_string_node))) htab_t debug_str_hash;
434
435 /* True if the compilation unit has location entries that reference
436    debug strings.  */
437 static GTY(()) bool debug_str_hash_forced = false;
438
439 static GTY(()) int dw2_string_counter;
440 static GTY(()) unsigned long dwarf2out_cfi_label_num;
441
442 /* True if the compilation unit places functions in more than one section.  */
443 static GTY(()) bool have_multiple_function_sections = false;
444
445 /* Whether the default text and cold text sections have been used at all.  */
446
447 static GTY(()) bool text_section_used = false;
448 static GTY(()) bool cold_text_section_used = false;
449
450 /* The default cold text section.  */
451 static GTY(()) section *cold_text_section;
452
453 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
454
455 /* Forward declarations for functions defined in this file.  */
456
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 *);
477
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 *);
488
489 /* How to start an assembler comment.  */
490 #ifndef ASM_COMMENT_START
491 #define ASM_COMMENT_START ";#"
492 #endif
493
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)
497
498 #ifndef DEBUG_FRAME_SECTION
499 #define DEBUG_FRAME_SECTION     ".debug_frame"
500 #endif
501
502 #ifndef FUNC_BEGIN_LABEL
503 #define FUNC_BEGIN_LABEL        "LFB"
504 #endif
505
506 #ifndef FUNC_END_LABEL
507 #define FUNC_END_LABEL          "LFE"
508 #endif
509
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"
523
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
534
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
540 \f
541 /* Hook used by __throw.  */
542
543 rtx
544 expand_builtin_dwarf_sp_column (void)
545 {
546   unsigned int dwarf_regnum = DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM);
547   return GEN_INT (DWARF2_FRAME_REG_OUT (dwarf_regnum, 1));
548 }
549
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).  */
552
553 static inline char *
554 stripattributes (const char *s)
555 {
556   char *stripped = XNEWVEC (char, strlen (s) + 2);
557   char *p = stripped;
558
559   *p++ = '*';
560
561   while (*s && *s != ',')
562     *p++ = *s++;
563
564   *p = '\0';
565   return stripped;
566 }
567
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.  */
570
571 static void
572 init_return_column_size (enum machine_mode mode, rtx mem, unsigned int c)
573 {
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));
577 }
578
579 /* Divide OFF by DWARF_CIE_DATA_ALIGNMENT, asserting no remainder.  */
580
581 static inline HOST_WIDE_INT
582 div_data_align (HOST_WIDE_INT off)
583 {
584   HOST_WIDE_INT r = off / DWARF_CIE_DATA_ALIGNMENT;
585   gcc_assert (r * DWARF_CIE_DATA_ALIGNMENT == off);
586   return r;
587 }
588
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).  */
591
592 static inline bool
593 need_data_align_sf_opcode (HOST_WIDE_INT off)
594 {
595   return DWARF_CIE_DATA_ALIGNMENT < 0 ? off > 0 : off < 0;
596 }
597
598 /* Generate code to initialize the register size table.  */
599
600 void
601 expand_builtin_init_dwarf_reg_sizes (tree address)
602 {
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;
608
609   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
610     {
611       int rnum = DWARF2_FRAME_REG_OUT (DWARF_FRAME_REGNUM (i), 1);
612
613       if (rnum < DWARF_FRAME_REGISTERS)
614         {
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;
618
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)
622             {
623               if (save_mode == VOIDmode)
624                 continue;
625               wrote_return_column = true;
626             }
627           size = GET_MODE_SIZE (save_mode);
628           if (offset < 0)
629             continue;
630
631           emit_move_insn (adjust_address (mem, mode, offset),
632                           gen_int_mode (size, mode));
633         }
634     }
635
636   if (!wrote_return_column)
637     init_return_column_size (mode, mem, DWARF_FRAME_RETURN_COLUMN);
638
639 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
640   init_return_column_size (mode, mem, DWARF_ALT_FRAME_RETURN_COLUMN);
641 #endif
642
643   targetm.init_dwarf_reg_sizes_extra (address);
644 }
645
646 /* Convert a DWARF call frame info. operation to its string name */
647
648 static const char *
649 dwarf_cfi_name (unsigned int cfi_opc)
650 {
651   switch (cfi_opc)
652     {
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";
689
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";
701
702     /* SGI/MIPS specific */
703     case DW_CFA_MIPS_advance_loc8:
704       return "DW_CFA_MIPS_advance_loc8";
705
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";
713
714     default:
715       return "DW_CFA_<unknown>";
716     }
717 }
718
719 /* Return a pointer to a newly allocated Call Frame Instruction.  */
720
721 static inline dw_cfi_ref
722 new_cfi (void)
723 {
724   dw_cfi_ref cfi = GGC_NEW (dw_cfi_node);
725
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;
729
730   return cfi;
731 }
732
733 /* Add a Call Frame Instruction to list of instructions.  */
734
735 static inline void
736 add_cfi (dw_cfi_ref *list_head, dw_cfi_ref cfi)
737 {
738   dw_cfi_ref *p;
739   dw_fde_ref fde = current_fde ();
740
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)
748       {
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 ();
755
756         default:
757           break;
758       }
759
760   /* Find the end of the chain.  */
761   for (p = list_head; (*p) != NULL; p = &(*p)->dw_cfi_next)
762     ;
763
764   *p = cfi;
765 }
766
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.  */
769
770 char *
771 dwarf2out_cfi_label (bool force)
772 {
773   static char label[20];
774
775   if (!force && dwarf2out_do_cfi_asm ())
776     {
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>");
781     }
782   else
783     {
784       ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", dwarf2out_cfi_label_num++);
785       ASM_OUTPUT_LABEL (asm_out_file, label);
786     }
787
788   return label;
789 }
790
791 /* True if remember_state should be emitted before following CFI directive.  */
792 static bool emit_cfa_remember;
793
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.  */
796
797 static void
798 add_fde_cfi (const char *label, dw_cfi_ref cfi)
799 {
800   dw_cfi_ref *list_head;
801
802   if (emit_cfa_remember)
803     {
804       dw_cfi_ref cfi_remember;
805
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);
811     }
812
813   list_head = &cie_cfi_head;
814
815   if (dwarf2out_do_cfi_asm ())
816     {
817       if (label)
818         {
819           dw_fde_ref fde = current_fde ();
820
821           gcc_assert (fde != NULL);
822
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))
833             {
834               switch (cfi->dw_cfi_opc)
835                 {
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);
845
846                   if (fde->dw_fde_current_label == NULL
847                       || strcmp (label, fde->dw_fde_current_label) != 0)
848                     {
849                       dw_cfi_ref xcfi;
850
851                       label = xstrdup (label);
852
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;
863                     }
864                   break;
865                 default:
866                   break;
867                 }
868             }
869
870           output_cfi_directive (cfi);
871
872           list_head = &fde->dw_fde_cfi;
873         }
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.  */
879     }
880   else if (label)
881     {
882       dw_fde_ref fde = current_fde ();
883
884       gcc_assert (fde != NULL);
885
886       if (*label == 0)
887         label = dwarf2out_cfi_label (false);
888
889       if (fde->dw_fde_current_label == NULL
890           || strcmp (label, fde->dw_fde_current_label) != 0)
891         {
892           dw_cfi_ref xcfi;
893
894           label = xstrdup (label);
895
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);
905
906           fde->dw_fde_current_label = label;
907         }
908
909       list_head = &fde->dw_fde_cfi;
910     }
911
912   add_cfi (list_head, cfi);
913 }
914
915 /* Subroutine of lookup_cfa.  */
916
917 static void
918 lookup_cfa_1 (dw_cfi_ref cfi, dw_cfa_location *loc, dw_cfa_location *remember)
919 {
920   switch (cfi->dw_cfi_opc)
921     {
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;
937
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;
948
949     default:
950       break;
951     }
952 }
953
954 /* Find the previous value for the CFA.  */
955
956 static void
957 lookup_cfa (dw_cfa_location *loc)
958 {
959   dw_cfi_ref cfi;
960   dw_fde_ref fde;
961   dw_cfa_location remember;
962
963   memset (loc, 0, sizeof (*loc));
964   loc->reg = INVALID_REGNUM;
965   remember = *loc;
966
967   for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
968     lookup_cfa_1 (cfi, loc, &remember);
969
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);
974 }
975
976 /* The current rule for calculating the DWARF2 canonical frame address.  */
977 static dw_cfa_location cfa;
978
979 /* The register used for saving registers to the stack, and its offset
980    from the CFA.  */
981 static dw_cfa_location cfa_store;
982
983 /* The current save location around an epilogue.  */
984 static dw_cfa_location cfa_remember;
985
986 /* The running total of the size of arguments pushed onto the stack.  */
987 static HOST_WIDE_INT args_size;
988
989 /* The last args_size we actually output.  */
990 static HOST_WIDE_INT old_args_size;
991
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.  */
995
996 void
997 dwarf2out_def_cfa (const char *label, unsigned int reg, HOST_WIDE_INT offset)
998 {
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);
1005 }
1006
1007 /* Determine if two dw_cfa_location structures define the same data.  */
1008
1009 static bool
1010 cfa_equal_p (const dw_cfa_location *loc1, const dw_cfa_location *loc2)
1011 {
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));
1017 }
1018
1019 /* This routine does the actual work.  The CFA is now calculated from
1020    the dw_cfa_location structure.  */
1021
1022 static void
1023 def_cfa_1 (const char *label, dw_cfa_location *loc_p)
1024 {
1025   dw_cfi_ref cfi;
1026   dw_cfa_location old_cfa, loc;
1027
1028   cfa = *loc_p;
1029   loc = *loc_p;
1030
1031   if (cfa_store.reg == loc.reg && loc.indirect == 0)
1032     cfa_store.offset = loc.offset;
1033
1034   loc.reg = DWARF_FRAME_REGNUM (loc.reg);
1035   lookup_cfa (&old_cfa);
1036
1037   /* If nothing changed, no need to issue any call frame instructions.  */
1038   if (cfa_equal_p (&loc, &old_cfa))
1039     return;
1040
1041   cfi = new_cfi ();
1042
1043   if (loc.reg == old_cfa.reg && !loc.indirect && !old_cfa.indirect)
1044     {
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;
1054     }
1055
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)
1061     {
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;
1067     }
1068 #endif
1069
1070   else if (loc.indirect == 0)
1071     {
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;
1083     }
1084   else
1085     {
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;
1090
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;
1094     }
1095
1096   add_fde_cfi (label, cfi);
1097 }
1098
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.  */
1103
1104 static void
1105 reg_save (const char *label, unsigned int reg, unsigned int sreg, HOST_WIDE_INT offset)
1106 {
1107   dw_cfi_ref cfi = new_cfi ();
1108   dw_fde_ref fde = current_fde ();
1109
1110   cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
1111
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)
1117     {
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);
1122     }
1123   else if (sreg == INVALID_REGNUM)
1124     {
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;
1132     }
1133   else if (sreg == reg)
1134     cfi->dw_cfi_opc = DW_CFA_same_value;
1135   else
1136     {
1137       cfi->dw_cfi_opc = DW_CFA_register;
1138       cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
1139     }
1140
1141   add_fde_cfi (label, cfi);
1142 }
1143
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.
1147
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.  */
1150
1151 void
1152 dwarf2out_window_save (const char *label)
1153 {
1154   dw_cfi_ref cfi = new_cfi ();
1155
1156   cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
1157   add_fde_cfi (label, cfi);
1158 }
1159
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.  */
1162
1163 void
1164 dwarf2out_reg_save (const char *label, unsigned int reg, HOST_WIDE_INT offset)
1165 {
1166   reg_save (label, DWARF_FRAME_REGNUM (reg), INVALID_REGNUM, offset);
1167 }
1168
1169 /* Entry point for saving the return address in the stack.
1170    LABEL and OFFSET are passed to reg_save.  */
1171
1172 void
1173 dwarf2out_return_save (const char *label, HOST_WIDE_INT offset)
1174 {
1175   reg_save (label, DWARF_FRAME_RETURN_COLUMN, INVALID_REGNUM, offset);
1176 }
1177
1178 /* Entry point for saving the return address in a register.
1179    LABEL and SREG are passed to reg_save.  */
1180
1181 void
1182 dwarf2out_return_reg (const char *label, unsigned int sreg)
1183 {
1184   reg_save (label, DWARF_FRAME_RETURN_COLUMN, DWARF_FRAME_REGNUM (sreg), 0);
1185 }
1186
1187 #ifdef DWARF2_UNWIND_INFO
1188 /* Record the initial position of the return address.  RTL is
1189    INCOMING_RETURN_ADDR_RTX.  */
1190
1191 static void
1192 initial_return_save (rtx rtl)
1193 {
1194   unsigned int reg = INVALID_REGNUM;
1195   HOST_WIDE_INT offset = 0;
1196
1197   switch (GET_CODE (rtl))
1198     {
1199     case REG:
1200       /* RA is in a register.  */
1201       reg = DWARF_FRAME_REGNUM (REGNO (rtl));
1202       break;
1203
1204     case MEM:
1205       /* RA is on the stack.  */
1206       rtl = XEXP (rtl, 0);
1207       switch (GET_CODE (rtl))
1208         {
1209         case REG:
1210           gcc_assert (REGNO (rtl) == STACK_POINTER_REGNUM);
1211           offset = 0;
1212           break;
1213
1214         case PLUS:
1215           gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
1216           offset = INTVAL (XEXP (rtl, 1));
1217           break;
1218
1219         case MINUS:
1220           gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
1221           offset = -INTVAL (XEXP (rtl, 1));
1222           break;
1223
1224         default:
1225           gcc_unreachable ();
1226         }
1227
1228       break;
1229
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;
1237
1238     default:
1239       gcc_unreachable ();
1240     }
1241
1242   if (reg != DWARF_FRAME_RETURN_COLUMN)
1243     reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa.offset);
1244 }
1245 #endif
1246
1247 /* Given a SET, calculate the amount of stack adjustment it
1248    contains.  */
1249
1250 static HOST_WIDE_INT
1251 stack_adjust_offset (const_rtx pattern, HOST_WIDE_INT cur_args_size,
1252                      HOST_WIDE_INT cur_offset)
1253 {
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;
1258
1259   if (dest == stack_pointer_rtx)
1260     {
1261       code = GET_CODE (src);
1262
1263       /* Assume (set (reg sp) (reg whatever)) sets args_size
1264          level to 0.  */
1265       if (code == REG && src != stack_pointer_rtx)
1266         {
1267           offset = -cur_args_size;
1268 #ifndef STACK_GROWS_DOWNWARD
1269           offset = -offset;
1270 #endif
1271           return offset - cur_offset;
1272         }
1273
1274       if (! (code == PLUS || code == MINUS)
1275           || XEXP (src, 0) != stack_pointer_rtx
1276           || !CONST_INT_P (XEXP (src, 1)))
1277         return 0;
1278
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;
1284     }
1285
1286   if (MEM_P (src) && !MEM_P (dest))
1287     dest = src;
1288   if (MEM_P (dest))
1289     {
1290       /* (set (mem (pre_dec (reg sp))) (foo)) */
1291       src = XEXP (dest, 0);
1292       code = GET_CODE (src);
1293
1294       switch (code)
1295         {
1296         case PRE_MODIFY:
1297         case POST_MODIFY:
1298           if (XEXP (src, 0) == stack_pointer_rtx)
1299             {
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;
1306             }
1307           return 0;
1308
1309         case PRE_DEC:
1310         case POST_DEC:
1311           if (XEXP (src, 0) == stack_pointer_rtx)
1312             {
1313               offset = GET_MODE_SIZE (GET_MODE (dest));
1314               break;
1315             }
1316           return 0;
1317
1318         case PRE_INC:
1319         case POST_INC:
1320           if (XEXP (src, 0) == stack_pointer_rtx)
1321             {
1322               offset = -GET_MODE_SIZE (GET_MODE (dest));
1323               break;
1324             }
1325           return 0;
1326
1327         default:
1328           return 0;
1329         }
1330     }
1331   else
1332     return 0;
1333
1334   return offset;
1335 }
1336
1337 /* Precomputed args_size for CODE_LABELs and BARRIERs preceeding them,
1338    indexed by INSN_UID.  */
1339
1340 static HOST_WIDE_INT *barrier_args_size;
1341
1342 /* Helper function for compute_barrier_args_size.  Handle one insn.  */
1343
1344 static HOST_WIDE_INT
1345 compute_barrier_args_size_1 (rtx insn, HOST_WIDE_INT cur_args_size,
1346                              VEC (rtx, heap) **next)
1347 {
1348   HOST_WIDE_INT offset = 0;
1349   int i;
1350
1351   if (! RTX_FRAME_RELATED_P (insn))
1352     {
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)
1359         {
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);
1366         }
1367     }
1368   else
1369     {
1370       rtx expr = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1371
1372       if (expr)
1373         {
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++)
1378               {
1379                 rtx elem = XVECEXP (expr, 0, i);
1380
1381                 if (GET_CODE (elem) == SET && !RTX_FRAME_RELATED_P (elem))
1382                   offset += stack_adjust_offset (elem, cur_args_size, offset);
1383               }
1384         }
1385     }
1386
1387 #ifndef STACK_GROWS_DOWNWARD
1388   offset = -offset;
1389 #endif
1390
1391   cur_args_size += offset;
1392   if (cur_args_size < 0)
1393     cur_args_size = 0;
1394
1395   if (JUMP_P (insn))
1396     {
1397       rtx dest = JUMP_LABEL (insn);
1398
1399       if (dest)
1400         {
1401           if (barrier_args_size [INSN_UID (dest)] < 0)
1402             {
1403               barrier_args_size [INSN_UID (dest)] = cur_args_size;
1404               VEC_safe_push (rtx, heap, *next, dest);
1405             }
1406         }
1407     }
1408
1409   return cur_args_size;
1410 }
1411
1412 /* Walk the whole function and compute args_size on BARRIERs.  */
1413
1414 static void
1415 compute_barrier_args_size (void)
1416 {
1417   int max_uid = get_max_uid (), i;
1418   rtx insn;
1419   VEC (rtx, heap) *worklist, *next, *tmp;
1420
1421   barrier_args_size = XNEWVEC (HOST_WIDE_INT, max_uid);
1422   for (i = 0; i < max_uid; i++)
1423     barrier_args_size[i] = -1;
1424
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 (;;)
1431     {
1432       while (!VEC_empty (rtx, worklist))
1433         {
1434           rtx prev, body, first_insn;
1435           HOST_WIDE_INT cur_args_size;
1436
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;
1442
1443           for (; insn; insn = NEXT_INSN (insn))
1444             {
1445               if (INSN_DELETED_P (insn) || NOTE_P (insn))
1446                 continue;
1447               if (BARRIER_P (insn))
1448                 break;
1449
1450               if (LABEL_P (insn))
1451                 {
1452                   if (insn == first_insn)
1453                     continue;
1454                   else if (barrier_args_size[INSN_UID (insn)] < 0)
1455                     {
1456                       barrier_args_size[INSN_UID (insn)] = cur_args_size;
1457                       continue;
1458                     }
1459                   else
1460                     {
1461                       /* The insns starting with this label have been
1462                          already scanned or are in the worklist.  */
1463                       break;
1464                     }
1465                 }
1466
1467               body = PATTERN (insn);
1468               if (GET_CODE (body) == SEQUENCE)
1469                 {
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);
1481
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);
1489                 }
1490               else
1491                 cur_args_size
1492                   = compute_barrier_args_size_1 (insn, cur_args_size, &next);
1493             }
1494         }
1495
1496       if (VEC_empty (rtx, next))
1497         break;
1498
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);
1504     }
1505
1506   VEC_free (rtx, heap, worklist);
1507   VEC_free (rtx, heap, next);
1508 }
1509
1510 /* Add a CFI to update the running total of the size of arguments
1511    pushed onto the stack.  */
1512
1513 static void
1514 dwarf2out_args_size (const char *label, HOST_WIDE_INT size)
1515 {
1516   dw_cfi_ref cfi;
1517
1518   if (size == old_args_size)
1519     return;
1520
1521   old_args_size = size;
1522
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);
1527 }
1528
1529 /* Record a stack adjustment of OFFSET bytes.  */
1530
1531 static void
1532 dwarf2out_stack_adjust (HOST_WIDE_INT offset, const char *label)
1533 {
1534   if (cfa.reg == STACK_POINTER_REGNUM)
1535     cfa.offset += offset;
1536
1537   if (cfa_store.reg == STACK_POINTER_REGNUM)
1538     cfa_store.offset += offset;
1539
1540   if (ACCUMULATE_OUTGOING_ARGS)
1541     return;
1542
1543 #ifndef STACK_GROWS_DOWNWARD
1544   offset = -offset;
1545 #endif
1546
1547   args_size += offset;
1548   if (args_size < 0)
1549     args_size = 0;
1550
1551   def_cfa_1 (label, &cfa);
1552   if (flag_asynchronous_unwind_tables)
1553     dwarf2out_args_size (label, args_size);
1554 }
1555
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.  */
1559
1560 static void
1561 dwarf2out_notice_stack_adjust (rtx insn, bool after_p)
1562 {
1563   HOST_WIDE_INT offset;
1564   const char *label;
1565   int i;
1566
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;
1573
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;
1581
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)
1585     {
1586       if (CALL_P (insn) && !after_p)
1587         {
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)));
1596         }
1597       return;
1598     }
1599
1600   if (CALL_P (insn) && !after_p)
1601     {
1602       if (!flag_asynchronous_unwind_tables)
1603         dwarf2out_args_size ("", args_size);
1604       return;
1605     }
1606   else if (BARRIER_P (insn))
1607     {
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
1615         {
1616           offset = barrier_args_size[INSN_UID (insn)];
1617           if (offset < 0)
1618             offset = 0;
1619         }
1620
1621       offset -= args_size;
1622 #ifndef STACK_GROWS_DOWNWARD
1623       offset = -offset;
1624 #endif
1625     }
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)
1630     {
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);
1637     }
1638   else
1639     return;
1640
1641   if (offset == 0)
1642     return;
1643
1644   label = dwarf2out_cfi_label (false);
1645   dwarf2out_stack_adjust (offset, label);
1646 }
1647
1648 #endif
1649
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.  */
1653
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;
1659 };
1660
1661 static GTY(()) struct queued_reg_save *queued_reg_saves;
1662
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;
1667 };
1668
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;
1675
1676 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1677 static const char *last_reg_save_label;
1678
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.  */
1681
1682 static void
1683 queue_reg_save (const char *label, rtx reg, rtx sreg, HOST_WIDE_INT offset)
1684 {
1685   struct queued_reg_save *q;
1686
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;
1693
1694   if (q == NULL)
1695     {
1696       q = GGC_NEW (struct queued_reg_save);
1697       q->next = queued_reg_saves;
1698       queued_reg_saves = q;
1699     }
1700
1701   q->reg = reg;
1702   q->cfa_offset = offset;
1703   q->saved_reg = sreg;
1704
1705   last_reg_save_label = label;
1706 }
1707
1708 /* Output all the entries in QUEUED_REG_SAVES.  */
1709
1710 static void
1711 flush_queued_reg_saves (void)
1712 {
1713   struct queued_reg_save *q;
1714
1715   for (q = queued_reg_saves; q; q = q->next)
1716     {
1717       size_t i;
1718       unsigned int reg, sreg;
1719
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)
1724         {
1725           gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1726           num_regs_saved_in_regs++;
1727         }
1728       if (i != num_regs_saved_in_regs)
1729         {
1730           regs_saved_in_regs[i].orig_reg = q->reg;
1731           regs_saved_in_regs[i].saved_in_reg = q->saved_reg;
1732         }
1733
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);
1740     }
1741
1742   queued_reg_saves = NULL;
1743   last_reg_save_label = NULL;
1744 }
1745
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?  */
1750
1751 static bool
1752 clobbers_queued_reg_save (const_rtx insn)
1753 {
1754   struct queued_reg_save *q;
1755
1756   for (q = queued_reg_saves; q; q = q->next)
1757     {
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;
1765     }
1766
1767   return false;
1768 }
1769
1770 /* Entry point for saving the first register into the second.  */
1771
1772 void
1773 dwarf2out_reg_save_reg (const char *label, rtx reg, rtx sreg)
1774 {
1775   size_t i;
1776   unsigned int regno, sregno;
1777
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)
1782     {
1783       gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1784       num_regs_saved_in_regs++;
1785     }
1786   regs_saved_in_regs[i].orig_reg = reg;
1787   regs_saved_in_regs[i].saved_in_reg = sreg;
1788
1789   regno = DWARF_FRAME_REGNUM (REGNO (reg));
1790   sregno = DWARF_FRAME_REGNUM (REGNO (sreg));
1791   reg_save (label, regno, sregno, 0);
1792 }
1793
1794 /* What register, if any, is currently saved in REG?  */
1795
1796 static rtx
1797 reg_saved_in (rtx reg)
1798 {
1799   unsigned int regn = REGNO (reg);
1800   size_t i;
1801   struct queued_reg_save *q;
1802
1803   for (q = queued_reg_saves; q; q = q->next)
1804     if (q->saved_reg && regn == REGNO (q->saved_reg))
1805       return q->reg;
1806
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;
1811
1812   return NULL_RTX;
1813 }
1814
1815
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;
1820
1821 /* A subroutine of dwarf2out_frame_debug, process a REG_DEF_CFA note.  */
1822
1823 static void
1824 dwarf2out_frame_debug_def_cfa (rtx pat, const char *label)
1825 {
1826   memset (&cfa, 0, sizeof (cfa));
1827
1828   switch (GET_CODE (pat))
1829     {
1830     case PLUS:
1831       cfa.reg = REGNO (XEXP (pat, 0));
1832       cfa.offset = INTVAL (XEXP (pat, 1));
1833       break;
1834
1835     case REG:
1836       cfa.reg = REGNO (pat);
1837       break;
1838
1839     default:
1840       /* Recurse and define an expression.  */
1841       gcc_unreachable ();
1842     }
1843
1844   def_cfa_1 (label, &cfa);
1845 }
1846
1847 /* A subroutine of dwarf2out_frame_debug, process a REG_ADJUST_CFA note.  */
1848
1849 static void
1850 dwarf2out_frame_debug_adjust_cfa (rtx pat, const char *label)
1851 {
1852   rtx src, dest;
1853
1854   gcc_assert (GET_CODE (pat) == SET);
1855   dest = XEXP (pat, 0);
1856   src = XEXP (pat, 1);
1857
1858   switch (GET_CODE (src))
1859     {
1860     case PLUS:
1861       gcc_assert (REGNO (XEXP (src, 0)) == cfa.reg);
1862       cfa.offset -= INTVAL (XEXP (src, 1));
1863       break;
1864
1865     case REG:
1866         break;
1867
1868     default:
1869         gcc_unreachable ();
1870     }
1871
1872   cfa.reg = REGNO (dest);
1873   gcc_assert (cfa.indirect == 0);
1874
1875   def_cfa_1 (label, &cfa);
1876 }
1877
1878 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_OFFSET note.  */
1879
1880 static void
1881 dwarf2out_frame_debug_cfa_offset (rtx set, const char *label)
1882 {
1883   HOST_WIDE_INT offset;
1884   rtx src, addr, span;
1885
1886   src = XEXP (set, 1);
1887   addr = XEXP (set, 0);
1888   gcc_assert (MEM_P (addr));
1889   addr = XEXP (addr, 0);
1890
1891   /* As documented, only consider extremely simple addresses.  */
1892   switch (GET_CODE (addr))
1893     {
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 ();
1904     }
1905
1906   span = targetm.dwarf_register_span (src);
1907
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
1913     {
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;
1919
1920       gcc_assert (GET_CODE (span) == PARALLEL);
1921
1922       limit = XVECLEN (span, 0);
1923       for (par_index = 0; par_index < limit; par_index++)
1924         {
1925           rtx elem = XVECEXP (span, 0, par_index);
1926
1927           reg_save (label, DWARF_FRAME_REGNUM (REGNO (elem)),
1928                     INVALID_REGNUM, span_offset);
1929           span_offset += GET_MODE_SIZE (GET_MODE (elem));
1930         }
1931     }
1932 }
1933
1934 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_REGISTER note.  */
1935
1936 static void
1937 dwarf2out_frame_debug_cfa_register (rtx set, const char *label)
1938 {
1939   rtx src, dest;
1940   unsigned sregno, dregno;
1941
1942   src = XEXP (set, 1);
1943   dest = XEXP (set, 0);
1944
1945   if (src == pc_rtx)
1946     sregno = DWARF_FRAME_RETURN_COLUMN;
1947   else
1948     sregno = DWARF_FRAME_REGNUM (REGNO (src));
1949
1950   dregno = DWARF_FRAME_REGNUM (REGNO (dest));
1951
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);
1955 }
1956
1957 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_RESTORE note.  */
1958
1959 static void
1960 dwarf2out_frame_debug_cfa_restore (rtx reg, const char *label)
1961 {
1962   dw_cfi_ref cfi = new_cfi ();
1963   unsigned int regno = DWARF_FRAME_REGNUM (REGNO (reg));
1964
1965   cfi->dw_cfi_opc = (regno & ~0x3f ? DW_CFA_restore_extended : DW_CFA_restore);
1966   cfi->dw_cfi_oprnd1.dw_cfi_reg_num = regno;
1967
1968   add_fde_cfi (label, cfi);
1969 }
1970
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.
1975
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.
1979
1980   The High-Level Picture
1981
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.
1987
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.
1993
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.
2003
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.
2008
2009   In addition, if a register has previously been saved to a different
2010   register,
2011
2012   Invariants / Summaries of Rules
2013
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.
2023
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.
2028
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.
2032
2033   Rule 5:      Create a new register cfa_store used to save items to the
2034                stack.
2035
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).
2039
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.
2044
2045   The Rules
2046
2047   "{a,b}" indicates a choice of a xor b.
2048   "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
2049
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
2056
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
2064
2065   Rule 3:
2066   (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
2067   effects: cfa.reg = fp
2068            cfa_offset += +/- <const_int>
2069
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
2077
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
2084
2085   Rule 6:
2086   (set <reg> <const_int>)
2087   effects: cfa_temp.reg = <reg>
2088            cfa_temp.offset = <const_int>
2089
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>
2094
2095   Rule 8:
2096   (set <reg> (high <exp>))
2097   effects: none
2098
2099   Rule 9:
2100   (set <reg> (lo_sum <exp> <const_int>))
2101   effects: cfa_temp.reg = <reg>
2102            cfa_temp.offset = <const_int>
2103
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
2110
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
2117
2118   Rule 12:
2119   (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
2120
2121        <reg2>)
2122   effects: cfa.reg = <reg1>
2123            cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
2124
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
2129
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)
2135
2136   Rule 15:
2137   (set <reg> {unspec, unspec_volatile})
2138   effects: target-dependent
2139
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
2146
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)
2150
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
2156
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  */
2165
2166 static void
2167 dwarf2out_frame_debug_expr (rtx expr, const char *label)
2168 {
2169   rtx src, dest, span;
2170   HOST_WIDE_INT offset;
2171   dw_fde_ref fde;
2172
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)
2179     {
2180       int par_index;
2181       int limit = XVECLEN (expr, 0);
2182       rtx elem;
2183
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++)
2191           {
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);
2197           }
2198
2199       for (par_index = 0; par_index < limit; par_index++)
2200         {
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))
2209             {
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);
2213
2214               if (offset != 0)
2215                 dwarf2out_stack_adjust (offset, label);
2216             }
2217         }
2218       return;
2219     }
2220
2221   gcc_assert (GET_CODE (expr) == SET);
2222
2223   src = SET_SRC (expr);
2224   dest = SET_DEST (expr);
2225
2226   if (REG_P (src))
2227     {
2228       rtx rsi = reg_saved_in (src);
2229       if (rsi)
2230         src = rsi;
2231     }
2232
2233   fde = current_fde ();
2234
2235   switch (GET_CODE (dest))
2236     {
2237     case REG:
2238       switch (GET_CODE (src))
2239         {
2240           /* Setting FP from SP.  */
2241         case REG:
2242           if (cfa.reg == (unsigned) REGNO (src))
2243             {
2244               /* Rule 1 */
2245               /* Update the CFA rule wrt SP or FP.  Make sure src is
2246                  relative to the current CFA register.
2247
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;
2255             }
2256           else
2257             {
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));
2263
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);
2276             }
2277           break;
2278
2279         case PLUS:
2280         case MINUS:
2281         case LO_SUM:
2282           if (dest == stack_pointer_rtx)
2283             {
2284               /* Rule 2 */
2285               /* Adjusting SP.  */
2286               switch (GET_CODE (XEXP (src, 1)))
2287                 {
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 ();
2298                 }
2299
2300               if (XEXP (src, 0) == hard_frame_pointer_rtx)
2301                 {
2302                   /* Restoring SP from FP in the epilogue.  */
2303                   gcc_assert (cfa.reg == (unsigned) HARD_FRAME_POINTER_REGNUM);
2304                   cfa.reg = STACK_POINTER_REGNUM;
2305                 }
2306               else if (GET_CODE (src) == LO_SUM)
2307                 /* Assume we've set the source reg of the LO_SUM from sp.  */
2308                 ;
2309               else
2310                 gcc_assert (XEXP (src, 0) == stack_pointer_rtx);
2311
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;
2318             }
2319           else if (dest == hard_frame_pointer_rtx)
2320             {
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);
2325
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;
2334             }
2335           else
2336             {
2337               gcc_assert (GET_CODE (src) != MINUS);
2338
2339               /* Rule 4 */
2340               if (REG_P (XEXP (src, 0))
2341                   && REGNO (XEXP (src, 0)) == cfa.reg
2342                   && CONST_INT_P (XEXP (src, 1)))
2343                 {
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;
2352                 }
2353
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)
2358                 {
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;
2364                 }
2365
2366               /* Rule 9 */
2367               else if (GET_CODE (src) == LO_SUM
2368                        && CONST_INT_P (XEXP (src, 1)))
2369                 {
2370                   cfa_temp.reg = REGNO (dest);
2371                   cfa_temp.offset = INTVAL (XEXP (src, 1));
2372                 }
2373               else
2374                 gcc_unreachable ();
2375             }
2376           break;
2377
2378           /* Rule 6 */
2379         case CONST_INT:
2380           cfa_temp.reg = REGNO (dest);
2381           cfa_temp.offset = INTVAL (src);
2382           break;
2383
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)));
2389
2390           if ((unsigned) REGNO (dest) != cfa_temp.reg)
2391             cfa_temp.reg = REGNO (dest);
2392           cfa_temp.offset |= INTVAL (XEXP (src, 1));
2393           break;
2394
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;
2400
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;
2407
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)
2414             {
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;
2419
2420               if (cfa.reg != STACK_POINTER_REGNUM
2421                   && cfa.reg != HARD_FRAME_POINTER_REGNUM)
2422                 fde->drap_reg = cfa.reg;
2423             }
2424           return;
2425
2426         default:
2427           gcc_unreachable ();
2428         }
2429
2430       def_cfa_1 (label, &cfa);
2431       break;
2432
2433     case MEM:
2434
2435       /* Saving a register to the stack.  Make sure dest is relative to the
2436          CFA register.  */
2437       switch (GET_CODE (XEXP (dest, 0)))
2438         {
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));
2446
2447           gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
2448                       && cfa_store.reg == STACK_POINTER_REGNUM);
2449
2450           cfa_store.offset += offset;
2451           if (cfa.reg == STACK_POINTER_REGNUM)
2452             cfa.offset = cfa_store.offset;
2453
2454           offset = -cfa_store.offset;
2455           break;
2456
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;
2463
2464           gcc_assert ((REGNO (XEXP (XEXP (dest, 0), 0))
2465                        == STACK_POINTER_REGNUM)
2466                       && cfa_store.reg == STACK_POINTER_REGNUM);
2467
2468           cfa_store.offset += offset;
2469
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)
2476             {
2477               gcc_assert (cfa.reg != HARD_FRAME_POINTER_REGNUM);
2478               cfa_store.offset = 0;
2479             }
2480
2481           if (cfa.reg == STACK_POINTER_REGNUM)
2482             cfa.offset = cfa_store.offset;
2483
2484           offset = -cfa_store.offset;
2485           break;
2486
2487           /* Rule 12 */
2488           /* With an offset.  */
2489         case PLUS:
2490         case MINUS:
2491         case LO_SUM:
2492           {
2493             int regno;
2494
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;
2500
2501             regno = REGNO (XEXP (XEXP (dest, 0), 0));
2502
2503             if (cfa_store.reg == (unsigned) regno)
2504               offset -= cfa_store.offset;
2505             else
2506               {
2507                 gcc_assert (cfa_temp.reg == (unsigned) regno);
2508                 offset -= cfa_temp.offset;
2509               }
2510           }
2511           break;
2512
2513           /* Rule 13 */
2514           /* Without an offset.  */
2515         case REG:
2516           {
2517             int regno = REGNO (XEXP (dest, 0));
2518
2519             if (cfa_store.reg == (unsigned) regno)
2520               offset = -cfa_store.offset;
2521             else
2522               {
2523                 gcc_assert (cfa_temp.reg == (unsigned) regno);
2524                 offset = -cfa_temp.offset;
2525               }
2526           }
2527           break;
2528
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;
2536
2537         default:
2538           gcc_unreachable ();
2539         }
2540
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;
2547
2548       if (REGNO (src) != STACK_POINTER_REGNUM
2549           && REGNO (src) != HARD_FRAME_POINTER_REGNUM
2550           && (unsigned) REGNO (src) == cfa.reg)
2551         {
2552           /* We're storing the current CFA reg into the stack.  */
2553
2554           if (cfa.offset == 0)
2555             {
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)
2566                 {
2567                   dw_cfa_location cfa_exp;
2568
2569                   gcc_assert (fde->drap_reg == cfa.reg);
2570
2571                   cfa_exp.indirect = 1;
2572                   cfa_exp.reg = HARD_FRAME_POINTER_REGNUM;
2573                   cfa_exp.base_offset = offset;
2574                   cfa_exp.offset = 0;
2575
2576                   fde->drap_reg_saved = 1;
2577
2578                   def_cfa_1 (label, &cfa_exp);
2579                   break;
2580                 }
2581
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;
2588             }
2589           else
2590             {
2591               /* Otherwise, we'll need to look in the stack to
2592                  calculate the CFA.  */
2593               rtx x = XEXP (dest, 0);
2594
2595               if (!REG_P (x))
2596                 x = XEXP (x, 0);
2597               gcc_assert (REG_P (x));
2598
2599               cfa.reg = REGNO (x);
2600               cfa.base_offset = offset;
2601               cfa.indirect = 1;
2602               def_cfa_1 (label, &cfa);
2603               break;
2604             }
2605         }
2606
2607       def_cfa_1 (label, &cfa);
2608       {
2609         span = targetm.dwarf_register_span (src);
2610
2611         if (!span)
2612           queue_reg_save (label, src, NULL_RTX, offset);
2613         else
2614           {
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;
2621
2622             gcc_assert (GET_CODE (span) == PARALLEL);
2623
2624             limit = XVECLEN (span, 0);
2625             for (par_index = 0; par_index < limit; par_index++)
2626               {
2627                 rtx elem = XVECEXP (span, 0, par_index);
2628
2629                 queue_reg_save (label, elem, NULL_RTX, span_offset);
2630                 span_offset += GET_MODE_SIZE (GET_MODE (elem));
2631               }
2632           }
2633       }
2634       break;
2635
2636     default:
2637       gcc_unreachable ();
2638     }
2639 }
2640
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.
2644
2645    If AFTER_P is false, we're being called before the insn is emitted,
2646    otherwise after.  Call instructions get invoked twice.  */
2647
2648 void
2649 dwarf2out_frame_debug (rtx insn, bool after_p)
2650 {
2651   const char *label;
2652   rtx note, n;
2653   bool handled_one = false;
2654
2655   if (insn == NULL_RTX)
2656     {
2657       size_t i;
2658
2659       /* Flush any queued register saves.  */
2660       flush_queued_reg_saves ();
2661
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));
2666
2667       cfa.reg = STACK_POINTER_REGNUM;
2668       cfa_store = cfa;
2669       cfa_temp.reg = -1;
2670       cfa_temp.offset = 0;
2671
2672       for (i = 0; i < num_regs_saved_in_regs; i++)
2673         {
2674           regs_saved_in_regs[i].orig_reg = NULL_RTX;
2675           regs_saved_in_regs[i].saved_in_reg = NULL_RTX;
2676         }
2677       num_regs_saved_in_regs = 0;
2678
2679       if (barrier_args_size)
2680         {
2681           XDELETEVEC (barrier_args_size);
2682           barrier_args_size = NULL;
2683         }
2684       return;
2685     }
2686
2687   if (!NONJUMP_INSN_P (insn) || clobbers_queued_reg_save (insn))
2688     flush_queued_reg_saves ();
2689
2690   if (!RTX_FRAME_RELATED_P (insn))
2691     {
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;
2698     }
2699
2700   label = dwarf2out_cfi_label (false);
2701
2702   for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
2703     switch (REG_NOTE_KIND (note))
2704       {
2705       case REG_FRAME_RELATED_EXPR:
2706         insn = XEXP (note, 0);
2707         goto found;
2708
2709       case REG_CFA_DEF_CFA:
2710         dwarf2out_frame_debug_def_cfa (XEXP (note, 0), label);
2711         handled_one = true;
2712         break;
2713
2714       case REG_CFA_ADJUST_CFA:
2715         n = XEXP (note, 0);
2716         if (n == NULL)
2717           {
2718             n = PATTERN (insn);
2719             if (GET_CODE (n) == PARALLEL)
2720               n = XVECEXP (n, 0, 0);
2721           }
2722         dwarf2out_frame_debug_adjust_cfa (n, label);
2723         handled_one = true;
2724         break;
2725
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;
2733
2734       case REG_CFA_REGISTER:
2735         n = XEXP (note, 0);
2736         if (n == NULL)
2737           {
2738             n = PATTERN (insn);
2739             if (GET_CODE (n) == PARALLEL)
2740               n = XVECEXP (n, 0, 0);
2741           }
2742         dwarf2out_frame_debug_cfa_register (n, label);
2743         handled_one = true;
2744         break;
2745
2746       case REG_CFA_RESTORE:
2747         n = XEXP (note, 0);
2748         if (n == NULL)
2749           {
2750             n = PATTERN (insn);
2751             if (GET_CODE (n) == PARALLEL)
2752               n = XVECEXP (n, 0, 0);
2753             n = XEXP (n, 0);
2754           }
2755         dwarf2out_frame_debug_cfa_restore (n, label);
2756         handled_one = true;
2757         break;
2758
2759       case REG_CFA_SET_VDRAP:
2760         n = XEXP (note, 0);
2761         if (REG_P (n))
2762           {
2763             dw_fde_ref fde = current_fde ();
2764             if (fde)
2765               {
2766                 gcc_assert (fde->vdrap_reg == INVALID_REGNUM);
2767                 if (REG_P (n))
2768                   fde->vdrap_reg = REGNO (n);
2769               }
2770           }
2771         handled_one = true;
2772         break;
2773
2774       default:
2775         break;
2776       }
2777   if (handled_one)
2778     return;
2779
2780   insn = PATTERN (insn);
2781  found:
2782   dwarf2out_frame_debug_expr (insn, label);
2783 }
2784
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.  */
2789
2790 void
2791 dwarf2out_begin_epilogue (rtx insn)
2792 {
2793   bool saw_frp = false;
2794   rtx i;
2795
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))
2799     {
2800       if (!INSN_P (i))
2801         continue;
2802
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;
2808
2809       if (GET_CODE (PATTERN (i)) == SEQUENCE)
2810         {
2811           int idx;
2812           rtx seq = PATTERN (i);
2813
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;
2819
2820           for (idx = 0; idx < XVECLEN (seq, 0); idx++)
2821             if (RTX_FRAME_RELATED_P (XVECEXP (seq, 0, idx)))
2822               saw_frp = true;
2823         }
2824
2825       if (RTX_FRAME_RELATED_P (i))
2826         saw_frp = true;
2827     }
2828
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;
2833
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;
2840
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)
2846     {
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;
2853     }
2854   emit_note_before (NOTE_INSN_CFA_RESTORE_STATE, i);
2855
2856   emit_cfa_remember = true;
2857
2858   /* And emulate the state save.  */
2859   gcc_assert (!cfa_remember.in_use);
2860   cfa_remember = cfa;
2861   cfa_remember.in_use = 1;
2862 }
2863
2864 /* A "subroutine" of dwarf2out_begin_epilogue.  Emit the restore required.  */
2865
2866 void
2867 dwarf2out_frame_debug_restore_state (void)
2868 {
2869   dw_cfi_ref cfi = new_cfi ();
2870   const char *label = dwarf2out_cfi_label (false);
2871
2872   cfi->dw_cfi_opc = DW_CFA_restore_state;
2873   add_fde_cfi (label, cfi);
2874
2875   gcc_assert (cfa_remember.in_use);
2876   cfa = cfa_remember;
2877   cfa_remember.in_use = 0;
2878 }
2879
2880 #endif
2881
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);
2885
2886 static enum dw_cfi_oprnd_type
2887 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi)
2888 {
2889   switch (cfi)
2890     {
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;
2896
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;
2903
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;
2917
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;
2922
2923     case DW_CFA_def_cfa_expression:
2924       return dw_cfi_oprnd_loc;
2925
2926     default:
2927       gcc_unreachable ();
2928     }
2929 }
2930
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);
2934
2935 static enum dw_cfi_oprnd_type
2936 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi)
2937 {
2938   switch (cfi)
2939     {
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;
2946
2947     case DW_CFA_register:
2948       return dw_cfi_oprnd_reg_num;
2949
2950     case DW_CFA_expression:
2951       return dw_cfi_oprnd_loc;
2952
2953     default:
2954       return dw_cfi_oprnd_unused;
2955     }
2956 }
2957
2958 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
2959
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.  */
2963
2964 static void
2965 switch_to_eh_frame_section (bool back)
2966 {
2967   tree label;
2968
2969 #ifdef EH_FRAME_SECTION_NAME
2970   if (eh_frame_section == 0)
2971     {
2972       int flags;
2973
2974       if (EH_TABLES_CAN_BE_READ_ONLY)
2975         {
2976           int fde_encoding;
2977           int per_encoding;
2978           int lsda_encoding;
2979
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);
2994         }
2995       else
2996         flags = SECTION_WRITE;
2997       eh_frame_section = get_section (EH_FRAME_SECTION_NAME, flags, NULL);
2998     }
2999 #endif
3000
3001   if (eh_frame_section)
3002     switch_to_section (eh_frame_section);
3003   else
3004     {
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);
3008
3009       if (!back)
3010         {
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));
3016         }
3017     }
3018 }
3019
3020 /* Switch [BACK] to the eh or debug frame table section, depending on
3021    FOR_EH.  */
3022
3023 static void
3024 switch_to_frame_table_section (int for_eh, bool back)
3025 {
3026   if (for_eh)
3027     switch_to_eh_frame_section (back);
3028   else
3029     {
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);
3034     }
3035 }
3036
3037 /* Output a Call Frame Information opcode and its operand(s).  */
3038
3039 static void
3040 output_cfi (dw_cfi_ref cfi, dw_fde_ref fde, int for_eh)
3041 {
3042   unsigned long r;
3043   HOST_WIDE_INT off;
3044
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)
3052     {
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 %#lx", r);
3056       off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3057       dw2_asm_output_data_uleb128 (off, NULL);
3058     }
3059   else if (cfi->dw_cfi_opc == DW_CFA_restore)
3060     {
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 %#lx", r);
3064     }
3065   else
3066     {
3067       dw2_asm_output_data (1, cfi->dw_cfi_opc,
3068                            "%s", dwarf_cfi_name (cfi->dw_cfi_opc));
3069
3070       switch (cfi->dw_cfi_opc)
3071         {
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;
3083
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;
3089
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;
3095
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;
3101
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;
3107
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;
3114
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;
3120
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;
3127
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;
3134
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;
3142
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;
3149
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;
3154
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;
3159
3160         case DW_CFA_GNU_window_save:
3161           break;
3162
3163         case DW_CFA_def_cfa_expression:
3164         case DW_CFA_expression:
3165           output_cfa_loc (cfi);
3166           break;
3167
3168         case DW_CFA_GNU_negative_offset_extended:
3169           /* Obsoleted by DW_CFA_offset_extended_sf.  */
3170           gcc_unreachable ();
3171
3172         default:
3173           break;
3174         }
3175     }
3176 }
3177
3178 /* Similar, but do it via assembler directives instead.  */
3179
3180 static void
3181 output_cfi_directive (dw_cfi_ref cfi)
3182 {
3183   unsigned long r, r2;
3184
3185   switch (cfi->dw_cfi_opc)
3186     {
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 ();
3197
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;
3205
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;
3211
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;
3216
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;
3221
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;
3228
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;
3233
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;
3239
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;
3246
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;
3253
3254     case DW_CFA_GNU_args_size:
3255       fprintf (asm_out_file, "\t.cfi_escape %#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;
3262
3263     case DW_CFA_GNU_window_save:
3264       fprintf (asm_out_file, "\t.cfi_window_save\n");
3265       break;
3266
3267     case DW_CFA_def_cfa_expression:
3268     case DW_CFA_expression:
3269       fprintf (asm_out_file, "\t.cfi_escape %#x,", cfi->dw_cfi_opc);
3270       output_cfa_loc_raw (cfi);
3271       fputc ('\n', asm_out_file);
3272       break;
3273
3274     default:
3275       gcc_unreachable ();
3276     }
3277 }
3278
3279 DEF_VEC_P (dw_cfi_ref);
3280 DEF_VEC_ALLOC_P (dw_cfi_ref, heap);
3281
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.  */
3286
3287 static void
3288 output_cfis (dw_cfi_ref cfi, bool do_cfi_asm, dw_fde_ref fde, bool for_eh)
3289 {
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;
3295
3296   for (;; cfi = cfi->dw_cfi_next)
3297     switch (cfi ? cfi->dw_cfi_opc : DW_CFA_nop)
3298       {
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:
3308         {
3309           dw_cfi_ref args_size = cfi_args_size;
3310
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);
3320
3321           if (cfi2 == NULL)
3322             goto flush_all;
3323           else
3324             {
3325               cfi = cfi2;
3326               cfi_args_size = args_size;
3327             }
3328           break;
3329         }
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++)
3371           {
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)
3376               {
3377                 if (do_cfi_asm)
3378                   output_cfi_directive (cfi2);
3379                 else
3380                   output_cfi (cfi2, fde, for_eh);
3381               }
3382           }
3383         if (cfi_cfa && cfi_cfa_offset && cfi_cfa_offset != cfi_cfa)
3384           {
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)
3388               {
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 ();
3404               }
3405             cfi_cfa = &cfi_buf;
3406           }
3407         else if (cfi_cfa_offset)
3408           cfi_cfa = cfi_cfa_offset;
3409         if (cfi_cfa)
3410           {
3411             if (do_cfi_asm)
3412               output_cfi_directive (cfi_cfa);
3413             else
3414               output_cfi (cfi_cfa, fde, for_eh);
3415           }
3416         cfi_cfa = NULL;
3417         cfi_cfa_offset = NULL;
3418         if (cfi_args_size
3419             && cfi_args_size->dw_cfi_oprnd1.dw_cfi_offset)
3420           {
3421             if (do_cfi_asm)
3422               output_cfi_directive (cfi_args_size);
3423             else
3424               output_cfi (cfi_args_size, fde, for_eh);
3425           }
3426         cfi_args_size = NULL;
3427         if (cfi == NULL)
3428           {
3429             VEC_free (dw_cfi_ref, heap, regs);
3430             return;
3431           }
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 ();
3439     }
3440 }
3441
3442 /* Output one FDE.  */
3443
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)
3448 {
3449   const char *begin, *end;
3450   static unsigned int j;
3451   char l1[20], l2[20];
3452   dw_cfi_ref cfi;
3453
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);
3466
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");
3472
3473   if (!fde->dw_fde_switched_sections)
3474     {
3475       begin = fde->dw_fde_begin;
3476       end = fde->dw_fde_end;
3477     }
3478   else
3479     {
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;
3494     }
3495
3496   if (for_eh)
3497     {
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");
3504     }
3505   else
3506     {
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");
3509     }
3510
3511   if (augmentation[0])
3512     {
3513       if (any_lsda_needed)
3514         {
3515           int size = size_of_encoded_value (lsda_encoding);
3516
3517           if (lsda_encoding == DW_EH_PE_aligned)
3518             {
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);
3524
3525               size += pad;
3526               gcc_assert (size_of_uleb128 (size) == 1);
3527             }
3528
3529           dw2_asm_output_data_uleb128 (size, "Augmentation size");
3530
3531           if (fde->uses_eh_lsda)
3532             {
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");
3539             }
3540           else
3541             {
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)");
3546             }
3547         }
3548       else
3549         dw2_asm_output_data_uleb128 (0, "Augmentation size");
3550     }
3551
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)
3559     {
3560       if (fde->dw_fde_switch_cfi)
3561         for (cfi = fde->dw_fde_cfi; cfi != NULL; cfi = cfi->dw_cfi_next)
3562           {
3563             output_cfi (cfi, fde, for_eh);
3564             if (cfi == fde->dw_fde_switch_cfi)
3565               break;
3566           }
3567     }
3568   else
3569     {
3570       dw_cfi_ref cfi_next = fde->dw_fde_cfi;
3571
3572       if (fde->dw_fde_switch_cfi)
3573         {
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;
3578         }
3579       for (cfi = cfi_next; cfi != NULL; cfi = cfi->dw_cfi_next)
3580         output_cfi (cfi, fde, for_eh);
3581     }
3582
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.  */
3588
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
3596
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);
3601
3602   j += 2;
3603 }
3604
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.  */
3608
3609 static void
3610 output_call_frame_info (int for_eh)
3611 {
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;
3625
3626   /* Don't emit a CIE if there won't be any FDEs.  */
3627   if (fde_table_in_use == 0)
3628     return;
3629
3630   /* Nothing to do if the assembler's doing it all.  */
3631   if (dwarf2out_do_cfi_asm ())
3632     return;
3633
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);
3650
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)
3656     {
3657       bool any_eh_needed = !flag_exceptions || flag_asynchronous_unwind_tables;
3658
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;
3667
3668       if (! any_eh_needed)
3669         return;
3670     }
3671
3672   /* We're going to be generating comments, so turn on app.  */
3673   if (flag_debug_asm)
3674     app_enable ();
3675
3676   /* Switch to the proper frame section, first time.  */
3677   switch_to_frame_table_section (for_eh, false);
3678
3679   ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
3680   ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
3681
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);
3691
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");
3697
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");
3706
3707   augmentation[0] = 0;
3708   augmentation_size = 0;
3709
3710   personality = current_unit_personality;
3711   if (for_eh)
3712     {
3713       char *p;
3714
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.  */
3724
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);
3728
3729       p = augmentation + 1;
3730       if (personality)
3731         {
3732           *p++ = 'P';
3733           augmentation_size += 1 + size_of_encoded_value (per_encoding);
3734           assemble_external_libcall (personality);
3735         }
3736       if (any_lsda_needed)
3737         {
3738           *p++ = 'L';
3739           augmentation_size += 1;
3740         }
3741       if (fde_encoding != DW_EH_PE_absptr)
3742         {
3743           *p++ = 'R';
3744           augmentation_size += 1;
3745         }
3746       if (p > augmentation + 1)
3747         {
3748           augmentation[0] = 'z';
3749           *p = '\0';
3750         }
3751
3752       /* Ug.  Some platforms can't do unaligned dynamic relocations at all.  */
3753       if (personality && per_encoding == DW_EH_PE_aligned)
3754         {
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);
3765
3766           augmentation_size += pad;
3767
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);
3771         }
3772     }
3773
3774   dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
3775   if (dw_cie_version >= 4)
3776     {
3777       dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "CIE Address Size");
3778       dw2_asm_output_data (1, 0, "CIE Segment Size");
3779     }
3780   dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
3781   dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
3782                                "CIE Data Alignment Factor");
3783
3784   if (dw_cie_version == 1)
3785     dw2_asm_output_data (1, return_reg, "CIE RA Column");
3786   else
3787     dw2_asm_output_data_uleb128 (return_reg, "CIE RA Column");
3788
3789   if (augmentation[0])
3790     {
3791       dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
3792       if (personality)
3793         {
3794           dw2_asm_output_data (1, per_encoding, "Personality (%s)",
3795                                eh_data_format_name (per_encoding));
3796           dw2_asm_output_encoded_addr_rtx (per_encoding,
3797                                            personality,
3798                                            true, NULL);
3799         }
3800
3801       if (any_lsda_needed)
3802         dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
3803                              eh_data_format_name (lsda_encoding));
3804
3805       if (fde_encoding != DW_EH_PE_absptr)
3806         dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
3807                              eh_data_format_name (fde_encoding));
3808     }
3809
3810   for (cfi = cie_cfi_head; cfi != NULL; cfi = cfi->dw_cfi_next)
3811     output_cfi (cfi, NULL, for_eh);
3812
3813   /* Pad the CIE out to an address sized boundary.  */
3814   ASM_OUTPUT_ALIGN (asm_out_file,
3815                     floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
3816   ASM_OUTPUT_LABEL (asm_out_file, l2);
3817
3818   /* Loop through all of the FDE's.  */
3819   for (i = 0; i < fde_table_in_use; i++)
3820     {
3821       unsigned int k;
3822       fde = &fde_table[i];
3823
3824       /* Don't emit EH unwind info for leaf functions that don't need it.  */
3825       if (for_eh && !flag_asynchronous_unwind_tables && flag_exceptions
3826           && (fde->nothrow || fde->all_throwers_are_sibcalls)
3827           && ! (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde_table[i].decl))
3828           && !fde->uses_eh_lsda)
3829         continue;
3830
3831       for (k = 0; k < (fde->dw_fde_switched_sections ? 2 : 1); k++)
3832         output_fde (fde, for_eh, k, section_start_label, fde_encoding,
3833                     augmentation, any_lsda_needed, lsda_encoding);
3834     }
3835
3836   if (for_eh && targetm.terminate_dw2_eh_frame_info)
3837     dw2_asm_output_data (4, 0, "End of Table");
3838 #ifdef MIPS_DEBUGGING_INFO
3839   /* Work around Irix 6 assembler bug whereby labels at the end of a section
3840      get a value of 0.  Putting .align 0 after the label fixes it.  */
3841   ASM_OUTPUT_ALIGN (asm_out_file, 0);
3842 #endif
3843
3844   /* Turn off app to make assembly quicker.  */
3845   if (flag_debug_asm)
3846     app_disable ();
3847 }
3848
3849 /* Emit .cfi_startproc and .cfi_personality/.cfi_lsda if needed.  */
3850
3851 static void
3852 dwarf2out_do_cfi_startproc (bool second)
3853 {
3854   int enc;
3855   rtx ref;
3856   rtx personality = get_personality_function (current_function_decl);
3857
3858   fprintf (asm_out_file, "\t.cfi_startproc\n");
3859
3860   if (personality)
3861     {
3862       enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
3863       ref = personality;
3864
3865       /* ??? The GAS support isn't entirely consistent.  We have to
3866          handle indirect support ourselves, but PC-relative is done
3867          in the assembler.  Further, the assembler can't handle any
3868          of the weirder relocation types.  */
3869       if (enc & DW_EH_PE_indirect)
3870         ref = dw2_force_const_mem (ref, true);
3871
3872       fprintf (asm_out_file, "\t.cfi_personality %#x,", enc);
3873       output_addr_const (asm_out_file, ref);
3874       fputc ('\n', asm_out_file);
3875     }
3876
3877   if (crtl->uses_eh_lsda)
3878     {
3879       char lab[20];
3880
3881       enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
3882       ASM_GENERATE_INTERNAL_LABEL (lab, second ? "LLSDAC" : "LLSDA",
3883                                    current_function_funcdef_no);
3884       ref = gen_rtx_SYMBOL_REF (Pmode, lab);
3885       SYMBOL_REF_FLAGS (ref) = SYMBOL_FLAG_LOCAL;
3886
3887       if (enc & DW_EH_PE_indirect)
3888         ref = dw2_force_const_mem (ref, true);
3889
3890       fprintf (asm_out_file, "\t.cfi_lsda %#x,", enc);
3891       output_addr_const (asm_out_file, ref);
3892       fputc ('\n', asm_out_file);
3893     }
3894 }
3895
3896 /* Output a marker (i.e. a label) for the beginning of a function, before
3897    the prologue.  */
3898
3899 void
3900 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED,
3901                           const char *file ATTRIBUTE_UNUSED)
3902 {
3903   char label[MAX_ARTIFICIAL_LABEL_BYTES];
3904   char * dup_label;
3905   dw_fde_ref fde;
3906   section *fnsec;
3907
3908   current_function_func_begin_label = NULL;
3909
3910 #ifdef TARGET_UNWIND_INFO
3911   /* ??? current_function_func_begin_label is also used by except.c
3912      for call-site information.  We must emit this label if it might
3913      be used.  */
3914   if ((! flag_exceptions || USING_SJLJ_EXCEPTIONS)
3915       && ! dwarf2out_do_frame ())
3916     return;
3917 #else
3918   if (! dwarf2out_do_frame ())
3919     return;
3920 #endif
3921
3922   fnsec = function_section (current_function_decl);
3923   switch_to_section (fnsec);
3924   ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
3925                                current_function_funcdef_no);
3926   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
3927                           current_function_funcdef_no);
3928   dup_label = xstrdup (label);
3929   current_function_func_begin_label = dup_label;
3930
3931 #ifdef TARGET_UNWIND_INFO
3932   /* We can elide the fde allocation if we're not emitting debug info.  */
3933   if (! dwarf2out_do_frame ())
3934     return;
3935 #endif
3936
3937   /* Expand the fde table if necessary.  */
3938   if (fde_table_in_use == fde_table_allocated)
3939     {
3940       fde_table_allocated += FDE_TABLE_INCREMENT;
3941       fde_table = GGC_RESIZEVEC (dw_fde_node, fde_table, fde_table_allocated);
3942       memset (fde_table + fde_table_in_use, 0,
3943               FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
3944     }
3945
3946   /* Record the FDE associated with this function.  */
3947   current_funcdef_fde = fde_table_in_use;
3948
3949   /* Add the new FDE at the end of the fde_table.  */
3950   fde = &fde_table[fde_table_in_use++];
3951   fde->decl = current_function_decl;
3952   fde->dw_fde_begin = dup_label;
3953   fde->dw_fde_current_label = dup_label;
3954   fde->dw_fde_hot_section_label = NULL;
3955   fde->dw_fde_hot_section_end_label = NULL;
3956   fde->dw_fde_unlikely_section_label = NULL;
3957   fde->dw_fde_unlikely_section_end_label = NULL;
3958   fde->dw_fde_switched_sections = 0;
3959   fde->dw_fde_switched_cold_to_hot = 0;
3960   fde->dw_fde_end = NULL;
3961   fde->dw_fde_cfi = NULL;
3962   fde->dw_fde_switch_cfi = NULL;
3963   fde->funcdef_number = current_function_funcdef_no;
3964   fde->nothrow = crtl->nothrow;
3965   fde->uses_eh_lsda = crtl->uses_eh_lsda;
3966   fde->all_throwers_are_sibcalls = crtl->all_throwers_are_sibcalls;
3967   fde->drap_reg = INVALID_REGNUM;
3968   fde->vdrap_reg = INVALID_REGNUM;
3969   if (flag_reorder_blocks_and_partition)
3970     {
3971       section *unlikelysec;
3972       if (first_function_block_is_cold)
3973         fde->in_std_section = 1;
3974       else
3975         fde->in_std_section
3976           = (fnsec == text_section
3977              || (cold_text_section && fnsec == cold_text_section));
3978       unlikelysec = unlikely_text_section ();
3979       fde->cold_in_std_section
3980         = (unlikelysec == text_section
3981            || (cold_text_section && unlikelysec == cold_text_section));
3982     }
3983   else
3984     {
3985       fde->in_std_section
3986         = (fnsec == text_section
3987            || (cold_text_section && fnsec == cold_text_section));
3988       fde->cold_in_std_section = 0;
3989     }
3990
3991   args_size = old_args_size = 0;
3992
3993   /* We only want to output line number information for the genuine dwarf2
3994      prologue case, not the eh frame case.  */
3995 #ifdef DWARF2_DEBUGGING_INFO
3996   if (file)
3997     dwarf2out_source_line (line, file, 0, true);
3998 #endif
3999
4000   if (dwarf2out_do_cfi_asm ())
4001     dwarf2out_do_cfi_startproc (false);
4002   else
4003     {
4004       rtx personality = get_personality_function (current_function_decl);
4005       if (!current_unit_personality)
4006         current_unit_personality = personality;
4007
4008       /* We cannot keep a current personality per function as without CFI
4009          asm at the point where we emit the CFI data there is no current
4010          function anymore.  */
4011       if (personality
4012           && current_unit_personality != personality)
4013         sorry ("Multiple EH personalities are supported only with assemblers "
4014                "supporting .cfi.personality directive.");
4015     }
4016 }
4017
4018 /* Output a marker (i.e. a label) for the absolute end of the generated code
4019    for a function definition.  This gets called *after* the epilogue code has
4020    been generated.  */
4021
4022 void
4023 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
4024                         const char *file ATTRIBUTE_UNUSED)
4025 {
4026   dw_fde_ref fde;
4027   char label[MAX_ARTIFICIAL_LABEL_BYTES];
4028
4029 #ifdef DWARF2_DEBUGGING_INFO
4030   last_var_location_insn = NULL_RTX;
4031 #endif
4032
4033   if (dwarf2out_do_cfi_asm ())
4034     fprintf (asm_out_file, "\t.cfi_endproc\n");
4035
4036   /* Output a label to mark the endpoint of the code generated for this
4037      function.  */
4038   ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
4039                                current_function_funcdef_no);
4040   ASM_OUTPUT_LABEL (asm_out_file, label);
4041   fde = current_fde ();
4042   gcc_assert (fde != NULL);
4043   fde->dw_fde_end = xstrdup (label);
4044 }
4045
4046 void
4047 dwarf2out_frame_init (void)
4048 {
4049   /* Allocate the initial hunk of the fde_table.  */
4050   fde_table = GGC_CNEWVEC (dw_fde_node, FDE_TABLE_INCREMENT);
4051   fde_table_allocated = FDE_TABLE_INCREMENT;
4052   fde_table_in_use = 0;
4053
4054   /* Generate the CFA instructions common to all FDE's.  Do it now for the
4055      sake of lookup_cfa.  */
4056
4057   /* On entry, the Canonical Frame Address is at SP.  */
4058   dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
4059
4060 #ifdef DWARF2_UNWIND_INFO
4061   if (DWARF2_UNWIND_INFO || DWARF2_FRAME_INFO)
4062     initial_return_save (INCOMING_RETURN_ADDR_RTX);
4063 #endif
4064 }
4065
4066 void
4067 dwarf2out_frame_finish (void)
4068 {
4069   /* Output call frame information.  */
4070   if (DWARF2_FRAME_INFO)
4071     output_call_frame_info (0);
4072
4073 #ifndef TARGET_UNWIND_INFO
4074   /* Output another copy for the unwinder.  */
4075   if (! USING_SJLJ_EXCEPTIONS && (flag_unwind_tables || flag_exceptions))
4076     output_call_frame_info (1);
4077 #endif
4078 }
4079
4080 /* Note that the current function section is being used for code.  */
4081
4082 static void
4083 dwarf2out_note_section_used (void)
4084 {
4085   section *sec = current_function_section ();
4086   if (sec == text_section)
4087     text_section_used = true;
4088   else if (sec == cold_text_section)
4089     cold_text_section_used = true;
4090 }
4091
4092 void
4093 dwarf2out_switch_text_section (void)
4094 {
4095   dw_fde_ref fde = current_fde ();
4096
4097   gcc_assert (cfun && fde && !fde->dw_fde_switched_sections);
4098
4099   fde->dw_fde_switched_sections = 1;
4100   fde->dw_fde_switched_cold_to_hot = !in_cold_section_p;
4101
4102   fde->dw_fde_hot_section_label = crtl->subsections.hot_section_label;
4103   fde->dw_fde_hot_section_end_label = crtl->subsections.hot_section_end_label;
4104   fde->dw_fde_unlikely_section_label = crtl->subsections.cold_section_label;
4105   fde->dw_fde_unlikely_section_end_label = crtl->subsections.cold_section_end_label;
4106   have_multiple_function_sections = true;
4107
4108   /* Reset the current label on switching text sections, so that we
4109      don't attempt to advance_loc4 between labels in different sections.  */
4110   fde->dw_fde_current_label = NULL;
4111
4112   /* There is no need to mark used sections when not debugging.  */
4113   if (cold_text_section != NULL)
4114     dwarf2out_note_section_used ();
4115
4116   if (dwarf2out_do_cfi_asm ())
4117     fprintf (asm_out_file, "\t.cfi_endproc\n");
4118
4119   /* Now do the real section switch.  */
4120   switch_to_section (current_function_section ());
4121
4122   if (dwarf2out_do_cfi_asm ())
4123     {
4124       dwarf2out_do_cfi_startproc (true);
4125       /* As this is a different FDE, insert all current CFI instructions
4126          again.  */
4127       output_cfis (fde->dw_fde_cfi, true, fde, true);
4128     }
4129   else
4130     {
4131       dw_cfi_ref cfi = fde->dw_fde_cfi;
4132
4133       cfi = fde->dw_fde_cfi;
4134       if (cfi)
4135         while (cfi->dw_cfi_next != NULL)
4136           cfi = cfi->dw_cfi_next;
4137       fde->dw_fde_switch_cfi = cfi;
4138     }
4139 }
4140 #endif
4141 \f
4142 /* And now, the subset of the debugging information support code necessary
4143    for emitting location expressions.  */
4144
4145 /* Data about a single source file.  */
4146 struct GTY(()) dwarf_file_data {
4147   const char * filename;
4148   int emitted_number;
4149 };
4150
4151 typedef struct dw_val_struct *dw_val_ref;
4152 typedef struct die_struct *dw_die_ref;
4153 typedef const struct die_struct *const_dw_die_ref;
4154 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
4155 typedef struct dw_loc_list_struct *dw_loc_list_ref;
4156
4157 typedef struct GTY(()) deferred_locations_struct
4158 {
4159   tree variable;
4160   dw_die_ref die;
4161 } deferred_locations;
4162
4163 DEF_VEC_O(deferred_locations);
4164 DEF_VEC_ALLOC_O(deferred_locations,gc);
4165
4166 static GTY(()) VEC(deferred_locations, gc) *deferred_locations_list;
4167
4168 DEF_VEC_P(dw_die_ref);
4169 DEF_VEC_ALLOC_P(dw_die_ref,heap);
4170
4171 /* Each DIE may have a series of attribute/value pairs.  Values
4172    can take on several forms.  The forms that are used in this
4173    implementation are listed below.  */
4174
4175 enum dw_val_class
4176 {
4177   dw_val_class_addr,
4178   dw_val_class_offset,
4179   dw_val_class_loc,
4180   dw_val_class_loc_list,
4181   dw_val_class_range_list,
4182   dw_val_class_const,
4183   dw_val_class_unsigned_const,
4184   dw_val_class_const_double,
4185   dw_val_class_vec,
4186   dw_val_class_flag,
4187   dw_val_class_die_ref,
4188   dw_val_class_fde_ref,
4189   dw_val_class_lbl_id,
4190   dw_val_class_lineptr,
4191   dw_val_class_str,
4192   dw_val_class_macptr,
4193   dw_val_class_file,
4194   dw_val_class_data8
4195 };
4196
4197 /* Describe a floating point constant value, or a vector constant value.  */
4198
4199 typedef struct GTY(()) dw_vec_struct {
4200   unsigned char * GTY((length ("%h.length"))) array;
4201   unsigned length;
4202   unsigned elt_size;
4203 }
4204 dw_vec_const;
4205
4206 /* The dw_val_node describes an attribute's value, as it is
4207    represented internally.  */
4208
4209 typedef struct GTY(()) dw_val_struct {
4210   enum dw_val_class val_class;
4211   union dw_val_struct_union
4212     {
4213       rtx GTY ((tag ("dw_val_class_addr"))) val_addr;
4214       unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_offset"))) val_offset;
4215       dw_loc_list_ref GTY ((tag ("dw_val_class_loc_list"))) val_loc_list;
4216       dw_loc_descr_ref GTY ((tag ("dw_val_class_loc"))) val_loc;
4217       HOST_WIDE_INT GTY ((default)) val_int;
4218       unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned;
4219       double_int GTY ((tag ("dw_val_class_const_double"))) val_double;
4220       dw_vec_const GTY ((tag ("dw_val_class_vec"))) val_vec;
4221       struct dw_val_die_union
4222         {
4223           dw_die_ref die;
4224           int external;
4225         } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref;
4226       unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index;
4227       struct indirect_string_node * GTY ((tag ("dw_val_class_str"))) val_str;
4228       char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id;
4229       unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag;
4230       struct dwarf_file_data * GTY ((tag ("dw_val_class_file"))) val_file;
4231       unsigned char GTY ((tag ("dw_val_class_data8"))) val_data8[8];
4232     }
4233   GTY ((desc ("%1.val_class"))) v;
4234 }
4235 dw_val_node;
4236
4237 /* Locations in memory are described using a sequence of stack machine
4238    operations.  */
4239
4240 typedef struct GTY(()) dw_loc_descr_struct {
4241   dw_loc_descr_ref dw_loc_next;
4242   ENUM_BITFIELD (dwarf_location_atom) dw_loc_opc : 8;
4243   /* Used to distinguish DW_OP_addr with a direct symbol relocation
4244      from DW_OP_addr with a dtp-relative symbol relocation.  */
4245   unsigned int dtprel : 1;
4246   int dw_loc_addr;
4247   dw_val_node dw_loc_oprnd1;
4248   dw_val_node dw_loc_oprnd2;
4249 }
4250 dw_loc_descr_node;
4251
4252 /* Location lists are ranges + location descriptions for that range,
4253    so you can track variables that are in different places over
4254    their entire life.  */
4255 typedef struct GTY(()) dw_loc_list_struct {
4256   dw_loc_list_ref dw_loc_next;
4257   const char *begin; /* Label for begin address of range */
4258   const char *end;  /* Label for end address of range */
4259   char *ll_symbol; /* Label for beginning of location list.
4260                       Only on head of list */
4261   const char *section; /* Section this loclist is relative to */
4262   dw_loc_descr_ref expr;
4263 } dw_loc_list_node;
4264
4265 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
4266
4267 static dw_loc_descr_ref int_loc_descriptor (HOST_WIDE_INT);
4268
4269 /* Convert a DWARF stack opcode into its string name.  */
4270
4271 static const char *
4272 dwarf_stack_op_name (unsigned int op)
4273 {
4274   switch (op)
4275     {
4276     case DW_OP_addr:
4277       return "DW_OP_addr";
4278     case DW_OP_deref:
4279       return "DW_OP_deref";
4280     case DW_OP_const1u:
4281       return "DW_OP_const1u";
4282     case DW_OP_const1s:
4283       return "DW_OP_const1s";
4284     case DW_OP_const2u:
4285       return "DW_OP_const2u";
4286     case DW_OP_const2s:
4287       return "DW_OP_const2s";
4288     case DW_OP_const4u:
4289       return "DW_OP_const4u";
4290     case DW_OP_const4s:
4291       return "DW_OP_const4s";
4292     case DW_OP_const8u:
4293       return "DW_OP_const8u";
4294     case DW_OP_const8s:
4295       return "DW_OP_const8s";
4296     case DW_OP_constu:
4297       return "DW_OP_constu";
4298     case DW_OP_consts:
4299       return "DW_OP_consts";
4300     case DW_OP_dup:
4301       return "DW_OP_dup";
4302     case DW_OP_drop:
4303       return "DW_OP_drop";
4304     case DW_OP_over:
4305       return "DW_OP_over";
4306     case DW_OP_pick:
4307       return "DW_OP_pick";
4308     case DW_OP_swap:
4309       return "DW_OP_swap";
4310     case DW_OP_rot:
4311       return "DW_OP_rot";
4312     case DW_OP_xderef:
4313       return "DW_OP_xderef";
4314     case DW_OP_abs:
4315       return "DW_OP_abs";
4316     case DW_OP_and:
4317       return "DW_OP_and";
4318     case DW_OP_div:
4319       return "DW_OP_div";
4320     case DW_OP_minus:
4321       return "DW_OP_minus";
4322     case DW_OP_mod:
4323       return "DW_OP_mod";
4324     case DW_OP_mul:
4325       return "DW_OP_mul";
4326     case DW_OP_neg:
4327       return "DW_OP_neg";
4328     case DW_OP_not:
4329       return "DW_OP_not";
4330     case DW_OP_or:
4331       return "DW_OP_or";
4332     case DW_OP_plus:
4333       return "DW_OP_plus";
4334     case DW_OP_plus_uconst:
4335       return "DW_OP_plus_uconst";
4336     case DW_OP_shl:
4337       return "DW_OP_shl";
4338     case DW_OP_shr:
4339       return "DW_OP_shr";
4340     case DW_OP_shra:
4341       return "DW_OP_shra";
4342     case DW_OP_xor:
4343       return "DW_OP_xor";
4344     case DW_OP_bra:
4345       return "DW_OP_bra";
4346     case DW_OP_eq:
4347       return "DW_OP_eq";
4348     case DW_OP_ge:
4349       return "DW_OP_ge";
4350     case DW_OP_gt:
4351       return "DW_OP_gt";
4352     case DW_OP_le:
4353       return "DW_OP_le";
4354     case DW_OP_lt:
4355       return "DW_OP_lt";
4356     case DW_OP_ne:
4357       return "DW_OP_ne";
4358     case DW_OP_skip:
4359       return "DW_OP_skip";
4360     case DW_OP_lit0:
4361       return "DW_OP_lit0";
4362     case DW_OP_lit1:
4363       return "DW_OP_lit1";
4364     case DW_OP_lit2:
4365       return "DW_OP_lit2";
4366     case DW_OP_lit3:
4367       return "DW_OP_lit3";
4368     case DW_OP_lit4:
4369       return "DW_OP_lit4";
4370     case DW_OP_lit5:
4371       return "DW_OP_lit5";
4372     case DW_OP_lit6:
4373       return "DW_OP_lit6";
4374     case DW_OP_lit7:
4375       return "DW_OP_lit7";
4376     case DW_OP_lit8:
4377       return "DW_OP_lit8";
4378     case DW_OP_lit9:
4379       return "DW_OP_lit9";
4380     case DW_OP_lit10:
4381       return "DW_OP_lit10";
4382     case DW_OP_lit11:
4383       return "DW_OP_lit11";
4384     case DW_OP_lit12:
4385       return "DW_OP_lit12";
4386     case DW_OP_lit13:
4387       return "DW_OP_lit13";
4388     case DW_OP_lit14:
4389       return "DW_OP_lit14";
4390     case DW_OP_lit15:
4391       return "DW_OP_lit15";
4392     case DW_OP_lit16:
4393       return "DW_OP_lit16";
4394     case DW_OP_lit17:
4395       return "DW_OP_lit17";
4396     case DW_OP_lit18:
4397       return "DW_OP_lit18";
4398     case DW_OP_lit19:
4399       return "DW_OP_lit19";
4400     case DW_OP_lit20:
4401       return "DW_OP_lit20";
4402     case DW_OP_lit21:
4403       return "DW_OP_lit21";
4404     case DW_OP_lit22:
4405       return "DW_OP_lit22";
4406     case DW_OP_lit23:
4407       return "DW_OP_lit23";
4408     case DW_OP_lit24:
4409       return "DW_OP_lit24";
4410     case DW_OP_lit25:
4411       return "DW_OP_lit25";
4412     case DW_OP_lit26:
4413       return "DW_OP_lit26";
4414     case DW_OP_lit27:
4415       return "DW_OP_lit27";
4416     case DW_OP_lit28:
4417       return "DW_OP_lit28";
4418     case DW_OP_lit29:
4419       return "DW_OP_lit29";
4420     case DW_OP_lit30:
4421       return "DW_OP_lit30";
4422     case DW_OP_lit31:
4423       return "DW_OP_lit31";
4424     case DW_OP_reg0:
4425       return "DW_OP_reg0";
4426     case DW_OP_reg1:
4427       return "DW_OP_reg1";
4428     case DW_OP_reg2:
4429       return "DW_OP_reg2";
4430     case DW_OP_reg3:
4431       return "DW_OP_reg3";
4432     case DW_OP_reg4:
4433       return "DW_OP_reg4";
4434     case DW_OP_reg5:
4435       return "DW_OP_reg5";
4436     case DW_OP_reg6:
4437       return "DW_OP_reg6";
4438     case DW_OP_reg7:
4439       return "DW_OP_reg7";
4440     case DW_OP_reg8:
4441       return "DW_OP_reg8";
4442     case DW_OP_reg9:
4443       return "DW_OP_reg9";
4444     case DW_OP_reg10:
4445       return "DW_OP_reg10";
4446     case DW_OP_reg11:
4447       return "DW_OP_reg11";
4448     case DW_OP_reg12:
4449       return "DW_OP_reg12";
4450     case DW_OP_reg13:
4451       return "DW_OP_reg13";
4452     case DW_OP_reg14:
4453       return "DW_OP_reg14";
4454     case DW_OP_reg15:
4455       return "DW_OP_reg15";
4456     case DW_OP_reg16:
4457       return "DW_OP_reg16";
4458     case DW_OP_reg17:
4459       return "DW_OP_reg17";
4460     case DW_OP_reg18:
4461       return "DW_OP_reg18";
4462     case DW_OP_reg19:
4463       return "DW_OP_reg19";
4464     case DW_OP_reg20:
4465       return "DW_OP_reg20";
4466     case DW_OP_reg21:
4467       return "DW_OP_reg21";
4468     case DW_OP_reg22:
4469       return "DW_OP_reg22";
4470     case DW_OP_reg23:
4471       return "DW_OP_reg23";
4472     case DW_OP_reg24:
4473       return "DW_OP_reg24";
4474     case DW_OP_reg25:
4475       return "DW_OP_reg25";
4476     case DW_OP_reg26:
4477       return "DW_OP_reg26";
4478     case DW_OP_reg27:
4479       return "DW_OP_reg27";
4480     case DW_OP_reg28:
4481       return "DW_OP_reg28";
4482     case DW_OP_reg29:
4483       return "DW_OP_reg29";
4484     case DW_OP_reg30:
4485       return "DW_OP_reg30";
4486     case DW_OP_reg31:
4487       return "DW_OP_reg31";
4488     case DW_OP_breg0:
4489       return "DW_OP_breg0";
4490     case DW_OP_breg1:
4491       return "DW_OP_breg1";
4492     case DW_OP_breg2:
4493       return "DW_OP_breg2";
4494     case DW_OP_breg3:
4495       return "DW_OP_breg3";
4496     case DW_OP_breg4:
4497       return "DW_OP_breg4";
4498     case DW_OP_breg5:
4499       return "DW_OP_breg5";
4500     case DW_OP_breg6:
4501       return "DW_OP_breg6";
4502     case DW_OP_breg7:
4503       return "DW_OP_breg7";
4504     case DW_OP_breg8:
4505       return "DW_OP_breg8";
4506     case DW_OP_breg9:
4507       return "DW_OP_breg9";
4508     case DW_OP_breg10:
4509       return "DW_OP_breg10";
4510     case DW_OP_breg11:
4511       return "DW_OP_breg11";
4512     case DW_OP_breg12:
4513       return "DW_OP_breg12";
4514     case DW_OP_breg13:
4515       return "DW_OP_breg13";
4516     case DW_OP_breg14:
4517       return "DW_OP_breg14";
4518     case DW_OP_breg15:
4519       return "DW_OP_breg15";
4520     case DW_OP_breg16:
4521       return "DW_OP_breg16";
4522     case DW_OP_breg17:
4523       return "DW_OP_breg17";
4524     case DW_OP_breg18:
4525       return "DW_OP_breg18";
4526     case DW_OP_breg19:
4527       return "DW_OP_breg19";
4528     case DW_OP_breg20:
4529       return "DW_OP_breg20";
4530     case DW_OP_breg21:
4531       return "DW_OP_breg21";
4532     case DW_OP_breg22:
4533       return "DW_OP_breg22";
4534     case DW_OP_breg23:
4535       return "DW_OP_breg23";
4536     case DW_OP_breg24:
4537       return "DW_OP_breg24";
4538     case DW_OP_breg25:
4539       return "DW_OP_breg25";
4540     case DW_OP_breg26:
4541       return "DW_OP_breg26";
4542     case DW_OP_breg27:
4543       return "DW_OP_breg27";
4544     case DW_OP_breg28:
4545       return "DW_OP_breg28";
4546     case DW_OP_breg29:
4547       return "DW_OP_breg29";
4548     case DW_OP_breg30:
4549       return "DW_OP_breg30";
4550     case DW_OP_breg31:
4551       return "DW_OP_breg31";
4552     case DW_OP_regx:
4553       return "DW_OP_regx";
4554     case DW_OP_fbreg:
4555       return "DW_OP_fbreg";
4556     case DW_OP_bregx:
4557       return "DW_OP_bregx";
4558     case DW_OP_piece:
4559       return "DW_OP_piece";
4560     case DW_OP_deref_size:
4561       return "DW_OP_deref_size";
4562     case DW_OP_xderef_size:
4563       return "DW_OP_xderef_size";
4564     case DW_OP_nop:
4565       return "DW_OP_nop";
4566
4567     case DW_OP_push_object_address:
4568       return "DW_OP_push_object_address";
4569     case DW_OP_call2:
4570       return "DW_OP_call2";
4571     case DW_OP_call4:
4572       return "DW_OP_call4";
4573     case DW_OP_call_ref:
4574       return "DW_OP_call_ref";
4575     case DW_OP_implicit_value:
4576       return "DW_OP_implicit_value";
4577     case DW_OP_stack_value:
4578       return "DW_OP_stack_value";
4579     case DW_OP_form_tls_address:
4580       return "DW_OP_form_tls_address";
4581     case DW_OP_call_frame_cfa:
4582       return "DW_OP_call_frame_cfa";
4583     case DW_OP_bit_piece:
4584       return "DW_OP_bit_piece";
4585
4586     case DW_OP_GNU_push_tls_address:
4587       return "DW_OP_GNU_push_tls_address";
4588     case DW_OP_GNU_uninit:
4589       return "DW_OP_GNU_uninit";
4590     case DW_OP_GNU_encoded_addr:
4591       return "DW_OP_GNU_encoded_addr";
4592
4593     default:
4594       return "OP_<unknown>";
4595     }
4596 }
4597
4598 /* Return a pointer to a newly allocated location description.  Location
4599    descriptions are simple expression terms that can be strung
4600    together to form more complicated location (address) descriptions.  */
4601
4602 static inline dw_loc_descr_ref
4603 new_loc_descr (enum dwarf_location_atom op, unsigned HOST_WIDE_INT oprnd1,
4604                unsigned HOST_WIDE_INT oprnd2)
4605 {
4606   dw_loc_descr_ref descr = GGC_CNEW (dw_loc_descr_node);
4607
4608   descr->dw_loc_opc = op;
4609   descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
4610   descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
4611   descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
4612   descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
4613
4614   return descr;
4615 }
4616
4617 /* Return a pointer to a newly allocated location description for
4618    REG and OFFSET.  */
4619
4620 static inline dw_loc_descr_ref
4621 new_reg_loc_descr (unsigned int reg,  unsigned HOST_WIDE_INT offset)
4622 {
4623   if (reg <= 31)
4624     return new_loc_descr ((enum dwarf_location_atom) (DW_OP_breg0 + reg),
4625                           offset, 0);
4626   else
4627     return new_loc_descr (DW_OP_bregx, reg, offset);
4628 }
4629
4630 /* Add a location description term to a location description expression.  */
4631
4632 static inline void
4633 add_loc_descr (dw_loc_descr_ref *list_head, dw_loc_descr_ref descr)
4634 {
4635   dw_loc_descr_ref *d;
4636
4637   /* Find the end of the chain.  */
4638   for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
4639     ;
4640
4641   *d = descr;
4642 }
4643
4644 /* Add a constant OFFSET to a location expression.  */
4645
4646 static void
4647 loc_descr_plus_const (dw_loc_descr_ref *list_head, HOST_WIDE_INT offset)
4648 {
4649   dw_loc_descr_ref loc;
4650   HOST_WIDE_INT *p;
4651
4652   gcc_assert (*list_head != NULL);
4653
4654   if (!offset)
4655     return;
4656
4657   /* Find the end of the chain.  */
4658   for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
4659     ;
4660
4661   p = NULL;
4662   if (loc->dw_loc_opc == DW_OP_fbreg
4663       || (loc->dw_loc_opc >= DW_OP_breg0 && loc->dw_loc_opc <= DW_OP_breg31))
4664     p = &loc->dw_loc_oprnd1.v.val_int;
4665   else if (loc->dw_loc_opc == DW_OP_bregx)
4666     p = &loc->dw_loc_oprnd2.v.val_int;
4667
4668   /* If the last operation is fbreg, breg{0..31,x}, optimize by adjusting its
4669      offset.  Don't optimize if an signed integer overflow would happen.  */
4670   if (p != NULL
4671       && ((offset > 0 && *p <= INTTYPE_MAXIMUM (HOST_WIDE_INT) - offset)
4672           || (offset < 0 && *p >= INTTYPE_MINIMUM (HOST_WIDE_INT) - offset)))
4673     *p += offset;
4674
4675   else if (offset > 0)
4676     loc->dw_loc_next = new_loc_descr (DW_OP_plus_uconst, offset, 0);
4677
4678   else
4679     {
4680       loc->dw_loc_next = int_loc_descriptor (offset);
4681       add_loc_descr (&loc->dw_loc_next, new_loc_descr (DW_OP_plus, 0, 0));
4682     }
4683 }
4684
4685 #ifdef DWARF2_DEBUGGING_INFO
4686 /* Add a constant OFFSET to a location list.  */
4687
4688 static void
4689 loc_list_plus_const (dw_loc_list_ref list_head, HOST_WIDE_INT offset)
4690 {
4691   dw_loc_list_ref d;
4692   for (d = list_head; d != NULL; d = d->dw_loc_next)
4693     loc_descr_plus_const (&d->expr, offset);
4694 }
4695 #endif
4696
4697 /* Return the size of a location descriptor.  */
4698
4699 static unsigned long
4700 size_of_loc_descr (dw_loc_descr_ref loc)
4701 {
4702   unsigned long size = 1;
4703
4704   switch (loc->dw_loc_opc)
4705     {
4706     case DW_OP_addr:
4707       size += DWARF2_ADDR_SIZE;
4708       break;
4709     case DW_OP_const1u:
4710     case DW_OP_const1s:
4711       size += 1;
4712       break;
4713     case DW_OP_const2u:
4714     case DW_OP_const2s:
4715       size += 2;
4716       break;
4717     case DW_OP_const4u:
4718     case DW_OP_const4s:
4719       size += 4;
4720       break;
4721     case DW_OP_const8u:
4722     case DW_OP_const8s:
4723       size += 8;
4724       break;
4725     case DW_OP_constu:
4726       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4727       break;
4728     case DW_OP_consts:
4729       size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4730       break;
4731     case DW_OP_pick:
4732       size += 1;
4733       break;
4734     case DW_OP_plus_uconst:
4735       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4736       break;
4737     case DW_OP_skip:
4738     case DW_OP_bra:
4739       size += 2;
4740       break;
4741     case DW_OP_breg0:
4742     case DW_OP_breg1:
4743     case DW_OP_breg2:
4744     case DW_OP_breg3:
4745     case DW_OP_breg4:
4746     case DW_OP_breg5:
4747     case DW_OP_breg6:
4748     case DW_OP_breg7:
4749     case DW_OP_breg8:
4750     case DW_OP_breg9:
4751     case DW_OP_breg10:
4752     case DW_OP_breg11:
4753     case DW_OP_breg12:
4754     case DW_OP_breg13:
4755     case DW_OP_breg14:
4756     case DW_OP_breg15:
4757     case DW_OP_breg16:
4758     case DW_OP_breg17:
4759     case DW_OP_breg18:
4760     case DW_OP_breg19:
4761     case DW_OP_breg20:
4762     case DW_OP_breg21:
4763     case DW_OP_breg22:
4764     case DW_OP_breg23:
4765     case DW_OP_breg24:
4766     case DW_OP_breg25:
4767     case DW_OP_breg26:
4768     case DW_OP_breg27:
4769     case DW_OP_breg28:
4770     case DW_OP_breg29:
4771     case DW_OP_breg30:
4772     case DW_OP_breg31:
4773       size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4774       break;
4775     case DW_OP_regx:
4776       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4777       break;
4778     case DW_OP_fbreg:
4779       size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4780       break;
4781     case DW_OP_bregx:
4782       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4783       size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
4784       break;
4785     case DW_OP_piece:
4786       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4787       break;
4788     case DW_OP_bit_piece:
4789       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4790       size += size_of_uleb128 (loc->dw_loc_oprnd2.v.val_unsigned);
4791       break;
4792     case DW_OP_deref_size:
4793     case DW_OP_xderef_size:
4794       size += 1;
4795       break;
4796     case DW_OP_call2:
4797       size += 2;
4798       break;
4799     case DW_OP_call4:
4800       size += 4;
4801       break;
4802     case DW_OP_call_ref:
4803       size += DWARF2_ADDR_SIZE;
4804       break;
4805     case DW_OP_implicit_value:
4806       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned)
4807               + loc->dw_loc_oprnd1.v.val_unsigned;
4808       break;
4809     default:
4810       break;
4811     }
4812
4813   return size;
4814 }
4815
4816 /* Return the size of a series of location descriptors.  */
4817
4818 static unsigned long
4819 size_of_locs (dw_loc_descr_ref loc)
4820 {
4821   dw_loc_descr_ref l;
4822   unsigned long size;
4823
4824   /* If there are no skip or bra opcodes, don't fill in the dw_loc_addr
4825      field, to avoid writing to a PCH file.  */
4826   for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
4827     {
4828       if (l->dw_loc_opc == DW_OP_skip || l->dw_loc_opc == DW_OP_bra)
4829         break;
4830       size += size_of_loc_descr (l);
4831     }
4832   if (! l)
4833     return size;
4834
4835   for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
4836     {
4837       l->dw_loc_addr = size;
4838       size += size_of_loc_descr (l);
4839     }
4840
4841   return size;
4842 }
4843
4844 #ifdef DWARF2_DEBUGGING_INFO
4845 static HOST_WIDE_INT extract_int (const unsigned char *, unsigned);
4846 #endif
4847
4848 /* Output location description stack opcode's operands (if any).  */
4849
4850 static void
4851 output_loc_operands (dw_loc_descr_ref loc)
4852 {
4853   dw_val_ref val1 = &loc->dw_loc_oprnd1;
4854   dw_val_ref val2 = &loc->dw_loc_oprnd2;
4855
4856   switch (loc->dw_loc_opc)
4857     {
4858 #ifdef DWARF2_DEBUGGING_INFO
4859     case DW_OP_const2u:
4860     case DW_OP_const2s:
4861       dw2_asm_output_data (2, val1->v.val_int, NULL);
4862       break;
4863     case DW_OP_const4u:
4864     case DW_OP_const4s:
4865       dw2_asm_output_data (4, val1->v.val_int, NULL);
4866       break;
4867     case DW_OP_const8u:
4868     case DW_OP_const8s:
4869       gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
4870       dw2_asm_output_data (8, val1->v.val_int, NULL);
4871       break;
4872     case DW_OP_skip:
4873     case DW_OP_bra:
4874       {
4875         int offset;
4876
4877         gcc_assert (val1->val_class == dw_val_class_loc);
4878         offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
4879
4880         dw2_asm_output_data (2, offset, NULL);
4881       }
4882       break;
4883     case DW_OP_implicit_value:
4884       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
4885       switch (val2->val_class)
4886         {
4887         case dw_val_class_const:
4888           dw2_asm_output_data (val1->v.val_unsigned, val2->v.val_int, NULL);
4889           break;
4890         case dw_val_class_vec:
4891           {
4892             unsigned int elt_size = val2->v.val_vec.elt_size;
4893             unsigned int len = val2->v.val_vec.length;
4894             unsigned int i;
4895             unsigned char *p;
4896
4897             if (elt_size > sizeof (HOST_WIDE_INT))
4898               {
4899                 elt_size /= 2;
4900                 len *= 2;
4901               }
4902             for (i = 0, p = val2->v.val_vec.array;
4903                  i < len;
4904                  i++, p += elt_size)
4905               dw2_asm_output_data (elt_size, extract_int (p, elt_size),
4906                                    "fp or vector constant word %u", i);
4907           }
4908           break;
4909         case dw_val_class_const_double:
4910           {
4911             unsigned HOST_WIDE_INT first, second;
4912
4913             if (WORDS_BIG_ENDIAN)
4914               {
4915                 first = val2->v.val_double.high;
4916                 second = val2->v.val_double.low;
4917               }
4918             else
4919               {
4920                 first = val2->v.val_double.low;
4921                 second = val2->v.val_double.high;
4922               }
4923             dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
4924                                  first, NULL);
4925             dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
4926                                  second, NULL);
4927           }
4928           break;
4929         case dw_val_class_addr:
4930           gcc_assert (val1->v.val_unsigned == DWARF2_ADDR_SIZE);
4931           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val2->v.val_addr, NULL);
4932           break;
4933         default:
4934           gcc_unreachable ();
4935         }
4936       break;
4937 #else
4938     case DW_OP_const2u:
4939     case DW_OP_const2s:
4940     case DW_OP_const4u:
4941     case DW_OP_const4s:
4942     case DW_OP_const8u:
4943     case DW_OP_const8s:
4944     case DW_OP_skip:
4945     case DW_OP_bra:
4946     case DW_OP_implicit_value:
4947       /* We currently don't make any attempt to make sure these are
4948          aligned properly like we do for the main unwind info, so
4949          don't support emitting things larger than a byte if we're
4950          only doing unwinding.  */
4951       gcc_unreachable ();
4952 #endif
4953     case DW_OP_const1u:
4954     case DW_OP_const1s:
4955       dw2_asm_output_data (1, val1->v.val_int, NULL);
4956       break;
4957     case DW_OP_constu:
4958       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
4959       break;
4960     case DW_OP_consts:
4961       dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
4962       break;
4963     case DW_OP_pick:
4964       dw2_asm_output_data (1, val1->v.val_int, NULL);
4965       break;
4966     case DW_OP_plus_uconst:
4967       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
4968       break;
4969     case DW_OP_breg0:
4970     case DW_OP_breg1:
4971     case DW_OP_breg2:
4972     case DW_OP_breg3:
4973     case DW_OP_breg4:
4974     case DW_OP_breg5:
4975     case DW_OP_breg6:
4976     case DW_OP_breg7:
4977     case DW_OP_breg8:
4978     case DW_OP_breg9:
4979     case DW_OP_breg10:
4980     case DW_OP_breg11:
4981     case DW_OP_breg12:
4982     case DW_OP_breg13:
4983     case DW_OP_breg14:
4984     case DW_OP_breg15:
4985     case DW_OP_breg16:
4986     case DW_OP_breg17:
4987     case DW_OP_breg18:
4988     case DW_OP_breg19:
4989     case DW_OP_breg20:
4990     case DW_OP_breg21:
4991     case DW_OP_breg22:
4992     case DW_OP_breg23:
4993     case DW_OP_breg24:
4994     case DW_OP_breg25:
4995     case DW_OP_breg26:
4996     case DW_OP_breg27:
4997     case DW_OP_breg28:
4998     case DW_OP_breg29:
4999     case DW_OP_breg30:
5000     case DW_OP_breg31:
5001       dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
5002       break;
5003     case DW_OP_regx:
5004       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5005       break;
5006     case DW_OP_fbreg:
5007       dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
5008       break;
5009     case DW_OP_bregx:
5010       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5011       dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
5012       break;
5013     case DW_OP_piece:
5014       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5015       break;
5016     case DW_OP_bit_piece:
5017       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5018       dw2_asm_output_data_uleb128 (val2->v.val_unsigned, NULL);
5019       break;
5020     case DW_OP_deref_size:
5021     case DW_OP_xderef_size:
5022       dw2_asm_output_data (1, val1->v.val_int, NULL);
5023       break;
5024
5025     case DW_OP_addr:
5026       if (loc->dtprel)
5027         {
5028           if (targetm.asm_out.output_dwarf_dtprel)
5029             {
5030               targetm.asm_out.output_dwarf_dtprel (asm_out_file,
5031                                                    DWARF2_ADDR_SIZE,
5032                                                    val1->v.val_addr);
5033               fputc ('\n', asm_out_file);
5034             }
5035           else
5036             gcc_unreachable ();
5037         }
5038       else
5039         {
5040 #ifdef DWARF2_DEBUGGING_INFO
5041           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
5042 #else
5043           gcc_unreachable ();
5044 #endif
5045         }
5046       break;
5047
5048     default:
5049       /* Other codes have no operands.  */
5050       break;
5051     }
5052 }
5053
5054 /* Output a sequence of location operations.  */
5055
5056 static void
5057 output_loc_sequence (dw_loc_descr_ref loc)
5058 {
5059   for (; loc != NULL; loc = loc->dw_loc_next)
5060     {
5061       /* Output the opcode.  */
5062       dw2_asm_output_data (1, loc->dw_loc_opc,
5063                            "%s", dwarf_stack_op_name (loc->dw_loc_opc));
5064
5065       /* Output the operand(s) (if any).  */
5066       output_loc_operands (loc);
5067     }
5068 }
5069
5070 /* Output location description stack opcode's operands (if any).
5071    The output is single bytes on a line, suitable for .cfi_escape.  */
5072
5073 static void
5074 output_loc_operands_raw (dw_loc_descr_ref loc)
5075 {
5076   dw_val_ref val1 = &loc->dw_loc_oprnd1;
5077   dw_val_ref val2 = &loc->dw_loc_oprnd2;
5078
5079   switch (loc->dw_loc_opc)
5080     {
5081     case DW_OP_addr:
5082     case DW_OP_implicit_value:
5083       /* We cannot output addresses in .cfi_escape, only bytes.  */
5084       gcc_unreachable ();
5085
5086     case DW_OP_const1u:
5087     case DW_OP_const1s:
5088     case DW_OP_pick:
5089     case DW_OP_deref_size:
5090     case DW_OP_xderef_size:
5091       fputc (',', asm_out_file);
5092       dw2_asm_output_data_raw (1, val1->v.val_int);
5093       break;
5094
5095     case DW_OP_const2u:
5096     case DW_OP_const2s:
5097       fputc (',', asm_out_file);
5098       dw2_asm_output_data_raw (2, val1->v.val_int);
5099       break;
5100
5101     case DW_OP_const4u:
5102     case DW_OP_const4s:
5103       fputc (',', asm_out_file);
5104       dw2_asm_output_data_raw (4, val1->v.val_int);
5105       break;
5106
5107     case DW_OP_const8u:
5108     case DW_OP_const8s:
5109       gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
5110       fputc (',', asm_out_file);
5111       dw2_asm_output_data_raw (8, val1->v.val_int);
5112       break;
5113
5114     case DW_OP_skip:
5115     case DW_OP_bra:
5116       {
5117         int offset;
5118
5119         gcc_assert (val1->val_class == dw_val_class_loc);
5120         offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
5121
5122         fputc (',', asm_out_file);
5123         dw2_asm_output_data_raw (2, offset);
5124       }
5125       break;
5126
5127     case DW_OP_constu:
5128     case DW_OP_plus_uconst:
5129     case DW_OP_regx:
5130     case DW_OP_piece:
5131       fputc (',', asm_out_file);
5132       dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
5133       break;
5134
5135     case DW_OP_bit_piece:
5136       fputc (',', asm_out_file);
5137       dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
5138       dw2_asm_output_data_uleb128_raw (val2->v.val_unsigned);
5139       break;
5140
5141     case DW_OP_consts:
5142     case DW_OP_breg0:
5143     case DW_OP_breg1:
5144     case DW_OP_breg2:
5145     case DW_OP_breg3:
5146     case DW_OP_breg4:
5147     case DW_OP_breg5:
5148     case DW_OP_breg6:
5149     case DW_OP_breg7:
5150     case DW_OP_breg8:
5151     case DW_OP_breg9:
5152     case DW_OP_breg10:
5153     case DW_OP_breg11:
5154     case DW_OP_breg12:
5155     case DW_OP_breg13:
5156     case DW_OP_breg14:
5157     case DW_OP_breg15:
5158     case DW_OP_breg16:
5159     case DW_OP_breg17:
5160     case DW_OP_breg18:
5161     case DW_OP_breg19:
5162     case DW_OP_breg20:
5163     case DW_OP_breg21:
5164     case DW_OP_breg22:
5165     case DW_OP_breg23:
5166     case DW_OP_breg24:
5167     case DW_OP_breg25:
5168     case DW_OP_breg26:
5169     case DW_OP_breg27:
5170     case DW_OP_breg28:
5171     case DW_OP_breg29:
5172     case DW_OP_breg30:
5173     case DW_OP_breg31:
5174     case DW_OP_fbreg:
5175       fputc (',', asm_out_file);
5176       dw2_asm_output_data_sleb128_raw (val1->v.val_int);
5177       break;
5178
5179     case DW_OP_bregx:
5180       fputc (',', asm_out_file);
5181       dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
5182       fputc (',', asm_out_file);
5183       dw2_asm_output_data_sleb128_raw (val2->v.val_int);
5184       break;
5185
5186     default:
5187       /* Other codes have no operands.  */
5188       break;
5189     }
5190 }
5191
5192 static void
5193 output_loc_sequence_raw (dw_loc_descr_ref loc)
5194 {
5195   while (1)
5196     {
5197       /* Output the opcode.  */
5198       fprintf (asm_out_file, "%#x", loc->dw_loc_opc);
5199       output_loc_operands_raw (loc);
5200
5201       if (!loc->dw_loc_next)
5202         break;
5203       loc = loc->dw_loc_next;
5204
5205       fputc (',', asm_out_file);
5206     }
5207 }
5208
5209 /* This routine will generate the correct assembly data for a location
5210    description based on a cfi entry with a complex address.  */
5211
5212 static void
5213 output_cfa_loc (dw_cfi_ref cfi)
5214 {
5215   dw_loc_descr_ref loc;
5216   unsigned long size;
5217
5218   if (cfi->dw_cfi_opc == DW_CFA_expression)
5219     {
5220       dw2_asm_output_data (1, cfi->dw_cfi_oprnd1.dw_cfi_reg_num, NULL);
5221       loc = cfi->dw_cfi_oprnd2.dw_cfi_loc;
5222     }
5223   else
5224     loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
5225
5226   /* Output the size of the block.  */
5227   size = size_of_locs (loc);
5228   dw2_asm_output_data_uleb128 (size, NULL);
5229
5230   /* Now output the operations themselves.  */
5231   output_loc_sequence (loc);
5232 }
5233
5234 /* Similar, but used for .cfi_escape.  */
5235
5236 static void
5237 output_cfa_loc_raw (dw_cfi_ref cfi)
5238 {
5239   dw_loc_descr_ref loc;
5240   unsigned long size;
5241
5242   if (cfi->dw_cfi_opc == DW_CFA_expression)
5243     {
5244       fprintf (asm_out_file, "0x%x,", cfi->dw_cfi_oprnd1.dw_cfi_reg_num);
5245       loc = cfi->dw_cfi_oprnd2.dw_cfi_loc;
5246     }
5247   else
5248     loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
5249
5250   /* Output the size of the block.  */
5251   size = size_of_locs (loc);
5252   dw2_asm_output_data_uleb128_raw (size);
5253   fputc (',', asm_out_file);
5254
5255   /* Now output the operations themselves.  */
5256   output_loc_sequence_raw (loc);
5257 }
5258
5259 /* This function builds a dwarf location descriptor sequence from a
5260    dw_cfa_location, adding the given OFFSET to the result of the
5261    expression.  */
5262
5263 static struct dw_loc_descr_struct *
5264 build_cfa_loc (dw_cfa_location *cfa, HOST_WIDE_INT offset)
5265 {
5266   struct dw_loc_descr_struct *head, *tmp;
5267
5268   offset += cfa->offset;
5269
5270   if (cfa->indirect)
5271     {
5272       head = new_reg_loc_descr (cfa->reg, cfa->base_offset);
5273       head->dw_loc_oprnd1.val_class = dw_val_class_const;
5274       tmp = new_loc_descr (DW_OP_deref, 0, 0);
5275       add_loc_descr (&head, tmp);
5276       if (offset != 0)
5277         {
5278           tmp = new_loc_descr (DW_OP_plus_uconst, offset, 0);
5279           add_loc_descr (&head, tmp);
5280         }
5281     }
5282   else
5283     head = new_reg_loc_descr (cfa->reg, offset);
5284
5285   return head;
5286 }
5287
5288 /* This function builds a dwarf location descriptor sequence for
5289    the address at OFFSET from the CFA when stack is aligned to
5290    ALIGNMENT byte.  */
5291
5292 static struct dw_loc_descr_struct *
5293 build_cfa_aligned_loc (HOST_WIDE_INT offset, HOST_WIDE_INT alignment)
5294 {
5295   struct dw_loc_descr_struct *head;
5296   unsigned int dwarf_fp
5297     = DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM);
5298
5299  /* When CFA is defined as FP+OFFSET, emulate stack alignment.  */
5300   if (cfa.reg == HARD_FRAME_POINTER_REGNUM && cfa.indirect == 0)
5301     {
5302       head = new_reg_loc_descr (dwarf_fp, 0);
5303       add_loc_descr (&head, int_loc_descriptor (alignment));
5304       add_loc_descr (&head, new_loc_descr (DW_OP_and, 0, 0));
5305       loc_descr_plus_const (&head, offset);
5306     }
5307   else
5308     head = new_reg_loc_descr (dwarf_fp, offset);
5309   return head;
5310 }
5311
5312 /* This function fills in aa dw_cfa_location structure from a dwarf location
5313    descriptor sequence.  */
5314
5315 static void
5316 get_cfa_from_loc_descr (dw_cfa_location *cfa, struct dw_loc_descr_struct *loc)
5317 {
5318   struct dw_loc_descr_struct *ptr;
5319   cfa->offset = 0;
5320   cfa->base_offset = 0;
5321   cfa->indirect = 0;
5322   cfa->reg = -1;
5323
5324   for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
5325     {
5326       enum dwarf_location_atom op = ptr->dw_loc_opc;
5327
5328       switch (op)
5329         {
5330         case DW_OP_reg0:
5331         case DW_OP_reg1:
5332         case DW_OP_reg2:
5333         case DW_OP_reg3:
5334         case DW_OP_reg4:
5335         case DW_OP_reg5:
5336         case DW_OP_reg6:
5337         case DW_OP_reg7:
5338         case DW_OP_reg8:
5339         case DW_OP_reg9:
5340         case DW_OP_reg10:
5341         case DW_OP_reg11:
5342         case DW_OP_reg12:
5343         case DW_OP_reg13:
5344         case DW_OP_reg14:
5345         case DW_OP_reg15:
5346         case DW_OP_reg16:
5347         case DW_OP_reg17:
5348         case DW_OP_reg18:
5349         case DW_OP_reg19:
5350         case DW_OP_reg20:
5351         case DW_OP_reg21:
5352         case DW_OP_reg22:
5353         case DW_OP_reg23:
5354         case DW_OP_reg24:
5355         case DW_OP_reg25:
5356         case DW_OP_reg26:
5357         case DW_OP_reg27:
5358         case DW_OP_reg28:
5359         case DW_OP_reg29:
5360         case DW_OP_reg30:
5361         case DW_OP_reg31:
5362           cfa->reg = op - DW_OP_reg0;
5363           break;
5364         case DW_OP_regx:
5365           cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
5366           break;
5367         case DW_OP_breg0:
5368         case DW_OP_breg1:
5369         case DW_OP_breg2:
5370         case DW_OP_breg3:
5371         case DW_OP_breg4:
5372         case DW_OP_breg5:
5373         case DW_OP_breg6:
5374         case DW_OP_breg7:
5375         case DW_OP_breg8:
5376         case DW_OP_breg9:
5377         case DW_OP_breg10:
5378         case DW_OP_breg11:
5379         case DW_OP_breg12:
5380         case DW_OP_breg13:
5381         case DW_OP_breg14:
5382         case DW_OP_breg15:
5383         case DW_OP_breg16:
5384         case DW_OP_breg17:
5385         case DW_OP_breg18:
5386         case DW_OP_breg19:
5387         case DW_OP_breg20:
5388         case DW_OP_breg21:
5389         case DW_OP_breg22:
5390         case DW_OP_breg23:
5391         case DW_OP_breg24:
5392         case DW_OP_breg25:
5393         case DW_OP_breg26:
5394         case DW_OP_breg27:
5395         case DW_OP_breg28:
5396         case DW_OP_breg29:
5397         case DW_OP_breg30:
5398         case DW_OP_breg31:
5399           cfa->reg = op - DW_OP_breg0;
5400           cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
5401           break;
5402         case DW_OP_bregx:
5403           cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
5404           cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
5405           break;
5406         case DW_OP_deref:
5407           cfa->indirect = 1;
5408           break;
5409         case DW_OP_plus_uconst:
5410           cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
5411           break;
5412         default:
5413           internal_error ("DW_LOC_OP %s not implemented",
5414                           dwarf_stack_op_name (ptr->dw_loc_opc));
5415         }
5416     }
5417 }
5418 #endif /* .debug_frame support */
5419 \f
5420 /* And now, the support for symbolic debugging information.  */
5421 #ifdef DWARF2_DEBUGGING_INFO
5422
5423 /* .debug_str support.  */
5424 static int output_indirect_string (void **, void *);
5425
5426 static void dwarf2out_init (const char *);
5427 static void dwarf2out_finish (const char *);
5428 static void dwarf2out_assembly_start (void);
5429 static void dwarf2out_define (unsigned int, const char *);
5430 static void dwarf2out_undef (unsigned int, const char *);
5431 static void dwarf2out_start_source_file (unsigned, const char *);
5432 static void dwarf2out_end_source_file (unsigned);
5433 static void dwarf2out_function_decl (tree);
5434 static void dwarf2out_begin_block (unsigned, unsigned);
5435 static void dwarf2out_end_block (unsigned, unsigned);
5436 static bool dwarf2out_ignore_block (const_tree);
5437 static void dwarf2out_global_decl (tree);
5438 static void dwarf2out_type_decl (tree, int);
5439 static void dwarf2out_imported_module_or_decl (tree, tree, tree, bool);
5440 static void dwarf2out_imported_module_or_decl_1 (tree, tree, tree,
5441                                                  dw_die_ref);
5442 static void dwarf2out_abstract_function (tree);
5443 static void dwarf2out_var_location (rtx);
5444 static void dwarf2out_direct_call (tree);
5445 static void dwarf2out_virtual_call_token (tree, int);
5446 static void dwarf2out_copy_call_info (rtx, rtx);
5447 static void dwarf2out_virtual_call (int);
5448 static void dwarf2out_begin_function (tree);
5449 static void dwarf2out_set_name (tree, tree);
5450
5451 /* The debug hooks structure.  */
5452
5453 const struct gcc_debug_hooks dwarf2_debug_hooks =
5454 {
5455   dwarf2out_init,
5456   dwarf2out_finish,
5457   dwarf2out_assembly_start,
5458   dwarf2out_define,
5459   dwarf2out_undef,
5460   dwarf2out_start_source_file,
5461   dwarf2out_end_source_file,
5462   dwarf2out_begin_block,
5463   dwarf2out_end_block,
5464   dwarf2out_ignore_block,
5465   dwarf2out_source_line,
5466   dwarf2out_begin_prologue,
5467   debug_nothing_int_charstar,   /* end_prologue */
5468   dwarf2out_end_epilogue,
5469   dwarf2out_begin_function,
5470   debug_nothing_int,            /* end_function */
5471   dwarf2out_function_decl,      /* function_decl */
5472   dwarf2out_global_decl,
5473   dwarf2out_type_decl,          /* type_decl */
5474   dwarf2out_imported_module_or_decl,
5475   debug_nothing_tree,           /* deferred_inline_function */
5476   /* The DWARF 2 backend tries to reduce debugging bloat by not
5477      emitting the abstract description of inline functions until
5478      something tries to reference them.  */
5479   dwarf2out_abstract_function,  /* outlining_inline_function */
5480   debug_nothing_rtx,            /* label */
5481   debug_nothing_int,            /* handle_pch */
5482   dwarf2out_var_location,
5483   dwarf2out_switch_text_section,
5484   dwarf2out_direct_call,
5485   dwarf2out_virtual_call_token,
5486   dwarf2out_copy_call_info,
5487   dwarf2out_virtual_call,
5488   dwarf2out_set_name,
5489   1                             /* start_end_main_source_file */
5490 };
5491 #endif
5492 \f
5493 /* NOTE: In the comments in this file, many references are made to
5494    "Debugging Information Entries".  This term is abbreviated as `DIE'
5495    throughout the remainder of this file.  */
5496
5497 /* An internal representation of the DWARF output is built, and then
5498    walked to generate the DWARF debugging info.  The walk of the internal
5499    representation is done after the entire program has been compiled.
5500    The types below are used to describe the internal representation.  */
5501
5502 /* Various DIE's use offsets relative to the beginning of the
5503    .debug_info section to refer to each other.  */
5504
5505 typedef long int dw_offset;
5506
5507 /* Define typedefs here to avoid circular dependencies.  */
5508
5509 typedef struct dw_attr_struct *dw_attr_ref;
5510 typedef struct dw_line_info_struct *dw_line_info_ref;
5511 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
5512 typedef struct pubname_struct *pubname_ref;
5513 typedef struct dw_ranges_struct *dw_ranges_ref;
5514 typedef struct dw_ranges_by_label_struct *dw_ranges_by_label_ref;
5515 typedef struct comdat_type_struct *comdat_type_node_ref;
5516
5517 /* Each entry in the line_info_table maintains the file and
5518    line number associated with the label generated for that
5519    entry.  The label gives the PC value associated with
5520    the line number entry.  */
5521
5522 typedef struct GTY(()) dw_line_info_struct {
5523   unsigned long dw_file_num;
5524   unsigned long dw_line_num;
5525 }
5526 dw_line_info_entry;
5527
5528 /* Line information for functions in separate sections; each one gets its
5529    own sequence.  */
5530 typedef struct GTY(()) dw_separate_line_info_struct {
5531   unsigned long dw_file_num;
5532   unsigned long dw_line_num;
5533   unsigned long function;
5534 }
5535 dw_separate_line_info_entry;
5536
5537 /* Each DIE attribute has a field specifying the attribute kind,
5538    a link to the next attribute in the chain, and an attribute value.
5539    Attributes are typically linked below the DIE they modify.  */
5540
5541 typedef struct GTY(()) dw_attr_struct {
5542   enum dwarf_attribute dw_attr;
5543   dw_val_node dw_attr_val;
5544 }
5545 dw_attr_node;
5546
5547 DEF_VEC_O(dw_attr_node);
5548 DEF_VEC_ALLOC_O(dw_attr_node,gc);
5549
5550 /* The Debugging Information Entry (DIE) structure.  DIEs form a tree.
5551    The children of each node form a circular list linked by
5552    die_sib.  die_child points to the node *before* the "first" child node.  */
5553
5554 typedef struct GTY((chain_circular ("%h.die_sib"))) die_struct {
5555   enum dwarf_tag die_tag;
5556   union die_symbol_or_type_node
5557     {
5558       char * GTY ((tag ("0"))) die_symbol;
5559       comdat_type_node_ref GTY ((tag ("1"))) die_type_node;
5560     }
5561   GTY ((desc ("dwarf_version >= 4"))) die_id;
5562   VEC(dw_attr_node,gc) * die_attr;
5563   dw_die_ref die_parent;
5564   dw_die_ref die_child;
5565   dw_die_ref die_sib;
5566   dw_die_ref die_definition; /* ref from a specification to its definition */
5567   dw_offset die_offset;
5568   unsigned long die_abbrev;
5569   int die_mark;
5570   /* Die is used and must not be pruned as unused.  */
5571   int die_perennial_p;
5572   unsigned int decl_id;
5573 }
5574 die_node;
5575
5576 /* Evaluate 'expr' while 'c' is set to each child of DIE in order.  */
5577 #define FOR_EACH_CHILD(die, c, expr) do {       \
5578   c = die->die_child;                           \
5579   if (c) do {                                   \
5580     c = c->die_sib;                             \
5581     expr;                                       \
5582   } while (c != die->die_child);                \
5583 } while (0)
5584
5585 /* The pubname structure */
5586
5587 typedef struct GTY(()) pubname_struct {
5588   dw_die_ref die;
5589   const char *name;
5590 }
5591 pubname_entry;
5592
5593 DEF_VEC_O(pubname_entry);
5594 DEF_VEC_ALLOC_O(pubname_entry, gc);
5595
5596 struct GTY(()) dw_ranges_struct {
5597   /* If this is positive, it's a block number, otherwise it's a
5598      bitwise-negated index into dw_ranges_by_label.  */
5599   int num;
5600 };
5601
5602 struct GTY(()) dw_ranges_by_label_struct {
5603   const char *begin;
5604   const char *end;
5605 };
5606
5607 /* The comdat type node structure.  */
5608 typedef struct GTY(()) comdat_type_struct
5609 {
5610   dw_die_ref root_die;
5611   dw_die_ref type_die;
5612   char signature[DWARF_TYPE_SIGNATURE_SIZE];
5613   struct comdat_type_struct *next;
5614 }
5615 comdat_type_node;
5616
5617 /* The limbo die list structure.  */
5618 typedef struct GTY(()) limbo_die_struct {
5619   dw_die_ref die;
5620   tree created_for;
5621   struct limbo_die_struct *next;
5622 }
5623 limbo_die_node;
5624
5625 typedef struct GTY(()) skeleton_chain_struct
5626 {
5627   dw_die_ref old_die;
5628   dw_die_ref new_die;
5629   struct skeleton_chain_struct *parent;
5630 }
5631 skeleton_chain_node;
5632
5633 /* How to start an assembler comment.  */
5634 #ifndef ASM_COMMENT_START
5635 #define ASM_COMMENT_START ";#"
5636 #endif
5637
5638 /* Define a macro which returns nonzero for a TYPE_DECL which was
5639    implicitly generated for a tagged type.
5640
5641    Note that unlike the gcc front end (which generates a NULL named
5642    TYPE_DECL node for each complete tagged type, each array type, and
5643    each function type node created) the g++ front end generates a
5644    _named_ TYPE_DECL node for each tagged type node created.
5645    These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
5646    generate a DW_TAG_typedef DIE for them.  */
5647
5648 #define TYPE_DECL_IS_STUB(decl)                         \
5649   (DECL_NAME (decl) == NULL_TREE                        \
5650    || (DECL_ARTIFICIAL (decl)                           \
5651        && is_tagged_type (TREE_TYPE (decl))             \
5652        && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl)))  \
5653            /* This is necessary for stub decls that     \
5654               appear in nested inline functions.  */    \
5655            || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
5656                && (decl_ultimate_origin (decl)          \
5657                    == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
5658
5659 /* Information concerning the compilation unit's programming
5660    language, and compiler version.  */
5661
5662 /* Fixed size portion of the DWARF compilation unit header.  */
5663 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
5664   (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
5665
5666 /* Fixed size portion of the DWARF comdat type unit header.  */
5667 #define DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE \
5668   (DWARF_COMPILE_UNIT_HEADER_SIZE + DWARF_TYPE_SIGNATURE_SIZE \
5669    + DWARF_OFFSET_SIZE)
5670
5671 /* Fixed size portion of public names info.  */
5672 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
5673
5674 /* Fixed size portion of the address range info.  */
5675 #define DWARF_ARANGES_HEADER_SIZE                                       \
5676   (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4,      \
5677                 DWARF2_ADDR_SIZE * 2)                                   \
5678    - DWARF_INITIAL_LENGTH_SIZE)
5679
5680 /* Size of padding portion in the address range info.  It must be
5681    aligned to twice the pointer size.  */
5682 #define DWARF_ARANGES_PAD_SIZE \
5683   (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
5684                 DWARF2_ADDR_SIZE * 2)                              \
5685    - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
5686
5687 /* Use assembler line directives if available.  */
5688 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
5689 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
5690 #define DWARF2_ASM_LINE_DEBUG_INFO 1
5691 #else
5692 #define DWARF2_ASM_LINE_DEBUG_INFO 0
5693 #endif
5694 #endif
5695
5696 /* Minimum line offset in a special line info. opcode.
5697    This value was chosen to give a reasonable range of values.  */
5698 #define DWARF_LINE_BASE  -10
5699
5700 /* First special line opcode - leave room for the standard opcodes.  */
5701 #define DWARF_LINE_OPCODE_BASE  10
5702
5703 /* Range of line offsets in a special line info. opcode.  */
5704 #define DWARF_LINE_RANGE  (254-DWARF_LINE_OPCODE_BASE+1)
5705
5706 /* Flag that indicates the initial value of the is_stmt_start flag.
5707    In the present implementation, we do not mark any lines as
5708    the beginning of a source statement, because that information
5709    is not made available by the GCC front-end.  */
5710 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
5711
5712 /* Maximum number of operations per instruction bundle.  */
5713 #ifndef DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
5714 #define DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN 1
5715 #endif
5716
5717 #ifdef DWARF2_DEBUGGING_INFO
5718 /* This location is used by calc_die_sizes() to keep track
5719    the offset of each DIE within the .debug_info section.  */
5720 static unsigned long next_die_offset;
5721 #endif
5722
5723 /* Record the root of the DIE's built for the current compilation unit.  */
5724 static GTY(()) dw_die_ref comp_unit_die;
5725
5726 /* A list of type DIEs that have been separated into comdat sections.  */
5727 static GTY(()) comdat_type_node *comdat_type_list;
5728
5729 /* A list of DIEs with a NULL parent waiting to be relocated.  */
5730 static GTY(()) limbo_die_node *limbo_die_list;
5731
5732 /* A list of DIEs for which we may have to generate
5733    DW_AT_{,MIPS_}linkage_name once their DECL_ASSEMBLER_NAMEs are set.  */
5734 static GTY(()) limbo_die_node *deferred_asm_name;
5735
5736 /* Filenames referenced by this compilation unit.  */
5737 static GTY((param_is (struct dwarf_file_data))) htab_t file_table;
5738
5739 /* A hash table of references to DIE's that describe declarations.
5740    The key is a DECL_UID() which is a unique number identifying each decl.  */
5741 static GTY ((param_is (struct die_struct))) htab_t decl_die_table;
5742
5743 /* A hash table of references to DIE's that describe COMMON blocks.
5744    The key is DECL_UID() ^ die_parent.  */
5745 static GTY ((param_is (struct die_struct))) htab_t common_block_die_table;
5746
5747 typedef struct GTY(()) die_arg_entry_struct {
5748     dw_die_ref die;
5749     tree arg;
5750 } die_arg_entry;
5751
5752 DEF_VEC_O(die_arg_entry);
5753 DEF_VEC_ALLOC_O(die_arg_entry,gc);
5754
5755 /* Node of the variable location list.  */
5756 struct GTY ((chain_next ("%h.next"))) var_loc_node {
5757   /* Either NOTE_INSN_VAR_LOCATION, or, for SRA optimized variables,
5758      EXPR_LIST chain.  For small bitsizes, bitsize is encoded
5759      in mode of the EXPR_LIST node and first EXPR_LIST operand
5760      is either NOTE_INSN_VAR_LOCATION for a piece with a known
5761      location or NULL for padding.  For larger bitsizes,
5762      mode is 0 and first operand is a CONCAT with bitsize
5763      as first CONCAT operand and NOTE_INSN_VAR_LOCATION resp.
5764      NULL as second operand.  */
5765   rtx GTY (()) loc;
5766   const char * GTY (()) label;
5767   struct var_loc_node * GTY (()) next;
5768 };
5769
5770 /* Variable location list.  */
5771 struct GTY (()) var_loc_list_def {
5772   struct var_loc_node * GTY (()) first;
5773
5774   /* Pointer to the last but one or last element of the
5775      chained list.  If the list is empty, both first and
5776      last are NULL, if the list contains just one node
5777      or the last node certainly is not redundant, it points
5778      to the last node, otherwise points to the last but one.
5779      Do not mark it for GC because it is marked through the chain.  */
5780   struct var_loc_node * GTY ((skip ("%h"))) last;
5781
5782   /* DECL_UID of the variable decl.  */
5783   unsigned int decl_id;
5784 };
5785 typedef struct var_loc_list_def var_loc_list;
5786
5787
5788 /* Table of decl location linked lists.  */
5789 static GTY ((param_is (var_loc_list))) htab_t decl_loc_table;
5790
5791 /* A pointer to the base of a list of references to DIE's that
5792    are uniquely identified by their tag, presence/absence of
5793    children DIE's, and list of attribute/value pairs.  */
5794 static GTY((length ("abbrev_die_table_allocated")))
5795   dw_die_ref *abbrev_die_table;
5796
5797 /* Number of elements currently allocated for abbrev_die_table.  */
5798 static GTY(()) unsigned abbrev_die_table_allocated;
5799
5800 /* Number of elements in type_die_table currently in use.  */
5801 static GTY(()) unsigned abbrev_die_table_in_use;
5802
5803 /* Size (in elements) of increments by which we may expand the
5804    abbrev_die_table.  */
5805 #define ABBREV_DIE_TABLE_INCREMENT 256
5806
5807 /* A pointer to the base of a table that contains line information
5808    for each source code line in .text in the compilation unit.  */
5809 static GTY((length ("line_info_table_allocated")))
5810      dw_line_info_ref line_info_table;
5811
5812 /* Number of elements currently allocated for line_info_table.  */
5813 static GTY(()) unsigned line_info_table_allocated;
5814
5815 /* Number of elements in line_info_table currently in use.  */
5816 static GTY(()) unsigned line_info_table_in_use;
5817
5818 /* A pointer to the base of a table that contains line information
5819    for each source code line outside of .text in the compilation unit.  */
5820 static GTY ((length ("separate_line_info_table_allocated")))
5821      dw_separate_line_info_ref separate_line_info_table;
5822
5823 /* Number of elements currently allocated for separate_line_info_table.  */
5824 static GTY(()) unsigned separate_line_info_table_allocated;
5825
5826 /* Number of elements in separate_line_info_table currently in use.  */
5827 static GTY(()) unsigned separate_line_info_table_in_use;
5828
5829 /* Size (in elements) of increments by which we may expand the
5830    line_info_table.  */
5831 #define LINE_INFO_TABLE_INCREMENT 1024
5832
5833 /* A pointer to the base of a table that contains a list of publicly
5834    accessible names.  */
5835 static GTY (()) VEC (pubname_entry, gc) *  pubname_table;
5836
5837 /* A pointer to the base of a table that contains a list of publicly
5838    accessible types.  */
5839 static GTY (()) VEC (pubname_entry, gc) * pubtype_table;
5840
5841 /* Array of dies for which we should generate .debug_arange info.  */
5842 static GTY((length ("arange_table_allocated"))) dw_die_ref *arange_table;
5843
5844 /* Number of elements currently allocated for arange_table.  */
5845 static GTY(()) unsigned arange_table_allocated;
5846
5847 /* Number of elements in arange_table currently in use.  */
5848 static GTY(()) unsigned arange_table_in_use;
5849
5850 /* Size (in elements) of increments by which we may expand the
5851    arange_table.  */
5852 #define ARANGE_TABLE_INCREMENT 64
5853
5854 /* Array of dies for which we should generate .debug_ranges info.  */
5855 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table;
5856
5857 /* Number of elements currently allocated for ranges_table.  */
5858 static GTY(()) unsigned ranges_table_allocated;
5859
5860 /* Number of elements in ranges_table currently in use.  */
5861 static GTY(()) unsigned ranges_table_in_use;
5862
5863 /* Array of pairs of labels referenced in ranges_table.  */
5864 static GTY ((length ("ranges_by_label_allocated")))
5865      dw_ranges_by_label_ref ranges_by_label;
5866
5867 /* Number of elements currently allocated for ranges_by_label.  */
5868 static GTY(()) unsigned ranges_by_label_allocated;
5869
5870 /* Number of elements in ranges_by_label currently in use.  */
5871 static GTY(()) unsigned ranges_by_label_in_use;
5872
5873 /* Size (in elements) of increments by which we may expand the
5874    ranges_table.  */
5875 #define RANGES_TABLE_INCREMENT 64
5876
5877 /* Whether we have location lists that need outputting */
5878 static GTY(()) bool have_location_lists;
5879
5880 /* Unique label counter.  */
5881 static GTY(()) unsigned int loclabel_num;
5882
5883 /* Unique label counter for point-of-call tables.  */
5884 static GTY(()) unsigned int poc_label_num;
5885
5886 /* The direct call table structure.  */
5887
5888 typedef struct GTY(()) dcall_struct {
5889   unsigned int poc_label_num;
5890   tree poc_decl;
5891   dw_die_ref targ_die;
5892 }
5893 dcall_entry;
5894
5895 DEF_VEC_O(dcall_entry);
5896 DEF_VEC_ALLOC_O(dcall_entry, gc);
5897
5898 /* The virtual call table structure.  */
5899
5900 typedef struct GTY(()) vcall_struct {
5901   unsigned int poc_label_num;
5902   unsigned int vtable_slot;
5903 }
5904 vcall_entry;
5905
5906 DEF_VEC_O(vcall_entry);
5907 DEF_VEC_ALLOC_O(vcall_entry, gc);
5908
5909 /* Pointers to the direct and virtual call tables.  */
5910 static GTY (()) VEC (dcall_entry, gc) * dcall_table = NULL;
5911 static GTY (()) VEC (vcall_entry, gc) * vcall_table = NULL;
5912
5913 /* A hash table to map INSN_UIDs to vtable slot indexes.  */
5914
5915 struct GTY (()) vcall_insn {
5916   int insn_uid;
5917   unsigned int vtable_slot;
5918 };
5919
5920 static GTY ((param_is (struct vcall_insn))) htab_t vcall_insn_table;
5921
5922 #ifdef DWARF2_DEBUGGING_INFO
5923 /* Record whether the function being analyzed contains inlined functions.  */
5924 static int current_function_has_inlines;
5925 #endif
5926 #if 0 && defined (MIPS_DEBUGGING_INFO)
5927 static int comp_unit_has_inlines;
5928 #endif
5929
5930 /* The last file entry emitted by maybe_emit_file().  */
5931 static GTY(()) struct dwarf_file_data * last_emitted_file;
5932
5933 /* Number of internal labels generated by gen_internal_sym().  */
5934 static GTY(()) int label_num;
5935
5936 /* Cached result of previous call to lookup_filename.  */
5937 static GTY(()) struct dwarf_file_data * file_table_last_lookup;
5938
5939 static GTY(()) VEC(die_arg_entry,gc) *tmpl_value_parm_die_table;
5940
5941 #ifdef DWARF2_DEBUGGING_INFO
5942
5943 /* Offset from the "steady-state frame pointer" to the frame base,
5944    within the current function.  */
5945 static HOST_WIDE_INT frame_pointer_fb_offset;
5946
5947 /* Forward declarations for functions defined in this file.  */
5948
5949 static int is_pseudo_reg (const_rtx);
5950 static tree type_main_variant (tree);
5951 static int is_tagged_type (const_tree);
5952 static const char *dwarf_tag_name (unsigned);
5953 static const char *dwarf_attr_name (unsigned);
5954 static const char *dwarf_form_name (unsigned);
5955 static tree decl_ultimate_origin (const_tree);
5956 static tree decl_class_context (tree);
5957 static void add_dwarf_attr (dw_die_ref, dw_attr_ref);
5958 static inline enum dw_val_class AT_class (dw_attr_ref);
5959 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
5960 static inline unsigned AT_flag (dw_attr_ref);
5961 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
5962 static inline HOST_WIDE_INT AT_int (dw_attr_ref);
5963 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
5964 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_ref);
5965 static void add_AT_double (dw_die_ref, enum dwarf_attribute,
5966                            HOST_WIDE_INT, unsigned HOST_WIDE_INT);
5967 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
5968                                unsigned int, unsigned char *);
5969 static void add_AT_data8 (dw_die_ref, enum dwarf_attribute, unsigned char *);
5970 static hashval_t debug_str_do_hash (const void *);
5971 static int debug_str_eq (const void *, const void *);
5972 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
5973 static inline const char *AT_string (dw_attr_ref);
5974 static enum dwarf_form AT_string_form (dw_attr_ref);
5975 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
5976 static void add_AT_specification (dw_die_ref, dw_die_ref);
5977 static inline dw_die_ref AT_ref (dw_attr_ref);
5978 static inline int AT_ref_external (dw_attr_ref);
5979 static inline void set_AT_ref_external (dw_attr_ref, int);
5980 static void add_AT_fde_ref (dw_die_ref, enum dwarf_attribute, unsigned);
5981 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
5982 static inline dw_loc_descr_ref AT_loc (dw_attr_ref);
5983 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
5984                              dw_loc_list_ref);
5985 static inline dw_loc_list_ref AT_loc_list (dw_attr_ref);
5986 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx);
5987 static inline rtx AT_addr (dw_attr_ref);
5988 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
5989 static void add_AT_lineptr (dw_die_ref, enum dwarf_attribute, const char *);
5990 static void add_AT_macptr (dw_die_ref, enum dwarf_attribute, const char *);
5991 static void add_AT_offset (dw_die_ref, enum dwarf_attribute,
5992                            unsigned HOST_WIDE_INT);
5993 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
5994                                unsigned long);
5995 static inline const char *AT_lbl (dw_attr_ref);
5996 static dw_attr_ref get_AT (dw_die_ref, enum dwarf_attribute);
5997 static const char *get_AT_low_pc (dw_die_ref);
5998 static const char *get_AT_hi_pc (dw_die_ref);
5999 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
6000 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
6001 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
6002 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
6003 static bool is_cxx (void);
6004 static bool is_fortran (void);
6005 static bool is_ada (void);
6006 static void remove_AT (dw_die_ref, enum dwarf_attribute);
6007 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
6008 static void add_child_die (dw_die_ref, dw_die_ref);
6009 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
6010 static dw_die_ref lookup_type_die (tree);
6011 static void equate_type_number_to_die (tree, dw_die_ref);
6012 static hashval_t decl_die_table_hash (const void *);
6013 static int decl_die_table_eq (const void *, const void *);
6014 static dw_die_ref lookup_decl_die (tree);
6015 static hashval_t common_block_die_table_hash (const void *);
6016 static int common_block_die_table_eq (const void *, const void *);
6017 static hashval_t decl_loc_table_hash (const void *);
6018 static int decl_loc_table_eq (const void *, const void *);
6019 static var_loc_list *lookup_decl_loc (const_tree);
6020 static void equate_decl_number_to_die (tree, dw_die_ref);
6021 static struct var_loc_node *add_var_loc_to_decl (tree, rtx, const char *);
6022 static void print_spaces (FILE *);
6023 static void print_die (dw_die_ref, FILE *);
6024 static void print_dwarf_line_table (FILE *);
6025 static dw_die_ref push_new_compile_unit (dw_die_ref, dw_die_ref);
6026 static dw_die_ref pop_compile_unit (dw_die_ref);
6027 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
6028 static void attr_checksum (dw_attr_ref, struct md5_ctx *, int *);
6029 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
6030 static void checksum_sleb128 (HOST_WIDE_INT, struct md5_ctx *);
6031 static void checksum_uleb128 (unsigned HOST_WIDE_INT, struct md5_ctx *);
6032 static void loc_checksum_ordered (dw_loc_descr_ref, struct md5_ctx *);
6033 static void attr_checksum_ordered (enum dwarf_tag, dw_attr_ref,
6034                                    struct md5_ctx *, int *);
6035 struct checksum_attributes;
6036 static void collect_checksum_attributes (struct checksum_attributes *, dw_die_ref);
6037 static void die_checksum_ordered (dw_die_ref, struct md5_ctx *, int *);
6038 static void checksum_die_context (dw_die_ref, struct md5_ctx *);
6039 static void generate_type_signature (dw_die_ref, comdat_type_node *);
6040 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
6041 static int same_dw_val_p (const dw_val_node *, const dw_val_node *, int *);
6042 static int same_attr_p (dw_attr_ref, dw_attr_ref, int *);
6043 static int same_die_p (dw_die_ref, dw_die_ref, int *);
6044 static int same_die_p_wrap (dw_die_ref, dw_die_ref);
6045 static void compute_section_prefix (dw_die_ref);
6046 static int is_type_die (dw_die_ref);
6047 static int is_comdat_die (dw_die_ref);
6048 static int is_symbol_die (dw_die_ref);
6049 static void assign_symbol_names (dw_die_ref);
6050 static void break_out_includes (dw_die_ref);
6051 static int is_declaration_die (dw_die_ref);
6052 static int should_move_die_to_comdat (dw_die_ref);
6053 static dw_die_ref clone_as_declaration (dw_die_ref);
6054 static dw_die_ref clone_die (dw_die_ref);
6055 static dw_die_ref clone_tree (dw_die_ref);
6056 static void copy_declaration_context (dw_die_ref, dw_die_ref);
6057 static void generate_skeleton_ancestor_tree (skeleton_chain_node *);
6058 static void generate_skeleton_bottom_up (skeleton_chain_node *);
6059 static dw_die_ref generate_skeleton (dw_die_ref);
6060 static dw_die_ref remove_child_or_replace_with_skeleton (dw_die_ref,
6061                                                          dw_die_ref);
6062 static void break_out_comdat_types (dw_die_ref);
6063 static dw_die_ref copy_ancestor_tree (dw_die_ref, dw_die_ref, htab_t);
6064 static void copy_decls_walk (dw_die_ref, dw_die_ref, htab_t);
6065 static void copy_decls_for_unworthy_types (dw_die_ref);
6066
6067 static hashval_t htab_cu_hash (const void *);
6068 static int htab_cu_eq (const void *, const void *);
6069 static void htab_cu_del (void *);
6070 static int check_duplicate_cu (dw_die_ref, htab_t, unsigned *);
6071 static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
6072 static void add_sibling_attributes (dw_die_ref);
6073 static void build_abbrev_table (dw_die_ref);
6074 static void output_location_lists (dw_die_ref);
6075 static int constant_size (unsigned HOST_WIDE_INT);
6076 static unsigned long size_of_die (dw_die_ref);
6077 static void calc_die_sizes (dw_die_ref);
6078 static void mark_dies (dw_die_ref);
6079 static void unmark_dies (dw_die_ref);
6080 static void unmark_all_dies (dw_die_ref);
6081 static unsigned long size_of_pubnames (VEC (pubname_entry,gc) *);
6082 static unsigned long size_of_aranges (void);
6083 static enum dwarf_form value_format (dw_attr_ref);
6084 static void output_value_format (dw_attr_ref);
6085 static void output_abbrev_section (void);
6086 static void output_die_symbol (dw_die_ref);
6087 static void output_die (dw_die_ref);
6088 static void output_compilation_unit_header (void);
6089 static void output_comp_unit (dw_die_ref, int);
6090 static void output_comdat_type_unit (comdat_type_node *);
6091 static const char *dwarf2_name (tree, int);
6092 static void add_pubname (tree, dw_die_ref);
6093 static void add_pubname_string (const char *, dw_die_ref);
6094 static void add_pubtype (tree, dw_die_ref);
6095 static void output_pubnames (VEC (pubname_entry,gc) *);
6096 static void add_arange (tree, dw_die_ref);
6097 static void output_aranges (void);
6098 static unsigned int add_ranges_num (int);
6099 static unsigned int add_ranges (const_tree);
6100 static void add_ranges_by_labels (dw_die_ref, const char *, const char *,
6101                                   bool *);
6102 static void output_ranges (void);
6103 static void output_line_info (void);
6104 static void output_file_names (void);
6105 static dw_die_ref base_type_die (tree);
6106 static int is_base_type (tree);
6107 static dw_die_ref subrange_type_die (tree, tree, tree, dw_die_ref);
6108 static dw_die_ref modified_type_die (tree, int, int, dw_die_ref);
6109 static dw_die_ref generic_parameter_die (tree, tree, bool, dw_die_ref);
6110 static dw_die_ref template_parameter_pack_die (tree, tree, dw_die_ref);
6111 static int type_is_enum (const_tree);
6112 static unsigned int dbx_reg_number (const_rtx);
6113 static void add_loc_descr_op_piece (dw_loc_descr_ref *, int);
6114 static dw_loc_descr_ref reg_loc_descriptor (rtx, enum var_init_status);
6115 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int,
6116                                                 enum var_init_status);
6117 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx,
6118                                                      enum var_init_status);
6119 static dw_loc_descr_ref based_loc_descr (rtx, HOST_WIDE_INT,
6120                                          enum var_init_status);
6121 static int is_based_loc (const_rtx);
6122 static int resolve_one_addr (rtx *, void *);
6123 static dw_loc_descr_ref mem_loc_descriptor (rtx, enum machine_mode mode,
6124                                             enum var_init_status);
6125 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx,
6126                                                enum var_init_status);
6127 static dw_loc_descr_ref loc_descriptor (rtx, enum machine_mode mode,
6128                                         enum var_init_status);
6129 static dw_loc_list_ref loc_list_from_tree (tree, int);
6130 static dw_loc_descr_ref loc_descriptor_from_tree (tree, int);
6131 static HOST_WIDE_INT ceiling (HOST_WIDE_INT, unsigned int);
6132 static tree field_type (const_tree);
6133 static unsigned int simple_type_align_in_bits (const_tree);
6134 static unsigned int simple_decl_align_in_bits (const_tree);
6135 static unsigned HOST_WIDE_INT simple_type_size_in_bits (const_tree);
6136 static HOST_WIDE_INT field_byte_offset (const_tree);
6137 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
6138                                          dw_loc_list_ref);
6139 static void add_data_member_location_attribute (dw_die_ref, tree);
6140 static bool add_const_value_attribute (dw_die_ref, rtx);
6141 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
6142 static void insert_double (double_int, unsigned char *);
6143 static void insert_float (const_rtx, unsigned char *);
6144 static rtx rtl_for_decl_location (tree);
6145 static bool add_location_or_const_value_attribute (dw_die_ref, tree,
6146                                                    enum dwarf_attribute);
6147 static bool tree_add_const_value_attribute (dw_die_ref, tree);
6148 static bool tree_add_const_value_attribute_for_decl (dw_die_ref, tree);
6149 static void add_name_attribute (dw_die_ref, const char *);
6150 static void add_comp_dir_attribute (dw_die_ref);
6151 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree);
6152 static void add_subscript_info (dw_die_ref, tree, bool);
6153 static void add_byte_size_attribute (dw_die_ref, tree);
6154 static void add_bit_offset_attribute (dw_die_ref, tree);
6155 static void add_bit_size_attribute (dw_die_ref, tree);
6156 static void add_prototyped_attribute (dw_die_ref, tree);
6157 static dw_die_ref add_abstract_origin_attribute (dw_die_ref, tree);
6158 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
6159 static void add_src_coords_attributes (dw_die_ref, tree);
6160 static void add_name_and_src_coords_attributes (dw_die_ref, tree);
6161 static void push_decl_scope (tree);
6162 static void pop_decl_scope (void);
6163 static dw_die_ref scope_die_for (tree, dw_die_ref);
6164 static inline int local_scope_p (dw_die_ref);
6165 static inline int class_scope_p (dw_die_ref);
6166 static inline int class_or_namespace_scope_p (dw_die_ref);
6167 static void add_type_attribute (dw_die_ref, tree, int, int, dw_die_ref);
6168 static void add_calling_convention_attribute (dw_die_ref, tree);
6169 static const char *type_tag (const_tree);
6170 static tree member_declared_type (const_tree);
6171 #if 0
6172 static const char *decl_start_label (tree);
6173 #endif
6174 static void gen_array_type_die (tree, dw_die_ref);
6175 static void gen_descr_array_type_die (tree, struct array_descr_info *, dw_die_ref);
6176 #if 0
6177 static void gen_entry_point_die (tree, dw_die_ref);
6178 #endif
6179 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
6180 static dw_die_ref gen_formal_parameter_die (tree, tree, bool, dw_die_ref);
6181 static dw_die_ref gen_formal_parameter_pack_die  (tree, tree, dw_die_ref, tree*);
6182 static void gen_unspecified_parameters_die (tree, dw_die_ref);
6183 static void gen_formal_types_die (tree, dw_die_ref);
6184 static void gen_subprogram_die (tree, dw_die_ref);
6185 static void gen_variable_die (tree, tree, dw_die_ref);
6186 static void gen_const_die (tree, dw_die_ref);
6187 static void gen_label_die (tree, dw_die_ref);
6188 static void gen_lexical_block_die (tree, dw_die_ref, int);
6189 static void gen_inlined_subroutine_die (tree, dw_die_ref, int);
6190 static void gen_field_die (tree, dw_die_ref);
6191 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
6192 static dw_die_ref gen_compile_unit_die (const char *);
6193 static void gen_inheritance_die (tree, tree, dw_die_ref);
6194 static void gen_member_die (tree, dw_die_ref);
6195 static void gen_struct_or_union_type_die (tree, dw_die_ref,
6196                                                 enum debug_info_usage);
6197 static void gen_subroutine_type_die (tree, dw_die_ref);
6198 static void gen_typedef_die (tree, dw_die_ref);
6199 static void gen_type_die (tree, dw_die_ref);
6200 static void gen_block_die (tree, dw_die_ref, int);
6201 static void decls_for_scope (tree, dw_die_ref, int);
6202 static int is_redundant_typedef (const_tree);
6203 static inline dw_die_ref get_context_die (tree);
6204 static void gen_namespace_die (tree, dw_die_ref);
6205 static void gen_decl_die (tree, tree, dw_die_ref);
6206 static dw_die_ref force_decl_die (tree);
6207 static dw_die_ref force_type_die (tree);
6208 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
6209 static dw_die_ref declare_in_namespace (tree, dw_die_ref);
6210 static struct dwarf_file_data * lookup_filename (const char *);
6211 static void retry_incomplete_types (void);
6212 static void gen_type_die_for_member (tree, tree, dw_die_ref);
6213 static void gen_generic_params_dies (tree);
6214 static void splice_child_die (dw_die_ref, dw_die_ref);
6215 static int file_info_cmp (const void *, const void *);
6216 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *,
6217                                      const char *, const char *);
6218 static void output_loc_list (dw_loc_list_ref);
6219 static char *gen_internal_sym (const char *);
6220
6221 static void prune_unmark_dies (dw_die_ref);
6222 static void prune_unused_types_mark (dw_die_ref, int);
6223 static void prune_unused_types_walk (dw_die_ref);
6224 static void prune_unused_types_walk_attribs (dw_die_ref);
6225 static void prune_unused_types_prune (dw_die_ref);
6226 static void prune_unused_types (void);
6227 static int maybe_emit_file (struct dwarf_file_data *fd);
6228 static void append_entry_to_tmpl_value_parm_die_table (dw_die_ref, tree);
6229 static void gen_remaining_tmpl_value_param_die_attribute (void);
6230
6231 /* Section names used to hold DWARF debugging information.  */
6232 #ifndef DEBUG_INFO_SECTION
6233 #define DEBUG_INFO_SECTION      ".debug_info"
6234 #endif
6235 #ifndef DEBUG_ABBREV_SECTION
6236 #define DEBUG_ABBREV_SECTION    ".debug_abbrev"
6237 #endif
6238 #ifndef DEBUG_ARANGES_SECTION
6239 #define DEBUG_ARANGES_SECTION   ".debug_aranges"
6240 #endif
6241 #ifndef DEBUG_MACINFO_SECTION
6242 #define DEBUG_MACINFO_SECTION   ".debug_macinfo"
6243 #endif
6244 #ifndef DEBUG_LINE_SECTION
6245 #define DEBUG_LINE_SECTION      ".debug_line"
6246 #endif
6247 #ifndef DEBUG_LOC_SECTION
6248 #define DEBUG_LOC_SECTION       ".debug_loc"
6249 #endif
6250 #ifndef DEBUG_PUBNAMES_SECTION
6251 #define DEBUG_PUBNAMES_SECTION  ".debug_pubnames"
6252 #endif
6253 #ifndef DEBUG_PUBTYPES_SECTION
6254 #define DEBUG_PUBTYPES_SECTION  ".debug_pubtypes"
6255 #endif
6256 #ifndef DEBUG_DCALL_SECTION
6257 #define DEBUG_DCALL_SECTION     ".debug_dcall"
6258 #endif
6259 #ifndef DEBUG_VCALL_SECTION
6260 #define DEBUG_VCALL_SECTION     ".debug_vcall"
6261 #endif
6262 #ifndef DEBUG_STR_SECTION
6263 #define DEBUG_STR_SECTION       ".debug_str"
6264 #endif
6265 #ifndef DEBUG_RANGES_SECTION
6266 #define DEBUG_RANGES_SECTION    ".debug_ranges"
6267 #endif
6268
6269 /* Standard ELF section names for compiled code and data.  */
6270 #ifndef TEXT_SECTION_NAME
6271 #define TEXT_SECTION_NAME       ".text"
6272 #endif
6273
6274 /* Section flags for .debug_str section.  */
6275 #define DEBUG_STR_SECTION_FLAGS \
6276   (HAVE_GAS_SHF_MERGE && flag_merge_debug_strings               \
6277    ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1        \
6278    : SECTION_DEBUG)
6279
6280 /* Labels we insert at beginning sections we can reference instead of
6281    the section names themselves.  */
6282
6283 #ifndef TEXT_SECTION_LABEL
6284 #define TEXT_SECTION_LABEL              "Ltext"
6285 #endif
6286 #ifndef COLD_TEXT_SECTION_LABEL
6287 #define COLD_TEXT_SECTION_LABEL         "Ltext_cold"
6288 #endif
6289 #ifndef DEBUG_LINE_SECTION_LABEL
6290 #define DEBUG_LINE_SECTION_LABEL        "Ldebug_line"
6291 #endif
6292 #ifndef DEBUG_INFO_SECTION_LABEL
6293 #define DEBUG_INFO_SECTION_LABEL        "Ldebug_info"
6294 #endif
6295 #ifndef DEBUG_ABBREV_SECTION_LABEL
6296 #define DEBUG_ABBREV_SECTION_LABEL      "Ldebug_abbrev"
6297 #endif
6298 #ifndef DEBUG_LOC_SECTION_LABEL
6299 #define DEBUG_LOC_SECTION_LABEL         "Ldebug_loc"
6300 #endif
6301 #ifndef DEBUG_RANGES_SECTION_LABEL
6302 #define DEBUG_RANGES_SECTION_LABEL      "Ldebug_ranges"
6303 #endif
6304 #ifndef DEBUG_MACINFO_SECTION_LABEL
6305 #define DEBUG_MACINFO_SECTION_LABEL     "Ldebug_macinfo"
6306 #endif
6307
6308 /* Mangled name attribute to use.  This used to be a vendor extension
6309    until DWARF 4 standardized it.  */
6310 #define AT_linkage_name \
6311   (dwarf_version >= 4 ? DW_AT_linkage_name : DW_AT_MIPS_linkage_name)
6312
6313
6314 /* Definitions of defaults for formats and names of various special
6315    (artificial) labels which may be generated within this file (when the -g
6316    options is used and DWARF2_DEBUGGING_INFO is in effect.
6317    If necessary, these may be overridden from within the tm.h file, but
6318    typically, overriding these defaults is unnecessary.  */
6319
6320 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
6321 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6322 static char cold_text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6323 static char cold_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
6324 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6325 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6326 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6327 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6328 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6329 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
6330
6331 #ifndef TEXT_END_LABEL
6332 #define TEXT_END_LABEL          "Letext"
6333 #endif
6334 #ifndef COLD_END_LABEL
6335 #define COLD_END_LABEL          "Letext_cold"
6336 #endif
6337 #ifndef BLOCK_BEGIN_LABEL
6338 #define BLOCK_BEGIN_LABEL       "LBB"
6339 #endif
6340 #ifndef BLOCK_END_LABEL
6341 #define BLOCK_END_LABEL         "LBE"
6342 #endif
6343 #ifndef LINE_CODE_LABEL
6344 #define LINE_CODE_LABEL         "LM"
6345 #endif
6346 #ifndef SEPARATE_LINE_CODE_LABEL
6347 #define SEPARATE_LINE_CODE_LABEL        "LSM"
6348 #endif
6349
6350 \f
6351 /* We allow a language front-end to designate a function that is to be
6352    called to "demangle" any name before it is put into a DIE.  */
6353
6354 static const char *(*demangle_name_func) (const char *);
6355
6356 void
6357 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
6358 {
6359   demangle_name_func = func;
6360 }
6361
6362 /* Test if rtl node points to a pseudo register.  */
6363
6364 static inline int
6365 is_pseudo_reg (const_rtx rtl)
6366 {
6367   return ((REG_P (rtl) && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
6368           || (GET_CODE (rtl) == SUBREG
6369               && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
6370 }
6371
6372 /* Return a reference to a type, with its const and volatile qualifiers
6373    removed.  */
6374
6375 static inline tree
6376 type_main_variant (tree type)
6377 {
6378   type = TYPE_MAIN_VARIANT (type);
6379
6380   /* ??? There really should be only one main variant among any group of
6381      variants of a given type (and all of the MAIN_VARIANT values for all
6382      members of the group should point to that one type) but sometimes the C
6383      front-end messes this up for array types, so we work around that bug
6384      here.  */
6385   if (TREE_CODE (type) == ARRAY_TYPE)
6386     while (type != TYPE_MAIN_VARIANT (type))
6387       type = TYPE_MAIN_VARIANT (type);
6388
6389   return type;
6390 }
6391
6392 /* Return nonzero if the given type node represents a tagged type.  */
6393
6394 static inline int
6395 is_tagged_type (const_tree type)
6396 {
6397   enum tree_code code = TREE_CODE (type);
6398
6399   return (code == RECORD_TYPE || code == UNION_TYPE
6400           || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
6401 }
6402
6403 /* Convert a DIE tag into its string name.  */
6404
6405 static const char *
6406 dwarf_tag_name (unsigned int tag)
6407 {
6408   switch (tag)
6409     {
6410     case DW_TAG_padding:
6411       return "DW_TAG_padding";
6412     case DW_TAG_array_type:
6413       return "DW_TAG_array_type";
6414     case DW_TAG_class_type:
6415       return "DW_TAG_class_type";
6416     case DW_TAG_entry_point:
6417       return "DW_TAG_entry_point";
6418     case DW_TAG_enumeration_type:
6419       return "DW_TAG_enumeration_type";
6420     case DW_TAG_formal_parameter:
6421       return "DW_TAG_formal_parameter";
6422     case DW_TAG_imported_declaration:
6423       return "DW_TAG_imported_declaration";
6424     case DW_TAG_label:
6425       return "DW_TAG_label";
6426     case DW_TAG_lexical_block:
6427       return "DW_TAG_lexical_block";
6428     case DW_TAG_member:
6429       return "DW_TAG_member";
6430     case DW_TAG_pointer_type:
6431       return "DW_TAG_pointer_type";
6432     case DW_TAG_reference_type:
6433       return "DW_TAG_reference_type";
6434     case DW_TAG_compile_unit:
6435       return "DW_TAG_compile_unit";
6436     case DW_TAG_string_type:
6437       return "DW_TAG_string_type";
6438     case DW_TAG_structure_type:
6439       return "DW_TAG_structure_type";
6440     case DW_TAG_subroutine_type:
6441       return "DW_TAG_subroutine_type";
6442     case DW_TAG_typedef:
6443       return "DW_TAG_typedef";
6444     case DW_TAG_union_type:
6445       return "DW_TAG_union_type";
6446     case DW_TAG_unspecified_parameters:
6447       return "DW_TAG_unspecified_parameters";
6448     case DW_TAG_variant:
6449       return "DW_TAG_variant";
6450     case DW_TAG_common_block:
6451       return "DW_TAG_common_block";
6452     case DW_TAG_common_inclusion:
6453       return "DW_TAG_common_inclusion";
6454     case DW_TAG_inheritance:
6455       return "DW_TAG_inheritance";
6456     case DW_TAG_inlined_subroutine:
6457       return "DW_TAG_inlined_subroutine";
6458     case DW_TAG_module:
6459       return "DW_TAG_module";
6460     case DW_TAG_ptr_to_member_type:
6461       return "DW_TAG_ptr_to_member_type";
6462     case DW_TAG_set_type:
6463       return "DW_TAG_set_type";
6464     case DW_TAG_subrange_type:
6465       return "DW_TAG_subrange_type";
6466     case DW_TAG_with_stmt:
6467       return "DW_TAG_with_stmt";
6468     case DW_TAG_access_declaration:
6469       return "DW_TAG_access_declaration";
6470     case DW_TAG_base_type:
6471       return "DW_TAG_base_type";
6472     case DW_TAG_catch_block:
6473       return "DW_TAG_catch_block";
6474     case DW_TAG_const_type:
6475       return "DW_TAG_const_type";
6476     case DW_TAG_constant:
6477       return "DW_TAG_constant";
6478     case DW_TAG_enumerator:
6479       return "DW_TAG_enumerator";
6480     case DW_TAG_file_type:
6481       return "DW_TAG_file_type";
6482     case DW_TAG_friend:
6483       return "DW_TAG_friend";
6484     case DW_TAG_namelist:
6485       return "DW_TAG_namelist";
6486     case DW_TAG_namelist_item:
6487       return "DW_TAG_namelist_item";
6488     case DW_TAG_packed_type:
6489       return "DW_TAG_packed_type";
6490     case DW_TAG_subprogram:
6491       return "DW_TAG_subprogram";
6492     case DW_TAG_template_type_param:
6493       return "DW_TAG_template_type_param";
6494     case DW_TAG_template_value_param:
6495       return "DW_TAG_template_value_param";
6496     case DW_TAG_thrown_type:
6497       return "DW_TAG_thrown_type";
6498     case DW_TAG_try_block:
6499       return "DW_TAG_try_block";
6500     case DW_TAG_variant_part:
6501       return "DW_TAG_variant_part";
6502     case DW_TAG_variable:
6503       return "DW_TAG_variable";
6504     case DW_TAG_volatile_type:
6505       return "DW_TAG_volatile_type";
6506     case DW_TAG_dwarf_procedure:
6507       return "DW_TAG_dwarf_procedure";
6508     case DW_TAG_restrict_type:
6509       return "DW_TAG_restrict_type";
6510     case DW_TAG_interface_type:
6511       return "DW_TAG_interface_type";
6512     case DW_TAG_namespace:
6513       return "DW_TAG_namespace";
6514     case DW_TAG_imported_module:
6515       return "DW_TAG_imported_module";
6516     case DW_TAG_unspecified_type:
6517       return "DW_TAG_unspecified_type";
6518     case DW_TAG_partial_unit:
6519       return "DW_TAG_partial_unit";
6520     case DW_TAG_imported_unit:
6521       return "DW_TAG_imported_unit";
6522     case DW_TAG_condition:
6523       return "DW_TAG_condition";
6524     case DW_TAG_shared_type:
6525       return "DW_TAG_shared_type";
6526     case DW_TAG_type_unit:
6527       return "DW_TAG_type_unit";
6528     case DW_TAG_rvalue_reference_type:
6529       return "DW_TAG_rvalue_reference_type";
6530     case DW_TAG_template_alias:
6531       return "DW_TAG_template_alias";
6532     case DW_TAG_GNU_template_parameter_pack:
6533       return "DW_TAG_GNU_template_parameter_pack";
6534     case DW_TAG_GNU_formal_parameter_pack:
6535       return "DW_TAG_GNU_formal_parameter_pack";
6536     case DW_TAG_MIPS_loop:
6537       return "DW_TAG_MIPS_loop";
6538     case DW_TAG_format_label:
6539       return "DW_TAG_format_label";
6540     case DW_TAG_function_template:
6541       return "DW_TAG_function_template";
6542     case DW_TAG_class_template:
6543       return "DW_TAG_class_template";
6544     case DW_TAG_GNU_BINCL:
6545       return "DW_TAG_GNU_BINCL";
6546     case DW_TAG_GNU_EINCL:
6547       return "DW_TAG_GNU_EINCL";
6548     case DW_TAG_GNU_template_template_param:
6549       return "DW_TAG_GNU_template_template_param";
6550     default:
6551       return "DW_TAG_<unknown>";
6552     }
6553 }
6554
6555 /* Convert a DWARF attribute code into its string name.  */
6556
6557 static const char *
6558 dwarf_attr_name (unsigned int attr)
6559 {
6560   switch (attr)
6561     {
6562     case DW_AT_sibling:
6563       return "DW_AT_sibling";
6564     case DW_AT_location:
6565       return "DW_AT_location";
6566     case DW_AT_name:
6567       return "DW_AT_name";
6568     case DW_AT_ordering:
6569       return "DW_AT_ordering";
6570     case DW_AT_subscr_data:
6571       return "DW_AT_subscr_data";
6572     case DW_AT_byte_size:
6573       return "DW_AT_byte_size";
6574     case DW_AT_bit_offset:
6575       return "DW_AT_bit_offset";
6576     case DW_AT_bit_size:
6577       return "DW_AT_bit_size";
6578     case DW_AT_element_list:
6579       return "DW_AT_element_list";
6580     case DW_AT_stmt_list:
6581       return "DW_AT_stmt_list";
6582     case DW_AT_low_pc:
6583       return "DW_AT_low_pc";
6584     case DW_AT_high_pc:
6585       return "DW_AT_high_pc";
6586     case DW_AT_language:
6587       return "DW_AT_language";
6588     case DW_AT_member:
6589       return "DW_AT_member";
6590     case DW_AT_discr:
6591       return "DW_AT_discr";
6592     case DW_AT_discr_value:
6593       return "DW_AT_discr_value";
6594     case DW_AT_visibility:
6595       return "DW_AT_visibility";
6596     case DW_AT_import:
6597       return "DW_AT_import";
6598     case DW_AT_string_length:
6599       return "DW_AT_string_length";
6600     case DW_AT_common_reference:
6601       return "DW_AT_common_reference";
6602     case DW_AT_comp_dir:
6603       return "DW_AT_comp_dir";
6604     case DW_AT_const_value:
6605       return "DW_AT_const_value";
6606     case DW_AT_containing_type:
6607       return "DW_AT_containing_type";
6608     case DW_AT_default_value:
6609       return "DW_AT_default_value";
6610     case DW_AT_inline:
6611       return "DW_AT_inline";
6612     case DW_AT_is_optional:
6613       return "DW_AT_is_optional";
6614     case DW_AT_lower_bound:
6615       return "DW_AT_lower_bound";
6616     case DW_AT_producer:
6617       return "DW_AT_producer";
6618     case DW_AT_prototyped:
6619       return "DW_AT_prototyped";
6620     case DW_AT_return_addr:
6621       return "DW_AT_return_addr";
6622     case DW_AT_start_scope:
6623       return "DW_AT_start_scope";
6624     case DW_AT_bit_stride:
6625       return "DW_AT_bit_stride";
6626     case DW_AT_upper_bound:
6627       return "DW_AT_upper_bound";
6628     case DW_AT_abstract_origin:
6629       return "DW_AT_abstract_origin";
6630     case DW_AT_accessibility:
6631       return "DW_AT_accessibility";
6632     case DW_AT_address_class:
6633       return "DW_AT_address_class";
6634     case DW_AT_artificial:
6635       return "DW_AT_artificial";
6636     case DW_AT_base_types:
6637       return "DW_AT_base_types";
6638     case DW_AT_calling_convention:
6639       return "DW_AT_calling_convention";
6640     case DW_AT_count:
6641       return "DW_AT_count";
6642     case DW_AT_data_member_location:
6643       return "DW_AT_data_member_location";
6644     case DW_AT_decl_column:
6645       return "DW_AT_decl_column";
6646     case DW_AT_decl_file:
6647       return "DW_AT_decl_file";
6648     case DW_AT_decl_line:
6649       return "DW_AT_decl_line";
6650     case DW_AT_declaration:
6651       return "DW_AT_declaration";
6652     case DW_AT_discr_list:
6653       return "DW_AT_discr_list";
6654     case DW_AT_encoding:
6655       return "DW_AT_encoding";
6656     case DW_AT_external:
6657       return "DW_AT_external";
6658     case DW_AT_explicit:
6659       return "DW_AT_explicit";
6660     case DW_AT_frame_base:
6661       return "DW_AT_frame_base";
6662     case DW_AT_friend:
6663       return "DW_AT_friend";
6664     case DW_AT_identifier_case:
6665       return "DW_AT_identifier_case";
6666     case DW_AT_macro_info:
6667       return "DW_AT_macro_info";
6668     case DW_AT_namelist_items:
6669       return "DW_AT_namelist_items";
6670     case DW_AT_priority:
6671       return "DW_AT_priority";
6672     case DW_AT_segment:
6673       return "DW_AT_segment";
6674     case DW_AT_specification:
6675       return "DW_AT_specification";
6676     case DW_AT_static_link:
6677       return "DW_AT_static_link";
6678     case DW_AT_type:
6679       return "DW_AT_type";
6680     case DW_AT_use_location:
6681       return "DW_AT_use_location";
6682     case DW_AT_variable_parameter:
6683       return "DW_AT_variable_parameter";
6684     case DW_AT_virtuality:
6685       return "DW_AT_virtuality";
6686     case DW_AT_vtable_elem_location:
6687       return "DW_AT_vtable_elem_location";
6688
6689     case DW_AT_allocated:
6690       return "DW_AT_allocated";
6691     case DW_AT_associated:
6692       return "DW_AT_associated";
6693     case DW_AT_data_location:
6694       return "DW_AT_data_location";
6695     case DW_AT_byte_stride:
6696       return "DW_AT_byte_stride";
6697     case DW_AT_entry_pc:
6698       return "DW_AT_entry_pc";
6699     case DW_AT_use_UTF8:
6700       return "DW_AT_use_UTF8";
6701     case DW_AT_extension:
6702       return "DW_AT_extension";
6703     case DW_AT_ranges:
6704       return "DW_AT_ranges";
6705     case DW_AT_trampoline:
6706       return "DW_AT_trampoline";
6707     case DW_AT_call_column:
6708       return "DW_AT_call_column";
6709     case DW_AT_call_file:
6710       return "DW_AT_call_file";
6711     case DW_AT_call_line:
6712       return "DW_AT_call_line";
6713
6714     case DW_AT_signature:
6715       return "DW_AT_signature";
6716     case DW_AT_main_subprogram:
6717       return "DW_AT_main_subprogram";
6718     case DW_AT_data_bit_offset:
6719       return "DW_AT_data_bit_offset";
6720     case DW_AT_const_expr:
6721       return "DW_AT_const_expr";
6722     case DW_AT_enum_class:
6723       return "DW_AT_enum_class";
6724     case DW_AT_linkage_name:
6725       return "DW_AT_linkage_name";
6726
6727     case DW_AT_MIPS_fde:
6728       return "DW_AT_MIPS_fde";
6729     case DW_AT_MIPS_loop_begin:
6730       return "DW_AT_MIPS_loop_begin";
6731     case DW_AT_MIPS_tail_loop_begin:
6732       return "DW_AT_MIPS_tail_loop_begin";
6733     case DW_AT_MIPS_epilog_begin:
6734       return "DW_AT_MIPS_epilog_begin";
6735     case DW_AT_MIPS_loop_unroll_factor:
6736       return "DW_AT_MIPS_loop_unroll_factor";
6737     case DW_AT_MIPS_software_pipeline_depth:
6738       return "DW_AT_MIPS_software_pipeline_depth";
6739     case DW_AT_MIPS_linkage_name:
6740       return "DW_AT_MIPS_linkage_name";
6741     case DW_AT_MIPS_stride:
6742       return "DW_AT_MIPS_stride";
6743     case DW_AT_MIPS_abstract_name:
6744       return "DW_AT_MIPS_abstract_name";
6745     case DW_AT_MIPS_clone_origin:
6746       return "DW_AT_MIPS_clone_origin";
6747     case DW_AT_MIPS_has_inlines:
6748       return "DW_AT_MIPS_has_inlines";
6749
6750     case DW_AT_sf_names:
6751       return "DW_AT_sf_names";
6752     case DW_AT_src_info:
6753       return "DW_AT_src_info";
6754     case DW_AT_mac_info:
6755       return "DW_AT_mac_info";
6756     case DW_AT_src_coords:
6757       return "DW_AT_src_coords";
6758     case DW_AT_body_begin:
6759       return "DW_AT_body_begin";
6760     case DW_AT_body_end:
6761       return "DW_AT_body_end";
6762     case DW_AT_GNU_vector:
6763       return "DW_AT_GNU_vector";
6764     case DW_AT_GNU_guarded_by:
6765       return "DW_AT_GNU_guarded_by";
6766     case DW_AT_GNU_pt_guarded_by:
6767       return "DW_AT_GNU_pt_guarded_by";
6768     case DW_AT_GNU_guarded:
6769       return "DW_AT_GNU_guarded";
6770     case DW_AT_GNU_pt_guarded:
6771       return "DW_AT_GNU_pt_guarded";
6772     case DW_AT_GNU_locks_excluded:
6773       return "DW_AT_GNU_locks_excluded";
6774     case DW_AT_GNU_exclusive_locks_required:
6775       return "DW_AT_GNU_exclusive_locks_required";
6776     case DW_AT_GNU_shared_locks_required:
6777       return "DW_AT_GNU_shared_locks_required";
6778     case DW_AT_GNU_odr_signature:
6779       return "DW_AT_GNU_odr_signature";
6780     case DW_AT_GNU_template_name:
6781       return "DW_AT_GNU_template_name";
6782
6783     case DW_AT_VMS_rtnbeg_pd_address:
6784       return "DW_AT_VMS_rtnbeg_pd_address";
6785
6786     default:
6787       return "DW_AT_<unknown>";
6788     }
6789 }
6790
6791 /* Convert a DWARF value form code into its string name.  */
6792
6793 static const char *
6794 dwarf_form_name (unsigned int form)
6795 {
6796   switch (form)
6797     {
6798     case DW_FORM_addr:
6799       return "DW_FORM_addr";
6800     case DW_FORM_block2:
6801       return "DW_FORM_block2";
6802     case DW_FORM_block4:
6803       return "DW_FORM_block4";
6804     case DW_FORM_data2:
6805       return "DW_FORM_data2";
6806     case DW_FORM_data4:
6807       return "DW_FORM_data4";
6808     case DW_FORM_data8:
6809       return "DW_FORM_data8";
6810     case DW_FORM_string:
6811       return "DW_FORM_string";
6812     case DW_FORM_block:
6813       return "DW_FORM_block";
6814     case DW_FORM_block1:
6815       return "DW_FORM_block1";
6816     case DW_FORM_data1:
6817       return "DW_FORM_data1";
6818     case DW_FORM_flag:
6819       return "DW_FORM_flag";
6820     case DW_FORM_sdata:
6821       return "DW_FORM_sdata";
6822     case DW_FORM_strp:
6823       return "DW_FORM_strp";
6824     case DW_FORM_udata:
6825       return "DW_FORM_udata";
6826     case DW_FORM_ref_addr:
6827       return "DW_FORM_ref_addr";
6828     case DW_FORM_ref1:
6829       return "DW_FORM_ref1";
6830     case DW_FORM_ref2:
6831       return "DW_FORM_ref2";
6832     case DW_FORM_ref4:
6833       return "DW_FORM_ref4";
6834     case DW_FORM_ref8:
6835       return "DW_FORM_ref8";
6836     case DW_FORM_ref_udata:
6837       return "DW_FORM_ref_udata";
6838     case DW_FORM_indirect:
6839       return "DW_FORM_indirect";
6840     case DW_FORM_sec_offset:
6841       return "DW_FORM_sec_offset";
6842     case DW_FORM_exprloc:
6843       return "DW_FORM_exprloc";
6844     case DW_FORM_flag_present:
6845       return "DW_FORM_flag_present";
6846     case DW_FORM_ref_sig8:
6847       return "DW_FORM_ref_sig8";
6848     default:
6849       return "DW_FORM_<unknown>";
6850     }
6851 }
6852 \f
6853 /* Determine the "ultimate origin" of a decl.  The decl may be an inlined
6854    instance of an inlined instance of a decl which is local to an inline
6855    function, so we have to trace all of the way back through the origin chain
6856    to find out what sort of node actually served as the original seed for the
6857    given block.  */
6858
6859 static tree
6860 decl_ultimate_origin (const_tree decl)
6861 {
6862   if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_COMMON))
6863     return NULL_TREE;
6864
6865   /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
6866      nodes in the function to point to themselves; ignore that if
6867      we're trying to output the abstract instance of this function.  */
6868   if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
6869     return NULL_TREE;
6870
6871   /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
6872      most distant ancestor, this should never happen.  */
6873   gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl)));
6874
6875   return DECL_ABSTRACT_ORIGIN (decl);
6876 }
6877
6878 /* Get the class to which DECL belongs, if any.  In g++, the DECL_CONTEXT
6879    of a virtual function may refer to a base class, so we check the 'this'
6880    parameter.  */
6881
6882 static tree
6883 decl_class_context (tree decl)
6884 {
6885   tree context = NULL_TREE;
6886
6887   if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
6888     context = DECL_CONTEXT (decl);
6889   else
6890     context = TYPE_MAIN_VARIANT
6891       (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
6892
6893   if (context && !TYPE_P (context))
6894     context = NULL_TREE;
6895
6896   return context;
6897 }
6898 \f
6899 /* Add an attribute/value pair to a DIE.  */
6900
6901 static inline void
6902 add_dwarf_attr (dw_die_ref die, dw_attr_ref attr)
6903 {
6904   /* Maybe this should be an assert?  */
6905   if (die == NULL)
6906     return;
6907
6908   if (die->die_attr == NULL)
6909     die->die_attr = VEC_alloc (dw_attr_node, gc, 1);
6910   VEC_safe_push (dw_attr_node, gc, die->die_attr, attr);
6911 }
6912
6913 static inline enum dw_val_class
6914 AT_class (dw_attr_ref a)
6915 {
6916   return a->dw_attr_val.val_class;
6917 }
6918
6919 /* Add a flag value attribute to a DIE.  */
6920
6921 static inline void
6922 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
6923 {
6924   dw_attr_node attr;
6925
6926   attr.dw_attr = attr_kind;
6927   attr.dw_attr_val.val_class = dw_val_class_flag;
6928   attr.dw_attr_val.v.val_flag = flag;
6929   add_dwarf_attr (die, &attr);
6930 }
6931
6932 static inline unsigned
6933 AT_flag (dw_attr_ref a)
6934 {
6935   gcc_assert (a && AT_class (a) == dw_val_class_flag);
6936   return a->dw_attr_val.v.val_flag;
6937 }
6938
6939 /* Add a signed integer attribute value to a DIE.  */
6940
6941 static inline void
6942 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
6943 {
6944   dw_attr_node attr;
6945
6946   attr.dw_attr = attr_kind;
6947   attr.dw_attr_val.val_class = dw_val_class_const;
6948   attr.dw_attr_val.v.val_int = int_val;
6949   add_dwarf_attr (die, &attr);
6950 }
6951
6952 static inline HOST_WIDE_INT
6953 AT_int (dw_attr_ref a)
6954 {
6955   gcc_assert (a && AT_class (a) == dw_val_class_const);
6956   return a->dw_attr_val.v.val_int;
6957 }
6958
6959 /* Add an unsigned integer attribute value to a DIE.  */
6960
6961 static inline void
6962 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
6963                  unsigned HOST_WIDE_INT unsigned_val)
6964 {
6965   dw_attr_node attr;
6966
6967   attr.dw_attr = attr_kind;
6968   attr.dw_attr_val.val_class = dw_val_class_unsigned_const;
6969   attr.dw_attr_val.v.val_unsigned = unsigned_val;
6970   add_dwarf_attr (die, &attr);
6971 }
6972
6973 static inline unsigned HOST_WIDE_INT
6974 AT_unsigned (dw_attr_ref a)
6975 {
6976   gcc_assert (a && AT_class (a) == dw_val_class_unsigned_const);
6977   return a->dw_attr_val.v.val_unsigned;
6978 }
6979
6980 /* Add an unsigned double integer attribute value to a DIE.  */
6981
6982 static inline void
6983 add_AT_double (dw_die_ref die, enum dwarf_attribute attr_kind,
6984                HOST_WIDE_INT high, unsigned HOST_WIDE_INT low)
6985 {
6986   dw_attr_node attr;
6987
6988   attr.dw_attr = attr_kind;
6989   attr.dw_attr_val.val_class = dw_val_class_const_double;
6990   attr.dw_attr_val.v.val_double.high = high;
6991   attr.dw_attr_val.v.val_double.low = low;
6992   add_dwarf_attr (die, &attr);
6993 }
6994
6995 /* Add a floating point attribute value to a DIE and return it.  */
6996
6997 static inline void
6998 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
6999             unsigned int length, unsigned int elt_size, unsigned char *array)
7000 {
7001   dw_attr_node attr;
7002
7003   attr.dw_attr = attr_kind;
7004   attr.dw_attr_val.val_class = dw_val_class_vec;
7005   attr.dw_attr_val.v.val_vec.length = length;
7006   attr.dw_attr_val.v.val_vec.elt_size = elt_size;
7007   attr.dw_attr_val.v.val_vec.array = array;
7008   add_dwarf_attr (die, &attr);
7009 }
7010
7011 /* Add an 8-byte data attribute value to a DIE.  */
7012
7013 static inline void
7014 add_AT_data8 (dw_die_ref die, enum dwarf_attribute attr_kind,
7015               unsigned char data8[8])
7016 {
7017   dw_attr_node attr;
7018
7019   attr.dw_attr = attr_kind;
7020   attr.dw_attr_val.val_class = dw_val_class_data8;
7021   memcpy (attr.dw_attr_val.v.val_data8, data8, 8);
7022   add_dwarf_attr (die, &attr);
7023 }
7024
7025 /* Hash and equality functions for debug_str_hash.  */
7026
7027 static hashval_t
7028 debug_str_do_hash (const void *x)
7029 {
7030   return htab_hash_string (((const struct indirect_string_node *)x)->str);
7031 }
7032
7033 static int
7034 debug_str_eq (const void *x1, const void *x2)
7035 {
7036   return strcmp ((((const struct indirect_string_node *)x1)->str),
7037                  (const char *)x2) == 0;
7038 }
7039
7040 /* Add STR to the indirect string hash table.  */
7041
7042 static struct indirect_string_node *
7043 find_AT_string (const char *str)
7044 {
7045   struct indirect_string_node *node;
7046   void **slot;
7047
7048   if (! debug_str_hash)
7049     debug_str_hash = htab_create_ggc (10, debug_str_do_hash,
7050                                       debug_str_eq, NULL);
7051
7052   slot = htab_find_slot_with_hash (debug_str_hash, str,
7053                                    htab_hash_string (str), INSERT);
7054   if (*slot == NULL)
7055     {
7056       node = (struct indirect_string_node *)
7057                ggc_alloc_cleared (sizeof (struct indirect_string_node));
7058       node->str = ggc_strdup (str);
7059       *slot = node;
7060     }
7061   else
7062     node = (struct indirect_string_node *) *slot;
7063
7064   node->refcount++;
7065   return node;
7066 }
7067
7068 /* Add a string attribute value to a DIE.  */
7069
7070 static inline void
7071 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
7072 {
7073   dw_attr_node attr;
7074   struct indirect_string_node *node;
7075
7076   node = find_AT_string (str);
7077
7078   attr.dw_attr = attr_kind;
7079   attr.dw_attr_val.val_class = dw_val_class_str;
7080   attr.dw_attr_val.v.val_str = node;
7081   add_dwarf_attr (die, &attr);
7082 }
7083
7084 /* Create a label for an indirect string node, ensuring it is going to
7085    be output, unless its reference count goes down to zero.  */
7086
7087 static inline void
7088 gen_label_for_indirect_string (struct indirect_string_node *node)
7089 {
7090   char label[32];
7091
7092   if (node->label)
7093     return;
7094
7095   ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
7096   ++dw2_string_counter;
7097   node->label = xstrdup (label);
7098 }
7099
7100 /* Create a SYMBOL_REF rtx whose value is the initial address of a
7101    debug string STR.  */
7102
7103 static inline rtx
7104 get_debug_string_label (const char *str)
7105 {
7106   struct indirect_string_node *node = find_AT_string (str);
7107
7108   debug_str_hash_forced = true;
7109
7110   gen_label_for_indirect_string (node);
7111
7112   return gen_rtx_SYMBOL_REF (Pmode, node->label);
7113 }
7114
7115 static inline const char *
7116 AT_string (dw_attr_ref a)
7117 {
7118   gcc_assert (a && AT_class (a) == dw_val_class_str);
7119   return a->dw_attr_val.v.val_str->str;
7120 }
7121
7122 /* Find out whether a string should be output inline in DIE
7123    or out-of-line in .debug_str section.  */
7124
7125 static enum dwarf_form
7126 AT_string_form (dw_attr_ref a)
7127 {
7128   struct indirect_string_node *node;
7129   unsigned int len;
7130
7131   gcc_assert (a && AT_class (a) == dw_val_class_str);
7132
7133   node = a->dw_attr_val.v.val_str;
7134   if (node->form)
7135     return node->form;
7136
7137   len = strlen (node->str) + 1;
7138
7139   /* If the string is shorter or equal to the size of the reference, it is
7140      always better to put it inline.  */
7141   if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
7142     return node->form = DW_FORM_string;
7143
7144   /* If we cannot expect the linker to merge strings in .debug_str
7145      section, only put it into .debug_str if it is worth even in this
7146      single module.  */
7147   if (DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
7148       || ((debug_str_section->common.flags & SECTION_MERGE) == 0
7149       && (len - DWARF_OFFSET_SIZE) * node->refcount <= len))
7150     return node->form = DW_FORM_string;
7151
7152   gen_label_for_indirect_string (node);
7153
7154   return node->form = DW_FORM_strp;
7155 }
7156
7157 /* Add a DIE reference attribute value to a DIE.  */
7158
7159 static inline void
7160 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
7161 {
7162   dw_attr_node attr;
7163
7164   attr.dw_attr = attr_kind;
7165   attr.dw_attr_val.val_class = dw_val_class_die_ref;
7166   attr.dw_attr_val.v.val_die_ref.die = targ_die;
7167   attr.dw_attr_val.v.val_die_ref.external = 0;
7168   add_dwarf_attr (die, &attr);
7169 }
7170
7171 /* Add an AT_specification attribute to a DIE, and also make the back
7172    pointer from the specification to the definition.  */
7173
7174 static inline void
7175 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
7176 {
7177   add_AT_die_ref (die, DW_AT_specification, targ_die);
7178   gcc_assert (!targ_die->die_definition);
7179   targ_die->die_definition = die;
7180 }
7181
7182 static inline dw_die_ref
7183 AT_ref (dw_attr_ref a)
7184 {
7185   gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
7186   return a->dw_attr_val.v.val_die_ref.die;
7187 }
7188
7189 static inline int
7190 AT_ref_external (dw_attr_ref a)
7191 {
7192   if (a && AT_class (a) == dw_val_class_die_ref)
7193     return a->dw_attr_val.v.val_die_ref.external;
7194
7195   return 0;
7196 }
7197
7198 static inline void
7199 set_AT_ref_external (dw_attr_ref a, int i)
7200 {
7201   gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
7202   a->dw_attr_val.v.val_die_ref.external = i;
7203 }
7204
7205 /* Add an FDE reference attribute value to a DIE.  */
7206
7207 static inline void
7208 add_AT_fde_ref (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int targ_fde)
7209 {
7210   dw_attr_node attr;
7211
7212   attr.dw_attr = attr_kind;
7213   attr.dw_attr_val.val_class = dw_val_class_fde_ref;
7214   attr.dw_attr_val.v.val_fde_index = targ_fde;
7215   add_dwarf_attr (die, &attr);
7216 }
7217
7218 /* Add a location description attribute value to a DIE.  */
7219
7220 static inline void
7221 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
7222 {
7223   dw_attr_node attr;
7224
7225   attr.dw_attr = attr_kind;
7226   attr.dw_attr_val.val_class = dw_val_class_loc;
7227   attr.dw_attr_val.v.val_loc = loc;
7228   add_dwarf_attr (die, &attr);
7229 }
7230
7231 static inline dw_loc_descr_ref
7232 AT_loc (dw_attr_ref a)
7233 {
7234   gcc_assert (a && AT_class (a) == dw_val_class_loc);
7235   return a->dw_attr_val.v.val_loc;
7236 }
7237
7238 static inline void
7239 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
7240 {
7241   dw_attr_node attr;
7242
7243   attr.dw_attr = attr_kind;
7244   attr.dw_attr_val.val_class = dw_val_class_loc_list;
7245   attr.dw_attr_val.v.val_loc_list = loc_list;
7246   add_dwarf_attr (die, &attr);
7247   have_location_lists = true;
7248 }
7249
7250 static inline dw_loc_list_ref
7251 AT_loc_list (dw_attr_ref a)
7252 {
7253   gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
7254   return a->dw_attr_val.v.val_loc_list;
7255 }
7256
7257 static inline dw_loc_list_ref *
7258 AT_loc_list_ptr (dw_attr_ref a)
7259 {
7260   gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
7261   return &a->dw_attr_val.v.val_loc_list;
7262 }
7263
7264 /* Add an address constant attribute value to a DIE.  */
7265
7266 static inline void
7267 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr)
7268 {
7269   dw_attr_node attr;
7270
7271   attr.dw_attr = attr_kind;
7272   attr.dw_attr_val.val_class = dw_val_class_addr;
7273   attr.dw_attr_val.v.val_addr = addr;
7274   add_dwarf_attr (die, &attr);
7275 }
7276
7277 /* Get the RTX from to an address DIE attribute.  */
7278
7279 static inline rtx
7280 AT_addr (dw_attr_ref a)
7281 {
7282   gcc_assert (a && AT_class (a) == dw_val_class_addr);
7283   return a->dw_attr_val.v.val_addr;
7284 }
7285
7286 /* Add a file attribute value to a DIE.  */
7287
7288 static inline void
7289 add_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind,
7290              struct dwarf_file_data *fd)
7291 {
7292   dw_attr_node attr;
7293
7294   attr.dw_attr = attr_kind;
7295   attr.dw_attr_val.val_class = dw_val_class_file;
7296   attr.dw_attr_val.v.val_file = fd;
7297   add_dwarf_attr (die, &attr);
7298 }
7299
7300 /* Get the dwarf_file_data from a file DIE attribute.  */
7301
7302 static inline struct dwarf_file_data *
7303 AT_file (dw_attr_ref a)
7304 {
7305   gcc_assert (a && AT_class (a) == dw_val_class_file);
7306   return a->dw_attr_val.v.val_file;
7307 }
7308
7309 /* Add a label identifier attribute value to a DIE.  */
7310
7311 static inline void
7312 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind, const char *lbl_id)
7313 {
7314   dw_attr_node attr;
7315
7316   attr.dw_attr = attr_kind;
7317   attr.dw_attr_val.val_class = dw_val_class_lbl_id;
7318   attr.dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
7319   add_dwarf_attr (die, &attr);
7320 }
7321
7322 /* Add a section offset attribute value to a DIE, an offset into the
7323    debug_line section.  */
7324
7325 static inline void
7326 add_AT_lineptr (dw_die_ref die, enum dwarf_attribute attr_kind,
7327                 const char *label)
7328 {
7329   dw_attr_node attr;
7330
7331   attr.dw_attr = attr_kind;
7332   attr.dw_attr_val.val_class = dw_val_class_lineptr;
7333   attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
7334   add_dwarf_attr (die, &attr);
7335 }
7336
7337 /* Add a section offset attribute value to a DIE, an offset into the
7338    debug_macinfo section.  */
7339
7340 static inline void
7341 add_AT_macptr (dw_die_ref die, enum dwarf_attribute attr_kind,
7342                const char *label)
7343 {
7344   dw_attr_node attr;
7345
7346   attr.dw_attr = attr_kind;
7347   attr.dw_attr_val.val_class = dw_val_class_macptr;
7348   attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
7349   add_dwarf_attr (die, &attr);
7350 }
7351
7352 /* Add an offset attribute value to a DIE.  */
7353
7354 static inline void
7355 add_AT_offset (dw_die_ref die, enum dwarf_attribute attr_kind,
7356                unsigned HOST_WIDE_INT offset)
7357 {
7358   dw_attr_node attr;
7359
7360   attr.dw_attr = attr_kind;
7361   attr.dw_attr_val.val_class = dw_val_class_offset;
7362   attr.dw_attr_val.v.val_offset = offset;
7363   add_dwarf_attr (die, &attr);
7364 }
7365
7366 /* Add an range_list attribute value to a DIE.  */
7367
7368 static void
7369 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
7370                    long unsigned int offset)
7371 {
7372   dw_attr_node attr;
7373
7374   attr.dw_attr = attr_kind;
7375   attr.dw_attr_val.val_class = dw_val_class_range_list;
7376   attr.dw_attr_val.v.val_offset = offset;
7377   add_dwarf_attr (die, &attr);
7378 }
7379
7380 static inline const char *
7381 AT_lbl (dw_attr_ref a)
7382 {
7383   gcc_assert (a && (AT_class (a) == dw_val_class_lbl_id
7384                     || AT_class (a) == dw_val_class_lineptr
7385                     || AT_class (a) == dw_val_class_macptr));
7386   return a->dw_attr_val.v.val_lbl_id;
7387 }
7388
7389 /* Get the attribute of type attr_kind.  */
7390
7391 static dw_attr_ref
7392 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
7393 {
7394   dw_attr_ref a;
7395   unsigned ix;
7396   dw_die_ref spec = NULL;
7397
7398   if (! die)
7399     return NULL;
7400
7401   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
7402     if (a->dw_attr == attr_kind)
7403       return a;
7404     else if (a->dw_attr == DW_AT_specification
7405              || a->dw_attr == DW_AT_abstract_origin)
7406       spec = AT_ref (a);
7407
7408   if (spec)
7409     return get_AT (spec, attr_kind);
7410
7411   return NULL;
7412 }
7413
7414 /* Return the "low pc" attribute value, typically associated with a subprogram
7415    DIE.  Return null if the "low pc" attribute is either not present, or if it
7416    cannot be represented as an assembler label identifier.  */
7417
7418 static inline const char *
7419 get_AT_low_pc (dw_die_ref die)
7420 {
7421   dw_attr_ref a = get_AT (die, DW_AT_low_pc);
7422
7423   return a ? AT_lbl (a) : NULL;
7424 }
7425
7426 /* Return the "high pc" attribute value, typically associated with a subprogram
7427    DIE.  Return null if the "high pc" attribute is either not present, or if it
7428    cannot be represented as an assembler label identifier.  */
7429
7430 static inline const char *
7431 get_AT_hi_pc (dw_die_ref die)
7432 {
7433   dw_attr_ref a = get_AT (die, DW_AT_high_pc);
7434
7435   return a ? AT_lbl (a) : NULL;
7436 }
7437
7438 /* Return the value of the string attribute designated by ATTR_KIND, or
7439    NULL if it is not present.  */
7440
7441 static inline const char *
7442 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
7443 {
7444   dw_attr_ref a = get_AT (die, attr_kind);
7445
7446   return a ? AT_string (a) : NULL;
7447 }
7448
7449 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
7450    if it is not present.  */
7451
7452 static inline int
7453 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
7454 {
7455   dw_attr_ref a = get_AT (die, attr_kind);
7456
7457   return a ? AT_flag (a) : 0;
7458 }
7459
7460 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
7461    if it is not present.  */
7462
7463 static inline unsigned
7464 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
7465 {
7466   dw_attr_ref a = get_AT (die, attr_kind);
7467
7468   return a ? AT_unsigned (a) : 0;
7469 }
7470
7471 static inline dw_die_ref
7472 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
7473 {
7474   dw_attr_ref a = get_AT (die, attr_kind);
7475
7476   return a ? AT_ref (a) : NULL;
7477 }
7478
7479 static inline struct dwarf_file_data *
7480 get_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind)
7481 {
7482   dw_attr_ref a = get_AT (die, attr_kind);
7483
7484   return a ? AT_file (a) : NULL;
7485 }
7486
7487 /* Return TRUE if the language is C++.  */
7488
7489 static inline bool
7490 is_cxx (void)
7491 {
7492   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
7493
7494   return lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus;
7495 }
7496
7497 /* Return TRUE if the language is Fortran.  */
7498
7499 static inline bool
7500 is_fortran (void)
7501 {
7502   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
7503
7504   return (lang == DW_LANG_Fortran77
7505           || lang == DW_LANG_Fortran90
7506           || lang == DW_LANG_Fortran95);
7507 }
7508
7509 /* Return TRUE if the language is Ada.  */
7510
7511 static inline bool
7512 is_ada (void)
7513 {
7514   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
7515
7516   return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
7517 }
7518
7519 /* Remove the specified attribute if present.  */
7520
7521 static void
7522 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
7523 {
7524   dw_attr_ref a;
7525   unsigned ix;
7526
7527   if (! die)
7528     return;
7529
7530   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
7531     if (a->dw_attr == attr_kind)
7532       {
7533         if (AT_class (a) == dw_val_class_str)
7534           if (a->dw_attr_val.v.val_str->refcount)
7535             a->dw_attr_val.v.val_str->refcount--;
7536
7537         /* VEC_ordered_remove should help reduce the number of abbrevs
7538            that are needed.  */
7539         VEC_ordered_remove (dw_attr_node, die->die_attr, ix);
7540         return;
7541       }
7542 }
7543
7544 /* Remove CHILD from its parent.  PREV must have the property that
7545    PREV->DIE_SIB == CHILD.  Does not alter CHILD.  */
7546
7547 static void
7548 remove_child_with_prev (dw_die_ref child, dw_die_ref prev)
7549 {
7550   gcc_assert (child->die_parent == prev->die_parent);
7551   gcc_assert (prev->die_sib == child);
7552   if (prev == child)
7553     {
7554       gcc_assert (child->die_parent->die_child == child);
7555       prev = NULL;
7556     }
7557   else
7558     prev->die_sib = child->die_sib;
7559   if (child->die_parent->die_child == child)
7560     child->die_parent->die_child = prev;
7561 }
7562
7563 /* Replace OLD_CHILD with NEW_CHILD.  PREV must have the property that
7564    PREV->DIE_SIB == OLD_CHILD.  Does not alter OLD_CHILD.  */
7565
7566 static void
7567 replace_child (dw_die_ref old_child, dw_die_ref new_child, dw_die_ref prev)
7568 {
7569   dw_die_ref parent = old_child->die_parent;
7570
7571   gcc_assert (parent == prev->die_parent);
7572   gcc_assert (prev->die_sib == old_child);
7573
7574   new_child->die_parent = parent;
7575   if (prev == old_child)
7576     {
7577       gcc_assert (parent->die_child == old_child);
7578       new_child->die_sib = new_child;
7579     }
7580   else
7581     {
7582       prev->die_sib = new_child;
7583       new_child->die_sib = old_child->die_sib;
7584     }
7585   if (old_child->die_parent->die_child == old_child)
7586     old_child->die_parent->die_child = new_child;
7587 }
7588
7589 /* Move all children from OLD_PARENT to NEW_PARENT.  */
7590
7591 static void
7592 move_all_children (dw_die_ref old_parent, dw_die_ref new_parent)
7593 {
7594   dw_die_ref c;
7595   new_parent->die_child = old_parent->die_child;
7596   old_parent->die_child = NULL;
7597   FOR_EACH_CHILD (new_parent, c, c->die_parent = new_parent);
7598 }
7599
7600 /* Remove child DIE whose die_tag is TAG.  Do nothing if no child
7601    matches TAG.  */
7602
7603 static void
7604 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
7605 {
7606   dw_die_ref c;
7607
7608   c = die->die_child;
7609   if (c) do {
7610     dw_die_ref prev = c;
7611     c = c->die_sib;
7612     while (c->die_tag == tag)
7613       {
7614         remove_child_with_prev (c, prev);
7615         /* Might have removed every child.  */
7616         if (c == c->die_sib)
7617           return;
7618         c = c->die_sib;
7619       }
7620   } while (c != die->die_child);
7621 }
7622
7623 /* Add a CHILD_DIE as the last child of DIE.  */
7624
7625 static void
7626 add_child_die (dw_die_ref die, dw_die_ref child_die)
7627 {
7628   /* FIXME this should probably be an assert.  */
7629   if (! die || ! child_die)
7630     return;
7631   gcc_assert (die != child_die);
7632
7633   child_die->die_parent = die;
7634   if (die->die_child)
7635     {
7636       child_die->die_sib = die->die_child->die_sib;
7637       die->die_child->die_sib = child_die;
7638     }
7639   else
7640     child_die->die_sib = child_die;
7641   die->die_child = child_die;
7642 }
7643
7644 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
7645    is the specification, to the end of PARENT's list of children.
7646    This is done by removing and re-adding it.  */
7647
7648 static void
7649 splice_child_die (dw_die_ref parent, dw_die_ref child)
7650 {
7651   dw_die_ref p;
7652
7653   /* We want the declaration DIE from inside the class, not the
7654      specification DIE at toplevel.  */
7655   if (child->die_parent != parent)
7656     {
7657       dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
7658
7659       if (tmp)
7660         child = tmp;
7661     }
7662
7663   gcc_assert (child->die_parent == parent
7664               || (child->die_parent
7665                   == get_AT_ref (parent, DW_AT_specification)));
7666
7667   for (p = child->die_parent->die_child; ; p = p->die_sib)
7668     if (p->die_sib == child)
7669       {
7670         remove_child_with_prev (child, p);
7671         break;
7672       }
7673
7674   add_child_die (parent, child);
7675 }
7676
7677 /* Return a pointer to a newly created DIE node.  */
7678
7679 static inline dw_die_ref
7680 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
7681 {
7682   dw_die_ref die = GGC_CNEW (die_node);
7683
7684   die->die_tag = tag_value;
7685
7686   if (parent_die != NULL)
7687     add_child_die (parent_die, die);
7688   else
7689     {
7690       limbo_die_node *limbo_node;
7691
7692       limbo_node = GGC_CNEW (limbo_die_node);
7693       limbo_node->die = die;
7694       limbo_node->created_for = t;
7695       limbo_node->next = limbo_die_list;
7696       limbo_die_list = limbo_node;
7697     }
7698
7699   return die;
7700 }
7701
7702 /* Return the DIE associated with the given type specifier.  */
7703
7704 static inline dw_die_ref
7705 lookup_type_die (tree type)
7706 {
7707   return TYPE_SYMTAB_DIE (type);
7708 }
7709
7710 /* Equate a DIE to a given type specifier.  */
7711
7712 static inline void
7713 equate_type_number_to_die (tree type, dw_die_ref type_die)
7714 {
7715   TYPE_SYMTAB_DIE (type) = type_die;
7716 }
7717
7718 /* Returns a hash value for X (which really is a die_struct).  */
7719
7720 static hashval_t
7721 decl_die_table_hash (const void *x)
7722 {
7723   return (hashval_t) ((const_dw_die_ref) x)->decl_id;
7724 }
7725
7726 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y.  */
7727
7728 static int
7729 decl_die_table_eq (const void *x, const void *y)
7730 {
7731   return (((const_dw_die_ref) x)->decl_id == DECL_UID ((const_tree) y));
7732 }
7733
7734 /* Return the DIE associated with a given declaration.  */
7735
7736 static inline dw_die_ref
7737 lookup_decl_die (tree decl)
7738 {
7739   return (dw_die_ref) htab_find_with_hash (decl_die_table, decl, DECL_UID (decl));
7740 }
7741
7742 /* Returns a hash value for X (which really is a var_loc_list).  */
7743
7744 static hashval_t
7745 decl_loc_table_hash (const void *x)
7746 {
7747   return (hashval_t) ((const var_loc_list *) x)->decl_id;
7748 }
7749
7750 /* Return nonzero if decl_id of var_loc_list X is the same as
7751    UID of decl *Y.  */
7752
7753 static int
7754 decl_loc_table_eq (const void *x, const void *y)
7755 {
7756   return (((const var_loc_list *) x)->decl_id == DECL_UID ((const_tree) y));
7757 }
7758
7759 /* Return the var_loc list associated with a given declaration.  */
7760
7761 static inline var_loc_list *
7762 lookup_decl_loc (const_tree decl)
7763 {
7764   if (!decl_loc_table)
7765     return NULL;
7766   return (var_loc_list *)
7767     htab_find_with_hash (decl_loc_table, decl, DECL_UID (decl));
7768 }
7769
7770 /* Equate a DIE to a particular declaration.  */
7771
7772 static void
7773 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
7774 {
7775   unsigned int decl_id = DECL_UID (decl);
7776   void **slot;
7777
7778   slot = htab_find_slot_with_hash (decl_die_table, decl, decl_id, INSERT);
7779   *slot = decl_die;
7780   decl_die->decl_id = decl_id;
7781 }
7782
7783 /* Return how many bits covers PIECE EXPR_LIST.  */
7784
7785 static int
7786 decl_piece_bitsize (rtx piece)
7787 {
7788   int ret = (int) GET_MODE (piece);
7789   if (ret)
7790     return ret;
7791   gcc_assert (GET_CODE (XEXP (piece, 0)) == CONCAT
7792               && CONST_INT_P (XEXP (XEXP (piece, 0), 0)));
7793   return INTVAL (XEXP (XEXP (piece, 0), 0));
7794 }
7795
7796 /* Return pointer to the location of location note in PIECE EXPR_LIST.  */
7797
7798 static rtx *
7799 decl_piece_varloc_ptr (rtx piece)
7800 {
7801   if ((int) GET_MODE (piece))
7802     return &XEXP (piece, 0);
7803   else
7804     return &XEXP (XEXP (piece, 0), 1);
7805 }
7806
7807 /* Create an EXPR_LIST for location note LOC_NOTE covering BITSIZE bits.
7808    Next is the chain of following piece nodes.  */
7809
7810 static rtx
7811 decl_piece_node (rtx loc_note, HOST_WIDE_INT bitsize, rtx next)
7812 {
7813   if (bitsize <= (int) MAX_MACHINE_MODE)
7814     return alloc_EXPR_LIST (bitsize, loc_note, next);
7815   else
7816     return alloc_EXPR_LIST (0, gen_rtx_CONCAT (VOIDmode,
7817                                                GEN_INT (bitsize),
7818                                                loc_note), next);
7819 }
7820
7821 /* Return rtx that should be stored into loc field for
7822    LOC_NOTE and BITPOS/BITSIZE.  */
7823
7824 static rtx
7825 construct_piece_list (rtx loc_note, HOST_WIDE_INT bitpos,
7826                       HOST_WIDE_INT bitsize)
7827 {
7828   if (bitsize != -1)
7829     {
7830       loc_note = decl_piece_node (loc_note, bitsize, NULL_RTX);
7831       if (bitpos != 0)
7832         loc_note = decl_piece_node (NULL_RTX, bitpos, loc_note);
7833     }
7834   return loc_note;
7835 }
7836
7837 /* This function either modifies location piece list *DEST in
7838    place (if SRC and INNER is NULL), or copies location piece list
7839    *SRC to *DEST while modifying it.  Location BITPOS is modified
7840    to contain LOC_NOTE, any pieces overlapping it are removed resp.
7841    not copied and if needed some padding around it is added.
7842    When modifying in place, DEST should point to EXPR_LIST where
7843    earlier pieces cover PIECE_BITPOS bits, when copying SRC points
7844    to the start of the whole list and INNER points to the EXPR_LIST
7845    where earlier pieces cover PIECE_BITPOS bits.  */
7846
7847 static void
7848 adjust_piece_list (rtx *dest, rtx *src, rtx *inner,
7849                    HOST_WIDE_INT bitpos, HOST_WIDE_INT piece_bitpos,
7850                    HOST_WIDE_INT bitsize, rtx loc_note)
7851 {
7852   int diff;
7853   bool copy = inner != NULL;
7854
7855   if (copy)
7856     {
7857       /* First copy all nodes preceeding the current bitpos.  */
7858       while (src != inner)
7859         {
7860           *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
7861                                    decl_piece_bitsize (*src), NULL_RTX);
7862           dest = &XEXP (*dest, 1);
7863           src = &XEXP (*src, 1);
7864         }
7865     }
7866   /* Add padding if needed.  */
7867   if (bitpos != piece_bitpos)
7868     {
7869       *dest = decl_piece_node (NULL_RTX, bitpos - piece_bitpos,
7870                                copy ? NULL_RTX : *dest);
7871       dest = &XEXP (*dest, 1);
7872     }
7873   else if (*dest && decl_piece_bitsize (*dest) == bitsize)
7874     {
7875       gcc_assert (!copy);
7876       /* A piece with correct bitpos and bitsize already exist,
7877          just update the location for it and return.  */
7878       *decl_piece_varloc_ptr (*dest) = loc_note;
7879       return;
7880     }
7881   /* Add the piece that changed.  */
7882   *dest = decl_piece_node (loc_note, bitsize, copy ? NULL_RTX : *dest);
7883   dest = &XEXP (*dest, 1);
7884   /* Skip over pieces that overlap it.  */
7885   diff = bitpos - piece_bitpos + bitsize;
7886   if (!copy)
7887     src = dest;
7888   while (diff > 0 && *src)
7889     {
7890       rtx piece = *src;
7891       diff -= decl_piece_bitsize (piece);
7892       if (copy)
7893         src = &XEXP (piece, 1);
7894       else
7895         {
7896           *src = XEXP (piece, 1);
7897           free_EXPR_LIST_node (piece);
7898         }
7899     }
7900   /* Add padding if needed.  */
7901   if (diff < 0 && *src)
7902     {
7903       if (!copy)
7904         dest = src;
7905       *dest = decl_piece_node (NULL_RTX, -diff, copy ? NULL_RTX : *dest);
7906       dest = &XEXP (*dest, 1);
7907     }
7908   if (!copy)
7909     return;
7910   /* Finally copy all nodes following it.  */
7911   while (*src)
7912     {
7913       *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
7914                                decl_piece_bitsize (*src), NULL_RTX);
7915       dest = &XEXP (*dest, 1);
7916       src = &XEXP (*src, 1);
7917     }
7918 }
7919
7920 /* Add a variable location node to the linked list for DECL.  */
7921
7922 static struct var_loc_node *
7923 add_var_loc_to_decl (tree decl, rtx loc_note, const char *label)
7924 {
7925   unsigned int decl_id;
7926   var_loc_list *temp;
7927   void **slot;
7928   struct var_loc_node *loc = NULL;
7929   HOST_WIDE_INT bitsize = -1, bitpos = -1;
7930
7931   if (DECL_DEBUG_EXPR_IS_FROM (decl))
7932     {
7933       tree realdecl = DECL_DEBUG_EXPR (decl);
7934       if (realdecl && handled_component_p (realdecl))
7935         {
7936           HOST_WIDE_INT maxsize;
7937           tree innerdecl;
7938           innerdecl
7939             = get_ref_base_and_extent (realdecl, &bitpos, &bitsize, &maxsize);
7940           if (!DECL_P (innerdecl)
7941               || DECL_IGNORED_P (innerdecl)
7942               || TREE_STATIC (innerdecl)
7943               || bitsize <= 0
7944               || bitpos + bitsize > 256
7945               || bitsize != maxsize)
7946             return NULL;
7947           decl = innerdecl;
7948         }
7949     }
7950
7951   decl_id = DECL_UID (decl);
7952   slot = htab_find_slot_with_hash (decl_loc_table, decl, decl_id, INSERT);
7953   if (*slot == NULL)
7954     {
7955       temp = GGC_CNEW (var_loc_list);
7956       temp->decl_id = decl_id;
7957       *slot = temp;
7958     }
7959   else
7960     temp = (var_loc_list *) *slot;
7961
7962   if (temp->last)
7963     {
7964       struct var_loc_node *last = temp->last, *unused = NULL;
7965       rtx *piece_loc = NULL, last_loc_note;
7966       int piece_bitpos = 0;
7967       if (last->next)
7968         {
7969           last = last->next;
7970           gcc_assert (last->next == NULL);
7971         }
7972       if (bitsize != -1 && GET_CODE (last->loc) == EXPR_LIST)
7973         {
7974           piece_loc = &last->loc;
7975           do
7976             {
7977               int cur_bitsize = decl_piece_bitsize (*piece_loc);
7978               if (piece_bitpos + cur_bitsize > bitpos)
7979                 break;
7980               piece_bitpos += cur_bitsize;
7981               piece_loc = &XEXP (*piece_loc, 1);
7982             }
7983           while (*piece_loc);
7984         }
7985       /* TEMP->LAST here is either pointer to the last but one or
7986          last element in the chained list, LAST is pointer to the
7987          last element.  */
7988       if (label && strcmp (last->label, label) == 0)
7989         {
7990           /* For SRA optimized variables if there weren't any real
7991              insns since last note, just modify the last node.  */
7992           if (piece_loc != NULL)
7993             {
7994               adjust_piece_list (piece_loc, NULL, NULL,
7995                                  bitpos, piece_bitpos, bitsize, loc_note);
7996               return NULL;
7997             }
7998           /* If the last note doesn't cover any instructions, remove it.  */
7999           if (temp->last != last)
8000             {
8001               temp->last->next = NULL;
8002               unused = last;
8003               last = temp->last;
8004               gcc_assert (strcmp (last->label, label) != 0);
8005             }
8006           else
8007             {
8008               gcc_assert (temp->first == temp->last);
8009               memset (temp->last, '\0', sizeof (*temp->last));
8010               temp->last->loc = construct_piece_list (loc_note, bitpos, bitsize);
8011               return temp->last;
8012             }
8013         }
8014       if (bitsize == -1 && NOTE_P (last->loc))
8015         last_loc_note = last->loc;
8016       else if (piece_loc != NULL
8017                && *piece_loc != NULL_RTX
8018                && piece_bitpos == bitpos
8019                && decl_piece_bitsize (*piece_loc) == bitsize)
8020         last_loc_note = *decl_piece_varloc_ptr (*piece_loc);
8021       else
8022         last_loc_note = NULL_RTX;
8023       /* If the current location is the same as the end of the list,
8024          and either both or neither of the locations is uninitialized,
8025          we have nothing to do.  */
8026       if (last_loc_note == NULL_RTX
8027           || (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (last_loc_note),
8028                             NOTE_VAR_LOCATION_LOC (loc_note)))
8029           || ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
8030                != NOTE_VAR_LOCATION_STATUS (loc_note))
8031               && ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
8032                    == VAR_INIT_STATUS_UNINITIALIZED)
8033                   || (NOTE_VAR_LOCATION_STATUS (loc_note)
8034                       == VAR_INIT_STATUS_UNINITIALIZED))))
8035         {
8036           /* Add LOC to the end of list and update LAST.  If the last
8037              element of the list has been removed above, reuse its
8038              memory for the new node, otherwise allocate a new one.  */
8039           if (unused)
8040             {
8041               loc = unused;
8042               memset (loc, '\0', sizeof (*loc));
8043             }
8044           else
8045             loc = GGC_CNEW (struct var_loc_node);
8046           if (bitsize == -1 || piece_loc == NULL)
8047             loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
8048           else
8049             adjust_piece_list (&loc->loc, &last->loc, piece_loc,
8050                                bitpos, piece_bitpos, bitsize, loc_note);
8051           last->next = loc;
8052           /* Ensure TEMP->LAST will point either to the new last but one
8053              element of the chain, or to the last element in it.  */
8054           if (last != temp->last)
8055             temp->last = last;
8056         }
8057       else if (unused)
8058         ggc_free (unused);
8059     }
8060   else
8061     {
8062       loc = GGC_CNEW (struct var_loc_node);
8063       temp->first = loc;
8064       temp->last = loc;
8065       loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
8066     }
8067   return loc;
8068 }
8069 \f
8070 /* Keep track of the number of spaces used to indent the
8071    output of the debugging routines that print the structure of
8072    the DIE internal representation.  */
8073 static int print_indent;
8074
8075 /* Indent the line the number of spaces given by print_indent.  */
8076
8077 static inline void
8078 print_spaces (FILE *outfile)
8079 {
8080   fprintf (outfile, "%*s", print_indent, "");
8081 }
8082
8083 /* Print a type signature in hex.  */
8084
8085 static inline void
8086 print_signature (FILE *outfile, char *sig)
8087 {
8088   int i;
8089
8090   for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
8091     fprintf (outfile, "%02x", sig[i] & 0xff);
8092 }
8093
8094 /* Print the information associated with a given DIE, and its children.
8095    This routine is a debugging aid only.  */
8096
8097 static void
8098 print_die (dw_die_ref die, FILE *outfile)
8099 {
8100   dw_attr_ref a;
8101   dw_die_ref c;
8102   unsigned ix;
8103
8104   print_spaces (outfile);
8105   fprintf (outfile, "DIE %4ld: %s\n",
8106            die->die_offset, dwarf_tag_name (die->die_tag));
8107   print_spaces (outfile);
8108   fprintf (outfile, "  abbrev id: %lu", die->die_abbrev);
8109   fprintf (outfile, " offset: %ld\n", die->die_offset);
8110   if (dwarf_version >= 4 && die->die_id.die_type_node)
8111     {
8112       print_spaces (outfile);
8113       fprintf (outfile, "  signature: ");
8114       print_signature (outfile, die->die_id.die_type_node->signature);
8115       fprintf (outfile, "\n");
8116     }
8117
8118   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
8119     {
8120       print_spaces (outfile);
8121       fprintf (outfile, "  %s: ", dwarf_attr_name (a->dw_attr));
8122
8123       switch (AT_class (a))
8124         {
8125         case dw_val_class_addr:
8126           fprintf (outfile, "address");
8127           break;
8128         case dw_val_class_offset:
8129           fprintf (outfile, "offset");
8130           break;
8131         case dw_val_class_loc:
8132           fprintf (outfile, "location descriptor");
8133           break;
8134         case dw_val_class_loc_list:
8135           fprintf (outfile, "location list -> label:%s",
8136                    AT_loc_list (a)->ll_symbol);
8137           break;
8138         case dw_val_class_range_list:
8139           fprintf (outfile, "range list");
8140           break;
8141         case dw_val_class_const:
8142           fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, AT_int (a));
8143           break;
8144         case dw_val_class_unsigned_const:
8145           fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, AT_unsigned (a));
8146           break;
8147         case dw_val_class_const_double:
8148           fprintf (outfile, "constant ("HOST_WIDE_INT_PRINT_DEC","\
8149                             HOST_WIDE_INT_PRINT_UNSIGNED")",
8150                    a->dw_attr_val.v.val_double.high,
8151                    a->dw_attr_val.v.val_double.low);
8152           break;
8153         case dw_val_class_vec:
8154           fprintf (outfile, "floating-point or vector constant");
8155           break;
8156         case dw_val_class_flag:
8157           fprintf (outfile, "%u", AT_flag (a));
8158           break;
8159         case dw_val_class_die_ref:
8160           if (AT_ref (a) != NULL)
8161             {
8162               if (dwarf_version >= 4 && AT_ref (a)->die_id.die_type_node)
8163                 {
8164                   fprintf (outfile, "die -> signature: ");
8165                   print_signature (outfile,
8166                                    AT_ref (a)->die_id.die_type_node->signature);
8167                 }
8168               else if (dwarf_version < 4 && AT_ref (a)->die_id.die_symbol)
8169                 fprintf (outfile, "die -> label: %s",
8170                          AT_ref (a)->die_id.die_symbol);
8171               else
8172                 fprintf (outfile, "die -> %ld", AT_ref (a)->die_offset);
8173             }
8174           else
8175             fprintf (outfile, "die -> <null>");
8176           break;
8177         case dw_val_class_lbl_id:
8178         case dw_val_class_lineptr:
8179         case dw_val_class_macptr:
8180           fprintf (outfile, "label: %s", AT_lbl (a));
8181           break;
8182         case dw_val_class_str:
8183           if (AT_string (a) != NULL)
8184             fprintf (outfile, "\"%s\"", AT_string (a));
8185           else
8186             fprintf (outfile, "<null>");
8187           break;
8188         case dw_val_class_file:
8189           fprintf (outfile, "\"%s\" (%d)", AT_file (a)->filename,
8190                    AT_file (a)->emitted_number);
8191           break;
8192         case dw_val_class_data8:
8193           {
8194             int i;
8195
8196             for (i = 0; i < 8; i++)
8197               fprintf (outfile, "%02x", a->dw_attr_val.v.val_data8[i]);
8198             break;
8199           }
8200         default:
8201           break;
8202         }
8203
8204       fprintf (outfile, "\n");
8205     }
8206
8207   if (die->die_child != NULL)
8208     {
8209       print_indent += 4;
8210       FOR_EACH_CHILD (die, c, print_die (c, outfile));
8211       print_indent -= 4;
8212     }
8213   if (print_indent == 0)
8214     fprintf (outfile, "\n");
8215 }
8216
8217 /* Print the contents of the source code line number correspondence table.
8218    This routine is a debugging aid only.  */
8219
8220 static void
8221 print_dwarf_line_table (FILE *outfile)
8222 {
8223   unsigned i;
8224   dw_line_info_ref line_info;
8225
8226   fprintf (outfile, "\n\nDWARF source line information\n");
8227   for (i = 1; i < line_info_table_in_use; i++)
8228     {
8229       line_info = &line_info_table[i];
8230       fprintf (outfile, "%5d: %4ld %6ld\n", i,
8231                line_info->dw_file_num,
8232                line_info->dw_line_num);
8233     }
8234
8235   fprintf (outfile, "\n\n");
8236 }
8237
8238 /* Print the information collected for a given DIE.  */
8239
8240 void
8241 debug_dwarf_die (dw_die_ref die)
8242 {
8243   print_die (die, stderr);
8244 }
8245
8246 /* Print all DWARF information collected for the compilation unit.
8247    This routine is a debugging aid only.  */
8248
8249 void
8250 debug_dwarf (void)
8251 {
8252   print_indent = 0;
8253   print_die (comp_unit_die, stderr);
8254   if (! DWARF2_ASM_LINE_DEBUG_INFO)
8255     print_dwarf_line_table (stderr);
8256 }
8257 \f
8258 /* Start a new compilation unit DIE for an include file.  OLD_UNIT is the CU
8259    for the enclosing include file, if any.  BINCL_DIE is the DW_TAG_GNU_BINCL
8260    DIE that marks the start of the DIEs for this include file.  */
8261
8262 static dw_die_ref
8263 push_new_compile_unit (dw_die_ref old_unit, dw_die_ref bincl_die)
8264 {
8265   const char *filename = get_AT_string (bincl_die, DW_AT_name);
8266   dw_die_ref new_unit = gen_compile_unit_die (filename);
8267
8268   new_unit->die_sib = old_unit;
8269   return new_unit;
8270 }
8271
8272 /* Close an include-file CU and reopen the enclosing one.  */
8273
8274 static dw_die_ref
8275 pop_compile_unit (dw_die_ref old_unit)
8276 {
8277   dw_die_ref new_unit = old_unit->die_sib;
8278
8279   old_unit->die_sib = NULL;
8280   return new_unit;
8281 }
8282
8283 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
8284 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
8285
8286 /* Calculate the checksum of a location expression.  */
8287
8288 static inline void
8289 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
8290 {
8291   int tem;
8292
8293   tem = (loc->dtprel << 8) | ((unsigned int) loc->dw_loc_opc);
8294   CHECKSUM (tem);
8295   CHECKSUM (loc->dw_loc_oprnd1);
8296   CHECKSUM (loc->dw_loc_oprnd2);
8297 }
8298
8299 /* Calculate the checksum of an attribute.  */
8300
8301 static void
8302 attr_checksum (dw_attr_ref at, struct md5_ctx *ctx, int *mark)
8303 {
8304   dw_loc_descr_ref loc;
8305   rtx r;
8306
8307   CHECKSUM (at->dw_attr);
8308
8309   /* We don't care that this was compiled with a different compiler
8310      snapshot; if the output is the same, that's what matters.  */
8311   if (at->dw_attr == DW_AT_producer)
8312     return;
8313
8314   switch (AT_class (at))
8315     {
8316     case dw_val_class_const:
8317       CHECKSUM (at->dw_attr_val.v.val_int);
8318       break;
8319     case dw_val_class_unsigned_const:
8320       CHECKSUM (at->dw_attr_val.v.val_unsigned);
8321       break;
8322     case dw_val_class_const_double:
8323       CHECKSUM (at->dw_attr_val.v.val_double);
8324       break;
8325     case dw_val_class_vec:
8326       CHECKSUM (at->dw_attr_val.v.val_vec);
8327       break;
8328     case dw_val_class_flag:
8329       CHECKSUM (at->dw_attr_val.v.val_flag);
8330       break;
8331     case dw_val_class_str:
8332       CHECKSUM_STRING (AT_string (at));
8333       break;
8334
8335     case dw_val_class_addr:
8336       r = AT_addr (at);
8337       gcc_assert (GET_CODE (r) == SYMBOL_REF);
8338       CHECKSUM_STRING (XSTR (r, 0));
8339       break;
8340
8341     case dw_val_class_offset:
8342       CHECKSUM (at->dw_attr_val.v.val_offset);
8343       break;
8344
8345     case dw_val_class_loc:
8346       for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
8347         loc_checksum (loc, ctx);
8348       break;
8349
8350     case dw_val_class_die_ref:
8351       die_checksum (AT_ref (at), ctx, mark);
8352       break;
8353
8354     case dw_val_class_fde_ref:
8355     case dw_val_class_lbl_id:
8356     case dw_val_class_lineptr:
8357     case dw_val_class_macptr:
8358       break;
8359
8360     case dw_val_class_file:
8361       CHECKSUM_STRING (AT_file (at)->filename);
8362       break;
8363
8364     case dw_val_class_data8:
8365       CHECKSUM (at->dw_attr_val.v.val_data8);
8366       break;
8367
8368     default:
8369       break;
8370     }
8371 }
8372
8373 /* Calculate the checksum of a DIE.  */
8374
8375 static void
8376 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
8377 {
8378   dw_die_ref c;
8379   dw_attr_ref a;
8380   unsigned ix;
8381
8382   /* To avoid infinite recursion.  */
8383   if (die->die_mark)
8384     {
8385       CHECKSUM (die->die_mark);
8386       return;
8387     }
8388   die->die_mark = ++(*mark);
8389
8390   CHECKSUM (die->die_tag);
8391
8392   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
8393     attr_checksum (a, ctx, mark);
8394
8395   FOR_EACH_CHILD (die, c, die_checksum (c, ctx, mark));
8396 }
8397
8398 #undef CHECKSUM
8399 #undef CHECKSUM_STRING
8400
8401 /* For DWARF-4 types, include the trailing NULL when checksumming strings.  */
8402 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
8403 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO) + 1, ctx)
8404 #define CHECKSUM_SLEB128(FOO) checksum_sleb128 ((FOO), ctx)
8405 #define CHECKSUM_ULEB128(FOO) checksum_uleb128 ((FOO), ctx)
8406 #define CHECKSUM_ATTR(FOO) \
8407   if (FOO) attr_checksum_ordered (die->die_tag, (FOO), ctx, mark)
8408
8409 /* Calculate the checksum of a number in signed LEB128 format.  */
8410
8411 static void
8412 checksum_sleb128 (HOST_WIDE_INT value, struct md5_ctx *ctx)
8413 {
8414   unsigned char byte;
8415   bool more;
8416
8417   while (1)
8418     {
8419       byte = (value & 0x7f);
8420       value >>= 7;
8421       more = !((value == 0 && (byte & 0x40) == 0)
8422                 || (value == -1 && (byte & 0x40) != 0));
8423       if (more)
8424         byte |= 0x80;
8425       CHECKSUM (byte);
8426       if (!more)
8427         break;
8428     }
8429 }
8430
8431 /* Calculate the checksum of a number in unsigned LEB128 format.  */
8432
8433 static void
8434 checksum_uleb128 (unsigned HOST_WIDE_INT value, struct md5_ctx *ctx)
8435 {
8436   while (1)
8437     {
8438       unsigned char byte = (value & 0x7f);
8439       value >>= 7;
8440       if (value != 0)
8441         /* More bytes to follow.  */
8442         byte |= 0x80;
8443       CHECKSUM (byte);
8444       if (value == 0)
8445         break;
8446     }
8447 }
8448
8449 /* Checksum the context of the DIE.  This adds the names of any
8450    surrounding namespaces or structures to the checksum.  */
8451
8452 static void
8453 checksum_die_context (dw_die_ref die, struct md5_ctx *ctx)
8454 {
8455   const char *name;
8456   dw_die_ref spec;
8457   int tag = die->die_tag;
8458
8459   if (tag != DW_TAG_namespace
8460       && tag != DW_TAG_structure_type
8461       && tag != DW_TAG_class_type)
8462     return;
8463
8464   name = get_AT_string (die, DW_AT_name);
8465
8466   spec = get_AT_ref (die, DW_AT_specification);
8467   if (spec != NULL)
8468     die = spec;
8469
8470   if (die->die_parent != NULL)
8471     checksum_die_context (die->die_parent, ctx);
8472
8473   CHECKSUM_ULEB128 ('C');
8474   CHECKSUM_ULEB128 (tag);
8475   if (name != NULL)
8476     CHECKSUM_STRING (name);
8477 }
8478
8479 /* Calculate the checksum of a location expression.  */
8480
8481 static inline void
8482 loc_checksum_ordered (dw_loc_descr_ref loc, struct md5_ctx *ctx)
8483 {
8484   /* Special case for lone DW_OP_plus_uconst: checksum as if the location
8485      were emitted as a DW_FORM_sdata instead of a location expression.  */
8486   if (loc->dw_loc_opc == DW_OP_plus_uconst && loc->dw_loc_next == NULL)
8487     {
8488       CHECKSUM_ULEB128 (DW_FORM_sdata);
8489       CHECKSUM_SLEB128 ((HOST_WIDE_INT) loc->dw_loc_oprnd1.v.val_unsigned);
8490       return;
8491     }
8492
8493   /* Otherwise, just checksum the raw location expression.  */
8494   while (loc != NULL)
8495     {
8496       CHECKSUM_ULEB128 (loc->dw_loc_opc);
8497       CHECKSUM (loc->dw_loc_oprnd1);
8498       CHECKSUM (loc->dw_loc_oprnd2);
8499       loc = loc->dw_loc_next;
8500     }
8501 }
8502
8503 /* Calculate the checksum of an attribute.  */
8504
8505 static void
8506 attr_checksum_ordered (enum dwarf_tag tag, dw_attr_ref at,
8507                        struct md5_ctx *ctx, int *mark)
8508 {
8509   dw_loc_descr_ref loc;
8510   rtx r;
8511
8512   if (AT_class (at) == dw_val_class_die_ref)
8513     {
8514       dw_die_ref target_die = AT_ref (at);
8515
8516       /* For pointer and reference types, we checksum only the (qualified)
8517          name of the target type (if there is a name).  For friend entries,
8518          we checksum only the (qualified) name of the target type or function.
8519          This allows the checksum to remain the same whether the target type
8520          is complete or not.  */
8521       if ((at->dw_attr == DW_AT_type
8522            && (tag == DW_TAG_pointer_type
8523                || tag == DW_TAG_reference_type
8524                || tag == DW_TAG_rvalue_reference_type
8525                || tag == DW_TAG_ptr_to_member_type))
8526           || (at->dw_attr == DW_AT_friend
8527               && tag == DW_TAG_friend))
8528         {
8529           dw_attr_ref name_attr = get_AT (target_die, DW_AT_name);
8530
8531           if (name_attr != NULL)
8532             {
8533               dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
8534
8535               if (decl == NULL)
8536                 decl = target_die;
8537               CHECKSUM_ULEB128 ('N');
8538               CHECKSUM_ULEB128 (at->dw_attr);
8539               if (decl->die_parent != NULL)
8540                 checksum_die_context (decl->die_parent, ctx);
8541               CHECKSUM_ULEB128 ('E');
8542               CHECKSUM_STRING (AT_string (name_attr));
8543               return;
8544             }
8545         }
8546
8547       /* For all other references to another DIE, we check to see if the
8548          target DIE has already been visited.  If it has, we emit a
8549          backward reference; if not, we descend recursively.  */
8550       if (target_die->die_mark > 0)
8551         {
8552           CHECKSUM_ULEB128 ('R');
8553           CHECKSUM_ULEB128 (at->dw_attr);
8554           CHECKSUM_ULEB128 (target_die->die_mark);
8555         }
8556       else
8557         {
8558           dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
8559
8560           if (decl == NULL)
8561             decl = target_die;
8562           target_die->die_mark = ++(*mark);
8563           CHECKSUM_ULEB128 ('T');
8564           CHECKSUM_ULEB128 (at->dw_attr);
8565           if (decl->die_parent != NULL)
8566             checksum_die_context (decl->die_parent, ctx);
8567           die_checksum_ordered (target_die, ctx, mark);
8568         }
8569       return;
8570     }
8571
8572   CHECKSUM_ULEB128 ('A');
8573   CHECKSUM_ULEB128 (at->dw_attr);
8574
8575   switch (AT_class (at))
8576     {
8577     case dw_val_class_const:
8578       CHECKSUM_ULEB128 (DW_FORM_sdata);
8579       CHECKSUM_SLEB128 (at->dw_attr_val.v.val_int);
8580       break;
8581
8582     case dw_val_class_unsigned_const:
8583       CHECKSUM_ULEB128 (DW_FORM_sdata);
8584       CHECKSUM_SLEB128 ((int) at->dw_attr_val.v.val_unsigned);
8585       break;
8586
8587     case dw_val_class_const_double:
8588       CHECKSUM_ULEB128 (DW_FORM_block);
8589       CHECKSUM_ULEB128 (sizeof (at->dw_attr_val.v.val_double));
8590       CHECKSUM (at->dw_attr_val.v.val_double);
8591       break;
8592
8593     case dw_val_class_vec:
8594       CHECKSUM_ULEB128 (DW_FORM_block);
8595       CHECKSUM_ULEB128 (sizeof (at->dw_attr_val.v.val_vec));
8596       CHECKSUM (at->dw_attr_val.v.val_vec);
8597       break;
8598
8599     case dw_val_class_flag:
8600       CHECKSUM_ULEB128 (DW_FORM_flag);
8601       CHECKSUM_ULEB128 (at->dw_attr_val.v.val_flag ? 1 : 0);
8602       break;
8603
8604     case dw_val_class_str:
8605       CHECKSUM_ULEB128 (DW_FORM_string);
8606       CHECKSUM_STRING (AT_string (at));
8607       break;
8608
8609     case dw_val_class_addr:
8610       r = AT_addr (at);
8611       gcc_assert (GET_CODE (r) == SYMBOL_REF);
8612       CHECKSUM_ULEB128 (DW_FORM_string);
8613       CHECKSUM_STRING (XSTR (r, 0));
8614       break;
8615
8616     case dw_val_class_offset:
8617       CHECKSUM_ULEB128 (DW_FORM_sdata);
8618       CHECKSUM_ULEB128 (at->dw_attr_val.v.val_offset);
8619       break;
8620
8621     case dw_val_class_loc:
8622       for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
8623         loc_checksum_ordered (loc, ctx);
8624       break;
8625
8626     case dw_val_class_fde_ref:
8627     case dw_val_class_lbl_id:
8628     case dw_val_class_lineptr:
8629     case dw_val_class_macptr:
8630       break;
8631
8632     case dw_val_class_file:
8633       CHECKSUM_ULEB128 (DW_FORM_string);
8634       CHECKSUM_STRING (AT_file (at)->filename);
8635       break;
8636
8637     case dw_val_class_data8:
8638       CHECKSUM (at->dw_attr_val.v.val_data8);
8639       break;
8640
8641     default:
8642       break;
8643     }
8644 }
8645
8646 struct checksum_attributes
8647 {
8648   dw_attr_ref at_name;
8649   dw_attr_ref at_type;
8650   dw_attr_ref at_friend;
8651   dw_attr_ref at_accessibility;
8652   dw_attr_ref at_address_class;
8653   dw_attr_ref at_allocated;
8654   dw_attr_ref at_artificial;
8655   dw_attr_ref at_associated;
8656   dw_attr_ref at_binary_scale;
8657   dw_attr_ref at_bit_offset;
8658   dw_attr_ref at_bit_size;
8659   dw_attr_ref at_bit_stride;
8660   dw_attr_ref at_byte_size;
8661   dw_attr_ref at_byte_stride;
8662   dw_attr_ref at_const_value;
8663   dw_attr_ref at_containing_type;
8664   dw_attr_ref at_count;
8665   dw_attr_ref at_data_location;
8666   dw_attr_ref at_data_member_location;
8667   dw_attr_ref at_decimal_scale;
8668   dw_attr_ref at_decimal_sign;
8669   dw_attr_ref at_default_value;
8670   dw_attr_ref at_digit_count;
8671   dw_attr_ref at_discr;
8672   dw_attr_ref at_discr_list;
8673   dw_attr_ref at_discr_value;
8674   dw_attr_ref at_encoding;
8675   dw_attr_ref at_endianity;
8676   dw_attr_ref at_explicit;
8677   dw_attr_ref at_is_optional;
8678   dw_attr_ref at_location;
8679   dw_attr_ref at_lower_bound;
8680   dw_attr_ref at_mutable;
8681   dw_attr_ref at_ordering;
8682   dw_attr_ref at_picture_string;
8683   dw_attr_ref at_prototyped;
8684   dw_attr_ref at_small;
8685   dw_attr_ref at_segment;
8686   dw_attr_ref at_string_length;
8687   dw_attr_ref at_threads_scaled;
8688   dw_attr_ref at_upper_bound;
8689   dw_attr_ref at_use_location;
8690   dw_attr_ref at_use_UTF8;
8691   dw_attr_ref at_variable_parameter;
8692   dw_attr_ref at_virtuality;
8693   dw_attr_ref at_visibility;
8694   dw_attr_ref at_vtable_elem_location;
8695 };
8696
8697 /* Collect the attributes that we will want to use for the checksum.  */
8698
8699 static void
8700 collect_checksum_attributes (struct checksum_attributes *attrs, dw_die_ref die)
8701 {
8702   dw_attr_ref a;
8703   unsigned ix;
8704
8705   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
8706     {
8707       switch (a->dw_attr)
8708         {
8709         case DW_AT_name:
8710           attrs->at_name = a;
8711           break;
8712         case DW_AT_type:
8713           attrs->at_type = a;
8714           break;
8715         case DW_AT_friend:
8716           attrs->at_friend = a;
8717           break;
8718         case DW_AT_accessibility:
8719           attrs->at_accessibility = a;
8720           break;
8721         case DW_AT_address_class:
8722           attrs->at_address_class = a;
8723           break;
8724         case DW_AT_allocated:
8725           attrs->at_allocated = a;
8726           break;
8727         case DW_AT_artificial:
8728           attrs->at_artificial = a;
8729           break;
8730         case DW_AT_associated:
8731           attrs->at_associated = a;
8732           break;
8733         case DW_AT_binary_scale:
8734           attrs->at_binary_scale = a;
8735           break;
8736         case DW_AT_bit_offset:
8737           attrs->at_bit_offset = a;
8738           break;
8739         case DW_AT_bit_size:
8740           attrs->at_bit_size = a;
8741           break;
8742         case DW_AT_bit_stride:
8743           attrs->at_bit_stride = a;
8744           break;
8745         case DW_AT_byte_size:
8746           attrs->at_byte_size = a;
8747           break;
8748         case DW_AT_byte_stride:
8749           attrs->at_byte_stride = a;
8750           break;
8751         case DW_AT_const_value:
8752           attrs->at_const_value = a;
8753           break;
8754         case DW_AT_containing_type:
8755           attrs->at_containing_type = a;
8756           break;
8757         case DW_AT_count:
8758           attrs->at_count = a;
8759           break;
8760         case DW_AT_data_location:
8761           attrs->at_data_location = a;
8762           break;
8763         case DW_AT_data_member_location:
8764           attrs->at_data_member_location = a;
8765           break;
8766         case DW_AT_decimal_scale:
8767           attrs->at_decimal_scale = a;
8768           break;
8769         case DW_AT_decimal_sign:
8770           attrs->at_decimal_sign = a;
8771           break;
8772         case DW_AT_default_value:
8773           attrs->at_default_value = a;
8774           break;
8775         case DW_AT_digit_count:
8776           attrs->at_digit_count = a;
8777           break;
8778         case DW_AT_discr:
8779           attrs->at_discr = a;
8780           break;
8781         case DW_AT_discr_list:
8782           attrs->at_discr_list = a;
8783           break;
8784         case DW_AT_discr_value:
8785           attrs->at_discr_value = a;
8786           break;
8787         case DW_AT_encoding:
8788           attrs->at_encoding = a;
8789           break;
8790         case DW_AT_endianity:
8791           attrs->at_endianity = a;
8792           break;
8793         case DW_AT_explicit:
8794           attrs->at_explicit = a;
8795           break;
8796         case DW_AT_is_optional:
8797           attrs->at_is_optional = a;
8798           break;
8799         case DW_AT_location:
8800           attrs->at_location = a;
8801           break;
8802         case DW_AT_lower_bound:
8803           attrs->at_lower_bound = a;
8804           break;
8805         case DW_AT_mutable:
8806           attrs->at_mutable = a;
8807           break;
8808         case DW_AT_ordering:
8809           attrs->at_ordering = a;
8810           break;
8811         case DW_AT_picture_string:
8812           attrs->at_picture_string = a;
8813           break;
8814         case DW_AT_prototyped:
8815           attrs->at_prototyped = a;
8816           break;
8817         case DW_AT_small:
8818           attrs->at_small = a;
8819           break;
8820         case DW_AT_segment:
8821           attrs->at_segment = a;
8822           break;
8823         case DW_AT_string_length:
8824           attrs->at_string_length = a;
8825           break;
8826         case DW_AT_threads_scaled:
8827           attrs->at_threads_scaled = a;
8828           break;
8829         case DW_AT_upper_bound:
8830           attrs->at_upper_bound = a;
8831           break;
8832         case DW_AT_use_location:
8833           attrs->at_use_location = a;
8834           break;
8835         case DW_AT_use_UTF8:
8836           attrs->at_use_UTF8 = a;
8837           break;
8838         case DW_AT_variable_parameter:
8839           attrs->at_variable_parameter = a;
8840           break;
8841         case DW_AT_virtuality:
8842           attrs->at_virtuality = a;
8843           break;
8844         case DW_AT_visibility:
8845           attrs->at_visibility = a;
8846           break;
8847         case DW_AT_vtable_elem_location:
8848           attrs->at_vtable_elem_location = a;
8849           break;
8850         default:
8851           break;
8852         }
8853     }
8854 }
8855
8856 /* Calculate the checksum of a DIE, using an ordered subset of attributes.  */
8857
8858 static void
8859 die_checksum_ordered (dw_die_ref die, struct md5_ctx *ctx, int *mark)
8860 {
8861   dw_die_ref c;
8862   dw_die_ref decl;
8863   struct checksum_attributes attrs;
8864
8865   CHECKSUM_ULEB128 ('D');
8866   CHECKSUM_ULEB128 (die->die_tag);
8867
8868   memset (&attrs, 0, sizeof (attrs));
8869
8870   decl = get_AT_ref (die, DW_AT_specification);
8871   if (decl != NULL)
8872     collect_checksum_attributes (&attrs, decl);
8873   collect_checksum_attributes (&attrs, die);
8874
8875   CHECKSUM_ATTR (attrs.at_name);
8876   CHECKSUM_ATTR (attrs.at_accessibility);
8877   CHECKSUM_ATTR (attrs.at_address_class);
8878   CHECKSUM_ATTR (attrs.at_allocated);
8879   CHECKSUM_ATTR (attrs.at_artificial);
8880   CHECKSUM_ATTR (attrs.at_associated);
8881   CHECKSUM_ATTR (attrs.at_binary_scale);
8882   CHECKSUM_ATTR (attrs.at_bit_offset);
8883   CHECKSUM_ATTR (attrs.at_bit_size);
8884   CHECKSUM_ATTR (attrs.at_bit_stride);
8885   CHECKSUM_ATTR (attrs.at_byte_size);
8886   CHECKSUM_ATTR (attrs.at_byte_stride);
8887   CHECKSUM_ATTR (attrs.at_const_value);
8888   CHECKSUM_ATTR (attrs.at_containing_type);
8889   CHECKSUM_ATTR (attrs.at_count);
8890   CHECKSUM_ATTR (attrs.at_data_location);
8891   CHECKSUM_ATTR (attrs.at_data_member_location);
8892   CHECKSUM_ATTR (attrs.at_decimal_scale);
8893   CHECKSUM_ATTR (attrs.at_decimal_sign);
8894   CHECKSUM_ATTR (attrs.at_default_value);
8895   CHECKSUM_ATTR (attrs.at_digit_count);
8896   CHECKSUM_ATTR (attrs.at_discr);
8897   CHECKSUM_ATTR (attrs.at_discr_list);
8898   CHECKSUM_ATTR (attrs.at_discr_value);
8899   CHECKSUM_ATTR (attrs.at_encoding);
8900   CHECKSUM_ATTR (attrs.at_endianity);
8901   CHECKSUM_ATTR (attrs.at_explicit);
8902   CHECKSUM_ATTR (attrs.at_is_optional);
8903   CHECKSUM_ATTR (attrs.at_location);
8904   CHECKSUM_ATTR (attrs.at_lower_bound);
8905   CHECKSUM_ATTR (attrs.at_mutable);
8906   CHECKSUM_ATTR (attrs.at_ordering);
8907   CHECKSUM_ATTR (attrs.at_picture_string);
8908   CHECKSUM_ATTR (attrs.at_prototyped);
8909   CHECKSUM_ATTR (attrs.at_small);
8910   CHECKSUM_ATTR (attrs.at_segment);
8911   CHECKSUM_ATTR (attrs.at_string_length);
8912   CHECKSUM_ATTR (attrs.at_threads_scaled);
8913   CHECKSUM_ATTR (attrs.at_upper_bound);
8914   CHECKSUM_ATTR (attrs.at_use_location);
8915   CHECKSUM_ATTR (attrs.at_use_UTF8);
8916   CHECKSUM_ATTR (attrs.at_variable_parameter);
8917   CHECKSUM_ATTR (attrs.at_virtuality);
8918   CHECKSUM_ATTR (attrs.at_visibility);
8919   CHECKSUM_ATTR (attrs.at_vtable_elem_location);
8920   CHECKSUM_ATTR (attrs.at_type);
8921   CHECKSUM_ATTR (attrs.at_friend);
8922
8923   /* Checksum the child DIEs, except for nested types and member functions.  */
8924   c = die->die_child;
8925   if (c) do {
8926     dw_attr_ref name_attr;
8927
8928     c = c->die_sib;
8929     name_attr = get_AT (c, DW_AT_name);
8930     if ((is_type_die (c) || c->die_tag == DW_TAG_subprogram)
8931         && name_attr != NULL)
8932       {
8933         CHECKSUM_ULEB128 ('S');
8934         CHECKSUM_ULEB128 (c->die_tag);
8935         CHECKSUM_STRING (AT_string (name_attr));
8936       }
8937     else
8938       {
8939         /* Mark this DIE so it gets processed when unmarking.  */
8940         if (c->die_mark == 0)
8941           c->die_mark = -1;
8942         die_checksum_ordered (c, ctx, mark);
8943       }
8944   } while (c != die->die_child);
8945
8946   CHECKSUM_ULEB128 (0);
8947 }
8948
8949 #undef CHECKSUM
8950 #undef CHECKSUM_STRING
8951 #undef CHECKSUM_ATTR
8952 #undef CHECKSUM_LEB128
8953 #undef CHECKSUM_ULEB128
8954
8955 /* Generate the type signature for DIE.  This is computed by generating an
8956    MD5 checksum over the DIE's tag, its relevant attributes, and its
8957    children.  Attributes that are references to other DIEs are processed
8958    by recursion, using the MARK field to prevent infinite recursion.
8959    If the DIE is nested inside a namespace or another type, we also
8960    need to include that context in the signature.  The lower 64 bits
8961    of the resulting MD5 checksum comprise the signature.  */
8962
8963 static void
8964 generate_type_signature (dw_die_ref die, comdat_type_node *type_node)
8965 {
8966   int mark;
8967   const char *name;
8968   unsigned char checksum[16];
8969   struct md5_ctx ctx;
8970   dw_die_ref decl;
8971
8972   name = get_AT_string (die, DW_AT_name);
8973   decl = get_AT_ref (die, DW_AT_specification);
8974
8975   /* First, compute a signature for just the type name (and its surrounding
8976      context, if any.  This is stored in the type unit DIE for link-time
8977      ODR (one-definition rule) checking.  */
8978
8979   if (is_cxx() && name != NULL)
8980     {
8981       md5_init_ctx (&ctx);
8982
8983       /* Checksum the names of surrounding namespaces and structures.  */
8984       if (decl != NULL && decl->die_parent != NULL)
8985         checksum_die_context (decl->die_parent, &ctx);
8986
8987       md5_process_bytes (&die->die_tag, sizeof (die->die_tag), &ctx);
8988       md5_process_bytes (name, strlen (name) + 1, &ctx);
8989       md5_finish_ctx (&ctx, checksum);
8990
8991       add_AT_data8 (type_node->root_die, DW_AT_GNU_odr_signature, &checksum[8]);
8992     }
8993
8994   /* Next, compute the complete type signature.  */
8995
8996   md5_init_ctx (&ctx);
8997   mark = 1;
8998   die->die_mark = mark;
8999
9000   /* Checksum the names of surrounding namespaces and structures.  */
9001   if (decl != NULL && decl->die_parent != NULL)
9002     checksum_die_context (decl->die_parent, &ctx);
9003
9004   /* Checksum the DIE and its children.  */
9005   die_checksum_ordered (die, &ctx, &mark);
9006   unmark_all_dies (die);
9007   md5_finish_ctx (&ctx, checksum);
9008
9009   /* Store the signature in the type node and link the type DIE and the
9010      type node together.  */
9011   memcpy (type_node->signature, &checksum[16 - DWARF_TYPE_SIGNATURE_SIZE],
9012           DWARF_TYPE_SIGNATURE_SIZE);
9013   die->die_id.die_type_node = type_node;
9014   type_node->type_die = die;
9015
9016   /* If the DIE is a specification, link its declaration to the type node
9017      as well.  */
9018   if (decl != NULL)
9019     decl->die_id.die_type_node = type_node;
9020 }
9021
9022 /* Do the location expressions look same?  */
9023 static inline int
9024 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
9025 {
9026   return loc1->dw_loc_opc == loc2->dw_loc_opc
9027          && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
9028          && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
9029 }
9030
9031 /* Do the values look the same?  */
9032 static int
9033 same_dw_val_p (const dw_val_node *v1, const dw_val_node *v2, int *mark)
9034 {
9035   dw_loc_descr_ref loc1, loc2;
9036   rtx r1, r2;
9037
9038   if (v1->val_class != v2->val_class)
9039     return 0;
9040
9041   switch (v1->val_class)
9042     {
9043     case dw_val_class_const:
9044       return v1->v.val_int == v2->v.val_int;
9045     case dw_val_class_unsigned_const:
9046       return v1->v.val_unsigned == v2->v.val_unsigned;
9047     case dw_val_class_const_double:
9048       return v1->v.val_double.high == v2->v.val_double.high
9049              && v1->v.val_double.low == v2->v.val_double.low;
9050     case dw_val_class_vec:
9051       if (v1->v.val_vec.length != v2->v.val_vec.length
9052           || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
9053         return 0;
9054       if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
9055                   v1->v.val_vec.length * v1->v.val_vec.elt_size))
9056         return 0;
9057       return 1;
9058     case dw_val_class_flag:
9059       return v1->v.val_flag == v2->v.val_flag;
9060     case dw_val_class_str:
9061       return !strcmp(v1->v.val_str->str, v2->v.val_str->str);
9062
9063     case dw_val_class_addr:
9064       r1 = v1->v.val_addr;
9065       r2 = v2->v.val_addr;
9066       if (GET_CODE (r1) != GET_CODE (r2))
9067         return 0;
9068       return !rtx_equal_p (r1, r2);
9069
9070     case dw_val_class_offset:
9071       return v1->v.val_offset == v2->v.val_offset;
9072
9073     case dw_val_class_loc:
9074       for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
9075            loc1 && loc2;
9076            loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
9077         if (!same_loc_p (loc1, loc2, mark))
9078           return 0;
9079       return !loc1 && !loc2;
9080
9081     case dw_val_class_die_ref:
9082       return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
9083
9084     case dw_val_class_fde_ref:
9085     case dw_val_class_lbl_id:
9086     case dw_val_class_lineptr:
9087     case dw_val_class_macptr:
9088       return 1;
9089
9090     case dw_val_class_file:
9091       return v1->v.val_file == v2->v.val_file;
9092
9093     case dw_val_class_data8:
9094       return !memcmp (v1->v.val_data8, v2->v.val_data8, 8);
9095
9096     default:
9097       return 1;
9098     }
9099 }
9100
9101 /* Do the attributes look the same?  */
9102
9103 static int
9104 same_attr_p (dw_attr_ref at1, dw_attr_ref at2, int *mark)
9105 {
9106   if (at1->dw_attr != at2->dw_attr)
9107     return 0;
9108
9109   /* We don't care that this was compiled with a different compiler
9110      snapshot; if the output is the same, that's what matters. */
9111   if (at1->dw_attr == DW_AT_producer)
9112     return 1;
9113
9114   return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
9115 }
9116
9117 /* Do the dies look the same?  */
9118
9119 static int
9120 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
9121 {
9122   dw_die_ref c1, c2;
9123   dw_attr_ref a1;
9124   unsigned ix;
9125
9126   /* To avoid infinite recursion.  */
9127   if (die1->die_mark)
9128     return die1->die_mark == die2->die_mark;
9129   die1->die_mark = die2->die_mark = ++(*mark);
9130
9131   if (die1->die_tag != die2->die_tag)
9132     return 0;
9133
9134   if (VEC_length (dw_attr_node, die1->die_attr)
9135       != VEC_length (dw_attr_node, die2->die_attr))
9136     return 0;
9137
9138   for (ix = 0; VEC_iterate (dw_attr_node, die1->die_attr, ix, a1); ix++)
9139     if (!same_attr_p (a1, VEC_index (dw_attr_node, die2->die_attr, ix), mark))
9140       return 0;
9141
9142   c1 = die1->die_child;
9143   c2 = die2->die_child;
9144   if (! c1)
9145     {
9146       if (c2)
9147         return 0;
9148     }
9149   else
9150     for (;;)
9151       {
9152         if (!same_die_p (c1, c2, mark))
9153           return 0;
9154         c1 = c1->die_sib;
9155         c2 = c2->die_sib;
9156         if (c1 == die1->die_child)
9157           {
9158             if (c2 == die2->die_child)
9159               break;
9160             else
9161               return 0;
9162           }
9163     }
9164
9165   return 1;
9166 }
9167
9168 /* Do the dies look the same?  Wrapper around same_die_p.  */
9169
9170 static int
9171 same_die_p_wrap (dw_die_ref die1, dw_die_ref die2)
9172 {
9173   int mark = 0;
9174   int ret = same_die_p (die1, die2, &mark);
9175
9176   unmark_all_dies (die1);
9177   unmark_all_dies (die2);
9178
9179   return ret;
9180 }
9181
9182 /* The prefix to attach to symbols on DIEs in the current comdat debug
9183    info section.  */
9184 static char *comdat_symbol_id;
9185
9186 /* The index of the current symbol within the current comdat CU.  */
9187 static unsigned int comdat_symbol_number;
9188
9189 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
9190    children, and set comdat_symbol_id accordingly.  */
9191
9192 static void
9193 compute_section_prefix (dw_die_ref unit_die)
9194 {
9195   const char *die_name = get_AT_string (unit_die, DW_AT_name);
9196   const char *base = die_name ? lbasename (die_name) : "anonymous";
9197   char *name = XALLOCAVEC (char, strlen (base) + 64);
9198   char *p;
9199   int i, mark;
9200   unsigned char checksum[16];
9201   struct md5_ctx ctx;
9202
9203   /* Compute the checksum of the DIE, then append part of it as hex digits to
9204      the name filename of the unit.  */
9205
9206   md5_init_ctx (&ctx);
9207   mark = 0;
9208   die_checksum (unit_die, &ctx, &mark);
9209   unmark_all_dies (unit_die);
9210   md5_finish_ctx (&ctx, checksum);
9211
9212   sprintf (name, "%s.", base);
9213   clean_symbol_name (name);
9214
9215   p = name + strlen (name);
9216   for (i = 0; i < 4; i++)
9217     {
9218       sprintf (p, "%.2x", checksum[i]);
9219       p += 2;
9220     }
9221
9222   comdat_symbol_id = unit_die->die_id.die_symbol = xstrdup (name);
9223   comdat_symbol_number = 0;
9224 }
9225
9226 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P.  */
9227
9228 static int
9229 is_type_die (dw_die_ref die)
9230 {
9231   switch (die->die_tag)
9232     {
9233     case DW_TAG_array_type:
9234     case DW_TAG_class_type:
9235     case DW_TAG_interface_type:
9236     case DW_TAG_enumeration_type:
9237     case DW_TAG_pointer_type:
9238     case DW_TAG_reference_type:
9239     case DW_TAG_rvalue_reference_type:
9240     case DW_TAG_string_type:
9241     case DW_TAG_structure_type:
9242     case DW_TAG_subroutine_type:
9243     case DW_TAG_union_type:
9244     case DW_TAG_ptr_to_member_type:
9245     case DW_TAG_set_type:
9246     case DW_TAG_subrange_type:
9247     case DW_TAG_base_type:
9248     case DW_TAG_const_type:
9249     case DW_TAG_file_type:
9250     case DW_TAG_packed_type:
9251     case DW_TAG_volatile_type:
9252     case DW_TAG_typedef:
9253       return 1;
9254     default:
9255       return 0;
9256     }
9257 }
9258
9259 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
9260    Basically, we want to choose the bits that are likely to be shared between
9261    compilations (types) and leave out the bits that are specific to individual
9262    compilations (functions).  */
9263
9264 static int
9265 is_comdat_die (dw_die_ref c)
9266 {
9267   /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
9268      we do for stabs.  The advantage is a greater likelihood of sharing between
9269      objects that don't include headers in the same order (and therefore would
9270      put the base types in a different comdat).  jason 8/28/00 */
9271
9272   if (c->die_tag == DW_TAG_base_type)
9273     return 0;
9274
9275   if (c->die_tag == DW_TAG_pointer_type
9276       || c->die_tag == DW_TAG_reference_type
9277       || c->die_tag == DW_TAG_rvalue_reference_type
9278       || c->die_tag == DW_TAG_const_type
9279       || c->die_tag == DW_TAG_volatile_type)
9280     {
9281       dw_die_ref t = get_AT_ref (c, DW_AT_type);
9282
9283       return t ? is_comdat_die (t) : 0;
9284     }
9285
9286   return is_type_die (c);
9287 }
9288
9289 /* Returns 1 iff C is the sort of DIE that might be referred to from another
9290    compilation unit.  */
9291
9292 static int
9293 is_symbol_die (dw_die_ref c)
9294 {
9295   return (is_type_die (c)
9296           || is_declaration_die (c)
9297           || c->die_tag == DW_TAG_namespace
9298           || c->die_tag == DW_TAG_module);
9299 }
9300
9301 static char *
9302 gen_internal_sym (const char *prefix)
9303 {
9304   char buf[256];
9305
9306   ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
9307   return xstrdup (buf);
9308 }
9309
9310 /* Assign symbols to all worthy DIEs under DIE.  */
9311
9312 static void
9313 assign_symbol_names (dw_die_ref die)
9314 {
9315   dw_die_ref c;
9316
9317   if (is_symbol_die (die))
9318     {
9319       if (comdat_symbol_id)
9320         {
9321           char *p = XALLOCAVEC (char, strlen (comdat_symbol_id) + 64);
9322
9323           sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
9324                    comdat_symbol_id, comdat_symbol_number++);
9325           die->die_id.die_symbol = xstrdup (p);
9326         }
9327       else
9328         die->die_id.die_symbol = gen_internal_sym ("LDIE");
9329     }
9330
9331   FOR_EACH_CHILD (die, c, assign_symbol_names (c));
9332 }
9333
9334 struct cu_hash_table_entry
9335 {
9336   dw_die_ref cu;
9337   unsigned min_comdat_num, max_comdat_num;
9338   struct cu_hash_table_entry *next;
9339 };
9340
9341 /* Routines to manipulate hash table of CUs.  */
9342 static hashval_t
9343 htab_cu_hash (const void *of)
9344 {
9345   const struct cu_hash_table_entry *const entry =
9346     (const struct cu_hash_table_entry *) of;
9347
9348   return htab_hash_string (entry->cu->die_id.die_symbol);
9349 }
9350
9351 static int
9352 htab_cu_eq (const void *of1, const void *of2)
9353 {
9354   const struct cu_hash_table_entry *const entry1 =
9355     (const struct cu_hash_table_entry *) of1;
9356   const struct die_struct *const entry2 = (const struct die_struct *) of2;
9357
9358   return !strcmp (entry1->cu->die_id.die_symbol, entry2->die_id.die_symbol);
9359 }
9360
9361 static void
9362 htab_cu_del (void *what)
9363 {
9364   struct cu_hash_table_entry *next,
9365     *entry = (struct cu_hash_table_entry *) what;
9366
9367   while (entry)
9368     {
9369       next = entry->next;
9370       free (entry);
9371       entry = next;
9372     }
9373 }
9374
9375 /* Check whether we have already seen this CU and set up SYM_NUM
9376    accordingly.  */
9377 static int
9378 check_duplicate_cu (dw_die_ref cu, htab_t htable, unsigned int *sym_num)
9379 {
9380   struct cu_hash_table_entry dummy;
9381   struct cu_hash_table_entry **slot, *entry, *last = &dummy;
9382
9383   dummy.max_comdat_num = 0;
9384
9385   slot = (struct cu_hash_table_entry **)
9386     htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_id.die_symbol),
9387         INSERT);
9388   entry = *slot;
9389
9390   for (; entry; last = entry, entry = entry->next)
9391     {
9392       if (same_die_p_wrap (cu, entry->cu))
9393         break;
9394     }
9395
9396   if (entry)
9397     {
9398       *sym_num = entry->min_comdat_num;
9399       return 1;
9400     }
9401
9402   entry = XCNEW (struct cu_hash_table_entry);
9403   entry->cu = cu;
9404   entry->min_comdat_num = *sym_num = last->max_comdat_num;
9405   entry->next = *slot;
9406   *slot = entry;
9407
9408   return 0;
9409 }
9410
9411 /* Record SYM_NUM to record of CU in HTABLE.  */
9412 static void
9413 record_comdat_symbol_number (dw_die_ref cu, htab_t htable, unsigned int sym_num)
9414 {
9415   struct cu_hash_table_entry **slot, *entry;
9416
9417   slot = (struct cu_hash_table_entry **)
9418     htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_id.die_symbol),
9419         NO_INSERT);
9420   entry = *slot;
9421
9422   entry->max_comdat_num = sym_num;
9423 }
9424
9425 /* Traverse the DIE (which is always comp_unit_die), and set up
9426    additional compilation units for each of the include files we see
9427    bracketed by BINCL/EINCL.  */
9428
9429 static void
9430 break_out_includes (dw_die_ref die)
9431 {
9432   dw_die_ref c;
9433   dw_die_ref unit = NULL;
9434   limbo_die_node *node, **pnode;
9435   htab_t cu_hash_table;
9436
9437   c = die->die_child;
9438   if (c) do {
9439     dw_die_ref prev = c;
9440     c = c->die_sib;
9441     while (c->die_tag == DW_TAG_GNU_BINCL || c->die_tag == DW_TAG_GNU_EINCL
9442            || (unit && is_comdat_die (c)))
9443       {
9444         dw_die_ref next = c->die_sib;
9445
9446         /* This DIE is for a secondary CU; remove it from the main one.  */
9447         remove_child_with_prev (c, prev);
9448
9449         if (c->die_tag == DW_TAG_GNU_BINCL)
9450           unit = push_new_compile_unit (unit, c);
9451         else if (c->die_tag == DW_TAG_GNU_EINCL)
9452           unit = pop_compile_unit (unit);
9453         else
9454           add_child_die (unit, c);
9455         c = next;
9456         if (c == die->die_child)
9457           break;
9458       }
9459   } while (c != die->die_child);
9460
9461 #if 0
9462   /* We can only use this in debugging, since the frontend doesn't check
9463      to make sure that we leave every include file we enter.  */
9464   gcc_assert (!unit);
9465 #endif
9466
9467   assign_symbol_names (die);
9468   cu_hash_table = htab_create (10, htab_cu_hash, htab_cu_eq, htab_cu_del);
9469   for (node = limbo_die_list, pnode = &limbo_die_list;
9470        node;
9471        node = node->next)
9472     {
9473       int is_dupl;
9474
9475       compute_section_prefix (node->die);
9476       is_dupl = check_duplicate_cu (node->die, cu_hash_table,
9477                         &comdat_symbol_number);
9478       assign_symbol_names (node->die);
9479       if (is_dupl)
9480         *pnode = node->next;
9481       else
9482         {
9483           pnode = &node->next;
9484           record_comdat_symbol_number (node->die, cu_hash_table,
9485                 comdat_symbol_number);
9486         }
9487     }
9488   htab_delete (cu_hash_table);
9489 }
9490
9491 /* Return non-zero if this DIE is a declaration.  */
9492
9493 static int
9494 is_declaration_die (dw_die_ref die)
9495 {
9496   dw_attr_ref a;
9497   unsigned ix;
9498
9499   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9500     if (a->dw_attr == DW_AT_declaration)
9501       return 1;
9502
9503   return 0;
9504 }
9505
9506 /* Return non-zero if this is a type DIE that should be moved to a
9507    COMDAT .debug_types section.  */
9508
9509 static int
9510 should_move_die_to_comdat (dw_die_ref die)
9511 {
9512   switch (die->die_tag)
9513     {
9514     case DW_TAG_class_type:
9515     case DW_TAG_structure_type:
9516     case DW_TAG_enumeration_type:
9517     case DW_TAG_union_type:
9518       /* Don't move declarations or inlined instances.  */
9519       if (is_declaration_die (die) || get_AT (die, DW_AT_abstract_origin))
9520         return 0;
9521       return 1;
9522     case DW_TAG_array_type:
9523     case DW_TAG_interface_type:
9524     case DW_TAG_pointer_type:
9525     case DW_TAG_reference_type:
9526     case DW_TAG_rvalue_reference_type:
9527     case DW_TAG_string_type:
9528     case DW_TAG_subroutine_type:
9529     case DW_TAG_ptr_to_member_type:
9530     case DW_TAG_set_type:
9531     case DW_TAG_subrange_type:
9532     case DW_TAG_base_type:
9533     case DW_TAG_const_type:
9534     case DW_TAG_file_type:
9535     case DW_TAG_packed_type:
9536     case DW_TAG_volatile_type:
9537     case DW_TAG_typedef:
9538     default:
9539       return 0;
9540     }
9541 }
9542
9543 /* Make a clone of DIE.  */
9544
9545 static dw_die_ref
9546 clone_die (dw_die_ref die)
9547 {
9548   dw_die_ref clone;
9549   dw_attr_ref a;
9550   unsigned ix;
9551
9552   clone = GGC_CNEW (die_node);
9553   clone->die_tag = die->die_tag;
9554
9555   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9556     add_dwarf_attr (clone, a);
9557
9558   return clone;
9559 }
9560
9561 /* Make a clone of the tree rooted at DIE.  */
9562
9563 static dw_die_ref
9564 clone_tree (dw_die_ref die)
9565 {
9566   dw_die_ref c;
9567   dw_die_ref clone = clone_die (die);
9568
9569   FOR_EACH_CHILD (die, c, add_child_die (clone, clone_tree(c)));
9570
9571   return clone;
9572 }
9573
9574 /* Make a clone of DIE as a declaration.  */
9575
9576 static dw_die_ref
9577 clone_as_declaration (dw_die_ref die)
9578 {
9579   dw_die_ref clone;
9580   dw_die_ref decl;
9581   dw_attr_ref a;
9582   unsigned ix;
9583
9584   /* If the DIE is already a declaration, just clone it.  */
9585   if (is_declaration_die (die))
9586     return clone_die (die);
9587
9588   /* If the DIE is a specification, just clone its declaration DIE.  */
9589   decl = get_AT_ref (die, DW_AT_specification);
9590   if (decl != NULL)
9591     return clone_die (decl);
9592
9593   clone = GGC_CNEW (die_node);
9594   clone->die_tag = die->die_tag;
9595
9596   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9597     {
9598       /* We don't want to copy over all attributes.
9599          For example we don't want DW_AT_byte_size because otherwise we will no
9600          longer have a declaration and GDB will treat it as a definition.  */
9601
9602       switch (a->dw_attr)
9603         {
9604         case DW_AT_artificial:
9605         case DW_AT_containing_type:
9606         case DW_AT_external:
9607         case DW_AT_name:
9608         case DW_AT_type:
9609         case DW_AT_virtuality:
9610         case DW_AT_linkage_name:
9611         case DW_AT_MIPS_linkage_name:
9612           add_dwarf_attr (clone, a);
9613           break;
9614         case DW_AT_byte_size:
9615         default:
9616           break;
9617         }
9618     }
9619
9620   if (die->die_id.die_type_node)
9621     add_AT_die_ref (clone, DW_AT_signature, die);
9622
9623   add_AT_flag (clone, DW_AT_declaration, 1);
9624   return clone;
9625 }
9626
9627 /* Copy the declaration context to the new compile unit DIE.  This includes
9628    any surrounding namespace or type declarations.  If the DIE has an
9629    AT_specification attribute, it also includes attributes and children
9630    attached to the specification.  */
9631
9632 static void
9633 copy_declaration_context (dw_die_ref unit, dw_die_ref die)
9634 {
9635   dw_die_ref decl;
9636   dw_die_ref new_decl;
9637
9638   decl = get_AT_ref (die, DW_AT_specification);
9639   if (decl == NULL)
9640     decl = die;
9641   else
9642     {
9643       unsigned ix;
9644       dw_die_ref c;
9645       dw_attr_ref a;
9646
9647       /* Copy the type node pointer from the new DIE to the original
9648          declaration DIE so we can forward references later.  */
9649       decl->die_id.die_type_node = die->die_id.die_type_node;
9650
9651       remove_AT (die, DW_AT_specification);
9652
9653       for (ix = 0; VEC_iterate (dw_attr_node, decl->die_attr, ix, a); ix++)
9654         {
9655           if (a->dw_attr != DW_AT_name
9656               && a->dw_attr != DW_AT_declaration
9657               && a->dw_attr != DW_AT_external)
9658             add_dwarf_attr (die, a);
9659         }
9660
9661       FOR_EACH_CHILD (decl, c, add_child_die (die, clone_tree(c)));
9662     }
9663
9664   if (decl->die_parent != NULL
9665       && decl->die_parent->die_tag != DW_TAG_compile_unit
9666       && decl->die_parent->die_tag != DW_TAG_type_unit)
9667     {
9668       new_decl = copy_ancestor_tree (unit, decl, NULL);
9669       if (new_decl != NULL)
9670         {
9671           remove_AT (new_decl, DW_AT_signature);
9672           add_AT_specification (die, new_decl);
9673         }
9674     }
9675 }
9676
9677 /* Generate the skeleton ancestor tree for the given NODE, then clone
9678    the DIE and add the clone into the tree.  */
9679
9680 static void
9681 generate_skeleton_ancestor_tree (skeleton_chain_node *node)
9682 {
9683   if (node->new_die != NULL)
9684     return;
9685
9686   node->new_die = clone_as_declaration (node->old_die);
9687
9688   if (node->parent != NULL)
9689     {
9690       generate_skeleton_ancestor_tree (node->parent);
9691       add_child_die (node->parent->new_die, node->new_die);
9692     }
9693 }
9694
9695 /* Generate a skeleton tree of DIEs containing any declarations that are
9696    found in the original tree.  We traverse the tree looking for declaration
9697    DIEs, and construct the skeleton from the bottom up whenever we find one.  */
9698
9699 static void
9700 generate_skeleton_bottom_up (skeleton_chain_node *parent)
9701 {
9702   skeleton_chain_node node;
9703   dw_die_ref c;
9704   dw_die_ref first;
9705   dw_die_ref prev = NULL;
9706   dw_die_ref next = NULL;
9707
9708   node.parent = parent;
9709
9710   first = c = parent->old_die->die_child;
9711   if (c)
9712     next = c->die_sib;
9713   if (c) do {
9714     if (prev == NULL || prev->die_sib == c)
9715       prev = c;
9716     c = next;
9717     next = (c == first ? NULL : c->die_sib);
9718     node.old_die = c;
9719     node.new_die = NULL;
9720     if (is_declaration_die (c))
9721       {
9722         /* Clone the existing DIE, move the original to the skeleton
9723            tree (which is in the main CU), and put the clone, with
9724            all the original's children, where the original came from.  */
9725         dw_die_ref clone = clone_die (c);
9726         move_all_children (c, clone);
9727
9728         replace_child (c, clone, prev);
9729         generate_skeleton_ancestor_tree (parent);
9730         add_child_die (parent->new_die, c);
9731         node.new_die = c;
9732         c = clone;
9733       }
9734     generate_skeleton_bottom_up (&node);
9735   } while (next != NULL);
9736 }
9737
9738 /* Wrapper function for generate_skeleton_bottom_up.  */
9739
9740 static dw_die_ref
9741 generate_skeleton (dw_die_ref die)
9742 {
9743   skeleton_chain_node node;
9744
9745   node.old_die = die;
9746   node.new_die = NULL;
9747   node.parent = NULL;
9748
9749   /* If this type definition is nested inside another type,
9750      always leave at least a declaration in its place.  */
9751   if (die->die_parent != NULL && is_type_die (die->die_parent))
9752     node.new_die = clone_as_declaration (die);
9753
9754   generate_skeleton_bottom_up (&node);
9755   return node.new_die;
9756 }
9757
9758 /* Remove the DIE from its parent, possibly replacing it with a cloned
9759    declaration.  The original DIE will be moved to a new compile unit
9760    so that existing references to it follow it to the new location.  If
9761    any of the original DIE's descendants is a declaration, we need to
9762    replace the original DIE with a skeleton tree and move the
9763    declarations back into the skeleton tree.  */
9764
9765 static dw_die_ref
9766 remove_child_or_replace_with_skeleton (dw_die_ref child, dw_die_ref prev)
9767 {
9768   dw_die_ref skeleton;
9769
9770   skeleton = generate_skeleton (child);
9771   if (skeleton == NULL)
9772     remove_child_with_prev (child, prev);
9773   else
9774     {
9775       skeleton->die_id.die_type_node = child->die_id.die_type_node;
9776       replace_child (child, skeleton, prev);
9777     }
9778
9779   return skeleton;
9780 }
9781
9782 /* Traverse the DIE and set up additional .debug_types sections for each
9783    type worthy of being placed in a COMDAT section.  */
9784
9785 static void
9786 break_out_comdat_types (dw_die_ref die)
9787 {
9788   dw_die_ref c;
9789   dw_die_ref first;
9790   dw_die_ref prev = NULL;
9791   dw_die_ref next = NULL;
9792   dw_die_ref unit = NULL;
9793
9794   first = c = die->die_child;
9795   if (c)
9796     next = c->die_sib;
9797   if (c) do {
9798     if (prev == NULL || prev->die_sib == c)
9799       prev = c;
9800     c = next;
9801     next = (c == first ? NULL : c->die_sib);
9802     if (should_move_die_to_comdat (c))
9803       {
9804         dw_die_ref replacement;
9805         comdat_type_node_ref type_node;
9806
9807         /* Create a new type unit DIE as the root for the new tree, and
9808            add it to the list of comdat types.  */
9809         unit = new_die (DW_TAG_type_unit, NULL, NULL);
9810         add_AT_unsigned (unit, DW_AT_language,
9811                          get_AT_unsigned (comp_unit_die, DW_AT_language));
9812         type_node = GGC_CNEW (comdat_type_node);
9813         type_node->root_die = unit;
9814         type_node->next = comdat_type_list;
9815         comdat_type_list = type_node;
9816
9817         /* Generate the type signature.  */
9818         generate_type_signature (c, type_node);
9819
9820         /* Copy the declaration context, attributes, and children of the
9821            declaration into the new compile unit DIE.  */
9822         copy_declaration_context (unit, c);
9823
9824         /* Remove this DIE from the main CU.  */
9825         replacement = remove_child_or_replace_with_skeleton (c, prev);
9826
9827         /* Break out nested types into their own type units.  */
9828         break_out_comdat_types (c);
9829
9830         /* Add the DIE to the new compunit.  */
9831         add_child_die (unit, c);
9832
9833         if (replacement != NULL)
9834           c = replacement;
9835       }
9836     else if (c->die_tag == DW_TAG_namespace
9837              || c->die_tag == DW_TAG_class_type
9838              || c->die_tag == DW_TAG_structure_type
9839              || c->die_tag == DW_TAG_union_type)
9840       {
9841         /* Look for nested types that can be broken out.  */
9842         break_out_comdat_types (c);
9843       }
9844   } while (next != NULL);
9845 }
9846
9847 /* Structure to map a DIE in one CU to its copy in a comdat type unit.  */
9848
9849 struct decl_table_entry
9850 {
9851   dw_die_ref orig;
9852   dw_die_ref copy;
9853 };
9854
9855 /* Routines to manipulate hash table of copied declarations.  */
9856
9857 static hashval_t
9858 htab_decl_hash (const void *of)
9859 {
9860   const struct decl_table_entry *const entry =
9861     (const struct decl_table_entry *) of;
9862
9863   return htab_hash_pointer (entry->orig);
9864 }
9865
9866 static int
9867 htab_decl_eq (const void *of1, const void *of2)
9868 {
9869   const struct decl_table_entry *const entry1 =
9870     (const struct decl_table_entry *) of1;
9871   const struct die_struct *const entry2 = (const struct die_struct *) of2;
9872
9873   return entry1->orig == entry2;
9874 }
9875
9876 static void
9877 htab_decl_del (void *what)
9878 {
9879   struct decl_table_entry *entry = (struct decl_table_entry *) what;
9880
9881   free (entry);
9882 }
9883
9884 /* Copy DIE and its ancestors, up to, but not including, the compile unit
9885    or type unit entry, to a new tree.  Adds the new tree to UNIT and returns
9886    a pointer to the copy of DIE.  If DECL_TABLE is provided, it is used
9887    to check if the ancestor has already been copied into UNIT.  */
9888
9889 static dw_die_ref
9890 copy_ancestor_tree (dw_die_ref unit, dw_die_ref die, htab_t decl_table)
9891 {
9892   dw_die_ref parent = die->die_parent;
9893   dw_die_ref new_parent = unit;
9894   dw_die_ref copy;
9895   void **slot = NULL;
9896   struct decl_table_entry *entry = NULL;
9897
9898   if (decl_table)
9899     {
9900       /* Check if the entry has already been copied to UNIT.  */
9901       slot = htab_find_slot_with_hash (decl_table, die,
9902                                        htab_hash_pointer (die), INSERT);
9903       if (*slot != HTAB_EMPTY_ENTRY)
9904         {
9905           entry = (struct decl_table_entry *) *slot;
9906           return entry->copy;
9907         }
9908
9909       /* Record in DECL_TABLE that DIE has been copied to UNIT.  */
9910       entry = XCNEW (struct decl_table_entry);
9911       entry->orig = die;
9912       entry->copy = NULL;
9913       *slot = entry;
9914     }
9915
9916   if (parent != NULL)
9917     {
9918       dw_die_ref spec = get_AT_ref (parent, DW_AT_specification);
9919       if (spec != NULL)
9920         parent = spec;
9921       if (parent->die_tag != DW_TAG_compile_unit
9922           && parent->die_tag != DW_TAG_type_unit)
9923         new_parent = copy_ancestor_tree (unit, parent, decl_table);
9924     }
9925
9926   copy = clone_as_declaration (die);
9927   add_child_die (new_parent, copy);
9928
9929   if (decl_table != NULL)
9930     {
9931       /* Make sure the copy is marked as part of the type unit.  */
9932       copy->die_mark = 1;
9933       /* Record the pointer to the copy.  */
9934       entry->copy = copy;
9935     }
9936
9937   return copy;
9938 }
9939
9940 /* Walk the DIE and its children, looking for references to incomplete
9941    or trivial types that are unmarked (i.e., that are not in the current
9942    type_unit).  */
9943
9944 static void
9945 copy_decls_walk (dw_die_ref unit, dw_die_ref die, htab_t decl_table)
9946 {
9947   dw_die_ref c;
9948   dw_attr_ref a;
9949   unsigned ix;
9950
9951   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
9952     {
9953       if (AT_class (a) == dw_val_class_die_ref)
9954         {
9955           dw_die_ref targ = AT_ref (a);
9956           comdat_type_node_ref type_node = targ->die_id.die_type_node;
9957           void **slot;
9958           struct decl_table_entry *entry;
9959
9960           if (targ->die_mark != 0 || type_node != NULL)
9961             continue;
9962
9963           slot = htab_find_slot_with_hash (decl_table, targ,
9964                                            htab_hash_pointer (targ), INSERT);
9965
9966           if (*slot != HTAB_EMPTY_ENTRY)
9967             {
9968               /* TARG has already been copied, so we just need to
9969                  modify the reference to point to the copy.  */
9970               entry = (struct decl_table_entry *) *slot;
9971               a->dw_attr_val.v.val_die_ref.die = entry->copy;
9972             }
9973           else
9974             {
9975               dw_die_ref parent = unit;
9976               dw_die_ref copy = clone_tree (targ);
9977
9978               /* Make sure the cloned tree is marked as part of the
9979                  type unit.  */
9980               mark_dies (copy);
9981
9982               /* Record in DECL_TABLE that TARG has been copied.
9983                  Need to do this now, before the recursive call,
9984                  because DECL_TABLE may be expanded and SLOT
9985                  would no longer be a valid pointer.  */
9986               entry = XCNEW (struct decl_table_entry);
9987               entry->orig = targ;
9988               entry->copy = copy;
9989               *slot = entry;
9990
9991               /* If TARG has surrounding context, copy its ancestor tree
9992                  into the new type unit.  */
9993               if (targ->die_parent != NULL
9994                   && targ->die_parent->die_tag != DW_TAG_compile_unit
9995                   && targ->die_parent->die_tag != DW_TAG_type_unit)
9996                 parent = copy_ancestor_tree (unit, targ->die_parent,
9997                                              decl_table);
9998
9999               add_child_die (parent, copy);
10000               a->dw_attr_val.v.val_die_ref.die = copy;
10001
10002               /* Make sure the newly-copied DIE is walked.  If it was
10003                  installed in a previously-added context, it won't
10004                  get visited otherwise.  */
10005               if (parent != unit)
10006                 copy_decls_walk (unit, parent, decl_table);
10007             }
10008         }
10009     }
10010
10011   FOR_EACH_CHILD (die, c, copy_decls_walk (unit, c, decl_table));
10012 }
10013
10014 /* Copy declarations for "unworthy" types into the new comdat section.
10015    Incomplete types, modified types, and certain other types aren't broken
10016    out into comdat sections of their own, so they don't have a signature,
10017    and we need to copy the declaration into the same section so that we
10018    don't have an external reference.  */
10019
10020 static void
10021 copy_decls_for_unworthy_types (dw_die_ref unit)
10022 {
10023   htab_t decl_table;
10024
10025   mark_dies (unit);
10026   decl_table = htab_create (10, htab_decl_hash, htab_decl_eq, htab_decl_del);
10027   copy_decls_walk (unit, unit, decl_table);
10028   htab_delete (decl_table);
10029   unmark_dies (unit);
10030 }
10031
10032 /* Traverse the DIE and add a sibling attribute if it may have the
10033    effect of speeding up access to siblings.  To save some space,
10034    avoid generating sibling attributes for DIE's without children.  */
10035
10036 static void
10037 add_sibling_attributes (dw_die_ref die)
10038 {
10039   dw_die_ref c;
10040
10041   if (! die->die_child)
10042     return;
10043
10044   if (die->die_parent && die != die->die_parent->die_child)
10045     add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
10046
10047   FOR_EACH_CHILD (die, c, add_sibling_attributes (c));
10048 }
10049
10050 /* Output all location lists for the DIE and its children.  */
10051
10052 static void
10053 output_location_lists (dw_die_ref die)
10054 {
10055   dw_die_ref c;
10056   dw_attr_ref a;
10057   unsigned ix;
10058
10059   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
10060     if (AT_class (a) == dw_val_class_loc_list)
10061       output_loc_list (AT_loc_list (a));
10062
10063   FOR_EACH_CHILD (die, c, output_location_lists (c));
10064 }
10065
10066 /* The format of each DIE (and its attribute value pairs) is encoded in an
10067    abbreviation table.  This routine builds the abbreviation table and assigns
10068    a unique abbreviation id for each abbreviation entry.  The children of each
10069    die are visited recursively.  */
10070
10071 static void
10072 build_abbrev_table (dw_die_ref die)
10073 {
10074   unsigned long abbrev_id;
10075   unsigned int n_alloc;
10076   dw_die_ref c;
10077   dw_attr_ref a;
10078   unsigned ix;
10079
10080   /* Scan the DIE references, and mark as external any that refer to
10081      DIEs from other CUs (i.e. those which are not marked).  */
10082   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
10083     if (AT_class (a) == dw_val_class_die_ref
10084         && AT_ref (a)->die_mark == 0)
10085       {
10086         gcc_assert (dwarf_version >= 4 || AT_ref (a)->die_id.die_symbol);
10087         set_AT_ref_external (a, 1);
10088       }
10089
10090   for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
10091     {
10092       dw_die_ref abbrev = abbrev_die_table[abbrev_id];
10093       dw_attr_ref die_a, abbrev_a;
10094       unsigned ix;
10095       bool ok = true;
10096
10097       if (abbrev->die_tag != die->die_tag)
10098         continue;
10099       if ((abbrev->die_child != NULL) != (die->die_child != NULL))
10100         continue;
10101
10102       if (VEC_length (dw_attr_node, abbrev->die_attr)
10103           != VEC_length (dw_attr_node, die->die_attr))
10104         continue;
10105
10106       for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, die_a); ix++)
10107         {
10108           abbrev_a = VEC_index (dw_attr_node, abbrev->die_attr, ix);
10109           if ((abbrev_a->dw_attr != die_a->dw_attr)
10110               || (value_format (abbrev_a) != value_format (die_a)))
10111             {
10112               ok = false;
10113               break;
10114             }
10115         }
10116       if (ok)
10117         break;
10118     }
10119
10120   if (abbrev_id >= abbrev_die_table_in_use)
10121     {
10122       if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
10123         {
10124           n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
10125           abbrev_die_table = GGC_RESIZEVEC (dw_die_ref, abbrev_die_table,
10126                                             n_alloc);
10127
10128           memset (&abbrev_die_table[abbrev_die_table_allocated], 0,
10129                  (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
10130           abbrev_die_table_allocated = n_alloc;
10131         }
10132
10133       ++abbrev_die_table_in_use;
10134       abbrev_die_table[abbrev_id] = die;
10135     }
10136
10137   die->die_abbrev = abbrev_id;
10138   FOR_EACH_CHILD (die, c, build_abbrev_table (c));
10139 }
10140 \f
10141 /* Return the power-of-two number of bytes necessary to represent VALUE.  */
10142
10143 static int
10144 constant_size (unsigned HOST_WIDE_INT value)
10145 {
10146   int log;
10147
10148   if (value == 0)
10149     log = 0;
10150   else
10151     log = floor_log2 (value);
10152
10153   log = log / 8;
10154   log = 1 << (floor_log2 (log) + 1);
10155
10156   return log;
10157 }
10158
10159 /* Return the size of a DIE as it is represented in the
10160    .debug_info section.  */
10161
10162 static unsigned long
10163 size_of_die (dw_die_ref die)
10164 {
10165   unsigned long size = 0;
10166   dw_attr_ref a;
10167   unsigned ix;
10168
10169   size += size_of_uleb128 (die->die_abbrev);
10170   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
10171     {
10172       switch (AT_class (a))
10173         {
10174         case dw_val_class_addr:
10175           size += DWARF2_ADDR_SIZE;
10176           break;
10177         case dw_val_class_offset:
10178           size += DWARF_OFFSET_SIZE;
10179           break;
10180         case dw_val_class_loc:
10181           {
10182             unsigned long lsize = size_of_locs (AT_loc (a));
10183
10184             /* Block length.  */
10185             if (dwarf_version >= 4)
10186               size += size_of_uleb128 (lsize);
10187             else
10188               size += constant_size (lsize);
10189             size += lsize;
10190           }
10191           break;
10192         case dw_val_class_loc_list:
10193           size += DWARF_OFFSET_SIZE;
10194           break;
10195         case dw_val_class_range_list:
10196           size += DWARF_OFFSET_SIZE;
10197           break;
10198         case dw_val_class_const:
10199           size += size_of_sleb128 (AT_int (a));
10200           break;
10201         case dw_val_class_unsigned_const:
10202           size += constant_size (AT_unsigned (a));
10203           break;
10204         case dw_val_class_const_double:
10205           size += 2 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
10206           if (HOST_BITS_PER_WIDE_INT >= 64)
10207             size++; /* block */
10208           break;
10209         case dw_val_class_vec:
10210           size += constant_size (a->dw_attr_val.v.val_vec.length
10211                                  * a->dw_attr_val.v.val_vec.elt_size)
10212                   + a->dw_attr_val.v.val_vec.length
10213                     * a->dw_attr_val.v.val_vec.elt_size; /* block */
10214           break;
10215         case dw_val_class_flag:
10216           if (dwarf_version >= 4)
10217             /* Currently all add_AT_flag calls pass in 1 as last argument,
10218                so DW_FORM_flag_present can be used.  If that ever changes,
10219                we'll need to use DW_FORM_flag and have some optimization
10220                in build_abbrev_table that will change those to
10221                DW_FORM_flag_present if it is set to 1 in all DIEs using
10222                the same abbrev entry.  */
10223             gcc_assert (a->dw_attr_val.v.val_flag == 1);
10224           else
10225             size += 1;
10226           break;
10227         case dw_val_class_die_ref:
10228           if (AT_ref_external (a))
10229             {
10230               /* In DWARF4, we use DW_FORM_sig8; for earlier versions
10231                  we use DW_FORM_ref_addr.  In DWARF2, DW_FORM_ref_addr
10232                  is sized by target address length, whereas in DWARF3
10233                  it's always sized as an offset.  */
10234               if (dwarf_version >= 4)
10235                 size += DWARF_TYPE_SIGNATURE_SIZE;
10236               else if (dwarf_version == 2)
10237                 size += DWARF2_ADDR_SIZE;
10238               else
10239                 size += DWARF_OFFSET_SIZE;
10240             }
10241           else
10242             size += DWARF_OFFSET_SIZE;
10243           break;
10244         case dw_val_class_fde_ref:
10245           size += DWARF_OFFSET_SIZE;
10246           break;
10247         case dw_val_class_lbl_id:
10248           size += DWARF2_ADDR_SIZE;
10249           break;
10250         case dw_val_class_lineptr:
10251         case dw_val_class_macptr:
10252           size += DWARF_OFFSET_SIZE;
10253           break;
10254         case dw_val_class_str:
10255           if (AT_string_form (a) == DW_FORM_strp)
10256             size += DWARF_OFFSET_SIZE;
10257           else
10258             size += strlen (a->dw_attr_val.v.val_str->str) + 1;
10259           break;
10260         case dw_val_class_file:
10261           size += constant_size (maybe_emit_file (a->dw_attr_val.v.val_file));
10262           break;
10263         case dw_val_class_data8:
10264           size += 8;
10265           break;
10266         default:
10267           gcc_unreachable ();
10268         }
10269     }
10270
10271   return size;
10272 }
10273
10274 /* Size the debugging information associated with a given DIE.  Visits the
10275    DIE's children recursively.  Updates the global variable next_die_offset, on
10276    each time through.  Uses the current value of next_die_offset to update the
10277    die_offset field in each DIE.  */
10278
10279 static void
10280 calc_die_sizes (dw_die_ref die)
10281 {
10282   dw_die_ref c;
10283
10284   die->die_offset = next_die_offset;
10285   next_die_offset += size_of_die (die);
10286
10287   FOR_EACH_CHILD (die, c, calc_die_sizes (c));
10288
10289   if (die->die_child != NULL)
10290     /* Count the null byte used to terminate sibling lists.  */
10291     next_die_offset += 1;
10292 }
10293
10294 /* Set the marks for a die and its children.  We do this so
10295    that we know whether or not a reference needs to use FORM_ref_addr; only
10296    DIEs in the same CU will be marked.  We used to clear out the offset
10297    and use that as the flag, but ran into ordering problems.  */
10298
10299 static void
10300 mark_dies (dw_die_ref die)
10301 {
10302   dw_die_ref c;
10303
10304   gcc_assert (!die->die_mark);
10305
10306   die->die_mark = 1;
10307   FOR_EACH_CHILD (die, c, mark_dies (c));
10308 }
10309
10310 /* Clear the marks for a die and its children.  */
10311
10312 static void
10313 unmark_dies (dw_die_ref die)
10314 {
10315   dw_die_ref c;
10316
10317   if (dwarf_version < 4)
10318     gcc_assert (die->die_mark);
10319
10320   die->die_mark = 0;
10321   FOR_EACH_CHILD (die, c, unmark_dies (c));
10322 }
10323
10324 /* Clear the marks for a die, its children and referred dies.  */
10325
10326 static void
10327 unmark_all_dies (dw_die_ref die)
10328 {
10329   dw_die_ref c;
10330   dw_attr_ref a;
10331   unsigned ix;
10332
10333   if (!die->die_mark)
10334     return;
10335   die->die_mark = 0;
10336
10337   FOR_EACH_CHILD (die, c, unmark_all_dies (c));
10338
10339   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
10340     if (AT_class (a) == dw_val_class_die_ref)
10341       unmark_all_dies (AT_ref (a));
10342 }
10343
10344 /* Return the size of the .debug_pubnames or .debug_pubtypes table
10345    generated for the compilation unit.  */
10346
10347 static unsigned long
10348 size_of_pubnames (VEC (pubname_entry, gc) * names)
10349 {
10350   unsigned long size;
10351   unsigned i;
10352   pubname_ref p;
10353
10354   size = DWARF_PUBNAMES_HEADER_SIZE;
10355   for (i = 0; VEC_iterate (pubname_entry, names, i, p); i++)
10356     if (names != pubtype_table
10357         || p->die->die_offset != 0
10358         || !flag_eliminate_unused_debug_types)
10359       size += strlen (p->name) + DWARF_OFFSET_SIZE + 1;
10360
10361   size += DWARF_OFFSET_SIZE;
10362   return size;
10363 }
10364
10365 /* Return the size of the information in the .debug_aranges section.  */
10366
10367 static unsigned long
10368 size_of_aranges (void)
10369 {
10370   unsigned long size;
10371
10372   size = DWARF_ARANGES_HEADER_SIZE;
10373
10374   /* Count the address/length pair for this compilation unit.  */
10375   if (text_section_used)
10376     size += 2 * DWARF2_ADDR_SIZE;
10377   if (cold_text_section_used)
10378     size += 2 * DWARF2_ADDR_SIZE;
10379   size += 2 * DWARF2_ADDR_SIZE * arange_table_in_use;
10380
10381   /* Count the two zero words used to terminated the address range table.  */
10382   size += 2 * DWARF2_ADDR_SIZE;
10383   return size;
10384 }
10385 \f
10386 /* Select the encoding of an attribute value.  */
10387
10388 static enum dwarf_form
10389 value_format (dw_attr_ref a)
10390 {
10391   switch (a->dw_attr_val.val_class)
10392     {
10393     case dw_val_class_addr:
10394       /* Only very few attributes allow DW_FORM_addr.  */
10395       switch (a->dw_attr)
10396         {
10397         case DW_AT_low_pc:
10398         case DW_AT_high_pc:
10399         case DW_AT_entry_pc:
10400         case DW_AT_trampoline:
10401           return DW_FORM_addr;
10402         default:
10403           break;
10404         }
10405       switch (DWARF2_ADDR_SIZE)
10406         {
10407         case 1:
10408           return DW_FORM_data1;
10409         case 2:
10410           return DW_FORM_data2;
10411         case 4:
10412           return DW_FORM_data4;
10413         case 8:
10414           return DW_FORM_data8;
10415         default:
10416           gcc_unreachable ();
10417         }
10418     case dw_val_class_range_list:
10419     case dw_val_class_loc_list:
10420       if (dwarf_version >= 4)
10421         return DW_FORM_sec_offset;
10422       /* FALLTHRU */
10423     case dw_val_class_offset:
10424       switch (DWARF_OFFSET_SIZE)
10425         {
10426         case 4:
10427           return DW_FORM_data4;
10428         case 8:
10429           return DW_FORM_data8;
10430         default:
10431           gcc_unreachable ();
10432         }
10433     case dw_val_class_loc:
10434       if (dwarf_version >= 4)
10435         return DW_FORM_exprloc;
10436       switch (constant_size (size_of_locs (AT_loc (a))))
10437         {
10438         case 1:
10439           return DW_FORM_block1;
10440         case 2:
10441           return DW_FORM_block2;
10442         default:
10443           gcc_unreachable ();
10444         }
10445     case dw_val_class_const:
10446       return DW_FORM_sdata;
10447     case dw_val_class_unsigned_const:
10448       switch (constant_size (AT_unsigned (a)))
10449         {
10450         case 1:
10451           return DW_FORM_data1;
10452         case 2:
10453           return DW_FORM_data2;
10454         case 4:
10455           return DW_FORM_data4;
10456         case 8:
10457           return DW_FORM_data8;
10458         default:
10459           gcc_unreachable ();
10460         }
10461     case dw_val_class_const_double:
10462       switch (HOST_BITS_PER_WIDE_INT)
10463         {
10464         case 8:
10465           return DW_FORM_data2;
10466         case 16:
10467           return DW_FORM_data4;
10468         case 32:
10469           return DW_FORM_data8;
10470         case 64:
10471         default:
10472           return DW_FORM_block1;
10473         }
10474     case dw_val_class_vec:
10475       switch (constant_size (a->dw_attr_val.v.val_vec.length
10476                              * a->dw_attr_val.v.val_vec.elt_size))
10477         {
10478         case 1:
10479           return DW_FORM_block1;
10480         case 2:
10481           return DW_FORM_block2;
10482         case 4:
10483           return DW_FORM_block4;
10484         default:
10485           gcc_unreachable ();
10486         }
10487     case dw_val_class_flag:
10488       if (dwarf_version >= 4)
10489         {
10490           /* Currently all add_AT_flag calls pass in 1 as last argument,
10491              so DW_FORM_flag_present can be used.  If that ever changes,
10492              we'll need to use DW_FORM_flag and have some optimization
10493              in build_abbrev_table that will change those to
10494              DW_FORM_flag_present if it is set to 1 in all DIEs using
10495              the same abbrev entry.  */
10496           gcc_assert (a->dw_attr_val.v.val_flag == 1);
10497           return DW_FORM_flag_present;
10498         }
10499       return DW_FORM_flag;
10500     case dw_val_class_die_ref:
10501       if (AT_ref_external (a))
10502         return dwarf_version >= 4 ? DW_FORM_sig8 : DW_FORM_ref_addr;
10503       else
10504         return DW_FORM_ref;
10505     case dw_val_class_fde_ref:
10506       return DW_FORM_data;
10507     case dw_val_class_lbl_id:
10508       return DW_FORM_addr;
10509     case dw_val_class_lineptr:
10510     case dw_val_class_macptr:
10511       return dwarf_version >= 4 ? DW_FORM_sec_offset : DW_FORM_data;
10512     case dw_val_class_str:
10513       return AT_string_form (a);
10514     case dw_val_class_file:
10515       switch (constant_size (maybe_emit_file (a->dw_attr_val.v.val_file)))
10516         {
10517         case 1:
10518           return DW_FORM_data1;
10519         case 2:
10520           return DW_FORM_data2;
10521         case 4:
10522           return DW_FORM_data4;
10523         default:
10524           gcc_unreachable ();
10525         }
10526
10527     case dw_val_class_data8:
10528       return DW_FORM_data8;
10529
10530     default:
10531       gcc_unreachable ();
10532     }
10533 }
10534
10535 /* Output the encoding of an attribute value.  */
10536
10537 static void
10538 output_value_format (dw_attr_ref a)
10539 {
10540   enum dwarf_form form = value_format (a);
10541
10542   dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
10543 }
10544
10545 /* Output the .debug_abbrev section which defines the DIE abbreviation
10546    table.  */
10547
10548 static void
10549 output_abbrev_section (void)
10550 {
10551   unsigned long abbrev_id;
10552
10553   for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
10554     {
10555       dw_die_ref abbrev = abbrev_die_table[abbrev_id];
10556       unsigned ix;
10557       dw_attr_ref a_attr;
10558
10559       dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
10560       dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
10561                                    dwarf_tag_name (abbrev->die_tag));
10562
10563       if (abbrev->die_child != NULL)
10564         dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
10565       else
10566         dw2_asm_output_data (1, DW_children_no, "DW_children_no");
10567
10568       for (ix = 0; VEC_iterate (dw_attr_node, abbrev->die_attr, ix, a_attr);
10569            ix++)
10570         {
10571           dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
10572                                        dwarf_attr_name (a_attr->dw_attr));
10573           output_value_format (a_attr);
10574         }
10575
10576       dw2_asm_output_data (1, 0, NULL);
10577       dw2_asm_output_data (1, 0, NULL);
10578     }
10579
10580   /* Terminate the table.  */
10581   dw2_asm_output_data (1, 0, NULL);
10582 }
10583
10584 /* Output a symbol we can use to refer to this DIE from another CU.  */
10585
10586 static inline void
10587 output_die_symbol (dw_die_ref die)
10588 {
10589   char *sym = die->die_id.die_symbol;
10590
10591   if (sym == 0)
10592     return;
10593
10594   if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
10595     /* We make these global, not weak; if the target doesn't support
10596        .linkonce, it doesn't support combining the sections, so debugging
10597        will break.  */
10598     targetm.asm_out.globalize_label (asm_out_file, sym);
10599
10600   ASM_OUTPUT_LABEL (asm_out_file, sym);
10601 }
10602
10603 /* Return a new location list, given the begin and end range, and the
10604    expression.  */
10605
10606 static inline dw_loc_list_ref
10607 new_loc_list (dw_loc_descr_ref expr, const char *begin, const char *end,
10608               const char *section)
10609 {
10610   dw_loc_list_ref retlist = GGC_CNEW (dw_loc_list_node);
10611
10612   retlist->begin = begin;
10613   retlist->end = end;
10614   retlist->expr = expr;
10615   retlist->section = section;
10616
10617   return retlist;
10618 }
10619
10620 /* Generate a new internal symbol for this location list node, if it
10621    hasn't got one yet.  */
10622
10623 static inline void
10624 gen_llsym (dw_loc_list_ref list)
10625 {
10626   gcc_assert (!list->ll_symbol);
10627   list->ll_symbol = gen_internal_sym ("LLST");
10628 }
10629
10630 /* Output the location list given to us.  */
10631
10632 static void
10633 output_loc_list (dw_loc_list_ref list_head)
10634 {
10635   dw_loc_list_ref curr = list_head;
10636
10637   ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
10638
10639   /* Walk the location list, and output each range + expression.  */
10640   for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
10641     {
10642       unsigned long size;
10643       /* Don't output an entry that starts and ends at the same address.  */
10644       if (strcmp (curr->begin, curr->end) == 0)
10645         continue;
10646       if (!have_multiple_function_sections)
10647         {
10648           dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
10649                                 "Location list begin address (%s)",
10650                                 list_head->ll_symbol);
10651           dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
10652                                 "Location list end address (%s)",
10653                                 list_head->ll_symbol);
10654         }
10655       else
10656         {
10657           dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
10658                                "Location list begin address (%s)",
10659                                list_head->ll_symbol);
10660           dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
10661                                "Location list end address (%s)",
10662                                list_head->ll_symbol);
10663         }
10664       size = size_of_locs (curr->expr);
10665
10666       /* Output the block length for this list of location operations.  */
10667       gcc_assert (size <= 0xffff);
10668       dw2_asm_output_data (2, size, "%s", "Location expression size");
10669
10670       output_loc_sequence (curr->expr);
10671     }
10672
10673   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10674                        "Location list terminator begin (%s)",
10675                        list_head->ll_symbol);
10676   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
10677                        "Location list terminator end (%s)",
10678                        list_head->ll_symbol);
10679 }
10680
10681 /* Output a type signature.  */
10682
10683 static inline void
10684 output_signature (const char *sig, const char *name)
10685 {
10686   int i;
10687
10688   for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
10689     dw2_asm_output_data (1, sig[i], i == 0 ? "%s" : NULL, name);
10690 }
10691
10692 /* Output the DIE and its attributes.  Called recursively to generate
10693    the definitions of each child DIE.  */
10694
10695 static void
10696 output_die (dw_die_ref die)
10697 {
10698   dw_attr_ref a;
10699   dw_die_ref c;
10700   unsigned long size;
10701   unsigned ix;
10702
10703   /* If someone in another CU might refer to us, set up a symbol for
10704      them to point to.  */
10705   if (dwarf_version < 4 && die->die_id.die_symbol)
10706     output_die_symbol (die);
10707
10708   dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (%#lx) %s)",
10709                                (unsigned long)die->die_offset,
10710                                dwarf_tag_name (die->die_tag));
10711
10712   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
10713     {
10714       const char *name = dwarf_attr_name (a->dw_attr);
10715
10716       switch (AT_class (a))
10717         {
10718         case dw_val_class_addr:
10719           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
10720           break;
10721
10722         case dw_val_class_offset:
10723           dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
10724                                "%s", name);
10725           break;
10726
10727         case dw_val_class_range_list:
10728           {
10729             char *p = strchr (ranges_section_label, '\0');
10730
10731             sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
10732                      a->dw_attr_val.v.val_offset);
10733             dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
10734                                    debug_ranges_section, "%s", name);
10735             *p = '\0';
10736           }
10737           break;
10738
10739         case dw_val_class_loc:
10740           size = size_of_locs (AT_loc (a));
10741
10742           /* Output the block length for this list of location operations.  */
10743           if (dwarf_version >= 4)
10744             dw2_asm_output_data_uleb128 (size, "%s", name);
10745           else
10746             dw2_asm_output_data (constant_size (size), size, "%s", name);
10747
10748           output_loc_sequence (AT_loc (a));
10749           break;
10750
10751         case dw_val_class_const:
10752           /* ??? It would be slightly more efficient to use a scheme like is
10753              used for unsigned constants below, but gdb 4.x does not sign
10754              extend.  Gdb 5.x does sign extend.  */
10755           dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
10756           break;
10757
10758         case dw_val_class_unsigned_const:
10759           dw2_asm_output_data (constant_size (AT_unsigned (a)),
10760                                AT_unsigned (a), "%s", name);
10761           break;
10762
10763         case dw_val_class_const_double:
10764           {
10765             unsigned HOST_WIDE_INT first, second;
10766
10767             if (HOST_BITS_PER_WIDE_INT >= 64)
10768               dw2_asm_output_data (1,
10769                                    2 * HOST_BITS_PER_WIDE_INT
10770                                    / HOST_BITS_PER_CHAR,
10771                                    NULL);
10772
10773             if (WORDS_BIG_ENDIAN)
10774               {
10775                 first = a->dw_attr_val.v.val_double.high;
10776                 second = a->dw_attr_val.v.val_double.low;
10777               }
10778             else
10779               {
10780                 first = a->dw_attr_val.v.val_double.low;
10781                 second = a->dw_attr_val.v.val_double.high;
10782               }
10783
10784             dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10785                                  first, name);
10786             dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
10787                                  second, NULL);
10788           }
10789           break;
10790
10791         case dw_val_class_vec:
10792           {
10793             unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
10794             unsigned int len = a->dw_attr_val.v.val_vec.length;
10795             unsigned int i;
10796             unsigned char *p;
10797
10798             dw2_asm_output_data (constant_size (len * elt_size),
10799                                  len * elt_size, "%s", name);
10800             if (elt_size > sizeof (HOST_WIDE_INT))
10801               {
10802                 elt_size /= 2;
10803                 len *= 2;
10804               }
10805             for (i = 0, p = a->dw_attr_val.v.val_vec.array;
10806                  i < len;
10807                  i++, p += elt_size)
10808               dw2_asm_output_data (elt_size, extract_int (p, elt_size),
10809                                    "fp or vector constant word %u", i);
10810             break;
10811           }
10812
10813         case dw_val_class_flag:
10814           if (dwarf_version >= 4)
10815             {
10816               /* Currently all add_AT_flag calls pass in 1 as last argument,
10817                  so DW_FORM_flag_present can be used.  If that ever changes,
10818                  we'll need to use DW_FORM_flag and have some optimization
10819                  in build_abbrev_table that will change those to
10820                  DW_FORM_flag_present if it is set to 1 in all DIEs using
10821                  the same abbrev entry.  */
10822               gcc_assert (AT_flag (a) == 1);
10823               if (flag_debug_asm)
10824                 fprintf (asm_out_file, "\t\t\t%s %s\n",
10825                          ASM_COMMENT_START, name);
10826               break;
10827             }
10828           dw2_asm_output_data (1, AT_flag (a), "%s", name);
10829           break;
10830
10831         case dw_val_class_loc_list:
10832           {
10833             char *sym = AT_loc_list (a)->ll_symbol;
10834
10835             gcc_assert (sym);
10836             dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, debug_loc_section,
10837                                    "%s", name);
10838           }
10839           break;
10840
10841         case dw_val_class_die_ref:
10842           if (AT_ref_external (a))
10843             {
10844               if (dwarf_version >= 4)
10845                 {
10846                   comdat_type_node_ref type_node =
10847                     AT_ref (a)->die_id.die_type_node;
10848
10849                   gcc_assert (type_node);
10850                   output_signature (type_node->signature, name);
10851                 }
10852               else
10853                 {
10854                   char *sym = AT_ref (a)->die_id.die_symbol;
10855                   int size;
10856
10857                   gcc_assert (sym);
10858                   /* In DWARF2, DW_FORM_ref_addr is sized by target address
10859                      length, whereas in DWARF3 it's always sized as an
10860                      offset.  */
10861                   if (dwarf_version == 2)
10862                     size = DWARF2_ADDR_SIZE;
10863                   else
10864                     size = DWARF_OFFSET_SIZE;
10865                   dw2_asm_output_offset (size, sym, debug_info_section, "%s",
10866                                          name);
10867                 }
10868             }
10869           else
10870             {
10871               gcc_assert (AT_ref (a)->die_offset);
10872               dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
10873                                    "%s", name);
10874             }
10875           break;
10876
10877         case dw_val_class_fde_ref:
10878           {
10879             char l1[20];
10880
10881             ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
10882                                          a->dw_attr_val.v.val_fde_index * 2);
10883             dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, debug_frame_section,
10884                                    "%s", name);
10885           }
10886           break;
10887
10888         case dw_val_class_lbl_id:
10889           dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
10890           break;
10891
10892         case dw_val_class_lineptr:
10893           dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10894                                  debug_line_section, "%s", name);
10895           break;
10896
10897         case dw_val_class_macptr:
10898           dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
10899                                  debug_macinfo_section, "%s", name);
10900           break;
10901
10902         case dw_val_class_str:
10903           if (AT_string_form (a) == DW_FORM_strp)
10904             dw2_asm_output_offset (DWARF_OFFSET_SIZE,
10905                                    a->dw_attr_val.v.val_str->label,
10906                                    debug_str_section,
10907                                    "%s: \"%s\"", name, AT_string (a));
10908           else
10909             dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
10910           break;
10911
10912         case dw_val_class_file:
10913           {
10914             int f = maybe_emit_file (a->dw_attr_val.v.val_file);
10915
10916             dw2_asm_output_data (constant_size (f), f, "%s (%s)", name,
10917                                  a->dw_attr_val.v.val_file->filename);
10918             break;
10919           }
10920
10921         case dw_val_class_data8:
10922           {
10923             int i;
10924
10925             for (i = 0; i < 8; i++)
10926               dw2_asm_output_data (1, a->dw_attr_val.v.val_data8[i],
10927                                    i == 0 ? "%s" : NULL, name);
10928             break;
10929           }
10930
10931         default:
10932           gcc_unreachable ();
10933         }
10934     }
10935
10936   FOR_EACH_CHILD (die, c, output_die (c));
10937
10938   /* Add null byte to terminate sibling list.  */
10939   if (die->die_child != NULL)
10940     dw2_asm_output_data (1, 0, "end of children of DIE %#lx",
10941                          (unsigned long) die->die_offset);
10942 }
10943
10944 /* Output the compilation unit that appears at the beginning of the
10945    .debug_info section, and precedes the DIE descriptions.  */
10946
10947 static void
10948 output_compilation_unit_header (void)
10949 {
10950   int ver = dwarf_version;
10951
10952   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
10953     dw2_asm_output_data (4, 0xffffffff,
10954       "Initial length escape value indicating 64-bit DWARF extension");
10955   dw2_asm_output_data (DWARF_OFFSET_SIZE,
10956                        next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
10957                        "Length of Compilation Unit Info");
10958   dw2_asm_output_data (2, ver, "DWARF version number");
10959   dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
10960                          debug_abbrev_section,
10961                          "Offset Into Abbrev. Section");
10962   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
10963 }
10964
10965 /* Output the compilation unit DIE and its children.  */
10966
10967 static void
10968 output_comp_unit (dw_die_ref die, int output_if_empty)
10969 {
10970   const char *secname;
10971   char *oldsym, *tmp;
10972
10973   /* Unless we are outputting main CU, we may throw away empty ones.  */
10974   if (!output_if_empty && die->die_child == NULL)
10975     return;
10976
10977   /* Even if there are no children of this DIE, we must output the information
10978      about the compilation unit.  Otherwise, on an empty translation unit, we
10979      will generate a present, but empty, .debug_info section.  IRIX 6.5 `nm'
10980      will then complain when examining the file.  First mark all the DIEs in
10981      this CU so we know which get local refs.  */
10982   mark_dies (die);
10983
10984   build_abbrev_table (die);
10985
10986   /* Initialize the beginning DIE offset - and calculate sizes/offsets.  */
10987   next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
10988   calc_die_sizes (die);
10989
10990   oldsym = die->die_id.die_symbol;
10991   if (oldsym)
10992     {
10993       tmp = XALLOCAVEC (char, strlen (oldsym) + 24);
10994
10995       sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
10996       secname = tmp;
10997       die->die_id.die_symbol = NULL;
10998       switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
10999     }
11000   else
11001     switch_to_section (debug_info_section);
11002
11003   /* Output debugging information.  */
11004   output_compilation_unit_header ();
11005   output_die (die);
11006
11007   /* Leave the marks on the main CU, so we can check them in
11008      output_pubnames.  */
11009   if (oldsym)
11010     {
11011       unmark_dies (die);
11012       die->die_id.die_symbol = oldsym;
11013     }
11014 }
11015
11016 /* Output a comdat type unit DIE and its children.  */
11017
11018 static void
11019 output_comdat_type_unit (comdat_type_node *node)
11020 {
11021   const char *secname;
11022   char *tmp;
11023   int i;
11024 #if defined (OBJECT_FORMAT_ELF)
11025   tree comdat_key;
11026 #endif
11027
11028   /* First mark all the DIEs in this CU so we know which get local refs.  */
11029   mark_dies (node->root_die);
11030
11031   build_abbrev_table (node->root_die);
11032
11033   /* Initialize the beginning DIE offset - and calculate sizes/offsets.  */
11034   next_die_offset = DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE;
11035   calc_die_sizes (node->root_die);
11036
11037 #if defined (OBJECT_FORMAT_ELF)
11038   secname = ".debug_types";
11039   tmp = XALLOCAVEC (char, 4 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11040   sprintf (tmp, "wt.");
11041   for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11042     sprintf (tmp + 3 + i * 2, "%02x", node->signature[i] & 0xff);
11043   comdat_key = get_identifier (tmp);
11044   targetm.asm_out.named_section (secname,
11045                                  SECTION_DEBUG | SECTION_LINKONCE,
11046                                  comdat_key);
11047 #else
11048   tmp = XALLOCAVEC (char, 18 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11049   sprintf (tmp, ".gnu.linkonce.wt.");
11050   for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11051     sprintf (tmp + 17 + i * 2, "%02x", node->signature[i] & 0xff);
11052   secname = tmp;
11053   switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
11054 #endif
11055
11056   /* Output debugging information.  */
11057   output_compilation_unit_header ();
11058   output_signature (node->signature, "Type Signature");
11059   dw2_asm_output_data (DWARF_OFFSET_SIZE, node->type_die->die_offset,
11060                        "Offset to Type DIE");
11061   output_die (node->root_die);
11062
11063   unmark_dies (node->root_die);
11064 }
11065
11066 /* Return the DWARF2/3 pubname associated with a decl.  */
11067
11068 static const char *
11069 dwarf2_name (tree decl, int scope)
11070 {
11071   return lang_hooks.dwarf_name (decl, scope ? 1 : 0);
11072 }
11073
11074 /* Add a new entry to .debug_pubnames if appropriate.  */
11075
11076 static void
11077 add_pubname_string (const char *str, dw_die_ref die)
11078 {
11079   pubname_entry e;
11080
11081   e.die = die;
11082   e.name = xstrdup (str);
11083   VEC_safe_push (pubname_entry, gc, pubname_table, &e);
11084 }
11085
11086 static void
11087 add_pubname (tree decl, dw_die_ref die)
11088 {
11089   if (TREE_PUBLIC (decl))
11090     {
11091       const char *name = dwarf2_name (decl, 1);
11092       if (name)
11093         add_pubname_string (name, die);
11094     }
11095 }
11096
11097 /* Add a new entry to .debug_pubtypes if appropriate.  */
11098
11099 static void
11100 add_pubtype (tree decl, dw_die_ref die)
11101 {
11102   pubname_entry e;
11103
11104   e.name = NULL;
11105   if ((TREE_PUBLIC (decl)
11106        || die->die_parent == comp_unit_die)
11107       && (die->die_tag == DW_TAG_typedef || COMPLETE_TYPE_P (decl)))
11108     {
11109       e.die = die;
11110       if (TYPE_P (decl))
11111         {
11112           if (TYPE_NAME (decl))
11113             {
11114               if (TREE_CODE (TYPE_NAME (decl)) == IDENTIFIER_NODE)
11115                 e.name = IDENTIFIER_POINTER (TYPE_NAME (decl));
11116               else if (TREE_CODE (TYPE_NAME (decl)) == TYPE_DECL
11117                        && DECL_NAME (TYPE_NAME (decl)))
11118                 e.name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (decl)));
11119               else
11120                e.name = xstrdup ((const char *) get_AT_string (die, DW_AT_name));
11121             }
11122         }
11123       else
11124         {
11125           e.name = dwarf2_name (decl, 1);
11126           if (e.name)
11127             e.name = xstrdup (e.name);
11128         }
11129
11130       /* If we don't have a name for the type, there's no point in adding
11131          it to the table.  */
11132       if (e.name && e.name[0] != '\0')
11133         VEC_safe_push (pubname_entry, gc, pubtype_table, &e);
11134     }
11135 }
11136
11137 /* Output the public names table used to speed up access to externally
11138    visible names; or the public types table used to find type definitions.  */
11139
11140 static void
11141 output_pubnames (VEC (pubname_entry, gc) * names)
11142 {
11143   unsigned i;
11144   unsigned long pubnames_length = size_of_pubnames (names);
11145   pubname_ref pub;
11146
11147   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11148     dw2_asm_output_data (4, 0xffffffff,
11149       "Initial length escape value indicating 64-bit DWARF extension");
11150   if (names == pubname_table)
11151     dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
11152                          "Length of Public Names Info");
11153   else
11154     dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
11155                          "Length of Public Type Names Info");
11156   /* Version number for pubnames/pubtypes is still 2, even in DWARF3.  */
11157   dw2_asm_output_data (2, 2, "DWARF Version");
11158   dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
11159                          debug_info_section,
11160                          "Offset of Compilation Unit Info");
11161   dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
11162                        "Compilation Unit Length");
11163
11164   for (i = 0; VEC_iterate (pubname_entry, names, i, pub); i++)
11165     {
11166       /* We shouldn't see pubnames for DIEs outside of the main CU.  */
11167       if (names == pubname_table)
11168         gcc_assert (pub->die->die_mark);
11169
11170       if (names != pubtype_table
11171           || pub->die->die_offset != 0
11172           || !flag_eliminate_unused_debug_types)
11173         {
11174           dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
11175                                "DIE offset");
11176
11177           dw2_asm_output_nstring (pub->name, -1, "external name");
11178         }
11179     }
11180
11181   dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
11182 }
11183
11184 /* Add a new entry to .debug_aranges if appropriate.  */
11185
11186 static void
11187 add_arange (tree decl, dw_die_ref die)
11188 {
11189   if (! DECL_SECTION_NAME (decl))
11190     return;
11191
11192   if (arange_table_in_use == arange_table_allocated)
11193     {
11194       arange_table_allocated += ARANGE_TABLE_INCREMENT;
11195       arange_table = GGC_RESIZEVEC (dw_die_ref, arange_table,
11196                                     arange_table_allocated);
11197       memset (arange_table + arange_table_in_use, 0,
11198               ARANGE_TABLE_INCREMENT * sizeof (dw_die_ref));
11199     }
11200
11201   arange_table[arange_table_in_use++] = die;
11202 }
11203
11204 /* Output the information that goes into the .debug_aranges table.
11205    Namely, define the beginning and ending address range of the
11206    text section generated for this compilation unit.  */
11207
11208 static void
11209 output_aranges (void)
11210 {
11211   unsigned i;
11212   unsigned long aranges_length = size_of_aranges ();
11213
11214   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11215     dw2_asm_output_data (4, 0xffffffff,
11216       "Initial length escape value indicating 64-bit DWARF extension");
11217   dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
11218                        "Length of Address Ranges Info");
11219   /* Version number for aranges is still 2, even in DWARF3.  */
11220   dw2_asm_output_data (2, 2, "DWARF Version");
11221   dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
11222                          debug_info_section,
11223                          "Offset of Compilation Unit Info");
11224   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
11225   dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
11226
11227   /* We need to align to twice the pointer size here.  */
11228   if (DWARF_ARANGES_PAD_SIZE)
11229     {
11230       /* Pad using a 2 byte words so that padding is correct for any
11231          pointer size.  */
11232       dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
11233                            2 * DWARF2_ADDR_SIZE);
11234       for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
11235         dw2_asm_output_data (2, 0, NULL);
11236     }
11237
11238   /* It is necessary not to output these entries if the sections were
11239      not used; if the sections were not used, the length will be 0 and
11240      the address may end up as 0 if the section is discarded by ld
11241      --gc-sections, leaving an invalid (0, 0) entry that can be
11242      confused with the terminator.  */
11243   if (text_section_used)
11244     {
11245       dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
11246       dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
11247                             text_section_label, "Length");
11248     }
11249   if (cold_text_section_used)
11250     {
11251       dw2_asm_output_addr (DWARF2_ADDR_SIZE, cold_text_section_label,
11252                            "Address");
11253       dw2_asm_output_delta (DWARF2_ADDR_SIZE, cold_end_label,
11254                             cold_text_section_label, "Length");
11255     }
11256
11257   for (i = 0; i < arange_table_in_use; i++)
11258     {
11259       dw_die_ref die = arange_table[i];
11260
11261       /* We shouldn't see aranges for DIEs outside of the main CU.  */
11262       gcc_assert (die->die_mark);
11263
11264       if (die->die_tag == DW_TAG_subprogram)
11265         {
11266           dw2_asm_output_addr (DWARF2_ADDR_SIZE, get_AT_low_pc (die),
11267                                "Address");
11268           dw2_asm_output_delta (DWARF2_ADDR_SIZE, get_AT_hi_pc (die),
11269                                 get_AT_low_pc (die), "Length");
11270         }
11271       else
11272         {
11273           /* A static variable; extract the symbol from DW_AT_location.
11274              Note that this code isn't currently hit, as we only emit
11275              aranges for functions (jason 9/23/99).  */
11276           dw_attr_ref a = get_AT (die, DW_AT_location);
11277           dw_loc_descr_ref loc;
11278
11279           gcc_assert (a && AT_class (a) == dw_val_class_loc);
11280
11281           loc = AT_loc (a);
11282           gcc_assert (loc->dw_loc_opc == DW_OP_addr);
11283
11284           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE,
11285                                    loc->dw_loc_oprnd1.v.val_addr, "Address");
11286           dw2_asm_output_data (DWARF2_ADDR_SIZE,
11287                                get_AT_unsigned (die, DW_AT_byte_size),
11288                                "Length");
11289         }
11290     }
11291
11292   /* Output the terminator words.  */
11293   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11294   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11295 }
11296
11297 /* Add a new entry to .debug_ranges.  Return the offset at which it
11298    was placed.  */
11299
11300 static unsigned int
11301 add_ranges_num (int num)
11302 {
11303   unsigned int in_use = ranges_table_in_use;
11304
11305   if (in_use == ranges_table_allocated)
11306     {
11307       ranges_table_allocated += RANGES_TABLE_INCREMENT;
11308       ranges_table = GGC_RESIZEVEC (struct dw_ranges_struct, ranges_table,
11309                                     ranges_table_allocated);
11310       memset (ranges_table + ranges_table_in_use, 0,
11311               RANGES_TABLE_INCREMENT * sizeof (struct dw_ranges_struct));
11312     }
11313
11314   ranges_table[in_use].num = num;
11315   ranges_table_in_use = in_use + 1;
11316
11317   return in_use * 2 * DWARF2_ADDR_SIZE;
11318 }
11319
11320 /* Add a new entry to .debug_ranges corresponding to a block, or a
11321    range terminator if BLOCK is NULL.  */
11322
11323 static unsigned int
11324 add_ranges (const_tree block)
11325 {
11326   return add_ranges_num (block ? BLOCK_NUMBER (block) : 0);
11327 }
11328
11329 /* Add a new entry to .debug_ranges corresponding to a pair of
11330    labels.  */
11331
11332 static void
11333 add_ranges_by_labels (dw_die_ref die, const char *begin, const char *end,
11334                       bool *added)
11335 {
11336   unsigned int in_use = ranges_by_label_in_use;
11337   unsigned int offset;
11338
11339   if (in_use == ranges_by_label_allocated)
11340     {
11341       ranges_by_label_allocated += RANGES_TABLE_INCREMENT;
11342       ranges_by_label = GGC_RESIZEVEC (struct dw_ranges_by_label_struct,
11343                                        ranges_by_label,
11344                                        ranges_by_label_allocated);
11345       memset (ranges_by_label + ranges_by_label_in_use, 0,
11346               RANGES_TABLE_INCREMENT
11347               * sizeof (struct dw_ranges_by_label_struct));
11348     }
11349
11350   ranges_by_label[in_use].begin = begin;
11351   ranges_by_label[in_use].end = end;
11352   ranges_by_label_in_use = in_use + 1;
11353
11354   offset = add_ranges_num (-(int)in_use - 1);
11355   if (!*added)
11356     {
11357       add_AT_range_list (die, DW_AT_ranges, offset);
11358       *added = true;
11359     }
11360 }
11361
11362 static void
11363 output_ranges (void)
11364 {
11365   unsigned i;
11366   static const char *const start_fmt = "Offset %#x";
11367   const char *fmt = start_fmt;
11368
11369   for (i = 0; i < ranges_table_in_use; i++)
11370     {
11371       int block_num = ranges_table[i].num;
11372
11373       if (block_num > 0)
11374         {
11375           char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
11376           char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
11377
11378           ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
11379           ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
11380
11381           /* If all code is in the text section, then the compilation
11382              unit base address defaults to DW_AT_low_pc, which is the
11383              base of the text section.  */
11384           if (!have_multiple_function_sections)
11385             {
11386               dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
11387                                     text_section_label,
11388                                     fmt, i * 2 * DWARF2_ADDR_SIZE);
11389               dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
11390                                     text_section_label, NULL);
11391             }
11392
11393           /* Otherwise, the compilation unit base address is zero,
11394              which allows us to use absolute addresses, and not worry
11395              about whether the target supports cross-section
11396              arithmetic.  */
11397           else
11398             {
11399               dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
11400                                    fmt, i * 2 * DWARF2_ADDR_SIZE);
11401               dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
11402             }
11403
11404           fmt = NULL;
11405         }
11406
11407       /* Negative block_num stands for an index into ranges_by_label.  */
11408       else if (block_num < 0)
11409         {
11410           int lab_idx = - block_num - 1;
11411
11412           if (!have_multiple_function_sections)
11413             {
11414               gcc_unreachable ();
11415 #if 0
11416               /* If we ever use add_ranges_by_labels () for a single
11417                  function section, all we have to do is to take out
11418                  the #if 0 above.  */
11419               dw2_asm_output_delta (DWARF2_ADDR_SIZE,
11420                                     ranges_by_label[lab_idx].begin,
11421                                     text_section_label,
11422                                     fmt, i * 2 * DWARF2_ADDR_SIZE);
11423               dw2_asm_output_delta (DWARF2_ADDR_SIZE,
11424                                     ranges_by_label[lab_idx].end,
11425                                     text_section_label, NULL);
11426 #endif
11427             }
11428           else
11429             {
11430               dw2_asm_output_addr (DWARF2_ADDR_SIZE,
11431                                    ranges_by_label[lab_idx].begin,
11432                                    fmt, i * 2 * DWARF2_ADDR_SIZE);
11433               dw2_asm_output_addr (DWARF2_ADDR_SIZE,
11434                                    ranges_by_label[lab_idx].end,
11435                                    NULL);
11436             }
11437         }
11438       else
11439         {
11440           dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11441           dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
11442           fmt = start_fmt;
11443         }
11444     }
11445 }
11446
11447 /* Data structure containing information about input files.  */
11448 struct file_info
11449 {
11450   const char *path;     /* Complete file name.  */
11451   const char *fname;    /* File name part.  */
11452   int length;           /* Length of entire string.  */
11453   struct dwarf_file_data * file_idx;    /* Index in input file table.  */
11454   int dir_idx;          /* Index in directory table.  */
11455 };
11456
11457 /* Data structure containing information about directories with source
11458    files.  */
11459 struct dir_info
11460 {
11461   const char *path;     /* Path including directory name.  */
11462   int length;           /* Path length.  */
11463   int prefix;           /* Index of directory entry which is a prefix.  */
11464   int count;            /* Number of files in this directory.  */
11465   int dir_idx;          /* Index of directory used as base.  */
11466 };
11467
11468 /* Callback function for file_info comparison.  We sort by looking at
11469    the directories in the path.  */
11470
11471 static int
11472 file_info_cmp (const void *p1, const void *p2)
11473 {
11474   const struct file_info *const s1 = (const struct file_info *) p1;
11475   const struct file_info *const s2 = (const struct file_info *) p2;
11476   const unsigned char *cp1;
11477   const unsigned char *cp2;
11478
11479   /* Take care of file names without directories.  We need to make sure that
11480      we return consistent values to qsort since some will get confused if
11481      we return the same value when identical operands are passed in opposite
11482      orders.  So if neither has a directory, return 0 and otherwise return
11483      1 or -1 depending on which one has the directory.  */
11484   if ((s1->path == s1->fname || s2->path == s2->fname))
11485     return (s2->path == s2->fname) - (s1->path == s1->fname);
11486
11487   cp1 = (const unsigned char *) s1->path;
11488   cp2 = (const unsigned char *) s2->path;
11489
11490   while (1)
11491     {
11492       ++cp1;
11493       ++cp2;
11494       /* Reached the end of the first path?  If so, handle like above.  */
11495       if ((cp1 == (const unsigned char *) s1->fname)
11496           || (cp2 == (const unsigned char *) s2->fname))
11497         return ((cp2 == (const unsigned char *) s2->fname)
11498                 - (cp1 == (const unsigned char *) s1->fname));
11499
11500       /* Character of current path component the same?  */
11501       else if (*cp1 != *cp2)
11502         return *cp1 - *cp2;
11503     }
11504 }
11505
11506 struct file_name_acquire_data
11507 {
11508   struct file_info *files;
11509   int used_files;
11510   int max_files;
11511 };
11512
11513 /* Traversal function for the hash table.  */
11514
11515 static int
11516 file_name_acquire (void ** slot, void *data)
11517 {
11518   struct file_name_acquire_data *fnad = (struct file_name_acquire_data *) data;
11519   struct dwarf_file_data *d = (struct dwarf_file_data *) *slot;
11520   struct file_info *fi;
11521   const char *f;
11522
11523   gcc_assert (fnad->max_files >= d->emitted_number);
11524
11525   if (! d->emitted_number)
11526     return 1;
11527
11528   gcc_assert (fnad->max_files != fnad->used_files);
11529
11530   fi = fnad->files + fnad->used_files++;
11531
11532   /* Skip all leading "./".  */
11533   f = d->filename;
11534   while (f[0] == '.' && IS_DIR_SEPARATOR (f[1]))
11535     f += 2;
11536
11537   /* Create a new array entry.  */
11538   fi->path = f;
11539   fi->length = strlen (f);
11540   fi->file_idx = d;
11541
11542   /* Search for the file name part.  */
11543   f = strrchr (f, DIR_SEPARATOR);
11544 #if defined (DIR_SEPARATOR_2)
11545   {
11546     char *g = strrchr (fi->path, DIR_SEPARATOR_2);
11547
11548     if (g != NULL)
11549       {
11550         if (f == NULL || f < g)
11551           f = g;
11552       }
11553   }
11554 #endif
11555
11556   fi->fname = f == NULL ? fi->path : f + 1;
11557   return 1;
11558 }
11559
11560 /* Output the directory table and the file name table.  We try to minimize
11561    the total amount of memory needed.  A heuristic is used to avoid large
11562    slowdowns with many input files.  */
11563
11564 static void
11565 output_file_names (void)
11566 {
11567   struct file_name_acquire_data fnad;
11568   int numfiles;
11569   struct file_info *files;
11570   struct dir_info *dirs;
11571   int *saved;
11572   int *savehere;
11573   int *backmap;
11574   int ndirs;
11575   int idx_offset;
11576   int i;
11577
11578   if (!last_emitted_file)
11579     {
11580       dw2_asm_output_data (1, 0, "End directory table");
11581       dw2_asm_output_data (1, 0, "End file name table");
11582       return;
11583     }
11584
11585   numfiles = last_emitted_file->emitted_number;
11586
11587   /* Allocate the various arrays we need.  */
11588   files = XALLOCAVEC (struct file_info, numfiles);
11589   dirs = XALLOCAVEC (struct dir_info, numfiles);
11590
11591   fnad.files = files;
11592   fnad.used_files = 0;
11593   fnad.max_files = numfiles;
11594   htab_traverse (file_table, file_name_acquire, &fnad);
11595   gcc_assert (fnad.used_files == fnad.max_files);
11596
11597   qsort (files, numfiles, sizeof (files[0]), file_info_cmp);
11598
11599   /* Find all the different directories used.  */
11600   dirs[0].path = files[0].path;
11601   dirs[0].length = files[0].fname - files[0].path;
11602   dirs[0].prefix = -1;
11603   dirs[0].count = 1;
11604   dirs[0].dir_idx = 0;
11605   files[0].dir_idx = 0;
11606   ndirs = 1;
11607
11608   for (i = 1; i < numfiles; i++)
11609     if (files[i].fname - files[i].path == dirs[ndirs - 1].length
11610         && memcmp (dirs[ndirs - 1].path, files[i].path,
11611                    dirs[ndirs - 1].length) == 0)
11612       {
11613         /* Same directory as last entry.  */
11614         files[i].dir_idx = ndirs - 1;
11615         ++dirs[ndirs - 1].count;
11616       }
11617     else
11618       {
11619         int j;
11620
11621         /* This is a new directory.  */
11622         dirs[ndirs].path = files[i].path;
11623         dirs[ndirs].length = files[i].fname - files[i].path;
11624         dirs[ndirs].count = 1;
11625         dirs[ndirs].dir_idx = ndirs;
11626         files[i].dir_idx = ndirs;
11627
11628         /* Search for a prefix.  */
11629         dirs[ndirs].prefix = -1;
11630         for (j = 0; j < ndirs; j++)
11631           if (dirs[j].length < dirs[ndirs].length
11632               && dirs[j].length > 1
11633               && (dirs[ndirs].prefix == -1
11634                   || dirs[j].length > dirs[dirs[ndirs].prefix].length)
11635               && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
11636             dirs[ndirs].prefix = j;
11637
11638         ++ndirs;
11639       }
11640
11641   /* Now to the actual work.  We have to find a subset of the directories which
11642      allow expressing the file name using references to the directory table
11643      with the least amount of characters.  We do not do an exhaustive search
11644      where we would have to check out every combination of every single
11645      possible prefix.  Instead we use a heuristic which provides nearly optimal
11646      results in most cases and never is much off.  */
11647   saved = XALLOCAVEC (int, ndirs);
11648   savehere = XALLOCAVEC (int, ndirs);
11649
11650   memset (saved, '\0', ndirs * sizeof (saved[0]));
11651   for (i = 0; i < ndirs; i++)
11652     {
11653       int j;
11654       int total;
11655
11656       /* We can always save some space for the current directory.  But this
11657          does not mean it will be enough to justify adding the directory.  */
11658       savehere[i] = dirs[i].length;
11659       total = (savehere[i] - saved[i]) * dirs[i].count;
11660
11661       for (j = i + 1; j < ndirs; j++)
11662         {
11663           savehere[j] = 0;
11664           if (saved[j] < dirs[i].length)
11665             {
11666               /* Determine whether the dirs[i] path is a prefix of the
11667                  dirs[j] path.  */
11668               int k;
11669
11670               k = dirs[j].prefix;
11671               while (k != -1 && k != (int) i)
11672                 k = dirs[k].prefix;
11673
11674               if (k == (int) i)
11675                 {
11676                   /* Yes it is.  We can possibly save some memory by
11677                      writing the filenames in dirs[j] relative to
11678                      dirs[i].  */
11679                   savehere[j] = dirs[i].length;
11680                   total += (savehere[j] - saved[j]) * dirs[j].count;
11681                 }
11682             }
11683         }
11684
11685       /* Check whether we can save enough to justify adding the dirs[i]
11686          directory.  */
11687       if (total > dirs[i].length + 1)
11688         {
11689           /* It's worthwhile adding.  */
11690           for (j = i; j < ndirs; j++)
11691             if (savehere[j] > 0)
11692               {
11693                 /* Remember how much we saved for this directory so far.  */
11694                 saved[j] = savehere[j];
11695
11696                 /* Remember the prefix directory.  */
11697                 dirs[j].dir_idx = i;
11698               }
11699         }
11700     }
11701
11702   /* Emit the directory name table.  */
11703   idx_offset = dirs[0].length > 0 ? 1 : 0;
11704   for (i = 1 - idx_offset; i < ndirs; i++)
11705     dw2_asm_output_nstring (dirs[i].path,
11706                             dirs[i].length
11707                              - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
11708                             "Directory Entry: %#x", i + idx_offset);
11709
11710   dw2_asm_output_data (1, 0, "End directory table");
11711
11712   /* We have to emit them in the order of emitted_number since that's
11713      used in the debug info generation.  To do this efficiently we
11714      generate a back-mapping of the indices first.  */
11715   backmap = XALLOCAVEC (int, numfiles);
11716   for (i = 0; i < numfiles; i++)
11717     backmap[files[i].file_idx->emitted_number - 1] = i;
11718
11719   /* Now write all the file names.  */
11720   for (i = 0; i < numfiles; i++)
11721     {
11722       int file_idx = backmap[i];
11723       int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
11724
11725 #ifdef VMS_DEBUGGING_INFO
11726 #define MAX_VMS_VERSION_LEN 6 /* ";32768" */
11727
11728       /* Setting these fields can lead to debugger miscomparisons,
11729          but VMS Debug requires them to be set correctly.  */
11730
11731       int ver;
11732       long long cdt;
11733       long siz;
11734       int maxfilelen = strlen (files[file_idx].path)
11735                                + dirs[dir_idx].length
11736                                + MAX_VMS_VERSION_LEN + 1;
11737       char *filebuf = XALLOCAVEC (char, maxfilelen);
11738
11739       vms_file_stats_name (files[file_idx].path, 0, 0, 0, &ver);
11740       snprintf (filebuf, maxfilelen, "%s;%d",
11741                 files[file_idx].path + dirs[dir_idx].length, ver);
11742
11743       dw2_asm_output_nstring
11744         (filebuf, -1, "File Entry: %#x", (unsigned) i + 1);
11745
11746       /* Include directory index.  */
11747       dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
11748
11749       /* Modification time.  */
11750       dw2_asm_output_data_uleb128
11751         ((vms_file_stats_name (files[file_idx].path, &cdt, 0, 0, 0) == 0)
11752           ? cdt : 0,
11753          NULL);
11754
11755       /* File length in bytes.  */
11756       dw2_asm_output_data_uleb128
11757         ((vms_file_stats_name (files[file_idx].path, 0, &siz, 0, 0) == 0)
11758           ? siz : 0,
11759          NULL);
11760 #else
11761       dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
11762                               "File Entry: %#x", (unsigned) i + 1);
11763
11764       /* Include directory index.  */
11765       dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
11766
11767       /* Modification time.  */
11768       dw2_asm_output_data_uleb128 (0, NULL);
11769
11770       /* File length in bytes.  */
11771       dw2_asm_output_data_uleb128 (0, NULL);
11772 #endif
11773     }
11774
11775   dw2_asm_output_data (1, 0, "End file name table");
11776 }
11777
11778
11779 /* Output the source line number correspondence information.  This
11780    information goes into the .debug_line section.  */
11781
11782 static void
11783 output_line_info (void)
11784 {
11785   char l1[20], l2[20], p1[20], p2[20];
11786   char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
11787   char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
11788   unsigned opc;
11789   unsigned n_op_args;
11790   unsigned long lt_index;
11791   unsigned long current_line;
11792   long line_offset;
11793   long line_delta;
11794   unsigned long current_file;
11795   unsigned long function;
11796   int ver = dwarf_version;
11797
11798   ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
11799   ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
11800   ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
11801   ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
11802
11803   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11804     dw2_asm_output_data (4, 0xffffffff,
11805       "Initial length escape value indicating 64-bit DWARF extension");
11806   dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
11807                         "Length of Source Line Info");
11808   ASM_OUTPUT_LABEL (asm_out_file, l1);
11809
11810   dw2_asm_output_data (2, ver, "DWARF Version");
11811   dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
11812   ASM_OUTPUT_LABEL (asm_out_file, p1);
11813
11814   /* Define the architecture-dependent minimum instruction length (in
11815    bytes).  In this implementation of DWARF, this field is used for
11816    information purposes only.  Since GCC generates assembly language,
11817    we have no a priori knowledge of how many instruction bytes are
11818    generated for each source line, and therefore can use only the
11819    DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
11820    commands.  Accordingly, we fix this as `1', which is "correct
11821    enough" for all architectures, and don't let the target override.  */
11822   dw2_asm_output_data (1, 1,
11823                        "Minimum Instruction Length");
11824
11825   if (ver >= 4)
11826     dw2_asm_output_data (1, DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN,
11827                          "Maximum Operations Per Instruction");
11828   dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
11829                        "Default is_stmt_start flag");
11830   dw2_asm_output_data (1, DWARF_LINE_BASE,
11831                        "Line Base Value (Special Opcodes)");
11832   dw2_asm_output_data (1, DWARF_LINE_RANGE,
11833                        "Line Range Value (Special Opcodes)");
11834   dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
11835                        "Special Opcode Base");
11836
11837   for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
11838     {
11839       switch (opc)
11840         {
11841         case DW_LNS_advance_pc:
11842         case DW_LNS_advance_line:
11843         case DW_LNS_set_file:
11844         case DW_LNS_set_column:
11845         case DW_LNS_fixed_advance_pc:
11846           n_op_args = 1;
11847           break;
11848         default:
11849           n_op_args = 0;
11850           break;
11851         }
11852
11853       dw2_asm_output_data (1, n_op_args, "opcode: %#x has %d args",
11854                            opc, n_op_args);
11855     }
11856
11857   /* Write out the information about the files we use.  */
11858   output_file_names ();
11859   ASM_OUTPUT_LABEL (asm_out_file, p2);
11860
11861   /* We used to set the address register to the first location in the text
11862      section here, but that didn't accomplish anything since we already
11863      have a line note for the opening brace of the first function.  */
11864
11865   /* Generate the line number to PC correspondence table, encoded as
11866      a series of state machine operations.  */
11867   current_file = 1;
11868   current_line = 1;
11869
11870   if (cfun && in_cold_section_p)
11871     strcpy (prev_line_label, crtl->subsections.cold_section_label);
11872   else
11873     strcpy (prev_line_label, text_section_label);
11874   for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
11875     {
11876       dw_line_info_ref line_info = &line_info_table[lt_index];
11877
11878 #if 0
11879       /* Disable this optimization for now; GDB wants to see two line notes
11880          at the beginning of a function so it can find the end of the
11881          prologue.  */
11882
11883       /* Don't emit anything for redundant notes.  Just updating the
11884          address doesn't accomplish anything, because we already assume
11885          that anything after the last address is this line.  */
11886       if (line_info->dw_line_num == current_line
11887           && line_info->dw_file_num == current_file)
11888         continue;
11889 #endif
11890
11891       /* Emit debug info for the address of the current line.
11892
11893          Unfortunately, we have little choice here currently, and must always
11894          use the most general form.  GCC does not know the address delta
11895          itself, so we can't use DW_LNS_advance_pc.  Many ports do have length
11896          attributes which will give an upper bound on the address range.  We
11897          could perhaps use length attributes to determine when it is safe to
11898          use DW_LNS_fixed_advance_pc.  */
11899
11900       ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
11901       if (0)
11902         {
11903           /* This can handle deltas up to 0xffff.  This takes 3 bytes.  */
11904           dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
11905                                "DW_LNS_fixed_advance_pc");
11906           dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
11907         }
11908       else
11909         {
11910           /* This can handle any delta.  This takes
11911              4+DWARF2_ADDR_SIZE bytes.  */
11912           dw2_asm_output_data (1, 0, "DW_LNE_set_address");
11913           dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
11914           dw2_asm_output_data (1, DW_LNE_set_address, NULL);
11915           dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
11916         }
11917
11918       strcpy (prev_line_label, line_label);
11919
11920       /* Emit debug info for the source file of the current line, if
11921          different from the previous line.  */
11922       if (line_info->dw_file_num != current_file)
11923         {
11924           current_file = line_info->dw_file_num;
11925           dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
11926           dw2_asm_output_data_uleb128 (current_file, "%lu", current_file);
11927         }
11928
11929       /* Emit debug info for the current line number, choosing the encoding
11930          that uses the least amount of space.  */
11931       if (line_info->dw_line_num != current_line)
11932         {
11933           line_offset = line_info->dw_line_num - current_line;
11934           line_delta = line_offset - DWARF_LINE_BASE;
11935           current_line = line_info->dw_line_num;
11936           if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
11937             /* This can handle deltas from -10 to 234, using the current
11938                definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE.  This
11939                takes 1 byte.  */
11940             dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
11941                                  "line %lu", current_line);
11942           else
11943             {
11944               /* This can handle any delta.  This takes at least 4 bytes,
11945                  depending on the value being encoded.  */
11946               dw2_asm_output_data (1, DW_LNS_advance_line,
11947                                    "advance to line %lu", current_line);
11948               dw2_asm_output_data_sleb128 (line_offset, NULL);
11949               dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
11950             }
11951         }
11952       else
11953         /* We still need to start a new row, so output a copy insn.  */
11954         dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
11955     }
11956
11957   /* Emit debug info for the address of the end of the function.  */
11958   if (0)
11959     {
11960       dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
11961                            "DW_LNS_fixed_advance_pc");
11962       dw2_asm_output_delta (2, text_end_label, prev_line_label, NULL);
11963     }
11964   else
11965     {
11966       dw2_asm_output_data (1, 0, "DW_LNE_set_address");
11967       dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
11968       dw2_asm_output_data (1, DW_LNE_set_address, NULL);
11969       dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_end_label, NULL);
11970     }
11971
11972   dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
11973   dw2_asm_output_data_uleb128 (1, NULL);
11974   dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
11975
11976   function = 0;
11977   current_file = 1;
11978   current_line = 1;
11979   for (lt_index = 0; lt_index < separate_line_info_table_in_use;)
11980     {
11981       dw_separate_line_info_ref line_info
11982         = &separate_line_info_table[lt_index];
11983
11984 #if 0
11985       /* Don't emit anything for redundant notes.  */
11986       if (line_info->dw_line_num == current_line
11987           && line_info->dw_file_num == current_file
11988           && line_info->function == function)
11989         goto cont;
11990 #endif
11991
11992       /* Emit debug info for the address of the current line.  If this is
11993          a new function, or the first line of a function, then we need
11994          to handle it differently.  */
11995       ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
11996                                    lt_index);
11997       if (function != line_info->function)
11998         {
11999           function = line_info->function;
12000
12001           /* Set the address register to the first line in the function.  */
12002           dw2_asm_output_data (1, 0, "DW_LNE_set_address");
12003           dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12004           dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12005           dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
12006         }
12007       else
12008         {
12009           /* ??? See the DW_LNS_advance_pc comment above.  */
12010           if (0)
12011             {
12012               dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
12013                                    "DW_LNS_fixed_advance_pc");
12014               dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
12015             }
12016           else
12017             {
12018               dw2_asm_output_data (1, 0, "DW_LNE_set_address");
12019               dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12020               dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12021               dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
12022             }
12023         }
12024
12025       strcpy (prev_line_label, line_label);
12026
12027       /* Emit debug info for the source file of the current line, if
12028          different from the previous line.  */
12029       if (line_info->dw_file_num != current_file)
12030         {
12031           current_file = line_info->dw_file_num;
12032           dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
12033           dw2_asm_output_data_uleb128 (current_file, "%lu", current_file);
12034         }
12035
12036       /* Emit debug info for the current line number, choosing the encoding
12037          that uses the least amount of space.  */
12038       if (line_info->dw_line_num != current_line)
12039         {
12040           line_offset = line_info->dw_line_num - current_line;
12041           line_delta = line_offset - DWARF_LINE_BASE;
12042           current_line = line_info->dw_line_num;
12043           if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
12044             dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
12045                                  "line %lu", current_line);
12046           else
12047             {
12048               dw2_asm_output_data (1, DW_LNS_advance_line,
12049                                    "advance to line %lu", current_line);
12050               dw2_asm_output_data_sleb128 (line_offset, NULL);
12051               dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
12052             }
12053         }
12054       else
12055         dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
12056
12057 #if 0
12058     cont:
12059 #endif
12060
12061       lt_index++;
12062
12063       /* If we're done with a function, end its sequence.  */
12064       if (lt_index == separate_line_info_table_in_use
12065           || separate_line_info_table[lt_index].function != function)
12066         {
12067           current_file = 1;
12068           current_line = 1;
12069
12070           /* Emit debug info for the address of the end of the function.  */
12071           ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
12072           if (0)
12073             {
12074               dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
12075                                    "DW_LNS_fixed_advance_pc");
12076               dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
12077             }
12078           else
12079             {
12080               dw2_asm_output_data (1, 0, "DW_LNE_set_address");
12081               dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12082               dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12083               dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
12084             }
12085
12086           /* Output the marker for the end of this sequence.  */
12087           dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
12088           dw2_asm_output_data_uleb128 (1, NULL);
12089           dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
12090         }
12091     }
12092
12093   /* Output the marker for the end of the line number info.  */
12094   ASM_OUTPUT_LABEL (asm_out_file, l2);
12095 }
12096
12097 /* Return the size of the .debug_dcall table for the compilation unit.  */
12098
12099 static unsigned long
12100 size_of_dcall_table (void)
12101 {
12102   unsigned long size;
12103   unsigned int i;
12104   dcall_entry *p;
12105   tree last_poc_decl = NULL;
12106
12107   /* Header:  version + debug info section pointer + pointer size.  */
12108   size = 2 + DWARF_OFFSET_SIZE + 1;
12109
12110   /* Each entry:  code label + DIE offset.  */
12111   for (i = 0; VEC_iterate (dcall_entry, dcall_table, i, p); i++)
12112     {
12113       gcc_assert (p->targ_die != NULL);
12114       /* Insert a "from" entry when the point-of-call DIE offset changes.  */
12115       if (p->poc_decl != last_poc_decl)
12116         {
12117           dw_die_ref poc_die = lookup_decl_die (p->poc_decl);
12118           gcc_assert (poc_die);
12119           last_poc_decl = p->poc_decl;
12120           if (poc_die)
12121             size += (DWARF_OFFSET_SIZE
12122                      + size_of_uleb128 (poc_die->die_offset));
12123         }
12124       size += DWARF_OFFSET_SIZE + size_of_uleb128 (p->targ_die->die_offset);
12125     }
12126
12127   return size;
12128 }
12129
12130 /* Output the direct call table used to disambiguate PC values when
12131    identical function have been merged.  */
12132
12133 static void
12134 output_dcall_table (void)
12135 {
12136   unsigned i;
12137   unsigned long dcall_length = size_of_dcall_table ();
12138   dcall_entry *p;
12139   char poc_label[MAX_ARTIFICIAL_LABEL_BYTES];
12140   tree last_poc_decl = NULL;
12141
12142   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
12143     dw2_asm_output_data (4, 0xffffffff,
12144       "Initial length escape value indicating 64-bit DWARF extension");
12145   dw2_asm_output_data (DWARF_OFFSET_SIZE, dcall_length,
12146                        "Length of Direct Call Table");
12147   dw2_asm_output_data (2, 4, "Version number");
12148   dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
12149                          debug_info_section,
12150                          "Offset of Compilation Unit Info");
12151   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
12152
12153   for (i = 0; VEC_iterate (dcall_entry, dcall_table, i, p); i++)
12154     {
12155       /* Insert a "from" entry when the point-of-call DIE offset changes.  */
12156       if (p->poc_decl != last_poc_decl)
12157         {
12158           dw_die_ref poc_die = lookup_decl_die (p->poc_decl);
12159           last_poc_decl = p->poc_decl;
12160           if (poc_die)
12161             {
12162               dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, "New caller");
12163               dw2_asm_output_data_uleb128 (poc_die->die_offset,
12164                                            "Caller DIE offset");
12165             }
12166         }
12167       ASM_GENERATE_INTERNAL_LABEL (poc_label, "LPOC", p->poc_label_num);
12168       dw2_asm_output_addr (DWARF_OFFSET_SIZE, poc_label, "Point of call");
12169       dw2_asm_output_data_uleb128 (p->targ_die->die_offset,
12170                                    "Callee DIE offset");
12171     }
12172 }
12173 \f
12174 /* Return the size of the .debug_vcall table for the compilation unit.  */
12175
12176 static unsigned long
12177 size_of_vcall_table (void)
12178 {
12179   unsigned long size;
12180   unsigned int i;
12181   vcall_entry *p;
12182
12183   /* Header:  version + pointer size.  */
12184   size = 2 + 1;
12185
12186   /* Each entry:  code label + vtable slot index.  */
12187   for (i = 0; VEC_iterate (vcall_entry, vcall_table, i, p); i++)
12188     size += DWARF_OFFSET_SIZE + size_of_uleb128 (p->vtable_slot);
12189
12190   return size;
12191 }
12192
12193 /* Output the virtual call table used to disambiguate PC values when
12194    identical function have been merged.  */
12195
12196 static void
12197 output_vcall_table (void)
12198 {
12199   unsigned i;
12200   unsigned long vcall_length = size_of_vcall_table ();
12201   vcall_entry *p;
12202   char poc_label[MAX_ARTIFICIAL_LABEL_BYTES];
12203
12204   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
12205     dw2_asm_output_data (4, 0xffffffff,
12206       "Initial length escape value indicating 64-bit DWARF extension");
12207   dw2_asm_output_data (DWARF_OFFSET_SIZE, vcall_length,
12208                        "Length of Virtual Call Table");
12209   dw2_asm_output_data (2, 4, "Version number");
12210   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
12211
12212   for (i = 0; VEC_iterate (vcall_entry, vcall_table, i, p); i++)
12213     {
12214       ASM_GENERATE_INTERNAL_LABEL (poc_label, "LPOC", p->poc_label_num);
12215       dw2_asm_output_addr (DWARF_OFFSET_SIZE, poc_label, "Point of call");
12216       dw2_asm_output_data_uleb128 (p->vtable_slot, "Vtable slot");
12217     }
12218 }
12219 \f
12220 /* Given a pointer to a tree node for some base type, return a pointer to
12221    a DIE that describes the given type.
12222
12223    This routine must only be called for GCC type nodes that correspond to
12224    Dwarf base (fundamental) types.  */
12225
12226 static dw_die_ref
12227 base_type_die (tree type)
12228 {
12229   dw_die_ref base_type_result;
12230   enum dwarf_type encoding;
12231
12232   if (TREE_CODE (type) == ERROR_MARK || TREE_CODE (type) == VOID_TYPE)
12233     return 0;
12234
12235   /* If this is a subtype that should not be emitted as a subrange type,
12236      use the base type.  See subrange_type_for_debug_p.  */
12237   if (TREE_CODE (type) == INTEGER_TYPE && TREE_TYPE (type) != NULL_TREE)
12238     type = TREE_TYPE (type);
12239
12240   switch (TREE_CODE (type))
12241     {
12242     case INTEGER_TYPE:
12243       if (TYPE_STRING_FLAG (type))
12244         {
12245           if (TYPE_UNSIGNED (type))
12246             encoding = DW_ATE_unsigned_char;
12247           else
12248             encoding = DW_ATE_signed_char;
12249         }
12250       else if (TYPE_UNSIGNED (type))
12251         encoding = DW_ATE_unsigned;
12252       else
12253         encoding = DW_ATE_signed;
12254       break;
12255
12256     case REAL_TYPE:
12257       if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type)))
12258         {
12259           if (dwarf_version >= 3 || !dwarf_strict)
12260             encoding = DW_ATE_decimal_float;
12261           else
12262             encoding = DW_ATE_lo_user;
12263         }
12264       else
12265         encoding = DW_ATE_float;
12266       break;
12267
12268     case FIXED_POINT_TYPE:
12269       if (!(dwarf_version >= 3 || !dwarf_strict))
12270         encoding = DW_ATE_lo_user;
12271       else if (TYPE_UNSIGNED (type))
12272         encoding = DW_ATE_unsigned_fixed;
12273       else
12274         encoding = DW_ATE_signed_fixed;
12275       break;
12276
12277       /* Dwarf2 doesn't know anything about complex ints, so use
12278          a user defined type for it.  */
12279     case COMPLEX_TYPE:
12280       if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
12281         encoding = DW_ATE_complex_float;
12282       else
12283         encoding = DW_ATE_lo_user;
12284       break;
12285
12286     case BOOLEAN_TYPE:
12287       /* GNU FORTRAN/Ada/C++ BOOLEAN type.  */
12288       encoding = DW_ATE_boolean;
12289       break;
12290
12291     default:
12292       /* No other TREE_CODEs are Dwarf fundamental types.  */
12293       gcc_unreachable ();
12294     }
12295
12296   base_type_result = new_die (DW_TAG_base_type, comp_unit_die, type);
12297
12298   add_AT_unsigned (base_type_result, DW_AT_byte_size,
12299                    int_size_in_bytes (type));
12300   add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
12301
12302   return base_type_result;
12303 }
12304
12305 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
12306    given input type is a Dwarf "fundamental" type.  Otherwise return null.  */
12307
12308 static inline int
12309 is_base_type (tree type)
12310 {
12311   switch (TREE_CODE (type))
12312     {
12313     case ERROR_MARK:
12314     case VOID_TYPE:
12315     case INTEGER_TYPE:
12316     case REAL_TYPE:
12317     case FIXED_POINT_TYPE:
12318     case COMPLEX_TYPE:
12319     case BOOLEAN_TYPE:
12320       return 1;
12321
12322     case ARRAY_TYPE:
12323     case RECORD_TYPE:
12324     case UNION_TYPE:
12325     case QUAL_UNION_TYPE:
12326     case ENUMERAL_TYPE:
12327     case FUNCTION_TYPE:
12328     case METHOD_TYPE:
12329     case POINTER_TYPE:
12330     case REFERENCE_TYPE:
12331     case OFFSET_TYPE:
12332     case LANG_TYPE:
12333     case VECTOR_TYPE:
12334       return 0;
12335
12336     default:
12337       gcc_unreachable ();
12338     }
12339
12340   return 0;
12341 }
12342
12343 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
12344    node, return the size in bits for the type if it is a constant, or else
12345    return the alignment for the type if the type's size is not constant, or
12346    else return BITS_PER_WORD if the type actually turns out to be an
12347    ERROR_MARK node.  */
12348
12349 static inline unsigned HOST_WIDE_INT
12350 simple_type_size_in_bits (const_tree type)
12351 {
12352   if (TREE_CODE (type) == ERROR_MARK)
12353     return BITS_PER_WORD;
12354   else if (TYPE_SIZE (type) == NULL_TREE)
12355     return 0;
12356   else if (host_integerp (TYPE_SIZE (type), 1))
12357     return tree_low_cst (TYPE_SIZE (type), 1);
12358   else
12359     return TYPE_ALIGN (type);
12360 }
12361
12362 /*  Given a pointer to a tree node for a subrange type, return a pointer
12363     to a DIE that describes the given type.  */
12364
12365 static dw_die_ref
12366 subrange_type_die (tree type, tree low, tree high, dw_die_ref context_die)
12367 {
12368   dw_die_ref subrange_die;
12369   const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
12370
12371   if (context_die == NULL)
12372     context_die = comp_unit_die;
12373
12374   subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
12375
12376   if (int_size_in_bytes (TREE_TYPE (type)) != size_in_bytes)
12377     {
12378       /* The size of the subrange type and its base type do not match,
12379          so we need to generate a size attribute for the subrange type.  */
12380       add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
12381     }
12382
12383   if (low)
12384     add_bound_info (subrange_die, DW_AT_lower_bound, low);
12385   if (high)
12386     add_bound_info (subrange_die, DW_AT_upper_bound, high);
12387
12388   return subrange_die;
12389 }
12390
12391 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
12392    entry that chains various modifiers in front of the given type.  */
12393
12394 static dw_die_ref
12395 modified_type_die (tree type, int is_const_type, int is_volatile_type,
12396                    dw_die_ref context_die)
12397 {
12398   enum tree_code code = TREE_CODE (type);
12399   dw_die_ref mod_type_die;
12400   dw_die_ref sub_die = NULL;
12401   tree item_type = NULL;
12402   tree qualified_type;
12403   tree name, low, high;
12404
12405   if (code == ERROR_MARK)
12406     return NULL;
12407
12408   /* See if we already have the appropriately qualified variant of
12409      this type.  */
12410   qualified_type
12411     = get_qualified_type (type,
12412                           ((is_const_type ? TYPE_QUAL_CONST : 0)
12413                            | (is_volatile_type ? TYPE_QUAL_VOLATILE : 0)));
12414
12415   if (qualified_type == sizetype
12416       && TYPE_NAME (qualified_type)
12417       && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL)
12418     {
12419 #ifdef ENABLE_CHECKING
12420       gcc_assert (TREE_CODE (TREE_TYPE (TYPE_NAME (qualified_type)))
12421                   == INTEGER_TYPE
12422                   && TYPE_PRECISION (TREE_TYPE (TYPE_NAME (qualified_type)))
12423                      == TYPE_PRECISION (qualified_type)
12424                   && TYPE_UNSIGNED (TREE_TYPE (TYPE_NAME (qualified_type)))
12425                      == TYPE_UNSIGNED (qualified_type));
12426 #endif
12427       qualified_type = TREE_TYPE (TYPE_NAME (qualified_type));
12428     }
12429
12430   /* If we do, then we can just use its DIE, if it exists.  */
12431   if (qualified_type)
12432     {
12433       mod_type_die = lookup_type_die (qualified_type);
12434       if (mod_type_die)
12435         return mod_type_die;
12436     }
12437
12438   name = qualified_type ? TYPE_NAME (qualified_type) : NULL;
12439
12440   /* Handle C typedef types.  */
12441   if (name && TREE_CODE (name) == TYPE_DECL && DECL_ORIGINAL_TYPE (name)
12442       && !DECL_ARTIFICIAL (name))
12443     {
12444       tree dtype = TREE_TYPE (name);
12445
12446       if (qualified_type == dtype)
12447         {
12448           /* For a named type, use the typedef.  */
12449           gen_type_die (qualified_type, context_die);
12450           return lookup_type_die (qualified_type);
12451         }
12452       else if (is_const_type < TYPE_READONLY (dtype)
12453                || is_volatile_type < TYPE_VOLATILE (dtype)
12454                || (is_const_type <= TYPE_READONLY (dtype)
12455                    && is_volatile_type <= TYPE_VOLATILE (dtype)
12456                    && DECL_ORIGINAL_TYPE (name) != type))
12457         /* cv-unqualified version of named type.  Just use the unnamed
12458            type to which it refers.  */
12459         return modified_type_die (DECL_ORIGINAL_TYPE (name),
12460                                   is_const_type, is_volatile_type,
12461                                   context_die);
12462       /* Else cv-qualified version of named type; fall through.  */
12463     }
12464
12465   if (is_const_type)
12466     {
12467       mod_type_die = new_die (DW_TAG_const_type, comp_unit_die, type);
12468       sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
12469     }
12470   else if (is_volatile_type)
12471     {
12472       mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die, type);
12473       sub_die = modified_type_die (type, 0, 0, context_die);
12474     }
12475   else if (code == POINTER_TYPE)
12476     {
12477       mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die, type);
12478       add_AT_unsigned (mod_type_die, DW_AT_byte_size,
12479                        simple_type_size_in_bits (type) / BITS_PER_UNIT);
12480       item_type = TREE_TYPE (type);
12481       if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type)))
12482         add_AT_unsigned (mod_type_die, DW_AT_address_class,
12483                          TYPE_ADDR_SPACE (item_type));
12484     }
12485   else if (code == REFERENCE_TYPE)
12486     {
12487       if (TYPE_REF_IS_RVALUE (type) && dwarf_version >= 4)
12488         mod_type_die = new_die (DW_TAG_rvalue_reference_type, comp_unit_die,
12489                                 type);
12490       else
12491         mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die, type);
12492       add_AT_unsigned (mod_type_die, DW_AT_byte_size,
12493                        simple_type_size_in_bits (type) / BITS_PER_UNIT);
12494       item_type = TREE_TYPE (type);
12495       if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type)))
12496         add_AT_unsigned (mod_type_die, DW_AT_address_class,
12497                          TYPE_ADDR_SPACE (item_type));
12498     }
12499   else if (code == INTEGER_TYPE
12500            && TREE_TYPE (type) != NULL_TREE
12501            && subrange_type_for_debug_p (type, &low, &high))
12502     {
12503       mod_type_die = subrange_type_die (type, low, high, context_die);
12504       item_type = TREE_TYPE (type);
12505     }
12506   else if (is_base_type (type))
12507     mod_type_die = base_type_die (type);
12508   else
12509     {
12510       gen_type_die (type, context_die);
12511
12512       /* We have to get the type_main_variant here (and pass that to the
12513          `lookup_type_die' routine) because the ..._TYPE node we have
12514          might simply be a *copy* of some original type node (where the
12515          copy was created to help us keep track of typedef names) and
12516          that copy might have a different TYPE_UID from the original
12517          ..._TYPE node.  */
12518       if (TREE_CODE (type) != VECTOR_TYPE)
12519         return lookup_type_die (type_main_variant (type));
12520       else
12521         /* Vectors have the debugging information in the type,
12522            not the main variant.  */
12523         return lookup_type_die (type);
12524     }
12525
12526   /* Builtin types don't have a DECL_ORIGINAL_TYPE.  For those,
12527      don't output a DW_TAG_typedef, since there isn't one in the
12528      user's program; just attach a DW_AT_name to the type.
12529      Don't attach a DW_AT_name to DW_TAG_const_type or DW_TAG_volatile_type
12530      if the base type already has the same name.  */
12531   if (name
12532       && ((TREE_CODE (name) != TYPE_DECL
12533            && (qualified_type == TYPE_MAIN_VARIANT (type)
12534                || (!is_const_type && !is_volatile_type)))
12535           || (TREE_CODE (name) == TYPE_DECL
12536               && TREE_TYPE (name) == qualified_type
12537               && DECL_NAME (name))))
12538     {
12539       if (TREE_CODE (name) == TYPE_DECL)
12540         /* Could just call add_name_and_src_coords_attributes here,
12541            but since this is a builtin type it doesn't have any
12542            useful source coordinates anyway.  */
12543         name = DECL_NAME (name);
12544       add_name_attribute (mod_type_die, IDENTIFIER_POINTER (name));
12545     }
12546   /* This probably indicates a bug.  */
12547   else if (mod_type_die && mod_type_die->die_tag == DW_TAG_base_type)
12548     add_name_attribute (mod_type_die, "__unknown__");
12549
12550   if (qualified_type)
12551     equate_type_number_to_die (qualified_type, mod_type_die);
12552
12553   if (item_type)
12554     /* We must do this after the equate_type_number_to_die call, in case
12555        this is a recursive type.  This ensures that the modified_type_die
12556        recursion will terminate even if the type is recursive.  Recursive
12557        types are possible in Ada.  */
12558     sub_die = modified_type_die (item_type,
12559                                  TYPE_READONLY (item_type),
12560                                  TYPE_VOLATILE (item_type),
12561                                  context_die);
12562
12563   if (sub_die != NULL)
12564     add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
12565
12566   return mod_type_die;
12567 }
12568
12569 /* Generate DIEs for the generic parameters of T.
12570    T must be either a generic type or a generic function.
12571    See http://gcc.gnu.org/wiki/TemplateParmsDwarf for more.  */
12572
12573 static void
12574 gen_generic_params_dies (tree t)
12575 {
12576   tree parms, args;
12577   int parms_num, i;
12578   dw_die_ref die = NULL;
12579
12580   if (!t || (TYPE_P (t) && !COMPLETE_TYPE_P (t)))
12581     return;
12582
12583   if (TYPE_P (t))
12584     die = lookup_type_die (t);
12585   else if (DECL_P (t))
12586     die = lookup_decl_die (t);
12587
12588   gcc_assert (die);
12589
12590   parms = lang_hooks.get_innermost_generic_parms (t);
12591   if (!parms)
12592     /* T has no generic parameter. It means T is neither a generic type
12593        or function. End of story.  */
12594     return;
12595
12596   parms_num = TREE_VEC_LENGTH (parms);
12597   args = lang_hooks.get_innermost_generic_args (t);
12598   for (i = 0; i < parms_num; i++)
12599     {
12600       tree parm, arg, arg_pack_elems;
12601
12602       parm = TREE_VEC_ELT (parms, i);
12603       arg = TREE_VEC_ELT (args, i);
12604       arg_pack_elems = lang_hooks.types.get_argument_pack_elems (arg);
12605       gcc_assert (parm && TREE_VALUE (parm) && arg);
12606
12607       if (parm && TREE_VALUE (parm) && arg)
12608         {
12609           /* If PARM represents a template parameter pack,
12610              emit a DW_TAG_GNU_template_parameter_pack DIE, followed
12611              by DW_TAG_template_*_parameter DIEs for the argument
12612              pack elements of ARG. Note that ARG would then be
12613              an argument pack.  */
12614           if (arg_pack_elems)
12615             template_parameter_pack_die (TREE_VALUE (parm),
12616                                          arg_pack_elems,
12617                                          die);
12618           else
12619             generic_parameter_die (TREE_VALUE (parm), arg,
12620                                    true /* Emit DW_AT_name */, die);
12621         }
12622     }
12623 }
12624
12625 /* Create and return a DIE for PARM which should be
12626    the representation of a generic type parameter.
12627    For instance, in the C++ front end, PARM would be a template parameter.
12628    ARG is the argument to PARM.
12629    EMIT_NAME_P if tree, the DIE will have DW_AT_name attribute set to the
12630    name of the PARM.
12631    PARENT_DIE is the parent DIE which the new created DIE should be added to,
12632    as a child node.  */
12633
12634 static dw_die_ref
12635 generic_parameter_die (tree parm, tree arg,
12636                        bool emit_name_p,
12637                        dw_die_ref parent_die)
12638 {
12639   dw_die_ref tmpl_die = NULL;
12640   const char *name = NULL;
12641
12642   if (!parm || !DECL_NAME (parm) || !arg)
12643     return NULL;
12644
12645   /* We support non-type generic parameters and arguments,
12646      type generic parameters and arguments, as well as
12647      generic generic parameters (a.k.a. template template parameters in C++)
12648      and arguments.  */
12649   if (TREE_CODE (parm) == PARM_DECL)
12650     /* PARM is a nontype generic parameter  */
12651     tmpl_die = new_die (DW_TAG_template_value_param, parent_die, parm);
12652   else if (TREE_CODE (parm) == TYPE_DECL)
12653     /* PARM is a type generic parameter.  */
12654     tmpl_die = new_die (DW_TAG_template_type_param, parent_die, parm);
12655   else if (lang_hooks.decls.generic_generic_parameter_decl_p (parm))
12656     /* PARM is a generic generic parameter.
12657        Its DIE is a GNU extension. It shall have a
12658        DW_AT_name attribute to represent the name of the template template
12659        parameter, and a DW_AT_GNU_template_name attribute to represent the
12660        name of the template template argument.  */
12661     tmpl_die = new_die (DW_TAG_GNU_template_template_param,
12662                         parent_die, parm);
12663   else
12664     gcc_unreachable ();
12665
12666   if (tmpl_die)
12667     {
12668       tree tmpl_type;
12669
12670       /* If PARM is a generic parameter pack, it means we are
12671          emitting debug info for a template argument pack element.
12672          In other terms, ARG is a template argument pack element.
12673          In that case, we don't emit any DW_AT_name attribute for
12674          the die.  */
12675       if (emit_name_p)
12676         {
12677           name = IDENTIFIER_POINTER (DECL_NAME (parm));
12678           gcc_assert (name);
12679           add_AT_string (tmpl_die, DW_AT_name, name);
12680         }
12681
12682       if (!lang_hooks.decls.generic_generic_parameter_decl_p (parm))
12683         {
12684           /* DWARF3, 5.6.8 says if PARM is a non-type generic parameter
12685              TMPL_DIE should have a child DW_AT_type attribute that is set
12686              to the type of the argument to PARM, which is ARG.
12687              If PARM is a type generic parameter, TMPL_DIE should have a
12688              child DW_AT_type that is set to ARG.  */
12689           tmpl_type = TYPE_P (arg) ? arg : TREE_TYPE (arg);
12690           add_type_attribute (tmpl_die, tmpl_type, 0,
12691                               TREE_THIS_VOLATILE (tmpl_type),
12692                               parent_die);
12693         }
12694       else
12695         {
12696           /* So TMPL_DIE is a DIE representing a
12697              a generic generic template parameter, a.k.a template template
12698              parameter in C++ and arg is a template.  */
12699
12700           /* The DW_AT_GNU_template_name attribute of the DIE must be set
12701              to the name of the argument.  */
12702           name = dwarf2_name (TYPE_P (arg) ? TYPE_NAME (arg) : arg, 1);
12703           if (name)
12704             add_AT_string (tmpl_die, DW_AT_GNU_template_name, name);
12705         }
12706
12707       if (TREE_CODE (parm) == PARM_DECL)
12708         /* So PARM is a non-type generic parameter.
12709            DWARF3 5.6.8 says we must set a DW_AT_const_value child
12710            attribute of TMPL_DIE which value represents the value
12711            of ARG.
12712            We must be careful here:
12713            The value of ARG might reference some function decls.
12714            We might currently be emitting debug info for a generic
12715            type and types are emitted before function decls, we don't
12716            know if the function decls referenced by ARG will actually be
12717            emitted after cgraph computations.
12718            So must defer the generation of the DW_AT_const_value to
12719            after cgraph is ready.  */
12720         append_entry_to_tmpl_value_parm_die_table (tmpl_die, arg);
12721     }
12722
12723   return tmpl_die;
12724 }
12725
12726 /* Generate and return a  DW_TAG_GNU_template_parameter_pack DIE representing.
12727    PARM_PACK must be a template parameter pack. The returned DIE
12728    will be child DIE of PARENT_DIE.  */
12729
12730 static dw_die_ref
12731 template_parameter_pack_die (tree parm_pack,
12732                              tree parm_pack_args,
12733                              dw_die_ref parent_die)
12734 {
12735   dw_die_ref die;
12736   int j;
12737
12738   gcc_assert (parent_die && parm_pack);
12739
12740   die = new_die (DW_TAG_GNU_template_parameter_pack, parent_die, parm_pack);
12741   add_name_and_src_coords_attributes (die, parm_pack);
12742   for (j = 0; j < TREE_VEC_LENGTH (parm_pack_args); j++)
12743     generic_parameter_die (parm_pack,
12744                            TREE_VEC_ELT (parm_pack_args, j),
12745                            false /* Don't emit DW_AT_name */,
12746                            die);
12747   return die;
12748 }
12749
12750 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
12751    an enumerated type.  */
12752
12753 static inline int
12754 type_is_enum (const_tree type)
12755 {
12756   return TREE_CODE (type) == ENUMERAL_TYPE;
12757 }
12758
12759 /* Return the DBX register number described by a given RTL node.  */
12760
12761 static unsigned int
12762 dbx_reg_number (const_rtx rtl)
12763 {
12764   unsigned regno = REGNO (rtl);
12765
12766   gcc_assert (regno < FIRST_PSEUDO_REGISTER);
12767
12768 #ifdef LEAF_REG_REMAP
12769   if (current_function_uses_only_leaf_regs)
12770     {
12771       int leaf_reg = LEAF_REG_REMAP (regno);
12772       if (leaf_reg != -1)
12773         regno = (unsigned) leaf_reg;
12774     }
12775 #endif
12776
12777   return DBX_REGISTER_NUMBER (regno);
12778 }
12779
12780 /* Optionally add a DW_OP_piece term to a location description expression.
12781    DW_OP_piece is only added if the location description expression already
12782    doesn't end with DW_OP_piece.  */
12783
12784 static void
12785 add_loc_descr_op_piece (dw_loc_descr_ref *list_head, int size)
12786 {
12787   dw_loc_descr_ref loc;
12788
12789   if (*list_head != NULL)
12790     {
12791       /* Find the end of the chain.  */
12792       for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
12793         ;
12794
12795       if (loc->dw_loc_opc != DW_OP_piece)
12796         loc->dw_loc_next = new_loc_descr (DW_OP_piece, size, 0);
12797     }
12798 }
12799
12800 /* Return a location descriptor that designates a machine register or
12801    zero if there is none.  */
12802
12803 static dw_loc_descr_ref
12804 reg_loc_descriptor (rtx rtl, enum var_init_status initialized)
12805 {
12806   rtx regs;
12807
12808   if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
12809     return 0;
12810
12811   regs = targetm.dwarf_register_span (rtl);
12812
12813   if (hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)] > 1 || regs)
12814     return multiple_reg_loc_descriptor (rtl, regs, initialized);
12815   else
12816     return one_reg_loc_descriptor (dbx_reg_number (rtl), initialized);
12817 }
12818
12819 /* Return a location descriptor that designates a machine register for
12820    a given hard register number.  */
12821
12822 static dw_loc_descr_ref
12823 one_reg_loc_descriptor (unsigned int regno, enum var_init_status initialized)
12824 {
12825   dw_loc_descr_ref reg_loc_descr;
12826
12827   if (regno <= 31)
12828     reg_loc_descr
12829       = new_loc_descr ((enum dwarf_location_atom) (DW_OP_reg0 + regno), 0, 0);
12830   else
12831     reg_loc_descr = new_loc_descr (DW_OP_regx, regno, 0);
12832
12833   if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
12834     add_loc_descr (&reg_loc_descr, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
12835
12836   return reg_loc_descr;
12837 }
12838
12839 /* Given an RTL of a register, return a location descriptor that
12840    designates a value that spans more than one register.  */
12841
12842 static dw_loc_descr_ref
12843 multiple_reg_loc_descriptor (rtx rtl, rtx regs,
12844                              enum var_init_status initialized)
12845 {
12846   int nregs, size, i;
12847   unsigned reg;
12848   dw_loc_descr_ref loc_result = NULL;
12849
12850   reg = REGNO (rtl);
12851 #ifdef LEAF_REG_REMAP
12852   if (current_function_uses_only_leaf_regs)
12853     {
12854       int leaf_reg = LEAF_REG_REMAP (reg);
12855       if (leaf_reg != -1)
12856         reg = (unsigned) leaf_reg;
12857     }
12858 #endif
12859   gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg) == dbx_reg_number (rtl));
12860   nregs = hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)];
12861
12862   /* Simple, contiguous registers.  */
12863   if (regs == NULL_RTX)
12864     {
12865       size = GET_MODE_SIZE (GET_MODE (rtl)) / nregs;
12866
12867       loc_result = NULL;
12868       while (nregs--)
12869         {
12870           dw_loc_descr_ref t;
12871
12872           t = one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg),
12873                                       VAR_INIT_STATUS_INITIALIZED);
12874           add_loc_descr (&loc_result, t);
12875           add_loc_descr_op_piece (&loc_result, size);
12876           ++reg;
12877         }
12878       return loc_result;
12879     }
12880
12881   /* Now onto stupid register sets in non contiguous locations.  */
12882
12883   gcc_assert (GET_CODE (regs) == PARALLEL);
12884
12885   size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
12886   loc_result = NULL;
12887
12888   for (i = 0; i < XVECLEN (regs, 0); ++i)
12889     {
12890       dw_loc_descr_ref t;
12891
12892       t = one_reg_loc_descriptor (REGNO (XVECEXP (regs, 0, i)),
12893                                   VAR_INIT_STATUS_INITIALIZED);
12894       add_loc_descr (&loc_result, t);
12895       size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
12896       add_loc_descr_op_piece (&loc_result, size);
12897     }
12898
12899   if (loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
12900     add_loc_descr (&loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
12901   return loc_result;
12902 }
12903
12904 #endif /* DWARF2_DEBUGGING_INFO */
12905
12906 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
12907
12908 /* Return a location descriptor that designates a constant.  */
12909
12910 static dw_loc_descr_ref
12911 int_loc_descriptor (HOST_WIDE_INT i)
12912 {
12913   enum dwarf_location_atom op;
12914
12915   /* Pick the smallest representation of a constant, rather than just
12916      defaulting to the LEB encoding.  */
12917   if (i >= 0)
12918     {
12919       if (i <= 31)
12920         op = (enum dwarf_location_atom) (DW_OP_lit0 + i);
12921       else if (i <= 0xff)
12922         op = DW_OP_const1u;
12923       else if (i <= 0xffff)
12924         op = DW_OP_const2u;
12925       else if (HOST_BITS_PER_WIDE_INT == 32
12926                || i <= 0xffffffff)
12927         op = DW_OP_const4u;
12928       else
12929         op = DW_OP_constu;
12930     }
12931   else
12932     {
12933       if (i >= -0x80)
12934         op = DW_OP_const1s;
12935       else if (i >= -0x8000)
12936         op = DW_OP_const2s;
12937       else if (HOST_BITS_PER_WIDE_INT == 32
12938                || i >= -0x80000000)
12939         op = DW_OP_const4s;
12940       else
12941         op = DW_OP_consts;
12942     }
12943
12944   return new_loc_descr (op, i, 0);
12945 }
12946 #endif
12947
12948 #ifdef DWARF2_DEBUGGING_INFO
12949 /* Return loc description representing "address" of integer value.
12950    This can appear only as toplevel expression.  */
12951
12952 static dw_loc_descr_ref
12953 address_of_int_loc_descriptor (int size, HOST_WIDE_INT i)
12954 {
12955   int litsize;
12956   dw_loc_descr_ref loc_result = NULL;
12957
12958   if (!(dwarf_version >= 4 || !dwarf_strict))
12959     return NULL;
12960
12961   if (i >= 0)
12962     {
12963       if (i <= 31)
12964         litsize = 1;
12965       else if (i <= 0xff)
12966         litsize = 2;
12967       else if (i <= 0xffff)
12968         litsize = 3;
12969       else if (HOST_BITS_PER_WIDE_INT == 32
12970                || i <= 0xffffffff)
12971         litsize = 5;
12972       else
12973         litsize = 1 + size_of_uleb128 ((unsigned HOST_WIDE_INT) i);
12974     }
12975   else
12976     {
12977       if (i >= -0x80)
12978         litsize = 2;
12979       else if (i >= -0x8000)
12980         litsize = 3;
12981       else if (HOST_BITS_PER_WIDE_INT == 32
12982                || i >= -0x80000000)
12983         litsize = 5;
12984       else
12985         litsize = 1 + size_of_sleb128 (i);
12986     }
12987   /* Determine if DW_OP_stack_value or DW_OP_implicit_value
12988      is more compact.  For DW_OP_stack_value we need:
12989      litsize + 1 (DW_OP_stack_value)
12990      and for DW_OP_implicit_value:
12991      1 (DW_OP_implicit_value) + 1 (length) + size.  */
12992   if ((int) DWARF2_ADDR_SIZE >= size && litsize + 1 <= 1 + 1 + size)
12993     {
12994       loc_result = int_loc_descriptor (i);
12995       add_loc_descr (&loc_result,
12996                      new_loc_descr (DW_OP_stack_value, 0, 0));
12997       return loc_result;
12998     }
12999
13000   loc_result = new_loc_descr (DW_OP_implicit_value,
13001                               size, 0);
13002   loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
13003   loc_result->dw_loc_oprnd2.v.val_int = i;
13004   return loc_result;
13005 }
13006
13007 /* Return a location descriptor that designates a base+offset location.  */
13008
13009 static dw_loc_descr_ref
13010 based_loc_descr (rtx reg, HOST_WIDE_INT offset,
13011                  enum var_init_status initialized)
13012 {
13013   unsigned int regno;
13014   dw_loc_descr_ref result;
13015   dw_fde_ref fde = current_fde ();
13016
13017   /* We only use "frame base" when we're sure we're talking about the
13018      post-prologue local stack frame.  We do this by *not* running
13019      register elimination until this point, and recognizing the special
13020      argument pointer and soft frame pointer rtx's.  */
13021   if (reg == arg_pointer_rtx || reg == frame_pointer_rtx)
13022     {
13023       rtx elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
13024
13025       if (elim != reg)
13026         {
13027           if (GET_CODE (elim) == PLUS)
13028             {
13029               offset += INTVAL (XEXP (elim, 1));
13030               elim = XEXP (elim, 0);
13031             }
13032           gcc_assert ((SUPPORTS_STACK_ALIGNMENT
13033                        && (elim == hard_frame_pointer_rtx
13034                            || elim == stack_pointer_rtx))
13035                       || elim == (frame_pointer_needed
13036                                   ? hard_frame_pointer_rtx
13037                                   : stack_pointer_rtx));
13038
13039           /* If drap register is used to align stack, use frame
13040              pointer + offset to access stack variables.  If stack
13041              is aligned without drap, use stack pointer + offset to
13042              access stack variables.  */
13043           if (crtl->stack_realign_tried
13044               && reg == frame_pointer_rtx)
13045             {
13046               int base_reg
13047                 = DWARF_FRAME_REGNUM ((fde && fde->drap_reg != INVALID_REGNUM)
13048                                       ? HARD_FRAME_POINTER_REGNUM
13049                                       : STACK_POINTER_REGNUM);
13050               return new_reg_loc_descr (base_reg, offset);
13051             }
13052
13053           offset += frame_pointer_fb_offset;
13054           return new_loc_descr (DW_OP_fbreg, offset, 0);
13055         }
13056     }
13057   else if (!optimize
13058            && fde
13059            && (fde->drap_reg == REGNO (reg)
13060                || fde->vdrap_reg == REGNO (reg)))
13061     {
13062       /* Use cfa+offset to represent the location of arguments passed
13063          on the stack when drap is used to align stack.
13064          Only do this when not optimizing, for optimized code var-tracking
13065          is supposed to track where the arguments live and the register
13066          used as vdrap or drap in some spot might be used for something
13067          else in other part of the routine.  */
13068       return new_loc_descr (DW_OP_fbreg, offset, 0);
13069     }
13070
13071   regno = dbx_reg_number (reg);
13072   if (regno <= 31)
13073     result = new_loc_descr ((enum dwarf_location_atom) (DW_OP_breg0 + regno),
13074                             offset, 0);
13075   else
13076     result = new_loc_descr (DW_OP_bregx, regno, offset);
13077
13078   if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
13079     add_loc_descr (&result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13080
13081   return result;
13082 }
13083
13084 /* Return true if this RTL expression describes a base+offset calculation.  */
13085
13086 static inline int
13087 is_based_loc (const_rtx rtl)
13088 {
13089   return (GET_CODE (rtl) == PLUS
13090           && ((REG_P (XEXP (rtl, 0))
13091                && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
13092                && CONST_INT_P (XEXP (rtl, 1)))));
13093 }
13094
13095 /* Try to handle TLS MEMs, for which mem_loc_descriptor on XEXP (mem, 0)
13096    failed.  */
13097
13098 static dw_loc_descr_ref
13099 tls_mem_loc_descriptor (rtx mem)
13100 {
13101   tree base;
13102   dw_loc_descr_ref loc_result;
13103
13104   if (MEM_EXPR (mem) == NULL_TREE || MEM_OFFSET (mem) == NULL_RTX)
13105     return NULL;
13106
13107   base = get_base_address (MEM_EXPR (mem));
13108   if (base == NULL
13109       || TREE_CODE (base) != VAR_DECL
13110       || !DECL_THREAD_LOCAL_P (base))
13111     return NULL;
13112
13113   loc_result = loc_descriptor_from_tree (MEM_EXPR (mem), 1);
13114   if (loc_result == NULL)
13115     return NULL;
13116
13117   if (INTVAL (MEM_OFFSET (mem)))
13118     loc_descr_plus_const (&loc_result, INTVAL (MEM_OFFSET (mem)));
13119
13120   return loc_result;
13121 }
13122
13123 /* Output debug info about reason why we failed to expand expression as dwarf
13124    expression.  */
13125
13126 static void
13127 expansion_failed (tree expr, rtx rtl, char const *reason)
13128 {
13129   if (dump_file && (dump_flags & TDF_DETAILS))
13130     {
13131       fprintf (dump_file, "Failed to expand as dwarf: ");
13132       if (expr)
13133         print_generic_expr (dump_file, expr, dump_flags);
13134       if (rtl)
13135         {
13136           fprintf (dump_file, "\n");
13137           print_rtl (dump_file, rtl);
13138         }
13139       fprintf (dump_file, "\nReason: %s\n", reason);
13140     }
13141 }
13142
13143 /* Helper function for const_ok_for_output, called either directly
13144    or via for_each_rtx.  */
13145
13146 static int
13147 const_ok_for_output_1 (rtx *rtlp, void *data ATTRIBUTE_UNUSED)
13148 {
13149   rtx rtl = *rtlp;
13150
13151   if (GET_CODE (rtl) == UNSPEC)
13152     {
13153       /* If delegitimize_address couldn't do anything with the UNSPEC, assume
13154          we can't express it in the debug info.  */
13155 #ifdef ENABLE_CHECKING
13156       inform (current_function_decl
13157               ? DECL_SOURCE_LOCATION (current_function_decl)
13158               : UNKNOWN_LOCATION,
13159               "non-delegitimized UNSPEC %d found in variable location",
13160               XINT (rtl, 1));
13161 #endif
13162       expansion_failed (NULL_TREE, rtl,
13163                         "UNSPEC hasn't been delegitimized.\n");
13164       return 1;
13165     }
13166
13167   if (GET_CODE (rtl) != SYMBOL_REF)
13168     return 0;
13169
13170   if (CONSTANT_POOL_ADDRESS_P (rtl))
13171     {
13172       bool marked;
13173       get_pool_constant_mark (rtl, &marked);
13174       /* If all references to this pool constant were optimized away,
13175          it was not output and thus we can't represent it.  */
13176       if (!marked)
13177         {
13178           expansion_failed (NULL_TREE, rtl,
13179                             "Constant was removed from constant pool.\n");
13180           return 1;
13181         }
13182     }
13183
13184   if (SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
13185     return 1;
13186
13187   /* Avoid references to external symbols in debug info, on several targets
13188      the linker might even refuse to link when linking a shared library,
13189      and in many other cases the relocations for .debug_info/.debug_loc are
13190      dropped, so the address becomes zero anyway.  Hidden symbols, guaranteed
13191      to be defined within the same shared library or executable are fine.  */
13192   if (SYMBOL_REF_EXTERNAL_P (rtl))
13193     {
13194       tree decl = SYMBOL_REF_DECL (rtl);
13195
13196       if (decl == NULL || !targetm.binds_local_p (decl))
13197         {
13198           expansion_failed (NULL_TREE, rtl,
13199                             "Symbol not defined in current TU.\n");
13200           return 1;
13201         }
13202     }
13203
13204   return 0;
13205 }
13206
13207 /* Return true if constant RTL can be emitted in DW_OP_addr or
13208    DW_AT_const_value.  TLS SYMBOL_REFs, external SYMBOL_REFs or
13209    non-marked constant pool SYMBOL_REFs can't be referenced in it.  */
13210
13211 static bool
13212 const_ok_for_output (rtx rtl)
13213 {
13214   if (GET_CODE (rtl) == SYMBOL_REF)
13215     return const_ok_for_output_1 (&rtl, NULL) == 0;
13216
13217   if (GET_CODE (rtl) == CONST)
13218     return for_each_rtx (&XEXP (rtl, 0), const_ok_for_output_1, NULL) == 0;
13219
13220   return true;
13221 }
13222
13223 /* The following routine converts the RTL for a variable or parameter
13224    (resident in memory) into an equivalent Dwarf representation of a
13225    mechanism for getting the address of that same variable onto the top of a
13226    hypothetical "address evaluation" stack.
13227
13228    When creating memory location descriptors, we are effectively transforming
13229    the RTL for a memory-resident object into its Dwarf postfix expression
13230    equivalent.  This routine recursively descends an RTL tree, turning
13231    it into Dwarf postfix code as it goes.
13232
13233    MODE is the mode of the memory reference, needed to handle some
13234    autoincrement addressing modes.
13235
13236    CAN_USE_FBREG is a flag whether we can use DW_AT_frame_base in the
13237    location list for RTL.
13238
13239    Return 0 if we can't represent the location.  */
13240
13241 static dw_loc_descr_ref
13242 mem_loc_descriptor (rtx rtl, enum machine_mode mode,
13243                     enum var_init_status initialized)
13244 {
13245   dw_loc_descr_ref mem_loc_result = NULL;
13246   enum dwarf_location_atom op;
13247   dw_loc_descr_ref op0, op1;
13248
13249   /* Note that for a dynamically sized array, the location we will generate a
13250      description of here will be the lowest numbered location which is
13251      actually within the array.  That's *not* necessarily the same as the
13252      zeroth element of the array.  */
13253
13254   rtl = targetm.delegitimize_address (rtl);
13255
13256   switch (GET_CODE (rtl))
13257     {
13258     case POST_INC:
13259     case POST_DEC:
13260     case POST_MODIFY:
13261       return mem_loc_descriptor (XEXP (rtl, 0), mode, initialized);
13262
13263     case SUBREG:
13264       /* The case of a subreg may arise when we have a local (register)
13265          variable or a formal (register) parameter which doesn't quite fill
13266          up an entire register.  For now, just assume that it is
13267          legitimate to make the Dwarf info refer to the whole register which
13268          contains the given subreg.  */
13269       if (!subreg_lowpart_p (rtl))
13270         break;
13271       rtl = SUBREG_REG (rtl);
13272       if (GET_MODE_SIZE (GET_MODE (rtl)) > DWARF2_ADDR_SIZE)
13273         break;
13274       if (GET_MODE_CLASS (GET_MODE (rtl)) != MODE_INT)
13275         break;
13276       mem_loc_result = mem_loc_descriptor (rtl, mode, initialized);
13277       break;
13278
13279     case REG:
13280       /* Whenever a register number forms a part of the description of the
13281          method for calculating the (dynamic) address of a memory resident
13282          object, DWARF rules require the register number be referred to as
13283          a "base register".  This distinction is not based in any way upon
13284          what category of register the hardware believes the given register
13285          belongs to.  This is strictly DWARF terminology we're dealing with
13286          here. Note that in cases where the location of a memory-resident
13287          data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
13288          OP_CONST (0)) the actual DWARF location descriptor that we generate
13289          may just be OP_BASEREG (basereg).  This may look deceptively like
13290          the object in question was allocated to a register (rather than in
13291          memory) so DWARF consumers need to be aware of the subtle
13292          distinction between OP_REG and OP_BASEREG.  */
13293       if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
13294         mem_loc_result = based_loc_descr (rtl, 0, VAR_INIT_STATUS_INITIALIZED);
13295       else if (stack_realign_drap
13296                && crtl->drap_reg
13297                && crtl->args.internal_arg_pointer == rtl
13298                && REGNO (crtl->drap_reg) < FIRST_PSEUDO_REGISTER)
13299         {
13300           /* If RTL is internal_arg_pointer, which has been optimized
13301              out, use DRAP instead.  */
13302           mem_loc_result = based_loc_descr (crtl->drap_reg, 0,
13303                                             VAR_INIT_STATUS_INITIALIZED);
13304         }
13305       break;
13306
13307     case SIGN_EXTEND:
13308     case ZERO_EXTEND:
13309       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13310                                 VAR_INIT_STATUS_INITIALIZED);
13311       if (op0 == 0)
13312         break;
13313       else
13314         {
13315           int shift = DWARF2_ADDR_SIZE
13316                       - GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0)));
13317           shift *= BITS_PER_UNIT;
13318           if (GET_CODE (rtl) == SIGN_EXTEND)
13319             op = DW_OP_shra;
13320           else
13321             op = DW_OP_shr;
13322           mem_loc_result = op0;
13323           add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
13324           add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
13325           add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
13326           add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13327         }
13328       break;
13329
13330     case MEM:
13331       mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl),
13332                                            VAR_INIT_STATUS_INITIALIZED);
13333       if (mem_loc_result == NULL)
13334         mem_loc_result = tls_mem_loc_descriptor (rtl);
13335       if (mem_loc_result != 0)
13336         {
13337           if (GET_MODE_SIZE (GET_MODE (rtl)) > DWARF2_ADDR_SIZE)
13338             {
13339               expansion_failed (NULL_TREE, rtl, "DWARF address size mismatch");
13340               return 0;
13341             }
13342           else if (GET_MODE_SIZE (GET_MODE (rtl)) == DWARF2_ADDR_SIZE)
13343             add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
13344           else
13345             add_loc_descr (&mem_loc_result,
13346                            new_loc_descr (DW_OP_deref_size,
13347                                           GET_MODE_SIZE (GET_MODE (rtl)), 0));
13348         }
13349       else
13350         {
13351           rtx new_rtl = avoid_constant_pool_reference (rtl);
13352           if (new_rtl != rtl)
13353             return mem_loc_descriptor (new_rtl, mode, initialized);
13354         }
13355       break;
13356
13357     case LO_SUM:
13358          rtl = XEXP (rtl, 1);
13359
13360       /* ... fall through ...  */
13361
13362     case LABEL_REF:
13363       /* Some ports can transform a symbol ref into a label ref, because
13364          the symbol ref is too far away and has to be dumped into a constant
13365          pool.  */
13366     case CONST:
13367     case SYMBOL_REF:
13368       if (GET_CODE (rtl) == SYMBOL_REF
13369           && SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
13370         {
13371           dw_loc_descr_ref temp;
13372
13373           /* If this is not defined, we have no way to emit the data.  */
13374           if (!targetm.have_tls || !targetm.asm_out.output_dwarf_dtprel)
13375             break;
13376
13377           temp = new_loc_descr (DW_OP_addr, 0, 0);
13378           temp->dw_loc_oprnd1.val_class = dw_val_class_addr;
13379           temp->dw_loc_oprnd1.v.val_addr = rtl;
13380           temp->dtprel = true;
13381
13382           mem_loc_result = new_loc_descr (DW_OP_GNU_push_tls_address, 0, 0);
13383           add_loc_descr (&mem_loc_result, temp);
13384
13385           break;
13386         }
13387
13388       if (!const_ok_for_output (rtl))
13389         break;
13390
13391     symref:
13392       mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
13393       mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
13394       mem_loc_result->dw_loc_oprnd1.v.val_addr = rtl;
13395       VEC_safe_push (rtx, gc, used_rtx_array, rtl);
13396       break;
13397
13398     case CONCAT:
13399     case CONCATN:
13400     case VAR_LOCATION:
13401       expansion_failed (NULL_TREE, rtl,
13402                         "CONCAT/CONCATN/VAR_LOCATION is handled only by loc_descriptor");
13403       return 0;
13404
13405     case PRE_MODIFY:
13406       /* Extract the PLUS expression nested inside and fall into
13407          PLUS code below.  */
13408       rtl = XEXP (rtl, 1);
13409       goto plus;
13410
13411     case PRE_INC:
13412     case PRE_DEC:
13413       /* Turn these into a PLUS expression and fall into the PLUS code
13414          below.  */
13415       rtl = gen_rtx_PLUS (word_mode, XEXP (rtl, 0),
13416                           GEN_INT (GET_CODE (rtl) == PRE_INC
13417                                    ? GET_MODE_UNIT_SIZE (mode)
13418                                    : -GET_MODE_UNIT_SIZE (mode)));
13419
13420       /* ... fall through ...  */
13421
13422     case PLUS:
13423     plus:
13424       if (is_based_loc (rtl))
13425         mem_loc_result = based_loc_descr (XEXP (rtl, 0),
13426                                           INTVAL (XEXP (rtl, 1)),
13427                                           VAR_INIT_STATUS_INITIALIZED);
13428       else
13429         {
13430           mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode,
13431                                                VAR_INIT_STATUS_INITIALIZED);
13432           if (mem_loc_result == 0)
13433             break;
13434
13435           if (CONST_INT_P (XEXP (rtl, 1)))
13436             loc_descr_plus_const (&mem_loc_result, INTVAL (XEXP (rtl, 1)));
13437           else
13438             {
13439               dw_loc_descr_ref mem_loc_result2
13440                 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13441                                       VAR_INIT_STATUS_INITIALIZED);
13442               if (mem_loc_result2 == 0)
13443                 break;
13444               add_loc_descr (&mem_loc_result, mem_loc_result2);
13445               add_loc_descr (&mem_loc_result,
13446                              new_loc_descr (DW_OP_plus, 0, 0));
13447             }
13448         }
13449       break;
13450
13451     /* If a pseudo-reg is optimized away, it is possible for it to
13452        be replaced with a MEM containing a multiply or shift.  */
13453     case MINUS:
13454       op = DW_OP_minus;
13455       goto do_binop;
13456
13457     case MULT:
13458       op = DW_OP_mul;
13459       goto do_binop;
13460
13461     case DIV:
13462       op = DW_OP_div;
13463       goto do_binop;
13464
13465     case UMOD:
13466       op = DW_OP_mod;
13467       goto do_binop;
13468
13469     case ASHIFT:
13470       op = DW_OP_shl;
13471       goto do_binop;
13472
13473     case ASHIFTRT:
13474       op = DW_OP_shra;
13475       goto do_binop;
13476
13477     case LSHIFTRT:
13478       op = DW_OP_shr;
13479       goto do_binop;
13480
13481     case AND:
13482       op = DW_OP_and;
13483       goto do_binop;
13484
13485     case IOR:
13486       op = DW_OP_or;
13487       goto do_binop;
13488
13489     case XOR:
13490       op = DW_OP_xor;
13491       goto do_binop;
13492
13493     do_binop:
13494       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13495                                 VAR_INIT_STATUS_INITIALIZED);
13496       op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13497                                 VAR_INIT_STATUS_INITIALIZED);
13498
13499       if (op0 == 0 || op1 == 0)
13500         break;
13501
13502       mem_loc_result = op0;
13503       add_loc_descr (&mem_loc_result, op1);
13504       add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13505       break;
13506
13507     case MOD:
13508       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13509                                 VAR_INIT_STATUS_INITIALIZED);
13510       op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13511                                 VAR_INIT_STATUS_INITIALIZED);
13512
13513       if (op0 == 0 || op1 == 0)
13514         break;
13515
13516       mem_loc_result = op0;
13517       add_loc_descr (&mem_loc_result, op1);
13518       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
13519       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
13520       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_div, 0, 0));
13521       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
13522       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_minus, 0, 0));
13523       break;
13524
13525     case NOT:
13526       op = DW_OP_not;
13527       goto do_unop;
13528
13529     case ABS:
13530       op = DW_OP_abs;
13531       goto do_unop;
13532
13533     case NEG:
13534       op = DW_OP_neg;
13535       goto do_unop;
13536
13537     do_unop:
13538       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13539                                 VAR_INIT_STATUS_INITIALIZED);
13540
13541       if (op0 == 0)
13542         break;
13543
13544       mem_loc_result = op0;
13545       add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13546       break;
13547
13548     case CONST_INT:
13549       mem_loc_result = int_loc_descriptor (INTVAL (rtl));
13550       break;
13551
13552     case EQ:
13553       op = DW_OP_eq;
13554       goto do_scompare;
13555
13556     case GE:
13557       op = DW_OP_ge;
13558       goto do_scompare;
13559
13560     case GT:
13561       op = DW_OP_gt;
13562       goto do_scompare;
13563
13564     case LE:
13565       op = DW_OP_le;
13566       goto do_scompare;
13567
13568     case LT:
13569       op = DW_OP_lt;
13570       goto do_scompare;
13571
13572     case NE:
13573       op = DW_OP_ne;
13574       goto do_scompare;
13575
13576     do_scompare:
13577       if (GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) > DWARF2_ADDR_SIZE
13578           || GET_MODE_SIZE (GET_MODE (XEXP (rtl, 1))) > DWARF2_ADDR_SIZE)
13579         break;
13580       else
13581         {
13582           enum machine_mode op_mode = GET_MODE (XEXP (rtl, 0));
13583
13584           if (op_mode == VOIDmode)
13585             op_mode = GET_MODE (XEXP (rtl, 1));
13586           if (op_mode != VOIDmode && GET_MODE_CLASS (op_mode) != MODE_INT)
13587             break;
13588
13589           op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13590                                     VAR_INIT_STATUS_INITIALIZED);
13591           op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13592                                     VAR_INIT_STATUS_INITIALIZED);
13593
13594           if (op0 == 0 || op1 == 0)
13595             break;
13596
13597           if (op_mode != VOIDmode
13598               && GET_MODE_SIZE (op_mode) < DWARF2_ADDR_SIZE)
13599             {
13600               int shift = DWARF2_ADDR_SIZE - GET_MODE_SIZE (op_mode);
13601               shift *= BITS_PER_UNIT;
13602               /* For eq/ne, if the operands are known to be zero-extended,
13603                  there is no need to do the fancy shifting up.  */
13604               if (op == DW_OP_eq || op == DW_OP_ne)
13605                 {
13606                   dw_loc_descr_ref last0, last1;
13607                   for (last0 = op0;
13608                        last0->dw_loc_next != NULL;
13609                        last0 = last0->dw_loc_next)
13610                     ;
13611                   for (last1 = op1;
13612                        last1->dw_loc_next != NULL;
13613                        last1 = last1->dw_loc_next)
13614                     ;
13615                   /* deref_size zero extends, and for constants we can check
13616                      whether they are zero extended or not.  */
13617                   if (((last0->dw_loc_opc == DW_OP_deref_size
13618                         && last0->dw_loc_oprnd1.v.val_int
13619                            <= GET_MODE_SIZE (op_mode))
13620                        || (CONST_INT_P (XEXP (rtl, 0))
13621                             && (unsigned HOST_WIDE_INT) INTVAL (XEXP (rtl, 0))
13622                                == (INTVAL (XEXP (rtl, 0))
13623                                    & GET_MODE_MASK (op_mode))))
13624                       && ((last1->dw_loc_opc == DW_OP_deref_size
13625                            && last1->dw_loc_oprnd1.v.val_int
13626                               <= GET_MODE_SIZE (op_mode))
13627                           || (CONST_INT_P (XEXP (rtl, 1))
13628                               && (unsigned HOST_WIDE_INT)
13629                                  INTVAL (XEXP (rtl, 1))
13630                                  == (INTVAL (XEXP (rtl, 1))
13631                                      & GET_MODE_MASK (op_mode)))))
13632                     goto do_compare;
13633                 }
13634               add_loc_descr (&op0, int_loc_descriptor (shift));
13635               add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
13636               if (CONST_INT_P (XEXP (rtl, 1)))
13637                 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1)) << shift);
13638               else
13639                 {
13640                   add_loc_descr (&op1, int_loc_descriptor (shift));
13641                   add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
13642                 }
13643             }
13644         }
13645
13646     do_compare:
13647       mem_loc_result = op0;
13648       add_loc_descr (&mem_loc_result, op1);
13649       add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13650       if (STORE_FLAG_VALUE != 1)
13651         {
13652           add_loc_descr (&mem_loc_result,
13653                          int_loc_descriptor (STORE_FLAG_VALUE));
13654           add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
13655         }
13656       break;
13657
13658     case GEU:
13659       op = DW_OP_ge;
13660       goto do_ucompare;
13661
13662     case GTU:
13663       op = DW_OP_gt;
13664       goto do_ucompare;
13665
13666     case LEU:
13667       op = DW_OP_le;
13668       goto do_ucompare;
13669
13670     case LTU:
13671       op = DW_OP_lt;
13672       goto do_ucompare;
13673
13674     do_ucompare:
13675       if (GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) > DWARF2_ADDR_SIZE
13676           || GET_MODE_SIZE (GET_MODE (XEXP (rtl, 1))) > DWARF2_ADDR_SIZE)
13677         break;
13678       else
13679         {
13680           enum machine_mode op_mode = GET_MODE (XEXP (rtl, 0));
13681
13682           if (op_mode == VOIDmode)
13683             op_mode = GET_MODE (XEXP (rtl, 1));
13684           if (op_mode != VOIDmode && GET_MODE_CLASS (op_mode) != MODE_INT)
13685             break;
13686
13687           op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13688                                     VAR_INIT_STATUS_INITIALIZED);
13689           op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13690                                     VAR_INIT_STATUS_INITIALIZED);
13691
13692           if (op0 == 0 || op1 == 0)
13693             break;
13694
13695           if (op_mode != VOIDmode
13696               && GET_MODE_SIZE (op_mode) < DWARF2_ADDR_SIZE)
13697             {
13698               HOST_WIDE_INT mask = GET_MODE_MASK (op_mode);
13699               dw_loc_descr_ref last0, last1;
13700               for (last0 = op0;
13701                    last0->dw_loc_next != NULL;
13702                    last0 = last0->dw_loc_next)
13703                 ;
13704               for (last1 = op1;
13705                    last1->dw_loc_next != NULL;
13706                    last1 = last1->dw_loc_next)
13707                 ;
13708               if (CONST_INT_P (XEXP (rtl, 0)))
13709                 op0 = int_loc_descriptor (INTVAL (XEXP (rtl, 0)) & mask);
13710               /* deref_size zero extends, so no need to mask it again.  */
13711               else if (last0->dw_loc_opc != DW_OP_deref_size
13712                        || last0->dw_loc_oprnd1.v.val_int
13713                           > GET_MODE_SIZE (op_mode))
13714                 {
13715                   add_loc_descr (&op0, int_loc_descriptor (mask));
13716                   add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
13717                 }
13718               if (CONST_INT_P (XEXP (rtl, 1)))
13719                 op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1)) & mask);
13720               /* deref_size zero extends, so no need to mask it again.  */
13721               else if (last1->dw_loc_opc != DW_OP_deref_size
13722                        || last1->dw_loc_oprnd1.v.val_int
13723                           > GET_MODE_SIZE (op_mode))
13724                 {
13725                   add_loc_descr (&op1, int_loc_descriptor (mask));
13726                   add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
13727                 }
13728             }
13729           else
13730             {
13731               HOST_WIDE_INT bias = 1;
13732               bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
13733               add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
13734               if (CONST_INT_P (XEXP (rtl, 1)))
13735                 op1 = int_loc_descriptor ((unsigned HOST_WIDE_INT) bias
13736                                           + INTVAL (XEXP (rtl, 1)));
13737               else
13738                 add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst,
13739                                                     bias, 0));
13740             }
13741         }
13742       goto do_compare;
13743
13744     case SMIN:
13745     case SMAX:
13746     case UMIN:
13747     case UMAX:
13748       if (GET_MODE_CLASS (GET_MODE (XEXP (rtl, 0))) != MODE_INT
13749           || GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) > DWARF2_ADDR_SIZE
13750           || GET_MODE (XEXP (rtl, 0)) != GET_MODE (XEXP (rtl, 1)))
13751         break;
13752
13753       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13754                                 VAR_INIT_STATUS_INITIALIZED);
13755       op1 = mem_loc_descriptor (XEXP (rtl, 1), mode,
13756                                 VAR_INIT_STATUS_INITIALIZED);
13757
13758       if (op0 == 0 || op1 == 0)
13759         break;
13760
13761       add_loc_descr (&op0, new_loc_descr (DW_OP_dup, 0, 0));
13762       add_loc_descr (&op1, new_loc_descr (DW_OP_swap, 0, 0));
13763       add_loc_descr (&op1, new_loc_descr (DW_OP_over, 0, 0));
13764       if (GET_CODE (rtl) == UMIN || GET_CODE (rtl) == UMAX)
13765         {
13766           if (GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) < DWARF2_ADDR_SIZE)
13767             {
13768               HOST_WIDE_INT mask = GET_MODE_MASK (GET_MODE (XEXP (rtl, 0)));
13769               add_loc_descr (&op0, int_loc_descriptor (mask));
13770               add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
13771               add_loc_descr (&op1, int_loc_descriptor (mask));
13772               add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
13773             }
13774           else
13775             {
13776               HOST_WIDE_INT bias = 1;
13777               bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
13778               add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
13779               add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst, bias, 0));
13780             }
13781         }
13782       else if (GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) < DWARF2_ADDR_SIZE)
13783         {
13784           int shift = DWARF2_ADDR_SIZE
13785                       - GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0)));
13786           shift *= BITS_PER_UNIT;
13787           add_loc_descr (&op0, int_loc_descriptor (shift));
13788           add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
13789           add_loc_descr (&op1, int_loc_descriptor (shift));
13790           add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
13791         }
13792
13793       if (GET_CODE (rtl) == SMIN || GET_CODE (rtl) == UMIN)
13794         op = DW_OP_lt;
13795       else
13796         op = DW_OP_gt;
13797       mem_loc_result = op0;
13798       add_loc_descr (&mem_loc_result, op1);
13799       add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13800       {
13801         dw_loc_descr_ref bra_node, drop_node;
13802
13803         bra_node = new_loc_descr (DW_OP_bra, 0, 0);
13804         add_loc_descr (&mem_loc_result, bra_node);
13805         add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_swap, 0, 0));
13806         drop_node = new_loc_descr (DW_OP_drop, 0, 0);
13807         add_loc_descr (&mem_loc_result, drop_node);
13808         bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
13809         bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
13810       }
13811       break;
13812
13813     case ZERO_EXTRACT:
13814     case SIGN_EXTRACT:
13815       if (CONST_INT_P (XEXP (rtl, 1))
13816           && CONST_INT_P (XEXP (rtl, 2))
13817           && ((unsigned) INTVAL (XEXP (rtl, 1))
13818               + (unsigned) INTVAL (XEXP (rtl, 2))
13819               <= GET_MODE_BITSIZE (GET_MODE (rtl)))
13820           && GET_MODE_BITSIZE (GET_MODE (rtl)) <= DWARF2_ADDR_SIZE
13821           && GET_MODE_BITSIZE (GET_MODE (XEXP (rtl, 0))) <= DWARF2_ADDR_SIZE)
13822         {
13823           int shift, size;
13824           op0 = mem_loc_descriptor (XEXP (rtl, 0), mode,
13825                                     VAR_INIT_STATUS_INITIALIZED);
13826           if (op0 == 0)
13827             break;
13828           if (GET_CODE (rtl) == SIGN_EXTRACT)
13829             op = DW_OP_shra;
13830           else
13831             op = DW_OP_shr;
13832           mem_loc_result = op0;
13833           size = INTVAL (XEXP (rtl, 1));
13834           shift = INTVAL (XEXP (rtl, 2));
13835           if (BITS_BIG_ENDIAN)
13836             shift = GET_MODE_BITSIZE (GET_MODE (XEXP (rtl, 0)))
13837                     - shift - size;
13838           if (shift + size != (int) DWARF2_ADDR_SIZE)
13839             {
13840               add_loc_descr (&mem_loc_result,
13841                              int_loc_descriptor (DWARF2_ADDR_SIZE
13842                                                  - shift - size));
13843               add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
13844             }
13845           if (size != (int) DWARF2_ADDR_SIZE)
13846             {
13847               add_loc_descr (&mem_loc_result,
13848                              int_loc_descriptor (DWARF2_ADDR_SIZE - size));
13849               add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
13850             }
13851         }
13852       break;
13853
13854     case COMPARE:
13855     case IF_THEN_ELSE:
13856     case ROTATE:
13857     case ROTATERT:
13858     case TRUNCATE:
13859       /* In theory, we could implement the above.  */
13860       /* DWARF cannot represent the unsigned compare operations
13861          natively.  */
13862     case SS_MULT:
13863     case US_MULT:
13864     case SS_DIV:
13865     case US_DIV:
13866     case SS_PLUS:
13867     case US_PLUS:
13868     case SS_MINUS:
13869     case US_MINUS:
13870     case SS_NEG:
13871     case US_NEG:
13872     case SS_ABS:
13873     case SS_ASHIFT:
13874     case US_ASHIFT:
13875     case SS_TRUNCATE:
13876     case US_TRUNCATE:
13877     case UDIV:
13878     case UNORDERED:
13879     case ORDERED:
13880     case UNEQ:
13881     case UNGE:
13882     case UNGT:
13883     case UNLE:
13884     case UNLT:
13885     case LTGT:
13886     case FLOAT_EXTEND:
13887     case FLOAT_TRUNCATE:
13888     case FLOAT:
13889     case UNSIGNED_FLOAT:
13890     case FIX:
13891     case UNSIGNED_FIX:
13892     case FRACT_CONVERT:
13893     case UNSIGNED_FRACT_CONVERT:
13894     case SAT_FRACT:
13895     case UNSIGNED_SAT_FRACT:
13896     case SQRT:
13897     case BSWAP:
13898     case FFS:
13899     case CLZ:
13900     case CTZ:
13901     case POPCOUNT:
13902     case PARITY:
13903     case ASM_OPERANDS:
13904     case VEC_MERGE:
13905     case VEC_SELECT:
13906     case VEC_CONCAT:
13907     case VEC_DUPLICATE:
13908     case UNSPEC:
13909     case HIGH:
13910       /* If delegitimize_address couldn't do anything with the UNSPEC, we
13911          can't express it in the debug info.  This can happen e.g. with some
13912          TLS UNSPECs.  */
13913       break;
13914
13915     case CONST_STRING:
13916       resolve_one_addr (&rtl, NULL);
13917       goto symref;
13918
13919     default:
13920 #ifdef ENABLE_CHECKING
13921       print_rtl (stderr, rtl);
13922       gcc_unreachable ();
13923 #else
13924       break;
13925 #endif
13926     }
13927
13928   if (mem_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
13929     add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13930
13931   return mem_loc_result;
13932 }
13933
13934 /* Return a descriptor that describes the concatenation of two locations.
13935    This is typically a complex variable.  */
13936
13937 static dw_loc_descr_ref
13938 concat_loc_descriptor (rtx x0, rtx x1, enum var_init_status initialized)
13939 {
13940   dw_loc_descr_ref cc_loc_result = NULL;
13941   dw_loc_descr_ref x0_ref
13942     = loc_descriptor (x0, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
13943   dw_loc_descr_ref x1_ref
13944     = loc_descriptor (x1, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
13945
13946   if (x0_ref == 0 || x1_ref == 0)
13947     return 0;
13948
13949   cc_loc_result = x0_ref;
13950   add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x0)));
13951
13952   add_loc_descr (&cc_loc_result, x1_ref);
13953   add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x1)));
13954
13955   if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
13956     add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13957
13958   return cc_loc_result;
13959 }
13960
13961 /* Return a descriptor that describes the concatenation of N
13962    locations.  */
13963
13964 static dw_loc_descr_ref
13965 concatn_loc_descriptor (rtx concatn, enum var_init_status initialized)
13966 {
13967   unsigned int i;
13968   dw_loc_descr_ref cc_loc_result = NULL;
13969   unsigned int n = XVECLEN (concatn, 0);
13970
13971   for (i = 0; i < n; ++i)
13972     {
13973       dw_loc_descr_ref ref;
13974       rtx x = XVECEXP (concatn, 0, i);
13975
13976       ref = loc_descriptor (x, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
13977       if (ref == NULL)
13978         return NULL;
13979
13980       add_loc_descr (&cc_loc_result, ref);
13981       add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x)));
13982     }
13983
13984   if (cc_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
13985     add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13986
13987   return cc_loc_result;
13988 }
13989
13990 /* Output a proper Dwarf location descriptor for a variable or parameter
13991    which is either allocated in a register or in a memory location.  For a
13992    register, we just generate an OP_REG and the register number.  For a
13993    memory location we provide a Dwarf postfix expression describing how to
13994    generate the (dynamic) address of the object onto the address stack.
13995
13996    MODE is mode of the decl if this loc_descriptor is going to be used in
13997    .debug_loc section where DW_OP_stack_value and DW_OP_implicit_value are
13998    allowed, VOIDmode otherwise.
13999
14000    If we don't know how to describe it, return 0.  */
14001
14002 static dw_loc_descr_ref
14003 loc_descriptor (rtx rtl, enum machine_mode mode,
14004                 enum var_init_status initialized)
14005 {
14006   dw_loc_descr_ref loc_result = NULL;
14007
14008   switch (GET_CODE (rtl))
14009     {
14010     case SUBREG:
14011       /* The case of a subreg may arise when we have a local (register)
14012          variable or a formal (register) parameter which doesn't quite fill
14013          up an entire register.  For now, just assume that it is
14014          legitimate to make the Dwarf info refer to the whole register which
14015          contains the given subreg.  */
14016       loc_result = loc_descriptor (SUBREG_REG (rtl), mode, initialized);
14017       break;
14018
14019     case REG:
14020       loc_result = reg_loc_descriptor (rtl, initialized);
14021       break;
14022
14023     case SIGN_EXTEND:
14024     case ZERO_EXTEND:
14025       loc_result = loc_descriptor (XEXP (rtl, 0), mode, initialized);
14026       break;
14027
14028     case MEM:
14029       loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl),
14030                                        initialized);
14031       if (loc_result == NULL)
14032         loc_result = tls_mem_loc_descriptor (rtl);
14033       if (loc_result == NULL)
14034         {
14035           rtx new_rtl = avoid_constant_pool_reference (rtl);
14036           if (new_rtl != rtl)
14037             loc_result = loc_descriptor (new_rtl, mode, initialized);
14038         }
14039       break;
14040
14041     case CONCAT:
14042       loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1),
14043                                           initialized);
14044       break;
14045
14046     case CONCATN:
14047       loc_result = concatn_loc_descriptor (rtl, initialized);
14048       break;
14049
14050     case VAR_LOCATION:
14051       /* Single part.  */
14052       if (GET_CODE (PAT_VAR_LOCATION_LOC (rtl)) != PARALLEL)
14053         {
14054           rtx loc = PAT_VAR_LOCATION_LOC (rtl);
14055           if (GET_CODE (loc) == EXPR_LIST)
14056             loc = XEXP (loc, 0);
14057           loc_result = loc_descriptor (loc, mode, initialized);
14058           break;
14059         }
14060
14061       rtl = XEXP (rtl, 1);
14062       /* FALLTHRU */
14063
14064     case PARALLEL:
14065       {
14066         rtvec par_elems = XVEC (rtl, 0);
14067         int num_elem = GET_NUM_ELEM (par_elems);
14068         enum machine_mode mode;
14069         int i;
14070
14071         /* Create the first one, so we have something to add to.  */
14072         loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0),
14073                                      VOIDmode, initialized);
14074         if (loc_result == NULL)
14075           return NULL;
14076         mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
14077         add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
14078         for (i = 1; i < num_elem; i++)
14079           {
14080             dw_loc_descr_ref temp;
14081
14082             temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0),
14083                                    VOIDmode, initialized);
14084             if (temp == NULL)
14085               return NULL;
14086             add_loc_descr (&loc_result, temp);
14087             mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
14088             add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
14089           }
14090       }
14091       break;
14092
14093     case CONST_INT:
14094       if (mode != VOIDmode && mode != BLKmode)
14095         loc_result = address_of_int_loc_descriptor (GET_MODE_SIZE (mode),
14096                                                     INTVAL (rtl));
14097       break;
14098
14099     case CONST_DOUBLE:
14100       if (mode == VOIDmode)
14101         mode = GET_MODE (rtl);
14102
14103       if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
14104         {
14105           gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
14106
14107           /* Note that a CONST_DOUBLE rtx could represent either an integer
14108              or a floating-point constant.  A CONST_DOUBLE is used whenever
14109              the constant requires more than one word in order to be
14110              adequately represented.  We output CONST_DOUBLEs as blocks.  */
14111           loc_result = new_loc_descr (DW_OP_implicit_value,
14112                                       GET_MODE_SIZE (mode), 0);
14113           if (SCALAR_FLOAT_MODE_P (mode))
14114             {
14115               unsigned int length = GET_MODE_SIZE (mode);
14116               unsigned char *array = GGC_NEWVEC (unsigned char, length);
14117
14118               insert_float (rtl, array);
14119               loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
14120               loc_result->dw_loc_oprnd2.v.val_vec.length = length / 4;
14121               loc_result->dw_loc_oprnd2.v.val_vec.elt_size = 4;
14122               loc_result->dw_loc_oprnd2.v.val_vec.array = array;
14123             }
14124           else
14125             {
14126               loc_result->dw_loc_oprnd2.val_class = dw_val_class_const_double;
14127               loc_result->dw_loc_oprnd2.v.val_double
14128                 = rtx_to_double_int (rtl);
14129             }
14130         }
14131       break;
14132
14133     case CONST_VECTOR:
14134       if (mode == VOIDmode)
14135         mode = GET_MODE (rtl);
14136
14137       if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
14138         {
14139           unsigned int elt_size = GET_MODE_UNIT_SIZE (GET_MODE (rtl));
14140           unsigned int length = CONST_VECTOR_NUNITS (rtl);
14141           unsigned char *array = GGC_NEWVEC (unsigned char, length * elt_size);
14142           unsigned int i;
14143           unsigned char *p;
14144
14145           gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
14146           switch (GET_MODE_CLASS (mode))
14147             {
14148             case MODE_VECTOR_INT:
14149               for (i = 0, p = array; i < length; i++, p += elt_size)
14150                 {
14151                   rtx elt = CONST_VECTOR_ELT (rtl, i);
14152                   double_int val = rtx_to_double_int (elt);
14153
14154                   if (elt_size <= sizeof (HOST_WIDE_INT))
14155                     insert_int (double_int_to_shwi (val), elt_size, p);
14156                   else
14157                     {
14158                       gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
14159                       insert_double (val, p);
14160                     }
14161                 }
14162               break;
14163
14164             case MODE_VECTOR_FLOAT:
14165               for (i = 0, p = array; i < length; i++, p += elt_size)
14166                 {
14167                   rtx elt = CONST_VECTOR_ELT (rtl, i);
14168                   insert_float (elt, p);
14169                 }
14170               break;
14171
14172             default:
14173               gcc_unreachable ();
14174             }
14175
14176           loc_result = new_loc_descr (DW_OP_implicit_value,
14177                                       length * elt_size, 0);
14178           loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
14179           loc_result->dw_loc_oprnd2.v.val_vec.length = length;
14180           loc_result->dw_loc_oprnd2.v.val_vec.elt_size = elt_size;
14181           loc_result->dw_loc_oprnd2.v.val_vec.array = array;
14182         }
14183       break;
14184
14185     case CONST:
14186       if (mode == VOIDmode
14187           || GET_CODE (XEXP (rtl, 0)) == CONST_INT
14188           || GET_CODE (XEXP (rtl, 0)) == CONST_DOUBLE
14189           || GET_CODE (XEXP (rtl, 0)) == CONST_VECTOR)
14190         {
14191           loc_result = loc_descriptor (XEXP (rtl, 0), mode, initialized);
14192           break;
14193         }
14194       /* FALLTHROUGH */
14195     case SYMBOL_REF:
14196       if (!const_ok_for_output (rtl))
14197         break;
14198     case LABEL_REF:
14199       if (mode != VOIDmode && GET_MODE_SIZE (mode) == DWARF2_ADDR_SIZE
14200           && (dwarf_version >= 4 || !dwarf_strict))
14201         {
14202           loc_result = new_loc_descr (DW_OP_addr, 0, 0);
14203           loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
14204           loc_result->dw_loc_oprnd1.v.val_addr = rtl;
14205           add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
14206           VEC_safe_push (rtx, gc, used_rtx_array, rtl);
14207         }
14208       break;
14209
14210     default:
14211       if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE (rtl) == mode
14212           && GET_MODE_SIZE (GET_MODE (rtl)) <= DWARF2_ADDR_SIZE
14213           && (dwarf_version >= 4 || !dwarf_strict))
14214         {
14215           /* Value expression.  */
14216           loc_result = mem_loc_descriptor (rtl, VOIDmode, initialized);
14217           if (loc_result)
14218             add_loc_descr (&loc_result,
14219                            new_loc_descr (DW_OP_stack_value, 0, 0));
14220         }
14221       break;
14222     }
14223
14224   return loc_result;
14225 }
14226
14227 /* We need to figure out what section we should use as the base for the
14228    address ranges where a given location is valid.
14229    1. If this particular DECL has a section associated with it, use that.
14230    2. If this function has a section associated with it, use that.
14231    3. Otherwise, use the text section.
14232    XXX: If you split a variable across multiple sections, we won't notice.  */
14233
14234 static const char *
14235 secname_for_decl (const_tree decl)
14236 {
14237   const char *secname;
14238
14239   if (VAR_OR_FUNCTION_DECL_P (decl) && DECL_SECTION_NAME (decl))
14240     {
14241       tree sectree = DECL_SECTION_NAME (decl);
14242       secname = TREE_STRING_POINTER (sectree);
14243     }
14244   else if (current_function_decl && DECL_SECTION_NAME (current_function_decl))
14245     {
14246       tree sectree = DECL_SECTION_NAME (current_function_decl);
14247       secname = TREE_STRING_POINTER (sectree);
14248     }
14249   else if (cfun && in_cold_section_p)
14250     secname = crtl->subsections.cold_section_label;
14251   else
14252     secname = text_section_label;
14253
14254   return secname;
14255 }
14256
14257 /* Return true when DECL_BY_REFERENCE is defined and set for DECL.  */
14258
14259 static bool
14260 decl_by_reference_p (tree decl)
14261 {
14262   return ((TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL
14263            || TREE_CODE (decl) == VAR_DECL)
14264           && DECL_BY_REFERENCE (decl));
14265 }
14266
14267 /* Helper function for dw_loc_list.  Compute proper Dwarf location descriptor
14268    for VARLOC.  */
14269
14270 static dw_loc_descr_ref
14271 dw_loc_list_1 (tree loc, rtx varloc, int want_address,
14272                enum var_init_status initialized)
14273 {
14274   int have_address = 0;
14275   dw_loc_descr_ref descr;
14276   enum machine_mode mode;
14277
14278   if (want_address != 2)
14279     {
14280       gcc_assert (GET_CODE (varloc) == VAR_LOCATION);
14281       /* Single part.  */
14282       if (GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
14283         {
14284           varloc = PAT_VAR_LOCATION_LOC (varloc);
14285           if (GET_CODE (varloc) == EXPR_LIST)
14286             varloc = XEXP (varloc, 0);
14287           mode = GET_MODE (varloc);
14288           if (MEM_P (varloc))
14289             {
14290               rtx addr = XEXP (varloc, 0);
14291               descr = mem_loc_descriptor (addr, mode, initialized);
14292               if (descr)
14293                 have_address = 1;
14294               else
14295                 {
14296                   rtx x = avoid_constant_pool_reference (varloc);
14297                   if (x != varloc)
14298                     descr = mem_loc_descriptor (x, mode, initialized);
14299                 }
14300             }
14301           else
14302             descr = mem_loc_descriptor (varloc, mode, initialized);
14303         }
14304       else
14305         return 0;
14306     }
14307   else
14308     {
14309       if (GET_CODE (varloc) == VAR_LOCATION)
14310         mode = DECL_MODE (PAT_VAR_LOCATION_DECL (varloc));
14311       else
14312         mode = DECL_MODE (loc);
14313       descr = loc_descriptor (varloc, mode, initialized);
14314       have_address = 1;
14315     }
14316
14317   if (!descr)
14318     return 0;
14319
14320   if (want_address == 2 && !have_address
14321       && (dwarf_version >= 4 || !dwarf_strict))
14322     {
14323       if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
14324         {
14325           expansion_failed (loc, NULL_RTX,
14326                             "DWARF address size mismatch");
14327           return 0;
14328         }
14329       add_loc_descr (&descr, new_loc_descr (DW_OP_stack_value, 0, 0));
14330       have_address = 1;
14331     }
14332   /* Show if we can't fill the request for an address.  */
14333   if (want_address && !have_address)
14334     {
14335       expansion_failed (loc, NULL_RTX,
14336                         "Want address and only have value");
14337       return 0;
14338     }
14339
14340   /* If we've got an address and don't want one, dereference.  */
14341   if (!want_address && have_address)
14342     {
14343       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
14344       enum dwarf_location_atom op;
14345
14346       if (size > DWARF2_ADDR_SIZE || size == -1)
14347         {
14348           expansion_failed (loc, NULL_RTX,
14349                             "DWARF address size mismatch");
14350           return 0;
14351         }
14352       else if (size == DWARF2_ADDR_SIZE)
14353         op = DW_OP_deref;
14354       else
14355         op = DW_OP_deref_size;
14356
14357       add_loc_descr (&descr, new_loc_descr (op, size, 0));
14358     }
14359
14360   return descr;
14361 }
14362
14363 /* Create a DW_OP_piece or DW_OP_bit_piece for bitsize, or return NULL
14364    if it is not possible.  */
14365
14366 static dw_loc_descr_ref
14367 new_loc_descr_op_bit_piece (HOST_WIDE_INT bitsize)
14368 {
14369   if ((bitsize % BITS_PER_UNIT) == 0)
14370     return new_loc_descr (DW_OP_piece, bitsize / BITS_PER_UNIT, 0);
14371   else if (dwarf_version >= 3 || !dwarf_strict)
14372     return new_loc_descr (DW_OP_bit_piece, bitsize, 0);
14373   else
14374     return NULL;
14375 }
14376
14377 /* Helper function for dw_loc_list.  Compute proper Dwarf location descriptor
14378    for VAR_LOC_NOTE for variable DECL that has been optimized by SRA.  */
14379
14380 static dw_loc_descr_ref
14381 dw_sra_loc_expr (tree decl, rtx loc)
14382 {
14383   rtx p;
14384   unsigned int padsize = 0;
14385   dw_loc_descr_ref descr, *descr_tail;
14386   unsigned HOST_WIDE_INT decl_size;
14387   rtx varloc;
14388   enum var_init_status initialized;
14389
14390   if (DECL_SIZE (decl) == NULL
14391       || !host_integerp (DECL_SIZE (decl), 1))
14392     return NULL;
14393
14394   decl_size = tree_low_cst (DECL_SIZE (decl), 1);
14395   descr = NULL;
14396   descr_tail = &descr;
14397
14398   for (p = loc; p; p = XEXP (p, 1))
14399     {
14400       unsigned int bitsize = decl_piece_bitsize (p);
14401       rtx loc_note = *decl_piece_varloc_ptr (p);
14402       dw_loc_descr_ref cur_descr;
14403       dw_loc_descr_ref *tail, last = NULL;
14404       unsigned int opsize = 0;
14405
14406       if (loc_note == NULL_RTX
14407           || NOTE_VAR_LOCATION_LOC (loc_note) == NULL_RTX)
14408         {
14409           padsize += bitsize;
14410           continue;
14411         }
14412       initialized = NOTE_VAR_LOCATION_STATUS (loc_note);
14413       varloc = NOTE_VAR_LOCATION (loc_note);
14414       cur_descr = dw_loc_list_1 (decl, varloc, 2, initialized);
14415       if (cur_descr == NULL)
14416         {
14417           padsize += bitsize;
14418           continue;
14419         }
14420
14421       /* Check that cur_descr either doesn't use
14422          DW_OP_*piece operations, or their sum is equal
14423          to bitsize.  Otherwise we can't embed it.  */
14424       for (tail = &cur_descr; *tail != NULL;
14425            tail = &(*tail)->dw_loc_next)
14426         if ((*tail)->dw_loc_opc == DW_OP_piece)
14427           {
14428             opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned
14429                       * BITS_PER_UNIT;
14430             last = *tail;
14431           }
14432         else if ((*tail)->dw_loc_opc == DW_OP_bit_piece)
14433           {
14434             opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned;
14435             last = *tail;
14436           }
14437
14438       if (last != NULL && opsize != bitsize)
14439         {
14440           padsize += bitsize;
14441           continue;
14442         }
14443
14444       /* If there is a hole, add DW_OP_*piece after empty DWARF
14445          expression, which means that those bits are optimized out.  */
14446       if (padsize)
14447         {
14448           if (padsize > decl_size)
14449             return NULL;
14450           decl_size -= padsize;
14451           *descr_tail = new_loc_descr_op_bit_piece (padsize);
14452           if (*descr_tail == NULL)
14453             return NULL;
14454           descr_tail = &(*descr_tail)->dw_loc_next;
14455           padsize = 0;
14456         }
14457       *descr_tail = cur_descr;
14458       descr_tail = tail;
14459       if (bitsize > decl_size)
14460         return NULL;
14461       decl_size -= bitsize;
14462       if (last == NULL)
14463         {
14464           *descr_tail = new_loc_descr_op_bit_piece (bitsize);
14465           if (*descr_tail == NULL)
14466             return NULL;
14467           descr_tail = &(*descr_tail)->dw_loc_next;
14468         }
14469     }
14470
14471   /* If there were any non-empty expressions, add padding till the end of
14472      the decl.  */
14473   if (descr != NULL && decl_size != 0)
14474     {
14475       *descr_tail = new_loc_descr_op_bit_piece (decl_size);
14476       if (*descr_tail == NULL)
14477         return NULL;
14478     }
14479   return descr;
14480 }
14481
14482 /* Return the dwarf representation of the location list LOC_LIST of
14483    DECL.  WANT_ADDRESS has the same meaning as in loc_list_from_tree
14484    function.  */
14485
14486 static dw_loc_list_ref
14487 dw_loc_list (var_loc_list *loc_list, tree decl, int want_address)
14488 {
14489   const char *endname, *secname;
14490   rtx varloc;
14491   enum var_init_status initialized;
14492   struct var_loc_node *node;
14493   dw_loc_descr_ref descr;
14494   char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
14495   dw_loc_list_ref list = NULL;
14496   dw_loc_list_ref *listp = &list;
14497
14498   /* Now that we know what section we are using for a base,
14499      actually construct the list of locations.
14500      The first location information is what is passed to the
14501      function that creates the location list, and the remaining
14502      locations just get added on to that list.
14503      Note that we only know the start address for a location
14504      (IE location changes), so to build the range, we use
14505      the range [current location start, next location start].
14506      This means we have to special case the last node, and generate
14507      a range of [last location start, end of function label].  */
14508
14509   secname = secname_for_decl (decl);
14510
14511   for (node = loc_list->first; node; node = node->next)
14512     if (GET_CODE (node->loc) == EXPR_LIST
14513         || NOTE_VAR_LOCATION_LOC (node->loc) != NULL_RTX)
14514       {
14515         if (GET_CODE (node->loc) == EXPR_LIST)
14516           {
14517             /* This requires DW_OP_{,bit_}piece, which is not usable
14518                inside DWARF expressions.  */
14519             if (want_address != 2)
14520               continue;
14521             descr = dw_sra_loc_expr (decl, node->loc);
14522             if (descr == NULL)
14523               continue;
14524           }
14525         else
14526           {
14527             initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
14528             varloc = NOTE_VAR_LOCATION (node->loc);
14529             descr = dw_loc_list_1 (decl, varloc, want_address, initialized);
14530           }
14531         if (descr)
14532           {
14533             /* The variable has a location between NODE->LABEL and
14534                NODE->NEXT->LABEL.  */
14535             if (node->next)
14536               endname = node->next->label;
14537             /* If the variable has a location at the last label
14538                it keeps its location until the end of function.  */
14539             else if (!current_function_decl)
14540               endname = text_end_label;
14541             else
14542               {
14543                 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
14544                                              current_function_funcdef_no);
14545                 endname = ggc_strdup (label_id);
14546               }
14547
14548             *listp = new_loc_list (descr, node->label, endname, secname);
14549             listp = &(*listp)->dw_loc_next;
14550           }
14551       }
14552
14553   /* Try to avoid the overhead of a location list emitting a location
14554      expression instead, but only if we didn't have more than one
14555      location entry in the first place.  If some entries were not
14556      representable, we don't want to pretend a single entry that was
14557      applies to the entire scope in which the variable is
14558      available.  */
14559   if (list && loc_list->first->next)
14560     gen_llsym (list);
14561
14562   return list;
14563 }
14564
14565 /* Return if the loc_list has only single element and thus can be represented
14566    as location description.   */
14567
14568 static bool
14569 single_element_loc_list_p (dw_loc_list_ref list)
14570 {
14571   gcc_assert (!list->dw_loc_next || list->ll_symbol);
14572   return !list->ll_symbol;
14573 }
14574
14575 /* To each location in list LIST add loc descr REF.  */
14576
14577 static void
14578 add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
14579 {
14580   dw_loc_descr_ref copy;
14581   add_loc_descr (&list->expr, ref);
14582   list = list->dw_loc_next;
14583   while (list)
14584     {
14585       copy = GGC_CNEW (dw_loc_descr_node);
14586       memcpy (copy, ref, sizeof (dw_loc_descr_node));
14587       add_loc_descr (&list->expr, copy);
14588       while (copy->dw_loc_next)
14589         {
14590           dw_loc_descr_ref new_copy = GGC_CNEW (dw_loc_descr_node);
14591           memcpy (new_copy, copy->dw_loc_next, sizeof (dw_loc_descr_node));
14592           copy->dw_loc_next = new_copy;
14593           copy = new_copy;
14594         }
14595       list = list->dw_loc_next;
14596     }
14597 }
14598
14599 /* Given two lists RET and LIST
14600    produce location list that is result of adding expression in LIST
14601    to expression in RET on each possition in program.
14602    Might be destructive on both RET and LIST.
14603
14604    TODO: We handle only simple cases of RET or LIST having at most one
14605    element. General case would inolve sorting the lists in program order
14606    and merging them that will need some additional work.
14607    Adding that will improve quality of debug info especially for SRA-ed
14608    structures.  */
14609
14610 static void
14611 add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list)
14612 {
14613   if (!list)
14614     return;
14615   if (!*ret)
14616     {
14617       *ret = list;
14618       return;
14619     }
14620   if (!list->dw_loc_next)
14621     {
14622       add_loc_descr_to_each (*ret, list->expr);
14623       return;
14624     }
14625   if (!(*ret)->dw_loc_next)
14626     {
14627       add_loc_descr_to_each (list, (*ret)->expr);
14628       *ret = list;
14629       return;
14630     }
14631   expansion_failed (NULL_TREE, NULL_RTX,
14632                     "Don't know how to merge two non-trivial"
14633                     " location lists.\n");
14634   *ret = NULL;
14635   return;
14636 }
14637
14638 /* LOC is constant expression.  Try a luck, look it up in constant
14639    pool and return its loc_descr of its address.  */
14640
14641 static dw_loc_descr_ref
14642 cst_pool_loc_descr (tree loc)
14643 {
14644   /* Get an RTL for this, if something has been emitted.  */
14645   rtx rtl = lookup_constant_def (loc);
14646   enum machine_mode mode;
14647
14648   if (!rtl || !MEM_P (rtl))
14649     {
14650       gcc_assert (!rtl);
14651       return 0;
14652     }
14653   gcc_assert (GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF);
14654
14655   /* TODO: We might get more coverage if we was actually delaying expansion
14656      of all expressions till end of compilation when constant pools are fully
14657      populated.  */
14658   if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl, 0))))
14659     {
14660       expansion_failed (loc, NULL_RTX,
14661                         "CST value in contant pool but not marked.");
14662       return 0;
14663     }
14664   mode = GET_MODE (rtl);
14665   rtl = XEXP (rtl, 0);
14666   return mem_loc_descriptor (rtl, mode, VAR_INIT_STATUS_INITIALIZED);
14667 }
14668
14669 /* Return dw_loc_list representing address of addr_expr LOC
14670    by looking for innder INDIRECT_REF expression and turing it
14671    into simple arithmetics.  */
14672
14673 static dw_loc_list_ref
14674 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc, bool toplev)
14675 {
14676   tree obj, offset;
14677   HOST_WIDE_INT bitsize, bitpos, bytepos;
14678   enum machine_mode mode;
14679   int volatilep;
14680   int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
14681   dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
14682
14683   obj = get_inner_reference (TREE_OPERAND (loc, 0),
14684                              &bitsize, &bitpos, &offset, &mode,
14685                              &unsignedp, &volatilep, false);
14686   STRIP_NOPS (obj);
14687   if (bitpos % BITS_PER_UNIT)
14688     {
14689       expansion_failed (loc, NULL_RTX, "bitfield access");
14690       return 0;
14691     }
14692   if (!INDIRECT_REF_P (obj))
14693     {
14694       expansion_failed (obj,
14695                         NULL_RTX, "no indirect ref in inner refrence");
14696       return 0;
14697     }
14698   if (!offset && !bitpos)
14699     list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), toplev ? 2 : 1);
14700   else if (toplev
14701            && int_size_in_bytes (TREE_TYPE (loc)) <= DWARF2_ADDR_SIZE
14702            && (dwarf_version >= 4 || !dwarf_strict))
14703     {
14704       list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), 0);
14705       if (!list_ret)
14706         return 0;
14707       if (offset)
14708         {
14709           /* Variable offset.  */
14710           list_ret1 = loc_list_from_tree (offset, 0);
14711           if (list_ret1 == 0)
14712             return 0;
14713           add_loc_list (&list_ret, list_ret1);
14714           if (!list_ret)
14715             return 0;
14716           add_loc_descr_to_each (list_ret,
14717                                  new_loc_descr (DW_OP_plus, 0, 0));
14718         }
14719       bytepos = bitpos / BITS_PER_UNIT;
14720       if (bytepos > 0)
14721         add_loc_descr_to_each (list_ret,
14722                                new_loc_descr (DW_OP_plus_uconst,
14723                                               bytepos, 0));
14724       else if (bytepos < 0)
14725         loc_list_plus_const (list_ret, bytepos);
14726       add_loc_descr_to_each (list_ret,
14727                              new_loc_descr (DW_OP_stack_value, 0, 0));
14728     }
14729   return list_ret;
14730 }
14731
14732
14733 /* Generate Dwarf location list representing LOC.
14734    If WANT_ADDRESS is false, expression computing LOC will be computed
14735    If WANT_ADDRESS is 1, expression computing address of LOC will be returned
14736    if WANT_ADDRESS is 2, expression computing address useable in location
14737      will be returned (i.e. DW_OP_reg can be used
14738      to refer to register values).  */
14739
14740 static dw_loc_list_ref
14741 loc_list_from_tree (tree loc, int want_address)
14742 {
14743   dw_loc_descr_ref ret = NULL, ret1 = NULL;
14744   dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
14745   int have_address = 0;
14746   enum dwarf_location_atom op;
14747
14748   /* ??? Most of the time we do not take proper care for sign/zero
14749      extending the values properly.  Hopefully this won't be a real
14750      problem...  */
14751
14752   switch (TREE_CODE (loc))
14753     {
14754     case ERROR_MARK:
14755       expansion_failed (loc, NULL_RTX, "ERROR_MARK");
14756       return 0;
14757
14758     case PLACEHOLDER_EXPR:
14759       /* This case involves extracting fields from an object to determine the
14760          position of other fields.  We don't try to encode this here.  The
14761          only user of this is Ada, which encodes the needed information using
14762          the names of types.  */
14763       expansion_failed (loc, NULL_RTX, "PLACEHOLDER_EXPR");
14764       return 0;
14765
14766     case CALL_EXPR:
14767       expansion_failed (loc, NULL_RTX, "CALL_EXPR");
14768       /* There are no opcodes for these operations.  */
14769       return 0;
14770
14771     case PREINCREMENT_EXPR:
14772     case PREDECREMENT_EXPR:
14773     case POSTINCREMENT_EXPR:
14774     case POSTDECREMENT_EXPR:
14775       expansion_failed (loc, NULL_RTX, "PRE/POST INDCREMENT/DECREMENT");
14776       /* There are no opcodes for these operations.  */
14777       return 0;
14778
14779     case ADDR_EXPR:
14780       /* If we already want an address, see if there is INDIRECT_REF inside
14781          e.g. for &this->field.  */
14782       if (want_address)
14783         {
14784           list_ret = loc_list_for_address_of_addr_expr_of_indirect_ref
14785                        (loc, want_address == 2);
14786           if (list_ret)
14787             have_address = 1;
14788           else if (decl_address_ip_invariant_p (TREE_OPERAND (loc, 0))
14789                    && (ret = cst_pool_loc_descr (loc)))
14790             have_address = 1;
14791         }
14792         /* Otherwise, process the argument and look for the address.  */
14793       if (!list_ret && !ret)
14794         list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 1);
14795       else
14796         {
14797           if (want_address)
14798             expansion_failed (loc, NULL_RTX, "need address of ADDR_EXPR");
14799           return NULL;
14800         }
14801       break;
14802
14803     case VAR_DECL:
14804       if (DECL_THREAD_LOCAL_P (loc))
14805         {
14806           rtx rtl;
14807           enum dwarf_location_atom first_op;
14808           enum dwarf_location_atom second_op;
14809           bool dtprel = false;
14810
14811           if (targetm.have_tls)
14812             {
14813               /* If this is not defined, we have no way to emit the
14814                  data.  */
14815               if (!targetm.asm_out.output_dwarf_dtprel)
14816                 return 0;
14817
14818                /* The way DW_OP_GNU_push_tls_address is specified, we
14819                   can only look up addresses of objects in the current
14820                   module.  */
14821               if (DECL_EXTERNAL (loc) && !targetm.binds_local_p (loc))
14822                 return 0;
14823               first_op = DW_OP_addr;
14824               dtprel = true;
14825               second_op = DW_OP_GNU_push_tls_address;
14826             }
14827           else
14828             {
14829               if (!targetm.emutls.debug_form_tls_address
14830                   || !(dwarf_version >= 3 || !dwarf_strict))
14831                 return 0;
14832               loc = emutls_decl (loc);
14833               first_op = DW_OP_addr;
14834               second_op = DW_OP_form_tls_address;
14835             }
14836
14837           rtl = rtl_for_decl_location (loc);
14838           if (rtl == NULL_RTX)
14839             return 0;
14840
14841           if (!MEM_P (rtl))
14842             return 0;
14843           rtl = XEXP (rtl, 0);
14844           if (! CONSTANT_P (rtl))
14845             return 0;
14846
14847           ret = new_loc_descr (first_op, 0, 0);
14848           ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
14849           ret->dw_loc_oprnd1.v.val_addr = rtl;
14850           ret->dtprel = dtprel;
14851
14852           ret1 = new_loc_descr (second_op, 0, 0);
14853           add_loc_descr (&ret, ret1);
14854
14855           have_address = 1;
14856           break;
14857         }
14858       /* FALLTHRU */
14859
14860     case PARM_DECL:
14861       if (DECL_HAS_VALUE_EXPR_P (loc))
14862         return loc_list_from_tree (DECL_VALUE_EXPR (loc),
14863                                    want_address);
14864       /* FALLTHRU */
14865
14866     case RESULT_DECL:
14867     case FUNCTION_DECL:
14868       {
14869         rtx rtl;
14870         var_loc_list *loc_list = lookup_decl_loc (loc);
14871
14872         if (loc_list && loc_list->first)
14873           {
14874             list_ret = dw_loc_list (loc_list, loc, want_address);
14875             have_address = want_address != 0;
14876             break;
14877           }
14878         rtl = rtl_for_decl_location (loc);
14879         if (rtl == NULL_RTX)
14880           {
14881             expansion_failed (loc, NULL_RTX, "DECL has no RTL");
14882             return 0;
14883           }
14884         else if (CONST_INT_P (rtl))
14885           {
14886             HOST_WIDE_INT val = INTVAL (rtl);
14887             if (TYPE_UNSIGNED (TREE_TYPE (loc)))
14888               val &= GET_MODE_MASK (DECL_MODE (loc));
14889             ret = int_loc_descriptor (val);
14890           }
14891         else if (GET_CODE (rtl) == CONST_STRING)
14892           {
14893             expansion_failed (loc, NULL_RTX, "CONST_STRING");
14894             return 0;
14895           }
14896         else if (CONSTANT_P (rtl) && const_ok_for_output (rtl))
14897           {
14898             ret = new_loc_descr (DW_OP_addr, 0, 0);
14899             ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
14900             ret->dw_loc_oprnd1.v.val_addr = rtl;
14901           }
14902         else
14903           {
14904             enum machine_mode mode;
14905
14906             /* Certain constructs can only be represented at top-level.  */
14907             if (want_address == 2)
14908               {
14909                 ret = loc_descriptor (rtl, VOIDmode,
14910                                       VAR_INIT_STATUS_INITIALIZED);
14911                 have_address = 1;
14912               }
14913             else
14914               {
14915                 mode = GET_MODE (rtl);
14916                 if (MEM_P (rtl))
14917                   {
14918                     rtl = XEXP (rtl, 0);
14919                     have_address = 1;
14920                   }
14921                 ret = mem_loc_descriptor (rtl, mode, VAR_INIT_STATUS_INITIALIZED);
14922               }
14923             if (!ret)
14924               expansion_failed (loc, rtl,
14925                                 "failed to produce loc descriptor for rtl");
14926           }
14927       }
14928       break;
14929
14930     case INDIRECT_REF:
14931     case ALIGN_INDIRECT_REF:
14932     case MISALIGNED_INDIRECT_REF:
14933       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
14934       have_address = 1;
14935       break;
14936
14937     case COMPOUND_EXPR:
14938       return loc_list_from_tree (TREE_OPERAND (loc, 1), want_address);
14939
14940     CASE_CONVERT:
14941     case VIEW_CONVERT_EXPR:
14942     case SAVE_EXPR:
14943     case MODIFY_EXPR:
14944       return loc_list_from_tree (TREE_OPERAND (loc, 0), want_address);
14945
14946     case COMPONENT_REF:
14947     case BIT_FIELD_REF:
14948     case ARRAY_REF:
14949     case ARRAY_RANGE_REF:
14950     case REALPART_EXPR:
14951     case IMAGPART_EXPR:
14952       {
14953         tree obj, offset;
14954         HOST_WIDE_INT bitsize, bitpos, bytepos;
14955         enum machine_mode mode;
14956         int volatilep;
14957         int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
14958
14959         obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
14960                                    &unsignedp, &volatilep, false);
14961
14962         gcc_assert (obj != loc);
14963
14964         list_ret = loc_list_from_tree (obj,
14965                                        want_address == 2
14966                                        && !bitpos && !offset ? 2 : 1);
14967         /* TODO: We can extract value of the small expression via shifting even
14968            for nonzero bitpos.  */
14969         if (list_ret == 0)
14970           return 0;
14971         if (bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
14972           {
14973             expansion_failed (loc, NULL_RTX,
14974                               "bitfield access");
14975             return 0;
14976           }
14977
14978         if (offset != NULL_TREE)
14979           {
14980             /* Variable offset.  */
14981             list_ret1 = loc_list_from_tree (offset, 0);
14982             if (list_ret1 == 0)
14983               return 0;
14984             add_loc_list (&list_ret, list_ret1);
14985             if (!list_ret)
14986               return 0;
14987             add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus, 0, 0));
14988           }
14989
14990         bytepos = bitpos / BITS_PER_UNIT;
14991         if (bytepos > 0)
14992           add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
14993         else if (bytepos < 0)
14994           loc_list_plus_const (list_ret, bytepos);
14995
14996         have_address = 1;
14997         break;
14998       }
14999
15000     case INTEGER_CST:
15001       if ((want_address || !host_integerp (loc, 0))
15002           && (ret = cst_pool_loc_descr (loc)))
15003         have_address = 1;
15004       else if (want_address == 2
15005                && host_integerp (loc, 0)
15006                && (ret = address_of_int_loc_descriptor
15007                            (int_size_in_bytes (TREE_TYPE (loc)),
15008                             tree_low_cst (loc, 0))))
15009         have_address = 1;
15010       else if (host_integerp (loc, 0))
15011         ret = int_loc_descriptor (tree_low_cst (loc, 0));
15012       else
15013         {
15014           expansion_failed (loc, NULL_RTX,
15015                             "Integer operand is not host integer");
15016           return 0;
15017         }
15018       break;
15019
15020     case CONSTRUCTOR:
15021     case REAL_CST:
15022     case STRING_CST:
15023     case COMPLEX_CST:
15024       if ((ret = cst_pool_loc_descr (loc)))
15025         have_address = 1;
15026       else
15027       /* We can construct small constants here using int_loc_descriptor.  */
15028         expansion_failed (loc, NULL_RTX,
15029                           "constructor or constant not in constant pool");
15030       break;
15031
15032     case TRUTH_AND_EXPR:
15033     case TRUTH_ANDIF_EXPR:
15034     case BIT_AND_EXPR:
15035       op = DW_OP_and;
15036       goto do_binop;
15037
15038     case TRUTH_XOR_EXPR:
15039     case BIT_XOR_EXPR:
15040       op = DW_OP_xor;
15041       goto do_binop;
15042
15043     case TRUTH_OR_EXPR:
15044     case TRUTH_ORIF_EXPR:
15045     case BIT_IOR_EXPR:
15046       op = DW_OP_or;
15047       goto do_binop;
15048
15049     case FLOOR_DIV_EXPR:
15050     case CEIL_DIV_EXPR:
15051     case ROUND_DIV_EXPR:
15052     case TRUNC_DIV_EXPR:
15053       if (TYPE_UNSIGNED (TREE_TYPE (loc)))
15054         return 0;
15055       op = DW_OP_div;
15056       goto do_binop;
15057
15058     case MINUS_EXPR:
15059       op = DW_OP_minus;
15060       goto do_binop;
15061
15062     case FLOOR_MOD_EXPR:
15063     case CEIL_MOD_EXPR:
15064     case ROUND_MOD_EXPR:
15065     case TRUNC_MOD_EXPR:
15066       if (TYPE_UNSIGNED (TREE_TYPE (loc)))
15067         {
15068           op = DW_OP_mod;
15069           goto do_binop;
15070         }
15071       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15072       list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0);
15073       if (list_ret == 0 || list_ret1 == 0)
15074         return 0;
15075
15076       add_loc_list (&list_ret, list_ret1);
15077       if (list_ret == 0)
15078         return 0;
15079       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
15080       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
15081       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_div, 0, 0));
15082       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_mul, 0, 0));
15083       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_minus, 0, 0));
15084       break;
15085
15086     case MULT_EXPR:
15087       op = DW_OP_mul;
15088       goto do_binop;
15089
15090     case LSHIFT_EXPR:
15091       op = DW_OP_shl;
15092       goto do_binop;
15093
15094     case RSHIFT_EXPR:
15095       op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
15096       goto do_binop;
15097
15098     case POINTER_PLUS_EXPR:
15099     case PLUS_EXPR:
15100       if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
15101           && host_integerp (TREE_OPERAND (loc, 1), 0))
15102         {
15103           list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15104           if (list_ret == 0)
15105             return 0;
15106
15107           loc_list_plus_const (list_ret, tree_low_cst (TREE_OPERAND (loc, 1), 0));
15108           break;
15109         }
15110
15111       op = DW_OP_plus;
15112       goto do_binop;
15113
15114     case LE_EXPR:
15115       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
15116         return 0;
15117
15118       op = DW_OP_le;
15119       goto do_binop;
15120
15121     case GE_EXPR:
15122       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
15123         return 0;
15124
15125       op = DW_OP_ge;
15126       goto do_binop;
15127
15128     case LT_EXPR:
15129       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
15130         return 0;
15131
15132       op = DW_OP_lt;
15133       goto do_binop;
15134
15135     case GT_EXPR:
15136       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
15137         return 0;
15138
15139       op = DW_OP_gt;
15140       goto do_binop;
15141
15142     case EQ_EXPR:
15143       op = DW_OP_eq;
15144       goto do_binop;
15145
15146     case NE_EXPR:
15147       op = DW_OP_ne;
15148       goto do_binop;
15149
15150     do_binop:
15151       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15152       list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0);
15153       if (list_ret == 0 || list_ret1 == 0)
15154         return 0;
15155
15156       add_loc_list (&list_ret, list_ret1);
15157       if (list_ret == 0)
15158         return 0;
15159       add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
15160       break;
15161
15162     case TRUTH_NOT_EXPR:
15163     case BIT_NOT_EXPR:
15164       op = DW_OP_not;
15165       goto do_unop;
15166
15167     case ABS_EXPR:
15168       op = DW_OP_abs;
15169       goto do_unop;
15170
15171     case NEGATE_EXPR:
15172       op = DW_OP_neg;
15173       goto do_unop;
15174
15175     do_unop:
15176       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15177       if (list_ret == 0)
15178         return 0;
15179
15180       add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
15181       break;
15182
15183     case MIN_EXPR:
15184     case MAX_EXPR:
15185       {
15186         const enum tree_code code =
15187           TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
15188
15189         loc = build3 (COND_EXPR, TREE_TYPE (loc),
15190                       build2 (code, integer_type_node,
15191                               TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
15192                       TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
15193       }
15194
15195       /* ... fall through ...  */
15196
15197     case COND_EXPR:
15198       {
15199         dw_loc_descr_ref lhs
15200           = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
15201         dw_loc_list_ref rhs
15202           = loc_list_from_tree (TREE_OPERAND (loc, 2), 0);
15203         dw_loc_descr_ref bra_node, jump_node, tmp;
15204
15205         list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15206         if (list_ret == 0 || lhs == 0 || rhs == 0)
15207           return 0;
15208
15209         bra_node = new_loc_descr (DW_OP_bra, 0, 0);
15210         add_loc_descr_to_each (list_ret, bra_node);
15211
15212         add_loc_list (&list_ret, rhs);
15213         jump_node = new_loc_descr (DW_OP_skip, 0, 0);
15214         add_loc_descr_to_each (list_ret, jump_node);
15215
15216         add_loc_descr_to_each (list_ret, lhs);
15217         bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
15218         bra_node->dw_loc_oprnd1.v.val_loc = lhs;
15219
15220         /* ??? Need a node to point the skip at.  Use a nop.  */
15221         tmp = new_loc_descr (DW_OP_nop, 0, 0);
15222         add_loc_descr_to_each (list_ret, tmp);
15223         jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
15224         jump_node->dw_loc_oprnd1.v.val_loc = tmp;
15225       }
15226       break;
15227
15228     case FIX_TRUNC_EXPR:
15229       return 0;
15230
15231     default:
15232       /* Leave front-end specific codes as simply unknown.  This comes
15233          up, for instance, with the C STMT_EXPR.  */
15234       if ((unsigned int) TREE_CODE (loc)
15235           >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
15236         {
15237           expansion_failed (loc, NULL_RTX,
15238                             "language specific tree node");
15239           return 0;
15240         }
15241
15242 #ifdef ENABLE_CHECKING
15243       /* Otherwise this is a generic code; we should just lists all of
15244          these explicitly.  We forgot one.  */
15245       gcc_unreachable ();
15246 #else
15247       /* In a release build, we want to degrade gracefully: better to
15248          generate incomplete debugging information than to crash.  */
15249       return NULL;
15250 #endif
15251     }
15252
15253   if (!ret && !list_ret)
15254     return 0;
15255
15256   if (want_address == 2 && !have_address
15257       && (dwarf_version >= 4 || !dwarf_strict))
15258     {
15259       if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
15260         {
15261           expansion_failed (loc, NULL_RTX,
15262                             "DWARF address size mismatch");
15263           return 0;
15264         }
15265       if (ret)
15266         add_loc_descr (&ret, new_loc_descr (DW_OP_stack_value, 0, 0));
15267       else
15268         add_loc_descr_to_each (list_ret,
15269                                new_loc_descr (DW_OP_stack_value, 0, 0));
15270       have_address = 1;
15271     }
15272   /* Show if we can't fill the request for an address.  */
15273   if (want_address && !have_address)
15274     {
15275       expansion_failed (loc, NULL_RTX,
15276                         "Want address and only have value");
15277       return 0;
15278     }
15279
15280   gcc_assert (!ret || !list_ret);
15281
15282   /* If we've got an address and don't want one, dereference.  */
15283   if (!want_address && have_address)
15284     {
15285       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
15286
15287       if (size > DWARF2_ADDR_SIZE || size == -1)
15288         {
15289           expansion_failed (loc, NULL_RTX,
15290                             "DWARF address size mismatch");
15291           return 0;
15292         }
15293       else if (size == DWARF2_ADDR_SIZE)
15294         op = DW_OP_deref;
15295       else
15296         op = DW_OP_deref_size;
15297
15298       if (ret)
15299         add_loc_descr (&ret, new_loc_descr (op, size, 0));
15300       else
15301         add_loc_descr_to_each (list_ret, new_loc_descr (op, size, 0));
15302     }
15303   if (ret)
15304     list_ret = new_loc_list (ret, NULL, NULL, NULL);
15305
15306   return list_ret;
15307 }
15308
15309 /* Same as above but return only single location expression.  */
15310 static dw_loc_descr_ref
15311 loc_descriptor_from_tree (tree loc, int want_address)
15312 {
15313   dw_loc_list_ref ret = loc_list_from_tree (loc, want_address);
15314   if (!ret)
15315     return NULL;
15316   if (ret->dw_loc_next)
15317     {
15318       expansion_failed (loc, NULL_RTX,
15319                         "Location list where only loc descriptor needed");
15320       return NULL;
15321     }
15322   return ret->expr;
15323 }
15324
15325 /* Given a value, round it up to the lowest multiple of `boundary'
15326    which is not less than the value itself.  */
15327
15328 static inline HOST_WIDE_INT
15329 ceiling (HOST_WIDE_INT value, unsigned int boundary)
15330 {
15331   return (((value + boundary - 1) / boundary) * boundary);
15332 }
15333
15334 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
15335    pointer to the declared type for the relevant field variable, or return
15336    `integer_type_node' if the given node turns out to be an
15337    ERROR_MARK node.  */
15338
15339 static inline tree
15340 field_type (const_tree decl)
15341 {
15342   tree type;
15343
15344   if (TREE_CODE (decl) == ERROR_MARK)
15345     return integer_type_node;
15346
15347   type = DECL_BIT_FIELD_TYPE (decl);
15348   if (type == NULL_TREE)
15349     type = TREE_TYPE (decl);
15350
15351   return type;
15352 }
15353
15354 /* Given a pointer to a tree node, return the alignment in bits for
15355    it, or else return BITS_PER_WORD if the node actually turns out to
15356    be an ERROR_MARK node.  */
15357
15358 static inline unsigned
15359 simple_type_align_in_bits (const_tree type)
15360 {
15361   return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
15362 }
15363
15364 static inline unsigned
15365 simple_decl_align_in_bits (const_tree decl)
15366 {
15367   return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
15368 }
15369
15370 /* Return the result of rounding T up to ALIGN.  */
15371
15372 static inline HOST_WIDE_INT
15373 round_up_to_align (HOST_WIDE_INT t, unsigned int align)
15374 {
15375   /* We must be careful if T is negative because HOST_WIDE_INT can be
15376      either "above" or "below" unsigned int as per the C promotion
15377      rules, depending on the host, thus making the signedness of the
15378      direct multiplication and division unpredictable.  */
15379   unsigned HOST_WIDE_INT u = (unsigned HOST_WIDE_INT) t;
15380
15381   u += align - 1;
15382   u /= align;
15383   u *= align;
15384
15385   return (HOST_WIDE_INT) u;
15386 }
15387
15388 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
15389    lowest addressed byte of the "containing object" for the given FIELD_DECL,
15390    or return 0 if we are unable to determine what that offset is, either
15391    because the argument turns out to be a pointer to an ERROR_MARK node, or
15392    because the offset is actually variable.  (We can't handle the latter case
15393    just yet).  */
15394
15395 static HOST_WIDE_INT
15396 field_byte_offset (const_tree decl)
15397 {
15398   HOST_WIDE_INT object_offset_in_bits;
15399   HOST_WIDE_INT bitpos_int;
15400
15401   if (TREE_CODE (decl) == ERROR_MARK)
15402     return 0;
15403
15404   gcc_assert (TREE_CODE (decl) == FIELD_DECL);
15405
15406   /* We cannot yet cope with fields whose positions are variable, so
15407      for now, when we see such things, we simply return 0.  Someday, we may
15408      be able to handle such cases, but it will be damn difficult.  */
15409   if (! host_integerp (bit_position (decl), 0))
15410     return 0;
15411
15412   bitpos_int = int_bit_position (decl);
15413
15414 #ifdef PCC_BITFIELD_TYPE_MATTERS
15415   if (PCC_BITFIELD_TYPE_MATTERS)
15416     {
15417       tree type;
15418       tree field_size_tree;
15419       HOST_WIDE_INT deepest_bitpos;
15420       unsigned HOST_WIDE_INT field_size_in_bits;
15421       unsigned int type_align_in_bits;
15422       unsigned int decl_align_in_bits;
15423       unsigned HOST_WIDE_INT type_size_in_bits;
15424
15425       type = field_type (decl);
15426       type_size_in_bits = simple_type_size_in_bits (type);
15427       type_align_in_bits = simple_type_align_in_bits (type);
15428
15429       field_size_tree = DECL_SIZE (decl);
15430
15431       /* The size could be unspecified if there was an error, or for
15432          a flexible array member.  */
15433       if (!field_size_tree)
15434         field_size_tree = bitsize_zero_node;
15435
15436       /* If the size of the field is not constant, use the type size.  */
15437       if (host_integerp (field_size_tree, 1))
15438         field_size_in_bits = tree_low_cst (field_size_tree, 1);
15439       else
15440         field_size_in_bits = type_size_in_bits;
15441
15442       decl_align_in_bits = simple_decl_align_in_bits (decl);
15443
15444       /* The GCC front-end doesn't make any attempt to keep track of the
15445          starting bit offset (relative to the start of the containing
15446          structure type) of the hypothetical "containing object" for a
15447          bit-field.  Thus, when computing the byte offset value for the
15448          start of the "containing object" of a bit-field, we must deduce
15449          this information on our own. This can be rather tricky to do in
15450          some cases.  For example, handling the following structure type
15451          definition when compiling for an i386/i486 target (which only
15452          aligns long long's to 32-bit boundaries) can be very tricky:
15453
15454          struct S { int field1; long long field2:31; };
15455
15456          Fortunately, there is a simple rule-of-thumb which can be used
15457          in such cases.  When compiling for an i386/i486, GCC will
15458          allocate 8 bytes for the structure shown above.  It decides to
15459          do this based upon one simple rule for bit-field allocation.
15460          GCC allocates each "containing object" for each bit-field at
15461          the first (i.e. lowest addressed) legitimate alignment boundary
15462          (based upon the required minimum alignment for the declared
15463          type of the field) which it can possibly use, subject to the
15464          condition that there is still enough available space remaining
15465          in the containing object (when allocated at the selected point)
15466          to fully accommodate all of the bits of the bit-field itself.
15467
15468          This simple rule makes it obvious why GCC allocates 8 bytes for
15469          each object of the structure type shown above.  When looking
15470          for a place to allocate the "containing object" for `field2',
15471          the compiler simply tries to allocate a 64-bit "containing
15472          object" at each successive 32-bit boundary (starting at zero)
15473          until it finds a place to allocate that 64- bit field such that
15474          at least 31 contiguous (and previously unallocated) bits remain
15475          within that selected 64 bit field.  (As it turns out, for the
15476          example above, the compiler finds it is OK to allocate the
15477          "containing object" 64-bit field at bit-offset zero within the
15478          structure type.)
15479
15480          Here we attempt to work backwards from the limited set of facts
15481          we're given, and we try to deduce from those facts, where GCC
15482          must have believed that the containing object started (within
15483          the structure type). The value we deduce is then used (by the
15484          callers of this routine) to generate DW_AT_location and
15485          DW_AT_bit_offset attributes for fields (both bit-fields and, in
15486          the case of DW_AT_location, regular fields as well).  */
15487
15488       /* Figure out the bit-distance from the start of the structure to
15489          the "deepest" bit of the bit-field.  */
15490       deepest_bitpos = bitpos_int + field_size_in_bits;
15491
15492       /* This is the tricky part.  Use some fancy footwork to deduce
15493          where the lowest addressed bit of the containing object must
15494          be.  */
15495       object_offset_in_bits = deepest_bitpos - type_size_in_bits;
15496
15497       /* Round up to type_align by default.  This works best for
15498          bitfields.  */
15499       object_offset_in_bits
15500         = round_up_to_align (object_offset_in_bits, type_align_in_bits);
15501
15502       if (object_offset_in_bits > bitpos_int)
15503         {
15504           object_offset_in_bits = deepest_bitpos - type_size_in_bits;
15505
15506           /* Round up to decl_align instead.  */
15507           object_offset_in_bits
15508             = round_up_to_align (object_offset_in_bits, decl_align_in_bits);
15509         }
15510     }
15511   else
15512 #endif
15513     object_offset_in_bits = bitpos_int;
15514
15515   return object_offset_in_bits / BITS_PER_UNIT;
15516 }
15517 \f
15518 /* The following routines define various Dwarf attributes and any data
15519    associated with them.  */
15520
15521 /* Add a location description attribute value to a DIE.
15522
15523    This emits location attributes suitable for whole variables and
15524    whole parameters.  Note that the location attributes for struct fields are
15525    generated by the routine `data_member_location_attribute' below.  */
15526
15527 static inline void
15528 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
15529                              dw_loc_list_ref descr)
15530 {
15531   if (descr == 0)
15532     return;
15533   if (single_element_loc_list_p (descr))
15534     add_AT_loc (die, attr_kind, descr->expr);
15535   else
15536     add_AT_loc_list (die, attr_kind, descr);
15537 }
15538
15539 /* Attach the specialized form of location attribute used for data members of
15540    struct and union types.  In the special case of a FIELD_DECL node which
15541    represents a bit-field, the "offset" part of this special location
15542    descriptor must indicate the distance in bytes from the lowest-addressed
15543    byte of the containing struct or union type to the lowest-addressed byte of
15544    the "containing object" for the bit-field.  (See the `field_byte_offset'
15545    function above).
15546
15547    For any given bit-field, the "containing object" is a hypothetical object
15548    (of some integral or enum type) within which the given bit-field lives.  The
15549    type of this hypothetical "containing object" is always the same as the
15550    declared type of the individual bit-field itself (for GCC anyway... the
15551    DWARF spec doesn't actually mandate this).  Note that it is the size (in
15552    bytes) of the hypothetical "containing object" which will be given in the
15553    DW_AT_byte_size attribute for this bit-field.  (See the
15554    `byte_size_attribute' function below.)  It is also used when calculating the
15555    value of the DW_AT_bit_offset attribute.  (See the `bit_offset_attribute'
15556    function below.)  */
15557
15558 static void
15559 add_data_member_location_attribute (dw_die_ref die, tree decl)
15560 {
15561   HOST_WIDE_INT offset;
15562   dw_loc_descr_ref loc_descr = 0;
15563
15564   if (TREE_CODE (decl) == TREE_BINFO)
15565     {
15566       /* We're working on the TAG_inheritance for a base class.  */
15567       if (BINFO_VIRTUAL_P (decl) && is_cxx ())
15568         {
15569           /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
15570              aren't at a fixed offset from all (sub)objects of the same
15571              type.  We need to extract the appropriate offset from our
15572              vtable.  The following dwarf expression means
15573
15574                BaseAddr = ObAddr + *((*ObAddr) - Offset)
15575
15576              This is specific to the V3 ABI, of course.  */
15577
15578           dw_loc_descr_ref tmp;
15579
15580           /* Make a copy of the object address.  */
15581           tmp = new_loc_descr (DW_OP_dup, 0, 0);
15582           add_loc_descr (&loc_descr, tmp);
15583
15584           /* Extract the vtable address.  */
15585           tmp = new_loc_descr (DW_OP_deref, 0, 0);
15586           add_loc_descr (&loc_descr, tmp);
15587
15588           /* Calculate the address of the offset.  */
15589           offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
15590           gcc_assert (offset < 0);
15591
15592           tmp = int_loc_descriptor (-offset);
15593           add_loc_descr (&loc_descr, tmp);
15594           tmp = new_loc_descr (DW_OP_minus, 0, 0);
15595           add_loc_descr (&loc_descr, tmp);
15596
15597           /* Extract the offset.  */
15598           tmp = new_loc_descr (DW_OP_deref, 0, 0);
15599           add_loc_descr (&loc_descr, tmp);
15600
15601           /* Add it to the object address.  */
15602           tmp = new_loc_descr (DW_OP_plus, 0, 0);
15603           add_loc_descr (&loc_descr, tmp);
15604         }
15605       else
15606         offset = tree_low_cst (BINFO_OFFSET (decl), 0);
15607     }
15608   else
15609     offset = field_byte_offset (decl);
15610
15611   if (! loc_descr)
15612     {
15613       if (dwarf_version > 2)
15614         {
15615           /* Don't need to output a location expression, just the constant. */
15616           add_AT_int (die, DW_AT_data_member_location, offset);
15617           return;
15618         }
15619       else
15620         {
15621           enum dwarf_location_atom op;
15622
15623           /* The DWARF2 standard says that we should assume that the structure
15624              address is already on the stack, so we can specify a structure
15625              field address by using DW_OP_plus_uconst.  */
15626
15627 #ifdef MIPS_DEBUGGING_INFO
15628           /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
15629              operator correctly.  It works only if we leave the offset on the
15630              stack.  */
15631           op = DW_OP_constu;
15632 #else
15633           op = DW_OP_plus_uconst;
15634 #endif
15635
15636           loc_descr = new_loc_descr (op, offset, 0);
15637         }
15638     }
15639
15640   add_AT_loc (die, DW_AT_data_member_location, loc_descr);
15641 }
15642
15643 /* Writes integer values to dw_vec_const array.  */
15644
15645 static void
15646 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
15647 {
15648   while (size != 0)
15649     {
15650       *dest++ = val & 0xff;
15651       val >>= 8;
15652       --size;
15653     }
15654 }
15655
15656 /* Reads integers from dw_vec_const array.  Inverse of insert_int.  */
15657
15658 static HOST_WIDE_INT
15659 extract_int (const unsigned char *src, unsigned int size)
15660 {
15661   HOST_WIDE_INT val = 0;
15662
15663   src += size;
15664   while (size != 0)
15665     {
15666       val <<= 8;
15667       val |= *--src & 0xff;
15668       --size;
15669     }
15670   return val;
15671 }
15672
15673 /* Writes double_int values to dw_vec_const array.  */
15674
15675 static void
15676 insert_double (double_int val, unsigned char *dest)
15677 {
15678   unsigned char *p0 = dest;
15679   unsigned char *p1 = dest + sizeof (HOST_WIDE_INT);
15680
15681   if (WORDS_BIG_ENDIAN)
15682     {
15683       p0 = p1;
15684       p1 = dest;
15685     }
15686
15687   insert_int ((HOST_WIDE_INT) val.low, sizeof (HOST_WIDE_INT), p0);
15688   insert_int ((HOST_WIDE_INT) val.high, sizeof (HOST_WIDE_INT), p1);
15689 }
15690
15691 /* Writes floating point values to dw_vec_const array.  */
15692
15693 static void
15694 insert_float (const_rtx rtl, unsigned char *array)
15695 {
15696   REAL_VALUE_TYPE rv;
15697   long val[4];
15698   int i;
15699
15700   REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
15701   real_to_target (val, &rv, GET_MODE (rtl));
15702
15703   /* real_to_target puts 32-bit pieces in each long.  Pack them.  */
15704   for (i = 0; i < GET_MODE_SIZE (GET_MODE (rtl)) / 4; i++)
15705     {
15706       insert_int (val[i], 4, array);
15707       array += 4;
15708     }
15709 }
15710
15711 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
15712    does not have a "location" either in memory or in a register.  These
15713    things can arise in GNU C when a constant is passed as an actual parameter
15714    to an inlined function.  They can also arise in C++ where declared
15715    constants do not necessarily get memory "homes".  */
15716
15717 static bool
15718 add_const_value_attribute (dw_die_ref die, rtx rtl)
15719 {
15720   switch (GET_CODE (rtl))
15721     {
15722     case CONST_INT:
15723       {
15724         HOST_WIDE_INT val = INTVAL (rtl);
15725
15726         if (val < 0)
15727           add_AT_int (die, DW_AT_const_value, val);
15728         else
15729           add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
15730       }
15731       return true;
15732
15733     case CONST_DOUBLE:
15734       /* Note that a CONST_DOUBLE rtx could represent either an integer or a
15735          floating-point constant.  A CONST_DOUBLE is used whenever the
15736          constant requires more than one word in order to be adequately
15737          represented.  */
15738       {
15739         enum machine_mode mode = GET_MODE (rtl);
15740
15741         if (SCALAR_FLOAT_MODE_P (mode))
15742           {
15743             unsigned int length = GET_MODE_SIZE (mode);
15744             unsigned char *array = GGC_NEWVEC (unsigned char, length);
15745
15746             insert_float (rtl, array);
15747             add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
15748           }
15749         else
15750           add_AT_double (die, DW_AT_const_value,
15751                          CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
15752       }
15753       return true;
15754
15755     case CONST_VECTOR:
15756       {
15757         enum machine_mode mode = GET_MODE (rtl);
15758         unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
15759         unsigned int length = CONST_VECTOR_NUNITS (rtl);
15760         unsigned char *array = GGC_NEWVEC (unsigned char, length * elt_size);
15761         unsigned int i;
15762         unsigned char *p;
15763
15764         switch (GET_MODE_CLASS (mode))
15765           {
15766           case MODE_VECTOR_INT:
15767             for (i = 0, p = array; i < length; i++, p += elt_size)
15768               {
15769                 rtx elt = CONST_VECTOR_ELT (rtl, i);
15770                 double_int val = rtx_to_double_int (elt);
15771
15772                 if (elt_size <= sizeof (HOST_WIDE_INT))
15773                   insert_int (double_int_to_shwi (val), elt_size, p);
15774                 else
15775                   {
15776                     gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
15777                     insert_double (val, p);
15778                   }
15779               }
15780             break;
15781
15782           case MODE_VECTOR_FLOAT:
15783             for (i = 0, p = array; i < length; i++, p += elt_size)
15784               {
15785                 rtx elt = CONST_VECTOR_ELT (rtl, i);
15786                 insert_float (elt, p);
15787               }
15788             break;
15789
15790           default:
15791             gcc_unreachable ();
15792           }
15793
15794         add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
15795       }
15796       return true;
15797
15798     case CONST_STRING:
15799       if (dwarf_version >= 4 || !dwarf_strict)
15800         {
15801           dw_loc_descr_ref loc_result;
15802           resolve_one_addr (&rtl, NULL);
15803         rtl_addr:
15804           loc_result = new_loc_descr (DW_OP_addr, 0, 0);
15805           loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
15806           loc_result->dw_loc_oprnd1.v.val_addr = rtl;
15807           add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
15808           add_AT_loc (die, DW_AT_location, loc_result);
15809           VEC_safe_push (rtx, gc, used_rtx_array, rtl);
15810           return true;
15811         }
15812       return false;
15813
15814     case CONST:
15815       if (CONSTANT_P (XEXP (rtl, 0)))
15816         return add_const_value_attribute (die, XEXP (rtl, 0));
15817       /* FALLTHROUGH */
15818     case SYMBOL_REF:
15819       if (!const_ok_for_output (rtl))
15820         return false;
15821     case LABEL_REF:
15822       if (dwarf_version >= 4 || !dwarf_strict)
15823         goto rtl_addr;
15824       return false;
15825
15826     case PLUS:
15827       /* In cases where an inlined instance of an inline function is passed
15828          the address of an `auto' variable (which is local to the caller) we
15829          can get a situation where the DECL_RTL of the artificial local
15830          variable (for the inlining) which acts as a stand-in for the
15831          corresponding formal parameter (of the inline function) will look
15832          like (plus:SI (reg:SI FRAME_PTR) (const_int ...)).  This is not
15833          exactly a compile-time constant expression, but it isn't the address
15834          of the (artificial) local variable either.  Rather, it represents the
15835          *value* which the artificial local variable always has during its
15836          lifetime.  We currently have no way to represent such quasi-constant
15837          values in Dwarf, so for now we just punt and generate nothing.  */
15838       return false;
15839
15840     case HIGH:
15841     case CONST_FIXED:
15842       return false;
15843
15844     case MEM:
15845       if (GET_CODE (XEXP (rtl, 0)) == CONST_STRING
15846           && MEM_READONLY_P (rtl)
15847           && GET_MODE (rtl) == BLKmode)
15848         {
15849           add_AT_string (die, DW_AT_const_value, XSTR (XEXP (rtl, 0), 0));
15850           return true;
15851         }
15852       return false;
15853
15854     default:
15855       /* No other kinds of rtx should be possible here.  */
15856       gcc_unreachable ();
15857     }
15858   return false;
15859 }
15860
15861 /* Determine whether the evaluation of EXPR references any variables
15862    or functions which aren't otherwise used (and therefore may not be
15863    output).  */
15864 static tree
15865 reference_to_unused (tree * tp, int * walk_subtrees,
15866                      void * data ATTRIBUTE_UNUSED)
15867 {
15868   if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
15869     *walk_subtrees = 0;
15870
15871   if (DECL_P (*tp) && ! TREE_PUBLIC (*tp) && ! TREE_USED (*tp)
15872       && ! TREE_ASM_WRITTEN (*tp))
15873     return *tp;
15874   /* ???  The C++ FE emits debug information for using decls, so
15875      putting gcc_unreachable here falls over.  See PR31899.  For now
15876      be conservative.  */
15877   else if (!cgraph_global_info_ready
15878            && (TREE_CODE (*tp) == VAR_DECL || TREE_CODE (*tp) == FUNCTION_DECL))
15879     return *tp;
15880   else if (TREE_CODE (*tp) == VAR_DECL)
15881     {
15882       struct varpool_node *node = varpool_node (*tp);
15883       if (!node->needed)
15884         return *tp;
15885     }
15886   else if (TREE_CODE (*tp) == FUNCTION_DECL
15887            && (!DECL_EXTERNAL (*tp) || DECL_DECLARED_INLINE_P (*tp)))
15888     {
15889       /* The call graph machinery must have finished analyzing,
15890          optimizing and gimplifying the CU by now.
15891          So if *TP has no call graph node associated
15892          to it, it means *TP will not be emitted.  */
15893       if (!cgraph_get_node (*tp))
15894         return *tp;
15895     }
15896   else if (TREE_CODE (*tp) == STRING_CST && !TREE_ASM_WRITTEN (*tp))
15897     return *tp;
15898
15899   return NULL_TREE;
15900 }
15901
15902 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
15903    for use in a later add_const_value_attribute call.  */
15904
15905 static rtx
15906 rtl_for_decl_init (tree init, tree type)
15907 {
15908   rtx rtl = NULL_RTX;
15909
15910   /* If a variable is initialized with a string constant without embedded
15911      zeros, build CONST_STRING.  */
15912   if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
15913     {
15914       tree enttype = TREE_TYPE (type);
15915       tree domain = TYPE_DOMAIN (type);
15916       enum machine_mode mode = TYPE_MODE (enttype);
15917
15918       if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_SIZE (mode) == 1
15919           && domain
15920           && integer_zerop (TYPE_MIN_VALUE (domain))
15921           && compare_tree_int (TYPE_MAX_VALUE (domain),
15922                                TREE_STRING_LENGTH (init) - 1) == 0
15923           && ((size_t) TREE_STRING_LENGTH (init)
15924               == strlen (TREE_STRING_POINTER (init)) + 1))
15925         {
15926           rtl = gen_rtx_CONST_STRING (VOIDmode,
15927                                       ggc_strdup (TREE_STRING_POINTER (init)));
15928           rtl = gen_rtx_MEM (BLKmode, rtl);
15929           MEM_READONLY_P (rtl) = 1;
15930         }
15931     }
15932   /* Other aggregates, and complex values, could be represented using
15933      CONCAT: FIXME!  */
15934   else if (AGGREGATE_TYPE_P (type) || TREE_CODE (type) == COMPLEX_TYPE)
15935     ;
15936   /* Vectors only work if their mode is supported by the target.
15937      FIXME: generic vectors ought to work too.  */
15938   else if (TREE_CODE (type) == VECTOR_TYPE && TYPE_MODE (type) == BLKmode)
15939     ;
15940   /* If the initializer is something that we know will expand into an
15941      immediate RTL constant, expand it now.  We must be careful not to
15942      reference variables which won't be output.  */
15943   else if (initializer_constant_valid_p (init, type)
15944            && ! walk_tree (&init, reference_to_unused, NULL, NULL))
15945     {
15946       /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
15947          possible.  */
15948       if (TREE_CODE (type) == VECTOR_TYPE)
15949         switch (TREE_CODE (init))
15950           {
15951           case VECTOR_CST:
15952             break;
15953           case CONSTRUCTOR:
15954             if (TREE_CONSTANT (init))
15955               {
15956                 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (init);
15957                 bool constant_p = true;
15958                 tree value;
15959                 unsigned HOST_WIDE_INT ix;
15960
15961                 /* Even when ctor is constant, it might contain non-*_CST
15962                    elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
15963                    belong into VECTOR_CST nodes.  */
15964                 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
15965                   if (!CONSTANT_CLASS_P (value))
15966                     {
15967                       constant_p = false;
15968                       break;
15969                     }
15970
15971                 if (constant_p)
15972                   {
15973                     init = build_vector_from_ctor (type, elts);
15974                     break;
15975                   }
15976               }
15977             /* FALLTHRU */
15978
15979           default:
15980             return NULL;
15981           }
15982
15983       rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
15984
15985       /* If expand_expr returns a MEM, it wasn't immediate.  */
15986       gcc_assert (!rtl || !MEM_P (rtl));
15987     }
15988
15989   return rtl;
15990 }
15991
15992 /* Generate RTL for the variable DECL to represent its location.  */
15993
15994 static rtx
15995 rtl_for_decl_location (tree decl)
15996 {
15997   rtx rtl;
15998
15999   /* Here we have to decide where we are going to say the parameter "lives"
16000      (as far as the debugger is concerned).  We only have a couple of
16001      choices.  GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
16002
16003      DECL_RTL normally indicates where the parameter lives during most of the
16004      activation of the function.  If optimization is enabled however, this
16005      could be either NULL or else a pseudo-reg.  Both of those cases indicate
16006      that the parameter doesn't really live anywhere (as far as the code
16007      generation parts of GCC are concerned) during most of the function's
16008      activation.  That will happen (for example) if the parameter is never
16009      referenced within the function.
16010
16011      We could just generate a location descriptor here for all non-NULL
16012      non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
16013      a little nicer than that if we also consider DECL_INCOMING_RTL in cases
16014      where DECL_RTL is NULL or is a pseudo-reg.
16015
16016      Note however that we can only get away with using DECL_INCOMING_RTL as
16017      a backup substitute for DECL_RTL in certain limited cases.  In cases
16018      where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
16019      we can be sure that the parameter was passed using the same type as it is
16020      declared to have within the function, and that its DECL_INCOMING_RTL
16021      points us to a place where a value of that type is passed.
16022
16023      In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
16024      we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
16025      because in these cases DECL_INCOMING_RTL points us to a value of some
16026      type which is *different* from the type of the parameter itself.  Thus,
16027      if we tried to use DECL_INCOMING_RTL to generate a location attribute in
16028      such cases, the debugger would end up (for example) trying to fetch a
16029      `float' from a place which actually contains the first part of a
16030      `double'.  That would lead to really incorrect and confusing
16031      output at debug-time.
16032
16033      So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
16034      in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl).  There
16035      are a couple of exceptions however.  On little-endian machines we can
16036      get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
16037      not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
16038      an integral type that is smaller than TREE_TYPE (decl). These cases arise
16039      when (on a little-endian machine) a non-prototyped function has a
16040      parameter declared to be of type `short' or `char'.  In such cases,
16041      TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
16042      be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
16043      passed `int' value.  If the debugger then uses that address to fetch
16044      a `short' or a `char' (on a little-endian machine) the result will be
16045      the correct data, so we allow for such exceptional cases below.
16046
16047      Note that our goal here is to describe the place where the given formal
16048      parameter lives during most of the function's activation (i.e. between the
16049      end of the prologue and the start of the epilogue).  We'll do that as best
16050      as we can. Note however that if the given formal parameter is modified
16051      sometime during the execution of the function, then a stack backtrace (at
16052      debug-time) will show the function as having been called with the *new*
16053      value rather than the value which was originally passed in.  This happens
16054      rarely enough that it is not a major problem, but it *is* a problem, and
16055      I'd like to fix it.
16056
16057      A future version of dwarf2out.c may generate two additional attributes for
16058      any given DW_TAG_formal_parameter DIE which will describe the "passed
16059      type" and the "passed location" for the given formal parameter in addition
16060      to the attributes we now generate to indicate the "declared type" and the
16061      "active location" for each parameter.  This additional set of attributes
16062      could be used by debuggers for stack backtraces. Separately, note that
16063      sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
16064      This happens (for example) for inlined-instances of inline function formal
16065      parameters which are never referenced.  This really shouldn't be
16066      happening.  All PARM_DECL nodes should get valid non-NULL
16067      DECL_INCOMING_RTL values.  FIXME.  */
16068
16069   /* Use DECL_RTL as the "location" unless we find something better.  */
16070   rtl = DECL_RTL_IF_SET (decl);
16071
16072   /* When generating abstract instances, ignore everything except
16073      constants, symbols living in memory, and symbols living in
16074      fixed registers.  */
16075   if (! reload_completed)
16076     {
16077       if (rtl
16078           && (CONSTANT_P (rtl)
16079               || (MEM_P (rtl)
16080                   && CONSTANT_P (XEXP (rtl, 0)))
16081               || (REG_P (rtl)
16082                   && TREE_CODE (decl) == VAR_DECL
16083                   && TREE_STATIC (decl))))
16084         {
16085           rtl = targetm.delegitimize_address (rtl);
16086           return rtl;
16087         }
16088       rtl = NULL_RTX;
16089     }
16090   else if (TREE_CODE (decl) == PARM_DECL)
16091     {
16092       if (rtl == NULL_RTX || is_pseudo_reg (rtl))
16093         {
16094           tree declared_type = TREE_TYPE (decl);
16095           tree passed_type = DECL_ARG_TYPE (decl);
16096           enum machine_mode dmode = TYPE_MODE (declared_type);
16097           enum machine_mode pmode = TYPE_MODE (passed_type);
16098
16099           /* This decl represents a formal parameter which was optimized out.
16100              Note that DECL_INCOMING_RTL may be NULL in here, but we handle
16101              all cases where (rtl == NULL_RTX) just below.  */
16102           if (dmode == pmode)
16103             rtl = DECL_INCOMING_RTL (decl);
16104           else if (SCALAR_INT_MODE_P (dmode)
16105                    && GET_MODE_SIZE (dmode) <= GET_MODE_SIZE (pmode)
16106                    && DECL_INCOMING_RTL (decl))
16107             {
16108               rtx inc = DECL_INCOMING_RTL (decl);
16109               if (REG_P (inc))
16110                 rtl = inc;
16111               else if (MEM_P (inc))
16112                 {
16113                   if (BYTES_BIG_ENDIAN)
16114                     rtl = adjust_address_nv (inc, dmode,
16115                                              GET_MODE_SIZE (pmode)
16116                                              - GET_MODE_SIZE (dmode));
16117                   else
16118                     rtl = inc;
16119                 }
16120             }
16121         }
16122
16123       /* If the parm was passed in registers, but lives on the stack, then
16124          make a big endian correction if the mode of the type of the
16125          parameter is not the same as the mode of the rtl.  */
16126       /* ??? This is the same series of checks that are made in dbxout.c before
16127          we reach the big endian correction code there.  It isn't clear if all
16128          of these checks are necessary here, but keeping them all is the safe
16129          thing to do.  */
16130       else if (MEM_P (rtl)
16131                && XEXP (rtl, 0) != const0_rtx
16132                && ! CONSTANT_P (XEXP (rtl, 0))
16133                /* Not passed in memory.  */
16134                && !MEM_P (DECL_INCOMING_RTL (decl))
16135                /* Not passed by invisible reference.  */
16136                && (!REG_P (XEXP (rtl, 0))
16137                    || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
16138                    || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
16139 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
16140                    || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
16141 #endif
16142                      )
16143                /* Big endian correction check.  */
16144                && BYTES_BIG_ENDIAN
16145                && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
16146                && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
16147                    < UNITS_PER_WORD))
16148         {
16149           int offset = (UNITS_PER_WORD
16150                         - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
16151
16152           rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
16153                              plus_constant (XEXP (rtl, 0), offset));
16154         }
16155     }
16156   else if (TREE_CODE (decl) == VAR_DECL
16157            && rtl
16158            && MEM_P (rtl)
16159            && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl))
16160            && BYTES_BIG_ENDIAN)
16161     {
16162       int rsize = GET_MODE_SIZE (GET_MODE (rtl));
16163       int dsize = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)));
16164
16165       /* If a variable is declared "register" yet is smaller than
16166          a register, then if we store the variable to memory, it
16167          looks like we're storing a register-sized value, when in
16168          fact we are not.  We need to adjust the offset of the
16169          storage location to reflect the actual value's bytes,
16170          else gdb will not be able to display it.  */
16171       if (rsize > dsize)
16172         rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
16173                            plus_constant (XEXP (rtl, 0), rsize-dsize));
16174     }
16175
16176   /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
16177      and will have been substituted directly into all expressions that use it.
16178      C does not have such a concept, but C++ and other languages do.  */
16179   if (!rtl && TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
16180     rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
16181
16182   if (rtl)
16183     rtl = targetm.delegitimize_address (rtl);
16184
16185   /* If we don't look past the constant pool, we risk emitting a
16186      reference to a constant pool entry that isn't referenced from
16187      code, and thus is not emitted.  */
16188   if (rtl)
16189     rtl = avoid_constant_pool_reference (rtl);
16190
16191   /* Try harder to get a rtl.  If this symbol ends up not being emitted
16192      in the current CU, resolve_addr will remove the expression referencing
16193      it.  */
16194   if (rtl == NULL_RTX
16195       && TREE_CODE (decl) == VAR_DECL
16196       && !DECL_EXTERNAL (decl)
16197       && TREE_STATIC (decl)
16198       && DECL_NAME (decl)
16199       && !DECL_HARD_REGISTER (decl)
16200       && DECL_MODE (decl) != VOIDmode)
16201     {
16202       rtl = make_decl_rtl_for_debug (decl);
16203       if (!MEM_P (rtl)
16204           || GET_CODE (XEXP (rtl, 0)) != SYMBOL_REF
16205           || SYMBOL_REF_DECL (XEXP (rtl, 0)) != decl)
16206         rtl = NULL_RTX;
16207     }
16208
16209   return rtl;
16210 }
16211
16212 /* Check whether decl is a Fortran COMMON symbol.  If not, NULL_TREE is
16213    returned.  If so, the decl for the COMMON block is returned, and the
16214    value is the offset into the common block for the symbol.  */
16215
16216 static tree
16217 fortran_common (tree decl, HOST_WIDE_INT *value)
16218 {
16219   tree val_expr, cvar;
16220   enum machine_mode mode;
16221   HOST_WIDE_INT bitsize, bitpos;
16222   tree offset;
16223   int volatilep = 0, unsignedp = 0;
16224
16225   /* If the decl isn't a VAR_DECL, or if it isn't static, or if
16226      it does not have a value (the offset into the common area), or if it
16227      is thread local (as opposed to global) then it isn't common, and shouldn't
16228      be handled as such.  */
16229   if (TREE_CODE (decl) != VAR_DECL
16230       || !TREE_STATIC (decl)
16231       || !DECL_HAS_VALUE_EXPR_P (decl)
16232       || !is_fortran ())
16233     return NULL_TREE;
16234
16235   val_expr = DECL_VALUE_EXPR (decl);
16236   if (TREE_CODE (val_expr) != COMPONENT_REF)
16237     return NULL_TREE;
16238
16239   cvar = get_inner_reference (val_expr, &bitsize, &bitpos, &offset,
16240                               &mode, &unsignedp, &volatilep, true);
16241
16242   if (cvar == NULL_TREE
16243       || TREE_CODE (cvar) != VAR_DECL
16244       || DECL_ARTIFICIAL (cvar)
16245       || !TREE_PUBLIC (cvar))
16246     return NULL_TREE;
16247
16248   *value = 0;
16249   if (offset != NULL)
16250     {
16251       if (!host_integerp (offset, 0))
16252         return NULL_TREE;
16253       *value = tree_low_cst (offset, 0);
16254     }
16255   if (bitpos != 0)
16256     *value += bitpos / BITS_PER_UNIT;
16257
16258   return cvar;
16259 }
16260
16261 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
16262    data attribute for a variable or a parameter.  We generate the
16263    DW_AT_const_value attribute only in those cases where the given variable
16264    or parameter does not have a true "location" either in memory or in a
16265    register.  This can happen (for example) when a constant is passed as an
16266    actual argument in a call to an inline function.  (It's possible that
16267    these things can crop up in other ways also.)  Note that one type of
16268    constant value which can be passed into an inlined function is a constant
16269    pointer.  This can happen for example if an actual argument in an inlined
16270    function call evaluates to a compile-time constant address.  */
16271
16272 static bool
16273 add_location_or_const_value_attribute (dw_die_ref die, tree decl,
16274                                        enum dwarf_attribute attr)
16275 {
16276   rtx rtl;
16277   dw_loc_list_ref list;
16278   var_loc_list *loc_list;
16279
16280   if (TREE_CODE (decl) == ERROR_MARK)
16281     return false;
16282
16283   gcc_assert (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
16284               || TREE_CODE (decl) == RESULT_DECL);
16285
16286   /* Try to get some constant RTL for this decl, and use that as the value of
16287      the location.  */
16288
16289   rtl = rtl_for_decl_location (decl);
16290   if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
16291       && add_const_value_attribute (die, rtl))
16292     return true;
16293
16294   /* See if we have single element location list that is equivalent to
16295      a constant value.  That way we are better to use add_const_value_attribute
16296      rather than expanding constant value equivalent.  */
16297   loc_list = lookup_decl_loc (decl);
16298   if (loc_list
16299       && loc_list->first
16300       && loc_list->first->next == NULL
16301       && NOTE_P (loc_list->first->loc)
16302       && NOTE_VAR_LOCATION (loc_list->first->loc)
16303       && NOTE_VAR_LOCATION_LOC (loc_list->first->loc))
16304     {
16305       struct var_loc_node *node;
16306
16307       node = loc_list->first;
16308       rtl = NOTE_VAR_LOCATION_LOC (node->loc);
16309       if (GET_CODE (rtl) == EXPR_LIST)
16310         rtl = XEXP (rtl, 0);
16311       if ((CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
16312           && add_const_value_attribute (die, rtl))
16313          return true;
16314     }
16315   list = loc_list_from_tree (decl, decl_by_reference_p (decl) ? 0 : 2);
16316   if (list)
16317     {
16318       add_AT_location_description (die, attr, list);
16319       return true;
16320     }
16321   /* None of that worked, so it must not really have a location;
16322      try adding a constant value attribute from the DECL_INITIAL.  */
16323   return tree_add_const_value_attribute_for_decl (die, decl);
16324 }
16325
16326 /* Add VARIABLE and DIE into deferred locations list.  */
16327
16328 static void
16329 defer_location (tree variable, dw_die_ref die)
16330 {
16331   deferred_locations entry;
16332   entry.variable = variable;
16333   entry.die = die;
16334   VEC_safe_push (deferred_locations, gc, deferred_locations_list, &entry);
16335 }
16336
16337 /* Helper function for tree_add_const_value_attribute.  Natively encode
16338    initializer INIT into an array.  Return true if successful.  */
16339
16340 static bool
16341 native_encode_initializer (tree init, unsigned char *array, int size)
16342 {
16343   tree type;
16344
16345   if (init == NULL_TREE)
16346     return false;
16347
16348   STRIP_NOPS (init);
16349   switch (TREE_CODE (init))
16350     {
16351     case STRING_CST:
16352       type = TREE_TYPE (init);
16353       if (TREE_CODE (type) == ARRAY_TYPE)
16354         {
16355           tree enttype = TREE_TYPE (type);
16356           enum machine_mode mode = TYPE_MODE (enttype);
16357
16358           if (GET_MODE_CLASS (mode) != MODE_INT || GET_MODE_SIZE (mode) != 1)
16359             return false;
16360           if (int_size_in_bytes (type) != size)
16361             return false;
16362           if (size > TREE_STRING_LENGTH (init))
16363             {
16364               memcpy (array, TREE_STRING_POINTER (init),
16365                       TREE_STRING_LENGTH (init));
16366               memset (array + TREE_STRING_LENGTH (init),
16367                       '\0', size - TREE_STRING_LENGTH (init));
16368             }
16369           else
16370             memcpy (array, TREE_STRING_POINTER (init), size);
16371           return true;
16372         }
16373       return false;
16374     case CONSTRUCTOR:
16375       type = TREE_TYPE (init);
16376       if (int_size_in_bytes (type) != size)
16377         return false;
16378       if (TREE_CODE (type) == ARRAY_TYPE)
16379         {
16380           HOST_WIDE_INT min_index;
16381           unsigned HOST_WIDE_INT cnt;
16382           int curpos = 0, fieldsize;
16383           constructor_elt *ce;
16384
16385           if (TYPE_DOMAIN (type) == NULL_TREE
16386               || !host_integerp (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0))
16387             return false;
16388
16389           fieldsize = int_size_in_bytes (TREE_TYPE (type));
16390           if (fieldsize <= 0)
16391             return false;
16392
16393           min_index = tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0);
16394           memset (array, '\0', size);
16395           for (cnt = 0;
16396                VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (init), cnt, ce);
16397                cnt++)
16398             {
16399               tree val = ce->value;
16400               tree index = ce->index;
16401               int pos = curpos;
16402               if (index && TREE_CODE (index) == RANGE_EXPR)
16403                 pos = (tree_low_cst (TREE_OPERAND (index, 0), 0) - min_index)
16404                       * fieldsize;
16405               else if (index)
16406                 pos = (tree_low_cst (index, 0) - min_index) * fieldsize;
16407
16408               if (val)
16409                 {
16410                   STRIP_NOPS (val);
16411                   if (!native_encode_initializer (val, array + pos, fieldsize))
16412                     return false;
16413                 }
16414               curpos = pos + fieldsize;
16415               if (index && TREE_CODE (index) == RANGE_EXPR)
16416                 {
16417                   int count = tree_low_cst (TREE_OPERAND (index, 1), 0)
16418                               - tree_low_cst (TREE_OPERAND (index, 0), 0);
16419                   while (count > 0)
16420                     {
16421                       if (val)
16422                         memcpy (array + curpos, array + pos, fieldsize);
16423                       curpos += fieldsize;
16424                     }
16425                 }
16426               gcc_assert (curpos <= size);
16427             }
16428           return true;
16429         }
16430       else if (TREE_CODE (type) == RECORD_TYPE
16431                || TREE_CODE (type) == UNION_TYPE)
16432         {
16433           tree field = NULL_TREE;
16434           unsigned HOST_WIDE_INT cnt;
16435           constructor_elt *ce;
16436
16437           if (int_size_in_bytes (type) != size)
16438             return false;
16439
16440           if (TREE_CODE (type) == RECORD_TYPE)
16441             field = TYPE_FIELDS (type);
16442
16443           for (cnt = 0;
16444                VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (init), cnt, ce);
16445                cnt++, field = field ? TREE_CHAIN (field) : 0)
16446             {
16447               tree val = ce->value;
16448               int pos, fieldsize;
16449
16450               if (ce->index != 0)
16451                 field = ce->index;
16452
16453               if (val)
16454                 STRIP_NOPS (val);
16455
16456               if (field == NULL_TREE || DECL_BIT_FIELD (field))
16457                 return false;
16458
16459               if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
16460                   && TYPE_DOMAIN (TREE_TYPE (field))
16461                   && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
16462                 return false;
16463               else if (DECL_SIZE_UNIT (field) == NULL_TREE
16464                        || !host_integerp (DECL_SIZE_UNIT (field), 0))
16465                 return false;
16466               fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 0);
16467               pos = int_byte_position (field);
16468               gcc_assert (pos + fieldsize <= size);
16469               if (val
16470                   && !native_encode_initializer (val, array + pos, fieldsize))
16471                 return false;
16472             }
16473           return true;
16474         }
16475       return false;
16476     case VIEW_CONVERT_EXPR:
16477     case NON_LVALUE_EXPR:
16478       return native_encode_initializer (TREE_OPERAND (init, 0), array, size);
16479     default:
16480       return native_encode_expr (init, array, size) == size;
16481     }
16482 }
16483
16484 /* Attach a DW_AT_const_value attribute to DIE. The value of the
16485    attribute is the const value T.  */
16486
16487 static bool
16488 tree_add_const_value_attribute (dw_die_ref die, tree t)
16489 {
16490   tree init;
16491   tree type = TREE_TYPE (t);
16492   rtx rtl;
16493
16494   if (!t || !TREE_TYPE (t) || TREE_TYPE (t) == error_mark_node)
16495     return false;
16496
16497   init = t;
16498   gcc_assert (!DECL_P (init));
16499
16500   rtl = rtl_for_decl_init (init, type);
16501   if (rtl)
16502     return add_const_value_attribute (die, rtl);
16503   /* If the host and target are sane, try harder.  */
16504   else if (CHAR_BIT == 8 && BITS_PER_UNIT == 8
16505            && initializer_constant_valid_p (init, type))
16506     {
16507       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (init));
16508       if (size > 0 && (int) size == size)
16509         {
16510           unsigned char *array = GGC_CNEWVEC (unsigned char, size);
16511
16512           if (native_encode_initializer (init, array, size))
16513             {
16514               add_AT_vec (die, DW_AT_const_value, size, 1, array);
16515               return true;
16516             }
16517         }
16518     }
16519   return false;
16520 }
16521
16522 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
16523    attribute is the const value of T, where T is an integral constant
16524    variable with static storage duration
16525    (so it can't be a PARM_DECL or a RESULT_DECL).  */
16526
16527 static bool
16528 tree_add_const_value_attribute_for_decl (dw_die_ref var_die, tree decl)
16529 {
16530
16531   if (!decl
16532       || (TREE_CODE (decl) != VAR_DECL
16533           && TREE_CODE (decl) != CONST_DECL))
16534     return false;
16535
16536     if (TREE_READONLY (decl)
16537         && ! TREE_THIS_VOLATILE (decl)
16538         && DECL_INITIAL (decl))
16539       /* OK */;
16540     else
16541       return false;
16542
16543   /* Don't add DW_AT_const_value if abstract origin already has one.  */
16544   if (get_AT (var_die, DW_AT_const_value))
16545     return false;
16546
16547   return tree_add_const_value_attribute (var_die, DECL_INITIAL (decl));
16548 }
16549
16550 /* Convert the CFI instructions for the current function into a
16551    location list.  This is used for DW_AT_frame_base when we targeting
16552    a dwarf2 consumer that does not support the dwarf3
16553    DW_OP_call_frame_cfa.  OFFSET is a constant to be added to all CFA
16554    expressions.  */
16555
16556 static dw_loc_list_ref
16557 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
16558 {
16559   dw_fde_ref fde;
16560   dw_loc_list_ref list, *list_tail;
16561   dw_cfi_ref cfi;
16562   dw_cfa_location last_cfa, next_cfa;
16563   const char *start_label, *last_label, *section;
16564   dw_cfa_location remember;
16565
16566   fde = current_fde ();
16567   gcc_assert (fde != NULL);
16568
16569   section = secname_for_decl (current_function_decl);
16570   list_tail = &list;
16571   list = NULL;
16572
16573   memset (&next_cfa, 0, sizeof (next_cfa));
16574   next_cfa.reg = INVALID_REGNUM;
16575   remember = next_cfa;
16576
16577   start_label = fde->dw_fde_begin;
16578
16579   /* ??? Bald assumption that the CIE opcode list does not contain
16580      advance opcodes.  */
16581   for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
16582     lookup_cfa_1 (cfi, &next_cfa, &remember);
16583
16584   last_cfa = next_cfa;
16585   last_label = start_label;
16586
16587   for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
16588     switch (cfi->dw_cfi_opc)
16589       {
16590       case DW_CFA_set_loc:
16591       case DW_CFA_advance_loc1:
16592       case DW_CFA_advance_loc2:
16593       case DW_CFA_advance_loc4:
16594         if (!cfa_equal_p (&last_cfa, &next_cfa))
16595           {
16596             *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
16597                                        start_label, last_label, section);
16598
16599             list_tail = &(*list_tail)->dw_loc_next;
16600             last_cfa = next_cfa;
16601             start_label = last_label;
16602           }
16603         last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
16604         break;
16605
16606       case DW_CFA_advance_loc:
16607         /* The encoding is complex enough that we should never emit this.  */
16608         gcc_unreachable ();
16609
16610       default:
16611         lookup_cfa_1 (cfi, &next_cfa, &remember);
16612         break;
16613       }
16614
16615   if (!cfa_equal_p (&last_cfa, &next_cfa))
16616     {
16617       *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
16618                                  start_label, last_label, section);
16619       list_tail = &(*list_tail)->dw_loc_next;
16620       start_label = last_label;
16621     }
16622
16623   *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
16624                              start_label, fde->dw_fde_end, section);
16625
16626   if (list && list->dw_loc_next)
16627     gen_llsym (list);
16628
16629   return list;
16630 }
16631
16632 /* Compute a displacement from the "steady-state frame pointer" to the
16633    frame base (often the same as the CFA), and store it in
16634    frame_pointer_fb_offset.  OFFSET is added to the displacement
16635    before the latter is negated.  */
16636
16637 static void
16638 compute_frame_pointer_to_fb_displacement (HOST_WIDE_INT offset)
16639 {
16640   rtx reg, elim;
16641
16642 #ifdef FRAME_POINTER_CFA_OFFSET
16643   reg = frame_pointer_rtx;
16644   offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
16645 #else
16646   reg = arg_pointer_rtx;
16647   offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
16648 #endif
16649
16650   elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
16651   if (GET_CODE (elim) == PLUS)
16652     {
16653       offset += INTVAL (XEXP (elim, 1));
16654       elim = XEXP (elim, 0);
16655     }
16656
16657   gcc_assert ((SUPPORTS_STACK_ALIGNMENT
16658                && (elim == hard_frame_pointer_rtx
16659                    || elim == stack_pointer_rtx))
16660               || elim == (frame_pointer_needed
16661                           ? hard_frame_pointer_rtx
16662                           : stack_pointer_rtx));
16663
16664   frame_pointer_fb_offset = -offset;
16665 }
16666
16667 /* Generate a DW_AT_name attribute given some string value to be included as
16668    the value of the attribute.  */
16669
16670 static void
16671 add_name_attribute (dw_die_ref die, const char *name_string)
16672 {
16673   if (name_string != NULL && *name_string != 0)
16674     {
16675       if (demangle_name_func)
16676         name_string = (*demangle_name_func) (name_string);
16677
16678       add_AT_string (die, DW_AT_name, name_string);
16679     }
16680 }
16681
16682 /* Generate a DW_AT_comp_dir attribute for DIE.  */
16683
16684 static void
16685 add_comp_dir_attribute (dw_die_ref die)
16686 {
16687   const char *wd = get_src_pwd ();
16688   char *wd1;
16689
16690   if (wd == NULL)
16691     return;
16692
16693   if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR)
16694     {
16695       int wdlen;
16696
16697       wdlen = strlen (wd);
16698       wd1 = GGC_NEWVEC (char, wdlen + 2);
16699       strcpy (wd1, wd);
16700       wd1 [wdlen] = DIR_SEPARATOR;
16701       wd1 [wdlen + 1] = 0;
16702       wd = wd1;
16703     }
16704
16705     add_AT_string (die, DW_AT_comp_dir, remap_debug_filename (wd));
16706 }
16707
16708 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
16709    default.  */
16710
16711 static int
16712 lower_bound_default (void)
16713 {
16714   switch (get_AT_unsigned (comp_unit_die, DW_AT_language))
16715     {
16716     case DW_LANG_C:
16717     case DW_LANG_C89:
16718     case DW_LANG_C99:
16719     case DW_LANG_C_plus_plus:
16720     case DW_LANG_ObjC:
16721     case DW_LANG_ObjC_plus_plus:
16722     case DW_LANG_Java:
16723       return 0;
16724     case DW_LANG_Fortran77:
16725     case DW_LANG_Fortran90:
16726     case DW_LANG_Fortran95:
16727       return 1;
16728     case DW_LANG_UPC:
16729     case DW_LANG_D:
16730     case DW_LANG_Python:
16731       return dwarf_version >= 4 ? 0 : -1;
16732     case DW_LANG_Ada95:
16733     case DW_LANG_Ada83:
16734     case DW_LANG_Cobol74:
16735     case DW_LANG_Cobol85:
16736     case DW_LANG_Pascal83:
16737     case DW_LANG_Modula2:
16738     case DW_LANG_PLI:
16739       return dwarf_version >= 4 ? 1 : -1;
16740     default:
16741       return -1;
16742     }
16743 }
16744
16745 /* Given a tree node describing an array bound (either lower or upper) output
16746    a representation for that bound.  */
16747
16748 static void
16749 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree bound)
16750 {
16751   switch (TREE_CODE (bound))
16752     {
16753     case ERROR_MARK:
16754       return;
16755
16756     /* All fixed-bounds are represented by INTEGER_CST nodes.  */
16757     case INTEGER_CST:
16758       {
16759         unsigned int prec = simple_type_size_in_bits (TREE_TYPE (bound));
16760         int dflt;
16761
16762         /* Use the default if possible.  */
16763         if (bound_attr == DW_AT_lower_bound
16764             && host_integerp (bound, 0)
16765             && (dflt = lower_bound_default ()) != -1
16766             && tree_low_cst (bound, 0) == dflt)
16767           ;
16768
16769         /* Otherwise represent the bound as an unsigned value with the
16770            precision of its type.  The precision and signedness of the
16771            type will be necessary to re-interpret it unambiguously.  */
16772         else if (prec < HOST_BITS_PER_WIDE_INT)
16773           {
16774             unsigned HOST_WIDE_INT mask
16775               = ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
16776             add_AT_unsigned (subrange_die, bound_attr,
16777                              TREE_INT_CST_LOW (bound) & mask);
16778           }
16779         else if (prec == HOST_BITS_PER_WIDE_INT
16780                  || TREE_INT_CST_HIGH (bound) == 0)
16781           add_AT_unsigned (subrange_die, bound_attr,
16782                            TREE_INT_CST_LOW (bound));
16783         else
16784           add_AT_double (subrange_die, bound_attr, TREE_INT_CST_HIGH (bound),
16785                          TREE_INT_CST_LOW (bound));
16786       }
16787       break;
16788
16789     CASE_CONVERT:
16790     case VIEW_CONVERT_EXPR:
16791       add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
16792       break;
16793
16794     case SAVE_EXPR:
16795       break;
16796
16797     case VAR_DECL:
16798     case PARM_DECL:
16799     case RESULT_DECL:
16800       {
16801         dw_die_ref decl_die = lookup_decl_die (bound);
16802
16803         /* ??? Can this happen, or should the variable have been bound
16804            first?  Probably it can, since I imagine that we try to create
16805            the types of parameters in the order in which they exist in
16806            the list, and won't have created a forward reference to a
16807            later parameter.  */
16808         if (decl_die != NULL)
16809           {
16810             add_AT_die_ref (subrange_die, bound_attr, decl_die);
16811             break;
16812           }
16813       }
16814       /* FALLTHRU */
16815
16816     default:
16817       {
16818         /* Otherwise try to create a stack operation procedure to
16819            evaluate the value of the array bound.  */
16820
16821         dw_die_ref ctx, decl_die;
16822         dw_loc_list_ref list;
16823
16824         list = loc_list_from_tree (bound, 2);
16825         if (list == NULL || single_element_loc_list_p (list))
16826           {
16827             /* If DW_AT_*bound is not a reference nor constant, it is
16828                a DWARF expression rather than location description.
16829                For that loc_list_from_tree (bound, 0) is needed.
16830                If that fails to give a single element list,
16831                fall back to outputting this as a reference anyway.  */
16832             dw_loc_list_ref list2 = loc_list_from_tree (bound, 0);
16833             if (list2 && single_element_loc_list_p (list2))
16834               {
16835                 add_AT_loc (subrange_die, bound_attr, list2->expr);
16836                 break;
16837               }
16838           }
16839         if (list == NULL)
16840           break;
16841
16842         if (current_function_decl == 0)
16843           ctx = comp_unit_die;
16844         else
16845           ctx = lookup_decl_die (current_function_decl);
16846
16847         decl_die = new_die (DW_TAG_variable, ctx, bound);
16848         add_AT_flag (decl_die, DW_AT_artificial, 1);
16849         add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
16850         add_AT_location_description (decl_die, DW_AT_location, list);
16851         add_AT_die_ref (subrange_die, bound_attr, decl_die);
16852         break;
16853       }
16854     }
16855 }
16856
16857 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
16858    possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
16859    Note that the block of subscript information for an array type also
16860    includes information about the element type of the given array type.  */
16861
16862 static void
16863 add_subscript_info (dw_die_ref type_die, tree type, bool collapse_p)
16864 {
16865   unsigned dimension_number;
16866   tree lower, upper;
16867   dw_die_ref subrange_die;
16868
16869   for (dimension_number = 0;
16870        TREE_CODE (type) == ARRAY_TYPE && (dimension_number == 0 || collapse_p);
16871        type = TREE_TYPE (type), dimension_number++)
16872     {
16873       tree domain = TYPE_DOMAIN (type);
16874
16875       if (TYPE_STRING_FLAG (type) && is_fortran () && dimension_number > 0)
16876         break;
16877
16878       /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
16879          and (in GNU C only) variable bounds.  Handle all three forms
16880          here.  */
16881       subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
16882       if (domain)
16883         {
16884           /* We have an array type with specified bounds.  */
16885           lower = TYPE_MIN_VALUE (domain);
16886           upper = TYPE_MAX_VALUE (domain);
16887
16888           /* Define the index type.  */
16889           if (TREE_TYPE (domain))
16890             {
16891               /* ??? This is probably an Ada unnamed subrange type.  Ignore the
16892                  TREE_TYPE field.  We can't emit debug info for this
16893                  because it is an unnamed integral type.  */
16894               if (TREE_CODE (domain) == INTEGER_TYPE
16895                   && TYPE_NAME (domain) == NULL_TREE
16896                   && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
16897                   && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
16898                 ;
16899               else
16900                 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
16901                                     type_die);
16902             }
16903
16904           /* ??? If upper is NULL, the array has unspecified length,
16905              but it does have a lower bound.  This happens with Fortran
16906                dimension arr(N:*)
16907              Since the debugger is definitely going to need to know N
16908              to produce useful results, go ahead and output the lower
16909              bound solo, and hope the debugger can cope.  */
16910
16911           add_bound_info (subrange_die, DW_AT_lower_bound, lower);
16912           if (upper)
16913             add_bound_info (subrange_die, DW_AT_upper_bound, upper);
16914         }
16915
16916       /* Otherwise we have an array type with an unspecified length.  The
16917          DWARF-2 spec does not say how to handle this; let's just leave out the
16918          bounds.  */
16919     }
16920 }
16921
16922 static void
16923 add_byte_size_attribute (dw_die_ref die, tree tree_node)
16924 {
16925   unsigned size;
16926
16927   switch (TREE_CODE (tree_node))
16928     {
16929     case ERROR_MARK:
16930       size = 0;
16931       break;
16932     case ENUMERAL_TYPE:
16933     case RECORD_TYPE:
16934     case UNION_TYPE:
16935     case QUAL_UNION_TYPE:
16936       size = int_size_in_bytes (tree_node);
16937       break;
16938     case FIELD_DECL:
16939       /* For a data member of a struct or union, the DW_AT_byte_size is
16940          generally given as the number of bytes normally allocated for an
16941          object of the *declared* type of the member itself.  This is true
16942          even for bit-fields.  */
16943       size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
16944       break;
16945     default:
16946       gcc_unreachable ();
16947     }
16948
16949   /* Note that `size' might be -1 when we get to this point.  If it is, that
16950      indicates that the byte size of the entity in question is variable.  We
16951      have no good way of expressing this fact in Dwarf at the present time,
16952      so just let the -1 pass on through.  */
16953   add_AT_unsigned (die, DW_AT_byte_size, size);
16954 }
16955
16956 /* For a FIELD_DECL node which represents a bit-field, output an attribute
16957    which specifies the distance in bits from the highest order bit of the
16958    "containing object" for the bit-field to the highest order bit of the
16959    bit-field itself.
16960
16961    For any given bit-field, the "containing object" is a hypothetical object
16962    (of some integral or enum type) within which the given bit-field lives.  The
16963    type of this hypothetical "containing object" is always the same as the
16964    declared type of the individual bit-field itself.  The determination of the
16965    exact location of the "containing object" for a bit-field is rather
16966    complicated.  It's handled by the `field_byte_offset' function (above).
16967
16968    Note that it is the size (in bytes) of the hypothetical "containing object"
16969    which will be given in the DW_AT_byte_size attribute for this bit-field.
16970    (See `byte_size_attribute' above).  */
16971
16972 static inline void
16973 add_bit_offset_attribute (dw_die_ref die, tree decl)
16974 {
16975   HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
16976   tree type = DECL_BIT_FIELD_TYPE (decl);
16977   HOST_WIDE_INT bitpos_int;
16978   HOST_WIDE_INT highest_order_object_bit_offset;
16979   HOST_WIDE_INT highest_order_field_bit_offset;
16980   HOST_WIDE_INT unsigned bit_offset;
16981
16982   /* Must be a field and a bit field.  */
16983   gcc_assert (type && TREE_CODE (decl) == FIELD_DECL);
16984
16985   /* We can't yet handle bit-fields whose offsets are variable, so if we
16986      encounter such things, just return without generating any attribute
16987      whatsoever.  Likewise for variable or too large size.  */
16988   if (! host_integerp (bit_position (decl), 0)
16989       || ! host_integerp (DECL_SIZE (decl), 1))
16990     return;
16991
16992   bitpos_int = int_bit_position (decl);
16993
16994   /* Note that the bit offset is always the distance (in bits) from the
16995      highest-order bit of the "containing object" to the highest-order bit of
16996      the bit-field itself.  Since the "high-order end" of any object or field
16997      is different on big-endian and little-endian machines, the computation
16998      below must take account of these differences.  */
16999   highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
17000   highest_order_field_bit_offset = bitpos_int;
17001
17002   if (! BYTES_BIG_ENDIAN)
17003     {
17004       highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
17005       highest_order_object_bit_offset += simple_type_size_in_bits (type);
17006     }
17007
17008   bit_offset
17009     = (! BYTES_BIG_ENDIAN
17010        ? highest_order_object_bit_offset - highest_order_field_bit_offset
17011        : highest_order_field_bit_offset - highest_order_object_bit_offset);
17012
17013   add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
17014 }
17015
17016 /* For a FIELD_DECL node which represents a bit field, output an attribute
17017    which specifies the length in bits of the given field.  */
17018
17019 static inline void
17020 add_bit_size_attribute (dw_die_ref die, tree decl)
17021 {
17022   /* Must be a field and a bit field.  */
17023   gcc_assert (TREE_CODE (decl) == FIELD_DECL
17024               && DECL_BIT_FIELD_TYPE (decl));
17025
17026   if (host_integerp (DECL_SIZE (decl), 1))
17027     add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
17028 }
17029
17030 /* If the compiled language is ANSI C, then add a 'prototyped'
17031    attribute, if arg types are given for the parameters of a function.  */
17032
17033 static inline void
17034 add_prototyped_attribute (dw_die_ref die, tree func_type)
17035 {
17036   if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
17037       && TYPE_ARG_TYPES (func_type) != NULL)
17038     add_AT_flag (die, DW_AT_prototyped, 1);
17039 }
17040
17041 /* Add an 'abstract_origin' attribute below a given DIE.  The DIE is found
17042    by looking in either the type declaration or object declaration
17043    equate table.  */
17044
17045 static inline dw_die_ref
17046 add_abstract_origin_attribute (dw_die_ref die, tree origin)
17047 {
17048   dw_die_ref origin_die = NULL;
17049
17050   if (TREE_CODE (origin) != FUNCTION_DECL)
17051     {
17052       /* We may have gotten separated from the block for the inlined
17053          function, if we're in an exception handler or some such; make
17054          sure that the abstract function has been written out.
17055
17056          Doing this for nested functions is wrong, however; functions are
17057          distinct units, and our context might not even be inline.  */
17058       tree fn = origin;
17059
17060       if (TYPE_P (fn))
17061         fn = TYPE_STUB_DECL (fn);
17062
17063       fn = decl_function_context (fn);
17064       if (fn)
17065         dwarf2out_abstract_function (fn);
17066     }
17067
17068   if (DECL_P (origin))
17069     origin_die = lookup_decl_die (origin);
17070   else if (TYPE_P (origin))
17071     origin_die = lookup_type_die (origin);
17072
17073   /* XXX: Functions that are never lowered don't always have correct block
17074      trees (in the case of java, they simply have no block tree, in some other
17075      languages).  For these functions, there is nothing we can really do to
17076      output correct debug info for inlined functions in all cases.  Rather
17077      than die, we'll just produce deficient debug info now, in that we will
17078      have variables without a proper abstract origin.  In the future, when all
17079      functions are lowered, we should re-add a gcc_assert (origin_die)
17080      here.  */
17081
17082   if (origin_die)
17083     add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
17084   return origin_die;
17085 }
17086
17087 /* We do not currently support the pure_virtual attribute.  */
17088
17089 static inline void
17090 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
17091 {
17092   if (DECL_VINDEX (func_decl))
17093     {
17094       add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
17095
17096       if (host_integerp (DECL_VINDEX (func_decl), 0))
17097         add_AT_loc (die, DW_AT_vtable_elem_location,
17098                     new_loc_descr (DW_OP_constu,
17099                                    tree_low_cst (DECL_VINDEX (func_decl), 0),
17100                                    0));
17101
17102       /* GNU extension: Record what type this method came from originally.  */
17103       if (debug_info_level > DINFO_LEVEL_TERSE
17104           && DECL_CONTEXT (func_decl))
17105         add_AT_die_ref (die, DW_AT_containing_type,
17106                         lookup_type_die (DECL_CONTEXT (func_decl)));
17107     }
17108 }
17109 \f
17110 /* Add source coordinate attributes for the given decl.  */
17111
17112 static void
17113 add_src_coords_attributes (dw_die_ref die, tree decl)
17114 {
17115   expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
17116
17117   add_AT_file (die, DW_AT_decl_file, lookup_filename (s.file));
17118   add_AT_unsigned (die, DW_AT_decl_line, s.line);
17119 }
17120
17121 /* Add a DW_AT_name attribute and source coordinate attribute for the
17122    given decl, but only if it actually has a name.  */
17123
17124 static void
17125 add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
17126 {
17127   tree decl_name;
17128
17129   decl_name = DECL_NAME (decl);
17130   if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
17131     {
17132       const char *name = dwarf2_name (decl, 0);
17133       if (name)
17134         add_name_attribute (die, name);
17135       if (! DECL_ARTIFICIAL (decl))
17136         add_src_coords_attributes (die, decl);
17137
17138       if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
17139           && TREE_PUBLIC (decl)
17140           && !DECL_ABSTRACT (decl)
17141           && !(TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl)))
17142         {
17143           /* Defer until we have an assembler name set.  */
17144           if (!DECL_ASSEMBLER_NAME_SET_P (decl))
17145             {
17146               limbo_die_node *asm_name;
17147
17148               asm_name = GGC_CNEW (limbo_die_node);
17149               asm_name->die = die;
17150               asm_name->created_for = decl;
17151               asm_name->next = deferred_asm_name;
17152               deferred_asm_name = asm_name;
17153             }
17154           else if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
17155             add_AT_string (die, AT_linkage_name,
17156                            IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
17157         }
17158     }
17159
17160 #ifdef VMS_DEBUGGING_INFO
17161   /* Get the function's name, as described by its RTL.  This may be different
17162      from the DECL_NAME name used in the source file.  */
17163   if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
17164     {
17165       add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
17166                    XEXP (DECL_RTL (decl), 0));
17167       VEC_safe_push (rtx, gc, used_rtx_array, XEXP (DECL_RTL (decl), 0));
17168     }
17169 #endif
17170 }
17171
17172 /* Push a new declaration scope.  */
17173
17174 static void
17175 push_decl_scope (tree scope)
17176 {
17177   VEC_safe_push (tree, gc, decl_scope_table, scope);
17178 }
17179
17180 /* Pop a declaration scope.  */
17181
17182 static inline void
17183 pop_decl_scope (void)
17184 {
17185   VEC_pop (tree, decl_scope_table);
17186 }
17187
17188 /* Return the DIE for the scope that immediately contains this type.
17189    Non-named types get global scope.  Named types nested in other
17190    types get their containing scope if it's open, or global scope
17191    otherwise.  All other types (i.e. function-local named types) get
17192    the current active scope.  */
17193
17194 static dw_die_ref
17195 scope_die_for (tree t, dw_die_ref context_die)
17196 {
17197   dw_die_ref scope_die = NULL;
17198   tree containing_scope;
17199   int i;
17200
17201   /* Non-types always go in the current scope.  */
17202   gcc_assert (TYPE_P (t));
17203
17204   containing_scope = TYPE_CONTEXT (t);
17205
17206   /* Use the containing namespace if it was passed in (for a declaration).  */
17207   if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
17208     {
17209       if (context_die == lookup_decl_die (containing_scope))
17210         /* OK */;
17211       else
17212         containing_scope = NULL_TREE;
17213     }
17214
17215   /* Ignore function type "scopes" from the C frontend.  They mean that
17216      a tagged type is local to a parmlist of a function declarator, but
17217      that isn't useful to DWARF.  */
17218   if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
17219     containing_scope = NULL_TREE;
17220
17221   if (containing_scope == NULL_TREE)
17222     scope_die = comp_unit_die;
17223   else if (TYPE_P (containing_scope))
17224     {
17225       /* For types, we can just look up the appropriate DIE.  But
17226          first we check to see if we're in the middle of emitting it
17227          so we know where the new DIE should go.  */
17228       for (i = VEC_length (tree, decl_scope_table) - 1; i >= 0; --i)
17229         if (VEC_index (tree, decl_scope_table, i) == containing_scope)
17230           break;
17231
17232       if (i < 0)
17233         {
17234           gcc_assert (debug_info_level <= DINFO_LEVEL_TERSE
17235                       || TREE_ASM_WRITTEN (containing_scope));
17236
17237           /* If none of the current dies are suitable, we get file scope.  */
17238           scope_die = comp_unit_die;
17239         }
17240       else
17241         scope_die = lookup_type_die (containing_scope);
17242     }
17243   else
17244     scope_die = context_die;
17245
17246   return scope_die;
17247 }
17248
17249 /* Returns nonzero if CONTEXT_DIE is internal to a function.  */
17250
17251 static inline int
17252 local_scope_p (dw_die_ref context_die)
17253 {
17254   for (; context_die; context_die = context_die->die_parent)
17255     if (context_die->die_tag == DW_TAG_inlined_subroutine
17256         || context_die->die_tag == DW_TAG_subprogram)
17257       return 1;
17258
17259   return 0;
17260 }
17261
17262 /* Returns nonzero if CONTEXT_DIE is a class.  */
17263
17264 static inline int
17265 class_scope_p (dw_die_ref context_die)
17266 {
17267   return (context_die
17268           && (context_die->die_tag == DW_TAG_structure_type
17269               || context_die->die_tag == DW_TAG_class_type
17270               || context_die->die_tag == DW_TAG_interface_type
17271               || context_die->die_tag == DW_TAG_union_type));
17272 }
17273
17274 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
17275    whether or not to treat a DIE in this context as a declaration.  */
17276
17277 static inline int
17278 class_or_namespace_scope_p (dw_die_ref context_die)
17279 {
17280   return (class_scope_p (context_die)
17281           || (context_die && context_die->die_tag == DW_TAG_namespace));
17282 }
17283
17284 /* Many forms of DIEs require a "type description" attribute.  This
17285    routine locates the proper "type descriptor" die for the type given
17286    by 'type', and adds a DW_AT_type attribute below the given die.  */
17287
17288 static void
17289 add_type_attribute (dw_die_ref object_die, tree type, int decl_const,
17290                     int decl_volatile, dw_die_ref context_die)
17291 {
17292   enum tree_code code  = TREE_CODE (type);
17293   dw_die_ref type_die  = NULL;
17294
17295   /* ??? If this type is an unnamed subrange type of an integral, floating-point
17296      or fixed-point type, use the inner type.  This is because we have no
17297      support for unnamed types in base_type_die.  This can happen if this is
17298      an Ada subrange type.  Correct solution is emit a subrange type die.  */
17299   if ((code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE)
17300       && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
17301     type = TREE_TYPE (type), code = TREE_CODE (type);
17302
17303   if (code == ERROR_MARK
17304       /* Handle a special case.  For functions whose return type is void, we
17305          generate *no* type attribute.  (Note that no object may have type
17306          `void', so this only applies to function return types).  */
17307       || code == VOID_TYPE)
17308     return;
17309
17310   type_die = modified_type_die (type,
17311                                 decl_const || TYPE_READONLY (type),
17312                                 decl_volatile || TYPE_VOLATILE (type),
17313                                 context_die);
17314
17315   if (type_die != NULL)
17316     add_AT_die_ref (object_die, DW_AT_type, type_die);
17317 }
17318
17319 /* Given an object die, add the calling convention attribute for the
17320    function call type.  */
17321 static void
17322 add_calling_convention_attribute (dw_die_ref subr_die, tree decl)
17323 {
17324   enum dwarf_calling_convention value = DW_CC_normal;
17325
17326   value = ((enum dwarf_calling_convention)
17327            targetm.dwarf_calling_convention (TREE_TYPE (decl)));
17328
17329   /* DWARF doesn't provide a way to identify a program's source-level
17330      entry point.  DW_AT_calling_convention attributes are only meant
17331      to describe functions' calling conventions.  However, lacking a
17332      better way to signal the Fortran main program, we use this for the
17333      time being, following existing custom.  */
17334   if (is_fortran ()
17335       && !strcmp (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)), "MAIN__"))
17336     value = DW_CC_program;
17337
17338   /* Only add the attribute if the backend requests it, and
17339      is not DW_CC_normal.  */
17340   if (value && (value != DW_CC_normal))
17341     add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
17342 }
17343
17344 /* Given a tree pointer to a struct, class, union, or enum type node, return
17345    a pointer to the (string) tag name for the given type, or zero if the type
17346    was declared without a tag.  */
17347
17348 static const char *
17349 type_tag (const_tree type)
17350 {
17351   const char *name = 0;
17352
17353   if (TYPE_NAME (type) != 0)
17354     {
17355       tree t = 0;
17356
17357       /* Find the IDENTIFIER_NODE for the type name.  */
17358       if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
17359         t = TYPE_NAME (type);
17360
17361       /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
17362          a TYPE_DECL node, regardless of whether or not a `typedef' was
17363          involved.  */
17364       else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
17365                && ! DECL_IGNORED_P (TYPE_NAME (type)))
17366         {
17367           /* We want to be extra verbose.  Don't call dwarf_name if
17368              DECL_NAME isn't set.  The default hook for decl_printable_name
17369              doesn't like that, and in this context it's correct to return
17370              0, instead of "<anonymous>" or the like.  */
17371           if (DECL_NAME (TYPE_NAME (type)))
17372             name = lang_hooks.dwarf_name (TYPE_NAME (type), 2);
17373         }
17374
17375       /* Now get the name as a string, or invent one.  */
17376       if (!name && t != 0)
17377         name = IDENTIFIER_POINTER (t);
17378     }
17379
17380   return (name == 0 || *name == '\0') ? 0 : name;
17381 }
17382
17383 /* Return the type associated with a data member, make a special check
17384    for bit field types.  */
17385
17386 static inline tree
17387 member_declared_type (const_tree member)
17388 {
17389   return (DECL_BIT_FIELD_TYPE (member)
17390           ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
17391 }
17392
17393 /* Get the decl's label, as described by its RTL. This may be different
17394    from the DECL_NAME name used in the source file.  */
17395
17396 #if 0
17397 static const char *
17398 decl_start_label (tree decl)
17399 {
17400   rtx x;
17401   const char *fnname;
17402
17403   x = DECL_RTL (decl);
17404   gcc_assert (MEM_P (x));
17405
17406   x = XEXP (x, 0);
17407   gcc_assert (GET_CODE (x) == SYMBOL_REF);
17408
17409   fnname = XSTR (x, 0);
17410   return fnname;
17411 }
17412 #endif
17413 \f
17414 /* These routines generate the internal representation of the DIE's for
17415    the compilation unit.  Debugging information is collected by walking
17416    the declaration trees passed in from dwarf2out_decl().  */
17417
17418 static void
17419 gen_array_type_die (tree type, dw_die_ref context_die)
17420 {
17421   dw_die_ref scope_die = scope_die_for (type, context_die);
17422   dw_die_ref array_die;
17423
17424   /* GNU compilers represent multidimensional array types as sequences of one
17425      dimensional array types whose element types are themselves array types.
17426      We sometimes squish that down to a single array_type DIE with multiple
17427      subscripts in the Dwarf debugging info.  The draft Dwarf specification
17428      say that we are allowed to do this kind of compression in C, because
17429      there is no difference between an array of arrays and a multidimensional
17430      array.  We don't do this for Ada to remain as close as possible to the
17431      actual representation, which is especially important against the language
17432      flexibilty wrt arrays of variable size.  */
17433
17434   bool collapse_nested_arrays = !is_ada ();
17435   tree element_type;
17436
17437   /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
17438      DW_TAG_string_type doesn't have DW_AT_type attribute).  */
17439   if (TYPE_STRING_FLAG (type)
17440       && TREE_CODE (type) == ARRAY_TYPE
17441       && is_fortran ()
17442       && TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (char_type_node))
17443     {
17444       HOST_WIDE_INT size;
17445
17446       array_die = new_die (DW_TAG_string_type, scope_die, type);
17447       add_name_attribute (array_die, type_tag (type));
17448       equate_type_number_to_die (type, array_die);
17449       size = int_size_in_bytes (type);
17450       if (size >= 0)
17451         add_AT_unsigned (array_die, DW_AT_byte_size, size);
17452       else if (TYPE_DOMAIN (type) != NULL_TREE
17453                && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != NULL_TREE
17454                && DECL_P (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
17455         {
17456           tree szdecl = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
17457           dw_loc_list_ref loc = loc_list_from_tree (szdecl, 2);
17458
17459           size = int_size_in_bytes (TREE_TYPE (szdecl));
17460           if (loc && size > 0)
17461             {
17462               add_AT_location_description (array_die, DW_AT_string_length, loc);
17463               if (size != DWARF2_ADDR_SIZE)
17464                 add_AT_unsigned (array_die, DW_AT_byte_size, size);
17465             }
17466         }
17467       return;
17468     }
17469
17470   /* ??? The SGI dwarf reader fails for array of array of enum types
17471      (e.g. const enum machine_mode insn_operand_mode[2][10]) unless the inner
17472      array type comes before the outer array type.  We thus call gen_type_die
17473      before we new_die and must prevent nested array types collapsing for this
17474      target.  */
17475
17476 #ifdef MIPS_DEBUGGING_INFO
17477   gen_type_die (TREE_TYPE (type), context_die);
17478   collapse_nested_arrays = false;
17479 #endif
17480
17481   array_die = new_die (DW_TAG_array_type, scope_die, type);
17482   add_name_attribute (array_die, type_tag (type));
17483   equate_type_number_to_die (type, array_die);
17484
17485   if (TREE_CODE (type) == VECTOR_TYPE)
17486     {
17487       /* The frontend feeds us a representation for the vector as a struct
17488          containing an array.  Pull out the array type.  */
17489       type = TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type)));
17490       add_AT_flag (array_die, DW_AT_GNU_vector, 1);
17491     }
17492
17493   /* For Fortran multidimensional arrays use DW_ORD_col_major ordering.  */
17494   if (is_fortran ()
17495       && TREE_CODE (type) == ARRAY_TYPE
17496       && TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE
17497       && !TYPE_STRING_FLAG (TREE_TYPE (type)))
17498     add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
17499
17500 #if 0
17501   /* We default the array ordering.  SDB will probably do
17502      the right things even if DW_AT_ordering is not present.  It's not even
17503      an issue until we start to get into multidimensional arrays anyway.  If
17504      SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
17505      then we'll have to put the DW_AT_ordering attribute back in.  (But if
17506      and when we find out that we need to put these in, we will only do so
17507      for multidimensional arrays.  */
17508   add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
17509 #endif
17510
17511 #ifdef MIPS_DEBUGGING_INFO
17512   /* The SGI compilers handle arrays of unknown bound by setting
17513      AT_declaration and not emitting any subrange DIEs.  */
17514   if (! TYPE_DOMAIN (type))
17515     add_AT_flag (array_die, DW_AT_declaration, 1);
17516   else
17517 #endif
17518     add_subscript_info (array_die, type, collapse_nested_arrays);
17519
17520   /* Add representation of the type of the elements of this array type and
17521      emit the corresponding DIE if we haven't done it already.  */
17522   element_type = TREE_TYPE (type);
17523   if (collapse_nested_arrays)
17524     while (TREE_CODE (element_type) == ARRAY_TYPE)
17525       {
17526         if (TYPE_STRING_FLAG (element_type) && is_fortran ())
17527           break;
17528         element_type = TREE_TYPE (element_type);
17529       }
17530
17531 #ifndef MIPS_DEBUGGING_INFO
17532   gen_type_die (element_type, context_die);
17533 #endif
17534
17535   add_type_attribute (array_die, element_type, 0, 0, context_die);
17536
17537   if (get_AT (array_die, DW_AT_name))
17538     add_pubtype (type, array_die);
17539 }
17540
17541 static dw_loc_descr_ref
17542 descr_info_loc (tree val, tree base_decl)
17543 {
17544   HOST_WIDE_INT size;
17545   dw_loc_descr_ref loc, loc2;
17546   enum dwarf_location_atom op;
17547
17548   if (val == base_decl)
17549     return new_loc_descr (DW_OP_push_object_address, 0, 0);
17550
17551   switch (TREE_CODE (val))
17552     {
17553     CASE_CONVERT:
17554       return descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17555     case VAR_DECL:
17556       return loc_descriptor_from_tree (val, 0);
17557     case INTEGER_CST:
17558       if (host_integerp (val, 0))
17559         return int_loc_descriptor (tree_low_cst (val, 0));
17560       break;
17561     case INDIRECT_REF:
17562       size = int_size_in_bytes (TREE_TYPE (val));
17563       if (size < 0)
17564         break;
17565       loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17566       if (!loc)
17567         break;
17568       if (size == DWARF2_ADDR_SIZE)
17569         add_loc_descr (&loc, new_loc_descr (DW_OP_deref, 0, 0));
17570       else
17571         add_loc_descr (&loc, new_loc_descr (DW_OP_deref_size, size, 0));
17572       return loc;
17573     case POINTER_PLUS_EXPR:
17574     case PLUS_EXPR:
17575       if (host_integerp (TREE_OPERAND (val, 1), 1)
17576           && (unsigned HOST_WIDE_INT) tree_low_cst (TREE_OPERAND (val, 1), 1)
17577              < 16384)
17578         {
17579           loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17580           if (!loc)
17581             break;
17582           loc_descr_plus_const (&loc, tree_low_cst (TREE_OPERAND (val, 1), 0));
17583         }
17584       else
17585         {
17586           op = DW_OP_plus;
17587         do_binop:
17588           loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17589           if (!loc)
17590             break;
17591           loc2 = descr_info_loc (TREE_OPERAND (val, 1), base_decl);
17592           if (!loc2)
17593             break;
17594           add_loc_descr (&loc, loc2);
17595           add_loc_descr (&loc2, new_loc_descr (op, 0, 0));
17596         }
17597       return loc;
17598     case MINUS_EXPR:
17599       op = DW_OP_minus;
17600       goto do_binop;
17601     case MULT_EXPR:
17602       op = DW_OP_mul;
17603       goto do_binop;
17604     case EQ_EXPR:
17605       op = DW_OP_eq;
17606       goto do_binop;
17607     case NE_EXPR:
17608       op = DW_OP_ne;
17609       goto do_binop;
17610     default:
17611       break;
17612     }
17613   return NULL;
17614 }
17615
17616 static void
17617 add_descr_info_field (dw_die_ref die, enum dwarf_attribute attr,
17618                       tree val, tree base_decl)
17619 {
17620   dw_loc_descr_ref loc;
17621
17622   if (host_integerp (val, 0))
17623     {
17624       add_AT_unsigned (die, attr, tree_low_cst (val, 0));
17625       return;
17626     }
17627
17628   loc = descr_info_loc (val, base_decl);
17629   if (!loc)
17630     return;
17631
17632   add_AT_loc (die, attr, loc);
17633 }
17634
17635 /* This routine generates DIE for array with hidden descriptor, details
17636    are filled into *info by a langhook.  */
17637
17638 static void
17639 gen_descr_array_type_die (tree type, struct array_descr_info *info,
17640                           dw_die_ref context_die)
17641 {
17642   dw_die_ref scope_die = scope_die_for (type, context_die);
17643   dw_die_ref array_die;
17644   int dim;
17645
17646   array_die = new_die (DW_TAG_array_type, scope_die, type);
17647   add_name_attribute (array_die, type_tag (type));
17648   equate_type_number_to_die (type, array_die);
17649
17650   /* For Fortran multidimensional arrays use DW_ORD_col_major ordering.  */
17651   if (is_fortran ()
17652       && info->ndimensions >= 2)
17653     add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
17654
17655   if (info->data_location)
17656     add_descr_info_field (array_die, DW_AT_data_location, info->data_location,
17657                           info->base_decl);
17658   if (info->associated)
17659     add_descr_info_field (array_die, DW_AT_associated, info->associated,
17660                           info->base_decl);
17661   if (info->allocated)
17662     add_descr_info_field (array_die, DW_AT_allocated, info->allocated,
17663                           info->base_decl);
17664
17665   for (dim = 0; dim < info->ndimensions; dim++)
17666     {
17667       dw_die_ref subrange_die
17668         = new_die (DW_TAG_subrange_type, array_die, NULL);
17669
17670       if (info->dimen[dim].lower_bound)
17671         {
17672           /* If it is the default value, omit it.  */
17673           int dflt;
17674
17675           if (host_integerp (info->dimen[dim].lower_bound, 0)
17676               && (dflt = lower_bound_default ()) != -1
17677               && tree_low_cst (info->dimen[dim].lower_bound, 0) == dflt)
17678             ;
17679           else
17680             add_descr_info_field (subrange_die, DW_AT_lower_bound,
17681                                   info->dimen[dim].lower_bound,
17682                                   info->base_decl);
17683         }
17684       if (info->dimen[dim].upper_bound)
17685         add_descr_info_field (subrange_die, DW_AT_upper_bound,
17686                               info->dimen[dim].upper_bound,
17687                               info->base_decl);
17688       if (info->dimen[dim].stride)
17689         add_descr_info_field (subrange_die, DW_AT_byte_stride,
17690                               info->dimen[dim].stride,
17691                               info->base_decl);
17692     }
17693
17694   gen_type_die (info->element_type, context_die);
17695   add_type_attribute (array_die, info->element_type, 0, 0, context_die);
17696
17697   if (get_AT (array_die, DW_AT_name))
17698     add_pubtype (type, array_die);
17699 }
17700
17701 #if 0
17702 static void
17703 gen_entry_point_die (tree decl, dw_die_ref context_die)
17704 {
17705   tree origin = decl_ultimate_origin (decl);
17706   dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
17707
17708   if (origin != NULL)
17709     add_abstract_origin_attribute (decl_die, origin);
17710   else
17711     {
17712       add_name_and_src_coords_attributes (decl_die, decl);
17713       add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
17714                           0, 0, context_die);
17715     }
17716
17717   if (DECL_ABSTRACT (decl))
17718     equate_decl_number_to_die (decl, decl_die);
17719   else
17720     add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
17721 }
17722 #endif
17723
17724 /* Walk through the list of incomplete types again, trying once more to
17725    emit full debugging info for them.  */
17726
17727 static void
17728 retry_incomplete_types (void)
17729 {
17730   int i;
17731
17732   for (i = VEC_length (tree, incomplete_types) - 1; i >= 0; i--)
17733     if (should_emit_struct_debug (VEC_index (tree, incomplete_types, i),
17734                                   DINFO_USAGE_DIR_USE))
17735       gen_type_die (VEC_index (tree, incomplete_types, i), comp_unit_die);
17736 }
17737
17738 /* Determine what tag to use for a record type.  */
17739
17740 static enum dwarf_tag
17741 record_type_tag (tree type)
17742 {
17743   if (! lang_hooks.types.classify_record)
17744     return DW_TAG_structure_type;
17745
17746   switch (lang_hooks.types.classify_record (type))
17747     {
17748     case RECORD_IS_STRUCT:
17749       return DW_TAG_structure_type;
17750
17751     case RECORD_IS_CLASS:
17752       return DW_TAG_class_type;
17753
17754     case RECORD_IS_INTERFACE:
17755       if (dwarf_version >= 3 || !dwarf_strict)
17756         return DW_TAG_interface_type;
17757       return DW_TAG_structure_type;
17758
17759     default:
17760       gcc_unreachable ();
17761     }
17762 }
17763
17764 /* Generate a DIE to represent an enumeration type.  Note that these DIEs
17765    include all of the information about the enumeration values also. Each
17766    enumerated type name/value is listed as a child of the enumerated type
17767    DIE.  */
17768
17769 static dw_die_ref
17770 gen_enumeration_type_die (tree type, dw_die_ref context_die)
17771 {
17772   dw_die_ref type_die = lookup_type_die (type);
17773
17774   if (type_die == NULL)
17775     {
17776       type_die = new_die (DW_TAG_enumeration_type,
17777                           scope_die_for (type, context_die), type);
17778       equate_type_number_to_die (type, type_die);
17779       add_name_attribute (type_die, type_tag (type));
17780       if ((dwarf_version >= 4 || !dwarf_strict)
17781           && ENUM_IS_SCOPED (type))
17782         add_AT_flag (type_die, DW_AT_enum_class, 1);
17783     }
17784   else if (! TYPE_SIZE (type))
17785     return type_die;
17786   else
17787     remove_AT (type_die, DW_AT_declaration);
17788
17789   /* Handle a GNU C/C++ extension, i.e. incomplete enum types.  If the
17790      given enum type is incomplete, do not generate the DW_AT_byte_size
17791      attribute or the DW_AT_element_list attribute.  */
17792   if (TYPE_SIZE (type))
17793     {
17794       tree link;
17795
17796       TREE_ASM_WRITTEN (type) = 1;
17797       add_byte_size_attribute (type_die, type);
17798       if (TYPE_STUB_DECL (type) != NULL_TREE)
17799         add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
17800
17801       /* If the first reference to this type was as the return type of an
17802          inline function, then it may not have a parent.  Fix this now.  */
17803       if (type_die->die_parent == NULL)
17804         add_child_die (scope_die_for (type, context_die), type_die);
17805
17806       for (link = TYPE_VALUES (type);
17807            link != NULL; link = TREE_CHAIN (link))
17808         {
17809           dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
17810           tree value = TREE_VALUE (link);
17811
17812           add_name_attribute (enum_die,
17813                               IDENTIFIER_POINTER (TREE_PURPOSE (link)));
17814
17815           if (TREE_CODE (value) == CONST_DECL)
17816             value = DECL_INITIAL (value);
17817
17818           if (host_integerp (value, TYPE_UNSIGNED (TREE_TYPE (value))))
17819             /* DWARF2 does not provide a way of indicating whether or
17820                not enumeration constants are signed or unsigned.  GDB
17821                always assumes the values are signed, so we output all
17822                values as if they were signed.  That means that
17823                enumeration constants with very large unsigned values
17824                will appear to have negative values in the debugger.  */
17825             add_AT_int (enum_die, DW_AT_const_value,
17826                         tree_low_cst (value, tree_int_cst_sgn (value) > 0));
17827         }
17828     }
17829   else
17830     add_AT_flag (type_die, DW_AT_declaration, 1);
17831
17832   if (get_AT (type_die, DW_AT_name))
17833     add_pubtype (type, type_die);
17834
17835   return type_die;
17836 }
17837
17838 /* Generate a DIE to represent either a real live formal parameter decl or to
17839    represent just the type of some formal parameter position in some function
17840    type.
17841
17842    Note that this routine is a bit unusual because its argument may be a
17843    ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
17844    represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
17845    node.  If it's the former then this function is being called to output a
17846    DIE to represent a formal parameter object (or some inlining thereof).  If
17847    it's the latter, then this function is only being called to output a
17848    DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
17849    argument type of some subprogram type.
17850    If EMIT_NAME_P is true, name and source coordinate attributes
17851    are emitted.  */
17852
17853 static dw_die_ref
17854 gen_formal_parameter_die (tree node, tree origin, bool emit_name_p,
17855                           dw_die_ref context_die)
17856 {
17857   tree node_or_origin = node ? node : origin;
17858   tree ultimate_origin;
17859   dw_die_ref parm_die
17860     = new_die (DW_TAG_formal_parameter, context_die, node);
17861
17862   switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin)))
17863     {
17864     case tcc_declaration:
17865       ultimate_origin = decl_ultimate_origin (node_or_origin);
17866       if (node || ultimate_origin)
17867         origin = ultimate_origin;
17868       if (origin != NULL)
17869         add_abstract_origin_attribute (parm_die, origin);
17870       else
17871         {
17872           tree type = TREE_TYPE (node);
17873           if (emit_name_p)
17874             add_name_and_src_coords_attributes (parm_die, node);
17875           if (decl_by_reference_p (node))
17876             add_type_attribute (parm_die, TREE_TYPE (type), 0, 0,
17877                                 context_die);
17878           else
17879             add_type_attribute (parm_die, type,
17880                                 TREE_READONLY (node),
17881                                 TREE_THIS_VOLATILE (node),
17882                                 context_die);
17883           if (DECL_ARTIFICIAL (node))
17884             add_AT_flag (parm_die, DW_AT_artificial, 1);
17885         }
17886
17887       if (node && node != origin)
17888         equate_decl_number_to_die (node, parm_die);
17889       if (! DECL_ABSTRACT (node_or_origin))
17890         add_location_or_const_value_attribute (parm_die, node_or_origin,
17891                                                DW_AT_location);
17892
17893       break;
17894
17895     case tcc_type:
17896       /* We were called with some kind of a ..._TYPE node.  */
17897       add_type_attribute (parm_die, node_or_origin, 0, 0, context_die);
17898       break;
17899
17900     default:
17901       gcc_unreachable ();
17902     }
17903
17904   return parm_die;
17905 }
17906
17907 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
17908    children DW_TAG_formal_parameter DIEs representing the arguments of the
17909    parameter pack.
17910
17911    PARM_PACK must be a function parameter pack.
17912    PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
17913    must point to the subsequent arguments of the function PACK_ARG belongs to.
17914    SUBR_DIE is the DIE of the function PACK_ARG belongs to.
17915    If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
17916    following the last one for which a DIE was generated.  */
17917
17918 static dw_die_ref
17919 gen_formal_parameter_pack_die  (tree parm_pack,
17920                                 tree pack_arg,
17921                                 dw_die_ref subr_die,
17922                                 tree *next_arg)
17923 {
17924   tree arg;
17925   dw_die_ref parm_pack_die;
17926
17927   gcc_assert (parm_pack
17928               && lang_hooks.function_parameter_pack_p (parm_pack)
17929               && subr_die);
17930
17931   parm_pack_die = new_die (DW_TAG_GNU_formal_parameter_pack, subr_die, parm_pack);
17932   add_src_coords_attributes (parm_pack_die, parm_pack);
17933
17934   for (arg = pack_arg; arg; arg = TREE_CHAIN (arg))
17935     {
17936       if (! lang_hooks.decls.function_parm_expanded_from_pack_p (arg,
17937                                                                  parm_pack))
17938         break;
17939       gen_formal_parameter_die (arg, NULL,
17940                                 false /* Don't emit name attribute.  */,
17941                                 parm_pack_die);
17942     }
17943   if (next_arg)
17944     *next_arg = arg;
17945   return parm_pack_die;
17946 }
17947
17948 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
17949    at the end of an (ANSI prototyped) formal parameters list.  */
17950
17951 static void
17952 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
17953 {
17954   new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
17955 }
17956
17957 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
17958    DW_TAG_unspecified_parameters DIE) to represent the types of the formal
17959    parameters as specified in some function type specification (except for
17960    those which appear as part of a function *definition*).  */
17961
17962 static void
17963 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
17964 {
17965   tree link;
17966   tree formal_type = NULL;
17967   tree first_parm_type;
17968   tree arg;
17969
17970   if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
17971     {
17972       arg = DECL_ARGUMENTS (function_or_method_type);
17973       function_or_method_type = TREE_TYPE (function_or_method_type);
17974     }
17975   else
17976     arg = NULL_TREE;
17977
17978   first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
17979
17980   /* Make our first pass over the list of formal parameter types and output a
17981      DW_TAG_formal_parameter DIE for each one.  */
17982   for (link = first_parm_type; link; )
17983     {
17984       dw_die_ref parm_die;
17985
17986       formal_type = TREE_VALUE (link);
17987       if (formal_type == void_type_node)
17988         break;
17989
17990       /* Output a (nameless) DIE to represent the formal parameter itself.  */
17991       parm_die = gen_formal_parameter_die (formal_type, NULL,
17992                                            true /* Emit name attribute.  */,
17993                                            context_die);
17994       if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
17995            && link == first_parm_type)
17996           || (arg && DECL_ARTIFICIAL (arg)))
17997         add_AT_flag (parm_die, DW_AT_artificial, 1);
17998
17999       link = TREE_CHAIN (link);
18000       if (arg)
18001         arg = TREE_CHAIN (arg);
18002     }
18003
18004   /* If this function type has an ellipsis, add a
18005      DW_TAG_unspecified_parameters DIE to the end of the parameter list.  */
18006   if (formal_type != void_type_node)
18007     gen_unspecified_parameters_die (function_or_method_type, context_die);
18008
18009   /* Make our second (and final) pass over the list of formal parameter types
18010      and output DIEs to represent those types (as necessary).  */
18011   for (link = TYPE_ARG_TYPES (function_or_method_type);
18012        link && TREE_VALUE (link);
18013        link = TREE_CHAIN (link))
18014     gen_type_die (TREE_VALUE (link), context_die);
18015 }
18016
18017 /* We want to generate the DIE for TYPE so that we can generate the
18018    die for MEMBER, which has been defined; we will need to refer back
18019    to the member declaration nested within TYPE.  If we're trying to
18020    generate minimal debug info for TYPE, processing TYPE won't do the
18021    trick; we need to attach the member declaration by hand.  */
18022
18023 static void
18024 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
18025 {
18026   gen_type_die (type, context_die);
18027
18028   /* If we're trying to avoid duplicate debug info, we may not have
18029      emitted the member decl for this function.  Emit it now.  */
18030   if (TYPE_STUB_DECL (type)
18031       && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
18032       && ! lookup_decl_die (member))
18033     {
18034       dw_die_ref type_die;
18035       gcc_assert (!decl_ultimate_origin (member));
18036
18037       push_decl_scope (type);
18038       type_die = lookup_type_die (type);
18039       if (TREE_CODE (member) == FUNCTION_DECL)
18040         gen_subprogram_die (member, type_die);
18041       else if (TREE_CODE (member) == FIELD_DECL)
18042         {
18043           /* Ignore the nameless fields that are used to skip bits but handle
18044              C++ anonymous unions and structs.  */
18045           if (DECL_NAME (member) != NULL_TREE
18046               || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
18047               || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
18048             {
18049               gen_type_die (member_declared_type (member), type_die);
18050               gen_field_die (member, type_die);
18051             }
18052         }
18053       else
18054         gen_variable_die (member, NULL_TREE, type_die);
18055
18056       pop_decl_scope ();
18057     }
18058 }
18059
18060 /* Generate the DWARF2 info for the "abstract" instance of a function which we
18061    may later generate inlined and/or out-of-line instances of.  */
18062
18063 static void
18064 dwarf2out_abstract_function (tree decl)
18065 {
18066   dw_die_ref old_die;
18067   tree save_fn;
18068   tree context;
18069   int was_abstract;
18070   htab_t old_decl_loc_table;
18071
18072   /* Make sure we have the actual abstract inline, not a clone.  */
18073   decl = DECL_ORIGIN (decl);
18074
18075   old_die = lookup_decl_die (decl);
18076   if (old_die && get_AT (old_die, DW_AT_inline))
18077     /* We've already generated the abstract instance.  */
18078     return;
18079
18080   /* We can be called while recursively when seeing block defining inlined subroutine
18081      DIE.  Be sure to not clobber the outer location table nor use it or we would
18082      get locations in abstract instantces.  */
18083   old_decl_loc_table = decl_loc_table;
18084   decl_loc_table = NULL;
18085
18086   /* Be sure we've emitted the in-class declaration DIE (if any) first, so
18087      we don't get confused by DECL_ABSTRACT.  */
18088   if (debug_info_level > DINFO_LEVEL_TERSE)
18089     {
18090       context = decl_class_context (decl);
18091       if (context)
18092         gen_type_die_for_member
18093           (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
18094     }
18095
18096   /* Pretend we've just finished compiling this function.  */
18097   save_fn = current_function_decl;
18098   current_function_decl = decl;
18099   push_cfun (DECL_STRUCT_FUNCTION (decl));
18100
18101   was_abstract = DECL_ABSTRACT (decl);
18102   set_decl_abstract_flags (decl, 1);
18103   dwarf2out_decl (decl);
18104   if (! was_abstract)
18105     set_decl_abstract_flags (decl, 0);
18106
18107   current_function_decl = save_fn;
18108   decl_loc_table = old_decl_loc_table;
18109   pop_cfun ();
18110 }
18111
18112 /* Helper function of premark_used_types() which gets called through
18113    htab_traverse.
18114
18115    Marks the DIE of a given type in *SLOT as perennial, so it never gets
18116    marked as unused by prune_unused_types.  */
18117
18118 static int
18119 premark_used_types_helper (void **slot, void *data ATTRIBUTE_UNUSED)
18120 {
18121   tree type;
18122   dw_die_ref die;
18123
18124   type = (tree) *slot;
18125   die = lookup_type_die (type);
18126   if (die != NULL)
18127     die->die_perennial_p = 1;
18128   return 1;
18129 }
18130
18131 /* Helper function of premark_types_used_by_global_vars which gets called
18132    through htab_traverse.
18133
18134    Marks the DIE of a given type in *SLOT as perennial, so it never gets
18135    marked as unused by prune_unused_types. The DIE of the type is marked
18136    only if the global variable using the type will actually be emitted.  */
18137
18138 static int
18139 premark_types_used_by_global_vars_helper (void **slot,
18140                                           void *data ATTRIBUTE_UNUSED)
18141 {
18142   struct types_used_by_vars_entry *entry;
18143   dw_die_ref die;
18144
18145   entry = (struct types_used_by_vars_entry *) *slot;
18146   gcc_assert (entry->type != NULL
18147               && entry->var_decl != NULL);
18148   die = lookup_type_die (entry->type);
18149   if (die)
18150     {
18151       /* Ask cgraph if the global variable really is to be emitted.
18152          If yes, then we'll keep the DIE of ENTRY->TYPE.  */
18153       struct varpool_node *node = varpool_node (entry->var_decl);
18154       if (node->needed)
18155         {
18156           die->die_perennial_p = 1;
18157           /* Keep the parent DIEs as well.  */
18158           while ((die = die->die_parent) && die->die_perennial_p == 0)
18159             die->die_perennial_p = 1;
18160         }
18161     }
18162   return 1;
18163 }
18164
18165 /* Mark all members of used_types_hash as perennial.  */
18166
18167 static void
18168 premark_used_types (void)
18169 {
18170   if (cfun && cfun->used_types_hash)
18171     htab_traverse (cfun->used_types_hash, premark_used_types_helper, NULL);
18172 }
18173
18174 /* Mark all members of types_used_by_vars_entry as perennial.  */
18175
18176 static void
18177 premark_types_used_by_global_vars (void)
18178 {
18179   if (types_used_by_vars_hash)
18180     htab_traverse (types_used_by_vars_hash,
18181                    premark_types_used_by_global_vars_helper, NULL);
18182 }
18183
18184 /* Generate a DIE to represent a declared function (either file-scope or
18185    block-local).  */
18186
18187 static void
18188 gen_subprogram_die (tree decl, dw_die_ref context_die)
18189 {
18190   char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
18191   tree origin = decl_ultimate_origin (decl);
18192   dw_die_ref subr_die;
18193   tree fn_arg_types;
18194   tree outer_scope;
18195   dw_die_ref old_die = lookup_decl_die (decl);
18196   int declaration = (current_function_decl != decl
18197                      || class_or_namespace_scope_p (context_die));
18198
18199   premark_used_types ();
18200
18201   /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
18202      started to generate the abstract instance of an inline, decided to output
18203      its containing class, and proceeded to emit the declaration of the inline
18204      from the member list for the class.  If so, DECLARATION takes priority;
18205      we'll get back to the abstract instance when done with the class.  */
18206
18207   /* The class-scope declaration DIE must be the primary DIE.  */
18208   if (origin && declaration && class_or_namespace_scope_p (context_die))
18209     {
18210       origin = NULL;
18211       gcc_assert (!old_die);
18212     }
18213
18214   /* Now that the C++ front end lazily declares artificial member fns, we
18215      might need to retrofit the declaration into its class.  */
18216   if (!declaration && !origin && !old_die
18217       && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
18218       && !class_or_namespace_scope_p (context_die)
18219       && debug_info_level > DINFO_LEVEL_TERSE)
18220     old_die = force_decl_die (decl);
18221
18222   if (origin != NULL)
18223     {
18224       gcc_assert (!declaration || local_scope_p (context_die));
18225
18226       /* Fixup die_parent for the abstract instance of a nested
18227          inline function.  */
18228       if (old_die && old_die->die_parent == NULL)
18229         add_child_die (context_die, old_die);
18230
18231       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
18232       add_abstract_origin_attribute (subr_die, origin);
18233     }
18234   else if (old_die)
18235     {
18236       expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
18237       struct dwarf_file_data * file_index = lookup_filename (s.file);
18238
18239       if (!get_AT_flag (old_die, DW_AT_declaration)
18240           /* We can have a normal definition following an inline one in the
18241              case of redefinition of GNU C extern inlines.
18242              It seems reasonable to use AT_specification in this case.  */
18243           && !get_AT (old_die, DW_AT_inline))
18244         {
18245           /* Detect and ignore this case, where we are trying to output
18246              something we have already output.  */
18247           return;
18248         }
18249
18250       /* If the definition comes from the same place as the declaration,
18251          maybe use the old DIE.  We always want the DIE for this function
18252          that has the *_pc attributes to be under comp_unit_die so the
18253          debugger can find it.  We also need to do this for abstract
18254          instances of inlines, since the spec requires the out-of-line copy
18255          to have the same parent.  For local class methods, this doesn't
18256          apply; we just use the old DIE.  */
18257       if ((old_die->die_parent == comp_unit_die || context_die == NULL)
18258           && (DECL_ARTIFICIAL (decl)
18259               || (get_AT_file (old_die, DW_AT_decl_file) == file_index
18260                   && (get_AT_unsigned (old_die, DW_AT_decl_line)
18261                       == (unsigned) s.line))))
18262         {
18263           subr_die = old_die;
18264
18265           /* Clear out the declaration attribute and the formal parameters.
18266              Do not remove all children, because it is possible that this
18267              declaration die was forced using force_decl_die(). In such
18268              cases die that forced declaration die (e.g. TAG_imported_module)
18269              is one of the children that we do not want to remove.  */
18270           remove_AT (subr_die, DW_AT_declaration);
18271           remove_child_TAG (subr_die, DW_TAG_formal_parameter);
18272         }
18273       else
18274         {
18275           subr_die = new_die (DW_TAG_subprogram, context_die, decl);
18276           add_AT_specification (subr_die, old_die);
18277           if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
18278             add_AT_file (subr_die, DW_AT_decl_file, file_index);
18279           if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
18280             add_AT_unsigned (subr_die, DW_AT_decl_line, s.line);
18281         }
18282     }
18283   else
18284     {
18285       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
18286
18287       if (TREE_PUBLIC (decl))
18288         add_AT_flag (subr_die, DW_AT_external, 1);
18289
18290       add_name_and_src_coords_attributes (subr_die, decl);
18291       if (debug_info_level > DINFO_LEVEL_TERSE)
18292         {
18293           add_prototyped_attribute (subr_die, TREE_TYPE (decl));
18294           add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
18295                               0, 0, context_die);
18296         }
18297
18298       add_pure_or_virtual_attribute (subr_die, decl);
18299       if (DECL_ARTIFICIAL (decl))
18300         add_AT_flag (subr_die, DW_AT_artificial, 1);
18301
18302       if (TREE_PROTECTED (decl))
18303         add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
18304       else if (TREE_PRIVATE (decl))
18305         add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
18306     }
18307
18308   if (declaration)
18309     {
18310       if (!old_die || !get_AT (old_die, DW_AT_inline))
18311         {
18312           add_AT_flag (subr_die, DW_AT_declaration, 1);
18313
18314           /* If this is an explicit function declaration then generate
18315              a DW_AT_explicit attribute.  */
18316           if (lang_hooks.decls.function_decl_explicit_p (decl)
18317               && (dwarf_version >= 3 || !dwarf_strict))
18318             add_AT_flag (subr_die, DW_AT_explicit, 1);
18319
18320           /* The first time we see a member function, it is in the context of
18321              the class to which it belongs.  We make sure of this by emitting
18322              the class first.  The next time is the definition, which is
18323              handled above.  The two may come from the same source text.
18324
18325              Note that force_decl_die() forces function declaration die. It is
18326              later reused to represent definition.  */
18327           equate_decl_number_to_die (decl, subr_die);
18328         }
18329     }
18330   else if (DECL_ABSTRACT (decl))
18331     {
18332       if (DECL_DECLARED_INLINE_P (decl))
18333         {
18334           if (cgraph_function_possibly_inlined_p (decl))
18335             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
18336           else
18337             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
18338         }
18339       else
18340         {
18341           if (cgraph_function_possibly_inlined_p (decl))
18342             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
18343           else
18344             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_not_inlined);
18345         }
18346
18347       if (DECL_DECLARED_INLINE_P (decl)
18348           && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl)))
18349         add_AT_flag (subr_die, DW_AT_artificial, 1);
18350
18351       equate_decl_number_to_die (decl, subr_die);
18352     }
18353   else if (!DECL_EXTERNAL (decl))
18354     {
18355       HOST_WIDE_INT cfa_fb_offset;
18356
18357       if (!old_die || !get_AT (old_die, DW_AT_inline))
18358         equate_decl_number_to_die (decl, subr_die);
18359
18360       if (!flag_reorder_blocks_and_partition)
18361         {
18362           ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
18363                                        current_function_funcdef_no);
18364           add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
18365           ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
18366                                        current_function_funcdef_no);
18367           add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
18368
18369           add_pubname (decl, subr_die);
18370           add_arange (decl, subr_die);
18371         }
18372       else
18373         {  /* Do nothing for now; maybe need to duplicate die, one for
18374               hot section and one for cold section, then use the hot/cold
18375               section begin/end labels to generate the aranges...  */
18376           /*
18377             add_AT_lbl_id (subr_die, DW_AT_low_pc, hot_section_label);
18378             add_AT_lbl_id (subr_die, DW_AT_high_pc, hot_section_end_label);
18379             add_AT_lbl_id (subr_die, DW_AT_lo_user, unlikely_section_label);
18380             add_AT_lbl_id (subr_die, DW_AT_hi_user, cold_section_end_label);
18381
18382             add_pubname (decl, subr_die);
18383             add_arange (decl, subr_die);
18384             add_arange (decl, subr_die);
18385            */
18386         }
18387
18388 #ifdef MIPS_DEBUGGING_INFO
18389       /* Add a reference to the FDE for this routine.  */
18390       add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
18391 #endif
18392
18393       cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
18394
18395       /* We define the "frame base" as the function's CFA.  This is more
18396          convenient for several reasons: (1) It's stable across the prologue
18397          and epilogue, which makes it better than just a frame pointer,
18398          (2) With dwarf3, there exists a one-byte encoding that allows us
18399          to reference the .debug_frame data by proxy, but failing that,
18400          (3) We can at least reuse the code inspection and interpretation
18401          code that determines the CFA position at various points in the
18402          function.  */
18403       if (dwarf_version >= 3)
18404         {
18405           dw_loc_descr_ref op = new_loc_descr (DW_OP_call_frame_cfa, 0, 0);
18406           add_AT_loc (subr_die, DW_AT_frame_base, op);
18407         }
18408       else
18409         {
18410           dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
18411           if (list->dw_loc_next)
18412             add_AT_loc_list (subr_die, DW_AT_frame_base, list);
18413           else
18414             add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
18415         }
18416
18417       /* Compute a displacement from the "steady-state frame pointer" to
18418          the CFA.  The former is what all stack slots and argument slots
18419          will reference in the rtl; the later is what we've told the
18420          debugger about.  We'll need to adjust all frame_base references
18421          by this displacement.  */
18422       compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
18423
18424       if (cfun->static_chain_decl)
18425         add_AT_location_description (subr_die, DW_AT_static_link,
18426                  loc_list_from_tree (cfun->static_chain_decl, 2));
18427     }
18428
18429   /* Generate child dies for template paramaters.  */
18430   if (debug_info_level > DINFO_LEVEL_TERSE)
18431     gen_generic_params_dies (decl);
18432
18433   /* Now output descriptions of the arguments for this function. This gets
18434      (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
18435      for a FUNCTION_DECL doesn't indicate cases where there was a trailing
18436      `...' at the end of the formal parameter list.  In order to find out if
18437      there was a trailing ellipsis or not, we must instead look at the type
18438      associated with the FUNCTION_DECL.  This will be a node of type
18439      FUNCTION_TYPE. If the chain of type nodes hanging off of this
18440      FUNCTION_TYPE node ends with a void_type_node then there should *not* be
18441      an ellipsis at the end.  */
18442
18443   /* In the case where we are describing a mere function declaration, all we
18444      need to do here (and all we *can* do here) is to describe the *types* of
18445      its formal parameters.  */
18446   if (debug_info_level <= DINFO_LEVEL_TERSE)
18447     ;
18448   else if (declaration)
18449     gen_formal_types_die (decl, subr_die);
18450   else
18451     {
18452       /* Generate DIEs to represent all known formal parameters.  */
18453       tree parm = DECL_ARGUMENTS (decl);
18454       tree generic_decl = lang_hooks.decls.get_generic_function_decl (decl);
18455       tree generic_decl_parm = generic_decl
18456                                 ? DECL_ARGUMENTS (generic_decl)
18457                                 : NULL;
18458
18459       /* Now we want to walk the list of parameters of the function and
18460          emit their relevant DIEs.
18461
18462          We consider the case of DECL being an instance of a generic function
18463          as well as it being a normal function.
18464
18465          If DECL is an instance of a generic function we walk the
18466          parameters of the generic function declaration _and_ the parameters of
18467          DECL itself. This is useful because we want to emit specific DIEs for
18468          function parameter packs and those are declared as part of the
18469          generic function declaration. In that particular case,
18470          the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
18471          That DIE has children DIEs representing the set of arguments
18472          of the pack. Note that the set of pack arguments can be empty.
18473          In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
18474          children DIE.
18475
18476          Otherwise, we just consider the parameters of DECL.  */
18477       while (generic_decl_parm || parm)
18478         {
18479           if (generic_decl_parm
18480               && lang_hooks.function_parameter_pack_p (generic_decl_parm))
18481             gen_formal_parameter_pack_die (generic_decl_parm,
18482                                            parm, subr_die,
18483                                            &parm);
18484           else if (parm)
18485             {
18486               gen_decl_die (parm, NULL, subr_die);
18487               parm = TREE_CHAIN (parm);
18488             }
18489
18490           if (generic_decl_parm)
18491             generic_decl_parm = TREE_CHAIN (generic_decl_parm);
18492         }
18493
18494       /* Decide whether we need an unspecified_parameters DIE at the end.
18495          There are 2 more cases to do this for: 1) the ansi ... declaration -
18496          this is detectable when the end of the arg list is not a
18497          void_type_node 2) an unprototyped function declaration (not a
18498          definition).  This just means that we have no info about the
18499          parameters at all.  */
18500       fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
18501       if (fn_arg_types != NULL)
18502         {
18503           /* This is the prototyped case, check for....  */
18504           if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
18505             gen_unspecified_parameters_die (decl, subr_die);
18506         }
18507       else if (DECL_INITIAL (decl) == NULL_TREE)
18508         gen_unspecified_parameters_die (decl, subr_die);
18509     }
18510
18511   /* Output Dwarf info for all of the stuff within the body of the function
18512      (if it has one - it may be just a declaration).  */
18513   outer_scope = DECL_INITIAL (decl);
18514
18515   /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
18516      a function.  This BLOCK actually represents the outermost binding contour
18517      for the function, i.e. the contour in which the function's formal
18518      parameters and labels get declared. Curiously, it appears that the front
18519      end doesn't actually put the PARM_DECL nodes for the current function onto
18520      the BLOCK_VARS list for this outer scope, but are strung off of the
18521      DECL_ARGUMENTS list for the function instead.
18522
18523      The BLOCK_VARS list for the `outer_scope' does provide us with a list of
18524      the LABEL_DECL nodes for the function however, and we output DWARF info
18525      for those in decls_for_scope.  Just within the `outer_scope' there will be
18526      a BLOCK node representing the function's outermost pair of curly braces,
18527      and any blocks used for the base and member initializers of a C++
18528      constructor function.  */
18529   if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
18530     {
18531       /* Emit a DW_TAG_variable DIE for a named return value.  */
18532       if (DECL_NAME (DECL_RESULT (decl)))
18533         gen_decl_die (DECL_RESULT (decl), NULL, subr_die);
18534
18535       current_function_has_inlines = 0;
18536       decls_for_scope (outer_scope, subr_die, 0);
18537
18538 #if 0 && defined (MIPS_DEBUGGING_INFO)
18539       if (current_function_has_inlines)
18540         {
18541           add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
18542           if (! comp_unit_has_inlines)
18543             {
18544               add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
18545               comp_unit_has_inlines = 1;
18546             }
18547         }
18548 #endif
18549     }
18550   /* Add the calling convention attribute if requested.  */
18551   add_calling_convention_attribute (subr_die, decl);
18552
18553 }
18554
18555 /* Returns a hash value for X (which really is a die_struct).  */
18556
18557 static hashval_t
18558 common_block_die_table_hash (const void *x)
18559 {
18560   const_dw_die_ref d = (const_dw_die_ref) x;
18561   return (hashval_t) d->decl_id ^ htab_hash_pointer (d->die_parent);
18562 }
18563
18564 /* Return nonzero if decl_id and die_parent of die_struct X is the same
18565    as decl_id and die_parent of die_struct Y.  */
18566
18567 static int
18568 common_block_die_table_eq (const void *x, const void *y)
18569 {
18570   const_dw_die_ref d = (const_dw_die_ref) x;
18571   const_dw_die_ref e = (const_dw_die_ref) y;
18572   return d->decl_id == e->decl_id && d->die_parent == e->die_parent;
18573 }
18574
18575 /* Generate a DIE to represent a declared data object.
18576    Either DECL or ORIGIN must be non-null.  */
18577
18578 static void
18579 gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
18580 {
18581   HOST_WIDE_INT off;
18582   tree com_decl;
18583   tree decl_or_origin = decl ? decl : origin;
18584   tree ultimate_origin;
18585   dw_die_ref var_die;
18586   dw_die_ref old_die = decl ? lookup_decl_die (decl) : NULL;
18587   dw_die_ref origin_die;
18588   int declaration = (DECL_EXTERNAL (decl_or_origin)
18589                      || class_or_namespace_scope_p (context_die));
18590
18591   ultimate_origin = decl_ultimate_origin (decl_or_origin);
18592   if (decl || ultimate_origin)
18593     origin = ultimate_origin;
18594   com_decl = fortran_common (decl_or_origin, &off);
18595
18596   /* Symbol in common gets emitted as a child of the common block, in the form
18597      of a data member.  */
18598   if (com_decl)
18599     {
18600       dw_die_ref com_die;
18601       dw_loc_list_ref loc;
18602       die_node com_die_arg;
18603
18604       var_die = lookup_decl_die (decl_or_origin);
18605       if (var_die)
18606         {
18607           if (get_AT (var_die, DW_AT_location) == NULL)
18608             {
18609               loc = loc_list_from_tree (com_decl, off ? 1 : 2);
18610               if (loc)
18611                 {
18612                   if (off)
18613                     {
18614                       /* Optimize the common case.  */
18615                       if (single_element_loc_list_p (loc)
18616                           && loc->expr->dw_loc_opc == DW_OP_addr
18617                           && loc->expr->dw_loc_next == NULL
18618                           && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr)
18619                              == SYMBOL_REF)
18620                         loc->expr->dw_loc_oprnd1.v.val_addr
18621                           = plus_constant (loc->expr->dw_loc_oprnd1.v.val_addr, off);
18622                         else
18623                           loc_list_plus_const (loc, off);
18624                     }
18625                   add_AT_location_description (var_die, DW_AT_location, loc);
18626                   remove_AT (var_die, DW_AT_declaration);
18627                 }
18628             }
18629           return;
18630         }
18631
18632       if (common_block_die_table == NULL)
18633         common_block_die_table
18634           = htab_create_ggc (10, common_block_die_table_hash,
18635                              common_block_die_table_eq, NULL);
18636
18637       com_die_arg.decl_id = DECL_UID (com_decl);
18638       com_die_arg.die_parent = context_die;
18639       com_die = (dw_die_ref) htab_find (common_block_die_table, &com_die_arg);
18640       loc = loc_list_from_tree (com_decl, 2);
18641       if (com_die == NULL)
18642         {
18643           const char *cnam
18644             = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl));
18645           void **slot;
18646
18647           com_die = new_die (DW_TAG_common_block, context_die, decl);
18648           add_name_and_src_coords_attributes (com_die, com_decl);
18649           if (loc)
18650             {
18651               add_AT_location_description (com_die, DW_AT_location, loc);
18652               /* Avoid sharing the same loc descriptor between
18653                  DW_TAG_common_block and DW_TAG_variable.  */
18654               loc = loc_list_from_tree (com_decl, 2);
18655             }
18656           else if (DECL_EXTERNAL (decl))
18657             add_AT_flag (com_die, DW_AT_declaration, 1);
18658           add_pubname_string (cnam, com_die); /* ??? needed? */
18659           com_die->decl_id = DECL_UID (com_decl);
18660           slot = htab_find_slot (common_block_die_table, com_die, INSERT);
18661           *slot = (void *) com_die;
18662         }
18663       else if (get_AT (com_die, DW_AT_location) == NULL && loc)
18664         {
18665           add_AT_location_description (com_die, DW_AT_location, loc);
18666           loc = loc_list_from_tree (com_decl, 2);
18667           remove_AT (com_die, DW_AT_declaration);
18668         }
18669       var_die = new_die (DW_TAG_variable, com_die, decl);
18670       add_name_and_src_coords_attributes (var_die, decl);
18671       add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
18672                           TREE_THIS_VOLATILE (decl), context_die);
18673       add_AT_flag (var_die, DW_AT_external, 1);
18674       if (loc)
18675         {
18676           if (off)
18677             {
18678               /* Optimize the common case.  */
18679               if (single_element_loc_list_p (loc)
18680                   && loc->expr->dw_loc_opc == DW_OP_addr
18681                   && loc->expr->dw_loc_next == NULL
18682                   && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF)
18683                 loc->expr->dw_loc_oprnd1.v.val_addr
18684                   = plus_constant (loc->expr->dw_loc_oprnd1.v.val_addr, off);
18685               else
18686                 loc_list_plus_const (loc, off);
18687             }
18688           add_AT_location_description (var_die, DW_AT_location, loc);
18689         }
18690       else if (DECL_EXTERNAL (decl))
18691         add_AT_flag (var_die, DW_AT_declaration, 1);
18692       equate_decl_number_to_die (decl, var_die);
18693       return;
18694     }
18695
18696   /* If the compiler emitted a definition for the DECL declaration
18697      and if we already emitted a DIE for it, don't emit a second
18698      DIE for it again. Allow re-declarations of DECLs that are
18699      inside functions, though.  */
18700   if (old_die && declaration && !local_scope_p (context_die))
18701     return;
18702
18703   /* For static data members, the declaration in the class is supposed
18704      to have DW_TAG_member tag; the specification should still be
18705      DW_TAG_variable referencing the DW_TAG_member DIE.  */
18706   if (declaration && class_scope_p (context_die))
18707     var_die = new_die (DW_TAG_member, context_die, decl);
18708   else
18709     var_die = new_die (DW_TAG_variable, context_die, decl);
18710
18711   origin_die = NULL;
18712   if (origin != NULL)
18713     origin_die = add_abstract_origin_attribute (var_die, origin);
18714
18715   /* Loop unrolling can create multiple blocks that refer to the same
18716      static variable, so we must test for the DW_AT_declaration flag.
18717
18718      ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
18719      copy decls and set the DECL_ABSTRACT flag on them instead of
18720      sharing them.
18721
18722      ??? Duplicated blocks have been rewritten to use .debug_ranges.
18723
18724      ??? The declare_in_namespace support causes us to get two DIEs for one
18725      variable, both of which are declarations.  We want to avoid considering
18726      one to be a specification, so we must test that this DIE is not a
18727      declaration.  */
18728   else if (old_die && TREE_STATIC (decl) && ! declaration
18729            && get_AT_flag (old_die, DW_AT_declaration) == 1)
18730     {
18731       /* This is a definition of a C++ class level static.  */
18732       add_AT_specification (var_die, old_die);
18733       if (DECL_NAME (decl))
18734         {
18735           expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
18736           struct dwarf_file_data * file_index = lookup_filename (s.file);
18737
18738           if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
18739             add_AT_file (var_die, DW_AT_decl_file, file_index);
18740
18741           if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
18742             add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
18743         }
18744     }
18745   else
18746     {
18747       tree type = TREE_TYPE (decl);
18748
18749       add_name_and_src_coords_attributes (var_die, decl);
18750       if (decl_by_reference_p (decl))
18751         add_type_attribute (var_die, TREE_TYPE (type), 0, 0, context_die);
18752       else
18753         add_type_attribute (var_die, type, TREE_READONLY (decl),
18754                             TREE_THIS_VOLATILE (decl), context_die);
18755
18756       if (TREE_PUBLIC (decl))
18757         add_AT_flag (var_die, DW_AT_external, 1);
18758
18759       if (DECL_ARTIFICIAL (decl))
18760         add_AT_flag (var_die, DW_AT_artificial, 1);
18761
18762       if (TREE_PROTECTED (decl))
18763         add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
18764       else if (TREE_PRIVATE (decl))
18765         add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
18766     }
18767
18768   if (declaration)
18769     add_AT_flag (var_die, DW_AT_declaration, 1);
18770
18771   if (decl && (DECL_ABSTRACT (decl) || declaration))
18772     equate_decl_number_to_die (decl, var_die);
18773
18774   if (! declaration
18775       && (! DECL_ABSTRACT (decl_or_origin)
18776           /* Local static vars are shared between all clones/inlines,
18777              so emit DW_AT_location on the abstract DIE if DECL_RTL is
18778              already set.  */
18779           || (TREE_CODE (decl_or_origin) == VAR_DECL
18780               && TREE_STATIC (decl_or_origin)
18781               && DECL_RTL_SET_P (decl_or_origin)))
18782       /* When abstract origin already has DW_AT_location attribute, no need
18783          to add it again.  */
18784       && (origin_die == NULL || get_AT (origin_die, DW_AT_location) == NULL))
18785     {
18786       if (TREE_CODE (decl_or_origin) == VAR_DECL && TREE_STATIC (decl_or_origin)
18787           && !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl_or_origin)))
18788         defer_location (decl_or_origin, var_die);
18789       else
18790         add_location_or_const_value_attribute (var_die,
18791                                                decl_or_origin,
18792                                                DW_AT_location);
18793       add_pubname (decl_or_origin, var_die);
18794     }
18795   else
18796     tree_add_const_value_attribute_for_decl (var_die, decl_or_origin);
18797 }
18798
18799 /* Generate a DIE to represent a named constant.  */
18800
18801 static void
18802 gen_const_die (tree decl, dw_die_ref context_die)
18803 {
18804   dw_die_ref const_die;
18805   tree type = TREE_TYPE (decl);
18806
18807   const_die = new_die (DW_TAG_constant, context_die, decl);
18808   add_name_and_src_coords_attributes (const_die, decl);
18809   add_type_attribute (const_die, type, 1, 0, context_die);
18810   if (TREE_PUBLIC (decl))
18811     add_AT_flag (const_die, DW_AT_external, 1);
18812   if (DECL_ARTIFICIAL (decl))
18813     add_AT_flag (const_die, DW_AT_artificial, 1);
18814   tree_add_const_value_attribute_for_decl (const_die, decl);
18815 }
18816
18817 /* Generate a DIE to represent a label identifier.  */
18818
18819 static void
18820 gen_label_die (tree decl, dw_die_ref context_die)
18821 {
18822   tree origin = decl_ultimate_origin (decl);
18823   dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
18824   rtx insn;
18825   char label[MAX_ARTIFICIAL_LABEL_BYTES];
18826
18827   if (origin != NULL)
18828     add_abstract_origin_attribute (lbl_die, origin);
18829   else
18830     add_name_and_src_coords_attributes (lbl_die, decl);
18831
18832   if (DECL_ABSTRACT (decl))
18833     equate_decl_number_to_die (decl, lbl_die);
18834   else
18835     {
18836       insn = DECL_RTL_IF_SET (decl);
18837
18838       /* Deleted labels are programmer specified labels which have been
18839          eliminated because of various optimizations.  We still emit them
18840          here so that it is possible to put breakpoints on them.  */
18841       if (insn
18842           && (LABEL_P (insn)
18843               || ((NOTE_P (insn)
18844                    && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL))))
18845         {
18846           /* When optimization is enabled (via -O) some parts of the compiler
18847              (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
18848              represent source-level labels which were explicitly declared by
18849              the user.  This really shouldn't be happening though, so catch
18850              it if it ever does happen.  */
18851           gcc_assert (!INSN_DELETED_P (insn));
18852
18853           ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
18854           add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
18855         }
18856     }
18857 }
18858
18859 /* A helper function for gen_inlined_subroutine_die.  Add source coordinate
18860    attributes to the DIE for a block STMT, to describe where the inlined
18861    function was called from.  This is similar to add_src_coords_attributes.  */
18862
18863 static inline void
18864 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
18865 {
18866   expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (stmt));
18867
18868   if (dwarf_version >= 3 || !dwarf_strict)
18869     {
18870       add_AT_file (die, DW_AT_call_file, lookup_filename (s.file));
18871       add_AT_unsigned (die, DW_AT_call_line, s.line);
18872     }
18873 }
18874
18875
18876 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
18877    Add low_pc and high_pc attributes to the DIE for a block STMT.  */
18878
18879 static inline void
18880 add_high_low_attributes (tree stmt, dw_die_ref die)
18881 {
18882   char label[MAX_ARTIFICIAL_LABEL_BYTES];
18883
18884   if (BLOCK_FRAGMENT_CHAIN (stmt)
18885       && (dwarf_version >= 3 || !dwarf_strict))
18886     {
18887       tree chain;
18888
18889       if (inlined_function_outer_scope_p (stmt))
18890         {
18891           ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
18892                                        BLOCK_NUMBER (stmt));
18893           add_AT_lbl_id (die, DW_AT_entry_pc, label);
18894         }
18895
18896       add_AT_range_list (die, DW_AT_ranges, add_ranges (stmt));
18897
18898       chain = BLOCK_FRAGMENT_CHAIN (stmt);
18899       do
18900         {
18901           add_ranges (chain);
18902           chain = BLOCK_FRAGMENT_CHAIN (chain);
18903         }
18904       while (chain);
18905       add_ranges (NULL);
18906     }
18907   else
18908     {
18909       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
18910                                    BLOCK_NUMBER (stmt));
18911       add_AT_lbl_id (die, DW_AT_low_pc, label);
18912       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
18913                                    BLOCK_NUMBER (stmt));
18914       add_AT_lbl_id (die, DW_AT_high_pc, label);
18915     }
18916 }
18917
18918 /* Generate a DIE for a lexical block.  */
18919
18920 static void
18921 gen_lexical_block_die (tree stmt, dw_die_ref context_die, int depth)
18922 {
18923   dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
18924
18925   if (! BLOCK_ABSTRACT (stmt) && TREE_ASM_WRITTEN (stmt))
18926     add_high_low_attributes (stmt, stmt_die);
18927
18928   decls_for_scope (stmt, stmt_die, depth);
18929 }
18930
18931 /* Generate a DIE for an inlined subprogram.  */
18932
18933 static void
18934 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die, int depth)
18935 {
18936   tree decl;
18937
18938   /* The instance of function that is effectively being inlined shall not
18939      be abstract.  */
18940   gcc_assert (! BLOCK_ABSTRACT (stmt));
18941
18942   decl = block_ultimate_origin (stmt);
18943
18944   /* Emit info for the abstract instance first, if we haven't yet.  We
18945      must emit this even if the block is abstract, otherwise when we
18946      emit the block below (or elsewhere), we may end up trying to emit
18947      a die whose origin die hasn't been emitted, and crashing.  */
18948   dwarf2out_abstract_function (decl);
18949
18950   if (! BLOCK_ABSTRACT (stmt))
18951     {
18952       dw_die_ref subr_die
18953         = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
18954
18955       add_abstract_origin_attribute (subr_die, decl);
18956       if (TREE_ASM_WRITTEN (stmt))
18957         add_high_low_attributes (stmt, subr_die);
18958       add_call_src_coords_attributes (stmt, subr_die);
18959
18960       decls_for_scope (stmt, subr_die, depth);
18961       current_function_has_inlines = 1;
18962     }
18963 }
18964
18965 /* Generate a DIE for a field in a record, or structure.  */
18966
18967 static void
18968 gen_field_die (tree decl, dw_die_ref context_die)
18969 {
18970   dw_die_ref decl_die;
18971
18972   if (TREE_TYPE (decl) == error_mark_node)
18973     return;
18974
18975   decl_die = new_die (DW_TAG_member, context_die, decl);
18976   add_name_and_src_coords_attributes (decl_die, decl);
18977   add_type_attribute (decl_die, member_declared_type (decl),
18978                       TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
18979                       context_die);
18980
18981   if (DECL_BIT_FIELD_TYPE (decl))
18982     {
18983       add_byte_size_attribute (decl_die, decl);
18984       add_bit_size_attribute (decl_die, decl);
18985       add_bit_offset_attribute (decl_die, decl);
18986     }
18987
18988   if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
18989     add_data_member_location_attribute (decl_die, decl);
18990
18991   if (DECL_ARTIFICIAL (decl))
18992     add_AT_flag (decl_die, DW_AT_artificial, 1);
18993
18994   if (TREE_PROTECTED (decl))
18995     add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
18996   else if (TREE_PRIVATE (decl))
18997     add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
18998
18999   /* Equate decl number to die, so that we can look up this decl later on.  */
19000   equate_decl_number_to_die (decl, decl_die);
19001 }
19002
19003 #if 0
19004 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
19005    Use modified_type_die instead.
19006    We keep this code here just in case these types of DIEs may be needed to
19007    represent certain things in other languages (e.g. Pascal) someday.  */
19008
19009 static void
19010 gen_pointer_type_die (tree type, dw_die_ref context_die)
19011 {
19012   dw_die_ref ptr_die
19013     = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
19014
19015   equate_type_number_to_die (type, ptr_die);
19016   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
19017   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
19018 }
19019
19020 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
19021    Use modified_type_die instead.
19022    We keep this code here just in case these types of DIEs may be needed to
19023    represent certain things in other languages (e.g. Pascal) someday.  */
19024
19025 static void
19026 gen_reference_type_die (tree type, dw_die_ref context_die)
19027 {
19028   dw_die_ref ref_die, scope_die = scope_die_for (type, context_die);
19029
19030   if (TYPE_REF_IS_RVALUE (type) && dwarf_version >= 4)
19031     ref_die = new_die (DW_TAG_rvalue_reference_type, scope_die, type);
19032   else
19033     ref_die = new_die (DW_TAG_reference_type, scope_die, type);
19034
19035   equate_type_number_to_die (type, ref_die);
19036   add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
19037   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
19038 }
19039 #endif
19040
19041 /* Generate a DIE for a pointer to a member type.  */
19042
19043 static void
19044 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
19045 {
19046   dw_die_ref ptr_die
19047     = new_die (DW_TAG_ptr_to_member_type,
19048                scope_die_for (type, context_die), type);
19049
19050   equate_type_number_to_die (type, ptr_die);
19051   add_AT_die_ref (ptr_die, DW_AT_containing_type,
19052                   lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
19053   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
19054 }
19055
19056 /* Generate the DIE for the compilation unit.  */
19057
19058 static dw_die_ref
19059 gen_compile_unit_die (const char *filename)
19060 {
19061   dw_die_ref die;
19062   char producer[250];
19063   const char *language_string = lang_hooks.name;
19064   int language;
19065
19066   die = new_die (DW_TAG_compile_unit, NULL, NULL);
19067
19068   if (filename)
19069     {
19070       add_name_attribute (die, filename);
19071       /* Don't add cwd for <built-in>.  */
19072       if (!IS_ABSOLUTE_PATH (filename) && filename[0] != '<')
19073         add_comp_dir_attribute (die);
19074     }
19075
19076   sprintf (producer, "%s %s", language_string, version_string);
19077
19078 #ifdef MIPS_DEBUGGING_INFO
19079   /* The MIPS/SGI compilers place the 'cc' command line options in the producer
19080      string.  The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
19081      not appear in the producer string, the debugger reaches the conclusion
19082      that the object file is stripped and has no debugging information.
19083      To get the MIPS/SGI debugger to believe that there is debugging
19084      information in the object file, we add a -g to the producer string.  */
19085   if (debug_info_level > DINFO_LEVEL_TERSE)
19086     strcat (producer, " -g");
19087 #endif
19088
19089   add_AT_string (die, DW_AT_producer, producer);
19090
19091   language = DW_LANG_C89;
19092   if (strcmp (language_string, "GNU C++") == 0)
19093     language = DW_LANG_C_plus_plus;
19094   else if (strcmp (language_string, "GNU F77") == 0)
19095     language = DW_LANG_Fortran77;
19096   else if (strcmp (language_string, "GNU Pascal") == 0)
19097     language = DW_LANG_Pascal83;
19098   else if (dwarf_version >= 3 || !dwarf_strict)
19099     {
19100       if (strcmp (language_string, "GNU Ada") == 0)
19101         language = DW_LANG_Ada95;
19102       else if (strcmp (language_string, "GNU Fortran") == 0)
19103         language = DW_LANG_Fortran95;
19104       else if (strcmp (language_string, "GNU Java") == 0)
19105         language = DW_LANG_Java;
19106       else if (strcmp (language_string, "GNU Objective-C") == 0)
19107         language = DW_LANG_ObjC;
19108       else if (strcmp (language_string, "GNU Objective-C++") == 0)
19109         language = DW_LANG_ObjC_plus_plus;
19110     }
19111
19112   add_AT_unsigned (die, DW_AT_language, language);
19113
19114   switch (language)
19115     {
19116     case DW_LANG_Fortran77:
19117     case DW_LANG_Fortran90:
19118     case DW_LANG_Fortran95:
19119       /* Fortran has case insensitive identifiers and the front-end
19120          lowercases everything.  */
19121       add_AT_unsigned (die, DW_AT_identifier_case, DW_ID_down_case);
19122       break;
19123     default:
19124       /* The default DW_ID_case_sensitive doesn't need to be specified.  */
19125       break;
19126     }
19127   return die;
19128 }
19129
19130 /* Generate the DIE for a base class.  */
19131
19132 static void
19133 gen_inheritance_die (tree binfo, tree access, dw_die_ref context_die)
19134 {
19135   dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
19136
19137   add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
19138   add_data_member_location_attribute (die, binfo);
19139
19140   if (BINFO_VIRTUAL_P (binfo))
19141     add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
19142
19143   if (access == access_public_node)
19144     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
19145   else if (access == access_protected_node)
19146     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
19147 }
19148
19149 /* Generate a DIE for a class member.  */
19150
19151 static void
19152 gen_member_die (tree type, dw_die_ref context_die)
19153 {
19154   tree member;
19155   tree binfo = TYPE_BINFO (type);
19156   dw_die_ref child;
19157
19158   /* If this is not an incomplete type, output descriptions of each of its
19159      members. Note that as we output the DIEs necessary to represent the
19160      members of this record or union type, we will also be trying to output
19161      DIEs to represent the *types* of those members. However the `type'
19162      function (above) will specifically avoid generating type DIEs for member
19163      types *within* the list of member DIEs for this (containing) type except
19164      for those types (of members) which are explicitly marked as also being
19165      members of this (containing) type themselves.  The g++ front- end can
19166      force any given type to be treated as a member of some other (containing)
19167      type by setting the TYPE_CONTEXT of the given (member) type to point to
19168      the TREE node representing the appropriate (containing) type.  */
19169
19170   /* First output info about the base classes.  */
19171   if (binfo)
19172     {
19173       VEC(tree,gc) *accesses = BINFO_BASE_ACCESSES (binfo);
19174       int i;
19175       tree base;
19176
19177       for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
19178         gen_inheritance_die (base,
19179                              (accesses ? VEC_index (tree, accesses, i)
19180                               : access_public_node), context_die);
19181     }
19182
19183   /* Now output info about the data members and type members.  */
19184   for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
19185     {
19186       /* If we thought we were generating minimal debug info for TYPE
19187          and then changed our minds, some of the member declarations
19188          may have already been defined.  Don't define them again, but
19189          do put them in the right order.  */
19190
19191       child = lookup_decl_die (member);
19192       if (child)
19193         splice_child_die (context_die, child);
19194       else
19195         gen_decl_die (member, NULL, context_die);
19196     }
19197
19198   /* Now output info about the function members (if any).  */
19199   for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
19200     {
19201       /* Don't include clones in the member list.  */
19202       if (DECL_ABSTRACT_ORIGIN (member))
19203         continue;
19204
19205       child = lookup_decl_die (member);
19206       if (child)
19207         splice_child_die (context_die, child);
19208       else
19209         gen_decl_die (member, NULL, context_die);
19210     }
19211 }
19212
19213 /* Generate a DIE for a structure or union type.  If TYPE_DECL_SUPPRESS_DEBUG
19214    is set, we pretend that the type was never defined, so we only get the
19215    member DIEs needed by later specification DIEs.  */
19216
19217 static void
19218 gen_struct_or_union_type_die (tree type, dw_die_ref context_die,
19219                                 enum debug_info_usage usage)
19220 {
19221   dw_die_ref type_die = lookup_type_die (type);
19222   dw_die_ref scope_die = 0;
19223   int nested = 0;
19224   int complete = (TYPE_SIZE (type)
19225                   && (! TYPE_STUB_DECL (type)
19226                       || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
19227   int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
19228   complete = complete && should_emit_struct_debug (type, usage);
19229
19230   if (type_die && ! complete)
19231     return;
19232
19233   if (TYPE_CONTEXT (type) != NULL_TREE
19234       && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
19235           || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
19236     nested = 1;
19237
19238   scope_die = scope_die_for (type, context_die);
19239
19240   if (! type_die || (nested && scope_die == comp_unit_die))
19241     /* First occurrence of type or toplevel definition of nested class.  */
19242     {
19243       dw_die_ref old_die = type_die;
19244
19245       type_die = new_die (TREE_CODE (type) == RECORD_TYPE
19246                           ? record_type_tag (type) : DW_TAG_union_type,
19247                           scope_die, type);
19248       equate_type_number_to_die (type, type_die);
19249       if (old_die)
19250         add_AT_specification (type_die, old_die);
19251       else
19252         add_name_attribute (type_die, type_tag (type));
19253     }
19254   else
19255     remove_AT (type_die, DW_AT_declaration);
19256
19257   /* Generate child dies for template paramaters.  */
19258   if (debug_info_level > DINFO_LEVEL_TERSE
19259       && COMPLETE_TYPE_P (type))
19260     gen_generic_params_dies (type);
19261
19262   /* If this type has been completed, then give it a byte_size attribute and
19263      then give a list of members.  */
19264   if (complete && !ns_decl)
19265     {
19266       /* Prevent infinite recursion in cases where the type of some member of
19267          this type is expressed in terms of this type itself.  */
19268       TREE_ASM_WRITTEN (type) = 1;
19269       add_byte_size_attribute (type_die, type);
19270       if (TYPE_STUB_DECL (type) != NULL_TREE)
19271         add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
19272
19273       /* If the first reference to this type was as the return type of an
19274          inline function, then it may not have a parent.  Fix this now.  */
19275       if (type_die->die_parent == NULL)
19276         add_child_die (scope_die, type_die);
19277
19278       push_decl_scope (type);
19279       gen_member_die (type, type_die);
19280       pop_decl_scope ();
19281
19282       /* GNU extension: Record what type our vtable lives in.  */
19283       if (TYPE_VFIELD (type))
19284         {
19285           tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
19286
19287           gen_type_die (vtype, context_die);
19288           add_AT_die_ref (type_die, DW_AT_containing_type,
19289                           lookup_type_die (vtype));
19290         }
19291     }
19292   else
19293     {
19294       add_AT_flag (type_die, DW_AT_declaration, 1);
19295
19296       /* We don't need to do this for function-local types.  */
19297       if (TYPE_STUB_DECL (type)
19298           && ! decl_function_context (TYPE_STUB_DECL (type)))
19299         VEC_safe_push (tree, gc, incomplete_types, type);
19300     }
19301
19302   if (get_AT (type_die, DW_AT_name))
19303     add_pubtype (type, type_die);
19304 }
19305
19306 /* Generate a DIE for a subroutine _type_.  */
19307
19308 static void
19309 gen_subroutine_type_die (tree type, dw_die_ref context_die)
19310 {
19311   tree return_type = TREE_TYPE (type);
19312   dw_die_ref subr_die
19313     = new_die (DW_TAG_subroutine_type,
19314                scope_die_for (type, context_die), type);
19315
19316   equate_type_number_to_die (type, subr_die);
19317   add_prototyped_attribute (subr_die, type);
19318   add_type_attribute (subr_die, return_type, 0, 0, context_die);
19319   gen_formal_types_die (type, subr_die);
19320
19321   if (get_AT (subr_die, DW_AT_name))
19322     add_pubtype (type, subr_die);
19323 }
19324
19325 /* Generate a DIE for a type definition.  */
19326
19327 static void
19328 gen_typedef_die (tree decl, dw_die_ref context_die)
19329 {
19330   dw_die_ref type_die;
19331   tree origin;
19332
19333   if (TREE_ASM_WRITTEN (decl))
19334     return;
19335
19336   TREE_ASM_WRITTEN (decl) = 1;
19337   type_die = new_die (DW_TAG_typedef, context_die, decl);
19338   origin = decl_ultimate_origin (decl);
19339   if (origin != NULL)
19340     add_abstract_origin_attribute (type_die, origin);
19341   else
19342     {
19343       tree type;
19344
19345       add_name_and_src_coords_attributes (type_die, decl);
19346       if (DECL_ORIGINAL_TYPE (decl))
19347         {
19348           type = DECL_ORIGINAL_TYPE (decl);
19349
19350           gcc_assert (type != TREE_TYPE (decl));
19351           equate_type_number_to_die (TREE_TYPE (decl), type_die);
19352         }
19353       else
19354         type = TREE_TYPE (decl);
19355
19356       add_type_attribute (type_die, type, TREE_READONLY (decl),
19357                           TREE_THIS_VOLATILE (decl), context_die);
19358     }
19359
19360   if (DECL_ABSTRACT (decl))
19361     equate_decl_number_to_die (decl, type_die);
19362
19363   if (get_AT (type_die, DW_AT_name))
19364     add_pubtype (decl, type_die);
19365 }
19366
19367 /* Generate a type description DIE.  */
19368
19369 static void
19370 gen_type_die_with_usage (tree type, dw_die_ref context_die,
19371                                 enum debug_info_usage usage)
19372 {
19373   int need_pop;
19374   struct array_descr_info info;
19375
19376   if (type == NULL_TREE || type == error_mark_node)
19377     return;
19378
19379   /* If TYPE is a typedef type variant, let's generate debug info
19380      for the parent typedef which TYPE is a type of.  */
19381   if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
19382       && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
19383     {
19384       if (TREE_ASM_WRITTEN (type))
19385         return;
19386
19387       /* Prevent broken recursion; we can't hand off to the same type.  */
19388       gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type)) != type);
19389
19390       /* Use the DIE of the containing namespace as the parent DIE of
19391          the type description DIE we want to generate.  */
19392       if (DECL_CONTEXT (TYPE_NAME (type))
19393           && TREE_CODE (DECL_CONTEXT (TYPE_NAME (type))) == NAMESPACE_DECL)
19394         context_die = get_context_die (DECL_CONTEXT (TYPE_NAME (type)));
19395
19396       TREE_ASM_WRITTEN (type) = 1;
19397       gen_decl_die (TYPE_NAME (type), NULL, context_die);
19398       return;
19399     }
19400
19401   /* If this is an array type with hidden descriptor, handle it first.  */
19402   if (!TREE_ASM_WRITTEN (type)
19403       && lang_hooks.types.get_array_descr_info
19404       && lang_hooks.types.get_array_descr_info (type, &info)
19405       && (dwarf_version >= 3 || !dwarf_strict))
19406     {
19407       gen_descr_array_type_die (type, &info, context_die);
19408       TREE_ASM_WRITTEN (type) = 1;
19409       return;
19410     }
19411
19412   /* We are going to output a DIE to represent the unqualified version
19413      of this type (i.e. without any const or volatile qualifiers) so
19414      get the main variant (i.e. the unqualified version) of this type
19415      now.  (Vectors are special because the debugging info is in the
19416      cloned type itself).  */
19417   if (TREE_CODE (type) != VECTOR_TYPE)
19418     type = type_main_variant (type);
19419
19420   if (TREE_ASM_WRITTEN (type))
19421     return;
19422
19423   switch (TREE_CODE (type))
19424     {
19425     case ERROR_MARK:
19426       break;
19427
19428     case POINTER_TYPE:
19429     case REFERENCE_TYPE:
19430       /* We must set TREE_ASM_WRITTEN in case this is a recursive type.  This
19431          ensures that the gen_type_die recursion will terminate even if the
19432          type is recursive.  Recursive types are possible in Ada.  */
19433       /* ??? We could perhaps do this for all types before the switch
19434          statement.  */
19435       TREE_ASM_WRITTEN (type) = 1;
19436
19437       /* For these types, all that is required is that we output a DIE (or a
19438          set of DIEs) to represent the "basis" type.  */
19439       gen_type_die_with_usage (TREE_TYPE (type), context_die,
19440                                 DINFO_USAGE_IND_USE);
19441       break;
19442
19443     case OFFSET_TYPE:
19444       /* This code is used for C++ pointer-to-data-member types.
19445          Output a description of the relevant class type.  */
19446       gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type), context_die,
19447                                         DINFO_USAGE_IND_USE);
19448
19449       /* Output a description of the type of the object pointed to.  */
19450       gen_type_die_with_usage (TREE_TYPE (type), context_die,
19451                                         DINFO_USAGE_IND_USE);
19452
19453       /* Now output a DIE to represent this pointer-to-data-member type
19454          itself.  */
19455       gen_ptr_to_mbr_type_die (type, context_die);
19456       break;
19457
19458     case FUNCTION_TYPE:
19459       /* Force out return type (in case it wasn't forced out already).  */
19460       gen_type_die_with_usage (TREE_TYPE (type), context_die,
19461                                         DINFO_USAGE_DIR_USE);
19462       gen_subroutine_type_die (type, context_die);
19463       break;
19464
19465     case METHOD_TYPE:
19466       /* Force out return type (in case it wasn't forced out already).  */
19467       gen_type_die_with_usage (TREE_TYPE (type), context_die,
19468                                         DINFO_USAGE_DIR_USE);
19469       gen_subroutine_type_die (type, context_die);
19470       break;
19471
19472     case ARRAY_TYPE:
19473       gen_array_type_die (type, context_die);
19474       break;
19475
19476     case VECTOR_TYPE:
19477       gen_array_type_die (type, context_die);
19478       break;
19479
19480     case ENUMERAL_TYPE:
19481     case RECORD_TYPE:
19482     case UNION_TYPE:
19483     case QUAL_UNION_TYPE:
19484       /* If this is a nested type whose containing class hasn't been written
19485          out yet, writing it out will cover this one, too.  This does not apply
19486          to instantiations of member class templates; they need to be added to
19487          the containing class as they are generated.  FIXME: This hurts the
19488          idea of combining type decls from multiple TUs, since we can't predict
19489          what set of template instantiations we'll get.  */
19490       if (TYPE_CONTEXT (type)
19491           && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
19492           && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
19493         {
19494           gen_type_die_with_usage (TYPE_CONTEXT (type), context_die, usage);
19495
19496           if (TREE_ASM_WRITTEN (type))
19497             return;
19498
19499           /* If that failed, attach ourselves to the stub.  */
19500           push_decl_scope (TYPE_CONTEXT (type));
19501           context_die = lookup_type_die (TYPE_CONTEXT (type));
19502           need_pop = 1;
19503         }
19504       else if (TYPE_CONTEXT (type) != NULL_TREE
19505                && (TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL))
19506         {
19507           /* If this type is local to a function that hasn't been written
19508              out yet, use a NULL context for now; it will be fixed up in
19509              decls_for_scope.  */
19510           context_die = lookup_decl_die (TYPE_CONTEXT (type));
19511           need_pop = 0;
19512         }
19513       else
19514         {
19515           context_die = declare_in_namespace (type, context_die);
19516           need_pop = 0;
19517         }
19518
19519       if (TREE_CODE (type) == ENUMERAL_TYPE)
19520         {
19521           /* This might have been written out by the call to
19522              declare_in_namespace.  */
19523           if (!TREE_ASM_WRITTEN (type))
19524             gen_enumeration_type_die (type, context_die);
19525         }
19526       else
19527         gen_struct_or_union_type_die (type, context_die, usage);
19528
19529       if (need_pop)
19530         pop_decl_scope ();
19531
19532       /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
19533          it up if it is ever completed.  gen_*_type_die will set it for us
19534          when appropriate.  */
19535       return;
19536
19537     case VOID_TYPE:
19538     case INTEGER_TYPE:
19539     case REAL_TYPE:
19540     case FIXED_POINT_TYPE:
19541     case COMPLEX_TYPE:
19542     case BOOLEAN_TYPE:
19543       /* No DIEs needed for fundamental types.  */
19544       break;
19545
19546     case LANG_TYPE:
19547       /* Just use DW_TAG_unspecified_type.  */
19548       {
19549         dw_die_ref type_die = lookup_type_die (type);
19550         if (type_die == NULL)
19551           {
19552             tree name = TYPE_NAME (type);
19553             if (TREE_CODE (name) == TYPE_DECL)
19554               name = DECL_NAME (name);
19555             type_die = new_die (DW_TAG_unspecified_type, comp_unit_die, type);
19556             add_name_attribute (type_die, IDENTIFIER_POINTER (name));
19557             equate_type_number_to_die (type, type_die);
19558           }
19559       }
19560       break;
19561
19562     default:
19563       gcc_unreachable ();
19564     }
19565
19566   TREE_ASM_WRITTEN (type) = 1;
19567 }
19568
19569 static void
19570 gen_type_die (tree type, dw_die_ref context_die)
19571 {
19572   gen_type_die_with_usage (type, context_die, DINFO_USAGE_DIR_USE);
19573 }
19574
19575 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
19576    things which are local to the given block.  */
19577
19578 static void
19579 gen_block_die (tree stmt, dw_die_ref context_die, int depth)
19580 {
19581   int must_output_die = 0;
19582   bool inlined_func;
19583
19584   /* Ignore blocks that are NULL.  */
19585   if (stmt == NULL_TREE)
19586     return;
19587
19588   inlined_func = inlined_function_outer_scope_p (stmt);
19589
19590   /* If the block is one fragment of a non-contiguous block, do not
19591      process the variables, since they will have been done by the
19592      origin block.  Do process subblocks.  */
19593   if (BLOCK_FRAGMENT_ORIGIN (stmt))
19594     {
19595       tree sub;
19596
19597       for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
19598         gen_block_die (sub, context_die, depth + 1);
19599
19600       return;
19601     }
19602
19603   /* Determine if we need to output any Dwarf DIEs at all to represent this
19604      block.  */
19605   if (inlined_func)
19606     /* The outer scopes for inlinings *must* always be represented.  We
19607        generate DW_TAG_inlined_subroutine DIEs for them.  (See below.) */
19608     must_output_die = 1;
19609   else
19610     {
19611       /* Determine if this block directly contains any "significant"
19612          local declarations which we will need to output DIEs for.  */
19613       if (debug_info_level > DINFO_LEVEL_TERSE)
19614         /* We are not in terse mode so *any* local declaration counts
19615            as being a "significant" one.  */
19616         must_output_die = ((BLOCK_VARS (stmt) != NULL
19617                             || BLOCK_NUM_NONLOCALIZED_VARS (stmt))
19618                            && (TREE_USED (stmt)
19619                                || TREE_ASM_WRITTEN (stmt)
19620                                || BLOCK_ABSTRACT (stmt)));
19621       else if ((TREE_USED (stmt)
19622                 || TREE_ASM_WRITTEN (stmt)
19623                 || BLOCK_ABSTRACT (stmt))
19624                && !dwarf2out_ignore_block (stmt))
19625         must_output_die = 1;
19626     }
19627
19628   /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
19629      DIE for any block which contains no significant local declarations at
19630      all.  Rather, in such cases we just call `decls_for_scope' so that any
19631      needed Dwarf info for any sub-blocks will get properly generated. Note
19632      that in terse mode, our definition of what constitutes a "significant"
19633      local declaration gets restricted to include only inlined function
19634      instances and local (nested) function definitions.  */
19635   if (must_output_die)
19636     {
19637       if (inlined_func)
19638         {
19639           /* If STMT block is abstract, that means we have been called
19640              indirectly from dwarf2out_abstract_function.
19641              That function rightfully marks the descendent blocks (of
19642              the abstract function it is dealing with) as being abstract,
19643              precisely to prevent us from emitting any
19644              DW_TAG_inlined_subroutine DIE as a descendent
19645              of an abstract function instance. So in that case, we should
19646              not call gen_inlined_subroutine_die.
19647
19648              Later though, when cgraph asks dwarf2out to emit info
19649              for the concrete instance of the function decl into which
19650              the concrete instance of STMT got inlined, the later will lead
19651              to the generation of a DW_TAG_inlined_subroutine DIE.  */
19652           if (! BLOCK_ABSTRACT (stmt))
19653             gen_inlined_subroutine_die (stmt, context_die, depth);
19654         }
19655       else
19656         gen_lexical_block_die (stmt, context_die, depth);
19657     }
19658   else
19659     decls_for_scope (stmt, context_die, depth);
19660 }
19661
19662 /* Process variable DECL (or variable with origin ORIGIN) within
19663    block STMT and add it to CONTEXT_DIE.  */
19664 static void
19665 process_scope_var (tree stmt, tree decl, tree origin, dw_die_ref context_die)
19666 {
19667   dw_die_ref die;
19668   tree decl_or_origin = decl ? decl : origin;
19669
19670   if (TREE_CODE (decl_or_origin) == FUNCTION_DECL)
19671     die = lookup_decl_die (decl_or_origin);
19672   else if (TREE_CODE (decl_or_origin) == TYPE_DECL
19673            && TYPE_DECL_IS_STUB (decl_or_origin))
19674     die = lookup_type_die (TREE_TYPE (decl_or_origin));
19675   else
19676     die = NULL;
19677
19678   if (die != NULL && die->die_parent == NULL)
19679     add_child_die (context_die, die);
19680   else if (TREE_CODE (decl_or_origin) == IMPORTED_DECL)
19681     dwarf2out_imported_module_or_decl_1 (decl_or_origin, DECL_NAME (decl_or_origin),
19682                                          stmt, context_die);
19683   else
19684     gen_decl_die (decl, origin, context_die);
19685 }
19686
19687 /* Generate all of the decls declared within a given scope and (recursively)
19688    all of its sub-blocks.  */
19689
19690 static void
19691 decls_for_scope (tree stmt, dw_die_ref context_die, int depth)
19692 {
19693   tree decl;
19694   unsigned int i;
19695   tree subblocks;
19696
19697   /* Ignore NULL blocks.  */
19698   if (stmt == NULL_TREE)
19699     return;
19700
19701   /* Output the DIEs to represent all of the data objects and typedefs
19702      declared directly within this block but not within any nested
19703      sub-blocks.  Also, nested function and tag DIEs have been
19704      generated with a parent of NULL; fix that up now.  */
19705   for (decl = BLOCK_VARS (stmt); decl != NULL; decl = TREE_CHAIN (decl))
19706     process_scope_var (stmt, decl, NULL_TREE, context_die);
19707   for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (stmt); i++)
19708     process_scope_var (stmt, NULL, BLOCK_NONLOCALIZED_VAR (stmt, i),
19709                        context_die);
19710
19711   /* If we're at -g1, we're not interested in subblocks.  */
19712   if (debug_info_level <= DINFO_LEVEL_TERSE)
19713     return;
19714
19715   /* Output the DIEs to represent all sub-blocks (and the items declared
19716      therein) of this block.  */
19717   for (subblocks = BLOCK_SUBBLOCKS (stmt);
19718        subblocks != NULL;
19719        subblocks = BLOCK_CHAIN (subblocks))
19720     gen_block_die (subblocks, context_die, depth + 1);
19721 }
19722
19723 /* Is this a typedef we can avoid emitting?  */
19724
19725 static inline int
19726 is_redundant_typedef (const_tree decl)
19727 {
19728   if (TYPE_DECL_IS_STUB (decl))
19729     return 1;
19730
19731   if (DECL_ARTIFICIAL (decl)
19732       && DECL_CONTEXT (decl)
19733       && is_tagged_type (DECL_CONTEXT (decl))
19734       && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
19735       && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
19736     /* Also ignore the artificial member typedef for the class name.  */
19737     return 1;
19738
19739   return 0;
19740 }
19741
19742 /* Returns the DIE for a context.  */
19743
19744 static inline dw_die_ref
19745 get_context_die (tree context)
19746 {
19747   if (context)
19748     {
19749       /* Find die that represents this context.  */
19750       if (TYPE_P (context))
19751         return force_type_die (TYPE_MAIN_VARIANT (context));
19752       else
19753         return force_decl_die (context);
19754     }
19755   return comp_unit_die;
19756 }
19757
19758 /* Returns the DIE for decl.  A DIE will always be returned.  */
19759
19760 static dw_die_ref
19761 force_decl_die (tree decl)
19762 {
19763   dw_die_ref decl_die;
19764   unsigned saved_external_flag;
19765   tree save_fn = NULL_TREE;
19766   decl_die = lookup_decl_die (decl);
19767   if (!decl_die)
19768     {
19769       dw_die_ref context_die = get_context_die (DECL_CONTEXT (decl));
19770
19771       decl_die = lookup_decl_die (decl);
19772       if (decl_die)
19773         return decl_die;
19774
19775       switch (TREE_CODE (decl))
19776         {
19777         case FUNCTION_DECL:
19778           /* Clear current_function_decl, so that gen_subprogram_die thinks
19779              that this is a declaration. At this point, we just want to force
19780              declaration die.  */
19781           save_fn = current_function_decl;
19782           current_function_decl = NULL_TREE;
19783           gen_subprogram_die (decl, context_die);
19784           current_function_decl = save_fn;
19785           break;
19786
19787         case VAR_DECL:
19788           /* Set external flag to force declaration die. Restore it after
19789            gen_decl_die() call.  */
19790           saved_external_flag = DECL_EXTERNAL (decl);
19791           DECL_EXTERNAL (decl) = 1;
19792           gen_decl_die (decl, NULL, context_die);
19793           DECL_EXTERNAL (decl) = saved_external_flag;
19794           break;
19795
19796         case NAMESPACE_DECL:
19797           if (dwarf_version >= 3 || !dwarf_strict)
19798             dwarf2out_decl (decl);
19799           else
19800             /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace.  */
19801             decl_die = comp_unit_die;
19802           break;
19803
19804         default:
19805           gcc_unreachable ();
19806         }
19807
19808       /* We should be able to find the DIE now.  */
19809       if (!decl_die)
19810         decl_die = lookup_decl_die (decl);
19811       gcc_assert (decl_die);
19812     }
19813
19814   return decl_die;
19815 }
19816
19817 /* Returns the DIE for TYPE, that must not be a base type.  A DIE is
19818    always returned.  */
19819
19820 static dw_die_ref
19821 force_type_die (tree type)
19822 {
19823   dw_die_ref type_die;
19824
19825   type_die = lookup_type_die (type);
19826   if (!type_die)
19827     {
19828       dw_die_ref context_die = get_context_die (TYPE_CONTEXT (type));
19829
19830       type_die = modified_type_die (type, TYPE_READONLY (type),
19831                                     TYPE_VOLATILE (type), context_die);
19832       gcc_assert (type_die);
19833     }
19834   return type_die;
19835 }
19836
19837 /* Force out any required namespaces to be able to output DECL,
19838    and return the new context_die for it, if it's changed.  */
19839
19840 static dw_die_ref
19841 setup_namespace_context (tree thing, dw_die_ref context_die)
19842 {
19843   tree context = (DECL_P (thing)
19844                   ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
19845   if (context && TREE_CODE (context) == NAMESPACE_DECL)
19846     /* Force out the namespace.  */
19847     context_die = force_decl_die (context);
19848
19849   return context_die;
19850 }
19851
19852 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
19853    type) within its namespace, if appropriate.
19854
19855    For compatibility with older debuggers, namespace DIEs only contain
19856    declarations; all definitions are emitted at CU scope.  */
19857
19858 static dw_die_ref
19859 declare_in_namespace (tree thing, dw_die_ref context_die)
19860 {
19861   dw_die_ref ns_context;
19862
19863   if (debug_info_level <= DINFO_LEVEL_TERSE)
19864     return context_die;
19865
19866   /* If this decl is from an inlined function, then don't try to emit it in its
19867      namespace, as we will get confused.  It would have already been emitted
19868      when the abstract instance of the inline function was emitted anyways.  */
19869   if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
19870     return context_die;
19871
19872   ns_context = setup_namespace_context (thing, context_die);
19873
19874   if (ns_context != context_die)
19875     {
19876       if (is_fortran ())
19877         return ns_context;
19878       if (DECL_P (thing))
19879         gen_decl_die (thing, NULL, ns_context);
19880       else
19881         gen_type_die (thing, ns_context);
19882     }
19883   return context_die;
19884 }
19885
19886 /* Generate a DIE for a namespace or namespace alias.  */
19887
19888 static void
19889 gen_namespace_die (tree decl, dw_die_ref context_die)
19890 {
19891   dw_die_ref namespace_die;
19892
19893   /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
19894      they are an alias of.  */
19895   if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
19896     {
19897       /* Output a real namespace or module.  */
19898       context_die = setup_namespace_context (decl, comp_unit_die);
19899       namespace_die = new_die (is_fortran ()
19900                                ? DW_TAG_module : DW_TAG_namespace,
19901                                context_die, decl);
19902       /* For Fortran modules defined in different CU don't add src coords.  */
19903       if (namespace_die->die_tag == DW_TAG_module && DECL_EXTERNAL (decl))
19904         {
19905           const char *name = dwarf2_name (decl, 0);
19906           if (name)
19907             add_name_attribute (namespace_die, name);
19908         }
19909       else
19910         add_name_and_src_coords_attributes (namespace_die, decl);
19911       if (DECL_EXTERNAL (decl))
19912         add_AT_flag (namespace_die, DW_AT_declaration, 1);
19913       equate_decl_number_to_die (decl, namespace_die);
19914     }
19915   else
19916     {
19917       /* Output a namespace alias.  */
19918
19919       /* Force out the namespace we are an alias of, if necessary.  */
19920       dw_die_ref origin_die
19921         = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
19922
19923       if (DECL_CONTEXT (decl) == NULL_TREE
19924           || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
19925         context_die = setup_namespace_context (decl, comp_unit_die);
19926       /* Now create the namespace alias DIE.  */
19927       namespace_die = new_die (DW_TAG_imported_declaration, context_die, decl);
19928       add_name_and_src_coords_attributes (namespace_die, decl);
19929       add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
19930       equate_decl_number_to_die (decl, namespace_die);
19931     }
19932 }
19933
19934 /* Generate Dwarf debug information for a decl described by DECL.  */
19935
19936 static void
19937 gen_decl_die (tree decl, tree origin, dw_die_ref context_die)
19938 {
19939   tree decl_or_origin = decl ? decl : origin;
19940   tree class_origin = NULL, ultimate_origin;
19941
19942   if (DECL_P (decl_or_origin) && DECL_IGNORED_P (decl_or_origin))
19943     return;
19944
19945   switch (TREE_CODE (decl_or_origin))
19946     {
19947     case ERROR_MARK:
19948       break;
19949
19950     case CONST_DECL:
19951       if (!is_fortran ())
19952         {
19953           /* The individual enumerators of an enum type get output when we output
19954              the Dwarf representation of the relevant enum type itself.  */
19955           break;
19956         }
19957
19958       /* Emit its type.  */
19959       gen_type_die (TREE_TYPE (decl), context_die);
19960
19961       /* And its containing namespace.  */
19962       context_die = declare_in_namespace (decl, context_die);
19963
19964       gen_const_die (decl, context_die);
19965       break;
19966
19967     case FUNCTION_DECL:
19968       /* Don't output any DIEs to represent mere function declarations,
19969          unless they are class members or explicit block externs.  */
19970       if (DECL_INITIAL (decl_or_origin) == NULL_TREE
19971           && DECL_CONTEXT (decl_or_origin) == NULL_TREE
19972           && (current_function_decl == NULL_TREE
19973               || DECL_ARTIFICIAL (decl_or_origin)))
19974         break;
19975
19976 #if 0
19977       /* FIXME */
19978       /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
19979          on local redeclarations of global functions.  That seems broken.  */
19980       if (current_function_decl != decl)
19981         /* This is only a declaration.  */;
19982 #endif
19983
19984       /* If we're emitting a clone, emit info for the abstract instance.  */
19985       if (origin || DECL_ORIGIN (decl) != decl)
19986         dwarf2out_abstract_function (origin
19987                                      ? DECL_ORIGIN (origin)
19988                                      : DECL_ABSTRACT_ORIGIN (decl));
19989
19990       /* If we're emitting an out-of-line copy of an inline function,
19991          emit info for the abstract instance and set up to refer to it.  */
19992       else if (cgraph_function_possibly_inlined_p (decl)
19993                && ! DECL_ABSTRACT (decl)
19994                && ! class_or_namespace_scope_p (context_die)
19995                /* dwarf2out_abstract_function won't emit a die if this is just
19996                   a declaration.  We must avoid setting DECL_ABSTRACT_ORIGIN in
19997                   that case, because that works only if we have a die.  */
19998                && DECL_INITIAL (decl) != NULL_TREE)
19999         {
20000           dwarf2out_abstract_function (decl);
20001           set_decl_origin_self (decl);
20002         }
20003
20004       /* Otherwise we're emitting the primary DIE for this decl.  */
20005       else if (debug_info_level > DINFO_LEVEL_TERSE)
20006         {
20007           /* Before we describe the FUNCTION_DECL itself, make sure that we
20008              have described its return type.  */
20009           gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
20010
20011           /* And its virtual context.  */
20012           if (DECL_VINDEX (decl) != NULL_TREE)
20013             gen_type_die (DECL_CONTEXT (decl), context_die);
20014
20015           /* And its containing type.  */
20016           if (!origin)
20017             origin = decl_class_context (decl);
20018           if (origin != NULL_TREE)
20019             gen_type_die_for_member (origin, decl, context_die);
20020
20021           /* And its containing namespace.  */
20022           context_die = declare_in_namespace (decl, context_die);
20023         }
20024
20025       /* Now output a DIE to represent the function itself.  */
20026       if (decl)
20027         gen_subprogram_die (decl, context_die);
20028       break;
20029
20030     case TYPE_DECL:
20031       /* If we are in terse mode, don't generate any DIEs to represent any
20032          actual typedefs.  */
20033       if (debug_info_level <= DINFO_LEVEL_TERSE)
20034         break;
20035
20036       /* In the special case of a TYPE_DECL node representing the declaration
20037          of some type tag, if the given TYPE_DECL is marked as having been
20038          instantiated from some other (original) TYPE_DECL node (e.g. one which
20039          was generated within the original definition of an inline function) we
20040          used to generate a special (abbreviated) DW_TAG_structure_type,
20041          DW_TAG_union_type, or DW_TAG_enumeration_type DIE here.  But nothing
20042          should be actually referencing those DIEs, as variable DIEs with that
20043          type would be emitted already in the abstract origin, so it was always
20044          removed during unused type prunning.  Don't add anything in this
20045          case.  */
20046       if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
20047         break;
20048
20049       if (is_redundant_typedef (decl))
20050         gen_type_die (TREE_TYPE (decl), context_die);
20051       else
20052         /* Output a DIE to represent the typedef itself.  */
20053         gen_typedef_die (decl, context_die);
20054       break;
20055
20056     case LABEL_DECL:
20057       if (debug_info_level >= DINFO_LEVEL_NORMAL)
20058         gen_label_die (decl, context_die);
20059       break;
20060
20061     case VAR_DECL:
20062     case RESULT_DECL:
20063       /* If we are in terse mode, don't generate any DIEs to represent any
20064          variable declarations or definitions.  */
20065       if (debug_info_level <= DINFO_LEVEL_TERSE)
20066         break;
20067
20068       /* Output any DIEs that are needed to specify the type of this data
20069          object.  */
20070       if (decl_by_reference_p (decl_or_origin))
20071         gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
20072       else
20073         gen_type_die (TREE_TYPE (decl_or_origin), context_die);
20074
20075       /* And its containing type.  */
20076       class_origin = decl_class_context (decl_or_origin);
20077       if (class_origin != NULL_TREE)
20078         gen_type_die_for_member (class_origin, decl_or_origin, context_die);
20079
20080       /* And its containing namespace.  */
20081       context_die = declare_in_namespace (decl_or_origin, context_die);
20082
20083       /* Now output the DIE to represent the data object itself.  This gets
20084          complicated because of the possibility that the VAR_DECL really
20085          represents an inlined instance of a formal parameter for an inline
20086          function.  */
20087       ultimate_origin = decl_ultimate_origin (decl_or_origin);
20088       if (ultimate_origin != NULL_TREE
20089           && TREE_CODE (ultimate_origin) == PARM_DECL)
20090         gen_formal_parameter_die (decl, origin,
20091                                   true /* Emit name attribute.  */,
20092                                   context_die);
20093       else
20094         gen_variable_die (decl, origin, context_die);
20095       break;
20096
20097     case FIELD_DECL:
20098       /* Ignore the nameless fields that are used to skip bits but handle C++
20099          anonymous unions and structs.  */
20100       if (DECL_NAME (decl) != NULL_TREE
20101           || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
20102           || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
20103         {
20104           gen_type_die (member_declared_type (decl), context_die);
20105           gen_field_die (decl, context_die);
20106         }
20107       break;
20108
20109     case PARM_DECL:
20110       if (DECL_BY_REFERENCE (decl_or_origin))
20111         gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
20112       else
20113         gen_type_die (TREE_TYPE (decl_or_origin), context_die);
20114       gen_formal_parameter_die (decl, origin,
20115                                 true /* Emit name attribute.  */,
20116                                 context_die);
20117       break;
20118
20119     case NAMESPACE_DECL:
20120     case IMPORTED_DECL:
20121       if (dwarf_version >= 3 || !dwarf_strict)
20122         gen_namespace_die (decl, context_die);
20123       break;
20124
20125     default:
20126       /* Probably some frontend-internal decl.  Assume we don't care.  */
20127       gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
20128       break;
20129     }
20130 }
20131 \f
20132 /* Output debug information for global decl DECL.  Called from toplev.c after
20133    compilation proper has finished.  */
20134
20135 static void
20136 dwarf2out_global_decl (tree decl)
20137 {
20138   /* Output DWARF2 information for file-scope tentative data object
20139      declarations, file-scope (extern) function declarations (which
20140      had no corresponding body) and file-scope tagged type declarations
20141      and definitions which have not yet been forced out.  */
20142   if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
20143     dwarf2out_decl (decl);
20144 }
20145
20146 /* Output debug information for type decl DECL.  Called from toplev.c
20147    and from language front ends (to record built-in types).  */
20148 static void
20149 dwarf2out_type_decl (tree decl, int local)
20150 {
20151   if (!local)
20152     dwarf2out_decl (decl);
20153 }
20154
20155 /* Output debug information for imported module or decl DECL.
20156    NAME is non-NULL name in the lexical block if the decl has been renamed.
20157    LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
20158    that DECL belongs to.
20159    LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK.  */
20160 static void
20161 dwarf2out_imported_module_or_decl_1 (tree decl,
20162                                      tree name,
20163                                      tree lexical_block,
20164                                      dw_die_ref lexical_block_die)
20165 {
20166   expanded_location xloc;
20167   dw_die_ref imported_die = NULL;
20168   dw_die_ref at_import_die;
20169
20170   if (TREE_CODE (decl) == IMPORTED_DECL)
20171     {
20172       xloc = expand_location (DECL_SOURCE_LOCATION (decl));
20173       decl = IMPORTED_DECL_ASSOCIATED_DECL (decl);
20174       gcc_assert (decl);
20175     }
20176   else
20177     xloc = expand_location (input_location);
20178
20179   if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
20180     {
20181       at_import_die = force_type_die (TREE_TYPE (decl));
20182       /* For namespace N { typedef void T; } using N::T; base_type_die
20183          returns NULL, but DW_TAG_imported_declaration requires
20184          the DW_AT_import tag.  Force creation of DW_TAG_typedef.  */
20185       if (!at_import_die)
20186         {
20187           gcc_assert (TREE_CODE (decl) == TYPE_DECL);
20188           gen_typedef_die (decl, get_context_die (DECL_CONTEXT (decl)));
20189           at_import_die = lookup_type_die (TREE_TYPE (decl));
20190           gcc_assert (at_import_die);
20191         }
20192     }
20193   else
20194     {
20195       at_import_die = lookup_decl_die (decl);
20196       if (!at_import_die)
20197         {
20198           /* If we're trying to avoid duplicate debug info, we may not have
20199              emitted the member decl for this field.  Emit it now.  */
20200           if (TREE_CODE (decl) == FIELD_DECL)
20201             {
20202               tree type = DECL_CONTEXT (decl);
20203
20204               if (TYPE_CONTEXT (type)
20205                   && TYPE_P (TYPE_CONTEXT (type))
20206                   && !should_emit_struct_debug (TYPE_CONTEXT (type),
20207                                                 DINFO_USAGE_DIR_USE))
20208                 return;
20209               gen_type_die_for_member (type, decl,
20210                                        get_context_die (TYPE_CONTEXT (type)));
20211             }
20212           at_import_die = force_decl_die (decl);
20213         }
20214     }
20215
20216   if (TREE_CODE (decl) == NAMESPACE_DECL)
20217     {
20218       if (dwarf_version >= 3 || !dwarf_strict)
20219         imported_die = new_die (DW_TAG_imported_module,
20220                                 lexical_block_die,
20221                                 lexical_block);
20222       else
20223         return;
20224     }
20225   else
20226     imported_die = new_die (DW_TAG_imported_declaration,
20227                             lexical_block_die,
20228                             lexical_block);
20229
20230   add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
20231   add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
20232   if (name)
20233     add_AT_string (imported_die, DW_AT_name,
20234                    IDENTIFIER_POINTER (name));
20235   add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
20236 }
20237
20238 /* Output debug information for imported module or decl DECL.
20239    NAME is non-NULL name in context if the decl has been renamed.
20240    CHILD is true if decl is one of the renamed decls as part of
20241    importing whole module.  */
20242
20243 static void
20244 dwarf2out_imported_module_or_decl (tree decl, tree name, tree context,
20245                                    bool child)
20246 {
20247   /* dw_die_ref at_import_die;  */
20248   dw_die_ref scope_die;
20249
20250   if (debug_info_level <= DINFO_LEVEL_TERSE)
20251     return;
20252
20253   gcc_assert (decl);
20254
20255   /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
20256      We need decl DIE for reference and scope die. First, get DIE for the decl
20257      itself.  */
20258
20259   /* Get the scope die for decl context. Use comp_unit_die for global module
20260      or decl. If die is not found for non globals, force new die.  */
20261   if (context
20262       && TYPE_P (context)
20263       && !should_emit_struct_debug (context, DINFO_USAGE_DIR_USE))
20264     return;
20265
20266   if (!(dwarf_version >= 3 || !dwarf_strict))
20267     return;
20268
20269   scope_die = get_context_die (context);
20270
20271   if (child)
20272     {
20273       gcc_assert (scope_die->die_child);
20274       gcc_assert (scope_die->die_child->die_tag == DW_TAG_imported_module);
20275       gcc_assert (TREE_CODE (decl) != NAMESPACE_DECL);
20276       scope_die = scope_die->die_child;
20277     }
20278
20279   /* OK, now we have DIEs for decl as well as scope. Emit imported die.  */
20280   dwarf2out_imported_module_or_decl_1 (decl, name, context, scope_die);
20281
20282 }
20283
20284 /* Write the debugging output for DECL.  */
20285
20286 void
20287 dwarf2out_decl (tree decl)
20288 {
20289   dw_die_ref context_die = comp_unit_die;
20290
20291   switch (TREE_CODE (decl))
20292     {
20293     case ERROR_MARK:
20294       return;
20295
20296     case FUNCTION_DECL:
20297       /* What we would really like to do here is to filter out all mere
20298          file-scope declarations of file-scope functions which are never
20299          referenced later within this translation unit (and keep all of ones
20300          that *are* referenced later on) but we aren't clairvoyant, so we have
20301          no idea which functions will be referenced in the future (i.e. later
20302          on within the current translation unit). So here we just ignore all
20303          file-scope function declarations which are not also definitions.  If
20304          and when the debugger needs to know something about these functions,
20305          it will have to hunt around and find the DWARF information associated
20306          with the definition of the function.
20307
20308          We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
20309          nodes represent definitions and which ones represent mere
20310          declarations.  We have to check DECL_INITIAL instead. That's because
20311          the C front-end supports some weird semantics for "extern inline"
20312          function definitions.  These can get inlined within the current
20313          translation unit (and thus, we need to generate Dwarf info for their
20314          abstract instances so that the Dwarf info for the concrete inlined
20315          instances can have something to refer to) but the compiler never
20316          generates any out-of-lines instances of such things (despite the fact
20317          that they *are* definitions).
20318
20319          The important point is that the C front-end marks these "extern
20320          inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
20321          them anyway. Note that the C++ front-end also plays some similar games
20322          for inline function definitions appearing within include files which
20323          also contain `#pragma interface' pragmas.  */
20324       if (DECL_INITIAL (decl) == NULL_TREE)
20325         return;
20326
20327       /* If we're a nested function, initially use a parent of NULL; if we're
20328          a plain function, this will be fixed up in decls_for_scope.  If
20329          we're a method, it will be ignored, since we already have a DIE.  */
20330       if (decl_function_context (decl)
20331           /* But if we're in terse mode, we don't care about scope.  */
20332           && debug_info_level > DINFO_LEVEL_TERSE)
20333         context_die = NULL;
20334       break;
20335
20336     case VAR_DECL:
20337       /* Ignore this VAR_DECL if it refers to a file-scope extern data object
20338          declaration and if the declaration was never even referenced from
20339          within this entire compilation unit.  We suppress these DIEs in
20340          order to save space in the .debug section (by eliminating entries
20341          which are probably useless).  Note that we must not suppress
20342          block-local extern declarations (whether used or not) because that
20343          would screw-up the debugger's name lookup mechanism and cause it to
20344          miss things which really ought to be in scope at a given point.  */
20345       if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
20346         return;
20347
20348       /* For local statics lookup proper context die.  */
20349       if (TREE_STATIC (decl) && decl_function_context (decl))
20350         context_die = lookup_decl_die (DECL_CONTEXT (decl));
20351
20352       /* If we are in terse mode, don't generate any DIEs to represent any
20353          variable declarations or definitions.  */
20354       if (debug_info_level <= DINFO_LEVEL_TERSE)
20355         return;
20356       break;
20357
20358     case CONST_DECL:
20359       if (debug_info_level <= DINFO_LEVEL_TERSE)
20360         return;
20361       if (!is_fortran ())
20362         return;
20363       if (TREE_STATIC (decl) && decl_function_context (decl))
20364         context_die = lookup_decl_die (DECL_CONTEXT (decl));
20365       break;
20366
20367     case NAMESPACE_DECL:
20368     case IMPORTED_DECL:
20369       if (debug_info_level <= DINFO_LEVEL_TERSE)
20370         return;
20371       if (lookup_decl_die (decl) != NULL)
20372         return;
20373       break;
20374
20375     case TYPE_DECL:
20376       /* Don't emit stubs for types unless they are needed by other DIEs.  */
20377       if (TYPE_DECL_SUPPRESS_DEBUG (decl))
20378         return;
20379
20380       /* Don't bother trying to generate any DIEs to represent any of the
20381          normal built-in types for the language we are compiling.  */
20382       if (DECL_IS_BUILTIN (decl))
20383         {
20384           /* OK, we need to generate one for `bool' so GDB knows what type
20385              comparisons have.  */
20386           if (is_cxx ()
20387               && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE
20388               && ! DECL_IGNORED_P (decl))
20389             modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
20390
20391           return;
20392         }
20393
20394       /* If we are in terse mode, don't generate any DIEs for types.  */
20395       if (debug_info_level <= DINFO_LEVEL_TERSE)
20396         return;
20397
20398       /* If we're a function-scope tag, initially use a parent of NULL;
20399          this will be fixed up in decls_for_scope.  */
20400       if (decl_function_context (decl))
20401         context_die = NULL;
20402
20403       break;
20404
20405     default:
20406       return;
20407     }
20408
20409   gen_decl_die (decl, NULL, context_die);
20410 }
20411
20412 /* Write the debugging output for DECL.  */
20413
20414 static void
20415 dwarf2out_function_decl (tree decl)
20416 {
20417   dwarf2out_decl (decl);
20418
20419   htab_empty (decl_loc_table);
20420 }
20421
20422 /* Output a marker (i.e. a label) for the beginning of the generated code for
20423    a lexical block.  */
20424
20425 static void
20426 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
20427                        unsigned int blocknum)
20428 {
20429   switch_to_section (current_function_section ());
20430   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
20431 }
20432
20433 /* Output a marker (i.e. a label) for the end of the generated code for a
20434    lexical block.  */
20435
20436 static void
20437 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
20438 {
20439   switch_to_section (current_function_section ());
20440   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
20441 }
20442
20443 /* Returns nonzero if it is appropriate not to emit any debugging
20444    information for BLOCK, because it doesn't contain any instructions.
20445
20446    Don't allow this for blocks with nested functions or local classes
20447    as we would end up with orphans, and in the presence of scheduling
20448    we may end up calling them anyway.  */
20449
20450 static bool
20451 dwarf2out_ignore_block (const_tree block)
20452 {
20453   tree decl;
20454   unsigned int i;
20455
20456   for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
20457     if (TREE_CODE (decl) == FUNCTION_DECL
20458         || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
20459       return 0;
20460   for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (block); i++)
20461     {
20462       decl = BLOCK_NONLOCALIZED_VAR (block, i);
20463       if (TREE_CODE (decl) == FUNCTION_DECL
20464           || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
20465       return 0;
20466     }
20467
20468   return 1;
20469 }
20470
20471 /* Hash table routines for file_hash.  */
20472
20473 static int
20474 file_table_eq (const void *p1_p, const void *p2_p)
20475 {
20476   const struct dwarf_file_data *const p1 =
20477     (const struct dwarf_file_data *) p1_p;
20478   const char *const p2 = (const char *) p2_p;
20479   return strcmp (p1->filename, p2) == 0;
20480 }
20481
20482 static hashval_t
20483 file_table_hash (const void *p_p)
20484 {
20485   const struct dwarf_file_data *const p = (const struct dwarf_file_data *) p_p;
20486   return htab_hash_string (p->filename);
20487 }
20488
20489 /* Lookup FILE_NAME (in the list of filenames that we know about here in
20490    dwarf2out.c) and return its "index".  The index of each (known) filename is
20491    just a unique number which is associated with only that one filename.  We
20492    need such numbers for the sake of generating labels (in the .debug_sfnames
20493    section) and references to those files numbers (in the .debug_srcinfo
20494    and.debug_macinfo sections).  If the filename given as an argument is not
20495    found in our current list, add it to the list and assign it the next
20496    available unique index number.  In order to speed up searches, we remember
20497    the index of the filename was looked up last.  This handles the majority of
20498    all searches.  */
20499
20500 static struct dwarf_file_data *
20501 lookup_filename (const char *file_name)
20502 {
20503   void ** slot;
20504   struct dwarf_file_data * created;
20505
20506   /* Check to see if the file name that was searched on the previous
20507      call matches this file name.  If so, return the index.  */
20508   if (file_table_last_lookup
20509       && (file_name == file_table_last_lookup->filename
20510           || strcmp (file_table_last_lookup->filename, file_name) == 0))
20511     return file_table_last_lookup;
20512
20513   /* Didn't match the previous lookup, search the table.  */
20514   slot = htab_find_slot_with_hash (file_table, file_name,
20515                                    htab_hash_string (file_name), INSERT);
20516   if (*slot)
20517     return (struct dwarf_file_data *) *slot;
20518
20519   created = GGC_NEW (struct dwarf_file_data);
20520   created->filename = file_name;
20521   created->emitted_number = 0;
20522   *slot = created;
20523   return created;
20524 }
20525
20526 /* If the assembler will construct the file table, then translate the compiler
20527    internal file table number into the assembler file table number, and emit
20528    a .file directive if we haven't already emitted one yet.  The file table
20529    numbers are different because we prune debug info for unused variables and
20530    types, which may include filenames.  */
20531
20532 static int
20533 maybe_emit_file (struct dwarf_file_data * fd)
20534 {
20535   if (! fd->emitted_number)
20536     {
20537       if (last_emitted_file)
20538         fd->emitted_number = last_emitted_file->emitted_number + 1;
20539       else
20540         fd->emitted_number = 1;
20541       last_emitted_file = fd;
20542
20543       if (DWARF2_ASM_LINE_DEBUG_INFO)
20544         {
20545           fprintf (asm_out_file, "\t.file %u ", fd->emitted_number);
20546           output_quoted_string (asm_out_file,
20547                                 remap_debug_filename (fd->filename));
20548           fputc ('\n', asm_out_file);
20549         }
20550     }
20551
20552   return fd->emitted_number;
20553 }
20554
20555 /* Schedule generation of a DW_AT_const_value attribute to DIE.
20556    That generation should happen after function debug info has been
20557    generated. The value of the attribute is the constant value of ARG.  */
20558
20559 static void
20560 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die, tree arg)
20561 {
20562   die_arg_entry entry;
20563
20564   if (!die || !arg)
20565     return;
20566
20567   if (!tmpl_value_parm_die_table)
20568     tmpl_value_parm_die_table
20569       = VEC_alloc (die_arg_entry, gc, 32);
20570
20571   entry.die = die;
20572   entry.arg = arg;
20573   VEC_safe_push (die_arg_entry, gc,
20574                  tmpl_value_parm_die_table,
20575                  &entry);
20576 }
20577
20578 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
20579    by append_entry_to_tmpl_value_parm_die_table. This function must
20580    be called after function DIEs have been generated.  */
20581
20582 static void
20583 gen_remaining_tmpl_value_param_die_attribute (void)
20584 {
20585   if (tmpl_value_parm_die_table)
20586     {
20587       unsigned i;
20588       die_arg_entry *e;
20589
20590       for (i = 0;
20591            VEC_iterate (die_arg_entry, tmpl_value_parm_die_table, i, e);
20592            i++)
20593         tree_add_const_value_attribute (e->die, e->arg);
20594     }
20595 }
20596
20597
20598 /* Replace DW_AT_name for the decl with name.  */
20599
20600 static void
20601 dwarf2out_set_name (tree decl, tree name)
20602 {
20603   dw_die_ref die;
20604   dw_attr_ref attr;
20605   const char *dname;
20606
20607   die = TYPE_SYMTAB_DIE (decl);
20608   if (!die)
20609     return;
20610
20611   dname = dwarf2_name (name, 0);
20612   if (!dname)
20613     return;
20614
20615   attr = get_AT (die, DW_AT_name);
20616   if (attr)
20617     {
20618       struct indirect_string_node *node;
20619
20620       node = find_AT_string (dname);
20621       /* replace the string.  */
20622       attr->dw_attr_val.v.val_str = node;
20623     }
20624
20625   else
20626     add_name_attribute (die, dname);
20627 }
20628
20629 /* Called by the final INSN scan whenever we see a direct function call.
20630    Make an entry into the direct call table, recording the point of call
20631    and a reference to the target function's debug entry.  */
20632
20633 static void
20634 dwarf2out_direct_call (tree targ)
20635 {
20636   dcall_entry e;
20637   tree origin = decl_ultimate_origin (targ);
20638
20639   /* If this is a clone, use the abstract origin as the target.  */
20640   if (origin)
20641     targ = origin;
20642
20643   e.poc_label_num = poc_label_num++;
20644   e.poc_decl = current_function_decl;
20645   e.targ_die = force_decl_die (targ);
20646   VEC_safe_push (dcall_entry, gc, dcall_table, &e);
20647
20648   /* Drop a label at the return point to mark the point of call.  */
20649   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LPOC", e.poc_label_num);
20650 }
20651
20652 /* Returns a hash value for X (which really is a struct vcall_insn).  */
20653
20654 static hashval_t
20655 vcall_insn_table_hash (const void *x)
20656 {
20657   return (hashval_t) ((const struct vcall_insn *) x)->insn_uid;
20658 }
20659
20660 /* Return nonzero if insn_uid of struct vcall_insn *X is the same as
20661    insnd_uid of *Y.  */
20662
20663 static int
20664 vcall_insn_table_eq (const void *x, const void *y)
20665 {
20666   return (((const struct vcall_insn *) x)->insn_uid
20667           == ((const struct vcall_insn *) y)->insn_uid);
20668 }
20669
20670 /* Associate VTABLE_SLOT with INSN_UID in the VCALL_INSN_TABLE.  */
20671
20672 static void
20673 store_vcall_insn (unsigned int vtable_slot, int insn_uid)
20674 {
20675   struct vcall_insn *item = GGC_NEW (struct vcall_insn);
20676   struct vcall_insn **slot;
20677
20678   gcc_assert (item);
20679   item->insn_uid = insn_uid;
20680   item->vtable_slot = vtable_slot;
20681   slot = (struct vcall_insn **)
20682       htab_find_slot_with_hash (vcall_insn_table, &item,
20683                                 (hashval_t) insn_uid, INSERT);
20684   *slot = item;
20685 }
20686
20687 /* Return the VTABLE_SLOT associated with INSN_UID.  */
20688
20689 static unsigned int
20690 lookup_vcall_insn (unsigned int insn_uid)
20691 {
20692   struct vcall_insn item;
20693   struct vcall_insn *p;
20694
20695   item.insn_uid = insn_uid;
20696   item.vtable_slot = 0;
20697   p = (struct vcall_insn *) htab_find_with_hash (vcall_insn_table,
20698                                                  (void *) &item,
20699                                                  (hashval_t) insn_uid);
20700   if (p == NULL)
20701     return (unsigned int) -1;
20702   return p->vtable_slot;
20703 }
20704
20705
20706 /* Called when lowering indirect calls to RTL.  We make a note of INSN_UID
20707    and the OBJ_TYPE_REF_TOKEN from ADDR.  For C++ virtual calls, the token
20708    is the vtable slot index that we will need to put in the virtual call
20709    table later.  */
20710
20711 static void
20712 dwarf2out_virtual_call_token (tree addr, int insn_uid)
20713 {
20714   if (is_cxx() && TREE_CODE (addr) == OBJ_TYPE_REF)
20715     {
20716       tree token = OBJ_TYPE_REF_TOKEN (addr);
20717       if (TREE_CODE (token) == INTEGER_CST)
20718         store_vcall_insn (TREE_INT_CST_LOW (token), insn_uid);
20719     }
20720 }
20721
20722 /* Called when scheduling RTL, when a CALL_INSN is split.  Copies the
20723    OBJ_TYPE_REF_TOKEN previously associated with OLD_INSN and associates it
20724    with NEW_INSN.  */
20725
20726 static void
20727 dwarf2out_copy_call_info (rtx old_insn, rtx new_insn)
20728 {
20729   unsigned int vtable_slot = lookup_vcall_insn (INSN_UID (old_insn));
20730
20731   if (vtable_slot != (unsigned int) -1)
20732     store_vcall_insn (vtable_slot, INSN_UID (new_insn));
20733 }
20734
20735 /* Called by the final INSN scan whenever we see a virtual function call.
20736    Make an entry into the virtual call table, recording the point of call
20737    and the slot index of the vtable entry used to call the virtual member
20738    function.  The slot index was associated with the INSN_UID during the
20739    lowering to RTL.  */
20740
20741 static void
20742 dwarf2out_virtual_call (int insn_uid)
20743 {
20744   unsigned int vtable_slot = lookup_vcall_insn (insn_uid);
20745   vcall_entry e;
20746
20747   if (vtable_slot == (unsigned int) -1)
20748     return;
20749
20750   e.poc_label_num = poc_label_num++;
20751   e.vtable_slot = vtable_slot;
20752   VEC_safe_push (vcall_entry, gc, vcall_table, &e);
20753
20754   /* Drop a label at the return point to mark the point of call.  */
20755   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LPOC", e.poc_label_num);
20756 }
20757
20758 /* Called by the final INSN scan whenever we see a var location.  We
20759    use it to drop labels in the right places, and throw the location in
20760    our lookup table.  */
20761
20762 static void
20763 dwarf2out_var_location (rtx loc_note)
20764 {
20765   char loclabel[MAX_ARTIFICIAL_LABEL_BYTES + 2];
20766   struct var_loc_node *newloc;
20767   rtx next_real;
20768   static const char *last_label;
20769   static const char *last_postcall_label;
20770   static bool last_in_cold_section_p;
20771   tree decl;
20772
20773   if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
20774     return;
20775
20776   next_real = next_real_insn (loc_note);
20777   /* If there are no instructions which would be affected by this note,
20778      don't do anything.  */
20779   if (next_real == NULL_RTX)
20780     return;
20781
20782   /* If there were any real insns between note we processed last time
20783      and this note (or if it is the first note), clear
20784      last_{,postcall_}label so that they are not reused this time.  */
20785   if (last_var_location_insn == NULL_RTX
20786       || last_var_location_insn != next_real
20787       || last_in_cold_section_p != in_cold_section_p)
20788     {
20789       last_label = NULL;
20790       last_postcall_label = NULL;
20791     }
20792
20793   decl = NOTE_VAR_LOCATION_DECL (loc_note);
20794   newloc = add_var_loc_to_decl (decl, loc_note,
20795                                 NOTE_DURING_CALL_P (loc_note)
20796                                 ? last_postcall_label : last_label);
20797   if (newloc == NULL)
20798     return;
20799
20800   /* If there were no real insns between note we processed last time
20801      and this note, use the label we emitted last time.  Otherwise
20802      create a new label and emit it.  */
20803   if (last_label == NULL)
20804     {
20805       ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
20806       ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
20807       loclabel_num++;
20808       last_label = ggc_strdup (loclabel);
20809     }
20810
20811   if (!NOTE_DURING_CALL_P (loc_note))
20812     newloc->label = last_label;
20813   else
20814     {
20815       if (!last_postcall_label)
20816         {
20817           sprintf (loclabel, "%s-1", last_label);
20818           last_postcall_label = ggc_strdup (loclabel);
20819         }
20820       newloc->label = last_postcall_label;
20821     }
20822
20823   last_var_location_insn = next_real;
20824   last_in_cold_section_p = in_cold_section_p;
20825 }
20826
20827 /* We need to reset the locations at the beginning of each
20828    function. We can't do this in the end_function hook, because the
20829    declarations that use the locations won't have been output when
20830    that hook is called.  Also compute have_multiple_function_sections here.  */
20831
20832 static void
20833 dwarf2out_begin_function (tree fun)
20834 {
20835   if (function_section (fun) != text_section)
20836     have_multiple_function_sections = true;
20837
20838   dwarf2out_note_section_used ();
20839 }
20840
20841 /* Output a label to mark the beginning of a source code line entry
20842    and record information relating to this source line, in
20843    'line_info_table' for later output of the .debug_line section.  */
20844
20845 static void
20846 dwarf2out_source_line (unsigned int line, const char *filename,
20847                        int discriminator, bool is_stmt)
20848 {
20849   static bool last_is_stmt = true;
20850
20851   if (debug_info_level >= DINFO_LEVEL_NORMAL
20852       && line != 0)
20853     {
20854       int file_num = maybe_emit_file (lookup_filename (filename));
20855
20856       switch_to_section (current_function_section ());
20857
20858       /* If requested, emit something human-readable.  */
20859       if (flag_debug_asm)
20860         fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
20861                  filename, line);
20862
20863       if (DWARF2_ASM_LINE_DEBUG_INFO)
20864         {
20865           /* Emit the .loc directive understood by GNU as.  */
20866           fprintf (asm_out_file, "\t.loc %d %d 0", file_num, line);
20867           if (is_stmt != last_is_stmt)
20868             {
20869               fprintf (asm_out_file, " is_stmt %d", is_stmt ? 1 : 0);
20870               last_is_stmt = is_stmt;
20871             }
20872           if (SUPPORTS_DISCRIMINATOR && discriminator != 0)
20873             fprintf (asm_out_file, " discriminator %d", discriminator);
20874           fputc ('\n', asm_out_file);
20875
20876           /* Indicate that line number info exists.  */
20877           line_info_table_in_use++;
20878         }
20879       else if (function_section (current_function_decl) != text_section)
20880         {
20881           dw_separate_line_info_ref line_info;
20882           targetm.asm_out.internal_label (asm_out_file,
20883                                           SEPARATE_LINE_CODE_LABEL,
20884                                           separate_line_info_table_in_use);
20885
20886           /* Expand the line info table if necessary.  */
20887           if (separate_line_info_table_in_use
20888               == separate_line_info_table_allocated)
20889             {
20890               separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
20891               separate_line_info_table
20892                 = GGC_RESIZEVEC (dw_separate_line_info_entry,
20893                                  separate_line_info_table,
20894                                  separate_line_info_table_allocated);
20895               memset (separate_line_info_table
20896                        + separate_line_info_table_in_use,
20897                       0,
20898                       (LINE_INFO_TABLE_INCREMENT
20899                        * sizeof (dw_separate_line_info_entry)));
20900             }
20901
20902           /* Add the new entry at the end of the line_info_table.  */
20903           line_info
20904             = &separate_line_info_table[separate_line_info_table_in_use++];
20905           line_info->dw_file_num = file_num;
20906           line_info->dw_line_num = line;
20907           line_info->function = current_function_funcdef_no;
20908         }
20909       else
20910         {
20911           dw_line_info_ref line_info;
20912
20913           targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL,
20914                                      line_info_table_in_use);
20915
20916           /* Expand the line info table if necessary.  */
20917           if (line_info_table_in_use == line_info_table_allocated)
20918             {
20919               line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
20920               line_info_table
20921                 = GGC_RESIZEVEC (dw_line_info_entry, line_info_table,
20922                                  line_info_table_allocated);
20923               memset (line_info_table + line_info_table_in_use, 0,
20924                       LINE_INFO_TABLE_INCREMENT * sizeof (dw_line_info_entry));
20925             }
20926
20927           /* Add the new entry at the end of the line_info_table.  */
20928           line_info = &line_info_table[line_info_table_in_use++];
20929           line_info->dw_file_num = file_num;
20930           line_info->dw_line_num = line;
20931         }
20932     }
20933 }
20934
20935 /* Record the beginning of a new source file.  */
20936
20937 static void
20938 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
20939 {
20940   if (flag_eliminate_dwarf2_dups && dwarf_version < 4)
20941     {
20942       /* Record the beginning of the file for break_out_includes.  */
20943       dw_die_ref bincl_die;
20944
20945       bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die, NULL);
20946       add_AT_string (bincl_die, DW_AT_name, remap_debug_filename (filename));
20947     }
20948
20949   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
20950     {
20951       int file_num = maybe_emit_file (lookup_filename (filename));
20952
20953       switch_to_section (debug_macinfo_section);
20954       dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
20955       dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
20956                                    lineno);
20957
20958       dw2_asm_output_data_uleb128 (file_num, "file %s", filename);
20959     }
20960 }
20961
20962 /* Record the end of a source file.  */
20963
20964 static void
20965 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
20966 {
20967   if (flag_eliminate_dwarf2_dups && dwarf_version < 4)
20968     /* Record the end of the file for break_out_includes.  */
20969     new_die (DW_TAG_GNU_EINCL, comp_unit_die, NULL);
20970
20971   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
20972     {
20973       switch_to_section (debug_macinfo_section);
20974       dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
20975     }
20976 }
20977
20978 /* Called from debug_define in toplev.c.  The `buffer' parameter contains
20979    the tail part of the directive line, i.e. the part which is past the
20980    initial whitespace, #, whitespace, directive-name, whitespace part.  */
20981
20982 static void
20983 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
20984                   const char *buffer ATTRIBUTE_UNUSED)
20985 {
20986   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
20987     {
20988       switch_to_section (debug_macinfo_section);
20989       dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
20990       dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
20991       dw2_asm_output_nstring (buffer, -1, "The macro");
20992     }
20993 }
20994
20995 /* Called from debug_undef in toplev.c.  The `buffer' parameter contains
20996    the tail part of the directive line, i.e. the part which is past the
20997    initial whitespace, #, whitespace, directive-name, whitespace part.  */
20998
20999 static void
21000 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
21001                  const char *buffer ATTRIBUTE_UNUSED)
21002 {
21003   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21004     {
21005       switch_to_section (debug_macinfo_section);
21006       dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
21007       dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
21008       dw2_asm_output_nstring (buffer, -1, "The macro");
21009     }
21010 }
21011
21012 /* Set up for Dwarf output at the start of compilation.  */
21013
21014 static void
21015 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
21016 {
21017   /* Allocate the file_table.  */
21018   file_table = htab_create_ggc (50, file_table_hash,
21019                                 file_table_eq, NULL);
21020
21021   /* Allocate the decl_die_table.  */
21022   decl_die_table = htab_create_ggc (10, decl_die_table_hash,
21023                                     decl_die_table_eq, NULL);
21024
21025   /* Allocate the decl_loc_table.  */
21026   decl_loc_table = htab_create_ggc (10, decl_loc_table_hash,
21027                                     decl_loc_table_eq, NULL);
21028
21029   /* Allocate the initial hunk of the decl_scope_table.  */
21030   decl_scope_table = VEC_alloc (tree, gc, 256);
21031
21032   /* Allocate the initial hunk of the abbrev_die_table.  */
21033   abbrev_die_table = GGC_CNEWVEC (dw_die_ref, ABBREV_DIE_TABLE_INCREMENT);
21034   abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
21035   /* Zero-th entry is allocated, but unused.  */
21036   abbrev_die_table_in_use = 1;
21037
21038   /* Allocate the initial hunk of the line_info_table.  */
21039   line_info_table = GGC_CNEWVEC (dw_line_info_entry, LINE_INFO_TABLE_INCREMENT);
21040   line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
21041
21042   /* Zero-th entry is allocated, but unused.  */
21043   line_info_table_in_use = 1;
21044
21045   /* Allocate the pubtypes and pubnames vectors.  */
21046   pubname_table = VEC_alloc (pubname_entry, gc, 32);
21047   pubtype_table = VEC_alloc (pubname_entry, gc, 32);
21048
21049   /* Allocate the table that maps insn UIDs to vtable slot indexes.  */
21050   vcall_insn_table = htab_create_ggc (10, vcall_insn_table_hash,
21051                                       vcall_insn_table_eq, NULL);
21052
21053   /* Generate the initial DIE for the .debug section.  Note that the (string)
21054      value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
21055      will (typically) be a relative pathname and that this pathname should be
21056      taken as being relative to the directory from which the compiler was
21057      invoked when the given (base) source file was compiled.  We will fill
21058      in this value in dwarf2out_finish.  */
21059   comp_unit_die = gen_compile_unit_die (NULL);
21060
21061   incomplete_types = VEC_alloc (tree, gc, 64);
21062
21063   used_rtx_array = VEC_alloc (rtx, gc, 32);
21064
21065   debug_info_section = get_section (DEBUG_INFO_SECTION,
21066                                     SECTION_DEBUG, NULL);
21067   debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
21068                                       SECTION_DEBUG, NULL);
21069   debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
21070                                        SECTION_DEBUG, NULL);
21071   debug_macinfo_section = get_section (DEBUG_MACINFO_SECTION,
21072                                        SECTION_DEBUG, NULL);
21073   debug_line_section = get_section (DEBUG_LINE_SECTION,
21074                                     SECTION_DEBUG, NULL);
21075   debug_loc_section = get_section (DEBUG_LOC_SECTION,
21076                                    SECTION_DEBUG, NULL);
21077   debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
21078                                         SECTION_DEBUG, NULL);
21079   debug_pubtypes_section = get_section (DEBUG_PUBTYPES_SECTION,
21080                                         SECTION_DEBUG, NULL);
21081   debug_dcall_section = get_section (DEBUG_DCALL_SECTION,
21082                                      SECTION_DEBUG, NULL);
21083   debug_vcall_section = get_section (DEBUG_VCALL_SECTION,
21084                                      SECTION_DEBUG, NULL);
21085   debug_str_section = get_section (DEBUG_STR_SECTION,
21086                                    DEBUG_STR_SECTION_FLAGS, NULL);
21087   debug_ranges_section = get_section (DEBUG_RANGES_SECTION,
21088                                       SECTION_DEBUG, NULL);
21089   debug_frame_section = get_section (DEBUG_FRAME_SECTION,
21090                                      SECTION_DEBUG, NULL);
21091
21092   ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
21093   ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
21094                                DEBUG_ABBREV_SECTION_LABEL, 0);
21095   ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
21096   ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
21097                                COLD_TEXT_SECTION_LABEL, 0);
21098   ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
21099
21100   ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
21101                                DEBUG_INFO_SECTION_LABEL, 0);
21102   ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
21103                                DEBUG_LINE_SECTION_LABEL, 0);
21104   ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
21105                                DEBUG_RANGES_SECTION_LABEL, 0);
21106   switch_to_section (debug_abbrev_section);
21107   ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
21108   switch_to_section (debug_info_section);
21109   ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
21110   switch_to_section (debug_line_section);
21111   ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
21112
21113   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21114     {
21115       switch_to_section (debug_macinfo_section);
21116       ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
21117                                    DEBUG_MACINFO_SECTION_LABEL, 0);
21118       ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
21119     }
21120
21121   switch_to_section (text_section);
21122   ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
21123   if (flag_reorder_blocks_and_partition)
21124     {
21125       cold_text_section = unlikely_text_section ();
21126       switch_to_section (cold_text_section);
21127       ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
21128     }
21129
21130 }
21131
21132 /* Called before cgraph_optimize starts outputtting functions, variables
21133    and toplevel asms into assembly.  */
21134
21135 static void
21136 dwarf2out_assembly_start (void)
21137 {
21138   if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE && dwarf2out_do_cfi_asm ())
21139     {
21140 #ifndef TARGET_UNWIND_INFO
21141       if (USING_SJLJ_EXCEPTIONS || (!flag_unwind_tables && !flag_exceptions))
21142 #endif
21143         fprintf (asm_out_file, "\t.cfi_sections\t.debug_frame\n");
21144     }
21145 }
21146
21147 /* A helper function for dwarf2out_finish called through
21148    htab_traverse.  Emit one queued .debug_str string.  */
21149
21150 static int
21151 output_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
21152 {
21153   struct indirect_string_node *node = (struct indirect_string_node *) *h;
21154
21155   if (node->label && node->refcount)
21156     {
21157       switch_to_section (debug_str_section);
21158       ASM_OUTPUT_LABEL (asm_out_file, node->label);
21159       assemble_string (node->str, strlen (node->str) + 1);
21160     }
21161
21162   return 1;
21163 }
21164
21165 #if ENABLE_ASSERT_CHECKING
21166 /* Verify that all marks are clear.  */
21167
21168 static void
21169 verify_marks_clear (dw_die_ref die)
21170 {
21171   dw_die_ref c;
21172
21173   gcc_assert (! die->die_mark);
21174   FOR_EACH_CHILD (die, c, verify_marks_clear (c));
21175 }
21176 #endif /* ENABLE_ASSERT_CHECKING */
21177
21178 /* Clear the marks for a die and its children.
21179    Be cool if the mark isn't set.  */
21180
21181 static void
21182 prune_unmark_dies (dw_die_ref die)
21183 {
21184   dw_die_ref c;
21185
21186   if (die->die_mark)
21187     die->die_mark = 0;
21188   FOR_EACH_CHILD (die, c, prune_unmark_dies (c));
21189 }
21190
21191 /* Given DIE that we're marking as used, find any other dies
21192    it references as attributes and mark them as used.  */
21193
21194 static void
21195 prune_unused_types_walk_attribs (dw_die_ref die)
21196 {
21197   dw_attr_ref a;
21198   unsigned ix;
21199
21200   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
21201     {
21202       if (a->dw_attr_val.val_class == dw_val_class_die_ref)
21203         {
21204           /* A reference to another DIE.
21205              Make sure that it will get emitted.
21206              If it was broken out into a comdat group, don't follow it.  */
21207           if (dwarf_version < 4
21208               || a->dw_attr == DW_AT_specification
21209               || a->dw_attr_val.v.val_die_ref.die->die_id.die_type_node == NULL)
21210             prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
21211         }
21212       /* Set the string's refcount to 0 so that prune_unused_types_mark
21213          accounts properly for it.  */
21214       if (AT_class (a) == dw_val_class_str)
21215         a->dw_attr_val.v.val_str->refcount = 0;
21216     }
21217 }
21218
21219
21220 /* Mark DIE as being used.  If DOKIDS is true, then walk down
21221    to DIE's children.  */
21222
21223 static void
21224 prune_unused_types_mark (dw_die_ref die, int dokids)
21225 {
21226   dw_die_ref c;
21227
21228   if (die->die_mark == 0)
21229     {
21230       /* We haven't done this node yet.  Mark it as used.  */
21231       die->die_mark = 1;
21232
21233       /* We also have to mark its parents as used.
21234          (But we don't want to mark our parents' kids due to this.)  */
21235       if (die->die_parent)
21236         prune_unused_types_mark (die->die_parent, 0);
21237
21238       /* Mark any referenced nodes.  */
21239       prune_unused_types_walk_attribs (die);
21240
21241       /* If this node is a specification,
21242          also mark the definition, if it exists.  */
21243       if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
21244         prune_unused_types_mark (die->die_definition, 1);
21245     }
21246
21247   if (dokids && die->die_mark != 2)
21248     {
21249       /* We need to walk the children, but haven't done so yet.
21250          Remember that we've walked the kids.  */
21251       die->die_mark = 2;
21252
21253       /* If this is an array type, we need to make sure our
21254          kids get marked, even if they're types.  If we're
21255          breaking out types into comdat sections, do this
21256          for all type definitions.  */
21257       if (die->die_tag == DW_TAG_array_type
21258           || (dwarf_version >= 4
21259               && is_type_die (die) && ! is_declaration_die (die)))
21260         FOR_EACH_CHILD (die, c, prune_unused_types_mark (c, 1));
21261       else
21262         FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
21263     }
21264 }
21265
21266 /* For local classes, look if any static member functions were emitted
21267    and if so, mark them.  */
21268
21269 static void
21270 prune_unused_types_walk_local_classes (dw_die_ref die)
21271 {
21272   dw_die_ref c;
21273
21274   if (die->die_mark == 2)
21275     return;
21276
21277   switch (die->die_tag)
21278     {
21279     case DW_TAG_structure_type:
21280     case DW_TAG_union_type:
21281     case DW_TAG_class_type:
21282       break;
21283
21284     case DW_TAG_subprogram:
21285       if (!get_AT_flag (die, DW_AT_declaration)
21286           || die->die_definition != NULL)
21287         prune_unused_types_mark (die, 1);
21288       return;
21289
21290     default:
21291       return;
21292     }
21293
21294   /* Mark children.  */
21295   FOR_EACH_CHILD (die, c, prune_unused_types_walk_local_classes (c));
21296 }
21297
21298 /* Walk the tree DIE and mark types that we actually use.  */
21299
21300 static void
21301 prune_unused_types_walk (dw_die_ref die)
21302 {
21303   dw_die_ref c;
21304
21305   /* Don't do anything if this node is already marked and
21306      children have been marked as well.  */
21307   if (die->die_mark == 2)
21308     return;
21309
21310   switch (die->die_tag)
21311     {
21312     case DW_TAG_structure_type:
21313     case DW_TAG_union_type:
21314     case DW_TAG_class_type:
21315       if (die->die_perennial_p)
21316         break;
21317
21318       for (c = die->die_parent; c; c = c->die_parent)
21319         if (c->die_tag == DW_TAG_subprogram)
21320           break;
21321
21322       /* Finding used static member functions inside of classes
21323          is needed just for local classes, because for other classes
21324          static member function DIEs with DW_AT_specification
21325          are emitted outside of the DW_TAG_*_type.  If we ever change
21326          it, we'd need to call this even for non-local classes.  */
21327       if (c)
21328         prune_unused_types_walk_local_classes (die);
21329
21330       /* It's a type node --- don't mark it.  */
21331       return;
21332
21333     case DW_TAG_const_type:
21334     case DW_TAG_packed_type:
21335     case DW_TAG_pointer_type:
21336     case DW_TAG_reference_type:
21337     case DW_TAG_rvalue_reference_type:
21338     case DW_TAG_volatile_type:
21339     case DW_TAG_typedef:
21340     case DW_TAG_array_type:
21341     case DW_TAG_interface_type:
21342     case DW_TAG_friend:
21343     case DW_TAG_variant_part:
21344     case DW_TAG_enumeration_type:
21345     case DW_TAG_subroutine_type:
21346     case DW_TAG_string_type:
21347     case DW_TAG_set_type:
21348     case DW_TAG_subrange_type:
21349     case DW_TAG_ptr_to_member_type:
21350     case DW_TAG_file_type:
21351       if (die->die_perennial_p)
21352         break;
21353
21354       /* It's a type node --- don't mark it.  */
21355       return;
21356
21357     default:
21358       /* Mark everything else.  */
21359       break;
21360   }
21361
21362   if (die->die_mark == 0)
21363     {
21364       die->die_mark = 1;
21365
21366       /* Now, mark any dies referenced from here.  */
21367       prune_unused_types_walk_attribs (die);
21368     }
21369
21370   die->die_mark = 2;
21371
21372   /* Mark children.  */
21373   FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
21374 }
21375
21376 /* Increment the string counts on strings referred to from DIE's
21377    attributes.  */
21378
21379 static void
21380 prune_unused_types_update_strings (dw_die_ref die)
21381 {
21382   dw_attr_ref a;
21383   unsigned ix;
21384
21385   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
21386     if (AT_class (a) == dw_val_class_str)
21387       {
21388         struct indirect_string_node *s = a->dw_attr_val.v.val_str;
21389         s->refcount++;
21390         /* Avoid unnecessarily putting strings that are used less than
21391            twice in the hash table.  */
21392         if (s->refcount
21393             == ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) ? 1 : 2))
21394           {
21395             void ** slot;
21396             slot = htab_find_slot_with_hash (debug_str_hash, s->str,
21397                                              htab_hash_string (s->str),
21398                                              INSERT);
21399             gcc_assert (*slot == NULL);
21400             *slot = s;
21401           }
21402       }
21403 }
21404
21405 /* Remove from the tree DIE any dies that aren't marked.  */
21406
21407 static void
21408 prune_unused_types_prune (dw_die_ref die)
21409 {
21410   dw_die_ref c;
21411
21412   gcc_assert (die->die_mark);
21413   prune_unused_types_update_strings (die);
21414
21415   if (! die->die_child)
21416     return;
21417
21418   c = die->die_child;
21419   do {
21420     dw_die_ref prev = c;
21421     for (c = c->die_sib; ! c->die_mark; c = c->die_sib)
21422       if (c == die->die_child)
21423         {
21424           /* No marked children between 'prev' and the end of the list.  */
21425           if (prev == c)
21426             /* No marked children at all.  */
21427             die->die_child = NULL;
21428           else
21429             {
21430               prev->die_sib = c->die_sib;
21431               die->die_child = prev;
21432             }
21433           return;
21434         }
21435
21436     if (c != prev->die_sib)
21437       prev->die_sib = c;
21438     prune_unused_types_prune (c);
21439   } while (c != die->die_child);
21440 }
21441
21442 /* A helper function for dwarf2out_finish called through
21443    htab_traverse.  Clear .debug_str strings that we haven't already
21444    decided to emit.  */
21445
21446 static int
21447 prune_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
21448 {
21449   struct indirect_string_node *node = (struct indirect_string_node *) *h;
21450
21451   if (!node->label || !node->refcount)
21452     htab_clear_slot (debug_str_hash, h);
21453
21454   return 1;
21455 }
21456
21457 /* Remove dies representing declarations that we never use.  */
21458
21459 static void
21460 prune_unused_types (void)
21461 {
21462   unsigned int i;
21463   limbo_die_node *node;
21464   comdat_type_node *ctnode;
21465   pubname_ref pub;
21466   dcall_entry *dcall;
21467
21468 #if ENABLE_ASSERT_CHECKING
21469   /* All the marks should already be clear.  */
21470   verify_marks_clear (comp_unit_die);
21471   for (node = limbo_die_list; node; node = node->next)
21472     verify_marks_clear (node->die);
21473   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21474     verify_marks_clear (ctnode->root_die);
21475 #endif /* ENABLE_ASSERT_CHECKING */
21476
21477   /* Mark types that are used in global variables.  */
21478   premark_types_used_by_global_vars ();
21479
21480   /* Set the mark on nodes that are actually used.  */
21481   prune_unused_types_walk (comp_unit_die);
21482   for (node = limbo_die_list; node; node = node->next)
21483     prune_unused_types_walk (node->die);
21484   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21485     {
21486       prune_unused_types_walk (ctnode->root_die);
21487       prune_unused_types_mark (ctnode->type_die, 1);
21488     }
21489
21490   /* Also set the mark on nodes referenced from the
21491      pubname_table or arange_table.  */
21492   for (i = 0; VEC_iterate (pubname_entry, pubname_table, i, pub); i++)
21493     prune_unused_types_mark (pub->die, 1);
21494   for (i = 0; i < arange_table_in_use; i++)
21495     prune_unused_types_mark (arange_table[i], 1);
21496
21497   /* Mark nodes referenced from the direct call table.  */
21498   for (i = 0; VEC_iterate (dcall_entry, dcall_table, i, dcall); i++)
21499     prune_unused_types_mark (dcall->targ_die, 1);
21500
21501   /* Get rid of nodes that aren't marked; and update the string counts.  */
21502   if (debug_str_hash && debug_str_hash_forced)
21503     htab_traverse (debug_str_hash, prune_indirect_string, NULL);
21504   else if (debug_str_hash)
21505     htab_empty (debug_str_hash);
21506   prune_unused_types_prune (comp_unit_die);
21507   for (node = limbo_die_list; node; node = node->next)
21508     prune_unused_types_prune (node->die);
21509   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21510     prune_unused_types_prune (ctnode->root_die);
21511
21512   /* Leave the marks clear.  */
21513   prune_unmark_dies (comp_unit_die);
21514   for (node = limbo_die_list; node; node = node->next)
21515     prune_unmark_dies (node->die);
21516   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21517     prune_unmark_dies (ctnode->root_die);
21518 }
21519
21520 /* Set the parameter to true if there are any relative pathnames in
21521    the file table.  */
21522 static int
21523 file_table_relative_p (void ** slot, void *param)
21524 {
21525   bool *p = (bool *) param;
21526   struct dwarf_file_data *d = (struct dwarf_file_data *) *slot;
21527   if (!IS_ABSOLUTE_PATH (d->filename))
21528     {
21529       *p = true;
21530       return 0;
21531     }
21532   return 1;
21533 }
21534
21535 /* Routines to manipulate hash table of comdat type units.  */
21536
21537 static hashval_t
21538 htab_ct_hash (const void *of)
21539 {
21540   hashval_t h;
21541   const comdat_type_node *const type_node = (const comdat_type_node *) of;
21542
21543   memcpy (&h, type_node->signature, sizeof (h));
21544   return h;
21545 }
21546
21547 static int
21548 htab_ct_eq (const void *of1, const void *of2)
21549 {
21550   const comdat_type_node *const type_node_1 = (const comdat_type_node *) of1;
21551   const comdat_type_node *const type_node_2 = (const comdat_type_node *) of2;
21552
21553   return (! memcmp (type_node_1->signature, type_node_2->signature,
21554                     DWARF_TYPE_SIGNATURE_SIZE));
21555 }
21556
21557 /* Move a DW_AT_{,MIPS_}linkage_name attribute just added to dw_die_ref
21558    to the location it would have been added, should we know its
21559    DECL_ASSEMBLER_NAME when we added other attributes.  This will
21560    probably improve compactness of debug info, removing equivalent
21561    abbrevs, and hide any differences caused by deferring the
21562    computation of the assembler name, triggered by e.g. PCH.  */
21563
21564 static inline void
21565 move_linkage_attr (dw_die_ref die)
21566 {
21567   unsigned ix = VEC_length (dw_attr_node, die->die_attr);
21568   dw_attr_node linkage = *VEC_index (dw_attr_node, die->die_attr, ix - 1);
21569
21570   gcc_assert (linkage.dw_attr == AT_linkage_name);
21571
21572   while (--ix > 0)
21573     {
21574       dw_attr_node *prev = VEC_index (dw_attr_node, die->die_attr, ix - 1);
21575
21576       if (prev->dw_attr == DW_AT_decl_line || prev->dw_attr == DW_AT_name)
21577         break;
21578     }
21579
21580   if (ix != VEC_length (dw_attr_node, die->die_attr) - 1)
21581     {
21582       VEC_pop (dw_attr_node, die->die_attr);
21583       VEC_quick_insert (dw_attr_node, die->die_attr, ix, &linkage);
21584     }
21585 }
21586
21587 /* Helper function for resolve_addr, attempt to resolve
21588    one CONST_STRING, return non-zero if not successful.  Similarly verify that
21589    SYMBOL_REFs refer to variables emitted in the current CU.  */
21590
21591 static int
21592 resolve_one_addr (rtx *addr, void *data ATTRIBUTE_UNUSED)
21593 {
21594   rtx rtl = *addr;
21595
21596   if (GET_CODE (rtl) == CONST_STRING)
21597     {
21598       size_t len = strlen (XSTR (rtl, 0)) + 1;
21599       tree t = build_string (len, XSTR (rtl, 0));
21600       tree tlen = build_int_cst (NULL_TREE, len - 1);
21601       TREE_TYPE (t)
21602         = build_array_type (char_type_node, build_index_type (tlen));
21603       rtl = lookup_constant_def (t);
21604       if (!rtl || !MEM_P (rtl))
21605         return 1;
21606       rtl = XEXP (rtl, 0);
21607       VEC_safe_push (rtx, gc, used_rtx_array, rtl);
21608       *addr = rtl;
21609       return 0;
21610     }
21611
21612   if (GET_CODE (rtl) == SYMBOL_REF
21613       && SYMBOL_REF_DECL (rtl)
21614       && !TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
21615     return 1;
21616
21617   if (GET_CODE (rtl) == CONST
21618       && for_each_rtx (&XEXP (rtl, 0), resolve_one_addr, NULL))
21619     return 1;
21620
21621   return 0;
21622 }
21623
21624 /* Helper function for resolve_addr, handle one location
21625    expression, return false if at least one CONST_STRING or SYMBOL_REF in
21626    the location list couldn't be resolved.  */
21627
21628 static bool
21629 resolve_addr_in_expr (dw_loc_descr_ref loc)
21630 {
21631   for (; loc; loc = loc->dw_loc_next)
21632     if ((loc->dw_loc_opc == DW_OP_addr
21633          && resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr, NULL))
21634         || (loc->dw_loc_opc == DW_OP_implicit_value
21635             && loc->dw_loc_oprnd2.val_class == dw_val_class_addr
21636             && resolve_one_addr (&loc->dw_loc_oprnd2.v.val_addr, NULL)))
21637       return false;
21638   return true;
21639 }
21640
21641 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
21642    an address in .rodata section if the string literal is emitted there,
21643    or remove the containing location list or replace DW_AT_const_value
21644    with DW_AT_location and empty location expression, if it isn't found
21645    in .rodata.  Similarly for SYMBOL_REFs, keep only those that refer
21646    to something that has been emitted in the current CU.  */
21647
21648 static void
21649 resolve_addr (dw_die_ref die)
21650 {
21651   dw_die_ref c;
21652   dw_attr_ref a;
21653   dw_loc_list_ref *curr;
21654   unsigned ix;
21655
21656   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
21657     switch (AT_class (a))
21658       {
21659       case dw_val_class_loc_list:
21660         curr = AT_loc_list_ptr (a);
21661         while (*curr)
21662           {
21663             if (!resolve_addr_in_expr ((*curr)->expr))
21664               {
21665                 dw_loc_list_ref next = (*curr)->dw_loc_next;
21666                 if (next && (*curr)->ll_symbol)
21667                   {
21668                     gcc_assert (!next->ll_symbol);
21669                     next->ll_symbol = (*curr)->ll_symbol;
21670                   }
21671                 *curr = next;
21672               }
21673             else
21674               curr = &(*curr)->dw_loc_next;
21675           }
21676         if (!AT_loc_list (a))
21677           {
21678             remove_AT (die, a->dw_attr);
21679             ix--;
21680           }
21681         break;
21682       case dw_val_class_loc:
21683         if (!resolve_addr_in_expr (AT_loc (a)))
21684           {
21685             remove_AT (die, a->dw_attr);
21686             ix--;
21687           }
21688         break;
21689       case dw_val_class_addr:
21690         if (a->dw_attr == DW_AT_const_value
21691             && resolve_one_addr (&a->dw_attr_val.v.val_addr, NULL))
21692           {
21693             remove_AT (die, a->dw_attr);
21694             ix--;
21695           }
21696         break;
21697       default:
21698         break;
21699       }
21700
21701   FOR_EACH_CHILD (die, c, resolve_addr (c));
21702 }
21703
21704 /* Output stuff that dwarf requires at the end of every file,
21705    and generate the DWARF-2 debugging info.  */
21706
21707 static void
21708 dwarf2out_finish (const char *filename)
21709 {
21710   limbo_die_node *node, *next_node;
21711   comdat_type_node *ctnode;
21712   htab_t comdat_type_table;
21713   dw_die_ref die = 0;
21714   unsigned int i;
21715
21716   gen_remaining_tmpl_value_param_die_attribute ();
21717
21718   /* Add the name for the main input file now.  We delayed this from
21719      dwarf2out_init to avoid complications with PCH.  */
21720   add_name_attribute (comp_unit_die, remap_debug_filename (filename));
21721   if (!IS_ABSOLUTE_PATH (filename))
21722     add_comp_dir_attribute (comp_unit_die);
21723   else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL)
21724     {
21725       bool p = false;
21726       htab_traverse (file_table, file_table_relative_p, &p);
21727       if (p)
21728         add_comp_dir_attribute (comp_unit_die);
21729     }
21730
21731   for (i = 0; i < VEC_length (deferred_locations, deferred_locations_list); i++)
21732     {
21733       add_location_or_const_value_attribute (
21734         VEC_index (deferred_locations, deferred_locations_list, i)->die,
21735         VEC_index (deferred_locations, deferred_locations_list, i)->variable,
21736         DW_AT_location);
21737     }
21738
21739   /* Traverse the limbo die list, and add parent/child links.  The only
21740      dies without parents that should be here are concrete instances of
21741      inline functions, and the comp_unit_die.  We can ignore the comp_unit_die.
21742      For concrete instances, we can get the parent die from the abstract
21743      instance.  */
21744   for (node = limbo_die_list; node; node = next_node)
21745     {
21746       next_node = node->next;
21747       die = node->die;
21748
21749       if (die->die_parent == NULL)
21750         {
21751           dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
21752
21753           if (origin)
21754             add_child_die (origin->die_parent, die);
21755           else if (die == comp_unit_die)
21756             ;
21757           else if (errorcount > 0 || sorrycount > 0)
21758             /* It's OK to be confused by errors in the input.  */
21759             add_child_die (comp_unit_die, die);
21760           else
21761             {
21762               /* In certain situations, the lexical block containing a
21763                  nested function can be optimized away, which results
21764                  in the nested function die being orphaned.  Likewise
21765                  with the return type of that nested function.  Force
21766                  this to be a child of the containing function.
21767
21768                  It may happen that even the containing function got fully
21769                  inlined and optimized out.  In that case we are lost and
21770                  assign the empty child.  This should not be big issue as
21771                  the function is likely unreachable too.  */
21772               tree context = NULL_TREE;
21773
21774               gcc_assert (node->created_for);
21775
21776               if (DECL_P (node->created_for))
21777                 context = DECL_CONTEXT (node->created_for);
21778               else if (TYPE_P (node->created_for))
21779                 context = TYPE_CONTEXT (node->created_for);
21780
21781               gcc_assert (context
21782                           && (TREE_CODE (context) == FUNCTION_DECL
21783                               || TREE_CODE (context) == NAMESPACE_DECL));
21784
21785               origin = lookup_decl_die (context);
21786               if (origin)
21787                 add_child_die (origin, die);
21788               else
21789                 add_child_die (comp_unit_die, die);
21790             }
21791         }
21792     }
21793
21794   limbo_die_list = NULL;
21795
21796   resolve_addr (comp_unit_die);
21797
21798   for (node = deferred_asm_name; node; node = node->next)
21799     {
21800       tree decl = node->created_for;
21801       if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
21802         {
21803           add_AT_string (node->die, AT_linkage_name,
21804                          IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
21805           move_linkage_attr (node->die);
21806         }
21807     }
21808
21809   deferred_asm_name = NULL;
21810
21811   /* Walk through the list of incomplete types again, trying once more to
21812      emit full debugging info for them.  */
21813   retry_incomplete_types ();
21814
21815   if (flag_eliminate_unused_debug_types)
21816     prune_unused_types ();
21817
21818   /* Generate separate CUs for each of the include files we've seen.
21819      They will go into limbo_die_list.  */
21820   if (flag_eliminate_dwarf2_dups && dwarf_version < 4)
21821     break_out_includes (comp_unit_die);
21822
21823   /* Generate separate COMDAT sections for type DIEs. */
21824   if (dwarf_version >= 4)
21825     {
21826       break_out_comdat_types (comp_unit_die);
21827
21828       /* Each new type_unit DIE was added to the limbo die list when created.
21829          Since these have all been added to comdat_type_list, clear the
21830          limbo die list.  */
21831       limbo_die_list = NULL;
21832
21833       /* For each new comdat type unit, copy declarations for incomplete
21834          types to make the new unit self-contained (i.e., no direct
21835          references to the main compile unit).  */
21836       for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
21837         copy_decls_for_unworthy_types (ctnode->root_die);
21838       copy_decls_for_unworthy_types (comp_unit_die);
21839
21840       /* In the process of copying declarations from one unit to another,
21841          we may have left some declarations behind that are no longer
21842          referenced.  Prune them.  */
21843       prune_unused_types ();
21844     }
21845
21846   /* Traverse the DIE's and add add sibling attributes to those DIE's
21847      that have children.  */
21848   add_sibling_attributes (comp_unit_die);
21849   for (node = limbo_die_list; node; node = node->next)
21850     add_sibling_attributes (node->die);
21851   for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
21852     add_sibling_attributes (ctnode->root_die);
21853
21854   /* Output a terminator label for the .text section.  */
21855   switch_to_section (text_section);
21856   targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
21857   if (flag_reorder_blocks_and_partition)
21858     {
21859       switch_to_section (unlikely_text_section ());
21860       targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
21861     }
21862
21863   /* We can only use the low/high_pc attributes if all of the code was
21864      in .text.  */
21865   if (!have_multiple_function_sections
21866       || !(dwarf_version >= 3 || !dwarf_strict))
21867     {
21868       add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
21869       add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
21870     }
21871
21872   else
21873     {
21874       unsigned fde_idx = 0;
21875       bool range_list_added = false;
21876
21877       /* We need to give .debug_loc and .debug_ranges an appropriate
21878          "base address".  Use zero so that these addresses become
21879          absolute.  Historically, we've emitted the unexpected
21880          DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
21881          Emit both to give time for other tools to adapt.  */
21882       add_AT_addr (comp_unit_die, DW_AT_low_pc, const0_rtx);
21883       add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
21884
21885       if (text_section_used)
21886         add_ranges_by_labels (comp_unit_die, text_section_label,
21887                               text_end_label, &range_list_added);
21888       if (flag_reorder_blocks_and_partition && cold_text_section_used)
21889         add_ranges_by_labels (comp_unit_die, cold_text_section_label,
21890                               cold_end_label, &range_list_added);
21891
21892       for (fde_idx = 0; fde_idx < fde_table_in_use; fde_idx++)
21893         {
21894           dw_fde_ref fde = &fde_table[fde_idx];
21895
21896           if (fde->dw_fde_switched_sections)
21897             {
21898               if (!fde->in_std_section)
21899                 add_ranges_by_labels (comp_unit_die,
21900                                       fde->dw_fde_hot_section_label,
21901                                       fde->dw_fde_hot_section_end_label,
21902                                       &range_list_added);
21903               if (!fde->cold_in_std_section)
21904                 add_ranges_by_labels (comp_unit_die,
21905                                       fde->dw_fde_unlikely_section_label,
21906                                       fde->dw_fde_unlikely_section_end_label,
21907                                       &range_list_added);
21908             }
21909           else if (!fde->in_std_section)
21910             add_ranges_by_labels (comp_unit_die, fde->dw_fde_begin,
21911                                   fde->dw_fde_end, &range_list_added);
21912         }
21913
21914       if (range_list_added)
21915         add_ranges (NULL);
21916     }
21917
21918   /* Output location list section if necessary.  */
21919   if (have_location_lists)
21920     {
21921       /* Output the location lists info.  */
21922       switch_to_section (debug_loc_section);
21923       ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
21924                                    DEBUG_LOC_SECTION_LABEL, 0);
21925       ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
21926       output_location_lists (die);
21927     }
21928
21929   if (debug_info_level >= DINFO_LEVEL_NORMAL)
21930     add_AT_lineptr (comp_unit_die, DW_AT_stmt_list,
21931                     debug_line_section_label);
21932
21933   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21934     add_AT_macptr (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
21935
21936   /* Output all of the compilation units.  We put the main one last so that
21937      the offsets are available to output_pubnames.  */
21938   for (node = limbo_die_list; node; node = node->next)
21939     output_comp_unit (node->die, 0);
21940
21941   comdat_type_table = htab_create (100, htab_ct_hash, htab_ct_eq, NULL);
21942   for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
21943     {
21944       void **slot = htab_find_slot (comdat_type_table, ctnode, INSERT);
21945
21946       /* Don't output duplicate types.  */
21947       if (*slot != HTAB_EMPTY_ENTRY)
21948         continue;
21949
21950       /* Add a pointer to the line table for the main compilation unit
21951          so that the debugger can make sense of DW_AT_decl_file
21952          attributes.  */
21953       if (debug_info_level >= DINFO_LEVEL_NORMAL)
21954         add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
21955                         debug_line_section_label);
21956
21957       output_comdat_type_unit (ctnode);
21958       *slot = ctnode;
21959     }
21960   htab_delete (comdat_type_table);
21961
21962   /* Output the main compilation unit if non-empty or if .debug_macinfo
21963      has been emitted.  */
21964   output_comp_unit (comp_unit_die, debug_info_level >= DINFO_LEVEL_VERBOSE);
21965
21966   /* Output the abbreviation table.  */
21967   switch_to_section (debug_abbrev_section);
21968   output_abbrev_section ();
21969
21970   /* Output public names table if necessary.  */
21971   if (!VEC_empty (pubname_entry, pubname_table))
21972     {
21973       switch_to_section (debug_pubnames_section);
21974       output_pubnames (pubname_table);
21975     }
21976
21977   /* Output public types table if necessary.  */
21978   /* ??? Only defined by DWARF3, but emitted by Darwin for DWARF2.
21979      It shouldn't hurt to emit it always, since pure DWARF2 consumers
21980      simply won't look for the section.  */
21981   if (!VEC_empty (pubname_entry, pubtype_table))
21982     {
21983       switch_to_section (debug_pubtypes_section);
21984       output_pubnames (pubtype_table);
21985     }
21986
21987   /* Output direct and virtual call tables if necessary.  */
21988   if (!VEC_empty (dcall_entry, dcall_table))
21989     {
21990       switch_to_section (debug_dcall_section);
21991       output_dcall_table ();
21992     }
21993   if (!VEC_empty (vcall_entry, vcall_table))
21994     {
21995       switch_to_section (debug_vcall_section);
21996       output_vcall_table ();
21997     }
21998
21999   /* Output the address range information.  We only put functions in the arange
22000      table, so don't write it out if we don't have any.  */
22001   if (fde_table_in_use)
22002     {
22003       switch_to_section (debug_aranges_section);
22004       output_aranges ();
22005     }
22006
22007   /* Output ranges section if necessary.  */
22008   if (ranges_table_in_use)
22009     {
22010       switch_to_section (debug_ranges_section);
22011       ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
22012       output_ranges ();
22013     }
22014
22015   /* Output the source line correspondence table.  We must do this
22016      even if there is no line information.  Otherwise, on an empty
22017      translation unit, we will generate a present, but empty,
22018      .debug_info section.  IRIX 6.5 `nm' will then complain when
22019      examining the file.  This is done late so that any filenames
22020      used by the debug_info section are marked as 'used'.  */
22021   if (! DWARF2_ASM_LINE_DEBUG_INFO)
22022     {
22023       switch_to_section (debug_line_section);
22024       output_line_info ();
22025     }
22026
22027   /* Have to end the macro section.  */
22028   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
22029     {
22030       switch_to_section (debug_macinfo_section);
22031       dw2_asm_output_data (1, 0, "End compilation unit");
22032     }
22033
22034   /* If we emitted any DW_FORM_strp form attribute, output the string
22035      table too.  */
22036   if (debug_str_hash)
22037     htab_traverse (debug_str_hash, output_indirect_string, NULL);
22038 }
22039 #else
22040
22041 /* This should never be used, but its address is needed for comparisons.  */
22042 const struct gcc_debug_hooks dwarf2_debug_hooks =
22043 {
22044   0,            /* init */
22045   0,            /* finish */
22046   0,            /* assembly_start */
22047   0,            /* define */
22048   0,            /* undef */
22049   0,            /* start_source_file */
22050   0,            /* end_source_file */
22051   0,            /* begin_block */
22052   0,            /* end_block */
22053   0,            /* ignore_block */
22054   0,            /* source_line */
22055   0,            /* begin_prologue */
22056   0,            /* end_prologue */
22057   0,            /* end_epilogue */
22058   0,            /* begin_function */
22059   0,            /* end_function */
22060   0,            /* function_decl */
22061   0,            /* global_decl */
22062   0,            /* type_decl */
22063   0,            /* imported_module_or_decl */
22064   0,            /* deferred_inline_function */
22065   0,            /* outlining_inline_function */
22066   0,            /* label */
22067   0,            /* handle_pch */
22068   0,            /* var_location */
22069   0,            /* switch_text_section */
22070   0,            /* direct_call */
22071   0,            /* virtual_call_token */
22072   0,            /* copy_call_info */
22073   0,            /* virtual_call */
22074   0,            /* set_name */
22075   0             /* start_end_main_source_file */
22076 };
22077
22078 #endif /* DWARF2_DEBUGGING_INFO */
22079
22080 #include "gt-dwarf2out.h"