OSDN Git Service

* ada/acats/run_all.sh: Log start and end times.
[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 "rtl.h"
68 #include "hard-reg-set.h"
69 #include "regs.h"
70 #include "insn-config.h"
71 #include "reload.h"
72 #include "function.h"
73 #include "output.h"
74 #include "expr.h"
75 #include "libfuncs.h"
76 #include "except.h"
77 #include "dwarf2.h"
78 #include "dwarf2out.h"
79 #include "dwarf2asm.h"
80 #include "toplev.h"
81 #include "ggc.h"
82 #include "md5.h"
83 #include "tm_p.h"
84 #include "diagnostic.h"
85 #include "tree-pretty-print.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, "%#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, HOST_WIDE_INT offset)
14368 {
14369   if ((bitsize % BITS_PER_UNIT) == 0 && offset == 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, offset);
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, 0);
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           HOST_WIDE_INT offset = 0;
14465           if (GET_CODE (varloc) == VAR_LOCATION
14466               && GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
14467             {
14468               varloc = PAT_VAR_LOCATION_LOC (varloc);
14469               if (GET_CODE (varloc) == EXPR_LIST)
14470                 varloc = XEXP (varloc, 0);
14471             }
14472           do 
14473             {
14474               if (GET_CODE (varloc) == CONST
14475                   || GET_CODE (varloc) == SIGN_EXTEND
14476                   || GET_CODE (varloc) == ZERO_EXTEND)
14477                 varloc = XEXP (varloc, 0);
14478               else if (GET_CODE (varloc) == SUBREG)
14479                 varloc = SUBREG_REG (varloc);
14480               else
14481                 break;
14482             }
14483           while (1);
14484           /* DW_OP_bit_size offset should be zero for register
14485              or implicit location descriptions and empty location
14486              descriptions, but for memory addresses needs big endian
14487              adjustment.  */
14488           if (MEM_P (varloc))
14489             {
14490               unsigned HOST_WIDE_INT memsize
14491                 = INTVAL (MEM_SIZE (varloc)) * BITS_PER_UNIT;
14492               if (memsize != bitsize)
14493                 {
14494                   if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN
14495                       && (memsize > BITS_PER_WORD || bitsize > BITS_PER_WORD))
14496                     return NULL;
14497                   if (memsize < bitsize)
14498                     return NULL;
14499                   if (BITS_BIG_ENDIAN)
14500                     offset = memsize - bitsize;
14501                 }
14502             }
14503
14504           *descr_tail = new_loc_descr_op_bit_piece (bitsize, offset);
14505           if (*descr_tail == NULL)
14506             return NULL;
14507           descr_tail = &(*descr_tail)->dw_loc_next;
14508         }
14509     }
14510
14511   /* If there were any non-empty expressions, add padding till the end of
14512      the decl.  */
14513   if (descr != NULL && decl_size != 0)
14514     {
14515       *descr_tail = new_loc_descr_op_bit_piece (decl_size, 0);
14516       if (*descr_tail == NULL)
14517         return NULL;
14518     }
14519   return descr;
14520 }
14521
14522 /* Return the dwarf representation of the location list LOC_LIST of
14523    DECL.  WANT_ADDRESS has the same meaning as in loc_list_from_tree
14524    function.  */
14525
14526 static dw_loc_list_ref
14527 dw_loc_list (var_loc_list *loc_list, tree decl, int want_address)
14528 {
14529   const char *endname, *secname;
14530   rtx varloc;
14531   enum var_init_status initialized;
14532   struct var_loc_node *node;
14533   dw_loc_descr_ref descr;
14534   char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
14535   dw_loc_list_ref list = NULL;
14536   dw_loc_list_ref *listp = &list;
14537
14538   /* Now that we know what section we are using for a base,
14539      actually construct the list of locations.
14540      The first location information is what is passed to the
14541      function that creates the location list, and the remaining
14542      locations just get added on to that list.
14543      Note that we only know the start address for a location
14544      (IE location changes), so to build the range, we use
14545      the range [current location start, next location start].
14546      This means we have to special case the last node, and generate
14547      a range of [last location start, end of function label].  */
14548
14549   secname = secname_for_decl (decl);
14550
14551   for (node = loc_list->first; node; node = node->next)
14552     if (GET_CODE (node->loc) == EXPR_LIST
14553         || NOTE_VAR_LOCATION_LOC (node->loc) != NULL_RTX)
14554       {
14555         if (GET_CODE (node->loc) == EXPR_LIST)
14556           {
14557             /* This requires DW_OP_{,bit_}piece, which is not usable
14558                inside DWARF expressions.  */
14559             if (want_address != 2)
14560               continue;
14561             descr = dw_sra_loc_expr (decl, node->loc);
14562             if (descr == NULL)
14563               continue;
14564           }
14565         else
14566           {
14567             initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
14568             varloc = NOTE_VAR_LOCATION (node->loc);
14569             descr = dw_loc_list_1 (decl, varloc, want_address, initialized);
14570           }
14571         if (descr)
14572           {
14573             /* The variable has a location between NODE->LABEL and
14574                NODE->NEXT->LABEL.  */
14575             if (node->next)
14576               endname = node->next->label;
14577             /* If the variable has a location at the last label
14578                it keeps its location until the end of function.  */
14579             else if (!current_function_decl)
14580               endname = text_end_label;
14581             else
14582               {
14583                 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
14584                                              current_function_funcdef_no);
14585                 endname = ggc_strdup (label_id);
14586               }
14587
14588             *listp = new_loc_list (descr, node->label, endname, secname);
14589             listp = &(*listp)->dw_loc_next;
14590           }
14591       }
14592
14593   /* Try to avoid the overhead of a location list emitting a location
14594      expression instead, but only if we didn't have more than one
14595      location entry in the first place.  If some entries were not
14596      representable, we don't want to pretend a single entry that was
14597      applies to the entire scope in which the variable is
14598      available.  */
14599   if (list && loc_list->first->next)
14600     gen_llsym (list);
14601
14602   return list;
14603 }
14604
14605 /* Return if the loc_list has only single element and thus can be represented
14606    as location description.   */
14607
14608 static bool
14609 single_element_loc_list_p (dw_loc_list_ref list)
14610 {
14611   gcc_assert (!list->dw_loc_next || list->ll_symbol);
14612   return !list->ll_symbol;
14613 }
14614
14615 /* To each location in list LIST add loc descr REF.  */
14616
14617 static void
14618 add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
14619 {
14620   dw_loc_descr_ref copy;
14621   add_loc_descr (&list->expr, ref);
14622   list = list->dw_loc_next;
14623   while (list)
14624     {
14625       copy = GGC_CNEW (dw_loc_descr_node);
14626       memcpy (copy, ref, sizeof (dw_loc_descr_node));
14627       add_loc_descr (&list->expr, copy);
14628       while (copy->dw_loc_next)
14629         {
14630           dw_loc_descr_ref new_copy = GGC_CNEW (dw_loc_descr_node);
14631           memcpy (new_copy, copy->dw_loc_next, sizeof (dw_loc_descr_node));
14632           copy->dw_loc_next = new_copy;
14633           copy = new_copy;
14634         }
14635       list = list->dw_loc_next;
14636     }
14637 }
14638
14639 /* Given two lists RET and LIST
14640    produce location list that is result of adding expression in LIST
14641    to expression in RET on each possition in program.
14642    Might be destructive on both RET and LIST.
14643
14644    TODO: We handle only simple cases of RET or LIST having at most one
14645    element. General case would inolve sorting the lists in program order
14646    and merging them that will need some additional work.
14647    Adding that will improve quality of debug info especially for SRA-ed
14648    structures.  */
14649
14650 static void
14651 add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list)
14652 {
14653   if (!list)
14654     return;
14655   if (!*ret)
14656     {
14657       *ret = list;
14658       return;
14659     }
14660   if (!list->dw_loc_next)
14661     {
14662       add_loc_descr_to_each (*ret, list->expr);
14663       return;
14664     }
14665   if (!(*ret)->dw_loc_next)
14666     {
14667       add_loc_descr_to_each (list, (*ret)->expr);
14668       *ret = list;
14669       return;
14670     }
14671   expansion_failed (NULL_TREE, NULL_RTX,
14672                     "Don't know how to merge two non-trivial"
14673                     " location lists.\n");
14674   *ret = NULL;
14675   return;
14676 }
14677
14678 /* LOC is constant expression.  Try a luck, look it up in constant
14679    pool and return its loc_descr of its address.  */
14680
14681 static dw_loc_descr_ref
14682 cst_pool_loc_descr (tree loc)
14683 {
14684   /* Get an RTL for this, if something has been emitted.  */
14685   rtx rtl = lookup_constant_def (loc);
14686   enum machine_mode mode;
14687
14688   if (!rtl || !MEM_P (rtl))
14689     {
14690       gcc_assert (!rtl);
14691       return 0;
14692     }
14693   gcc_assert (GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF);
14694
14695   /* TODO: We might get more coverage if we was actually delaying expansion
14696      of all expressions till end of compilation when constant pools are fully
14697      populated.  */
14698   if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl, 0))))
14699     {
14700       expansion_failed (loc, NULL_RTX,
14701                         "CST value in contant pool but not marked.");
14702       return 0;
14703     }
14704   mode = GET_MODE (rtl);
14705   rtl = XEXP (rtl, 0);
14706   return mem_loc_descriptor (rtl, mode, VAR_INIT_STATUS_INITIALIZED);
14707 }
14708
14709 /* Return dw_loc_list representing address of addr_expr LOC
14710    by looking for innder INDIRECT_REF expression and turing it
14711    into simple arithmetics.  */
14712
14713 static dw_loc_list_ref
14714 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc, bool toplev)
14715 {
14716   tree obj, offset;
14717   HOST_WIDE_INT bitsize, bitpos, bytepos;
14718   enum machine_mode mode;
14719   int volatilep;
14720   int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
14721   dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
14722
14723   obj = get_inner_reference (TREE_OPERAND (loc, 0),
14724                              &bitsize, &bitpos, &offset, &mode,
14725                              &unsignedp, &volatilep, false);
14726   STRIP_NOPS (obj);
14727   if (bitpos % BITS_PER_UNIT)
14728     {
14729       expansion_failed (loc, NULL_RTX, "bitfield access");
14730       return 0;
14731     }
14732   if (!INDIRECT_REF_P (obj))
14733     {
14734       expansion_failed (obj,
14735                         NULL_RTX, "no indirect ref in inner refrence");
14736       return 0;
14737     }
14738   if (!offset && !bitpos)
14739     list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), toplev ? 2 : 1);
14740   else if (toplev
14741            && int_size_in_bytes (TREE_TYPE (loc)) <= DWARF2_ADDR_SIZE
14742            && (dwarf_version >= 4 || !dwarf_strict))
14743     {
14744       list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), 0);
14745       if (!list_ret)
14746         return 0;
14747       if (offset)
14748         {
14749           /* Variable offset.  */
14750           list_ret1 = loc_list_from_tree (offset, 0);
14751           if (list_ret1 == 0)
14752             return 0;
14753           add_loc_list (&list_ret, list_ret1);
14754           if (!list_ret)
14755             return 0;
14756           add_loc_descr_to_each (list_ret,
14757                                  new_loc_descr (DW_OP_plus, 0, 0));
14758         }
14759       bytepos = bitpos / BITS_PER_UNIT;
14760       if (bytepos > 0)
14761         add_loc_descr_to_each (list_ret,
14762                                new_loc_descr (DW_OP_plus_uconst,
14763                                               bytepos, 0));
14764       else if (bytepos < 0)
14765         loc_list_plus_const (list_ret, bytepos);
14766       add_loc_descr_to_each (list_ret,
14767                              new_loc_descr (DW_OP_stack_value, 0, 0));
14768     }
14769   return list_ret;
14770 }
14771
14772
14773 /* Generate Dwarf location list representing LOC.
14774    If WANT_ADDRESS is false, expression computing LOC will be computed
14775    If WANT_ADDRESS is 1, expression computing address of LOC will be returned
14776    if WANT_ADDRESS is 2, expression computing address useable in location
14777      will be returned (i.e. DW_OP_reg can be used
14778      to refer to register values).  */
14779
14780 static dw_loc_list_ref
14781 loc_list_from_tree (tree loc, int want_address)
14782 {
14783   dw_loc_descr_ref ret = NULL, ret1 = NULL;
14784   dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
14785   int have_address = 0;
14786   enum dwarf_location_atom op;
14787
14788   /* ??? Most of the time we do not take proper care for sign/zero
14789      extending the values properly.  Hopefully this won't be a real
14790      problem...  */
14791
14792   switch (TREE_CODE (loc))
14793     {
14794     case ERROR_MARK:
14795       expansion_failed (loc, NULL_RTX, "ERROR_MARK");
14796       return 0;
14797
14798     case PLACEHOLDER_EXPR:
14799       /* This case involves extracting fields from an object to determine the
14800          position of other fields.  We don't try to encode this here.  The
14801          only user of this is Ada, which encodes the needed information using
14802          the names of types.  */
14803       expansion_failed (loc, NULL_RTX, "PLACEHOLDER_EXPR");
14804       return 0;
14805
14806     case CALL_EXPR:
14807       expansion_failed (loc, NULL_RTX, "CALL_EXPR");
14808       /* There are no opcodes for these operations.  */
14809       return 0;
14810
14811     case PREINCREMENT_EXPR:
14812     case PREDECREMENT_EXPR:
14813     case POSTINCREMENT_EXPR:
14814     case POSTDECREMENT_EXPR:
14815       expansion_failed (loc, NULL_RTX, "PRE/POST INDCREMENT/DECREMENT");
14816       /* There are no opcodes for these operations.  */
14817       return 0;
14818
14819     case ADDR_EXPR:
14820       /* If we already want an address, see if there is INDIRECT_REF inside
14821          e.g. for &this->field.  */
14822       if (want_address)
14823         {
14824           list_ret = loc_list_for_address_of_addr_expr_of_indirect_ref
14825                        (loc, want_address == 2);
14826           if (list_ret)
14827             have_address = 1;
14828           else if (decl_address_ip_invariant_p (TREE_OPERAND (loc, 0))
14829                    && (ret = cst_pool_loc_descr (loc)))
14830             have_address = 1;
14831         }
14832         /* Otherwise, process the argument and look for the address.  */
14833       if (!list_ret && !ret)
14834         list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 1);
14835       else
14836         {
14837           if (want_address)
14838             expansion_failed (loc, NULL_RTX, "need address of ADDR_EXPR");
14839           return NULL;
14840         }
14841       break;
14842
14843     case VAR_DECL:
14844       if (DECL_THREAD_LOCAL_P (loc))
14845         {
14846           rtx rtl;
14847           enum dwarf_location_atom first_op;
14848           enum dwarf_location_atom second_op;
14849           bool dtprel = false;
14850
14851           if (targetm.have_tls)
14852             {
14853               /* If this is not defined, we have no way to emit the
14854                  data.  */
14855               if (!targetm.asm_out.output_dwarf_dtprel)
14856                 return 0;
14857
14858                /* The way DW_OP_GNU_push_tls_address is specified, we
14859                   can only look up addresses of objects in the current
14860                   module.  */
14861               if (DECL_EXTERNAL (loc) && !targetm.binds_local_p (loc))
14862                 return 0;
14863               first_op = DW_OP_addr;
14864               dtprel = true;
14865               second_op = DW_OP_GNU_push_tls_address;
14866             }
14867           else
14868             {
14869               if (!targetm.emutls.debug_form_tls_address
14870                   || !(dwarf_version >= 3 || !dwarf_strict))
14871                 return 0;
14872               loc = emutls_decl (loc);
14873               first_op = DW_OP_addr;
14874               second_op = DW_OP_form_tls_address;
14875             }
14876
14877           rtl = rtl_for_decl_location (loc);
14878           if (rtl == NULL_RTX)
14879             return 0;
14880
14881           if (!MEM_P (rtl))
14882             return 0;
14883           rtl = XEXP (rtl, 0);
14884           if (! CONSTANT_P (rtl))
14885             return 0;
14886
14887           ret = new_loc_descr (first_op, 0, 0);
14888           ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
14889           ret->dw_loc_oprnd1.v.val_addr = rtl;
14890           ret->dtprel = dtprel;
14891
14892           ret1 = new_loc_descr (second_op, 0, 0);
14893           add_loc_descr (&ret, ret1);
14894
14895           have_address = 1;
14896           break;
14897         }
14898       /* FALLTHRU */
14899
14900     case PARM_DECL:
14901       if (DECL_HAS_VALUE_EXPR_P (loc))
14902         return loc_list_from_tree (DECL_VALUE_EXPR (loc),
14903                                    want_address);
14904       /* FALLTHRU */
14905
14906     case RESULT_DECL:
14907     case FUNCTION_DECL:
14908       {
14909         rtx rtl;
14910         var_loc_list *loc_list = lookup_decl_loc (loc);
14911
14912         if (loc_list && loc_list->first)
14913           {
14914             list_ret = dw_loc_list (loc_list, loc, want_address);
14915             have_address = want_address != 0;
14916             break;
14917           }
14918         rtl = rtl_for_decl_location (loc);
14919         if (rtl == NULL_RTX)
14920           {
14921             expansion_failed (loc, NULL_RTX, "DECL has no RTL");
14922             return 0;
14923           }
14924         else if (CONST_INT_P (rtl))
14925           {
14926             HOST_WIDE_INT val = INTVAL (rtl);
14927             if (TYPE_UNSIGNED (TREE_TYPE (loc)))
14928               val &= GET_MODE_MASK (DECL_MODE (loc));
14929             ret = int_loc_descriptor (val);
14930           }
14931         else if (GET_CODE (rtl) == CONST_STRING)
14932           {
14933             expansion_failed (loc, NULL_RTX, "CONST_STRING");
14934             return 0;
14935           }
14936         else if (CONSTANT_P (rtl) && const_ok_for_output (rtl))
14937           {
14938             ret = new_loc_descr (DW_OP_addr, 0, 0);
14939             ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
14940             ret->dw_loc_oprnd1.v.val_addr = rtl;
14941           }
14942         else
14943           {
14944             enum machine_mode mode;
14945
14946             /* Certain constructs can only be represented at top-level.  */
14947             if (want_address == 2)
14948               {
14949                 ret = loc_descriptor (rtl, VOIDmode,
14950                                       VAR_INIT_STATUS_INITIALIZED);
14951                 have_address = 1;
14952               }
14953             else
14954               {
14955                 mode = GET_MODE (rtl);
14956                 if (MEM_P (rtl))
14957                   {
14958                     rtl = XEXP (rtl, 0);
14959                     have_address = 1;
14960                   }
14961                 ret = mem_loc_descriptor (rtl, mode, VAR_INIT_STATUS_INITIALIZED);
14962               }
14963             if (!ret)
14964               expansion_failed (loc, rtl,
14965                                 "failed to produce loc descriptor for rtl");
14966           }
14967       }
14968       break;
14969
14970     case INDIRECT_REF:
14971     case ALIGN_INDIRECT_REF:
14972     case MISALIGNED_INDIRECT_REF:
14973       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
14974       have_address = 1;
14975       break;
14976
14977     case COMPOUND_EXPR:
14978       return loc_list_from_tree (TREE_OPERAND (loc, 1), want_address);
14979
14980     CASE_CONVERT:
14981     case VIEW_CONVERT_EXPR:
14982     case SAVE_EXPR:
14983     case MODIFY_EXPR:
14984       return loc_list_from_tree (TREE_OPERAND (loc, 0), want_address);
14985
14986     case COMPONENT_REF:
14987     case BIT_FIELD_REF:
14988     case ARRAY_REF:
14989     case ARRAY_RANGE_REF:
14990     case REALPART_EXPR:
14991     case IMAGPART_EXPR:
14992       {
14993         tree obj, offset;
14994         HOST_WIDE_INT bitsize, bitpos, bytepos;
14995         enum machine_mode mode;
14996         int volatilep;
14997         int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
14998
14999         obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
15000                                    &unsignedp, &volatilep, false);
15001
15002         gcc_assert (obj != loc);
15003
15004         list_ret = loc_list_from_tree (obj,
15005                                        want_address == 2
15006                                        && !bitpos && !offset ? 2 : 1);
15007         /* TODO: We can extract value of the small expression via shifting even
15008            for nonzero bitpos.  */
15009         if (list_ret == 0)
15010           return 0;
15011         if (bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
15012           {
15013             expansion_failed (loc, NULL_RTX,
15014                               "bitfield access");
15015             return 0;
15016           }
15017
15018         if (offset != NULL_TREE)
15019           {
15020             /* Variable offset.  */
15021             list_ret1 = loc_list_from_tree (offset, 0);
15022             if (list_ret1 == 0)
15023               return 0;
15024             add_loc_list (&list_ret, list_ret1);
15025             if (!list_ret)
15026               return 0;
15027             add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus, 0, 0));
15028           }
15029
15030         bytepos = bitpos / BITS_PER_UNIT;
15031         if (bytepos > 0)
15032           add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
15033         else if (bytepos < 0)
15034           loc_list_plus_const (list_ret, bytepos);
15035
15036         have_address = 1;
15037         break;
15038       }
15039
15040     case INTEGER_CST:
15041       if ((want_address || !host_integerp (loc, 0))
15042           && (ret = cst_pool_loc_descr (loc)))
15043         have_address = 1;
15044       else if (want_address == 2
15045                && host_integerp (loc, 0)
15046                && (ret = address_of_int_loc_descriptor
15047                            (int_size_in_bytes (TREE_TYPE (loc)),
15048                             tree_low_cst (loc, 0))))
15049         have_address = 1;
15050       else if (host_integerp (loc, 0))
15051         ret = int_loc_descriptor (tree_low_cst (loc, 0));
15052       else
15053         {
15054           expansion_failed (loc, NULL_RTX,
15055                             "Integer operand is not host integer");
15056           return 0;
15057         }
15058       break;
15059
15060     case CONSTRUCTOR:
15061     case REAL_CST:
15062     case STRING_CST:
15063     case COMPLEX_CST:
15064       if ((ret = cst_pool_loc_descr (loc)))
15065         have_address = 1;
15066       else
15067       /* We can construct small constants here using int_loc_descriptor.  */
15068         expansion_failed (loc, NULL_RTX,
15069                           "constructor or constant not in constant pool");
15070       break;
15071
15072     case TRUTH_AND_EXPR:
15073     case TRUTH_ANDIF_EXPR:
15074     case BIT_AND_EXPR:
15075       op = DW_OP_and;
15076       goto do_binop;
15077
15078     case TRUTH_XOR_EXPR:
15079     case BIT_XOR_EXPR:
15080       op = DW_OP_xor;
15081       goto do_binop;
15082
15083     case TRUTH_OR_EXPR:
15084     case TRUTH_ORIF_EXPR:
15085     case BIT_IOR_EXPR:
15086       op = DW_OP_or;
15087       goto do_binop;
15088
15089     case FLOOR_DIV_EXPR:
15090     case CEIL_DIV_EXPR:
15091     case ROUND_DIV_EXPR:
15092     case TRUNC_DIV_EXPR:
15093       if (TYPE_UNSIGNED (TREE_TYPE (loc)))
15094         return 0;
15095       op = DW_OP_div;
15096       goto do_binop;
15097
15098     case MINUS_EXPR:
15099       op = DW_OP_minus;
15100       goto do_binop;
15101
15102     case FLOOR_MOD_EXPR:
15103     case CEIL_MOD_EXPR:
15104     case ROUND_MOD_EXPR:
15105     case TRUNC_MOD_EXPR:
15106       if (TYPE_UNSIGNED (TREE_TYPE (loc)))
15107         {
15108           op = DW_OP_mod;
15109           goto do_binop;
15110         }
15111       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15112       list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0);
15113       if (list_ret == 0 || list_ret1 == 0)
15114         return 0;
15115
15116       add_loc_list (&list_ret, list_ret1);
15117       if (list_ret == 0)
15118         return 0;
15119       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
15120       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
15121       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_div, 0, 0));
15122       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_mul, 0, 0));
15123       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_minus, 0, 0));
15124       break;
15125
15126     case MULT_EXPR:
15127       op = DW_OP_mul;
15128       goto do_binop;
15129
15130     case LSHIFT_EXPR:
15131       op = DW_OP_shl;
15132       goto do_binop;
15133
15134     case RSHIFT_EXPR:
15135       op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
15136       goto do_binop;
15137
15138     case POINTER_PLUS_EXPR:
15139     case PLUS_EXPR:
15140       if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
15141           && host_integerp (TREE_OPERAND (loc, 1), 0))
15142         {
15143           list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15144           if (list_ret == 0)
15145             return 0;
15146
15147           loc_list_plus_const (list_ret, tree_low_cst (TREE_OPERAND (loc, 1), 0));
15148           break;
15149         }
15150
15151       op = DW_OP_plus;
15152       goto do_binop;
15153
15154     case LE_EXPR:
15155       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
15156         return 0;
15157
15158       op = DW_OP_le;
15159       goto do_binop;
15160
15161     case GE_EXPR:
15162       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
15163         return 0;
15164
15165       op = DW_OP_ge;
15166       goto do_binop;
15167
15168     case LT_EXPR:
15169       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
15170         return 0;
15171
15172       op = DW_OP_lt;
15173       goto do_binop;
15174
15175     case GT_EXPR:
15176       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
15177         return 0;
15178
15179       op = DW_OP_gt;
15180       goto do_binop;
15181
15182     case EQ_EXPR:
15183       op = DW_OP_eq;
15184       goto do_binop;
15185
15186     case NE_EXPR:
15187       op = DW_OP_ne;
15188       goto do_binop;
15189
15190     do_binop:
15191       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15192       list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0);
15193       if (list_ret == 0 || list_ret1 == 0)
15194         return 0;
15195
15196       add_loc_list (&list_ret, list_ret1);
15197       if (list_ret == 0)
15198         return 0;
15199       add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
15200       break;
15201
15202     case TRUTH_NOT_EXPR:
15203     case BIT_NOT_EXPR:
15204       op = DW_OP_not;
15205       goto do_unop;
15206
15207     case ABS_EXPR:
15208       op = DW_OP_abs;
15209       goto do_unop;
15210
15211     case NEGATE_EXPR:
15212       op = DW_OP_neg;
15213       goto do_unop;
15214
15215     do_unop:
15216       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15217       if (list_ret == 0)
15218         return 0;
15219
15220       add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
15221       break;
15222
15223     case MIN_EXPR:
15224     case MAX_EXPR:
15225       {
15226         const enum tree_code code =
15227           TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
15228
15229         loc = build3 (COND_EXPR, TREE_TYPE (loc),
15230                       build2 (code, integer_type_node,
15231                               TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
15232                       TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
15233       }
15234
15235       /* ... fall through ...  */
15236
15237     case COND_EXPR:
15238       {
15239         dw_loc_descr_ref lhs
15240           = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
15241         dw_loc_list_ref rhs
15242           = loc_list_from_tree (TREE_OPERAND (loc, 2), 0);
15243         dw_loc_descr_ref bra_node, jump_node, tmp;
15244
15245         list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
15246         if (list_ret == 0 || lhs == 0 || rhs == 0)
15247           return 0;
15248
15249         bra_node = new_loc_descr (DW_OP_bra, 0, 0);
15250         add_loc_descr_to_each (list_ret, bra_node);
15251
15252         add_loc_list (&list_ret, rhs);
15253         jump_node = new_loc_descr (DW_OP_skip, 0, 0);
15254         add_loc_descr_to_each (list_ret, jump_node);
15255
15256         add_loc_descr_to_each (list_ret, lhs);
15257         bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
15258         bra_node->dw_loc_oprnd1.v.val_loc = lhs;
15259
15260         /* ??? Need a node to point the skip at.  Use a nop.  */
15261         tmp = new_loc_descr (DW_OP_nop, 0, 0);
15262         add_loc_descr_to_each (list_ret, tmp);
15263         jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
15264         jump_node->dw_loc_oprnd1.v.val_loc = tmp;
15265       }
15266       break;
15267
15268     case FIX_TRUNC_EXPR:
15269       return 0;
15270
15271     default:
15272       /* Leave front-end specific codes as simply unknown.  This comes
15273          up, for instance, with the C STMT_EXPR.  */
15274       if ((unsigned int) TREE_CODE (loc)
15275           >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
15276         {
15277           expansion_failed (loc, NULL_RTX,
15278                             "language specific tree node");
15279           return 0;
15280         }
15281
15282 #ifdef ENABLE_CHECKING
15283       /* Otherwise this is a generic code; we should just lists all of
15284          these explicitly.  We forgot one.  */
15285       gcc_unreachable ();
15286 #else
15287       /* In a release build, we want to degrade gracefully: better to
15288          generate incomplete debugging information than to crash.  */
15289       return NULL;
15290 #endif
15291     }
15292
15293   if (!ret && !list_ret)
15294     return 0;
15295
15296   if (want_address == 2 && !have_address
15297       && (dwarf_version >= 4 || !dwarf_strict))
15298     {
15299       if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
15300         {
15301           expansion_failed (loc, NULL_RTX,
15302                             "DWARF address size mismatch");
15303           return 0;
15304         }
15305       if (ret)
15306         add_loc_descr (&ret, new_loc_descr (DW_OP_stack_value, 0, 0));
15307       else
15308         add_loc_descr_to_each (list_ret,
15309                                new_loc_descr (DW_OP_stack_value, 0, 0));
15310       have_address = 1;
15311     }
15312   /* Show if we can't fill the request for an address.  */
15313   if (want_address && !have_address)
15314     {
15315       expansion_failed (loc, NULL_RTX,
15316                         "Want address and only have value");
15317       return 0;
15318     }
15319
15320   gcc_assert (!ret || !list_ret);
15321
15322   /* If we've got an address and don't want one, dereference.  */
15323   if (!want_address && have_address)
15324     {
15325       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
15326
15327       if (size > DWARF2_ADDR_SIZE || size == -1)
15328         {
15329           expansion_failed (loc, NULL_RTX,
15330                             "DWARF address size mismatch");
15331           return 0;
15332         }
15333       else if (size == DWARF2_ADDR_SIZE)
15334         op = DW_OP_deref;
15335       else
15336         op = DW_OP_deref_size;
15337
15338       if (ret)
15339         add_loc_descr (&ret, new_loc_descr (op, size, 0));
15340       else
15341         add_loc_descr_to_each (list_ret, new_loc_descr (op, size, 0));
15342     }
15343   if (ret)
15344     list_ret = new_loc_list (ret, NULL, NULL, NULL);
15345
15346   return list_ret;
15347 }
15348
15349 /* Same as above but return only single location expression.  */
15350 static dw_loc_descr_ref
15351 loc_descriptor_from_tree (tree loc, int want_address)
15352 {
15353   dw_loc_list_ref ret = loc_list_from_tree (loc, want_address);
15354   if (!ret)
15355     return NULL;
15356   if (ret->dw_loc_next)
15357     {
15358       expansion_failed (loc, NULL_RTX,
15359                         "Location list where only loc descriptor needed");
15360       return NULL;
15361     }
15362   return ret->expr;
15363 }
15364
15365 /* Given a value, round it up to the lowest multiple of `boundary'
15366    which is not less than the value itself.  */
15367
15368 static inline HOST_WIDE_INT
15369 ceiling (HOST_WIDE_INT value, unsigned int boundary)
15370 {
15371   return (((value + boundary - 1) / boundary) * boundary);
15372 }
15373
15374 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
15375    pointer to the declared type for the relevant field variable, or return
15376    `integer_type_node' if the given node turns out to be an
15377    ERROR_MARK node.  */
15378
15379 static inline tree
15380 field_type (const_tree decl)
15381 {
15382   tree type;
15383
15384   if (TREE_CODE (decl) == ERROR_MARK)
15385     return integer_type_node;
15386
15387   type = DECL_BIT_FIELD_TYPE (decl);
15388   if (type == NULL_TREE)
15389     type = TREE_TYPE (decl);
15390
15391   return type;
15392 }
15393
15394 /* Given a pointer to a tree node, return the alignment in bits for
15395    it, or else return BITS_PER_WORD if the node actually turns out to
15396    be an ERROR_MARK node.  */
15397
15398 static inline unsigned
15399 simple_type_align_in_bits (const_tree type)
15400 {
15401   return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
15402 }
15403
15404 static inline unsigned
15405 simple_decl_align_in_bits (const_tree decl)
15406 {
15407   return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
15408 }
15409
15410 /* Return the result of rounding T up to ALIGN.  */
15411
15412 static inline HOST_WIDE_INT
15413 round_up_to_align (HOST_WIDE_INT t, unsigned int align)
15414 {
15415   /* We must be careful if T is negative because HOST_WIDE_INT can be
15416      either "above" or "below" unsigned int as per the C promotion
15417      rules, depending on the host, thus making the signedness of the
15418      direct multiplication and division unpredictable.  */
15419   unsigned HOST_WIDE_INT u = (unsigned HOST_WIDE_INT) t;
15420
15421   u += align - 1;
15422   u /= align;
15423   u *= align;
15424
15425   return (HOST_WIDE_INT) u;
15426 }
15427
15428 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
15429    lowest addressed byte of the "containing object" for the given FIELD_DECL,
15430    or return 0 if we are unable to determine what that offset is, either
15431    because the argument turns out to be a pointer to an ERROR_MARK node, or
15432    because the offset is actually variable.  (We can't handle the latter case
15433    just yet).  */
15434
15435 static HOST_WIDE_INT
15436 field_byte_offset (const_tree decl)
15437 {
15438   HOST_WIDE_INT object_offset_in_bits;
15439   HOST_WIDE_INT bitpos_int;
15440
15441   if (TREE_CODE (decl) == ERROR_MARK)
15442     return 0;
15443
15444   gcc_assert (TREE_CODE (decl) == FIELD_DECL);
15445
15446   /* We cannot yet cope with fields whose positions are variable, so
15447      for now, when we see such things, we simply return 0.  Someday, we may
15448      be able to handle such cases, but it will be damn difficult.  */
15449   if (! host_integerp (bit_position (decl), 0))
15450     return 0;
15451
15452   bitpos_int = int_bit_position (decl);
15453
15454 #ifdef PCC_BITFIELD_TYPE_MATTERS
15455   if (PCC_BITFIELD_TYPE_MATTERS)
15456     {
15457       tree type;
15458       tree field_size_tree;
15459       HOST_WIDE_INT deepest_bitpos;
15460       unsigned HOST_WIDE_INT field_size_in_bits;
15461       unsigned int type_align_in_bits;
15462       unsigned int decl_align_in_bits;
15463       unsigned HOST_WIDE_INT type_size_in_bits;
15464
15465       type = field_type (decl);
15466       type_size_in_bits = simple_type_size_in_bits (type);
15467       type_align_in_bits = simple_type_align_in_bits (type);
15468
15469       field_size_tree = DECL_SIZE (decl);
15470
15471       /* The size could be unspecified if there was an error, or for
15472          a flexible array member.  */
15473       if (!field_size_tree)
15474         field_size_tree = bitsize_zero_node;
15475
15476       /* If the size of the field is not constant, use the type size.  */
15477       if (host_integerp (field_size_tree, 1))
15478         field_size_in_bits = tree_low_cst (field_size_tree, 1);
15479       else
15480         field_size_in_bits = type_size_in_bits;
15481
15482       decl_align_in_bits = simple_decl_align_in_bits (decl);
15483
15484       /* The GCC front-end doesn't make any attempt to keep track of the
15485          starting bit offset (relative to the start of the containing
15486          structure type) of the hypothetical "containing object" for a
15487          bit-field.  Thus, when computing the byte offset value for the
15488          start of the "containing object" of a bit-field, we must deduce
15489          this information on our own. This can be rather tricky to do in
15490          some cases.  For example, handling the following structure type
15491          definition when compiling for an i386/i486 target (which only
15492          aligns long long's to 32-bit boundaries) can be very tricky:
15493
15494          struct S { int field1; long long field2:31; };
15495
15496          Fortunately, there is a simple rule-of-thumb which can be used
15497          in such cases.  When compiling for an i386/i486, GCC will
15498          allocate 8 bytes for the structure shown above.  It decides to
15499          do this based upon one simple rule for bit-field allocation.
15500          GCC allocates each "containing object" for each bit-field at
15501          the first (i.e. lowest addressed) legitimate alignment boundary
15502          (based upon the required minimum alignment for the declared
15503          type of the field) which it can possibly use, subject to the
15504          condition that there is still enough available space remaining
15505          in the containing object (when allocated at the selected point)
15506          to fully accommodate all of the bits of the bit-field itself.
15507
15508          This simple rule makes it obvious why GCC allocates 8 bytes for
15509          each object of the structure type shown above.  When looking
15510          for a place to allocate the "containing object" for `field2',
15511          the compiler simply tries to allocate a 64-bit "containing
15512          object" at each successive 32-bit boundary (starting at zero)
15513          until it finds a place to allocate that 64- bit field such that
15514          at least 31 contiguous (and previously unallocated) bits remain
15515          within that selected 64 bit field.  (As it turns out, for the
15516          example above, the compiler finds it is OK to allocate the
15517          "containing object" 64-bit field at bit-offset zero within the
15518          structure type.)
15519
15520          Here we attempt to work backwards from the limited set of facts
15521          we're given, and we try to deduce from those facts, where GCC
15522          must have believed that the containing object started (within
15523          the structure type). The value we deduce is then used (by the
15524          callers of this routine) to generate DW_AT_location and
15525          DW_AT_bit_offset attributes for fields (both bit-fields and, in
15526          the case of DW_AT_location, regular fields as well).  */
15527
15528       /* Figure out the bit-distance from the start of the structure to
15529          the "deepest" bit of the bit-field.  */
15530       deepest_bitpos = bitpos_int + field_size_in_bits;
15531
15532       /* This is the tricky part.  Use some fancy footwork to deduce
15533          where the lowest addressed bit of the containing object must
15534          be.  */
15535       object_offset_in_bits = deepest_bitpos - type_size_in_bits;
15536
15537       /* Round up to type_align by default.  This works best for
15538          bitfields.  */
15539       object_offset_in_bits
15540         = round_up_to_align (object_offset_in_bits, type_align_in_bits);
15541
15542       if (object_offset_in_bits > bitpos_int)
15543         {
15544           object_offset_in_bits = deepest_bitpos - type_size_in_bits;
15545
15546           /* Round up to decl_align instead.  */
15547           object_offset_in_bits
15548             = round_up_to_align (object_offset_in_bits, decl_align_in_bits);
15549         }
15550     }
15551   else
15552 #endif
15553     object_offset_in_bits = bitpos_int;
15554
15555   return object_offset_in_bits / BITS_PER_UNIT;
15556 }
15557 \f
15558 /* The following routines define various Dwarf attributes and any data
15559    associated with them.  */
15560
15561 /* Add a location description attribute value to a DIE.
15562
15563    This emits location attributes suitable for whole variables and
15564    whole parameters.  Note that the location attributes for struct fields are
15565    generated by the routine `data_member_location_attribute' below.  */
15566
15567 static inline void
15568 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
15569                              dw_loc_list_ref descr)
15570 {
15571   if (descr == 0)
15572     return;
15573   if (single_element_loc_list_p (descr))
15574     add_AT_loc (die, attr_kind, descr->expr);
15575   else
15576     add_AT_loc_list (die, attr_kind, descr);
15577 }
15578
15579 /* Attach the specialized form of location attribute used for data members of
15580    struct and union types.  In the special case of a FIELD_DECL node which
15581    represents a bit-field, the "offset" part of this special location
15582    descriptor must indicate the distance in bytes from the lowest-addressed
15583    byte of the containing struct or union type to the lowest-addressed byte of
15584    the "containing object" for the bit-field.  (See the `field_byte_offset'
15585    function above).
15586
15587    For any given bit-field, the "containing object" is a hypothetical object
15588    (of some integral or enum type) within which the given bit-field lives.  The
15589    type of this hypothetical "containing object" is always the same as the
15590    declared type of the individual bit-field itself (for GCC anyway... the
15591    DWARF spec doesn't actually mandate this).  Note that it is the size (in
15592    bytes) of the hypothetical "containing object" which will be given in the
15593    DW_AT_byte_size attribute for this bit-field.  (See the
15594    `byte_size_attribute' function below.)  It is also used when calculating the
15595    value of the DW_AT_bit_offset attribute.  (See the `bit_offset_attribute'
15596    function below.)  */
15597
15598 static void
15599 add_data_member_location_attribute (dw_die_ref die, tree decl)
15600 {
15601   HOST_WIDE_INT offset;
15602   dw_loc_descr_ref loc_descr = 0;
15603
15604   if (TREE_CODE (decl) == TREE_BINFO)
15605     {
15606       /* We're working on the TAG_inheritance for a base class.  */
15607       if (BINFO_VIRTUAL_P (decl) && is_cxx ())
15608         {
15609           /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
15610              aren't at a fixed offset from all (sub)objects of the same
15611              type.  We need to extract the appropriate offset from our
15612              vtable.  The following dwarf expression means
15613
15614                BaseAddr = ObAddr + *((*ObAddr) - Offset)
15615
15616              This is specific to the V3 ABI, of course.  */
15617
15618           dw_loc_descr_ref tmp;
15619
15620           /* Make a copy of the object address.  */
15621           tmp = new_loc_descr (DW_OP_dup, 0, 0);
15622           add_loc_descr (&loc_descr, tmp);
15623
15624           /* Extract the vtable address.  */
15625           tmp = new_loc_descr (DW_OP_deref, 0, 0);
15626           add_loc_descr (&loc_descr, tmp);
15627
15628           /* Calculate the address of the offset.  */
15629           offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
15630           gcc_assert (offset < 0);
15631
15632           tmp = int_loc_descriptor (-offset);
15633           add_loc_descr (&loc_descr, tmp);
15634           tmp = new_loc_descr (DW_OP_minus, 0, 0);
15635           add_loc_descr (&loc_descr, tmp);
15636
15637           /* Extract the offset.  */
15638           tmp = new_loc_descr (DW_OP_deref, 0, 0);
15639           add_loc_descr (&loc_descr, tmp);
15640
15641           /* Add it to the object address.  */
15642           tmp = new_loc_descr (DW_OP_plus, 0, 0);
15643           add_loc_descr (&loc_descr, tmp);
15644         }
15645       else
15646         offset = tree_low_cst (BINFO_OFFSET (decl), 0);
15647     }
15648   else
15649     offset = field_byte_offset (decl);
15650
15651   if (! loc_descr)
15652     {
15653       if (dwarf_version > 2)
15654         {
15655           /* Don't need to output a location expression, just the constant. */
15656           add_AT_int (die, DW_AT_data_member_location, offset);
15657           return;
15658         }
15659       else
15660         {
15661           enum dwarf_location_atom op;
15662
15663           /* The DWARF2 standard says that we should assume that the structure
15664              address is already on the stack, so we can specify a structure
15665              field address by using DW_OP_plus_uconst.  */
15666
15667 #ifdef MIPS_DEBUGGING_INFO
15668           /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
15669              operator correctly.  It works only if we leave the offset on the
15670              stack.  */
15671           op = DW_OP_constu;
15672 #else
15673           op = DW_OP_plus_uconst;
15674 #endif
15675
15676           loc_descr = new_loc_descr (op, offset, 0);
15677         }
15678     }
15679
15680   add_AT_loc (die, DW_AT_data_member_location, loc_descr);
15681 }
15682
15683 /* Writes integer values to dw_vec_const array.  */
15684
15685 static void
15686 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
15687 {
15688   while (size != 0)
15689     {
15690       *dest++ = val & 0xff;
15691       val >>= 8;
15692       --size;
15693     }
15694 }
15695
15696 /* Reads integers from dw_vec_const array.  Inverse of insert_int.  */
15697
15698 static HOST_WIDE_INT
15699 extract_int (const unsigned char *src, unsigned int size)
15700 {
15701   HOST_WIDE_INT val = 0;
15702
15703   src += size;
15704   while (size != 0)
15705     {
15706       val <<= 8;
15707       val |= *--src & 0xff;
15708       --size;
15709     }
15710   return val;
15711 }
15712
15713 /* Writes double_int values to dw_vec_const array.  */
15714
15715 static void
15716 insert_double (double_int val, unsigned char *dest)
15717 {
15718   unsigned char *p0 = dest;
15719   unsigned char *p1 = dest + sizeof (HOST_WIDE_INT);
15720
15721   if (WORDS_BIG_ENDIAN)
15722     {
15723       p0 = p1;
15724       p1 = dest;
15725     }
15726
15727   insert_int ((HOST_WIDE_INT) val.low, sizeof (HOST_WIDE_INT), p0);
15728   insert_int ((HOST_WIDE_INT) val.high, sizeof (HOST_WIDE_INT), p1);
15729 }
15730
15731 /* Writes floating point values to dw_vec_const array.  */
15732
15733 static void
15734 insert_float (const_rtx rtl, unsigned char *array)
15735 {
15736   REAL_VALUE_TYPE rv;
15737   long val[4];
15738   int i;
15739
15740   REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
15741   real_to_target (val, &rv, GET_MODE (rtl));
15742
15743   /* real_to_target puts 32-bit pieces in each long.  Pack them.  */
15744   for (i = 0; i < GET_MODE_SIZE (GET_MODE (rtl)) / 4; i++)
15745     {
15746       insert_int (val[i], 4, array);
15747       array += 4;
15748     }
15749 }
15750
15751 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
15752    does not have a "location" either in memory or in a register.  These
15753    things can arise in GNU C when a constant is passed as an actual parameter
15754    to an inlined function.  They can also arise in C++ where declared
15755    constants do not necessarily get memory "homes".  */
15756
15757 static bool
15758 add_const_value_attribute (dw_die_ref die, rtx rtl)
15759 {
15760   switch (GET_CODE (rtl))
15761     {
15762     case CONST_INT:
15763       {
15764         HOST_WIDE_INT val = INTVAL (rtl);
15765
15766         if (val < 0)
15767           add_AT_int (die, DW_AT_const_value, val);
15768         else
15769           add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
15770       }
15771       return true;
15772
15773     case CONST_DOUBLE:
15774       /* Note that a CONST_DOUBLE rtx could represent either an integer or a
15775          floating-point constant.  A CONST_DOUBLE is used whenever the
15776          constant requires more than one word in order to be adequately
15777          represented.  */
15778       {
15779         enum machine_mode mode = GET_MODE (rtl);
15780
15781         if (SCALAR_FLOAT_MODE_P (mode))
15782           {
15783             unsigned int length = GET_MODE_SIZE (mode);
15784             unsigned char *array = GGC_NEWVEC (unsigned char, length);
15785
15786             insert_float (rtl, array);
15787             add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
15788           }
15789         else
15790           add_AT_double (die, DW_AT_const_value,
15791                          CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
15792       }
15793       return true;
15794
15795     case CONST_VECTOR:
15796       {
15797         enum machine_mode mode = GET_MODE (rtl);
15798         unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
15799         unsigned int length = CONST_VECTOR_NUNITS (rtl);
15800         unsigned char *array = GGC_NEWVEC (unsigned char, length * elt_size);
15801         unsigned int i;
15802         unsigned char *p;
15803
15804         switch (GET_MODE_CLASS (mode))
15805           {
15806           case MODE_VECTOR_INT:
15807             for (i = 0, p = array; i < length; i++, p += elt_size)
15808               {
15809                 rtx elt = CONST_VECTOR_ELT (rtl, i);
15810                 double_int val = rtx_to_double_int (elt);
15811
15812                 if (elt_size <= sizeof (HOST_WIDE_INT))
15813                   insert_int (double_int_to_shwi (val), elt_size, p);
15814                 else
15815                   {
15816                     gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
15817                     insert_double (val, p);
15818                   }
15819               }
15820             break;
15821
15822           case MODE_VECTOR_FLOAT:
15823             for (i = 0, p = array; i < length; i++, p += elt_size)
15824               {
15825                 rtx elt = CONST_VECTOR_ELT (rtl, i);
15826                 insert_float (elt, p);
15827               }
15828             break;
15829
15830           default:
15831             gcc_unreachable ();
15832           }
15833
15834         add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
15835       }
15836       return true;
15837
15838     case CONST_STRING:
15839       if (dwarf_version >= 4 || !dwarf_strict)
15840         {
15841           dw_loc_descr_ref loc_result;
15842           resolve_one_addr (&rtl, NULL);
15843         rtl_addr:
15844           loc_result = new_loc_descr (DW_OP_addr, 0, 0);
15845           loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
15846           loc_result->dw_loc_oprnd1.v.val_addr = rtl;
15847           add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
15848           add_AT_loc (die, DW_AT_location, loc_result);
15849           VEC_safe_push (rtx, gc, used_rtx_array, rtl);
15850           return true;
15851         }
15852       return false;
15853
15854     case CONST:
15855       if (CONSTANT_P (XEXP (rtl, 0)))
15856         return add_const_value_attribute (die, XEXP (rtl, 0));
15857       /* FALLTHROUGH */
15858     case SYMBOL_REF:
15859       if (!const_ok_for_output (rtl))
15860         return false;
15861     case LABEL_REF:
15862       if (dwarf_version >= 4 || !dwarf_strict)
15863         goto rtl_addr;
15864       return false;
15865
15866     case PLUS:
15867       /* In cases where an inlined instance of an inline function is passed
15868          the address of an `auto' variable (which is local to the caller) we
15869          can get a situation where the DECL_RTL of the artificial local
15870          variable (for the inlining) which acts as a stand-in for the
15871          corresponding formal parameter (of the inline function) will look
15872          like (plus:SI (reg:SI FRAME_PTR) (const_int ...)).  This is not
15873          exactly a compile-time constant expression, but it isn't the address
15874          of the (artificial) local variable either.  Rather, it represents the
15875          *value* which the artificial local variable always has during its
15876          lifetime.  We currently have no way to represent such quasi-constant
15877          values in Dwarf, so for now we just punt and generate nothing.  */
15878       return false;
15879
15880     case HIGH:
15881     case CONST_FIXED:
15882       return false;
15883
15884     case MEM:
15885       if (GET_CODE (XEXP (rtl, 0)) == CONST_STRING
15886           && MEM_READONLY_P (rtl)
15887           && GET_MODE (rtl) == BLKmode)
15888         {
15889           add_AT_string (die, DW_AT_const_value, XSTR (XEXP (rtl, 0), 0));
15890           return true;
15891         }
15892       return false;
15893
15894     default:
15895       /* No other kinds of rtx should be possible here.  */
15896       gcc_unreachable ();
15897     }
15898   return false;
15899 }
15900
15901 /* Determine whether the evaluation of EXPR references any variables
15902    or functions which aren't otherwise used (and therefore may not be
15903    output).  */
15904 static tree
15905 reference_to_unused (tree * tp, int * walk_subtrees,
15906                      void * data ATTRIBUTE_UNUSED)
15907 {
15908   if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
15909     *walk_subtrees = 0;
15910
15911   if (DECL_P (*tp) && ! TREE_PUBLIC (*tp) && ! TREE_USED (*tp)
15912       && ! TREE_ASM_WRITTEN (*tp))
15913     return *tp;
15914   /* ???  The C++ FE emits debug information for using decls, so
15915      putting gcc_unreachable here falls over.  See PR31899.  For now
15916      be conservative.  */
15917   else if (!cgraph_global_info_ready
15918            && (TREE_CODE (*tp) == VAR_DECL || TREE_CODE (*tp) == FUNCTION_DECL))
15919     return *tp;
15920   else if (TREE_CODE (*tp) == VAR_DECL)
15921     {
15922       struct varpool_node *node = varpool_node (*tp);
15923       if (!node->needed)
15924         return *tp;
15925     }
15926   else if (TREE_CODE (*tp) == FUNCTION_DECL
15927            && (!DECL_EXTERNAL (*tp) || DECL_DECLARED_INLINE_P (*tp)))
15928     {
15929       /* The call graph machinery must have finished analyzing,
15930          optimizing and gimplifying the CU by now.
15931          So if *TP has no call graph node associated
15932          to it, it means *TP will not be emitted.  */
15933       if (!cgraph_get_node (*tp))
15934         return *tp;
15935     }
15936   else if (TREE_CODE (*tp) == STRING_CST && !TREE_ASM_WRITTEN (*tp))
15937     return *tp;
15938
15939   return NULL_TREE;
15940 }
15941
15942 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
15943    for use in a later add_const_value_attribute call.  */
15944
15945 static rtx
15946 rtl_for_decl_init (tree init, tree type)
15947 {
15948   rtx rtl = NULL_RTX;
15949
15950   /* If a variable is initialized with a string constant without embedded
15951      zeros, build CONST_STRING.  */
15952   if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
15953     {
15954       tree enttype = TREE_TYPE (type);
15955       tree domain = TYPE_DOMAIN (type);
15956       enum machine_mode mode = TYPE_MODE (enttype);
15957
15958       if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_SIZE (mode) == 1
15959           && domain
15960           && integer_zerop (TYPE_MIN_VALUE (domain))
15961           && compare_tree_int (TYPE_MAX_VALUE (domain),
15962                                TREE_STRING_LENGTH (init) - 1) == 0
15963           && ((size_t) TREE_STRING_LENGTH (init)
15964               == strlen (TREE_STRING_POINTER (init)) + 1))
15965         {
15966           rtl = gen_rtx_CONST_STRING (VOIDmode,
15967                                       ggc_strdup (TREE_STRING_POINTER (init)));
15968           rtl = gen_rtx_MEM (BLKmode, rtl);
15969           MEM_READONLY_P (rtl) = 1;
15970         }
15971     }
15972   /* Other aggregates, and complex values, could be represented using
15973      CONCAT: FIXME!  */
15974   else if (AGGREGATE_TYPE_P (type) || TREE_CODE (type) == COMPLEX_TYPE)
15975     ;
15976   /* Vectors only work if their mode is supported by the target.
15977      FIXME: generic vectors ought to work too.  */
15978   else if (TREE_CODE (type) == VECTOR_TYPE && TYPE_MODE (type) == BLKmode)
15979     ;
15980   /* If the initializer is something that we know will expand into an
15981      immediate RTL constant, expand it now.  We must be careful not to
15982      reference variables which won't be output.  */
15983   else if (initializer_constant_valid_p (init, type)
15984            && ! walk_tree (&init, reference_to_unused, NULL, NULL))
15985     {
15986       /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
15987          possible.  */
15988       if (TREE_CODE (type) == VECTOR_TYPE)
15989         switch (TREE_CODE (init))
15990           {
15991           case VECTOR_CST:
15992             break;
15993           case CONSTRUCTOR:
15994             if (TREE_CONSTANT (init))
15995               {
15996                 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (init);
15997                 bool constant_p = true;
15998                 tree value;
15999                 unsigned HOST_WIDE_INT ix;
16000
16001                 /* Even when ctor is constant, it might contain non-*_CST
16002                    elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
16003                    belong into VECTOR_CST nodes.  */
16004                 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
16005                   if (!CONSTANT_CLASS_P (value))
16006                     {
16007                       constant_p = false;
16008                       break;
16009                     }
16010
16011                 if (constant_p)
16012                   {
16013                     init = build_vector_from_ctor (type, elts);
16014                     break;
16015                   }
16016               }
16017             /* FALLTHRU */
16018
16019           default:
16020             return NULL;
16021           }
16022
16023       rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
16024
16025       /* If expand_expr returns a MEM, it wasn't immediate.  */
16026       gcc_assert (!rtl || !MEM_P (rtl));
16027     }
16028
16029   return rtl;
16030 }
16031
16032 /* Generate RTL for the variable DECL to represent its location.  */
16033
16034 static rtx
16035 rtl_for_decl_location (tree decl)
16036 {
16037   rtx rtl;
16038
16039   /* Here we have to decide where we are going to say the parameter "lives"
16040      (as far as the debugger is concerned).  We only have a couple of
16041      choices.  GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
16042
16043      DECL_RTL normally indicates where the parameter lives during most of the
16044      activation of the function.  If optimization is enabled however, this
16045      could be either NULL or else a pseudo-reg.  Both of those cases indicate
16046      that the parameter doesn't really live anywhere (as far as the code
16047      generation parts of GCC are concerned) during most of the function's
16048      activation.  That will happen (for example) if the parameter is never
16049      referenced within the function.
16050
16051      We could just generate a location descriptor here for all non-NULL
16052      non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
16053      a little nicer than that if we also consider DECL_INCOMING_RTL in cases
16054      where DECL_RTL is NULL or is a pseudo-reg.
16055
16056      Note however that we can only get away with using DECL_INCOMING_RTL as
16057      a backup substitute for DECL_RTL in certain limited cases.  In cases
16058      where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
16059      we can be sure that the parameter was passed using the same type as it is
16060      declared to have within the function, and that its DECL_INCOMING_RTL
16061      points us to a place where a value of that type is passed.
16062
16063      In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
16064      we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
16065      because in these cases DECL_INCOMING_RTL points us to a value of some
16066      type which is *different* from the type of the parameter itself.  Thus,
16067      if we tried to use DECL_INCOMING_RTL to generate a location attribute in
16068      such cases, the debugger would end up (for example) trying to fetch a
16069      `float' from a place which actually contains the first part of a
16070      `double'.  That would lead to really incorrect and confusing
16071      output at debug-time.
16072
16073      So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
16074      in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl).  There
16075      are a couple of exceptions however.  On little-endian machines we can
16076      get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
16077      not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
16078      an integral type that is smaller than TREE_TYPE (decl). These cases arise
16079      when (on a little-endian machine) a non-prototyped function has a
16080      parameter declared to be of type `short' or `char'.  In such cases,
16081      TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
16082      be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
16083      passed `int' value.  If the debugger then uses that address to fetch
16084      a `short' or a `char' (on a little-endian machine) the result will be
16085      the correct data, so we allow for such exceptional cases below.
16086
16087      Note that our goal here is to describe the place where the given formal
16088      parameter lives during most of the function's activation (i.e. between the
16089      end of the prologue and the start of the epilogue).  We'll do that as best
16090      as we can. Note however that if the given formal parameter is modified
16091      sometime during the execution of the function, then a stack backtrace (at
16092      debug-time) will show the function as having been called with the *new*
16093      value rather than the value which was originally passed in.  This happens
16094      rarely enough that it is not a major problem, but it *is* a problem, and
16095      I'd like to fix it.
16096
16097      A future version of dwarf2out.c may generate two additional attributes for
16098      any given DW_TAG_formal_parameter DIE which will describe the "passed
16099      type" and the "passed location" for the given formal parameter in addition
16100      to the attributes we now generate to indicate the "declared type" and the
16101      "active location" for each parameter.  This additional set of attributes
16102      could be used by debuggers for stack backtraces. Separately, note that
16103      sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
16104      This happens (for example) for inlined-instances of inline function formal
16105      parameters which are never referenced.  This really shouldn't be
16106      happening.  All PARM_DECL nodes should get valid non-NULL
16107      DECL_INCOMING_RTL values.  FIXME.  */
16108
16109   /* Use DECL_RTL as the "location" unless we find something better.  */
16110   rtl = DECL_RTL_IF_SET (decl);
16111
16112   /* When generating abstract instances, ignore everything except
16113      constants, symbols living in memory, and symbols living in
16114      fixed registers.  */
16115   if (! reload_completed)
16116     {
16117       if (rtl
16118           && (CONSTANT_P (rtl)
16119               || (MEM_P (rtl)
16120                   && CONSTANT_P (XEXP (rtl, 0)))
16121               || (REG_P (rtl)
16122                   && TREE_CODE (decl) == VAR_DECL
16123                   && TREE_STATIC (decl))))
16124         {
16125           rtl = targetm.delegitimize_address (rtl);
16126           return rtl;
16127         }
16128       rtl = NULL_RTX;
16129     }
16130   else if (TREE_CODE (decl) == PARM_DECL)
16131     {
16132       if (rtl == NULL_RTX || is_pseudo_reg (rtl))
16133         {
16134           tree declared_type = TREE_TYPE (decl);
16135           tree passed_type = DECL_ARG_TYPE (decl);
16136           enum machine_mode dmode = TYPE_MODE (declared_type);
16137           enum machine_mode pmode = TYPE_MODE (passed_type);
16138
16139           /* This decl represents a formal parameter which was optimized out.
16140              Note that DECL_INCOMING_RTL may be NULL in here, but we handle
16141              all cases where (rtl == NULL_RTX) just below.  */
16142           if (dmode == pmode)
16143             rtl = DECL_INCOMING_RTL (decl);
16144           else if (SCALAR_INT_MODE_P (dmode)
16145                    && GET_MODE_SIZE (dmode) <= GET_MODE_SIZE (pmode)
16146                    && DECL_INCOMING_RTL (decl))
16147             {
16148               rtx inc = DECL_INCOMING_RTL (decl);
16149               if (REG_P (inc))
16150                 rtl = inc;
16151               else if (MEM_P (inc))
16152                 {
16153                   if (BYTES_BIG_ENDIAN)
16154                     rtl = adjust_address_nv (inc, dmode,
16155                                              GET_MODE_SIZE (pmode)
16156                                              - GET_MODE_SIZE (dmode));
16157                   else
16158                     rtl = inc;
16159                 }
16160             }
16161         }
16162
16163       /* If the parm was passed in registers, but lives on the stack, then
16164          make a big endian correction if the mode of the type of the
16165          parameter is not the same as the mode of the rtl.  */
16166       /* ??? This is the same series of checks that are made in dbxout.c before
16167          we reach the big endian correction code there.  It isn't clear if all
16168          of these checks are necessary here, but keeping them all is the safe
16169          thing to do.  */
16170       else if (MEM_P (rtl)
16171                && XEXP (rtl, 0) != const0_rtx
16172                && ! CONSTANT_P (XEXP (rtl, 0))
16173                /* Not passed in memory.  */
16174                && !MEM_P (DECL_INCOMING_RTL (decl))
16175                /* Not passed by invisible reference.  */
16176                && (!REG_P (XEXP (rtl, 0))
16177                    || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
16178                    || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
16179 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
16180                    || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
16181 #endif
16182                      )
16183                /* Big endian correction check.  */
16184                && BYTES_BIG_ENDIAN
16185                && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
16186                && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
16187                    < UNITS_PER_WORD))
16188         {
16189           int offset = (UNITS_PER_WORD
16190                         - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
16191
16192           rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
16193                              plus_constant (XEXP (rtl, 0), offset));
16194         }
16195     }
16196   else if (TREE_CODE (decl) == VAR_DECL
16197            && rtl
16198            && MEM_P (rtl)
16199            && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl))
16200            && BYTES_BIG_ENDIAN)
16201     {
16202       int rsize = GET_MODE_SIZE (GET_MODE (rtl));
16203       int dsize = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)));
16204
16205       /* If a variable is declared "register" yet is smaller than
16206          a register, then if we store the variable to memory, it
16207          looks like we're storing a register-sized value, when in
16208          fact we are not.  We need to adjust the offset of the
16209          storage location to reflect the actual value's bytes,
16210          else gdb will not be able to display it.  */
16211       if (rsize > dsize)
16212         rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
16213                            plus_constant (XEXP (rtl, 0), rsize-dsize));
16214     }
16215
16216   /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
16217      and will have been substituted directly into all expressions that use it.
16218      C does not have such a concept, but C++ and other languages do.  */
16219   if (!rtl && TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
16220     rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
16221
16222   if (rtl)
16223     rtl = targetm.delegitimize_address (rtl);
16224
16225   /* If we don't look past the constant pool, we risk emitting a
16226      reference to a constant pool entry that isn't referenced from
16227      code, and thus is not emitted.  */
16228   if (rtl)
16229     rtl = avoid_constant_pool_reference (rtl);
16230
16231   /* Try harder to get a rtl.  If this symbol ends up not being emitted
16232      in the current CU, resolve_addr will remove the expression referencing
16233      it.  */
16234   if (rtl == NULL_RTX
16235       && TREE_CODE (decl) == VAR_DECL
16236       && !DECL_EXTERNAL (decl)
16237       && TREE_STATIC (decl)
16238       && DECL_NAME (decl)
16239       && !DECL_HARD_REGISTER (decl)
16240       && DECL_MODE (decl) != VOIDmode)
16241     {
16242       rtl = make_decl_rtl_for_debug (decl);
16243       if (!MEM_P (rtl)
16244           || GET_CODE (XEXP (rtl, 0)) != SYMBOL_REF
16245           || SYMBOL_REF_DECL (XEXP (rtl, 0)) != decl)
16246         rtl = NULL_RTX;
16247     }
16248
16249   return rtl;
16250 }
16251
16252 /* Check whether decl is a Fortran COMMON symbol.  If not, NULL_TREE is
16253    returned.  If so, the decl for the COMMON block is returned, and the
16254    value is the offset into the common block for the symbol.  */
16255
16256 static tree
16257 fortran_common (tree decl, HOST_WIDE_INT *value)
16258 {
16259   tree val_expr, cvar;
16260   enum machine_mode mode;
16261   HOST_WIDE_INT bitsize, bitpos;
16262   tree offset;
16263   int volatilep = 0, unsignedp = 0;
16264
16265   /* If the decl isn't a VAR_DECL, or if it isn't static, or if
16266      it does not have a value (the offset into the common area), or if it
16267      is thread local (as opposed to global) then it isn't common, and shouldn't
16268      be handled as such.  */
16269   if (TREE_CODE (decl) != VAR_DECL
16270       || !TREE_STATIC (decl)
16271       || !DECL_HAS_VALUE_EXPR_P (decl)
16272       || !is_fortran ())
16273     return NULL_TREE;
16274
16275   val_expr = DECL_VALUE_EXPR (decl);
16276   if (TREE_CODE (val_expr) != COMPONENT_REF)
16277     return NULL_TREE;
16278
16279   cvar = get_inner_reference (val_expr, &bitsize, &bitpos, &offset,
16280                               &mode, &unsignedp, &volatilep, true);
16281
16282   if (cvar == NULL_TREE
16283       || TREE_CODE (cvar) != VAR_DECL
16284       || DECL_ARTIFICIAL (cvar)
16285       || !TREE_PUBLIC (cvar))
16286     return NULL_TREE;
16287
16288   *value = 0;
16289   if (offset != NULL)
16290     {
16291       if (!host_integerp (offset, 0))
16292         return NULL_TREE;
16293       *value = tree_low_cst (offset, 0);
16294     }
16295   if (bitpos != 0)
16296     *value += bitpos / BITS_PER_UNIT;
16297
16298   return cvar;
16299 }
16300
16301 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
16302    data attribute for a variable or a parameter.  We generate the
16303    DW_AT_const_value attribute only in those cases where the given variable
16304    or parameter does not have a true "location" either in memory or in a
16305    register.  This can happen (for example) when a constant is passed as an
16306    actual argument in a call to an inline function.  (It's possible that
16307    these things can crop up in other ways also.)  Note that one type of
16308    constant value which can be passed into an inlined function is a constant
16309    pointer.  This can happen for example if an actual argument in an inlined
16310    function call evaluates to a compile-time constant address.  */
16311
16312 static bool
16313 add_location_or_const_value_attribute (dw_die_ref die, tree decl,
16314                                        enum dwarf_attribute attr)
16315 {
16316   rtx rtl;
16317   dw_loc_list_ref list;
16318   var_loc_list *loc_list;
16319
16320   if (TREE_CODE (decl) == ERROR_MARK)
16321     return false;
16322
16323   gcc_assert (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
16324               || TREE_CODE (decl) == RESULT_DECL);
16325
16326   /* Try to get some constant RTL for this decl, and use that as the value of
16327      the location.  */
16328
16329   rtl = rtl_for_decl_location (decl);
16330   if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
16331       && add_const_value_attribute (die, rtl))
16332     return true;
16333
16334   /* See if we have single element location list that is equivalent to
16335      a constant value.  That way we are better to use add_const_value_attribute
16336      rather than expanding constant value equivalent.  */
16337   loc_list = lookup_decl_loc (decl);
16338   if (loc_list
16339       && loc_list->first
16340       && loc_list->first->next == NULL
16341       && NOTE_P (loc_list->first->loc)
16342       && NOTE_VAR_LOCATION (loc_list->first->loc)
16343       && NOTE_VAR_LOCATION_LOC (loc_list->first->loc))
16344     {
16345       struct var_loc_node *node;
16346
16347       node = loc_list->first;
16348       rtl = NOTE_VAR_LOCATION_LOC (node->loc);
16349       if (GET_CODE (rtl) == EXPR_LIST)
16350         rtl = XEXP (rtl, 0);
16351       if ((CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
16352           && add_const_value_attribute (die, rtl))
16353          return true;
16354     }
16355   list = loc_list_from_tree (decl, decl_by_reference_p (decl) ? 0 : 2);
16356   if (list)
16357     {
16358       add_AT_location_description (die, attr, list);
16359       return true;
16360     }
16361   /* None of that worked, so it must not really have a location;
16362      try adding a constant value attribute from the DECL_INITIAL.  */
16363   return tree_add_const_value_attribute_for_decl (die, decl);
16364 }
16365
16366 /* Add VARIABLE and DIE into deferred locations list.  */
16367
16368 static void
16369 defer_location (tree variable, dw_die_ref die)
16370 {
16371   deferred_locations entry;
16372   entry.variable = variable;
16373   entry.die = die;
16374   VEC_safe_push (deferred_locations, gc, deferred_locations_list, &entry);
16375 }
16376
16377 /* Helper function for tree_add_const_value_attribute.  Natively encode
16378    initializer INIT into an array.  Return true if successful.  */
16379
16380 static bool
16381 native_encode_initializer (tree init, unsigned char *array, int size)
16382 {
16383   tree type;
16384
16385   if (init == NULL_TREE)
16386     return false;
16387
16388   STRIP_NOPS (init);
16389   switch (TREE_CODE (init))
16390     {
16391     case STRING_CST:
16392       type = TREE_TYPE (init);
16393       if (TREE_CODE (type) == ARRAY_TYPE)
16394         {
16395           tree enttype = TREE_TYPE (type);
16396           enum machine_mode mode = TYPE_MODE (enttype);
16397
16398           if (GET_MODE_CLASS (mode) != MODE_INT || GET_MODE_SIZE (mode) != 1)
16399             return false;
16400           if (int_size_in_bytes (type) != size)
16401             return false;
16402           if (size > TREE_STRING_LENGTH (init))
16403             {
16404               memcpy (array, TREE_STRING_POINTER (init),
16405                       TREE_STRING_LENGTH (init));
16406               memset (array + TREE_STRING_LENGTH (init),
16407                       '\0', size - TREE_STRING_LENGTH (init));
16408             }
16409           else
16410             memcpy (array, TREE_STRING_POINTER (init), size);
16411           return true;
16412         }
16413       return false;
16414     case CONSTRUCTOR:
16415       type = TREE_TYPE (init);
16416       if (int_size_in_bytes (type) != size)
16417         return false;
16418       if (TREE_CODE (type) == ARRAY_TYPE)
16419         {
16420           HOST_WIDE_INT min_index;
16421           unsigned HOST_WIDE_INT cnt;
16422           int curpos = 0, fieldsize;
16423           constructor_elt *ce;
16424
16425           if (TYPE_DOMAIN (type) == NULL_TREE
16426               || !host_integerp (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0))
16427             return false;
16428
16429           fieldsize = int_size_in_bytes (TREE_TYPE (type));
16430           if (fieldsize <= 0)
16431             return false;
16432
16433           min_index = tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0);
16434           memset (array, '\0', size);
16435           for (cnt = 0;
16436                VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (init), cnt, ce);
16437                cnt++)
16438             {
16439               tree val = ce->value;
16440               tree index = ce->index;
16441               int pos = curpos;
16442               if (index && TREE_CODE (index) == RANGE_EXPR)
16443                 pos = (tree_low_cst (TREE_OPERAND (index, 0), 0) - min_index)
16444                       * fieldsize;
16445               else if (index)
16446                 pos = (tree_low_cst (index, 0) - min_index) * fieldsize;
16447
16448               if (val)
16449                 {
16450                   STRIP_NOPS (val);
16451                   if (!native_encode_initializer (val, array + pos, fieldsize))
16452                     return false;
16453                 }
16454               curpos = pos + fieldsize;
16455               if (index && TREE_CODE (index) == RANGE_EXPR)
16456                 {
16457                   int count = tree_low_cst (TREE_OPERAND (index, 1), 0)
16458                               - tree_low_cst (TREE_OPERAND (index, 0), 0);
16459                   while (count > 0)
16460                     {
16461                       if (val)
16462                         memcpy (array + curpos, array + pos, fieldsize);
16463                       curpos += fieldsize;
16464                     }
16465                 }
16466               gcc_assert (curpos <= size);
16467             }
16468           return true;
16469         }
16470       else if (TREE_CODE (type) == RECORD_TYPE
16471                || TREE_CODE (type) == UNION_TYPE)
16472         {
16473           tree field = NULL_TREE;
16474           unsigned HOST_WIDE_INT cnt;
16475           constructor_elt *ce;
16476
16477           if (int_size_in_bytes (type) != size)
16478             return false;
16479
16480           if (TREE_CODE (type) == RECORD_TYPE)
16481             field = TYPE_FIELDS (type);
16482
16483           for (cnt = 0;
16484                VEC_iterate (constructor_elt, CONSTRUCTOR_ELTS (init), cnt, ce);
16485                cnt++, field = field ? TREE_CHAIN (field) : 0)
16486             {
16487               tree val = ce->value;
16488               int pos, fieldsize;
16489
16490               if (ce->index != 0)
16491                 field = ce->index;
16492
16493               if (val)
16494                 STRIP_NOPS (val);
16495
16496               if (field == NULL_TREE || DECL_BIT_FIELD (field))
16497                 return false;
16498
16499               if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
16500                   && TYPE_DOMAIN (TREE_TYPE (field))
16501                   && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
16502                 return false;
16503               else if (DECL_SIZE_UNIT (field) == NULL_TREE
16504                        || !host_integerp (DECL_SIZE_UNIT (field), 0))
16505                 return false;
16506               fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 0);
16507               pos = int_byte_position (field);
16508               gcc_assert (pos + fieldsize <= size);
16509               if (val
16510                   && !native_encode_initializer (val, array + pos, fieldsize))
16511                 return false;
16512             }
16513           return true;
16514         }
16515       return false;
16516     case VIEW_CONVERT_EXPR:
16517     case NON_LVALUE_EXPR:
16518       return native_encode_initializer (TREE_OPERAND (init, 0), array, size);
16519     default:
16520       return native_encode_expr (init, array, size) == size;
16521     }
16522 }
16523
16524 /* Attach a DW_AT_const_value attribute to DIE. The value of the
16525    attribute is the const value T.  */
16526
16527 static bool
16528 tree_add_const_value_attribute (dw_die_ref die, tree t)
16529 {
16530   tree init;
16531   tree type = TREE_TYPE (t);
16532   rtx rtl;
16533
16534   if (!t || !TREE_TYPE (t) || TREE_TYPE (t) == error_mark_node)
16535     return false;
16536
16537   init = t;
16538   gcc_assert (!DECL_P (init));
16539
16540   rtl = rtl_for_decl_init (init, type);
16541   if (rtl)
16542     return add_const_value_attribute (die, rtl);
16543   /* If the host and target are sane, try harder.  */
16544   else if (CHAR_BIT == 8 && BITS_PER_UNIT == 8
16545            && initializer_constant_valid_p (init, type))
16546     {
16547       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (init));
16548       if (size > 0 && (int) size == size)
16549         {
16550           unsigned char *array = GGC_CNEWVEC (unsigned char, size);
16551
16552           if (native_encode_initializer (init, array, size))
16553             {
16554               add_AT_vec (die, DW_AT_const_value, size, 1, array);
16555               return true;
16556             }
16557         }
16558     }
16559   return false;
16560 }
16561
16562 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
16563    attribute is the const value of T, where T is an integral constant
16564    variable with static storage duration
16565    (so it can't be a PARM_DECL or a RESULT_DECL).  */
16566
16567 static bool
16568 tree_add_const_value_attribute_for_decl (dw_die_ref var_die, tree decl)
16569 {
16570
16571   if (!decl
16572       || (TREE_CODE (decl) != VAR_DECL
16573           && TREE_CODE (decl) != CONST_DECL))
16574     return false;
16575
16576     if (TREE_READONLY (decl)
16577         && ! TREE_THIS_VOLATILE (decl)
16578         && DECL_INITIAL (decl))
16579       /* OK */;
16580     else
16581       return false;
16582
16583   /* Don't add DW_AT_const_value if abstract origin already has one.  */
16584   if (get_AT (var_die, DW_AT_const_value))
16585     return false;
16586
16587   return tree_add_const_value_attribute (var_die, DECL_INITIAL (decl));
16588 }
16589
16590 /* Convert the CFI instructions for the current function into a
16591    location list.  This is used for DW_AT_frame_base when we targeting
16592    a dwarf2 consumer that does not support the dwarf3
16593    DW_OP_call_frame_cfa.  OFFSET is a constant to be added to all CFA
16594    expressions.  */
16595
16596 static dw_loc_list_ref
16597 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
16598 {
16599   dw_fde_ref fde;
16600   dw_loc_list_ref list, *list_tail;
16601   dw_cfi_ref cfi;
16602   dw_cfa_location last_cfa, next_cfa;
16603   const char *start_label, *last_label, *section;
16604   dw_cfa_location remember;
16605
16606   fde = current_fde ();
16607   gcc_assert (fde != NULL);
16608
16609   section = secname_for_decl (current_function_decl);
16610   list_tail = &list;
16611   list = NULL;
16612
16613   memset (&next_cfa, 0, sizeof (next_cfa));
16614   next_cfa.reg = INVALID_REGNUM;
16615   remember = next_cfa;
16616
16617   start_label = fde->dw_fde_begin;
16618
16619   /* ??? Bald assumption that the CIE opcode list does not contain
16620      advance opcodes.  */
16621   for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
16622     lookup_cfa_1 (cfi, &next_cfa, &remember);
16623
16624   last_cfa = next_cfa;
16625   last_label = start_label;
16626
16627   for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
16628     switch (cfi->dw_cfi_opc)
16629       {
16630       case DW_CFA_set_loc:
16631       case DW_CFA_advance_loc1:
16632       case DW_CFA_advance_loc2:
16633       case DW_CFA_advance_loc4:
16634         if (!cfa_equal_p (&last_cfa, &next_cfa))
16635           {
16636             *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
16637                                        start_label, last_label, section);
16638
16639             list_tail = &(*list_tail)->dw_loc_next;
16640             last_cfa = next_cfa;
16641             start_label = last_label;
16642           }
16643         last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
16644         break;
16645
16646       case DW_CFA_advance_loc:
16647         /* The encoding is complex enough that we should never emit this.  */
16648         gcc_unreachable ();
16649
16650       default:
16651         lookup_cfa_1 (cfi, &next_cfa, &remember);
16652         break;
16653       }
16654
16655   if (!cfa_equal_p (&last_cfa, &next_cfa))
16656     {
16657       *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
16658                                  start_label, last_label, section);
16659       list_tail = &(*list_tail)->dw_loc_next;
16660       start_label = last_label;
16661     }
16662
16663   *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
16664                              start_label, fde->dw_fde_end, section);
16665
16666   if (list && list->dw_loc_next)
16667     gen_llsym (list);
16668
16669   return list;
16670 }
16671
16672 /* Compute a displacement from the "steady-state frame pointer" to the
16673    frame base (often the same as the CFA), and store it in
16674    frame_pointer_fb_offset.  OFFSET is added to the displacement
16675    before the latter is negated.  */
16676
16677 static void
16678 compute_frame_pointer_to_fb_displacement (HOST_WIDE_INT offset)
16679 {
16680   rtx reg, elim;
16681
16682 #ifdef FRAME_POINTER_CFA_OFFSET
16683   reg = frame_pointer_rtx;
16684   offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
16685 #else
16686   reg = arg_pointer_rtx;
16687   offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
16688 #endif
16689
16690   elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
16691   if (GET_CODE (elim) == PLUS)
16692     {
16693       offset += INTVAL (XEXP (elim, 1));
16694       elim = XEXP (elim, 0);
16695     }
16696
16697   gcc_assert ((SUPPORTS_STACK_ALIGNMENT
16698                && (elim == hard_frame_pointer_rtx
16699                    || elim == stack_pointer_rtx))
16700               || elim == (frame_pointer_needed
16701                           ? hard_frame_pointer_rtx
16702                           : stack_pointer_rtx));
16703
16704   frame_pointer_fb_offset = -offset;
16705 }
16706
16707 /* Generate a DW_AT_name attribute given some string value to be included as
16708    the value of the attribute.  */
16709
16710 static void
16711 add_name_attribute (dw_die_ref die, const char *name_string)
16712 {
16713   if (name_string != NULL && *name_string != 0)
16714     {
16715       if (demangle_name_func)
16716         name_string = (*demangle_name_func) (name_string);
16717
16718       add_AT_string (die, DW_AT_name, name_string);
16719     }
16720 }
16721
16722 /* Generate a DW_AT_comp_dir attribute for DIE.  */
16723
16724 static void
16725 add_comp_dir_attribute (dw_die_ref die)
16726 {
16727   const char *wd = get_src_pwd ();
16728   char *wd1;
16729
16730   if (wd == NULL)
16731     return;
16732
16733   if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR)
16734     {
16735       int wdlen;
16736
16737       wdlen = strlen (wd);
16738       wd1 = GGC_NEWVEC (char, wdlen + 2);
16739       strcpy (wd1, wd);
16740       wd1 [wdlen] = DIR_SEPARATOR;
16741       wd1 [wdlen + 1] = 0;
16742       wd = wd1;
16743     }
16744
16745     add_AT_string (die, DW_AT_comp_dir, remap_debug_filename (wd));
16746 }
16747
16748 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
16749    default.  */
16750
16751 static int
16752 lower_bound_default (void)
16753 {
16754   switch (get_AT_unsigned (comp_unit_die, DW_AT_language))
16755     {
16756     case DW_LANG_C:
16757     case DW_LANG_C89:
16758     case DW_LANG_C99:
16759     case DW_LANG_C_plus_plus:
16760     case DW_LANG_ObjC:
16761     case DW_LANG_ObjC_plus_plus:
16762     case DW_LANG_Java:
16763       return 0;
16764     case DW_LANG_Fortran77:
16765     case DW_LANG_Fortran90:
16766     case DW_LANG_Fortran95:
16767       return 1;
16768     case DW_LANG_UPC:
16769     case DW_LANG_D:
16770     case DW_LANG_Python:
16771       return dwarf_version >= 4 ? 0 : -1;
16772     case DW_LANG_Ada95:
16773     case DW_LANG_Ada83:
16774     case DW_LANG_Cobol74:
16775     case DW_LANG_Cobol85:
16776     case DW_LANG_Pascal83:
16777     case DW_LANG_Modula2:
16778     case DW_LANG_PLI:
16779       return dwarf_version >= 4 ? 1 : -1;
16780     default:
16781       return -1;
16782     }
16783 }
16784
16785 /* Given a tree node describing an array bound (either lower or upper) output
16786    a representation for that bound.  */
16787
16788 static void
16789 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree bound)
16790 {
16791   switch (TREE_CODE (bound))
16792     {
16793     case ERROR_MARK:
16794       return;
16795
16796     /* All fixed-bounds are represented by INTEGER_CST nodes.  */
16797     case INTEGER_CST:
16798       {
16799         unsigned int prec = simple_type_size_in_bits (TREE_TYPE (bound));
16800         int dflt;
16801
16802         /* Use the default if possible.  */
16803         if (bound_attr == DW_AT_lower_bound
16804             && host_integerp (bound, 0)
16805             && (dflt = lower_bound_default ()) != -1
16806             && tree_low_cst (bound, 0) == dflt)
16807           ;
16808
16809         /* Otherwise represent the bound as an unsigned value with the
16810            precision of its type.  The precision and signedness of the
16811            type will be necessary to re-interpret it unambiguously.  */
16812         else if (prec < HOST_BITS_PER_WIDE_INT)
16813           {
16814             unsigned HOST_WIDE_INT mask
16815               = ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
16816             add_AT_unsigned (subrange_die, bound_attr,
16817                              TREE_INT_CST_LOW (bound) & mask);
16818           }
16819         else if (prec == HOST_BITS_PER_WIDE_INT
16820                  || TREE_INT_CST_HIGH (bound) == 0)
16821           add_AT_unsigned (subrange_die, bound_attr,
16822                            TREE_INT_CST_LOW (bound));
16823         else
16824           add_AT_double (subrange_die, bound_attr, TREE_INT_CST_HIGH (bound),
16825                          TREE_INT_CST_LOW (bound));
16826       }
16827       break;
16828
16829     CASE_CONVERT:
16830     case VIEW_CONVERT_EXPR:
16831       add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
16832       break;
16833
16834     case SAVE_EXPR:
16835       break;
16836
16837     case VAR_DECL:
16838     case PARM_DECL:
16839     case RESULT_DECL:
16840       {
16841         dw_die_ref decl_die = lookup_decl_die (bound);
16842
16843         /* ??? Can this happen, or should the variable have been bound
16844            first?  Probably it can, since I imagine that we try to create
16845            the types of parameters in the order in which they exist in
16846            the list, and won't have created a forward reference to a
16847            later parameter.  */
16848         if (decl_die != NULL)
16849           {
16850             add_AT_die_ref (subrange_die, bound_attr, decl_die);
16851             break;
16852           }
16853       }
16854       /* FALLTHRU */
16855
16856     default:
16857       {
16858         /* Otherwise try to create a stack operation procedure to
16859            evaluate the value of the array bound.  */
16860
16861         dw_die_ref ctx, decl_die;
16862         dw_loc_list_ref list;
16863
16864         list = loc_list_from_tree (bound, 2);
16865         if (list == NULL || single_element_loc_list_p (list))
16866           {
16867             /* If DW_AT_*bound is not a reference nor constant, it is
16868                a DWARF expression rather than location description.
16869                For that loc_list_from_tree (bound, 0) is needed.
16870                If that fails to give a single element list,
16871                fall back to outputting this as a reference anyway.  */
16872             dw_loc_list_ref list2 = loc_list_from_tree (bound, 0);
16873             if (list2 && single_element_loc_list_p (list2))
16874               {
16875                 add_AT_loc (subrange_die, bound_attr, list2->expr);
16876                 break;
16877               }
16878           }
16879         if (list == NULL)
16880           break;
16881
16882         if (current_function_decl == 0)
16883           ctx = comp_unit_die;
16884         else
16885           ctx = lookup_decl_die (current_function_decl);
16886
16887         decl_die = new_die (DW_TAG_variable, ctx, bound);
16888         add_AT_flag (decl_die, DW_AT_artificial, 1);
16889         add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
16890         add_AT_location_description (decl_die, DW_AT_location, list);
16891         add_AT_die_ref (subrange_die, bound_attr, decl_die);
16892         break;
16893       }
16894     }
16895 }
16896
16897 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
16898    possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
16899    Note that the block of subscript information for an array type also
16900    includes information about the element type of the given array type.  */
16901
16902 static void
16903 add_subscript_info (dw_die_ref type_die, tree type, bool collapse_p)
16904 {
16905   unsigned dimension_number;
16906   tree lower, upper;
16907   dw_die_ref subrange_die;
16908
16909   for (dimension_number = 0;
16910        TREE_CODE (type) == ARRAY_TYPE && (dimension_number == 0 || collapse_p);
16911        type = TREE_TYPE (type), dimension_number++)
16912     {
16913       tree domain = TYPE_DOMAIN (type);
16914
16915       if (TYPE_STRING_FLAG (type) && is_fortran () && dimension_number > 0)
16916         break;
16917
16918       /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
16919          and (in GNU C only) variable bounds.  Handle all three forms
16920          here.  */
16921       subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
16922       if (domain)
16923         {
16924           /* We have an array type with specified bounds.  */
16925           lower = TYPE_MIN_VALUE (domain);
16926           upper = TYPE_MAX_VALUE (domain);
16927
16928           /* Define the index type.  */
16929           if (TREE_TYPE (domain))
16930             {
16931               /* ??? This is probably an Ada unnamed subrange type.  Ignore the
16932                  TREE_TYPE field.  We can't emit debug info for this
16933                  because it is an unnamed integral type.  */
16934               if (TREE_CODE (domain) == INTEGER_TYPE
16935                   && TYPE_NAME (domain) == NULL_TREE
16936                   && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
16937                   && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
16938                 ;
16939               else
16940                 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
16941                                     type_die);
16942             }
16943
16944           /* ??? If upper is NULL, the array has unspecified length,
16945              but it does have a lower bound.  This happens with Fortran
16946                dimension arr(N:*)
16947              Since the debugger is definitely going to need to know N
16948              to produce useful results, go ahead and output the lower
16949              bound solo, and hope the debugger can cope.  */
16950
16951           add_bound_info (subrange_die, DW_AT_lower_bound, lower);
16952           if (upper)
16953             add_bound_info (subrange_die, DW_AT_upper_bound, upper);
16954         }
16955
16956       /* Otherwise we have an array type with an unspecified length.  The
16957          DWARF-2 spec does not say how to handle this; let's just leave out the
16958          bounds.  */
16959     }
16960 }
16961
16962 static void
16963 add_byte_size_attribute (dw_die_ref die, tree tree_node)
16964 {
16965   unsigned size;
16966
16967   switch (TREE_CODE (tree_node))
16968     {
16969     case ERROR_MARK:
16970       size = 0;
16971       break;
16972     case ENUMERAL_TYPE:
16973     case RECORD_TYPE:
16974     case UNION_TYPE:
16975     case QUAL_UNION_TYPE:
16976       size = int_size_in_bytes (tree_node);
16977       break;
16978     case FIELD_DECL:
16979       /* For a data member of a struct or union, the DW_AT_byte_size is
16980          generally given as the number of bytes normally allocated for an
16981          object of the *declared* type of the member itself.  This is true
16982          even for bit-fields.  */
16983       size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
16984       break;
16985     default:
16986       gcc_unreachable ();
16987     }
16988
16989   /* Note that `size' might be -1 when we get to this point.  If it is, that
16990      indicates that the byte size of the entity in question is variable.  We
16991      have no good way of expressing this fact in Dwarf at the present time,
16992      so just let the -1 pass on through.  */
16993   add_AT_unsigned (die, DW_AT_byte_size, size);
16994 }
16995
16996 /* For a FIELD_DECL node which represents a bit-field, output an attribute
16997    which specifies the distance in bits from the highest order bit of the
16998    "containing object" for the bit-field to the highest order bit of the
16999    bit-field itself.
17000
17001    For any given bit-field, the "containing object" is a hypothetical object
17002    (of some integral or enum type) within which the given bit-field lives.  The
17003    type of this hypothetical "containing object" is always the same as the
17004    declared type of the individual bit-field itself.  The determination of the
17005    exact location of the "containing object" for a bit-field is rather
17006    complicated.  It's handled by the `field_byte_offset' function (above).
17007
17008    Note that it is the size (in bytes) of the hypothetical "containing object"
17009    which will be given in the DW_AT_byte_size attribute for this bit-field.
17010    (See `byte_size_attribute' above).  */
17011
17012 static inline void
17013 add_bit_offset_attribute (dw_die_ref die, tree decl)
17014 {
17015   HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
17016   tree type = DECL_BIT_FIELD_TYPE (decl);
17017   HOST_WIDE_INT bitpos_int;
17018   HOST_WIDE_INT highest_order_object_bit_offset;
17019   HOST_WIDE_INT highest_order_field_bit_offset;
17020   HOST_WIDE_INT unsigned bit_offset;
17021
17022   /* Must be a field and a bit field.  */
17023   gcc_assert (type && TREE_CODE (decl) == FIELD_DECL);
17024
17025   /* We can't yet handle bit-fields whose offsets are variable, so if we
17026      encounter such things, just return without generating any attribute
17027      whatsoever.  Likewise for variable or too large size.  */
17028   if (! host_integerp (bit_position (decl), 0)
17029       || ! host_integerp (DECL_SIZE (decl), 1))
17030     return;
17031
17032   bitpos_int = int_bit_position (decl);
17033
17034   /* Note that the bit offset is always the distance (in bits) from the
17035      highest-order bit of the "containing object" to the highest-order bit of
17036      the bit-field itself.  Since the "high-order end" of any object or field
17037      is different on big-endian and little-endian machines, the computation
17038      below must take account of these differences.  */
17039   highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
17040   highest_order_field_bit_offset = bitpos_int;
17041
17042   if (! BYTES_BIG_ENDIAN)
17043     {
17044       highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
17045       highest_order_object_bit_offset += simple_type_size_in_bits (type);
17046     }
17047
17048   bit_offset
17049     = (! BYTES_BIG_ENDIAN
17050        ? highest_order_object_bit_offset - highest_order_field_bit_offset
17051        : highest_order_field_bit_offset - highest_order_object_bit_offset);
17052
17053   add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
17054 }
17055
17056 /* For a FIELD_DECL node which represents a bit field, output an attribute
17057    which specifies the length in bits of the given field.  */
17058
17059 static inline void
17060 add_bit_size_attribute (dw_die_ref die, tree decl)
17061 {
17062   /* Must be a field and a bit field.  */
17063   gcc_assert (TREE_CODE (decl) == FIELD_DECL
17064               && DECL_BIT_FIELD_TYPE (decl));
17065
17066   if (host_integerp (DECL_SIZE (decl), 1))
17067     add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
17068 }
17069
17070 /* If the compiled language is ANSI C, then add a 'prototyped'
17071    attribute, if arg types are given for the parameters of a function.  */
17072
17073 static inline void
17074 add_prototyped_attribute (dw_die_ref die, tree func_type)
17075 {
17076   if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
17077       && TYPE_ARG_TYPES (func_type) != NULL)
17078     add_AT_flag (die, DW_AT_prototyped, 1);
17079 }
17080
17081 /* Add an 'abstract_origin' attribute below a given DIE.  The DIE is found
17082    by looking in either the type declaration or object declaration
17083    equate table.  */
17084
17085 static inline dw_die_ref
17086 add_abstract_origin_attribute (dw_die_ref die, tree origin)
17087 {
17088   dw_die_ref origin_die = NULL;
17089
17090   if (TREE_CODE (origin) != FUNCTION_DECL)
17091     {
17092       /* We may have gotten separated from the block for the inlined
17093          function, if we're in an exception handler or some such; make
17094          sure that the abstract function has been written out.
17095
17096          Doing this for nested functions is wrong, however; functions are
17097          distinct units, and our context might not even be inline.  */
17098       tree fn = origin;
17099
17100       if (TYPE_P (fn))
17101         fn = TYPE_STUB_DECL (fn);
17102
17103       fn = decl_function_context (fn);
17104       if (fn)
17105         dwarf2out_abstract_function (fn);
17106     }
17107
17108   if (DECL_P (origin))
17109     origin_die = lookup_decl_die (origin);
17110   else if (TYPE_P (origin))
17111     origin_die = lookup_type_die (origin);
17112
17113   /* XXX: Functions that are never lowered don't always have correct block
17114      trees (in the case of java, they simply have no block tree, in some other
17115      languages).  For these functions, there is nothing we can really do to
17116      output correct debug info for inlined functions in all cases.  Rather
17117      than die, we'll just produce deficient debug info now, in that we will
17118      have variables without a proper abstract origin.  In the future, when all
17119      functions are lowered, we should re-add a gcc_assert (origin_die)
17120      here.  */
17121
17122   if (origin_die)
17123     add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
17124   return origin_die;
17125 }
17126
17127 /* We do not currently support the pure_virtual attribute.  */
17128
17129 static inline void
17130 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
17131 {
17132   if (DECL_VINDEX (func_decl))
17133     {
17134       add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
17135
17136       if (host_integerp (DECL_VINDEX (func_decl), 0))
17137         add_AT_loc (die, DW_AT_vtable_elem_location,
17138                     new_loc_descr (DW_OP_constu,
17139                                    tree_low_cst (DECL_VINDEX (func_decl), 0),
17140                                    0));
17141
17142       /* GNU extension: Record what type this method came from originally.  */
17143       if (debug_info_level > DINFO_LEVEL_TERSE
17144           && DECL_CONTEXT (func_decl))
17145         add_AT_die_ref (die, DW_AT_containing_type,
17146                         lookup_type_die (DECL_CONTEXT (func_decl)));
17147     }
17148 }
17149 \f
17150 /* Add source coordinate attributes for the given decl.  */
17151
17152 static void
17153 add_src_coords_attributes (dw_die_ref die, tree decl)
17154 {
17155   expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
17156
17157   add_AT_file (die, DW_AT_decl_file, lookup_filename (s.file));
17158   add_AT_unsigned (die, DW_AT_decl_line, s.line);
17159 }
17160
17161 /* Add a DW_AT_name attribute and source coordinate attribute for the
17162    given decl, but only if it actually has a name.  */
17163
17164 static void
17165 add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
17166 {
17167   tree decl_name;
17168
17169   decl_name = DECL_NAME (decl);
17170   if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
17171     {
17172       const char *name = dwarf2_name (decl, 0);
17173       if (name)
17174         add_name_attribute (die, name);
17175       if (! DECL_ARTIFICIAL (decl))
17176         add_src_coords_attributes (die, decl);
17177
17178       if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
17179           && TREE_PUBLIC (decl)
17180           && !DECL_ABSTRACT (decl)
17181           && !(TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl)))
17182         {
17183           /* Defer until we have an assembler name set.  */
17184           if (!DECL_ASSEMBLER_NAME_SET_P (decl))
17185             {
17186               limbo_die_node *asm_name;
17187
17188               asm_name = GGC_CNEW (limbo_die_node);
17189               asm_name->die = die;
17190               asm_name->created_for = decl;
17191               asm_name->next = deferred_asm_name;
17192               deferred_asm_name = asm_name;
17193             }
17194           else if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
17195             add_AT_string (die, AT_linkage_name,
17196                            IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
17197         }
17198     }
17199
17200 #ifdef VMS_DEBUGGING_INFO
17201   /* Get the function's name, as described by its RTL.  This may be different
17202      from the DECL_NAME name used in the source file.  */
17203   if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
17204     {
17205       add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
17206                    XEXP (DECL_RTL (decl), 0));
17207       VEC_safe_push (rtx, gc, used_rtx_array, XEXP (DECL_RTL (decl), 0));
17208     }
17209 #endif
17210 }
17211
17212 /* Push a new declaration scope.  */
17213
17214 static void
17215 push_decl_scope (tree scope)
17216 {
17217   VEC_safe_push (tree, gc, decl_scope_table, scope);
17218 }
17219
17220 /* Pop a declaration scope.  */
17221
17222 static inline void
17223 pop_decl_scope (void)
17224 {
17225   VEC_pop (tree, decl_scope_table);
17226 }
17227
17228 /* Return the DIE for the scope that immediately contains this type.
17229    Non-named types get global scope.  Named types nested in other
17230    types get their containing scope if it's open, or global scope
17231    otherwise.  All other types (i.e. function-local named types) get
17232    the current active scope.  */
17233
17234 static dw_die_ref
17235 scope_die_for (tree t, dw_die_ref context_die)
17236 {
17237   dw_die_ref scope_die = NULL;
17238   tree containing_scope;
17239   int i;
17240
17241   /* Non-types always go in the current scope.  */
17242   gcc_assert (TYPE_P (t));
17243
17244   containing_scope = TYPE_CONTEXT (t);
17245
17246   /* Use the containing namespace if it was passed in (for a declaration).  */
17247   if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
17248     {
17249       if (context_die == lookup_decl_die (containing_scope))
17250         /* OK */;
17251       else
17252         containing_scope = NULL_TREE;
17253     }
17254
17255   /* Ignore function type "scopes" from the C frontend.  They mean that
17256      a tagged type is local to a parmlist of a function declarator, but
17257      that isn't useful to DWARF.  */
17258   if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
17259     containing_scope = NULL_TREE;
17260
17261   if (containing_scope == NULL_TREE)
17262     scope_die = comp_unit_die;
17263   else if (TYPE_P (containing_scope))
17264     {
17265       /* For types, we can just look up the appropriate DIE.  But
17266          first we check to see if we're in the middle of emitting it
17267          so we know where the new DIE should go.  */
17268       for (i = VEC_length (tree, decl_scope_table) - 1; i >= 0; --i)
17269         if (VEC_index (tree, decl_scope_table, i) == containing_scope)
17270           break;
17271
17272       if (i < 0)
17273         {
17274           gcc_assert (debug_info_level <= DINFO_LEVEL_TERSE
17275                       || TREE_ASM_WRITTEN (containing_scope));
17276
17277           /* If none of the current dies are suitable, we get file scope.  */
17278           scope_die = comp_unit_die;
17279         }
17280       else
17281         scope_die = lookup_type_die (containing_scope);
17282     }
17283   else
17284     scope_die = context_die;
17285
17286   return scope_die;
17287 }
17288
17289 /* Returns nonzero if CONTEXT_DIE is internal to a function.  */
17290
17291 static inline int
17292 local_scope_p (dw_die_ref context_die)
17293 {
17294   for (; context_die; context_die = context_die->die_parent)
17295     if (context_die->die_tag == DW_TAG_inlined_subroutine
17296         || context_die->die_tag == DW_TAG_subprogram)
17297       return 1;
17298
17299   return 0;
17300 }
17301
17302 /* Returns nonzero if CONTEXT_DIE is a class.  */
17303
17304 static inline int
17305 class_scope_p (dw_die_ref context_die)
17306 {
17307   return (context_die
17308           && (context_die->die_tag == DW_TAG_structure_type
17309               || context_die->die_tag == DW_TAG_class_type
17310               || context_die->die_tag == DW_TAG_interface_type
17311               || context_die->die_tag == DW_TAG_union_type));
17312 }
17313
17314 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
17315    whether or not to treat a DIE in this context as a declaration.  */
17316
17317 static inline int
17318 class_or_namespace_scope_p (dw_die_ref context_die)
17319 {
17320   return (class_scope_p (context_die)
17321           || (context_die && context_die->die_tag == DW_TAG_namespace));
17322 }
17323
17324 /* Many forms of DIEs require a "type description" attribute.  This
17325    routine locates the proper "type descriptor" die for the type given
17326    by 'type', and adds a DW_AT_type attribute below the given die.  */
17327
17328 static void
17329 add_type_attribute (dw_die_ref object_die, tree type, int decl_const,
17330                     int decl_volatile, dw_die_ref context_die)
17331 {
17332   enum tree_code code  = TREE_CODE (type);
17333   dw_die_ref type_die  = NULL;
17334
17335   /* ??? If this type is an unnamed subrange type of an integral, floating-point
17336      or fixed-point type, use the inner type.  This is because we have no
17337      support for unnamed types in base_type_die.  This can happen if this is
17338      an Ada subrange type.  Correct solution is emit a subrange type die.  */
17339   if ((code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE)
17340       && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
17341     type = TREE_TYPE (type), code = TREE_CODE (type);
17342
17343   if (code == ERROR_MARK
17344       /* Handle a special case.  For functions whose return type is void, we
17345          generate *no* type attribute.  (Note that no object may have type
17346          `void', so this only applies to function return types).  */
17347       || code == VOID_TYPE)
17348     return;
17349
17350   type_die = modified_type_die (type,
17351                                 decl_const || TYPE_READONLY (type),
17352                                 decl_volatile || TYPE_VOLATILE (type),
17353                                 context_die);
17354
17355   if (type_die != NULL)
17356     add_AT_die_ref (object_die, DW_AT_type, type_die);
17357 }
17358
17359 /* Given an object die, add the calling convention attribute for the
17360    function call type.  */
17361 static void
17362 add_calling_convention_attribute (dw_die_ref subr_die, tree decl)
17363 {
17364   enum dwarf_calling_convention value = DW_CC_normal;
17365
17366   value = ((enum dwarf_calling_convention)
17367            targetm.dwarf_calling_convention (TREE_TYPE (decl)));
17368
17369   /* DWARF doesn't provide a way to identify a program's source-level
17370      entry point.  DW_AT_calling_convention attributes are only meant
17371      to describe functions' calling conventions.  However, lacking a
17372      better way to signal the Fortran main program, we use this for the
17373      time being, following existing custom.  */
17374   if (is_fortran ()
17375       && !strcmp (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)), "MAIN__"))
17376     value = DW_CC_program;
17377
17378   /* Only add the attribute if the backend requests it, and
17379      is not DW_CC_normal.  */
17380   if (value && (value != DW_CC_normal))
17381     add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
17382 }
17383
17384 /* Given a tree pointer to a struct, class, union, or enum type node, return
17385    a pointer to the (string) tag name for the given type, or zero if the type
17386    was declared without a tag.  */
17387
17388 static const char *
17389 type_tag (const_tree type)
17390 {
17391   const char *name = 0;
17392
17393   if (TYPE_NAME (type) != 0)
17394     {
17395       tree t = 0;
17396
17397       /* Find the IDENTIFIER_NODE for the type name.  */
17398       if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
17399         t = TYPE_NAME (type);
17400
17401       /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
17402          a TYPE_DECL node, regardless of whether or not a `typedef' was
17403          involved.  */
17404       else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
17405                && ! DECL_IGNORED_P (TYPE_NAME (type)))
17406         {
17407           /* We want to be extra verbose.  Don't call dwarf_name if
17408              DECL_NAME isn't set.  The default hook for decl_printable_name
17409              doesn't like that, and in this context it's correct to return
17410              0, instead of "<anonymous>" or the like.  */
17411           if (DECL_NAME (TYPE_NAME (type)))
17412             name = lang_hooks.dwarf_name (TYPE_NAME (type), 2);
17413         }
17414
17415       /* Now get the name as a string, or invent one.  */
17416       if (!name && t != 0)
17417         name = IDENTIFIER_POINTER (t);
17418     }
17419
17420   return (name == 0 || *name == '\0') ? 0 : name;
17421 }
17422
17423 /* Return the type associated with a data member, make a special check
17424    for bit field types.  */
17425
17426 static inline tree
17427 member_declared_type (const_tree member)
17428 {
17429   return (DECL_BIT_FIELD_TYPE (member)
17430           ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
17431 }
17432
17433 /* Get the decl's label, as described by its RTL. This may be different
17434    from the DECL_NAME name used in the source file.  */
17435
17436 #if 0
17437 static const char *
17438 decl_start_label (tree decl)
17439 {
17440   rtx x;
17441   const char *fnname;
17442
17443   x = DECL_RTL (decl);
17444   gcc_assert (MEM_P (x));
17445
17446   x = XEXP (x, 0);
17447   gcc_assert (GET_CODE (x) == SYMBOL_REF);
17448
17449   fnname = XSTR (x, 0);
17450   return fnname;
17451 }
17452 #endif
17453 \f
17454 /* These routines generate the internal representation of the DIE's for
17455    the compilation unit.  Debugging information is collected by walking
17456    the declaration trees passed in from dwarf2out_decl().  */
17457
17458 static void
17459 gen_array_type_die (tree type, dw_die_ref context_die)
17460 {
17461   dw_die_ref scope_die = scope_die_for (type, context_die);
17462   dw_die_ref array_die;
17463
17464   /* GNU compilers represent multidimensional array types as sequences of one
17465      dimensional array types whose element types are themselves array types.
17466      We sometimes squish that down to a single array_type DIE with multiple
17467      subscripts in the Dwarf debugging info.  The draft Dwarf specification
17468      say that we are allowed to do this kind of compression in C, because
17469      there is no difference between an array of arrays and a multidimensional
17470      array.  We don't do this for Ada to remain as close as possible to the
17471      actual representation, which is especially important against the language
17472      flexibilty wrt arrays of variable size.  */
17473
17474   bool collapse_nested_arrays = !is_ada ();
17475   tree element_type;
17476
17477   /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
17478      DW_TAG_string_type doesn't have DW_AT_type attribute).  */
17479   if (TYPE_STRING_FLAG (type)
17480       && TREE_CODE (type) == ARRAY_TYPE
17481       && is_fortran ()
17482       && TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (char_type_node))
17483     {
17484       HOST_WIDE_INT size;
17485
17486       array_die = new_die (DW_TAG_string_type, scope_die, type);
17487       add_name_attribute (array_die, type_tag (type));
17488       equate_type_number_to_die (type, array_die);
17489       size = int_size_in_bytes (type);
17490       if (size >= 0)
17491         add_AT_unsigned (array_die, DW_AT_byte_size, size);
17492       else if (TYPE_DOMAIN (type) != NULL_TREE
17493                && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != NULL_TREE
17494                && DECL_P (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
17495         {
17496           tree szdecl = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
17497           dw_loc_list_ref loc = loc_list_from_tree (szdecl, 2);
17498
17499           size = int_size_in_bytes (TREE_TYPE (szdecl));
17500           if (loc && size > 0)
17501             {
17502               add_AT_location_description (array_die, DW_AT_string_length, loc);
17503               if (size != DWARF2_ADDR_SIZE)
17504                 add_AT_unsigned (array_die, DW_AT_byte_size, size);
17505             }
17506         }
17507       return;
17508     }
17509
17510   /* ??? The SGI dwarf reader fails for array of array of enum types
17511      (e.g. const enum machine_mode insn_operand_mode[2][10]) unless the inner
17512      array type comes before the outer array type.  We thus call gen_type_die
17513      before we new_die and must prevent nested array types collapsing for this
17514      target.  */
17515
17516 #ifdef MIPS_DEBUGGING_INFO
17517   gen_type_die (TREE_TYPE (type), context_die);
17518   collapse_nested_arrays = false;
17519 #endif
17520
17521   array_die = new_die (DW_TAG_array_type, scope_die, type);
17522   add_name_attribute (array_die, type_tag (type));
17523   equate_type_number_to_die (type, array_die);
17524
17525   if (TREE_CODE (type) == VECTOR_TYPE)
17526     {
17527       /* The frontend feeds us a representation for the vector as a struct
17528          containing an array.  Pull out the array type.  */
17529       type = TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type)));
17530       add_AT_flag (array_die, DW_AT_GNU_vector, 1);
17531     }
17532
17533   /* For Fortran multidimensional arrays use DW_ORD_col_major ordering.  */
17534   if (is_fortran ()
17535       && TREE_CODE (type) == ARRAY_TYPE
17536       && TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE
17537       && !TYPE_STRING_FLAG (TREE_TYPE (type)))
17538     add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
17539
17540 #if 0
17541   /* We default the array ordering.  SDB will probably do
17542      the right things even if DW_AT_ordering is not present.  It's not even
17543      an issue until we start to get into multidimensional arrays anyway.  If
17544      SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
17545      then we'll have to put the DW_AT_ordering attribute back in.  (But if
17546      and when we find out that we need to put these in, we will only do so
17547      for multidimensional arrays.  */
17548   add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
17549 #endif
17550
17551 #ifdef MIPS_DEBUGGING_INFO
17552   /* The SGI compilers handle arrays of unknown bound by setting
17553      AT_declaration and not emitting any subrange DIEs.  */
17554   if (! TYPE_DOMAIN (type))
17555     add_AT_flag (array_die, DW_AT_declaration, 1);
17556   else
17557 #endif
17558     add_subscript_info (array_die, type, collapse_nested_arrays);
17559
17560   /* Add representation of the type of the elements of this array type and
17561      emit the corresponding DIE if we haven't done it already.  */
17562   element_type = TREE_TYPE (type);
17563   if (collapse_nested_arrays)
17564     while (TREE_CODE (element_type) == ARRAY_TYPE)
17565       {
17566         if (TYPE_STRING_FLAG (element_type) && is_fortran ())
17567           break;
17568         element_type = TREE_TYPE (element_type);
17569       }
17570
17571 #ifndef MIPS_DEBUGGING_INFO
17572   gen_type_die (element_type, context_die);
17573 #endif
17574
17575   add_type_attribute (array_die, element_type, 0, 0, context_die);
17576
17577   if (get_AT (array_die, DW_AT_name))
17578     add_pubtype (type, array_die);
17579 }
17580
17581 static dw_loc_descr_ref
17582 descr_info_loc (tree val, tree base_decl)
17583 {
17584   HOST_WIDE_INT size;
17585   dw_loc_descr_ref loc, loc2;
17586   enum dwarf_location_atom op;
17587
17588   if (val == base_decl)
17589     return new_loc_descr (DW_OP_push_object_address, 0, 0);
17590
17591   switch (TREE_CODE (val))
17592     {
17593     CASE_CONVERT:
17594       return descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17595     case VAR_DECL:
17596       return loc_descriptor_from_tree (val, 0);
17597     case INTEGER_CST:
17598       if (host_integerp (val, 0))
17599         return int_loc_descriptor (tree_low_cst (val, 0));
17600       break;
17601     case INDIRECT_REF:
17602       size = int_size_in_bytes (TREE_TYPE (val));
17603       if (size < 0)
17604         break;
17605       loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17606       if (!loc)
17607         break;
17608       if (size == DWARF2_ADDR_SIZE)
17609         add_loc_descr (&loc, new_loc_descr (DW_OP_deref, 0, 0));
17610       else
17611         add_loc_descr (&loc, new_loc_descr (DW_OP_deref_size, size, 0));
17612       return loc;
17613     case POINTER_PLUS_EXPR:
17614     case PLUS_EXPR:
17615       if (host_integerp (TREE_OPERAND (val, 1), 1)
17616           && (unsigned HOST_WIDE_INT) tree_low_cst (TREE_OPERAND (val, 1), 1)
17617              < 16384)
17618         {
17619           loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17620           if (!loc)
17621             break;
17622           loc_descr_plus_const (&loc, tree_low_cst (TREE_OPERAND (val, 1), 0));
17623         }
17624       else
17625         {
17626           op = DW_OP_plus;
17627         do_binop:
17628           loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
17629           if (!loc)
17630             break;
17631           loc2 = descr_info_loc (TREE_OPERAND (val, 1), base_decl);
17632           if (!loc2)
17633             break;
17634           add_loc_descr (&loc, loc2);
17635           add_loc_descr (&loc2, new_loc_descr (op, 0, 0));
17636         }
17637       return loc;
17638     case MINUS_EXPR:
17639       op = DW_OP_minus;
17640       goto do_binop;
17641     case MULT_EXPR:
17642       op = DW_OP_mul;
17643       goto do_binop;
17644     case EQ_EXPR:
17645       op = DW_OP_eq;
17646       goto do_binop;
17647     case NE_EXPR:
17648       op = DW_OP_ne;
17649       goto do_binop;
17650     default:
17651       break;
17652     }
17653   return NULL;
17654 }
17655
17656 static void
17657 add_descr_info_field (dw_die_ref die, enum dwarf_attribute attr,
17658                       tree val, tree base_decl)
17659 {
17660   dw_loc_descr_ref loc;
17661
17662   if (host_integerp (val, 0))
17663     {
17664       add_AT_unsigned (die, attr, tree_low_cst (val, 0));
17665       return;
17666     }
17667
17668   loc = descr_info_loc (val, base_decl);
17669   if (!loc)
17670     return;
17671
17672   add_AT_loc (die, attr, loc);
17673 }
17674
17675 /* This routine generates DIE for array with hidden descriptor, details
17676    are filled into *info by a langhook.  */
17677
17678 static void
17679 gen_descr_array_type_die (tree type, struct array_descr_info *info,
17680                           dw_die_ref context_die)
17681 {
17682   dw_die_ref scope_die = scope_die_for (type, context_die);
17683   dw_die_ref array_die;
17684   int dim;
17685
17686   array_die = new_die (DW_TAG_array_type, scope_die, type);
17687   add_name_attribute (array_die, type_tag (type));
17688   equate_type_number_to_die (type, array_die);
17689
17690   /* For Fortran multidimensional arrays use DW_ORD_col_major ordering.  */
17691   if (is_fortran ()
17692       && info->ndimensions >= 2)
17693     add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
17694
17695   if (info->data_location)
17696     add_descr_info_field (array_die, DW_AT_data_location, info->data_location,
17697                           info->base_decl);
17698   if (info->associated)
17699     add_descr_info_field (array_die, DW_AT_associated, info->associated,
17700                           info->base_decl);
17701   if (info->allocated)
17702     add_descr_info_field (array_die, DW_AT_allocated, info->allocated,
17703                           info->base_decl);
17704
17705   for (dim = 0; dim < info->ndimensions; dim++)
17706     {
17707       dw_die_ref subrange_die
17708         = new_die (DW_TAG_subrange_type, array_die, NULL);
17709
17710       if (info->dimen[dim].lower_bound)
17711         {
17712           /* If it is the default value, omit it.  */
17713           int dflt;
17714
17715           if (host_integerp (info->dimen[dim].lower_bound, 0)
17716               && (dflt = lower_bound_default ()) != -1
17717               && tree_low_cst (info->dimen[dim].lower_bound, 0) == dflt)
17718             ;
17719           else
17720             add_descr_info_field (subrange_die, DW_AT_lower_bound,
17721                                   info->dimen[dim].lower_bound,
17722                                   info->base_decl);
17723         }
17724       if (info->dimen[dim].upper_bound)
17725         add_descr_info_field (subrange_die, DW_AT_upper_bound,
17726                               info->dimen[dim].upper_bound,
17727                               info->base_decl);
17728       if (info->dimen[dim].stride)
17729         add_descr_info_field (subrange_die, DW_AT_byte_stride,
17730                               info->dimen[dim].stride,
17731                               info->base_decl);
17732     }
17733
17734   gen_type_die (info->element_type, context_die);
17735   add_type_attribute (array_die, info->element_type, 0, 0, context_die);
17736
17737   if (get_AT (array_die, DW_AT_name))
17738     add_pubtype (type, array_die);
17739 }
17740
17741 #if 0
17742 static void
17743 gen_entry_point_die (tree decl, dw_die_ref context_die)
17744 {
17745   tree origin = decl_ultimate_origin (decl);
17746   dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
17747
17748   if (origin != NULL)
17749     add_abstract_origin_attribute (decl_die, origin);
17750   else
17751     {
17752       add_name_and_src_coords_attributes (decl_die, decl);
17753       add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
17754                           0, 0, context_die);
17755     }
17756
17757   if (DECL_ABSTRACT (decl))
17758     equate_decl_number_to_die (decl, decl_die);
17759   else
17760     add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
17761 }
17762 #endif
17763
17764 /* Walk through the list of incomplete types again, trying once more to
17765    emit full debugging info for them.  */
17766
17767 static void
17768 retry_incomplete_types (void)
17769 {
17770   int i;
17771
17772   for (i = VEC_length (tree, incomplete_types) - 1; i >= 0; i--)
17773     if (should_emit_struct_debug (VEC_index (tree, incomplete_types, i),
17774                                   DINFO_USAGE_DIR_USE))
17775       gen_type_die (VEC_index (tree, incomplete_types, i), comp_unit_die);
17776 }
17777
17778 /* Determine what tag to use for a record type.  */
17779
17780 static enum dwarf_tag
17781 record_type_tag (tree type)
17782 {
17783   if (! lang_hooks.types.classify_record)
17784     return DW_TAG_structure_type;
17785
17786   switch (lang_hooks.types.classify_record (type))
17787     {
17788     case RECORD_IS_STRUCT:
17789       return DW_TAG_structure_type;
17790
17791     case RECORD_IS_CLASS:
17792       return DW_TAG_class_type;
17793
17794     case RECORD_IS_INTERFACE:
17795       if (dwarf_version >= 3 || !dwarf_strict)
17796         return DW_TAG_interface_type;
17797       return DW_TAG_structure_type;
17798
17799     default:
17800       gcc_unreachable ();
17801     }
17802 }
17803
17804 /* Generate a DIE to represent an enumeration type.  Note that these DIEs
17805    include all of the information about the enumeration values also. Each
17806    enumerated type name/value is listed as a child of the enumerated type
17807    DIE.  */
17808
17809 static dw_die_ref
17810 gen_enumeration_type_die (tree type, dw_die_ref context_die)
17811 {
17812   dw_die_ref type_die = lookup_type_die (type);
17813
17814   if (type_die == NULL)
17815     {
17816       type_die = new_die (DW_TAG_enumeration_type,
17817                           scope_die_for (type, context_die), type);
17818       equate_type_number_to_die (type, type_die);
17819       add_name_attribute (type_die, type_tag (type));
17820       if ((dwarf_version >= 4 || !dwarf_strict)
17821           && ENUM_IS_SCOPED (type))
17822         add_AT_flag (type_die, DW_AT_enum_class, 1);
17823     }
17824   else if (! TYPE_SIZE (type))
17825     return type_die;
17826   else
17827     remove_AT (type_die, DW_AT_declaration);
17828
17829   /* Handle a GNU C/C++ extension, i.e. incomplete enum types.  If the
17830      given enum type is incomplete, do not generate the DW_AT_byte_size
17831      attribute or the DW_AT_element_list attribute.  */
17832   if (TYPE_SIZE (type))
17833     {
17834       tree link;
17835
17836       TREE_ASM_WRITTEN (type) = 1;
17837       add_byte_size_attribute (type_die, type);
17838       if (TYPE_STUB_DECL (type) != NULL_TREE)
17839         add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
17840
17841       /* If the first reference to this type was as the return type of an
17842          inline function, then it may not have a parent.  Fix this now.  */
17843       if (type_die->die_parent == NULL)
17844         add_child_die (scope_die_for (type, context_die), type_die);
17845
17846       for (link = TYPE_VALUES (type);
17847            link != NULL; link = TREE_CHAIN (link))
17848         {
17849           dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
17850           tree value = TREE_VALUE (link);
17851
17852           add_name_attribute (enum_die,
17853                               IDENTIFIER_POINTER (TREE_PURPOSE (link)));
17854
17855           if (TREE_CODE (value) == CONST_DECL)
17856             value = DECL_INITIAL (value);
17857
17858           if (host_integerp (value, TYPE_UNSIGNED (TREE_TYPE (value))))
17859             /* DWARF2 does not provide a way of indicating whether or
17860                not enumeration constants are signed or unsigned.  GDB
17861                always assumes the values are signed, so we output all
17862                values as if they were signed.  That means that
17863                enumeration constants with very large unsigned values
17864                will appear to have negative values in the debugger.  */
17865             add_AT_int (enum_die, DW_AT_const_value,
17866                         tree_low_cst (value, tree_int_cst_sgn (value) > 0));
17867         }
17868     }
17869   else
17870     add_AT_flag (type_die, DW_AT_declaration, 1);
17871
17872   if (get_AT (type_die, DW_AT_name))
17873     add_pubtype (type, type_die);
17874
17875   return type_die;
17876 }
17877
17878 /* Generate a DIE to represent either a real live formal parameter decl or to
17879    represent just the type of some formal parameter position in some function
17880    type.
17881
17882    Note that this routine is a bit unusual because its argument may be a
17883    ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
17884    represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
17885    node.  If it's the former then this function is being called to output a
17886    DIE to represent a formal parameter object (or some inlining thereof).  If
17887    it's the latter, then this function is only being called to output a
17888    DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
17889    argument type of some subprogram type.
17890    If EMIT_NAME_P is true, name and source coordinate attributes
17891    are emitted.  */
17892
17893 static dw_die_ref
17894 gen_formal_parameter_die (tree node, tree origin, bool emit_name_p,
17895                           dw_die_ref context_die)
17896 {
17897   tree node_or_origin = node ? node : origin;
17898   tree ultimate_origin;
17899   dw_die_ref parm_die
17900     = new_die (DW_TAG_formal_parameter, context_die, node);
17901
17902   switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin)))
17903     {
17904     case tcc_declaration:
17905       ultimate_origin = decl_ultimate_origin (node_or_origin);
17906       if (node || ultimate_origin)
17907         origin = ultimate_origin;
17908       if (origin != NULL)
17909         add_abstract_origin_attribute (parm_die, origin);
17910       else
17911         {
17912           tree type = TREE_TYPE (node);
17913           if (emit_name_p)
17914             add_name_and_src_coords_attributes (parm_die, node);
17915           if (decl_by_reference_p (node))
17916             add_type_attribute (parm_die, TREE_TYPE (type), 0, 0,
17917                                 context_die);
17918           else
17919             add_type_attribute (parm_die, type,
17920                                 TREE_READONLY (node),
17921                                 TREE_THIS_VOLATILE (node),
17922                                 context_die);
17923           if (DECL_ARTIFICIAL (node))
17924             add_AT_flag (parm_die, DW_AT_artificial, 1);
17925         }
17926
17927       if (node && node != origin)
17928         equate_decl_number_to_die (node, parm_die);
17929       if (! DECL_ABSTRACT (node_or_origin))
17930         add_location_or_const_value_attribute (parm_die, node_or_origin,
17931                                                DW_AT_location);
17932
17933       break;
17934
17935     case tcc_type:
17936       /* We were called with some kind of a ..._TYPE node.  */
17937       add_type_attribute (parm_die, node_or_origin, 0, 0, context_die);
17938       break;
17939
17940     default:
17941       gcc_unreachable ();
17942     }
17943
17944   return parm_die;
17945 }
17946
17947 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
17948    children DW_TAG_formal_parameter DIEs representing the arguments of the
17949    parameter pack.
17950
17951    PARM_PACK must be a function parameter pack.
17952    PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
17953    must point to the subsequent arguments of the function PACK_ARG belongs to.
17954    SUBR_DIE is the DIE of the function PACK_ARG belongs to.
17955    If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
17956    following the last one for which a DIE was generated.  */
17957
17958 static dw_die_ref
17959 gen_formal_parameter_pack_die  (tree parm_pack,
17960                                 tree pack_arg,
17961                                 dw_die_ref subr_die,
17962                                 tree *next_arg)
17963 {
17964   tree arg;
17965   dw_die_ref parm_pack_die;
17966
17967   gcc_assert (parm_pack
17968               && lang_hooks.function_parameter_pack_p (parm_pack)
17969               && subr_die);
17970
17971   parm_pack_die = new_die (DW_TAG_GNU_formal_parameter_pack, subr_die, parm_pack);
17972   add_src_coords_attributes (parm_pack_die, parm_pack);
17973
17974   for (arg = pack_arg; arg; arg = TREE_CHAIN (arg))
17975     {
17976       if (! lang_hooks.decls.function_parm_expanded_from_pack_p (arg,
17977                                                                  parm_pack))
17978         break;
17979       gen_formal_parameter_die (arg, NULL,
17980                                 false /* Don't emit name attribute.  */,
17981                                 parm_pack_die);
17982     }
17983   if (next_arg)
17984     *next_arg = arg;
17985   return parm_pack_die;
17986 }
17987
17988 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
17989    at the end of an (ANSI prototyped) formal parameters list.  */
17990
17991 static void
17992 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
17993 {
17994   new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
17995 }
17996
17997 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
17998    DW_TAG_unspecified_parameters DIE) to represent the types of the formal
17999    parameters as specified in some function type specification (except for
18000    those which appear as part of a function *definition*).  */
18001
18002 static void
18003 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
18004 {
18005   tree link;
18006   tree formal_type = NULL;
18007   tree first_parm_type;
18008   tree arg;
18009
18010   if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
18011     {
18012       arg = DECL_ARGUMENTS (function_or_method_type);
18013       function_or_method_type = TREE_TYPE (function_or_method_type);
18014     }
18015   else
18016     arg = NULL_TREE;
18017
18018   first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
18019
18020   /* Make our first pass over the list of formal parameter types and output a
18021      DW_TAG_formal_parameter DIE for each one.  */
18022   for (link = first_parm_type; link; )
18023     {
18024       dw_die_ref parm_die;
18025
18026       formal_type = TREE_VALUE (link);
18027       if (formal_type == void_type_node)
18028         break;
18029
18030       /* Output a (nameless) DIE to represent the formal parameter itself.  */
18031       parm_die = gen_formal_parameter_die (formal_type, NULL,
18032                                            true /* Emit name attribute.  */,
18033                                            context_die);
18034       if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
18035            && link == first_parm_type)
18036           || (arg && DECL_ARTIFICIAL (arg)))
18037         add_AT_flag (parm_die, DW_AT_artificial, 1);
18038
18039       link = TREE_CHAIN (link);
18040       if (arg)
18041         arg = TREE_CHAIN (arg);
18042     }
18043
18044   /* If this function type has an ellipsis, add a
18045      DW_TAG_unspecified_parameters DIE to the end of the parameter list.  */
18046   if (formal_type != void_type_node)
18047     gen_unspecified_parameters_die (function_or_method_type, context_die);
18048
18049   /* Make our second (and final) pass over the list of formal parameter types
18050      and output DIEs to represent those types (as necessary).  */
18051   for (link = TYPE_ARG_TYPES (function_or_method_type);
18052        link && TREE_VALUE (link);
18053        link = TREE_CHAIN (link))
18054     gen_type_die (TREE_VALUE (link), context_die);
18055 }
18056
18057 /* We want to generate the DIE for TYPE so that we can generate the
18058    die for MEMBER, which has been defined; we will need to refer back
18059    to the member declaration nested within TYPE.  If we're trying to
18060    generate minimal debug info for TYPE, processing TYPE won't do the
18061    trick; we need to attach the member declaration by hand.  */
18062
18063 static void
18064 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
18065 {
18066   gen_type_die (type, context_die);
18067
18068   /* If we're trying to avoid duplicate debug info, we may not have
18069      emitted the member decl for this function.  Emit it now.  */
18070   if (TYPE_STUB_DECL (type)
18071       && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
18072       && ! lookup_decl_die (member))
18073     {
18074       dw_die_ref type_die;
18075       gcc_assert (!decl_ultimate_origin (member));
18076
18077       push_decl_scope (type);
18078       type_die = lookup_type_die (type);
18079       if (TREE_CODE (member) == FUNCTION_DECL)
18080         gen_subprogram_die (member, type_die);
18081       else if (TREE_CODE (member) == FIELD_DECL)
18082         {
18083           /* Ignore the nameless fields that are used to skip bits but handle
18084              C++ anonymous unions and structs.  */
18085           if (DECL_NAME (member) != NULL_TREE
18086               || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
18087               || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
18088             {
18089               gen_type_die (member_declared_type (member), type_die);
18090               gen_field_die (member, type_die);
18091             }
18092         }
18093       else
18094         gen_variable_die (member, NULL_TREE, type_die);
18095
18096       pop_decl_scope ();
18097     }
18098 }
18099
18100 /* Generate the DWARF2 info for the "abstract" instance of a function which we
18101    may later generate inlined and/or out-of-line instances of.  */
18102
18103 static void
18104 dwarf2out_abstract_function (tree decl)
18105 {
18106   dw_die_ref old_die;
18107   tree save_fn;
18108   tree context;
18109   int was_abstract;
18110   htab_t old_decl_loc_table;
18111
18112   /* Make sure we have the actual abstract inline, not a clone.  */
18113   decl = DECL_ORIGIN (decl);
18114
18115   old_die = lookup_decl_die (decl);
18116   if (old_die && get_AT (old_die, DW_AT_inline))
18117     /* We've already generated the abstract instance.  */
18118     return;
18119
18120   /* We can be called while recursively when seeing block defining inlined subroutine
18121      DIE.  Be sure to not clobber the outer location table nor use it or we would
18122      get locations in abstract instantces.  */
18123   old_decl_loc_table = decl_loc_table;
18124   decl_loc_table = NULL;
18125
18126   /* Be sure we've emitted the in-class declaration DIE (if any) first, so
18127      we don't get confused by DECL_ABSTRACT.  */
18128   if (debug_info_level > DINFO_LEVEL_TERSE)
18129     {
18130       context = decl_class_context (decl);
18131       if (context)
18132         gen_type_die_for_member
18133           (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
18134     }
18135
18136   /* Pretend we've just finished compiling this function.  */
18137   save_fn = current_function_decl;
18138   current_function_decl = decl;
18139   push_cfun (DECL_STRUCT_FUNCTION (decl));
18140
18141   was_abstract = DECL_ABSTRACT (decl);
18142   set_decl_abstract_flags (decl, 1);
18143   dwarf2out_decl (decl);
18144   if (! was_abstract)
18145     set_decl_abstract_flags (decl, 0);
18146
18147   current_function_decl = save_fn;
18148   decl_loc_table = old_decl_loc_table;
18149   pop_cfun ();
18150 }
18151
18152 /* Helper function of premark_used_types() which gets called through
18153    htab_traverse.
18154
18155    Marks the DIE of a given type in *SLOT as perennial, so it never gets
18156    marked as unused by prune_unused_types.  */
18157
18158 static int
18159 premark_used_types_helper (void **slot, void *data ATTRIBUTE_UNUSED)
18160 {
18161   tree type;
18162   dw_die_ref die;
18163
18164   type = (tree) *slot;
18165   die = lookup_type_die (type);
18166   if (die != NULL)
18167     die->die_perennial_p = 1;
18168   return 1;
18169 }
18170
18171 /* Helper function of premark_types_used_by_global_vars which gets called
18172    through htab_traverse.
18173
18174    Marks the DIE of a given type in *SLOT as perennial, so it never gets
18175    marked as unused by prune_unused_types. The DIE of the type is marked
18176    only if the global variable using the type will actually be emitted.  */
18177
18178 static int
18179 premark_types_used_by_global_vars_helper (void **slot,
18180                                           void *data ATTRIBUTE_UNUSED)
18181 {
18182   struct types_used_by_vars_entry *entry;
18183   dw_die_ref die;
18184
18185   entry = (struct types_used_by_vars_entry *) *slot;
18186   gcc_assert (entry->type != NULL
18187               && entry->var_decl != NULL);
18188   die = lookup_type_die (entry->type);
18189   if (die)
18190     {
18191       /* Ask cgraph if the global variable really is to be emitted.
18192          If yes, then we'll keep the DIE of ENTRY->TYPE.  */
18193       struct varpool_node *node = varpool_node (entry->var_decl);
18194       if (node->needed)
18195         {
18196           die->die_perennial_p = 1;
18197           /* Keep the parent DIEs as well.  */
18198           while ((die = die->die_parent) && die->die_perennial_p == 0)
18199             die->die_perennial_p = 1;
18200         }
18201     }
18202   return 1;
18203 }
18204
18205 /* Mark all members of used_types_hash as perennial.  */
18206
18207 static void
18208 premark_used_types (void)
18209 {
18210   if (cfun && cfun->used_types_hash)
18211     htab_traverse (cfun->used_types_hash, premark_used_types_helper, NULL);
18212 }
18213
18214 /* Mark all members of types_used_by_vars_entry as perennial.  */
18215
18216 static void
18217 premark_types_used_by_global_vars (void)
18218 {
18219   if (types_used_by_vars_hash)
18220     htab_traverse (types_used_by_vars_hash,
18221                    premark_types_used_by_global_vars_helper, NULL);
18222 }
18223
18224 /* Generate a DIE to represent a declared function (either file-scope or
18225    block-local).  */
18226
18227 static void
18228 gen_subprogram_die (tree decl, dw_die_ref context_die)
18229 {
18230   char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
18231   tree origin = decl_ultimate_origin (decl);
18232   dw_die_ref subr_die;
18233   tree fn_arg_types;
18234   tree outer_scope;
18235   dw_die_ref old_die = lookup_decl_die (decl);
18236   int declaration = (current_function_decl != decl
18237                      || class_or_namespace_scope_p (context_die));
18238
18239   premark_used_types ();
18240
18241   /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
18242      started to generate the abstract instance of an inline, decided to output
18243      its containing class, and proceeded to emit the declaration of the inline
18244      from the member list for the class.  If so, DECLARATION takes priority;
18245      we'll get back to the abstract instance when done with the class.  */
18246
18247   /* The class-scope declaration DIE must be the primary DIE.  */
18248   if (origin && declaration && class_or_namespace_scope_p (context_die))
18249     {
18250       origin = NULL;
18251       gcc_assert (!old_die);
18252     }
18253
18254   /* Now that the C++ front end lazily declares artificial member fns, we
18255      might need to retrofit the declaration into its class.  */
18256   if (!declaration && !origin && !old_die
18257       && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
18258       && !class_or_namespace_scope_p (context_die)
18259       && debug_info_level > DINFO_LEVEL_TERSE)
18260     old_die = force_decl_die (decl);
18261
18262   if (origin != NULL)
18263     {
18264       gcc_assert (!declaration || local_scope_p (context_die));
18265
18266       /* Fixup die_parent for the abstract instance of a nested
18267          inline function.  */
18268       if (old_die && old_die->die_parent == NULL)
18269         add_child_die (context_die, old_die);
18270
18271       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
18272       add_abstract_origin_attribute (subr_die, origin);
18273     }
18274   else if (old_die)
18275     {
18276       expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
18277       struct dwarf_file_data * file_index = lookup_filename (s.file);
18278
18279       if (!get_AT_flag (old_die, DW_AT_declaration)
18280           /* We can have a normal definition following an inline one in the
18281              case of redefinition of GNU C extern inlines.
18282              It seems reasonable to use AT_specification in this case.  */
18283           && !get_AT (old_die, DW_AT_inline))
18284         {
18285           /* Detect and ignore this case, where we are trying to output
18286              something we have already output.  */
18287           return;
18288         }
18289
18290       /* If the definition comes from the same place as the declaration,
18291          maybe use the old DIE.  We always want the DIE for this function
18292          that has the *_pc attributes to be under comp_unit_die so the
18293          debugger can find it.  We also need to do this for abstract
18294          instances of inlines, since the spec requires the out-of-line copy
18295          to have the same parent.  For local class methods, this doesn't
18296          apply; we just use the old DIE.  */
18297       if ((old_die->die_parent == comp_unit_die || context_die == NULL)
18298           && (DECL_ARTIFICIAL (decl)
18299               || (get_AT_file (old_die, DW_AT_decl_file) == file_index
18300                   && (get_AT_unsigned (old_die, DW_AT_decl_line)
18301                       == (unsigned) s.line))))
18302         {
18303           subr_die = old_die;
18304
18305           /* Clear out the declaration attribute and the formal parameters.
18306              Do not remove all children, because it is possible that this
18307              declaration die was forced using force_decl_die(). In such
18308              cases die that forced declaration die (e.g. TAG_imported_module)
18309              is one of the children that we do not want to remove.  */
18310           remove_AT (subr_die, DW_AT_declaration);
18311           remove_child_TAG (subr_die, DW_TAG_formal_parameter);
18312         }
18313       else
18314         {
18315           subr_die = new_die (DW_TAG_subprogram, context_die, decl);
18316           add_AT_specification (subr_die, old_die);
18317           if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
18318             add_AT_file (subr_die, DW_AT_decl_file, file_index);
18319           if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
18320             add_AT_unsigned (subr_die, DW_AT_decl_line, s.line);
18321         }
18322     }
18323   else
18324     {
18325       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
18326
18327       if (TREE_PUBLIC (decl))
18328         add_AT_flag (subr_die, DW_AT_external, 1);
18329
18330       add_name_and_src_coords_attributes (subr_die, decl);
18331       if (debug_info_level > DINFO_LEVEL_TERSE)
18332         {
18333           add_prototyped_attribute (subr_die, TREE_TYPE (decl));
18334           add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
18335                               0, 0, context_die);
18336         }
18337
18338       add_pure_or_virtual_attribute (subr_die, decl);
18339       if (DECL_ARTIFICIAL (decl))
18340         add_AT_flag (subr_die, DW_AT_artificial, 1);
18341
18342       if (TREE_PROTECTED (decl))
18343         add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
18344       else if (TREE_PRIVATE (decl))
18345         add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
18346     }
18347
18348   if (declaration)
18349     {
18350       if (!old_die || !get_AT (old_die, DW_AT_inline))
18351         {
18352           add_AT_flag (subr_die, DW_AT_declaration, 1);
18353
18354           /* If this is an explicit function declaration then generate
18355              a DW_AT_explicit attribute.  */
18356           if (lang_hooks.decls.function_decl_explicit_p (decl)
18357               && (dwarf_version >= 3 || !dwarf_strict))
18358             add_AT_flag (subr_die, DW_AT_explicit, 1);
18359
18360           /* The first time we see a member function, it is in the context of
18361              the class to which it belongs.  We make sure of this by emitting
18362              the class first.  The next time is the definition, which is
18363              handled above.  The two may come from the same source text.
18364
18365              Note that force_decl_die() forces function declaration die. It is
18366              later reused to represent definition.  */
18367           equate_decl_number_to_die (decl, subr_die);
18368         }
18369     }
18370   else if (DECL_ABSTRACT (decl))
18371     {
18372       if (DECL_DECLARED_INLINE_P (decl))
18373         {
18374           if (cgraph_function_possibly_inlined_p (decl))
18375             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
18376           else
18377             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
18378         }
18379       else
18380         {
18381           if (cgraph_function_possibly_inlined_p (decl))
18382             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
18383           else
18384             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_not_inlined);
18385         }
18386
18387       if (DECL_DECLARED_INLINE_P (decl)
18388           && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl)))
18389         add_AT_flag (subr_die, DW_AT_artificial, 1);
18390
18391       equate_decl_number_to_die (decl, subr_die);
18392     }
18393   else if (!DECL_EXTERNAL (decl))
18394     {
18395       HOST_WIDE_INT cfa_fb_offset;
18396
18397       if (!old_die || !get_AT (old_die, DW_AT_inline))
18398         equate_decl_number_to_die (decl, subr_die);
18399
18400       if (!flag_reorder_blocks_and_partition)
18401         {
18402           ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
18403                                        current_function_funcdef_no);
18404           add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
18405           ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
18406                                        current_function_funcdef_no);
18407           add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
18408
18409           add_pubname (decl, subr_die);
18410           add_arange (decl, subr_die);
18411         }
18412       else
18413         {  /* Do nothing for now; maybe need to duplicate die, one for
18414               hot section and one for cold section, then use the hot/cold
18415               section begin/end labels to generate the aranges...  */
18416           /*
18417             add_AT_lbl_id (subr_die, DW_AT_low_pc, hot_section_label);
18418             add_AT_lbl_id (subr_die, DW_AT_high_pc, hot_section_end_label);
18419             add_AT_lbl_id (subr_die, DW_AT_lo_user, unlikely_section_label);
18420             add_AT_lbl_id (subr_die, DW_AT_hi_user, cold_section_end_label);
18421
18422             add_pubname (decl, subr_die);
18423             add_arange (decl, subr_die);
18424             add_arange (decl, subr_die);
18425            */
18426         }
18427
18428 #ifdef MIPS_DEBUGGING_INFO
18429       /* Add a reference to the FDE for this routine.  */
18430       add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
18431 #endif
18432
18433       cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
18434
18435       /* We define the "frame base" as the function's CFA.  This is more
18436          convenient for several reasons: (1) It's stable across the prologue
18437          and epilogue, which makes it better than just a frame pointer,
18438          (2) With dwarf3, there exists a one-byte encoding that allows us
18439          to reference the .debug_frame data by proxy, but failing that,
18440          (3) We can at least reuse the code inspection and interpretation
18441          code that determines the CFA position at various points in the
18442          function.  */
18443       if (dwarf_version >= 3)
18444         {
18445           dw_loc_descr_ref op = new_loc_descr (DW_OP_call_frame_cfa, 0, 0);
18446           add_AT_loc (subr_die, DW_AT_frame_base, op);
18447         }
18448       else
18449         {
18450           dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
18451           if (list->dw_loc_next)
18452             add_AT_loc_list (subr_die, DW_AT_frame_base, list);
18453           else
18454             add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
18455         }
18456
18457       /* Compute a displacement from the "steady-state frame pointer" to
18458          the CFA.  The former is what all stack slots and argument slots
18459          will reference in the rtl; the later is what we've told the
18460          debugger about.  We'll need to adjust all frame_base references
18461          by this displacement.  */
18462       compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
18463
18464       if (cfun->static_chain_decl)
18465         add_AT_location_description (subr_die, DW_AT_static_link,
18466                  loc_list_from_tree (cfun->static_chain_decl, 2));
18467     }
18468
18469   /* Generate child dies for template paramaters.  */
18470   if (debug_info_level > DINFO_LEVEL_TERSE)
18471     gen_generic_params_dies (decl);
18472
18473   /* Now output descriptions of the arguments for this function. This gets
18474      (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
18475      for a FUNCTION_DECL doesn't indicate cases where there was a trailing
18476      `...' at the end of the formal parameter list.  In order to find out if
18477      there was a trailing ellipsis or not, we must instead look at the type
18478      associated with the FUNCTION_DECL.  This will be a node of type
18479      FUNCTION_TYPE. If the chain of type nodes hanging off of this
18480      FUNCTION_TYPE node ends with a void_type_node then there should *not* be
18481      an ellipsis at the end.  */
18482
18483   /* In the case where we are describing a mere function declaration, all we
18484      need to do here (and all we *can* do here) is to describe the *types* of
18485      its formal parameters.  */
18486   if (debug_info_level <= DINFO_LEVEL_TERSE)
18487     ;
18488   else if (declaration)
18489     gen_formal_types_die (decl, subr_die);
18490   else
18491     {
18492       /* Generate DIEs to represent all known formal parameters.  */
18493       tree parm = DECL_ARGUMENTS (decl);
18494       tree generic_decl = lang_hooks.decls.get_generic_function_decl (decl);
18495       tree generic_decl_parm = generic_decl
18496                                 ? DECL_ARGUMENTS (generic_decl)
18497                                 : NULL;
18498
18499       /* Now we want to walk the list of parameters of the function and
18500          emit their relevant DIEs.
18501
18502          We consider the case of DECL being an instance of a generic function
18503          as well as it being a normal function.
18504
18505          If DECL is an instance of a generic function we walk the
18506          parameters of the generic function declaration _and_ the parameters of
18507          DECL itself. This is useful because we want to emit specific DIEs for
18508          function parameter packs and those are declared as part of the
18509          generic function declaration. In that particular case,
18510          the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
18511          That DIE has children DIEs representing the set of arguments
18512          of the pack. Note that the set of pack arguments can be empty.
18513          In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
18514          children DIE.
18515
18516          Otherwise, we just consider the parameters of DECL.  */
18517       while (generic_decl_parm || parm)
18518         {
18519           if (generic_decl_parm
18520               && lang_hooks.function_parameter_pack_p (generic_decl_parm))
18521             gen_formal_parameter_pack_die (generic_decl_parm,
18522                                            parm, subr_die,
18523                                            &parm);
18524           else if (parm)
18525             {
18526               gen_decl_die (parm, NULL, subr_die);
18527               parm = TREE_CHAIN (parm);
18528             }
18529
18530           if (generic_decl_parm)
18531             generic_decl_parm = TREE_CHAIN (generic_decl_parm);
18532         }
18533
18534       /* Decide whether we need an unspecified_parameters DIE at the end.
18535          There are 2 more cases to do this for: 1) the ansi ... declaration -
18536          this is detectable when the end of the arg list is not a
18537          void_type_node 2) an unprototyped function declaration (not a
18538          definition).  This just means that we have no info about the
18539          parameters at all.  */
18540       fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
18541       if (fn_arg_types != NULL)
18542         {
18543           /* This is the prototyped case, check for....  */
18544           if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
18545             gen_unspecified_parameters_die (decl, subr_die);
18546         }
18547       else if (DECL_INITIAL (decl) == NULL_TREE)
18548         gen_unspecified_parameters_die (decl, subr_die);
18549     }
18550
18551   /* Output Dwarf info for all of the stuff within the body of the function
18552      (if it has one - it may be just a declaration).  */
18553   outer_scope = DECL_INITIAL (decl);
18554
18555   /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
18556      a function.  This BLOCK actually represents the outermost binding contour
18557      for the function, i.e. the contour in which the function's formal
18558      parameters and labels get declared. Curiously, it appears that the front
18559      end doesn't actually put the PARM_DECL nodes for the current function onto
18560      the BLOCK_VARS list for this outer scope, but are strung off of the
18561      DECL_ARGUMENTS list for the function instead.
18562
18563      The BLOCK_VARS list for the `outer_scope' does provide us with a list of
18564      the LABEL_DECL nodes for the function however, and we output DWARF info
18565      for those in decls_for_scope.  Just within the `outer_scope' there will be
18566      a BLOCK node representing the function's outermost pair of curly braces,
18567      and any blocks used for the base and member initializers of a C++
18568      constructor function.  */
18569   if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
18570     {
18571       /* Emit a DW_TAG_variable DIE for a named return value.  */
18572       if (DECL_NAME (DECL_RESULT (decl)))
18573         gen_decl_die (DECL_RESULT (decl), NULL, subr_die);
18574
18575       current_function_has_inlines = 0;
18576       decls_for_scope (outer_scope, subr_die, 0);
18577
18578 #if 0 && defined (MIPS_DEBUGGING_INFO)
18579       if (current_function_has_inlines)
18580         {
18581           add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
18582           if (! comp_unit_has_inlines)
18583             {
18584               add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
18585               comp_unit_has_inlines = 1;
18586             }
18587         }
18588 #endif
18589     }
18590   /* Add the calling convention attribute if requested.  */
18591   add_calling_convention_attribute (subr_die, decl);
18592
18593 }
18594
18595 /* Returns a hash value for X (which really is a die_struct).  */
18596
18597 static hashval_t
18598 common_block_die_table_hash (const void *x)
18599 {
18600   const_dw_die_ref d = (const_dw_die_ref) x;
18601   return (hashval_t) d->decl_id ^ htab_hash_pointer (d->die_parent);
18602 }
18603
18604 /* Return nonzero if decl_id and die_parent of die_struct X is the same
18605    as decl_id and die_parent of die_struct Y.  */
18606
18607 static int
18608 common_block_die_table_eq (const void *x, const void *y)
18609 {
18610   const_dw_die_ref d = (const_dw_die_ref) x;
18611   const_dw_die_ref e = (const_dw_die_ref) y;
18612   return d->decl_id == e->decl_id && d->die_parent == e->die_parent;
18613 }
18614
18615 /* Generate a DIE to represent a declared data object.
18616    Either DECL or ORIGIN must be non-null.  */
18617
18618 static void
18619 gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
18620 {
18621   HOST_WIDE_INT off;
18622   tree com_decl;
18623   tree decl_or_origin = decl ? decl : origin;
18624   tree ultimate_origin;
18625   dw_die_ref var_die;
18626   dw_die_ref old_die = decl ? lookup_decl_die (decl) : NULL;
18627   dw_die_ref origin_die;
18628   int declaration = (DECL_EXTERNAL (decl_or_origin)
18629                      || class_or_namespace_scope_p (context_die));
18630
18631   ultimate_origin = decl_ultimate_origin (decl_or_origin);
18632   if (decl || ultimate_origin)
18633     origin = ultimate_origin;
18634   com_decl = fortran_common (decl_or_origin, &off);
18635
18636   /* Symbol in common gets emitted as a child of the common block, in the form
18637      of a data member.  */
18638   if (com_decl)
18639     {
18640       dw_die_ref com_die;
18641       dw_loc_list_ref loc;
18642       die_node com_die_arg;
18643
18644       var_die = lookup_decl_die (decl_or_origin);
18645       if (var_die)
18646         {
18647           if (get_AT (var_die, DW_AT_location) == NULL)
18648             {
18649               loc = loc_list_from_tree (com_decl, off ? 1 : 2);
18650               if (loc)
18651                 {
18652                   if (off)
18653                     {
18654                       /* Optimize the common case.  */
18655                       if (single_element_loc_list_p (loc)
18656                           && loc->expr->dw_loc_opc == DW_OP_addr
18657                           && loc->expr->dw_loc_next == NULL
18658                           && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr)
18659                              == SYMBOL_REF)
18660                         loc->expr->dw_loc_oprnd1.v.val_addr
18661                           = plus_constant (loc->expr->dw_loc_oprnd1.v.val_addr, off);
18662                         else
18663                           loc_list_plus_const (loc, off);
18664                     }
18665                   add_AT_location_description (var_die, DW_AT_location, loc);
18666                   remove_AT (var_die, DW_AT_declaration);
18667                 }
18668             }
18669           return;
18670         }
18671
18672       if (common_block_die_table == NULL)
18673         common_block_die_table
18674           = htab_create_ggc (10, common_block_die_table_hash,
18675                              common_block_die_table_eq, NULL);
18676
18677       com_die_arg.decl_id = DECL_UID (com_decl);
18678       com_die_arg.die_parent = context_die;
18679       com_die = (dw_die_ref) htab_find (common_block_die_table, &com_die_arg);
18680       loc = loc_list_from_tree (com_decl, 2);
18681       if (com_die == NULL)
18682         {
18683           const char *cnam
18684             = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl));
18685           void **slot;
18686
18687           com_die = new_die (DW_TAG_common_block, context_die, decl);
18688           add_name_and_src_coords_attributes (com_die, com_decl);
18689           if (loc)
18690             {
18691               add_AT_location_description (com_die, DW_AT_location, loc);
18692               /* Avoid sharing the same loc descriptor between
18693                  DW_TAG_common_block and DW_TAG_variable.  */
18694               loc = loc_list_from_tree (com_decl, 2);
18695             }
18696           else if (DECL_EXTERNAL (decl))
18697             add_AT_flag (com_die, DW_AT_declaration, 1);
18698           add_pubname_string (cnam, com_die); /* ??? needed? */
18699           com_die->decl_id = DECL_UID (com_decl);
18700           slot = htab_find_slot (common_block_die_table, com_die, INSERT);
18701           *slot = (void *) com_die;
18702         }
18703       else if (get_AT (com_die, DW_AT_location) == NULL && loc)
18704         {
18705           add_AT_location_description (com_die, DW_AT_location, loc);
18706           loc = loc_list_from_tree (com_decl, 2);
18707           remove_AT (com_die, DW_AT_declaration);
18708         }
18709       var_die = new_die (DW_TAG_variable, com_die, decl);
18710       add_name_and_src_coords_attributes (var_die, decl);
18711       add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
18712                           TREE_THIS_VOLATILE (decl), context_die);
18713       add_AT_flag (var_die, DW_AT_external, 1);
18714       if (loc)
18715         {
18716           if (off)
18717             {
18718               /* Optimize the common case.  */
18719               if (single_element_loc_list_p (loc)
18720                   && loc->expr->dw_loc_opc == DW_OP_addr
18721                   && loc->expr->dw_loc_next == NULL
18722                   && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF)
18723                 loc->expr->dw_loc_oprnd1.v.val_addr
18724                   = plus_constant (loc->expr->dw_loc_oprnd1.v.val_addr, off);
18725               else
18726                 loc_list_plus_const (loc, off);
18727             }
18728           add_AT_location_description (var_die, DW_AT_location, loc);
18729         }
18730       else if (DECL_EXTERNAL (decl))
18731         add_AT_flag (var_die, DW_AT_declaration, 1);
18732       equate_decl_number_to_die (decl, var_die);
18733       return;
18734     }
18735
18736   /* If the compiler emitted a definition for the DECL declaration
18737      and if we already emitted a DIE for it, don't emit a second
18738      DIE for it again. Allow re-declarations of DECLs that are
18739      inside functions, though.  */
18740   if (old_die && declaration && !local_scope_p (context_die))
18741     return;
18742
18743   /* For static data members, the declaration in the class is supposed
18744      to have DW_TAG_member tag; the specification should still be
18745      DW_TAG_variable referencing the DW_TAG_member DIE.  */
18746   if (declaration && class_scope_p (context_die))
18747     var_die = new_die (DW_TAG_member, context_die, decl);
18748   else
18749     var_die = new_die (DW_TAG_variable, context_die, decl);
18750
18751   origin_die = NULL;
18752   if (origin != NULL)
18753     origin_die = add_abstract_origin_attribute (var_die, origin);
18754
18755   /* Loop unrolling can create multiple blocks that refer to the same
18756      static variable, so we must test for the DW_AT_declaration flag.
18757
18758      ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
18759      copy decls and set the DECL_ABSTRACT flag on them instead of
18760      sharing them.
18761
18762      ??? Duplicated blocks have been rewritten to use .debug_ranges.
18763
18764      ??? The declare_in_namespace support causes us to get two DIEs for one
18765      variable, both of which are declarations.  We want to avoid considering
18766      one to be a specification, so we must test that this DIE is not a
18767      declaration.  */
18768   else if (old_die && TREE_STATIC (decl) && ! declaration
18769            && get_AT_flag (old_die, DW_AT_declaration) == 1)
18770     {
18771       /* This is a definition of a C++ class level static.  */
18772       add_AT_specification (var_die, old_die);
18773       if (DECL_NAME (decl))
18774         {
18775           expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
18776           struct dwarf_file_data * file_index = lookup_filename (s.file);
18777
18778           if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
18779             add_AT_file (var_die, DW_AT_decl_file, file_index);
18780
18781           if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
18782             add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
18783         }
18784     }
18785   else
18786     {
18787       tree type = TREE_TYPE (decl);
18788
18789       add_name_and_src_coords_attributes (var_die, decl);
18790       if (decl_by_reference_p (decl))
18791         add_type_attribute (var_die, TREE_TYPE (type), 0, 0, context_die);
18792       else
18793         add_type_attribute (var_die, type, TREE_READONLY (decl),
18794                             TREE_THIS_VOLATILE (decl), context_die);
18795
18796       if (TREE_PUBLIC (decl))
18797         add_AT_flag (var_die, DW_AT_external, 1);
18798
18799       if (DECL_ARTIFICIAL (decl))
18800         add_AT_flag (var_die, DW_AT_artificial, 1);
18801
18802       if (TREE_PROTECTED (decl))
18803         add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
18804       else if (TREE_PRIVATE (decl))
18805         add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
18806     }
18807
18808   if (declaration)
18809     add_AT_flag (var_die, DW_AT_declaration, 1);
18810
18811   if (decl && (DECL_ABSTRACT (decl) || declaration))
18812     equate_decl_number_to_die (decl, var_die);
18813
18814   if (! declaration
18815       && (! DECL_ABSTRACT (decl_or_origin)
18816           /* Local static vars are shared between all clones/inlines,
18817              so emit DW_AT_location on the abstract DIE if DECL_RTL is
18818              already set.  */
18819           || (TREE_CODE (decl_or_origin) == VAR_DECL
18820               && TREE_STATIC (decl_or_origin)
18821               && DECL_RTL_SET_P (decl_or_origin)))
18822       /* When abstract origin already has DW_AT_location attribute, no need
18823          to add it again.  */
18824       && (origin_die == NULL || get_AT (origin_die, DW_AT_location) == NULL))
18825     {
18826       if (TREE_CODE (decl_or_origin) == VAR_DECL && TREE_STATIC (decl_or_origin)
18827           && !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl_or_origin)))
18828         defer_location (decl_or_origin, var_die);
18829       else
18830         add_location_or_const_value_attribute (var_die,
18831                                                decl_or_origin,
18832                                                DW_AT_location);
18833       add_pubname (decl_or_origin, var_die);
18834     }
18835   else
18836     tree_add_const_value_attribute_for_decl (var_die, decl_or_origin);
18837 }
18838
18839 /* Generate a DIE to represent a named constant.  */
18840
18841 static void
18842 gen_const_die (tree decl, dw_die_ref context_die)
18843 {
18844   dw_die_ref const_die;
18845   tree type = TREE_TYPE (decl);
18846
18847   const_die = new_die (DW_TAG_constant, context_die, decl);
18848   add_name_and_src_coords_attributes (const_die, decl);
18849   add_type_attribute (const_die, type, 1, 0, context_die);
18850   if (TREE_PUBLIC (decl))
18851     add_AT_flag (const_die, DW_AT_external, 1);
18852   if (DECL_ARTIFICIAL (decl))
18853     add_AT_flag (const_die, DW_AT_artificial, 1);
18854   tree_add_const_value_attribute_for_decl (const_die, decl);
18855 }
18856
18857 /* Generate a DIE to represent a label identifier.  */
18858
18859 static void
18860 gen_label_die (tree decl, dw_die_ref context_die)
18861 {
18862   tree origin = decl_ultimate_origin (decl);
18863   dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
18864   rtx insn;
18865   char label[MAX_ARTIFICIAL_LABEL_BYTES];
18866
18867   if (origin != NULL)
18868     add_abstract_origin_attribute (lbl_die, origin);
18869   else
18870     add_name_and_src_coords_attributes (lbl_die, decl);
18871
18872   if (DECL_ABSTRACT (decl))
18873     equate_decl_number_to_die (decl, lbl_die);
18874   else
18875     {
18876       insn = DECL_RTL_IF_SET (decl);
18877
18878       /* Deleted labels are programmer specified labels which have been
18879          eliminated because of various optimizations.  We still emit them
18880          here so that it is possible to put breakpoints on them.  */
18881       if (insn
18882           && (LABEL_P (insn)
18883               || ((NOTE_P (insn)
18884                    && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL))))
18885         {
18886           /* When optimization is enabled (via -O) some parts of the compiler
18887              (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
18888              represent source-level labels which were explicitly declared by
18889              the user.  This really shouldn't be happening though, so catch
18890              it if it ever does happen.  */
18891           gcc_assert (!INSN_DELETED_P (insn));
18892
18893           ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
18894           add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
18895         }
18896     }
18897 }
18898
18899 /* A helper function for gen_inlined_subroutine_die.  Add source coordinate
18900    attributes to the DIE for a block STMT, to describe where the inlined
18901    function was called from.  This is similar to add_src_coords_attributes.  */
18902
18903 static inline void
18904 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
18905 {
18906   expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (stmt));
18907
18908   if (dwarf_version >= 3 || !dwarf_strict)
18909     {
18910       add_AT_file (die, DW_AT_call_file, lookup_filename (s.file));
18911       add_AT_unsigned (die, DW_AT_call_line, s.line);
18912     }
18913 }
18914
18915
18916 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
18917    Add low_pc and high_pc attributes to the DIE for a block STMT.  */
18918
18919 static inline void
18920 add_high_low_attributes (tree stmt, dw_die_ref die)
18921 {
18922   char label[MAX_ARTIFICIAL_LABEL_BYTES];
18923
18924   if (BLOCK_FRAGMENT_CHAIN (stmt)
18925       && (dwarf_version >= 3 || !dwarf_strict))
18926     {
18927       tree chain;
18928
18929       if (inlined_function_outer_scope_p (stmt))
18930         {
18931           ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
18932                                        BLOCK_NUMBER (stmt));
18933           add_AT_lbl_id (die, DW_AT_entry_pc, label);
18934         }
18935
18936       add_AT_range_list (die, DW_AT_ranges, add_ranges (stmt));
18937
18938       chain = BLOCK_FRAGMENT_CHAIN (stmt);
18939       do
18940         {
18941           add_ranges (chain);
18942           chain = BLOCK_FRAGMENT_CHAIN (chain);
18943         }
18944       while (chain);
18945       add_ranges (NULL);
18946     }
18947   else
18948     {
18949       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
18950                                    BLOCK_NUMBER (stmt));
18951       add_AT_lbl_id (die, DW_AT_low_pc, label);
18952       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
18953                                    BLOCK_NUMBER (stmt));
18954       add_AT_lbl_id (die, DW_AT_high_pc, label);
18955     }
18956 }
18957
18958 /* Generate a DIE for a lexical block.  */
18959
18960 static void
18961 gen_lexical_block_die (tree stmt, dw_die_ref context_die, int depth)
18962 {
18963   dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
18964
18965   if (! BLOCK_ABSTRACT (stmt) && TREE_ASM_WRITTEN (stmt))
18966     add_high_low_attributes (stmt, stmt_die);
18967
18968   decls_for_scope (stmt, stmt_die, depth);
18969 }
18970
18971 /* Generate a DIE for an inlined subprogram.  */
18972
18973 static void
18974 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die, int depth)
18975 {
18976   tree decl;
18977
18978   /* The instance of function that is effectively being inlined shall not
18979      be abstract.  */
18980   gcc_assert (! BLOCK_ABSTRACT (stmt));
18981
18982   decl = block_ultimate_origin (stmt);
18983
18984   /* Emit info for the abstract instance first, if we haven't yet.  We
18985      must emit this even if the block is abstract, otherwise when we
18986      emit the block below (or elsewhere), we may end up trying to emit
18987      a die whose origin die hasn't been emitted, and crashing.  */
18988   dwarf2out_abstract_function (decl);
18989
18990   if (! BLOCK_ABSTRACT (stmt))
18991     {
18992       dw_die_ref subr_die
18993         = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
18994
18995       add_abstract_origin_attribute (subr_die, decl);
18996       if (TREE_ASM_WRITTEN (stmt))
18997         add_high_low_attributes (stmt, subr_die);
18998       add_call_src_coords_attributes (stmt, subr_die);
18999
19000       decls_for_scope (stmt, subr_die, depth);
19001       current_function_has_inlines = 1;
19002     }
19003 }
19004
19005 /* Generate a DIE for a field in a record, or structure.  */
19006
19007 static void
19008 gen_field_die (tree decl, dw_die_ref context_die)
19009 {
19010   dw_die_ref decl_die;
19011
19012   if (TREE_TYPE (decl) == error_mark_node)
19013     return;
19014
19015   decl_die = new_die (DW_TAG_member, context_die, decl);
19016   add_name_and_src_coords_attributes (decl_die, decl);
19017   add_type_attribute (decl_die, member_declared_type (decl),
19018                       TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
19019                       context_die);
19020
19021   if (DECL_BIT_FIELD_TYPE (decl))
19022     {
19023       add_byte_size_attribute (decl_die, decl);
19024       add_bit_size_attribute (decl_die, decl);
19025       add_bit_offset_attribute (decl_die, decl);
19026     }
19027
19028   if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
19029     add_data_member_location_attribute (decl_die, decl);
19030
19031   if (DECL_ARTIFICIAL (decl))
19032     add_AT_flag (decl_die, DW_AT_artificial, 1);
19033
19034   if (TREE_PROTECTED (decl))
19035     add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
19036   else if (TREE_PRIVATE (decl))
19037     add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
19038
19039   /* Equate decl number to die, so that we can look up this decl later on.  */
19040   equate_decl_number_to_die (decl, decl_die);
19041 }
19042
19043 #if 0
19044 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
19045    Use modified_type_die instead.
19046    We keep this code here just in case these types of DIEs may be needed to
19047    represent certain things in other languages (e.g. Pascal) someday.  */
19048
19049 static void
19050 gen_pointer_type_die (tree type, dw_die_ref context_die)
19051 {
19052   dw_die_ref ptr_die
19053     = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
19054
19055   equate_type_number_to_die (type, ptr_die);
19056   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
19057   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
19058 }
19059
19060 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
19061    Use modified_type_die instead.
19062    We keep this code here just in case these types of DIEs may be needed to
19063    represent certain things in other languages (e.g. Pascal) someday.  */
19064
19065 static void
19066 gen_reference_type_die (tree type, dw_die_ref context_die)
19067 {
19068   dw_die_ref ref_die, scope_die = scope_die_for (type, context_die);
19069
19070   if (TYPE_REF_IS_RVALUE (type) && dwarf_version >= 4)
19071     ref_die = new_die (DW_TAG_rvalue_reference_type, scope_die, type);
19072   else
19073     ref_die = new_die (DW_TAG_reference_type, scope_die, type);
19074
19075   equate_type_number_to_die (type, ref_die);
19076   add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
19077   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
19078 }
19079 #endif
19080
19081 /* Generate a DIE for a pointer to a member type.  */
19082
19083 static void
19084 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
19085 {
19086   dw_die_ref ptr_die
19087     = new_die (DW_TAG_ptr_to_member_type,
19088                scope_die_for (type, context_die), type);
19089
19090   equate_type_number_to_die (type, ptr_die);
19091   add_AT_die_ref (ptr_die, DW_AT_containing_type,
19092                   lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
19093   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
19094 }
19095
19096 /* Generate the DIE for the compilation unit.  */
19097
19098 static dw_die_ref
19099 gen_compile_unit_die (const char *filename)
19100 {
19101   dw_die_ref die;
19102   char producer[250];
19103   const char *language_string = lang_hooks.name;
19104   int language;
19105
19106   die = new_die (DW_TAG_compile_unit, NULL, NULL);
19107
19108   if (filename)
19109     {
19110       add_name_attribute (die, filename);
19111       /* Don't add cwd for <built-in>.  */
19112       if (!IS_ABSOLUTE_PATH (filename) && filename[0] != '<')
19113         add_comp_dir_attribute (die);
19114     }
19115
19116   sprintf (producer, "%s %s", language_string, version_string);
19117
19118 #ifdef MIPS_DEBUGGING_INFO
19119   /* The MIPS/SGI compilers place the 'cc' command line options in the producer
19120      string.  The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
19121      not appear in the producer string, the debugger reaches the conclusion
19122      that the object file is stripped and has no debugging information.
19123      To get the MIPS/SGI debugger to believe that there is debugging
19124      information in the object file, we add a -g to the producer string.  */
19125   if (debug_info_level > DINFO_LEVEL_TERSE)
19126     strcat (producer, " -g");
19127 #endif
19128
19129   add_AT_string (die, DW_AT_producer, producer);
19130
19131   language = DW_LANG_C89;
19132   if (strcmp (language_string, "GNU C++") == 0)
19133     language = DW_LANG_C_plus_plus;
19134   else if (strcmp (language_string, "GNU F77") == 0)
19135     language = DW_LANG_Fortran77;
19136   else if (strcmp (language_string, "GNU Pascal") == 0)
19137     language = DW_LANG_Pascal83;
19138   else if (dwarf_version >= 3 || !dwarf_strict)
19139     {
19140       if (strcmp (language_string, "GNU Ada") == 0)
19141         language = DW_LANG_Ada95;
19142       else if (strcmp (language_string, "GNU Fortran") == 0)
19143         language = DW_LANG_Fortran95;
19144       else if (strcmp (language_string, "GNU Java") == 0)
19145         language = DW_LANG_Java;
19146       else if (strcmp (language_string, "GNU Objective-C") == 0)
19147         language = DW_LANG_ObjC;
19148       else if (strcmp (language_string, "GNU Objective-C++") == 0)
19149         language = DW_LANG_ObjC_plus_plus;
19150     }
19151
19152   add_AT_unsigned (die, DW_AT_language, language);
19153
19154   switch (language)
19155     {
19156     case DW_LANG_Fortran77:
19157     case DW_LANG_Fortran90:
19158     case DW_LANG_Fortran95:
19159       /* Fortran has case insensitive identifiers and the front-end
19160          lowercases everything.  */
19161       add_AT_unsigned (die, DW_AT_identifier_case, DW_ID_down_case);
19162       break;
19163     default:
19164       /* The default DW_ID_case_sensitive doesn't need to be specified.  */
19165       break;
19166     }
19167   return die;
19168 }
19169
19170 /* Generate the DIE for a base class.  */
19171
19172 static void
19173 gen_inheritance_die (tree binfo, tree access, dw_die_ref context_die)
19174 {
19175   dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
19176
19177   add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
19178   add_data_member_location_attribute (die, binfo);
19179
19180   if (BINFO_VIRTUAL_P (binfo))
19181     add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
19182
19183   if (access == access_public_node)
19184     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
19185   else if (access == access_protected_node)
19186     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
19187 }
19188
19189 /* Generate a DIE for a class member.  */
19190
19191 static void
19192 gen_member_die (tree type, dw_die_ref context_die)
19193 {
19194   tree member;
19195   tree binfo = TYPE_BINFO (type);
19196   dw_die_ref child;
19197
19198   /* If this is not an incomplete type, output descriptions of each of its
19199      members. Note that as we output the DIEs necessary to represent the
19200      members of this record or union type, we will also be trying to output
19201      DIEs to represent the *types* of those members. However the `type'
19202      function (above) will specifically avoid generating type DIEs for member
19203      types *within* the list of member DIEs for this (containing) type except
19204      for those types (of members) which are explicitly marked as also being
19205      members of this (containing) type themselves.  The g++ front- end can
19206      force any given type to be treated as a member of some other (containing)
19207      type by setting the TYPE_CONTEXT of the given (member) type to point to
19208      the TREE node representing the appropriate (containing) type.  */
19209
19210   /* First output info about the base classes.  */
19211   if (binfo)
19212     {
19213       VEC(tree,gc) *accesses = BINFO_BASE_ACCESSES (binfo);
19214       int i;
19215       tree base;
19216
19217       for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
19218         gen_inheritance_die (base,
19219                              (accesses ? VEC_index (tree, accesses, i)
19220                               : access_public_node), context_die);
19221     }
19222
19223   /* Now output info about the data members and type members.  */
19224   for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
19225     {
19226       /* If we thought we were generating minimal debug info for TYPE
19227          and then changed our minds, some of the member declarations
19228          may have already been defined.  Don't define them again, but
19229          do put them in the right order.  */
19230
19231       child = lookup_decl_die (member);
19232       if (child)
19233         splice_child_die (context_die, child);
19234       else
19235         gen_decl_die (member, NULL, context_die);
19236     }
19237
19238   /* Now output info about the function members (if any).  */
19239   for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
19240     {
19241       /* Don't include clones in the member list.  */
19242       if (DECL_ABSTRACT_ORIGIN (member))
19243         continue;
19244
19245       child = lookup_decl_die (member);
19246       if (child)
19247         splice_child_die (context_die, child);
19248       else
19249         gen_decl_die (member, NULL, context_die);
19250     }
19251 }
19252
19253 /* Generate a DIE for a structure or union type.  If TYPE_DECL_SUPPRESS_DEBUG
19254    is set, we pretend that the type was never defined, so we only get the
19255    member DIEs needed by later specification DIEs.  */
19256
19257 static void
19258 gen_struct_or_union_type_die (tree type, dw_die_ref context_die,
19259                                 enum debug_info_usage usage)
19260 {
19261   dw_die_ref type_die = lookup_type_die (type);
19262   dw_die_ref scope_die = 0;
19263   int nested = 0;
19264   int complete = (TYPE_SIZE (type)
19265                   && (! TYPE_STUB_DECL (type)
19266                       || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
19267   int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
19268   complete = complete && should_emit_struct_debug (type, usage);
19269
19270   if (type_die && ! complete)
19271     return;
19272
19273   if (TYPE_CONTEXT (type) != NULL_TREE
19274       && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
19275           || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
19276     nested = 1;
19277
19278   scope_die = scope_die_for (type, context_die);
19279
19280   if (! type_die || (nested && scope_die == comp_unit_die))
19281     /* First occurrence of type or toplevel definition of nested class.  */
19282     {
19283       dw_die_ref old_die = type_die;
19284
19285       type_die = new_die (TREE_CODE (type) == RECORD_TYPE
19286                           ? record_type_tag (type) : DW_TAG_union_type,
19287                           scope_die, type);
19288       equate_type_number_to_die (type, type_die);
19289       if (old_die)
19290         add_AT_specification (type_die, old_die);
19291       else
19292         add_name_attribute (type_die, type_tag (type));
19293     }
19294   else
19295     remove_AT (type_die, DW_AT_declaration);
19296
19297   /* Generate child dies for template paramaters.  */
19298   if (debug_info_level > DINFO_LEVEL_TERSE
19299       && COMPLETE_TYPE_P (type))
19300     gen_generic_params_dies (type);
19301
19302   /* If this type has been completed, then give it a byte_size attribute and
19303      then give a list of members.  */
19304   if (complete && !ns_decl)
19305     {
19306       /* Prevent infinite recursion in cases where the type of some member of
19307          this type is expressed in terms of this type itself.  */
19308       TREE_ASM_WRITTEN (type) = 1;
19309       add_byte_size_attribute (type_die, type);
19310       if (TYPE_STUB_DECL (type) != NULL_TREE)
19311         add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
19312
19313       /* If the first reference to this type was as the return type of an
19314          inline function, then it may not have a parent.  Fix this now.  */
19315       if (type_die->die_parent == NULL)
19316         add_child_die (scope_die, type_die);
19317
19318       push_decl_scope (type);
19319       gen_member_die (type, type_die);
19320       pop_decl_scope ();
19321
19322       /* GNU extension: Record what type our vtable lives in.  */
19323       if (TYPE_VFIELD (type))
19324         {
19325           tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
19326
19327           gen_type_die (vtype, context_die);
19328           add_AT_die_ref (type_die, DW_AT_containing_type,
19329                           lookup_type_die (vtype));
19330         }
19331     }
19332   else
19333     {
19334       add_AT_flag (type_die, DW_AT_declaration, 1);
19335
19336       /* We don't need to do this for function-local types.  */
19337       if (TYPE_STUB_DECL (type)
19338           && ! decl_function_context (TYPE_STUB_DECL (type)))
19339         VEC_safe_push (tree, gc, incomplete_types, type);
19340     }
19341
19342   if (get_AT (type_die, DW_AT_name))
19343     add_pubtype (type, type_die);
19344 }
19345
19346 /* Generate a DIE for a subroutine _type_.  */
19347
19348 static void
19349 gen_subroutine_type_die (tree type, dw_die_ref context_die)
19350 {
19351   tree return_type = TREE_TYPE (type);
19352   dw_die_ref subr_die
19353     = new_die (DW_TAG_subroutine_type,
19354                scope_die_for (type, context_die), type);
19355
19356   equate_type_number_to_die (type, subr_die);
19357   add_prototyped_attribute (subr_die, type);
19358   add_type_attribute (subr_die, return_type, 0, 0, context_die);
19359   gen_formal_types_die (type, subr_die);
19360
19361   if (get_AT (subr_die, DW_AT_name))
19362     add_pubtype (type, subr_die);
19363 }
19364
19365 /* Generate a DIE for a type definition.  */
19366
19367 static void
19368 gen_typedef_die (tree decl, dw_die_ref context_die)
19369 {
19370   dw_die_ref type_die;
19371   tree origin;
19372
19373   if (TREE_ASM_WRITTEN (decl))
19374     return;
19375
19376   TREE_ASM_WRITTEN (decl) = 1;
19377   type_die = new_die (DW_TAG_typedef, context_die, decl);
19378   origin = decl_ultimate_origin (decl);
19379   if (origin != NULL)
19380     add_abstract_origin_attribute (type_die, origin);
19381   else
19382     {
19383       tree type;
19384
19385       add_name_and_src_coords_attributes (type_die, decl);
19386       if (DECL_ORIGINAL_TYPE (decl))
19387         {
19388           type = DECL_ORIGINAL_TYPE (decl);
19389
19390           gcc_assert (type != TREE_TYPE (decl));
19391           equate_type_number_to_die (TREE_TYPE (decl), type_die);
19392         }
19393       else
19394         type = TREE_TYPE (decl);
19395
19396       add_type_attribute (type_die, type, TREE_READONLY (decl),
19397                           TREE_THIS_VOLATILE (decl), context_die);
19398     }
19399
19400   if (DECL_ABSTRACT (decl))
19401     equate_decl_number_to_die (decl, type_die);
19402
19403   if (get_AT (type_die, DW_AT_name))
19404     add_pubtype (decl, type_die);
19405 }
19406
19407 /* Generate a type description DIE.  */
19408
19409 static void
19410 gen_type_die_with_usage (tree type, dw_die_ref context_die,
19411                                 enum debug_info_usage usage)
19412 {
19413   int need_pop;
19414   struct array_descr_info info;
19415
19416   if (type == NULL_TREE || type == error_mark_node)
19417     return;
19418
19419   /* If TYPE is a typedef type variant, let's generate debug info
19420      for the parent typedef which TYPE is a type of.  */
19421   if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
19422       && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
19423     {
19424       if (TREE_ASM_WRITTEN (type))
19425         return;
19426
19427       /* Prevent broken recursion; we can't hand off to the same type.  */
19428       gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type)) != type);
19429
19430       /* Use the DIE of the containing namespace as the parent DIE of
19431          the type description DIE we want to generate.  */
19432       if (DECL_CONTEXT (TYPE_NAME (type))
19433           && TREE_CODE (DECL_CONTEXT (TYPE_NAME (type))) == NAMESPACE_DECL)
19434         context_die = get_context_die (DECL_CONTEXT (TYPE_NAME (type)));
19435
19436       TREE_ASM_WRITTEN (type) = 1;
19437       gen_decl_die (TYPE_NAME (type), NULL, context_die);
19438       return;
19439     }
19440
19441   /* If this is an array type with hidden descriptor, handle it first.  */
19442   if (!TREE_ASM_WRITTEN (type)
19443       && lang_hooks.types.get_array_descr_info
19444       && lang_hooks.types.get_array_descr_info (type, &info)
19445       && (dwarf_version >= 3 || !dwarf_strict))
19446     {
19447       gen_descr_array_type_die (type, &info, context_die);
19448       TREE_ASM_WRITTEN (type) = 1;
19449       return;
19450     }
19451
19452   /* We are going to output a DIE to represent the unqualified version
19453      of this type (i.e. without any const or volatile qualifiers) so
19454      get the main variant (i.e. the unqualified version) of this type
19455      now.  (Vectors are special because the debugging info is in the
19456      cloned type itself).  */
19457   if (TREE_CODE (type) != VECTOR_TYPE)
19458     type = type_main_variant (type);
19459
19460   if (TREE_ASM_WRITTEN (type))
19461     return;
19462
19463   switch (TREE_CODE (type))
19464     {
19465     case ERROR_MARK:
19466       break;
19467
19468     case POINTER_TYPE:
19469     case REFERENCE_TYPE:
19470       /* We must set TREE_ASM_WRITTEN in case this is a recursive type.  This
19471          ensures that the gen_type_die recursion will terminate even if the
19472          type is recursive.  Recursive types are possible in Ada.  */
19473       /* ??? We could perhaps do this for all types before the switch
19474          statement.  */
19475       TREE_ASM_WRITTEN (type) = 1;
19476
19477       /* For these types, all that is required is that we output a DIE (or a
19478          set of DIEs) to represent the "basis" type.  */
19479       gen_type_die_with_usage (TREE_TYPE (type), context_die,
19480                                 DINFO_USAGE_IND_USE);
19481       break;
19482
19483     case OFFSET_TYPE:
19484       /* This code is used for C++ pointer-to-data-member types.
19485          Output a description of the relevant class type.  */
19486       gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type), context_die,
19487                                         DINFO_USAGE_IND_USE);
19488
19489       /* Output a description of the type of the object pointed to.  */
19490       gen_type_die_with_usage (TREE_TYPE (type), context_die,
19491                                         DINFO_USAGE_IND_USE);
19492
19493       /* Now output a DIE to represent this pointer-to-data-member type
19494          itself.  */
19495       gen_ptr_to_mbr_type_die (type, context_die);
19496       break;
19497
19498     case FUNCTION_TYPE:
19499       /* Force out return type (in case it wasn't forced out already).  */
19500       gen_type_die_with_usage (TREE_TYPE (type), context_die,
19501                                         DINFO_USAGE_DIR_USE);
19502       gen_subroutine_type_die (type, context_die);
19503       break;
19504
19505     case METHOD_TYPE:
19506       /* Force out return type (in case it wasn't forced out already).  */
19507       gen_type_die_with_usage (TREE_TYPE (type), context_die,
19508                                         DINFO_USAGE_DIR_USE);
19509       gen_subroutine_type_die (type, context_die);
19510       break;
19511
19512     case ARRAY_TYPE:
19513       gen_array_type_die (type, context_die);
19514       break;
19515
19516     case VECTOR_TYPE:
19517       gen_array_type_die (type, context_die);
19518       break;
19519
19520     case ENUMERAL_TYPE:
19521     case RECORD_TYPE:
19522     case UNION_TYPE:
19523     case QUAL_UNION_TYPE:
19524       /* If this is a nested type whose containing class hasn't been written
19525          out yet, writing it out will cover this one, too.  This does not apply
19526          to instantiations of member class templates; they need to be added to
19527          the containing class as they are generated.  FIXME: This hurts the
19528          idea of combining type decls from multiple TUs, since we can't predict
19529          what set of template instantiations we'll get.  */
19530       if (TYPE_CONTEXT (type)
19531           && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
19532           && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
19533         {
19534           gen_type_die_with_usage (TYPE_CONTEXT (type), context_die, usage);
19535
19536           if (TREE_ASM_WRITTEN (type))
19537             return;
19538
19539           /* If that failed, attach ourselves to the stub.  */
19540           push_decl_scope (TYPE_CONTEXT (type));
19541           context_die = lookup_type_die (TYPE_CONTEXT (type));
19542           need_pop = 1;
19543         }
19544       else if (TYPE_CONTEXT (type) != NULL_TREE
19545                && (TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL))
19546         {
19547           /* If this type is local to a function that hasn't been written
19548              out yet, use a NULL context for now; it will be fixed up in
19549              decls_for_scope.  */
19550           context_die = lookup_decl_die (TYPE_CONTEXT (type));
19551           need_pop = 0;
19552         }
19553       else
19554         {
19555           context_die = declare_in_namespace (type, context_die);
19556           need_pop = 0;
19557         }
19558
19559       if (TREE_CODE (type) == ENUMERAL_TYPE)
19560         {
19561           /* This might have been written out by the call to
19562              declare_in_namespace.  */
19563           if (!TREE_ASM_WRITTEN (type))
19564             gen_enumeration_type_die (type, context_die);
19565         }
19566       else
19567         gen_struct_or_union_type_die (type, context_die, usage);
19568
19569       if (need_pop)
19570         pop_decl_scope ();
19571
19572       /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
19573          it up if it is ever completed.  gen_*_type_die will set it for us
19574          when appropriate.  */
19575       return;
19576
19577     case VOID_TYPE:
19578     case INTEGER_TYPE:
19579     case REAL_TYPE:
19580     case FIXED_POINT_TYPE:
19581     case COMPLEX_TYPE:
19582     case BOOLEAN_TYPE:
19583       /* No DIEs needed for fundamental types.  */
19584       break;
19585
19586     case LANG_TYPE:
19587       /* Just use DW_TAG_unspecified_type.  */
19588       {
19589         dw_die_ref type_die = lookup_type_die (type);
19590         if (type_die == NULL)
19591           {
19592             tree name = TYPE_NAME (type);
19593             if (TREE_CODE (name) == TYPE_DECL)
19594               name = DECL_NAME (name);
19595             type_die = new_die (DW_TAG_unspecified_type, comp_unit_die, type);
19596             add_name_attribute (type_die, IDENTIFIER_POINTER (name));
19597             equate_type_number_to_die (type, type_die);
19598           }
19599       }
19600       break;
19601
19602     default:
19603       gcc_unreachable ();
19604     }
19605
19606   TREE_ASM_WRITTEN (type) = 1;
19607 }
19608
19609 static void
19610 gen_type_die (tree type, dw_die_ref context_die)
19611 {
19612   gen_type_die_with_usage (type, context_die, DINFO_USAGE_DIR_USE);
19613 }
19614
19615 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
19616    things which are local to the given block.  */
19617
19618 static void
19619 gen_block_die (tree stmt, dw_die_ref context_die, int depth)
19620 {
19621   int must_output_die = 0;
19622   bool inlined_func;
19623
19624   /* Ignore blocks that are NULL.  */
19625   if (stmt == NULL_TREE)
19626     return;
19627
19628   inlined_func = inlined_function_outer_scope_p (stmt);
19629
19630   /* If the block is one fragment of a non-contiguous block, do not
19631      process the variables, since they will have been done by the
19632      origin block.  Do process subblocks.  */
19633   if (BLOCK_FRAGMENT_ORIGIN (stmt))
19634     {
19635       tree sub;
19636
19637       for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
19638         gen_block_die (sub, context_die, depth + 1);
19639
19640       return;
19641     }
19642
19643   /* Determine if we need to output any Dwarf DIEs at all to represent this
19644      block.  */
19645   if (inlined_func)
19646     /* The outer scopes for inlinings *must* always be represented.  We
19647        generate DW_TAG_inlined_subroutine DIEs for them.  (See below.) */
19648     must_output_die = 1;
19649   else
19650     {
19651       /* Determine if this block directly contains any "significant"
19652          local declarations which we will need to output DIEs for.  */
19653       if (debug_info_level > DINFO_LEVEL_TERSE)
19654         /* We are not in terse mode so *any* local declaration counts
19655            as being a "significant" one.  */
19656         must_output_die = ((BLOCK_VARS (stmt) != NULL
19657                             || BLOCK_NUM_NONLOCALIZED_VARS (stmt))
19658                            && (TREE_USED (stmt)
19659                                || TREE_ASM_WRITTEN (stmt)
19660                                || BLOCK_ABSTRACT (stmt)));
19661       else if ((TREE_USED (stmt)
19662                 || TREE_ASM_WRITTEN (stmt)
19663                 || BLOCK_ABSTRACT (stmt))
19664                && !dwarf2out_ignore_block (stmt))
19665         must_output_die = 1;
19666     }
19667
19668   /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
19669      DIE for any block which contains no significant local declarations at
19670      all.  Rather, in such cases we just call `decls_for_scope' so that any
19671      needed Dwarf info for any sub-blocks will get properly generated. Note
19672      that in terse mode, our definition of what constitutes a "significant"
19673      local declaration gets restricted to include only inlined function
19674      instances and local (nested) function definitions.  */
19675   if (must_output_die)
19676     {
19677       if (inlined_func)
19678         {
19679           /* If STMT block is abstract, that means we have been called
19680              indirectly from dwarf2out_abstract_function.
19681              That function rightfully marks the descendent blocks (of
19682              the abstract function it is dealing with) as being abstract,
19683              precisely to prevent us from emitting any
19684              DW_TAG_inlined_subroutine DIE as a descendent
19685              of an abstract function instance. So in that case, we should
19686              not call gen_inlined_subroutine_die.
19687
19688              Later though, when cgraph asks dwarf2out to emit info
19689              for the concrete instance of the function decl into which
19690              the concrete instance of STMT got inlined, the later will lead
19691              to the generation of a DW_TAG_inlined_subroutine DIE.  */
19692           if (! BLOCK_ABSTRACT (stmt))
19693             gen_inlined_subroutine_die (stmt, context_die, depth);
19694         }
19695       else
19696         gen_lexical_block_die (stmt, context_die, depth);
19697     }
19698   else
19699     decls_for_scope (stmt, context_die, depth);
19700 }
19701
19702 /* Process variable DECL (or variable with origin ORIGIN) within
19703    block STMT and add it to CONTEXT_DIE.  */
19704 static void
19705 process_scope_var (tree stmt, tree decl, tree origin, dw_die_ref context_die)
19706 {
19707   dw_die_ref die;
19708   tree decl_or_origin = decl ? decl : origin;
19709
19710   if (TREE_CODE (decl_or_origin) == FUNCTION_DECL)
19711     die = lookup_decl_die (decl_or_origin);
19712   else if (TREE_CODE (decl_or_origin) == TYPE_DECL
19713            && TYPE_DECL_IS_STUB (decl_or_origin))
19714     die = lookup_type_die (TREE_TYPE (decl_or_origin));
19715   else
19716     die = NULL;
19717
19718   if (die != NULL && die->die_parent == NULL)
19719     add_child_die (context_die, die);
19720   else if (TREE_CODE (decl_or_origin) == IMPORTED_DECL)
19721     dwarf2out_imported_module_or_decl_1 (decl_or_origin, DECL_NAME (decl_or_origin),
19722                                          stmt, context_die);
19723   else
19724     gen_decl_die (decl, origin, context_die);
19725 }
19726
19727 /* Generate all of the decls declared within a given scope and (recursively)
19728    all of its sub-blocks.  */
19729
19730 static void
19731 decls_for_scope (tree stmt, dw_die_ref context_die, int depth)
19732 {
19733   tree decl;
19734   unsigned int i;
19735   tree subblocks;
19736
19737   /* Ignore NULL blocks.  */
19738   if (stmt == NULL_TREE)
19739     return;
19740
19741   /* Output the DIEs to represent all of the data objects and typedefs
19742      declared directly within this block but not within any nested
19743      sub-blocks.  Also, nested function and tag DIEs have been
19744      generated with a parent of NULL; fix that up now.  */
19745   for (decl = BLOCK_VARS (stmt); decl != NULL; decl = TREE_CHAIN (decl))
19746     process_scope_var (stmt, decl, NULL_TREE, context_die);
19747   for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (stmt); i++)
19748     process_scope_var (stmt, NULL, BLOCK_NONLOCALIZED_VAR (stmt, i),
19749                        context_die);
19750
19751   /* If we're at -g1, we're not interested in subblocks.  */
19752   if (debug_info_level <= DINFO_LEVEL_TERSE)
19753     return;
19754
19755   /* Output the DIEs to represent all sub-blocks (and the items declared
19756      therein) of this block.  */
19757   for (subblocks = BLOCK_SUBBLOCKS (stmt);
19758        subblocks != NULL;
19759        subblocks = BLOCK_CHAIN (subblocks))
19760     gen_block_die (subblocks, context_die, depth + 1);
19761 }
19762
19763 /* Is this a typedef we can avoid emitting?  */
19764
19765 static inline int
19766 is_redundant_typedef (const_tree decl)
19767 {
19768   if (TYPE_DECL_IS_STUB (decl))
19769     return 1;
19770
19771   if (DECL_ARTIFICIAL (decl)
19772       && DECL_CONTEXT (decl)
19773       && is_tagged_type (DECL_CONTEXT (decl))
19774       && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
19775       && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
19776     /* Also ignore the artificial member typedef for the class name.  */
19777     return 1;
19778
19779   return 0;
19780 }
19781
19782 /* Returns the DIE for a context.  */
19783
19784 static inline dw_die_ref
19785 get_context_die (tree context)
19786 {
19787   if (context)
19788     {
19789       /* Find die that represents this context.  */
19790       if (TYPE_P (context))
19791         return force_type_die (TYPE_MAIN_VARIANT (context));
19792       else
19793         return force_decl_die (context);
19794     }
19795   return comp_unit_die;
19796 }
19797
19798 /* Returns the DIE for decl.  A DIE will always be returned.  */
19799
19800 static dw_die_ref
19801 force_decl_die (tree decl)
19802 {
19803   dw_die_ref decl_die;
19804   unsigned saved_external_flag;
19805   tree save_fn = NULL_TREE;
19806   decl_die = lookup_decl_die (decl);
19807   if (!decl_die)
19808     {
19809       dw_die_ref context_die = get_context_die (DECL_CONTEXT (decl));
19810
19811       decl_die = lookup_decl_die (decl);
19812       if (decl_die)
19813         return decl_die;
19814
19815       switch (TREE_CODE (decl))
19816         {
19817         case FUNCTION_DECL:
19818           /* Clear current_function_decl, so that gen_subprogram_die thinks
19819              that this is a declaration. At this point, we just want to force
19820              declaration die.  */
19821           save_fn = current_function_decl;
19822           current_function_decl = NULL_TREE;
19823           gen_subprogram_die (decl, context_die);
19824           current_function_decl = save_fn;
19825           break;
19826
19827         case VAR_DECL:
19828           /* Set external flag to force declaration die. Restore it after
19829            gen_decl_die() call.  */
19830           saved_external_flag = DECL_EXTERNAL (decl);
19831           DECL_EXTERNAL (decl) = 1;
19832           gen_decl_die (decl, NULL, context_die);
19833           DECL_EXTERNAL (decl) = saved_external_flag;
19834           break;
19835
19836         case NAMESPACE_DECL:
19837           if (dwarf_version >= 3 || !dwarf_strict)
19838             dwarf2out_decl (decl);
19839           else
19840             /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace.  */
19841             decl_die = comp_unit_die;
19842           break;
19843
19844         default:
19845           gcc_unreachable ();
19846         }
19847
19848       /* We should be able to find the DIE now.  */
19849       if (!decl_die)
19850         decl_die = lookup_decl_die (decl);
19851       gcc_assert (decl_die);
19852     }
19853
19854   return decl_die;
19855 }
19856
19857 /* Returns the DIE for TYPE, that must not be a base type.  A DIE is
19858    always returned.  */
19859
19860 static dw_die_ref
19861 force_type_die (tree type)
19862 {
19863   dw_die_ref type_die;
19864
19865   type_die = lookup_type_die (type);
19866   if (!type_die)
19867     {
19868       dw_die_ref context_die = get_context_die (TYPE_CONTEXT (type));
19869
19870       type_die = modified_type_die (type, TYPE_READONLY (type),
19871                                     TYPE_VOLATILE (type), context_die);
19872       gcc_assert (type_die);
19873     }
19874   return type_die;
19875 }
19876
19877 /* Force out any required namespaces to be able to output DECL,
19878    and return the new context_die for it, if it's changed.  */
19879
19880 static dw_die_ref
19881 setup_namespace_context (tree thing, dw_die_ref context_die)
19882 {
19883   tree context = (DECL_P (thing)
19884                   ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
19885   if (context && TREE_CODE (context) == NAMESPACE_DECL)
19886     /* Force out the namespace.  */
19887     context_die = force_decl_die (context);
19888
19889   return context_die;
19890 }
19891
19892 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
19893    type) within its namespace, if appropriate.
19894
19895    For compatibility with older debuggers, namespace DIEs only contain
19896    declarations; all definitions are emitted at CU scope.  */
19897
19898 static dw_die_ref
19899 declare_in_namespace (tree thing, dw_die_ref context_die)
19900 {
19901   dw_die_ref ns_context;
19902
19903   if (debug_info_level <= DINFO_LEVEL_TERSE)
19904     return context_die;
19905
19906   /* If this decl is from an inlined function, then don't try to emit it in its
19907      namespace, as we will get confused.  It would have already been emitted
19908      when the abstract instance of the inline function was emitted anyways.  */
19909   if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
19910     return context_die;
19911
19912   ns_context = setup_namespace_context (thing, context_die);
19913
19914   if (ns_context != context_die)
19915     {
19916       if (is_fortran ())
19917         return ns_context;
19918       if (DECL_P (thing))
19919         gen_decl_die (thing, NULL, ns_context);
19920       else
19921         gen_type_die (thing, ns_context);
19922     }
19923   return context_die;
19924 }
19925
19926 /* Generate a DIE for a namespace or namespace alias.  */
19927
19928 static void
19929 gen_namespace_die (tree decl, dw_die_ref context_die)
19930 {
19931   dw_die_ref namespace_die;
19932
19933   /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
19934      they are an alias of.  */
19935   if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
19936     {
19937       /* Output a real namespace or module.  */
19938       context_die = setup_namespace_context (decl, comp_unit_die);
19939       namespace_die = new_die (is_fortran ()
19940                                ? DW_TAG_module : DW_TAG_namespace,
19941                                context_die, decl);
19942       /* For Fortran modules defined in different CU don't add src coords.  */
19943       if (namespace_die->die_tag == DW_TAG_module && DECL_EXTERNAL (decl))
19944         {
19945           const char *name = dwarf2_name (decl, 0);
19946           if (name)
19947             add_name_attribute (namespace_die, name);
19948         }
19949       else
19950         add_name_and_src_coords_attributes (namespace_die, decl);
19951       if (DECL_EXTERNAL (decl))
19952         add_AT_flag (namespace_die, DW_AT_declaration, 1);
19953       equate_decl_number_to_die (decl, namespace_die);
19954     }
19955   else
19956     {
19957       /* Output a namespace alias.  */
19958
19959       /* Force out the namespace we are an alias of, if necessary.  */
19960       dw_die_ref origin_die
19961         = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
19962
19963       if (DECL_CONTEXT (decl) == NULL_TREE
19964           || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
19965         context_die = setup_namespace_context (decl, comp_unit_die);
19966       /* Now create the namespace alias DIE.  */
19967       namespace_die = new_die (DW_TAG_imported_declaration, context_die, decl);
19968       add_name_and_src_coords_attributes (namespace_die, decl);
19969       add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
19970       equate_decl_number_to_die (decl, namespace_die);
19971     }
19972 }
19973
19974 /* Generate Dwarf debug information for a decl described by DECL.  */
19975
19976 static void
19977 gen_decl_die (tree decl, tree origin, dw_die_ref context_die)
19978 {
19979   tree decl_or_origin = decl ? decl : origin;
19980   tree class_origin = NULL, ultimate_origin;
19981
19982   if (DECL_P (decl_or_origin) && DECL_IGNORED_P (decl_or_origin))
19983     return;
19984
19985   switch (TREE_CODE (decl_or_origin))
19986     {
19987     case ERROR_MARK:
19988       break;
19989
19990     case CONST_DECL:
19991       if (!is_fortran ())
19992         {
19993           /* The individual enumerators of an enum type get output when we output
19994              the Dwarf representation of the relevant enum type itself.  */
19995           break;
19996         }
19997
19998       /* Emit its type.  */
19999       gen_type_die (TREE_TYPE (decl), context_die);
20000
20001       /* And its containing namespace.  */
20002       context_die = declare_in_namespace (decl, context_die);
20003
20004       gen_const_die (decl, context_die);
20005       break;
20006
20007     case FUNCTION_DECL:
20008       /* Don't output any DIEs to represent mere function declarations,
20009          unless they are class members or explicit block externs.  */
20010       if (DECL_INITIAL (decl_or_origin) == NULL_TREE
20011           && DECL_CONTEXT (decl_or_origin) == NULL_TREE
20012           && (current_function_decl == NULL_TREE
20013               || DECL_ARTIFICIAL (decl_or_origin)))
20014         break;
20015
20016 #if 0
20017       /* FIXME */
20018       /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
20019          on local redeclarations of global functions.  That seems broken.  */
20020       if (current_function_decl != decl)
20021         /* This is only a declaration.  */;
20022 #endif
20023
20024       /* If we're emitting a clone, emit info for the abstract instance.  */
20025       if (origin || DECL_ORIGIN (decl) != decl)
20026         dwarf2out_abstract_function (origin
20027                                      ? DECL_ORIGIN (origin)
20028                                      : DECL_ABSTRACT_ORIGIN (decl));
20029
20030       /* If we're emitting an out-of-line copy of an inline function,
20031          emit info for the abstract instance and set up to refer to it.  */
20032       else if (cgraph_function_possibly_inlined_p (decl)
20033                && ! DECL_ABSTRACT (decl)
20034                && ! class_or_namespace_scope_p (context_die)
20035                /* dwarf2out_abstract_function won't emit a die if this is just
20036                   a declaration.  We must avoid setting DECL_ABSTRACT_ORIGIN in
20037                   that case, because that works only if we have a die.  */
20038                && DECL_INITIAL (decl) != NULL_TREE)
20039         {
20040           dwarf2out_abstract_function (decl);
20041           set_decl_origin_self (decl);
20042         }
20043
20044       /* Otherwise we're emitting the primary DIE for this decl.  */
20045       else if (debug_info_level > DINFO_LEVEL_TERSE)
20046         {
20047           /* Before we describe the FUNCTION_DECL itself, make sure that we
20048              have described its return type.  */
20049           gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
20050
20051           /* And its virtual context.  */
20052           if (DECL_VINDEX (decl) != NULL_TREE)
20053             gen_type_die (DECL_CONTEXT (decl), context_die);
20054
20055           /* And its containing type.  */
20056           if (!origin)
20057             origin = decl_class_context (decl);
20058           if (origin != NULL_TREE)
20059             gen_type_die_for_member (origin, decl, context_die);
20060
20061           /* And its containing namespace.  */
20062           context_die = declare_in_namespace (decl, context_die);
20063         }
20064
20065       /* Now output a DIE to represent the function itself.  */
20066       if (decl)
20067         gen_subprogram_die (decl, context_die);
20068       break;
20069
20070     case TYPE_DECL:
20071       /* If we are in terse mode, don't generate any DIEs to represent any
20072          actual typedefs.  */
20073       if (debug_info_level <= DINFO_LEVEL_TERSE)
20074         break;
20075
20076       /* In the special case of a TYPE_DECL node representing the declaration
20077          of some type tag, if the given TYPE_DECL is marked as having been
20078          instantiated from some other (original) TYPE_DECL node (e.g. one which
20079          was generated within the original definition of an inline function) we
20080          used to generate a special (abbreviated) DW_TAG_structure_type,
20081          DW_TAG_union_type, or DW_TAG_enumeration_type DIE here.  But nothing
20082          should be actually referencing those DIEs, as variable DIEs with that
20083          type would be emitted already in the abstract origin, so it was always
20084          removed during unused type prunning.  Don't add anything in this
20085          case.  */
20086       if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
20087         break;
20088
20089       if (is_redundant_typedef (decl))
20090         gen_type_die (TREE_TYPE (decl), context_die);
20091       else
20092         /* Output a DIE to represent the typedef itself.  */
20093         gen_typedef_die (decl, context_die);
20094       break;
20095
20096     case LABEL_DECL:
20097       if (debug_info_level >= DINFO_LEVEL_NORMAL)
20098         gen_label_die (decl, context_die);
20099       break;
20100
20101     case VAR_DECL:
20102     case RESULT_DECL:
20103       /* If we are in terse mode, don't generate any DIEs to represent any
20104          variable declarations or definitions.  */
20105       if (debug_info_level <= DINFO_LEVEL_TERSE)
20106         break;
20107
20108       /* Output any DIEs that are needed to specify the type of this data
20109          object.  */
20110       if (decl_by_reference_p (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
20115       /* And its containing type.  */
20116       class_origin = decl_class_context (decl_or_origin);
20117       if (class_origin != NULL_TREE)
20118         gen_type_die_for_member (class_origin, decl_or_origin, context_die);
20119
20120       /* And its containing namespace.  */
20121       context_die = declare_in_namespace (decl_or_origin, context_die);
20122
20123       /* Now output the DIE to represent the data object itself.  This gets
20124          complicated because of the possibility that the VAR_DECL really
20125          represents an inlined instance of a formal parameter for an inline
20126          function.  */
20127       ultimate_origin = decl_ultimate_origin (decl_or_origin);
20128       if (ultimate_origin != NULL_TREE
20129           && TREE_CODE (ultimate_origin) == PARM_DECL)
20130         gen_formal_parameter_die (decl, origin,
20131                                   true /* Emit name attribute.  */,
20132                                   context_die);
20133       else
20134         gen_variable_die (decl, origin, context_die);
20135       break;
20136
20137     case FIELD_DECL:
20138       /* Ignore the nameless fields that are used to skip bits but handle C++
20139          anonymous unions and structs.  */
20140       if (DECL_NAME (decl) != NULL_TREE
20141           || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
20142           || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
20143         {
20144           gen_type_die (member_declared_type (decl), context_die);
20145           gen_field_die (decl, context_die);
20146         }
20147       break;
20148
20149     case PARM_DECL:
20150       if (DECL_BY_REFERENCE (decl_or_origin))
20151         gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
20152       else
20153         gen_type_die (TREE_TYPE (decl_or_origin), context_die);
20154       gen_formal_parameter_die (decl, origin,
20155                                 true /* Emit name attribute.  */,
20156                                 context_die);
20157       break;
20158
20159     case NAMESPACE_DECL:
20160     case IMPORTED_DECL:
20161       if (dwarf_version >= 3 || !dwarf_strict)
20162         gen_namespace_die (decl, context_die);
20163       break;
20164
20165     default:
20166       /* Probably some frontend-internal decl.  Assume we don't care.  */
20167       gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
20168       break;
20169     }
20170 }
20171 \f
20172 /* Output debug information for global decl DECL.  Called from toplev.c after
20173    compilation proper has finished.  */
20174
20175 static void
20176 dwarf2out_global_decl (tree decl)
20177 {
20178   /* Output DWARF2 information for file-scope tentative data object
20179      declarations, file-scope (extern) function declarations (which
20180      had no corresponding body) and file-scope tagged type declarations
20181      and definitions which have not yet been forced out.  */
20182   if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
20183     dwarf2out_decl (decl);
20184 }
20185
20186 /* Output debug information for type decl DECL.  Called from toplev.c
20187    and from language front ends (to record built-in types).  */
20188 static void
20189 dwarf2out_type_decl (tree decl, int local)
20190 {
20191   if (!local)
20192     dwarf2out_decl (decl);
20193 }
20194
20195 /* Output debug information for imported module or decl DECL.
20196    NAME is non-NULL name in the lexical block if the decl has been renamed.
20197    LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
20198    that DECL belongs to.
20199    LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK.  */
20200 static void
20201 dwarf2out_imported_module_or_decl_1 (tree decl,
20202                                      tree name,
20203                                      tree lexical_block,
20204                                      dw_die_ref lexical_block_die)
20205 {
20206   expanded_location xloc;
20207   dw_die_ref imported_die = NULL;
20208   dw_die_ref at_import_die;
20209
20210   if (TREE_CODE (decl) == IMPORTED_DECL)
20211     {
20212       xloc = expand_location (DECL_SOURCE_LOCATION (decl));
20213       decl = IMPORTED_DECL_ASSOCIATED_DECL (decl);
20214       gcc_assert (decl);
20215     }
20216   else
20217     xloc = expand_location (input_location);
20218
20219   if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
20220     {
20221       at_import_die = force_type_die (TREE_TYPE (decl));
20222       /* For namespace N { typedef void T; } using N::T; base_type_die
20223          returns NULL, but DW_TAG_imported_declaration requires
20224          the DW_AT_import tag.  Force creation of DW_TAG_typedef.  */
20225       if (!at_import_die)
20226         {
20227           gcc_assert (TREE_CODE (decl) == TYPE_DECL);
20228           gen_typedef_die (decl, get_context_die (DECL_CONTEXT (decl)));
20229           at_import_die = lookup_type_die (TREE_TYPE (decl));
20230           gcc_assert (at_import_die);
20231         }
20232     }
20233   else
20234     {
20235       at_import_die = lookup_decl_die (decl);
20236       if (!at_import_die)
20237         {
20238           /* If we're trying to avoid duplicate debug info, we may not have
20239              emitted the member decl for this field.  Emit it now.  */
20240           if (TREE_CODE (decl) == FIELD_DECL)
20241             {
20242               tree type = DECL_CONTEXT (decl);
20243
20244               if (TYPE_CONTEXT (type)
20245                   && TYPE_P (TYPE_CONTEXT (type))
20246                   && !should_emit_struct_debug (TYPE_CONTEXT (type),
20247                                                 DINFO_USAGE_DIR_USE))
20248                 return;
20249               gen_type_die_for_member (type, decl,
20250                                        get_context_die (TYPE_CONTEXT (type)));
20251             }
20252           at_import_die = force_decl_die (decl);
20253         }
20254     }
20255
20256   if (TREE_CODE (decl) == NAMESPACE_DECL)
20257     {
20258       if (dwarf_version >= 3 || !dwarf_strict)
20259         imported_die = new_die (DW_TAG_imported_module,
20260                                 lexical_block_die,
20261                                 lexical_block);
20262       else
20263         return;
20264     }
20265   else
20266     imported_die = new_die (DW_TAG_imported_declaration,
20267                             lexical_block_die,
20268                             lexical_block);
20269
20270   add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
20271   add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
20272   if (name)
20273     add_AT_string (imported_die, DW_AT_name,
20274                    IDENTIFIER_POINTER (name));
20275   add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
20276 }
20277
20278 /* Output debug information for imported module or decl DECL.
20279    NAME is non-NULL name in context if the decl has been renamed.
20280    CHILD is true if decl is one of the renamed decls as part of
20281    importing whole module.  */
20282
20283 static void
20284 dwarf2out_imported_module_or_decl (tree decl, tree name, tree context,
20285                                    bool child)
20286 {
20287   /* dw_die_ref at_import_die;  */
20288   dw_die_ref scope_die;
20289
20290   if (debug_info_level <= DINFO_LEVEL_TERSE)
20291     return;
20292
20293   gcc_assert (decl);
20294
20295   /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
20296      We need decl DIE for reference and scope die. First, get DIE for the decl
20297      itself.  */
20298
20299   /* Get the scope die for decl context. Use comp_unit_die for global module
20300      or decl. If die is not found for non globals, force new die.  */
20301   if (context
20302       && TYPE_P (context)
20303       && !should_emit_struct_debug (context, DINFO_USAGE_DIR_USE))
20304     return;
20305
20306   if (!(dwarf_version >= 3 || !dwarf_strict))
20307     return;
20308
20309   scope_die = get_context_die (context);
20310
20311   if (child)
20312     {
20313       gcc_assert (scope_die->die_child);
20314       gcc_assert (scope_die->die_child->die_tag == DW_TAG_imported_module);
20315       gcc_assert (TREE_CODE (decl) != NAMESPACE_DECL);
20316       scope_die = scope_die->die_child;
20317     }
20318
20319   /* OK, now we have DIEs for decl as well as scope. Emit imported die.  */
20320   dwarf2out_imported_module_or_decl_1 (decl, name, context, scope_die);
20321
20322 }
20323
20324 /* Write the debugging output for DECL.  */
20325
20326 void
20327 dwarf2out_decl (tree decl)
20328 {
20329   dw_die_ref context_die = comp_unit_die;
20330
20331   switch (TREE_CODE (decl))
20332     {
20333     case ERROR_MARK:
20334       return;
20335
20336     case FUNCTION_DECL:
20337       /* What we would really like to do here is to filter out all mere
20338          file-scope declarations of file-scope functions which are never
20339          referenced later within this translation unit (and keep all of ones
20340          that *are* referenced later on) but we aren't clairvoyant, so we have
20341          no idea which functions will be referenced in the future (i.e. later
20342          on within the current translation unit). So here we just ignore all
20343          file-scope function declarations which are not also definitions.  If
20344          and when the debugger needs to know something about these functions,
20345          it will have to hunt around and find the DWARF information associated
20346          with the definition of the function.
20347
20348          We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
20349          nodes represent definitions and which ones represent mere
20350          declarations.  We have to check DECL_INITIAL instead. That's because
20351          the C front-end supports some weird semantics for "extern inline"
20352          function definitions.  These can get inlined within the current
20353          translation unit (and thus, we need to generate Dwarf info for their
20354          abstract instances so that the Dwarf info for the concrete inlined
20355          instances can have something to refer to) but the compiler never
20356          generates any out-of-lines instances of such things (despite the fact
20357          that they *are* definitions).
20358
20359          The important point is that the C front-end marks these "extern
20360          inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
20361          them anyway. Note that the C++ front-end also plays some similar games
20362          for inline function definitions appearing within include files which
20363          also contain `#pragma interface' pragmas.  */
20364       if (DECL_INITIAL (decl) == NULL_TREE)
20365         return;
20366
20367       /* If we're a nested function, initially use a parent of NULL; if we're
20368          a plain function, this will be fixed up in decls_for_scope.  If
20369          we're a method, it will be ignored, since we already have a DIE.  */
20370       if (decl_function_context (decl)
20371           /* But if we're in terse mode, we don't care about scope.  */
20372           && debug_info_level > DINFO_LEVEL_TERSE)
20373         context_die = NULL;
20374       break;
20375
20376     case VAR_DECL:
20377       /* Ignore this VAR_DECL if it refers to a file-scope extern data object
20378          declaration and if the declaration was never even referenced from
20379          within this entire compilation unit.  We suppress these DIEs in
20380          order to save space in the .debug section (by eliminating entries
20381          which are probably useless).  Note that we must not suppress
20382          block-local extern declarations (whether used or not) because that
20383          would screw-up the debugger's name lookup mechanism and cause it to
20384          miss things which really ought to be in scope at a given point.  */
20385       if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
20386         return;
20387
20388       /* For local statics lookup proper context die.  */
20389       if (TREE_STATIC (decl) && decl_function_context (decl))
20390         context_die = lookup_decl_die (DECL_CONTEXT (decl));
20391
20392       /* If we are in terse mode, don't generate any DIEs to represent any
20393          variable declarations or definitions.  */
20394       if (debug_info_level <= DINFO_LEVEL_TERSE)
20395         return;
20396       break;
20397
20398     case CONST_DECL:
20399       if (debug_info_level <= DINFO_LEVEL_TERSE)
20400         return;
20401       if (!is_fortran ())
20402         return;
20403       if (TREE_STATIC (decl) && decl_function_context (decl))
20404         context_die = lookup_decl_die (DECL_CONTEXT (decl));
20405       break;
20406
20407     case NAMESPACE_DECL:
20408     case IMPORTED_DECL:
20409       if (debug_info_level <= DINFO_LEVEL_TERSE)
20410         return;
20411       if (lookup_decl_die (decl) != NULL)
20412         return;
20413       break;
20414
20415     case TYPE_DECL:
20416       /* Don't emit stubs for types unless they are needed by other DIEs.  */
20417       if (TYPE_DECL_SUPPRESS_DEBUG (decl))
20418         return;
20419
20420       /* Don't bother trying to generate any DIEs to represent any of the
20421          normal built-in types for the language we are compiling.  */
20422       if (DECL_IS_BUILTIN (decl))
20423         {
20424           /* OK, we need to generate one for `bool' so GDB knows what type
20425              comparisons have.  */
20426           if (is_cxx ()
20427               && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE
20428               && ! DECL_IGNORED_P (decl))
20429             modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
20430
20431           return;
20432         }
20433
20434       /* If we are in terse mode, don't generate any DIEs for types.  */
20435       if (debug_info_level <= DINFO_LEVEL_TERSE)
20436         return;
20437
20438       /* If we're a function-scope tag, initially use a parent of NULL;
20439          this will be fixed up in decls_for_scope.  */
20440       if (decl_function_context (decl))
20441         context_die = NULL;
20442
20443       break;
20444
20445     default:
20446       return;
20447     }
20448
20449   gen_decl_die (decl, NULL, context_die);
20450 }
20451
20452 /* Write the debugging output for DECL.  */
20453
20454 static void
20455 dwarf2out_function_decl (tree decl)
20456 {
20457   dwarf2out_decl (decl);
20458
20459   htab_empty (decl_loc_table);
20460 }
20461
20462 /* Output a marker (i.e. a label) for the beginning of the generated code for
20463    a lexical block.  */
20464
20465 static void
20466 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
20467                        unsigned int blocknum)
20468 {
20469   switch_to_section (current_function_section ());
20470   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
20471 }
20472
20473 /* Output a marker (i.e. a label) for the end of the generated code for a
20474    lexical block.  */
20475
20476 static void
20477 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
20478 {
20479   switch_to_section (current_function_section ());
20480   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
20481 }
20482
20483 /* Returns nonzero if it is appropriate not to emit any debugging
20484    information for BLOCK, because it doesn't contain any instructions.
20485
20486    Don't allow this for blocks with nested functions or local classes
20487    as we would end up with orphans, and in the presence of scheduling
20488    we may end up calling them anyway.  */
20489
20490 static bool
20491 dwarf2out_ignore_block (const_tree block)
20492 {
20493   tree decl;
20494   unsigned int i;
20495
20496   for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
20497     if (TREE_CODE (decl) == FUNCTION_DECL
20498         || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
20499       return 0;
20500   for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (block); i++)
20501     {
20502       decl = BLOCK_NONLOCALIZED_VAR (block, i);
20503       if (TREE_CODE (decl) == FUNCTION_DECL
20504           || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
20505       return 0;
20506     }
20507
20508   return 1;
20509 }
20510
20511 /* Hash table routines for file_hash.  */
20512
20513 static int
20514 file_table_eq (const void *p1_p, const void *p2_p)
20515 {
20516   const struct dwarf_file_data *const p1 =
20517     (const struct dwarf_file_data *) p1_p;
20518   const char *const p2 = (const char *) p2_p;
20519   return strcmp (p1->filename, p2) == 0;
20520 }
20521
20522 static hashval_t
20523 file_table_hash (const void *p_p)
20524 {
20525   const struct dwarf_file_data *const p = (const struct dwarf_file_data *) p_p;
20526   return htab_hash_string (p->filename);
20527 }
20528
20529 /* Lookup FILE_NAME (in the list of filenames that we know about here in
20530    dwarf2out.c) and return its "index".  The index of each (known) filename is
20531    just a unique number which is associated with only that one filename.  We
20532    need such numbers for the sake of generating labels (in the .debug_sfnames
20533    section) and references to those files numbers (in the .debug_srcinfo
20534    and.debug_macinfo sections).  If the filename given as an argument is not
20535    found in our current list, add it to the list and assign it the next
20536    available unique index number.  In order to speed up searches, we remember
20537    the index of the filename was looked up last.  This handles the majority of
20538    all searches.  */
20539
20540 static struct dwarf_file_data *
20541 lookup_filename (const char *file_name)
20542 {
20543   void ** slot;
20544   struct dwarf_file_data * created;
20545
20546   /* Check to see if the file name that was searched on the previous
20547      call matches this file name.  If so, return the index.  */
20548   if (file_table_last_lookup
20549       && (file_name == file_table_last_lookup->filename
20550           || strcmp (file_table_last_lookup->filename, file_name) == 0))
20551     return file_table_last_lookup;
20552
20553   /* Didn't match the previous lookup, search the table.  */
20554   slot = htab_find_slot_with_hash (file_table, file_name,
20555                                    htab_hash_string (file_name), INSERT);
20556   if (*slot)
20557     return (struct dwarf_file_data *) *slot;
20558
20559   created = GGC_NEW (struct dwarf_file_data);
20560   created->filename = file_name;
20561   created->emitted_number = 0;
20562   *slot = created;
20563   return created;
20564 }
20565
20566 /* If the assembler will construct the file table, then translate the compiler
20567    internal file table number into the assembler file table number, and emit
20568    a .file directive if we haven't already emitted one yet.  The file table
20569    numbers are different because we prune debug info for unused variables and
20570    types, which may include filenames.  */
20571
20572 static int
20573 maybe_emit_file (struct dwarf_file_data * fd)
20574 {
20575   if (! fd->emitted_number)
20576     {
20577       if (last_emitted_file)
20578         fd->emitted_number = last_emitted_file->emitted_number + 1;
20579       else
20580         fd->emitted_number = 1;
20581       last_emitted_file = fd;
20582
20583       if (DWARF2_ASM_LINE_DEBUG_INFO)
20584         {
20585           fprintf (asm_out_file, "\t.file %u ", fd->emitted_number);
20586           output_quoted_string (asm_out_file,
20587                                 remap_debug_filename (fd->filename));
20588           fputc ('\n', asm_out_file);
20589         }
20590     }
20591
20592   return fd->emitted_number;
20593 }
20594
20595 /* Schedule generation of a DW_AT_const_value attribute to DIE.
20596    That generation should happen after function debug info has been
20597    generated. The value of the attribute is the constant value of ARG.  */
20598
20599 static void
20600 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die, tree arg)
20601 {
20602   die_arg_entry entry;
20603
20604   if (!die || !arg)
20605     return;
20606
20607   if (!tmpl_value_parm_die_table)
20608     tmpl_value_parm_die_table
20609       = VEC_alloc (die_arg_entry, gc, 32);
20610
20611   entry.die = die;
20612   entry.arg = arg;
20613   VEC_safe_push (die_arg_entry, gc,
20614                  tmpl_value_parm_die_table,
20615                  &entry);
20616 }
20617
20618 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
20619    by append_entry_to_tmpl_value_parm_die_table. This function must
20620    be called after function DIEs have been generated.  */
20621
20622 static void
20623 gen_remaining_tmpl_value_param_die_attribute (void)
20624 {
20625   if (tmpl_value_parm_die_table)
20626     {
20627       unsigned i;
20628       die_arg_entry *e;
20629
20630       for (i = 0;
20631            VEC_iterate (die_arg_entry, tmpl_value_parm_die_table, i, e);
20632            i++)
20633         tree_add_const_value_attribute (e->die, e->arg);
20634     }
20635 }
20636
20637
20638 /* Replace DW_AT_name for the decl with name.  */
20639
20640 static void
20641 dwarf2out_set_name (tree decl, tree name)
20642 {
20643   dw_die_ref die;
20644   dw_attr_ref attr;
20645   const char *dname;
20646
20647   die = TYPE_SYMTAB_DIE (decl);
20648   if (!die)
20649     return;
20650
20651   dname = dwarf2_name (name, 0);
20652   if (!dname)
20653     return;
20654
20655   attr = get_AT (die, DW_AT_name);
20656   if (attr)
20657     {
20658       struct indirect_string_node *node;
20659
20660       node = find_AT_string (dname);
20661       /* replace the string.  */
20662       attr->dw_attr_val.v.val_str = node;
20663     }
20664
20665   else
20666     add_name_attribute (die, dname);
20667 }
20668
20669 /* Called by the final INSN scan whenever we see a direct function call.
20670    Make an entry into the direct call table, recording the point of call
20671    and a reference to the target function's debug entry.  */
20672
20673 static void
20674 dwarf2out_direct_call (tree targ)
20675 {
20676   dcall_entry e;
20677   tree origin = decl_ultimate_origin (targ);
20678
20679   /* If this is a clone, use the abstract origin as the target.  */
20680   if (origin)
20681     targ = origin;
20682
20683   e.poc_label_num = poc_label_num++;
20684   e.poc_decl = current_function_decl;
20685   e.targ_die = force_decl_die (targ);
20686   VEC_safe_push (dcall_entry, gc, dcall_table, &e);
20687
20688   /* Drop a label at the return point to mark the point of call.  */
20689   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LPOC", e.poc_label_num);
20690 }
20691
20692 /* Returns a hash value for X (which really is a struct vcall_insn).  */
20693
20694 static hashval_t
20695 vcall_insn_table_hash (const void *x)
20696 {
20697   return (hashval_t) ((const struct vcall_insn *) x)->insn_uid;
20698 }
20699
20700 /* Return nonzero if insn_uid of struct vcall_insn *X is the same as
20701    insnd_uid of *Y.  */
20702
20703 static int
20704 vcall_insn_table_eq (const void *x, const void *y)
20705 {
20706   return (((const struct vcall_insn *) x)->insn_uid
20707           == ((const struct vcall_insn *) y)->insn_uid);
20708 }
20709
20710 /* Associate VTABLE_SLOT with INSN_UID in the VCALL_INSN_TABLE.  */
20711
20712 static void
20713 store_vcall_insn (unsigned int vtable_slot, int insn_uid)
20714 {
20715   struct vcall_insn *item = GGC_NEW (struct vcall_insn);
20716   struct vcall_insn **slot;
20717
20718   gcc_assert (item);
20719   item->insn_uid = insn_uid;
20720   item->vtable_slot = vtable_slot;
20721   slot = (struct vcall_insn **)
20722       htab_find_slot_with_hash (vcall_insn_table, &item,
20723                                 (hashval_t) insn_uid, INSERT);
20724   *slot = item;
20725 }
20726
20727 /* Return the VTABLE_SLOT associated with INSN_UID.  */
20728
20729 static unsigned int
20730 lookup_vcall_insn (unsigned int insn_uid)
20731 {
20732   struct vcall_insn item;
20733   struct vcall_insn *p;
20734
20735   item.insn_uid = insn_uid;
20736   item.vtable_slot = 0;
20737   p = (struct vcall_insn *) htab_find_with_hash (vcall_insn_table,
20738                                                  (void *) &item,
20739                                                  (hashval_t) insn_uid);
20740   if (p == NULL)
20741     return (unsigned int) -1;
20742   return p->vtable_slot;
20743 }
20744
20745
20746 /* Called when lowering indirect calls to RTL.  We make a note of INSN_UID
20747    and the OBJ_TYPE_REF_TOKEN from ADDR.  For C++ virtual calls, the token
20748    is the vtable slot index that we will need to put in the virtual call
20749    table later.  */
20750
20751 static void
20752 dwarf2out_virtual_call_token (tree addr, int insn_uid)
20753 {
20754   if (is_cxx() && TREE_CODE (addr) == OBJ_TYPE_REF)
20755     {
20756       tree token = OBJ_TYPE_REF_TOKEN (addr);
20757       if (TREE_CODE (token) == INTEGER_CST)
20758         store_vcall_insn (TREE_INT_CST_LOW (token), insn_uid);
20759     }
20760 }
20761
20762 /* Called when scheduling RTL, when a CALL_INSN is split.  Copies the
20763    OBJ_TYPE_REF_TOKEN previously associated with OLD_INSN and associates it
20764    with NEW_INSN.  */
20765
20766 static void
20767 dwarf2out_copy_call_info (rtx old_insn, rtx new_insn)
20768 {
20769   unsigned int vtable_slot = lookup_vcall_insn (INSN_UID (old_insn));
20770
20771   if (vtable_slot != (unsigned int) -1)
20772     store_vcall_insn (vtable_slot, INSN_UID (new_insn));
20773 }
20774
20775 /* Called by the final INSN scan whenever we see a virtual function call.
20776    Make an entry into the virtual call table, recording the point of call
20777    and the slot index of the vtable entry used to call the virtual member
20778    function.  The slot index was associated with the INSN_UID during the
20779    lowering to RTL.  */
20780
20781 static void
20782 dwarf2out_virtual_call (int insn_uid)
20783 {
20784   unsigned int vtable_slot = lookup_vcall_insn (insn_uid);
20785   vcall_entry e;
20786
20787   if (vtable_slot == (unsigned int) -1)
20788     return;
20789
20790   e.poc_label_num = poc_label_num++;
20791   e.vtable_slot = vtable_slot;
20792   VEC_safe_push (vcall_entry, gc, vcall_table, &e);
20793
20794   /* Drop a label at the return point to mark the point of call.  */
20795   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LPOC", e.poc_label_num);
20796 }
20797
20798 /* Called by the final INSN scan whenever we see a var location.  We
20799    use it to drop labels in the right places, and throw the location in
20800    our lookup table.  */
20801
20802 static void
20803 dwarf2out_var_location (rtx loc_note)
20804 {
20805   char loclabel[MAX_ARTIFICIAL_LABEL_BYTES + 2];
20806   struct var_loc_node *newloc;
20807   rtx next_real;
20808   static const char *last_label;
20809   static const char *last_postcall_label;
20810   static bool last_in_cold_section_p;
20811   tree decl;
20812
20813   if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
20814     return;
20815
20816   next_real = next_real_insn (loc_note);
20817   /* If there are no instructions which would be affected by this note,
20818      don't do anything.  */
20819   if (next_real == NULL_RTX)
20820     return;
20821
20822   /* If there were any real insns between note we processed last time
20823      and this note (or if it is the first note), clear
20824      last_{,postcall_}label so that they are not reused this time.  */
20825   if (last_var_location_insn == NULL_RTX
20826       || last_var_location_insn != next_real
20827       || last_in_cold_section_p != in_cold_section_p)
20828     {
20829       last_label = NULL;
20830       last_postcall_label = NULL;
20831     }
20832
20833   decl = NOTE_VAR_LOCATION_DECL (loc_note);
20834   newloc = add_var_loc_to_decl (decl, loc_note,
20835                                 NOTE_DURING_CALL_P (loc_note)
20836                                 ? last_postcall_label : last_label);
20837   if (newloc == NULL)
20838     return;
20839
20840   /* If there were no real insns between note we processed last time
20841      and this note, use the label we emitted last time.  Otherwise
20842      create a new label and emit it.  */
20843   if (last_label == NULL)
20844     {
20845       ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
20846       ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
20847       loclabel_num++;
20848       last_label = ggc_strdup (loclabel);
20849     }
20850
20851   if (!NOTE_DURING_CALL_P (loc_note))
20852     newloc->label = last_label;
20853   else
20854     {
20855       if (!last_postcall_label)
20856         {
20857           sprintf (loclabel, "%s-1", last_label);
20858           last_postcall_label = ggc_strdup (loclabel);
20859         }
20860       newloc->label = last_postcall_label;
20861     }
20862
20863   last_var_location_insn = next_real;
20864   last_in_cold_section_p = in_cold_section_p;
20865 }
20866
20867 /* We need to reset the locations at the beginning of each
20868    function. We can't do this in the end_function hook, because the
20869    declarations that use the locations won't have been output when
20870    that hook is called.  Also compute have_multiple_function_sections here.  */
20871
20872 static void
20873 dwarf2out_begin_function (tree fun)
20874 {
20875   if (function_section (fun) != text_section)
20876     have_multiple_function_sections = true;
20877
20878   dwarf2out_note_section_used ();
20879 }
20880
20881 /* Output a label to mark the beginning of a source code line entry
20882    and record information relating to this source line, in
20883    'line_info_table' for later output of the .debug_line section.  */
20884
20885 static void
20886 dwarf2out_source_line (unsigned int line, const char *filename,
20887                        int discriminator, bool is_stmt)
20888 {
20889   static bool last_is_stmt = true;
20890
20891   if (debug_info_level >= DINFO_LEVEL_NORMAL
20892       && line != 0)
20893     {
20894       int file_num = maybe_emit_file (lookup_filename (filename));
20895
20896       switch_to_section (current_function_section ());
20897
20898       /* If requested, emit something human-readable.  */
20899       if (flag_debug_asm)
20900         fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
20901                  filename, line);
20902
20903       if (DWARF2_ASM_LINE_DEBUG_INFO)
20904         {
20905           /* Emit the .loc directive understood by GNU as.  */
20906           fprintf (asm_out_file, "\t.loc %d %d 0", file_num, line);
20907           if (is_stmt != last_is_stmt)
20908             {
20909               fprintf (asm_out_file, " is_stmt %d", is_stmt ? 1 : 0);
20910               last_is_stmt = is_stmt;
20911             }
20912           if (SUPPORTS_DISCRIMINATOR && discriminator != 0)
20913             fprintf (asm_out_file, " discriminator %d", discriminator);
20914           fputc ('\n', asm_out_file);
20915
20916           /* Indicate that line number info exists.  */
20917           line_info_table_in_use++;
20918         }
20919       else if (function_section (current_function_decl) != text_section)
20920         {
20921           dw_separate_line_info_ref line_info;
20922           targetm.asm_out.internal_label (asm_out_file,
20923                                           SEPARATE_LINE_CODE_LABEL,
20924                                           separate_line_info_table_in_use);
20925
20926           /* Expand the line info table if necessary.  */
20927           if (separate_line_info_table_in_use
20928               == separate_line_info_table_allocated)
20929             {
20930               separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
20931               separate_line_info_table
20932                 = GGC_RESIZEVEC (dw_separate_line_info_entry,
20933                                  separate_line_info_table,
20934                                  separate_line_info_table_allocated);
20935               memset (separate_line_info_table
20936                        + separate_line_info_table_in_use,
20937                       0,
20938                       (LINE_INFO_TABLE_INCREMENT
20939                        * sizeof (dw_separate_line_info_entry)));
20940             }
20941
20942           /* Add the new entry at the end of the line_info_table.  */
20943           line_info
20944             = &separate_line_info_table[separate_line_info_table_in_use++];
20945           line_info->dw_file_num = file_num;
20946           line_info->dw_line_num = line;
20947           line_info->function = current_function_funcdef_no;
20948         }
20949       else
20950         {
20951           dw_line_info_ref line_info;
20952
20953           targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL,
20954                                      line_info_table_in_use);
20955
20956           /* Expand the line info table if necessary.  */
20957           if (line_info_table_in_use == line_info_table_allocated)
20958             {
20959               line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
20960               line_info_table
20961                 = GGC_RESIZEVEC (dw_line_info_entry, line_info_table,
20962                                  line_info_table_allocated);
20963               memset (line_info_table + line_info_table_in_use, 0,
20964                       LINE_INFO_TABLE_INCREMENT * sizeof (dw_line_info_entry));
20965             }
20966
20967           /* Add the new entry at the end of the line_info_table.  */
20968           line_info = &line_info_table[line_info_table_in_use++];
20969           line_info->dw_file_num = file_num;
20970           line_info->dw_line_num = line;
20971         }
20972     }
20973 }
20974
20975 /* Record the beginning of a new source file.  */
20976
20977 static void
20978 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
20979 {
20980   if (flag_eliminate_dwarf2_dups && dwarf_version < 4)
20981     {
20982       /* Record the beginning of the file for break_out_includes.  */
20983       dw_die_ref bincl_die;
20984
20985       bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die, NULL);
20986       add_AT_string (bincl_die, DW_AT_name, remap_debug_filename (filename));
20987     }
20988
20989   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
20990     {
20991       int file_num = maybe_emit_file (lookup_filename (filename));
20992
20993       switch_to_section (debug_macinfo_section);
20994       dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
20995       dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
20996                                    lineno);
20997
20998       dw2_asm_output_data_uleb128 (file_num, "file %s", filename);
20999     }
21000 }
21001
21002 /* Record the end of a source file.  */
21003
21004 static void
21005 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
21006 {
21007   if (flag_eliminate_dwarf2_dups && dwarf_version < 4)
21008     /* Record the end of the file for break_out_includes.  */
21009     new_die (DW_TAG_GNU_EINCL, comp_unit_die, NULL);
21010
21011   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21012     {
21013       switch_to_section (debug_macinfo_section);
21014       dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
21015     }
21016 }
21017
21018 /* Called from debug_define in toplev.c.  The `buffer' parameter contains
21019    the tail part of the directive line, i.e. the part which is past the
21020    initial whitespace, #, whitespace, directive-name, whitespace part.  */
21021
21022 static void
21023 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
21024                   const char *buffer ATTRIBUTE_UNUSED)
21025 {
21026   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21027     {
21028       switch_to_section (debug_macinfo_section);
21029       dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
21030       dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
21031       dw2_asm_output_nstring (buffer, -1, "The macro");
21032     }
21033 }
21034
21035 /* Called from debug_undef in toplev.c.  The `buffer' parameter contains
21036    the tail part of the directive line, i.e. the part which is past the
21037    initial whitespace, #, whitespace, directive-name, whitespace part.  */
21038
21039 static void
21040 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
21041                  const char *buffer ATTRIBUTE_UNUSED)
21042 {
21043   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21044     {
21045       switch_to_section (debug_macinfo_section);
21046       dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
21047       dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
21048       dw2_asm_output_nstring (buffer, -1, "The macro");
21049     }
21050 }
21051
21052 /* Set up for Dwarf output at the start of compilation.  */
21053
21054 static void
21055 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
21056 {
21057   /* Allocate the file_table.  */
21058   file_table = htab_create_ggc (50, file_table_hash,
21059                                 file_table_eq, NULL);
21060
21061   /* Allocate the decl_die_table.  */
21062   decl_die_table = htab_create_ggc (10, decl_die_table_hash,
21063                                     decl_die_table_eq, NULL);
21064
21065   /* Allocate the decl_loc_table.  */
21066   decl_loc_table = htab_create_ggc (10, decl_loc_table_hash,
21067                                     decl_loc_table_eq, NULL);
21068
21069   /* Allocate the initial hunk of the decl_scope_table.  */
21070   decl_scope_table = VEC_alloc (tree, gc, 256);
21071
21072   /* Allocate the initial hunk of the abbrev_die_table.  */
21073   abbrev_die_table = GGC_CNEWVEC (dw_die_ref, ABBREV_DIE_TABLE_INCREMENT);
21074   abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
21075   /* Zero-th entry is allocated, but unused.  */
21076   abbrev_die_table_in_use = 1;
21077
21078   /* Allocate the initial hunk of the line_info_table.  */
21079   line_info_table = GGC_CNEWVEC (dw_line_info_entry, LINE_INFO_TABLE_INCREMENT);
21080   line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
21081
21082   /* Zero-th entry is allocated, but unused.  */
21083   line_info_table_in_use = 1;
21084
21085   /* Allocate the pubtypes and pubnames vectors.  */
21086   pubname_table = VEC_alloc (pubname_entry, gc, 32);
21087   pubtype_table = VEC_alloc (pubname_entry, gc, 32);
21088
21089   /* Allocate the table that maps insn UIDs to vtable slot indexes.  */
21090   vcall_insn_table = htab_create_ggc (10, vcall_insn_table_hash,
21091                                       vcall_insn_table_eq, NULL);
21092
21093   /* Generate the initial DIE for the .debug section.  Note that the (string)
21094      value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
21095      will (typically) be a relative pathname and that this pathname should be
21096      taken as being relative to the directory from which the compiler was
21097      invoked when the given (base) source file was compiled.  We will fill
21098      in this value in dwarf2out_finish.  */
21099   comp_unit_die = gen_compile_unit_die (NULL);
21100
21101   incomplete_types = VEC_alloc (tree, gc, 64);
21102
21103   used_rtx_array = VEC_alloc (rtx, gc, 32);
21104
21105   debug_info_section = get_section (DEBUG_INFO_SECTION,
21106                                     SECTION_DEBUG, NULL);
21107   debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
21108                                       SECTION_DEBUG, NULL);
21109   debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
21110                                        SECTION_DEBUG, NULL);
21111   debug_macinfo_section = get_section (DEBUG_MACINFO_SECTION,
21112                                        SECTION_DEBUG, NULL);
21113   debug_line_section = get_section (DEBUG_LINE_SECTION,
21114                                     SECTION_DEBUG, NULL);
21115   debug_loc_section = get_section (DEBUG_LOC_SECTION,
21116                                    SECTION_DEBUG, NULL);
21117   debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
21118                                         SECTION_DEBUG, NULL);
21119   debug_pubtypes_section = get_section (DEBUG_PUBTYPES_SECTION,
21120                                         SECTION_DEBUG, NULL);
21121   debug_dcall_section = get_section (DEBUG_DCALL_SECTION,
21122                                      SECTION_DEBUG, NULL);
21123   debug_vcall_section = get_section (DEBUG_VCALL_SECTION,
21124                                      SECTION_DEBUG, NULL);
21125   debug_str_section = get_section (DEBUG_STR_SECTION,
21126                                    DEBUG_STR_SECTION_FLAGS, NULL);
21127   debug_ranges_section = get_section (DEBUG_RANGES_SECTION,
21128                                       SECTION_DEBUG, NULL);
21129   debug_frame_section = get_section (DEBUG_FRAME_SECTION,
21130                                      SECTION_DEBUG, NULL);
21131
21132   ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
21133   ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
21134                                DEBUG_ABBREV_SECTION_LABEL, 0);
21135   ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
21136   ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
21137                                COLD_TEXT_SECTION_LABEL, 0);
21138   ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
21139
21140   ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
21141                                DEBUG_INFO_SECTION_LABEL, 0);
21142   ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
21143                                DEBUG_LINE_SECTION_LABEL, 0);
21144   ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
21145                                DEBUG_RANGES_SECTION_LABEL, 0);
21146   switch_to_section (debug_abbrev_section);
21147   ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
21148   switch_to_section (debug_info_section);
21149   ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
21150   switch_to_section (debug_line_section);
21151   ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
21152
21153   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21154     {
21155       switch_to_section (debug_macinfo_section);
21156       ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
21157                                    DEBUG_MACINFO_SECTION_LABEL, 0);
21158       ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
21159     }
21160
21161   switch_to_section (text_section);
21162   ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
21163   if (flag_reorder_blocks_and_partition)
21164     {
21165       cold_text_section = unlikely_text_section ();
21166       switch_to_section (cold_text_section);
21167       ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
21168     }
21169
21170 }
21171
21172 /* Called before cgraph_optimize starts outputtting functions, variables
21173    and toplevel asms into assembly.  */
21174
21175 static void
21176 dwarf2out_assembly_start (void)
21177 {
21178   if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE && dwarf2out_do_cfi_asm ())
21179     {
21180 #ifndef TARGET_UNWIND_INFO
21181       if (USING_SJLJ_EXCEPTIONS || (!flag_unwind_tables && !flag_exceptions))
21182 #endif
21183         fprintf (asm_out_file, "\t.cfi_sections\t.debug_frame\n");
21184     }
21185 }
21186
21187 /* A helper function for dwarf2out_finish called through
21188    htab_traverse.  Emit one queued .debug_str string.  */
21189
21190 static int
21191 output_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
21192 {
21193   struct indirect_string_node *node = (struct indirect_string_node *) *h;
21194
21195   if (node->label && node->refcount)
21196     {
21197       switch_to_section (debug_str_section);
21198       ASM_OUTPUT_LABEL (asm_out_file, node->label);
21199       assemble_string (node->str, strlen (node->str) + 1);
21200     }
21201
21202   return 1;
21203 }
21204
21205 #if ENABLE_ASSERT_CHECKING
21206 /* Verify that all marks are clear.  */
21207
21208 static void
21209 verify_marks_clear (dw_die_ref die)
21210 {
21211   dw_die_ref c;
21212
21213   gcc_assert (! die->die_mark);
21214   FOR_EACH_CHILD (die, c, verify_marks_clear (c));
21215 }
21216 #endif /* ENABLE_ASSERT_CHECKING */
21217
21218 /* Clear the marks for a die and its children.
21219    Be cool if the mark isn't set.  */
21220
21221 static void
21222 prune_unmark_dies (dw_die_ref die)
21223 {
21224   dw_die_ref c;
21225
21226   if (die->die_mark)
21227     die->die_mark = 0;
21228   FOR_EACH_CHILD (die, c, prune_unmark_dies (c));
21229 }
21230
21231 /* Given DIE that we're marking as used, find any other dies
21232    it references as attributes and mark them as used.  */
21233
21234 static void
21235 prune_unused_types_walk_attribs (dw_die_ref die)
21236 {
21237   dw_attr_ref a;
21238   unsigned ix;
21239
21240   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
21241     {
21242       if (a->dw_attr_val.val_class == dw_val_class_die_ref)
21243         {
21244           /* A reference to another DIE.
21245              Make sure that it will get emitted.
21246              If it was broken out into a comdat group, don't follow it.  */
21247           if (dwarf_version < 4
21248               || a->dw_attr == DW_AT_specification
21249               || a->dw_attr_val.v.val_die_ref.die->die_id.die_type_node == NULL)
21250             prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
21251         }
21252       /* Set the string's refcount to 0 so that prune_unused_types_mark
21253          accounts properly for it.  */
21254       if (AT_class (a) == dw_val_class_str)
21255         a->dw_attr_val.v.val_str->refcount = 0;
21256     }
21257 }
21258
21259
21260 /* Mark DIE as being used.  If DOKIDS is true, then walk down
21261    to DIE's children.  */
21262
21263 static void
21264 prune_unused_types_mark (dw_die_ref die, int dokids)
21265 {
21266   dw_die_ref c;
21267
21268   if (die->die_mark == 0)
21269     {
21270       /* We haven't done this node yet.  Mark it as used.  */
21271       die->die_mark = 1;
21272
21273       /* We also have to mark its parents as used.
21274          (But we don't want to mark our parents' kids due to this.)  */
21275       if (die->die_parent)
21276         prune_unused_types_mark (die->die_parent, 0);
21277
21278       /* Mark any referenced nodes.  */
21279       prune_unused_types_walk_attribs (die);
21280
21281       /* If this node is a specification,
21282          also mark the definition, if it exists.  */
21283       if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
21284         prune_unused_types_mark (die->die_definition, 1);
21285     }
21286
21287   if (dokids && die->die_mark != 2)
21288     {
21289       /* We need to walk the children, but haven't done so yet.
21290          Remember that we've walked the kids.  */
21291       die->die_mark = 2;
21292
21293       /* If this is an array type, we need to make sure our
21294          kids get marked, even if they're types.  If we're
21295          breaking out types into comdat sections, do this
21296          for all type definitions.  */
21297       if (die->die_tag == DW_TAG_array_type
21298           || (dwarf_version >= 4
21299               && is_type_die (die) && ! is_declaration_die (die)))
21300         FOR_EACH_CHILD (die, c, prune_unused_types_mark (c, 1));
21301       else
21302         FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
21303     }
21304 }
21305
21306 /* For local classes, look if any static member functions were emitted
21307    and if so, mark them.  */
21308
21309 static void
21310 prune_unused_types_walk_local_classes (dw_die_ref die)
21311 {
21312   dw_die_ref c;
21313
21314   if (die->die_mark == 2)
21315     return;
21316
21317   switch (die->die_tag)
21318     {
21319     case DW_TAG_structure_type:
21320     case DW_TAG_union_type:
21321     case DW_TAG_class_type:
21322       break;
21323
21324     case DW_TAG_subprogram:
21325       if (!get_AT_flag (die, DW_AT_declaration)
21326           || die->die_definition != NULL)
21327         prune_unused_types_mark (die, 1);
21328       return;
21329
21330     default:
21331       return;
21332     }
21333
21334   /* Mark children.  */
21335   FOR_EACH_CHILD (die, c, prune_unused_types_walk_local_classes (c));
21336 }
21337
21338 /* Walk the tree DIE and mark types that we actually use.  */
21339
21340 static void
21341 prune_unused_types_walk (dw_die_ref die)
21342 {
21343   dw_die_ref c;
21344
21345   /* Don't do anything if this node is already marked and
21346      children have been marked as well.  */
21347   if (die->die_mark == 2)
21348     return;
21349
21350   switch (die->die_tag)
21351     {
21352     case DW_TAG_structure_type:
21353     case DW_TAG_union_type:
21354     case DW_TAG_class_type:
21355       if (die->die_perennial_p)
21356         break;
21357
21358       for (c = die->die_parent; c; c = c->die_parent)
21359         if (c->die_tag == DW_TAG_subprogram)
21360           break;
21361
21362       /* Finding used static member functions inside of classes
21363          is needed just for local classes, because for other classes
21364          static member function DIEs with DW_AT_specification
21365          are emitted outside of the DW_TAG_*_type.  If we ever change
21366          it, we'd need to call this even for non-local classes.  */
21367       if (c)
21368         prune_unused_types_walk_local_classes (die);
21369
21370       /* It's a type node --- don't mark it.  */
21371       return;
21372
21373     case DW_TAG_const_type:
21374     case DW_TAG_packed_type:
21375     case DW_TAG_pointer_type:
21376     case DW_TAG_reference_type:
21377     case DW_TAG_rvalue_reference_type:
21378     case DW_TAG_volatile_type:
21379     case DW_TAG_typedef:
21380     case DW_TAG_array_type:
21381     case DW_TAG_interface_type:
21382     case DW_TAG_friend:
21383     case DW_TAG_variant_part:
21384     case DW_TAG_enumeration_type:
21385     case DW_TAG_subroutine_type:
21386     case DW_TAG_string_type:
21387     case DW_TAG_set_type:
21388     case DW_TAG_subrange_type:
21389     case DW_TAG_ptr_to_member_type:
21390     case DW_TAG_file_type:
21391       if (die->die_perennial_p)
21392         break;
21393
21394       /* It's a type node --- don't mark it.  */
21395       return;
21396
21397     default:
21398       /* Mark everything else.  */
21399       break;
21400   }
21401
21402   if (die->die_mark == 0)
21403     {
21404       die->die_mark = 1;
21405
21406       /* Now, mark any dies referenced from here.  */
21407       prune_unused_types_walk_attribs (die);
21408     }
21409
21410   die->die_mark = 2;
21411
21412   /* Mark children.  */
21413   FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
21414 }
21415
21416 /* Increment the string counts on strings referred to from DIE's
21417    attributes.  */
21418
21419 static void
21420 prune_unused_types_update_strings (dw_die_ref die)
21421 {
21422   dw_attr_ref a;
21423   unsigned ix;
21424
21425   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
21426     if (AT_class (a) == dw_val_class_str)
21427       {
21428         struct indirect_string_node *s = a->dw_attr_val.v.val_str;
21429         s->refcount++;
21430         /* Avoid unnecessarily putting strings that are used less than
21431            twice in the hash table.  */
21432         if (s->refcount
21433             == ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) ? 1 : 2))
21434           {
21435             void ** slot;
21436             slot = htab_find_slot_with_hash (debug_str_hash, s->str,
21437                                              htab_hash_string (s->str),
21438                                              INSERT);
21439             gcc_assert (*slot == NULL);
21440             *slot = s;
21441           }
21442       }
21443 }
21444
21445 /* Remove from the tree DIE any dies that aren't marked.  */
21446
21447 static void
21448 prune_unused_types_prune (dw_die_ref die)
21449 {
21450   dw_die_ref c;
21451
21452   gcc_assert (die->die_mark);
21453   prune_unused_types_update_strings (die);
21454
21455   if (! die->die_child)
21456     return;
21457
21458   c = die->die_child;
21459   do {
21460     dw_die_ref prev = c;
21461     for (c = c->die_sib; ! c->die_mark; c = c->die_sib)
21462       if (c == die->die_child)
21463         {
21464           /* No marked children between 'prev' and the end of the list.  */
21465           if (prev == c)
21466             /* No marked children at all.  */
21467             die->die_child = NULL;
21468           else
21469             {
21470               prev->die_sib = c->die_sib;
21471               die->die_child = prev;
21472             }
21473           return;
21474         }
21475
21476     if (c != prev->die_sib)
21477       prev->die_sib = c;
21478     prune_unused_types_prune (c);
21479   } while (c != die->die_child);
21480 }
21481
21482 /* A helper function for dwarf2out_finish called through
21483    htab_traverse.  Clear .debug_str strings that we haven't already
21484    decided to emit.  */
21485
21486 static int
21487 prune_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
21488 {
21489   struct indirect_string_node *node = (struct indirect_string_node *) *h;
21490
21491   if (!node->label || !node->refcount)
21492     htab_clear_slot (debug_str_hash, h);
21493
21494   return 1;
21495 }
21496
21497 /* Remove dies representing declarations that we never use.  */
21498
21499 static void
21500 prune_unused_types (void)
21501 {
21502   unsigned int i;
21503   limbo_die_node *node;
21504   comdat_type_node *ctnode;
21505   pubname_ref pub;
21506   dcall_entry *dcall;
21507
21508 #if ENABLE_ASSERT_CHECKING
21509   /* All the marks should already be clear.  */
21510   verify_marks_clear (comp_unit_die);
21511   for (node = limbo_die_list; node; node = node->next)
21512     verify_marks_clear (node->die);
21513   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21514     verify_marks_clear (ctnode->root_die);
21515 #endif /* ENABLE_ASSERT_CHECKING */
21516
21517   /* Mark types that are used in global variables.  */
21518   premark_types_used_by_global_vars ();
21519
21520   /* Set the mark on nodes that are actually used.  */
21521   prune_unused_types_walk (comp_unit_die);
21522   for (node = limbo_die_list; node; node = node->next)
21523     prune_unused_types_walk (node->die);
21524   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21525     {
21526       prune_unused_types_walk (ctnode->root_die);
21527       prune_unused_types_mark (ctnode->type_die, 1);
21528     }
21529
21530   /* Also set the mark on nodes referenced from the
21531      pubname_table or arange_table.  */
21532   for (i = 0; VEC_iterate (pubname_entry, pubname_table, i, pub); i++)
21533     prune_unused_types_mark (pub->die, 1);
21534   for (i = 0; i < arange_table_in_use; i++)
21535     prune_unused_types_mark (arange_table[i], 1);
21536
21537   /* Mark nodes referenced from the direct call table.  */
21538   for (i = 0; VEC_iterate (dcall_entry, dcall_table, i, dcall); i++)
21539     prune_unused_types_mark (dcall->targ_die, 1);
21540
21541   /* Get rid of nodes that aren't marked; and update the string counts.  */
21542   if (debug_str_hash && debug_str_hash_forced)
21543     htab_traverse (debug_str_hash, prune_indirect_string, NULL);
21544   else if (debug_str_hash)
21545     htab_empty (debug_str_hash);
21546   prune_unused_types_prune (comp_unit_die);
21547   for (node = limbo_die_list; node; node = node->next)
21548     prune_unused_types_prune (node->die);
21549   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21550     prune_unused_types_prune (ctnode->root_die);
21551
21552   /* Leave the marks clear.  */
21553   prune_unmark_dies (comp_unit_die);
21554   for (node = limbo_die_list; node; node = node->next)
21555     prune_unmark_dies (node->die);
21556   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
21557     prune_unmark_dies (ctnode->root_die);
21558 }
21559
21560 /* Set the parameter to true if there are any relative pathnames in
21561    the file table.  */
21562 static int
21563 file_table_relative_p (void ** slot, void *param)
21564 {
21565   bool *p = (bool *) param;
21566   struct dwarf_file_data *d = (struct dwarf_file_data *) *slot;
21567   if (!IS_ABSOLUTE_PATH (d->filename))
21568     {
21569       *p = true;
21570       return 0;
21571     }
21572   return 1;
21573 }
21574
21575 /* Routines to manipulate hash table of comdat type units.  */
21576
21577 static hashval_t
21578 htab_ct_hash (const void *of)
21579 {
21580   hashval_t h;
21581   const comdat_type_node *const type_node = (const comdat_type_node *) of;
21582
21583   memcpy (&h, type_node->signature, sizeof (h));
21584   return h;
21585 }
21586
21587 static int
21588 htab_ct_eq (const void *of1, const void *of2)
21589 {
21590   const comdat_type_node *const type_node_1 = (const comdat_type_node *) of1;
21591   const comdat_type_node *const type_node_2 = (const comdat_type_node *) of2;
21592
21593   return (! memcmp (type_node_1->signature, type_node_2->signature,
21594                     DWARF_TYPE_SIGNATURE_SIZE));
21595 }
21596
21597 /* Move a DW_AT_{,MIPS_}linkage_name attribute just added to dw_die_ref
21598    to the location it would have been added, should we know its
21599    DECL_ASSEMBLER_NAME when we added other attributes.  This will
21600    probably improve compactness of debug info, removing equivalent
21601    abbrevs, and hide any differences caused by deferring the
21602    computation of the assembler name, triggered by e.g. PCH.  */
21603
21604 static inline void
21605 move_linkage_attr (dw_die_ref die)
21606 {
21607   unsigned ix = VEC_length (dw_attr_node, die->die_attr);
21608   dw_attr_node linkage = *VEC_index (dw_attr_node, die->die_attr, ix - 1);
21609
21610   gcc_assert (linkage.dw_attr == AT_linkage_name);
21611
21612   while (--ix > 0)
21613     {
21614       dw_attr_node *prev = VEC_index (dw_attr_node, die->die_attr, ix - 1);
21615
21616       if (prev->dw_attr == DW_AT_decl_line || prev->dw_attr == DW_AT_name)
21617         break;
21618     }
21619
21620   if (ix != VEC_length (dw_attr_node, die->die_attr) - 1)
21621     {
21622       VEC_pop (dw_attr_node, die->die_attr);
21623       VEC_quick_insert (dw_attr_node, die->die_attr, ix, &linkage);
21624     }
21625 }
21626
21627 /* Helper function for resolve_addr, attempt to resolve
21628    one CONST_STRING, return non-zero if not successful.  Similarly verify that
21629    SYMBOL_REFs refer to variables emitted in the current CU.  */
21630
21631 static int
21632 resolve_one_addr (rtx *addr, void *data ATTRIBUTE_UNUSED)
21633 {
21634   rtx rtl = *addr;
21635
21636   if (GET_CODE (rtl) == CONST_STRING)
21637     {
21638       size_t len = strlen (XSTR (rtl, 0)) + 1;
21639       tree t = build_string (len, XSTR (rtl, 0));
21640       tree tlen = build_int_cst (NULL_TREE, len - 1);
21641       TREE_TYPE (t)
21642         = build_array_type (char_type_node, build_index_type (tlen));
21643       rtl = lookup_constant_def (t);
21644       if (!rtl || !MEM_P (rtl))
21645         return 1;
21646       rtl = XEXP (rtl, 0);
21647       VEC_safe_push (rtx, gc, used_rtx_array, rtl);
21648       *addr = rtl;
21649       return 0;
21650     }
21651
21652   if (GET_CODE (rtl) == SYMBOL_REF
21653       && SYMBOL_REF_DECL (rtl)
21654       && !TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
21655     return 1;
21656
21657   if (GET_CODE (rtl) == CONST
21658       && for_each_rtx (&XEXP (rtl, 0), resolve_one_addr, NULL))
21659     return 1;
21660
21661   return 0;
21662 }
21663
21664 /* Helper function for resolve_addr, handle one location
21665    expression, return false if at least one CONST_STRING or SYMBOL_REF in
21666    the location list couldn't be resolved.  */
21667
21668 static bool
21669 resolve_addr_in_expr (dw_loc_descr_ref loc)
21670 {
21671   for (; loc; loc = loc->dw_loc_next)
21672     if ((loc->dw_loc_opc == DW_OP_addr
21673          && resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr, NULL))
21674         || (loc->dw_loc_opc == DW_OP_implicit_value
21675             && loc->dw_loc_oprnd2.val_class == dw_val_class_addr
21676             && resolve_one_addr (&loc->dw_loc_oprnd2.v.val_addr, NULL)))
21677       return false;
21678   return true;
21679 }
21680
21681 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
21682    an address in .rodata section if the string literal is emitted there,
21683    or remove the containing location list or replace DW_AT_const_value
21684    with DW_AT_location and empty location expression, if it isn't found
21685    in .rodata.  Similarly for SYMBOL_REFs, keep only those that refer
21686    to something that has been emitted in the current CU.  */
21687
21688 static void
21689 resolve_addr (dw_die_ref die)
21690 {
21691   dw_die_ref c;
21692   dw_attr_ref a;
21693   dw_loc_list_ref *curr;
21694   unsigned ix;
21695
21696   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
21697     switch (AT_class (a))
21698       {
21699       case dw_val_class_loc_list:
21700         curr = AT_loc_list_ptr (a);
21701         while (*curr)
21702           {
21703             if (!resolve_addr_in_expr ((*curr)->expr))
21704               {
21705                 dw_loc_list_ref next = (*curr)->dw_loc_next;
21706                 if (next && (*curr)->ll_symbol)
21707                   {
21708                     gcc_assert (!next->ll_symbol);
21709                     next->ll_symbol = (*curr)->ll_symbol;
21710                   }
21711                 *curr = next;
21712               }
21713             else
21714               curr = &(*curr)->dw_loc_next;
21715           }
21716         if (!AT_loc_list (a))
21717           {
21718             remove_AT (die, a->dw_attr);
21719             ix--;
21720           }
21721         break;
21722       case dw_val_class_loc:
21723         if (!resolve_addr_in_expr (AT_loc (a)))
21724           {
21725             remove_AT (die, a->dw_attr);
21726             ix--;
21727           }
21728         break;
21729       case dw_val_class_addr:
21730         if (a->dw_attr == DW_AT_const_value
21731             && resolve_one_addr (&a->dw_attr_val.v.val_addr, NULL))
21732           {
21733             remove_AT (die, a->dw_attr);
21734             ix--;
21735           }
21736         break;
21737       default:
21738         break;
21739       }
21740
21741   FOR_EACH_CHILD (die, c, resolve_addr (c));
21742 }
21743
21744 /* Output stuff that dwarf requires at the end of every file,
21745    and generate the DWARF-2 debugging info.  */
21746
21747 static void
21748 dwarf2out_finish (const char *filename)
21749 {
21750   limbo_die_node *node, *next_node;
21751   comdat_type_node *ctnode;
21752   htab_t comdat_type_table;
21753   dw_die_ref die = 0;
21754   unsigned int i;
21755
21756   gen_remaining_tmpl_value_param_die_attribute ();
21757
21758   /* Add the name for the main input file now.  We delayed this from
21759      dwarf2out_init to avoid complications with PCH.  */
21760   add_name_attribute (comp_unit_die, remap_debug_filename (filename));
21761   if (!IS_ABSOLUTE_PATH (filename))
21762     add_comp_dir_attribute (comp_unit_die);
21763   else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL)
21764     {
21765       bool p = false;
21766       htab_traverse (file_table, file_table_relative_p, &p);
21767       if (p)
21768         add_comp_dir_attribute (comp_unit_die);
21769     }
21770
21771   for (i = 0; i < VEC_length (deferred_locations, deferred_locations_list); i++)
21772     {
21773       add_location_or_const_value_attribute (
21774         VEC_index (deferred_locations, deferred_locations_list, i)->die,
21775         VEC_index (deferred_locations, deferred_locations_list, i)->variable,
21776         DW_AT_location);
21777     }
21778
21779   /* Traverse the limbo die list, and add parent/child links.  The only
21780      dies without parents that should be here are concrete instances of
21781      inline functions, and the comp_unit_die.  We can ignore the comp_unit_die.
21782      For concrete instances, we can get the parent die from the abstract
21783      instance.  */
21784   for (node = limbo_die_list; node; node = next_node)
21785     {
21786       next_node = node->next;
21787       die = node->die;
21788
21789       if (die->die_parent == NULL)
21790         {
21791           dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
21792
21793           if (origin)
21794             add_child_die (origin->die_parent, die);
21795           else if (die == comp_unit_die)
21796             ;
21797           else if (errorcount > 0 || sorrycount > 0)
21798             /* It's OK to be confused by errors in the input.  */
21799             add_child_die (comp_unit_die, die);
21800           else
21801             {
21802               /* In certain situations, the lexical block containing a
21803                  nested function can be optimized away, which results
21804                  in the nested function die being orphaned.  Likewise
21805                  with the return type of that nested function.  Force
21806                  this to be a child of the containing function.
21807
21808                  It may happen that even the containing function got fully
21809                  inlined and optimized out.  In that case we are lost and
21810                  assign the empty child.  This should not be big issue as
21811                  the function is likely unreachable too.  */
21812               tree context = NULL_TREE;
21813
21814               gcc_assert (node->created_for);
21815
21816               if (DECL_P (node->created_for))
21817                 context = DECL_CONTEXT (node->created_for);
21818               else if (TYPE_P (node->created_for))
21819                 context = TYPE_CONTEXT (node->created_for);
21820
21821               gcc_assert (context
21822                           && (TREE_CODE (context) == FUNCTION_DECL
21823                               || TREE_CODE (context) == NAMESPACE_DECL));
21824
21825               origin = lookup_decl_die (context);
21826               if (origin)
21827                 add_child_die (origin, die);
21828               else
21829                 add_child_die (comp_unit_die, die);
21830             }
21831         }
21832     }
21833
21834   limbo_die_list = NULL;
21835
21836   resolve_addr (comp_unit_die);
21837
21838   for (node = deferred_asm_name; node; node = node->next)
21839     {
21840       tree decl = node->created_for;
21841       if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
21842         {
21843           add_AT_string (node->die, AT_linkage_name,
21844                          IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
21845           move_linkage_attr (node->die);
21846         }
21847     }
21848
21849   deferred_asm_name = NULL;
21850
21851   /* Walk through the list of incomplete types again, trying once more to
21852      emit full debugging info for them.  */
21853   retry_incomplete_types ();
21854
21855   if (flag_eliminate_unused_debug_types)
21856     prune_unused_types ();
21857
21858   /* Generate separate CUs for each of the include files we've seen.
21859      They will go into limbo_die_list.  */
21860   if (flag_eliminate_dwarf2_dups && dwarf_version < 4)
21861     break_out_includes (comp_unit_die);
21862
21863   /* Generate separate COMDAT sections for type DIEs. */
21864   if (dwarf_version >= 4)
21865     {
21866       break_out_comdat_types (comp_unit_die);
21867
21868       /* Each new type_unit DIE was added to the limbo die list when created.
21869          Since these have all been added to comdat_type_list, clear the
21870          limbo die list.  */
21871       limbo_die_list = NULL;
21872
21873       /* For each new comdat type unit, copy declarations for incomplete
21874          types to make the new unit self-contained (i.e., no direct
21875          references to the main compile unit).  */
21876       for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
21877         copy_decls_for_unworthy_types (ctnode->root_die);
21878       copy_decls_for_unworthy_types (comp_unit_die);
21879
21880       /* In the process of copying declarations from one unit to another,
21881          we may have left some declarations behind that are no longer
21882          referenced.  Prune them.  */
21883       prune_unused_types ();
21884     }
21885
21886   /* Traverse the DIE's and add add sibling attributes to those DIE's
21887      that have children.  */
21888   add_sibling_attributes (comp_unit_die);
21889   for (node = limbo_die_list; node; node = node->next)
21890     add_sibling_attributes (node->die);
21891   for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
21892     add_sibling_attributes (ctnode->root_die);
21893
21894   /* Output a terminator label for the .text section.  */
21895   switch_to_section (text_section);
21896   targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
21897   if (flag_reorder_blocks_and_partition)
21898     {
21899       switch_to_section (unlikely_text_section ());
21900       targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
21901     }
21902
21903   /* We can only use the low/high_pc attributes if all of the code was
21904      in .text.  */
21905   if (!have_multiple_function_sections
21906       || !(dwarf_version >= 3 || !dwarf_strict))
21907     {
21908       add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
21909       add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
21910     }
21911
21912   else
21913     {
21914       unsigned fde_idx = 0;
21915       bool range_list_added = false;
21916
21917       /* We need to give .debug_loc and .debug_ranges an appropriate
21918          "base address".  Use zero so that these addresses become
21919          absolute.  Historically, we've emitted the unexpected
21920          DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
21921          Emit both to give time for other tools to adapt.  */
21922       add_AT_addr (comp_unit_die, DW_AT_low_pc, const0_rtx);
21923       add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
21924
21925       if (text_section_used)
21926         add_ranges_by_labels (comp_unit_die, text_section_label,
21927                               text_end_label, &range_list_added);
21928       if (flag_reorder_blocks_and_partition && cold_text_section_used)
21929         add_ranges_by_labels (comp_unit_die, cold_text_section_label,
21930                               cold_end_label, &range_list_added);
21931
21932       for (fde_idx = 0; fde_idx < fde_table_in_use; fde_idx++)
21933         {
21934           dw_fde_ref fde = &fde_table[fde_idx];
21935
21936           if (fde->dw_fde_switched_sections)
21937             {
21938               if (!fde->in_std_section)
21939                 add_ranges_by_labels (comp_unit_die,
21940                                       fde->dw_fde_hot_section_label,
21941                                       fde->dw_fde_hot_section_end_label,
21942                                       &range_list_added);
21943               if (!fde->cold_in_std_section)
21944                 add_ranges_by_labels (comp_unit_die,
21945                                       fde->dw_fde_unlikely_section_label,
21946                                       fde->dw_fde_unlikely_section_end_label,
21947                                       &range_list_added);
21948             }
21949           else if (!fde->in_std_section)
21950             add_ranges_by_labels (comp_unit_die, fde->dw_fde_begin,
21951                                   fde->dw_fde_end, &range_list_added);
21952         }
21953
21954       if (range_list_added)
21955         add_ranges (NULL);
21956     }
21957
21958   /* Output location list section if necessary.  */
21959   if (have_location_lists)
21960     {
21961       /* Output the location lists info.  */
21962       switch_to_section (debug_loc_section);
21963       ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
21964                                    DEBUG_LOC_SECTION_LABEL, 0);
21965       ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
21966       output_location_lists (die);
21967     }
21968
21969   if (debug_info_level >= DINFO_LEVEL_NORMAL)
21970     add_AT_lineptr (comp_unit_die, DW_AT_stmt_list,
21971                     debug_line_section_label);
21972
21973   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
21974     add_AT_macptr (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
21975
21976   /* Output all of the compilation units.  We put the main one last so that
21977      the offsets are available to output_pubnames.  */
21978   for (node = limbo_die_list; node; node = node->next)
21979     output_comp_unit (node->die, 0);
21980
21981   comdat_type_table = htab_create (100, htab_ct_hash, htab_ct_eq, NULL);
21982   for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
21983     {
21984       void **slot = htab_find_slot (comdat_type_table, ctnode, INSERT);
21985
21986       /* Don't output duplicate types.  */
21987       if (*slot != HTAB_EMPTY_ENTRY)
21988         continue;
21989
21990       /* Add a pointer to the line table for the main compilation unit
21991          so that the debugger can make sense of DW_AT_decl_file
21992          attributes.  */
21993       if (debug_info_level >= DINFO_LEVEL_NORMAL)
21994         add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
21995                         debug_line_section_label);
21996
21997       output_comdat_type_unit (ctnode);
21998       *slot = ctnode;
21999     }
22000   htab_delete (comdat_type_table);
22001
22002   /* Output the main compilation unit if non-empty or if .debug_macinfo
22003      has been emitted.  */
22004   output_comp_unit (comp_unit_die, debug_info_level >= DINFO_LEVEL_VERBOSE);
22005
22006   /* Output the abbreviation table.  */
22007   switch_to_section (debug_abbrev_section);
22008   output_abbrev_section ();
22009
22010   /* Output public names table if necessary.  */
22011   if (!VEC_empty (pubname_entry, pubname_table))
22012     {
22013       switch_to_section (debug_pubnames_section);
22014       output_pubnames (pubname_table);
22015     }
22016
22017   /* Output public types table if necessary.  */
22018   /* ??? Only defined by DWARF3, but emitted by Darwin for DWARF2.
22019      It shouldn't hurt to emit it always, since pure DWARF2 consumers
22020      simply won't look for the section.  */
22021   if (!VEC_empty (pubname_entry, pubtype_table))
22022     {
22023       switch_to_section (debug_pubtypes_section);
22024       output_pubnames (pubtype_table);
22025     }
22026
22027   /* Output direct and virtual call tables if necessary.  */
22028   if (!VEC_empty (dcall_entry, dcall_table))
22029     {
22030       switch_to_section (debug_dcall_section);
22031       output_dcall_table ();
22032     }
22033   if (!VEC_empty (vcall_entry, vcall_table))
22034     {
22035       switch_to_section (debug_vcall_section);
22036       output_vcall_table ();
22037     }
22038
22039   /* Output the address range information.  We only put functions in the arange
22040      table, so don't write it out if we don't have any.  */
22041   if (fde_table_in_use)
22042     {
22043       switch_to_section (debug_aranges_section);
22044       output_aranges ();
22045     }
22046
22047   /* Output ranges section if necessary.  */
22048   if (ranges_table_in_use)
22049     {
22050       switch_to_section (debug_ranges_section);
22051       ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
22052       output_ranges ();
22053     }
22054
22055   /* Output the source line correspondence table.  We must do this
22056      even if there is no line information.  Otherwise, on an empty
22057      translation unit, we will generate a present, but empty,
22058      .debug_info section.  IRIX 6.5 `nm' will then complain when
22059      examining the file.  This is done late so that any filenames
22060      used by the debug_info section are marked as 'used'.  */
22061   if (! DWARF2_ASM_LINE_DEBUG_INFO)
22062     {
22063       switch_to_section (debug_line_section);
22064       output_line_info ();
22065     }
22066
22067   /* Have to end the macro section.  */
22068   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
22069     {
22070       switch_to_section (debug_macinfo_section);
22071       dw2_asm_output_data (1, 0, "End compilation unit");
22072     }
22073
22074   /* If we emitted any DW_FORM_strp form attribute, output the string
22075      table too.  */
22076   if (debug_str_hash)
22077     htab_traverse (debug_str_hash, output_indirect_string, NULL);
22078 }
22079 #else
22080
22081 /* This should never be used, but its address is needed for comparisons.  */
22082 const struct gcc_debug_hooks dwarf2_debug_hooks =
22083 {
22084   0,            /* init */
22085   0,            /* finish */
22086   0,            /* assembly_start */
22087   0,            /* define */
22088   0,            /* undef */
22089   0,            /* start_source_file */
22090   0,            /* end_source_file */
22091   0,            /* begin_block */
22092   0,            /* end_block */
22093   0,            /* ignore_block */
22094   0,            /* source_line */
22095   0,            /* begin_prologue */
22096   0,            /* end_prologue */
22097   0,            /* end_epilogue */
22098   0,            /* begin_function */
22099   0,            /* end_function */
22100   0,            /* function_decl */
22101   0,            /* global_decl */
22102   0,            /* type_decl */
22103   0,            /* imported_module_or_decl */
22104   0,            /* deferred_inline_function */
22105   0,            /* outlining_inline_function */
22106   0,            /* label */
22107   0,            /* handle_pch */
22108   0,            /* var_location */
22109   0,            /* switch_text_section */
22110   0,            /* direct_call */
22111   0,            /* virtual_call_token */
22112   0,            /* copy_call_info */
22113   0,            /* virtual_call */
22114   0,            /* set_name */
22115   0             /* start_end_main_source_file */
22116 };
22117
22118 #endif /* DWARF2_DEBUGGING_INFO */
22119
22120 #include "gt-dwarf2out.h"