OSDN Git Service

* cselib.c (promote_debug_loc): Allow l->next non-NULL for
[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, 2011
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 #include "cfglayout.h"
96
97 static void dwarf2out_source_line (unsigned int, const char *, int, bool);
98 static rtx last_var_location_insn;
99
100 #ifdef VMS_DEBUGGING_INFO
101 int vms_file_stats_name (const char *, long long *, long *, char *, int *);
102
103 /* Define this macro to be a nonzero value if the directory specifications
104     which are output in the debug info should end with a separator.  */
105 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 1
106 /* Define this macro to evaluate to a nonzero value if GCC should refrain
107    from generating indirect strings in DWARF2 debug information, for instance
108    if your target is stuck with an old version of GDB that is unable to
109    process them properly or uses VMS Debug.  */
110 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 1
111 #else
112 #define DWARF2_DIR_SHOULD_END_WITH_SEPARATOR 0
113 #define DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET 0
114 #endif
115
116 /* ??? Poison these here until it can be done generically.  They've been
117    totally replaced in this file; make sure it stays that way.  */
118 #undef DWARF2_UNWIND_INFO
119 #undef DWARF2_FRAME_INFO
120 #if (GCC_VERSION >= 3000)
121  #pragma GCC poison DWARF2_UNWIND_INFO DWARF2_FRAME_INFO
122 #endif
123
124 #ifndef INCOMING_RETURN_ADDR_RTX
125 #define INCOMING_RETURN_ADDR_RTX  (gcc_unreachable (), NULL_RTX)
126 #endif
127
128 /* Map register numbers held in the call frame info that gcc has
129    collected using DWARF_FRAME_REGNUM to those that should be output in
130    .debug_frame and .eh_frame.  */
131 #ifndef DWARF2_FRAME_REG_OUT
132 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
133 #endif
134
135 /* Save the result of dwarf2out_do_frame across PCH.  */
136 static GTY(()) bool saved_do_cfi_asm = 0;
137
138 /* Decide whether we want to emit frame unwind information for the current
139    translation unit.  */
140
141 int
142 dwarf2out_do_frame (void)
143 {
144   /* We want to emit correct CFA location expressions or lists, so we
145      have to return true if we're going to output debug info, even if
146      we're not going to output frame or unwind info.  */
147   if (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
148     return true;
149
150   if (saved_do_cfi_asm)
151     return true;
152
153   if (targetm.debug_unwind_info () == UI_DWARF2)
154     return true;
155
156   if ((flag_unwind_tables || flag_exceptions)
157       && targetm.except_unwind_info (&global_options) == UI_DWARF2)
158     return true;
159
160   return false;
161 }
162
163 /* Decide whether to emit frame unwind via assembler directives.  */
164
165 int
166 dwarf2out_do_cfi_asm (void)
167 {
168   int enc;
169
170 #ifdef MIPS_DEBUGGING_INFO
171   return false;
172 #endif
173   if (saved_do_cfi_asm)
174     return true;
175   if (!flag_dwarf2_cfi_asm || !dwarf2out_do_frame ())
176     return false;
177   if (!HAVE_GAS_CFI_PERSONALITY_DIRECTIVE)
178     return false;
179
180   /* Make sure the personality encoding is one the assembler can support.
181      In particular, aligned addresses can't be handled.  */
182   enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,/*global=*/1);
183   if ((enc & 0x70) != 0 && (enc & 0x70) != DW_EH_PE_pcrel)
184     return false;
185   enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,/*global=*/0);
186   if ((enc & 0x70) != 0 && (enc & 0x70) != DW_EH_PE_pcrel)
187     return false;
188
189   /* If we can't get the assembler to emit only .debug_frame, and we don't need
190      dwarf2 unwind info for exceptions, then emit .debug_frame by hand.  */
191   if (!HAVE_GAS_CFI_SECTIONS_DIRECTIVE
192       && !flag_unwind_tables && !flag_exceptions
193       && targetm.except_unwind_info (&global_options) != UI_DWARF2)
194     return false;
195
196   saved_do_cfi_asm = true;
197   return true;
198 }
199
200 /* The size of the target's pointer type.  */
201 #ifndef PTR_SIZE
202 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
203 #endif
204
205 /* Array of RTXes referenced by the debugging information, which therefore
206    must be kept around forever.  */
207 static GTY(()) VEC(rtx,gc) *used_rtx_array;
208
209 /* A pointer to the base of a list of incomplete types which might be
210    completed at some later time.  incomplete_types_list needs to be a
211    VEC(tree,gc) because we want to tell the garbage collector about
212    it.  */
213 static GTY(()) VEC(tree,gc) *incomplete_types;
214
215 /* A pointer to the base of a table of references to declaration
216    scopes.  This table is a display which tracks the nesting
217    of declaration scopes at the current scope and containing
218    scopes.  This table is used to find the proper place to
219    define type declaration DIE's.  */
220 static GTY(()) VEC(tree,gc) *decl_scope_table;
221
222 /* Pointers to various DWARF2 sections.  */
223 static GTY(()) section *debug_info_section;
224 static GTY(()) section *debug_abbrev_section;
225 static GTY(()) section *debug_aranges_section;
226 static GTY(()) section *debug_macinfo_section;
227 static GTY(()) section *debug_line_section;
228 static GTY(()) section *debug_loc_section;
229 static GTY(()) section *debug_pubnames_section;
230 static GTY(()) section *debug_pubtypes_section;
231 static GTY(()) section *debug_str_section;
232 static GTY(()) section *debug_ranges_section;
233 static GTY(()) section *debug_frame_section;
234
235 /* Personality decl of current unit.  Used only when assembler does not support
236    personality CFI.  */
237 static GTY(()) rtx current_unit_personality;
238
239 /* How to start an assembler comment.  */
240 #ifndef ASM_COMMENT_START
241 #define ASM_COMMENT_START ";#"
242 #endif
243
244 typedef struct dw_cfi_struct *dw_cfi_ref;
245 typedef struct dw_fde_struct *dw_fde_ref;
246 typedef union  dw_cfi_oprnd_struct *dw_cfi_oprnd_ref;
247
248 /* Call frames are described using a sequence of Call Frame
249    Information instructions.  The register number, offset
250    and address fields are provided as possible operands;
251    their use is selected by the opcode field.  */
252
253 enum dw_cfi_oprnd_type {
254   dw_cfi_oprnd_unused,
255   dw_cfi_oprnd_reg_num,
256   dw_cfi_oprnd_offset,
257   dw_cfi_oprnd_addr,
258   dw_cfi_oprnd_loc
259 };
260
261 typedef union GTY(()) dw_cfi_oprnd_struct {
262   unsigned int GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num;
263   HOST_WIDE_INT GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset;
264   const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr;
265   struct dw_loc_descr_struct * GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc;
266 }
267 dw_cfi_oprnd;
268
269 typedef struct GTY(()) dw_cfi_struct {
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 DEF_VEC_P (dw_cfi_ref);
279 DEF_VEC_ALLOC_P (dw_cfi_ref, heap);
280 DEF_VEC_ALLOC_P (dw_cfi_ref, gc);
281
282 typedef VEC(dw_cfi_ref, gc) *cfi_vec;
283
284 /* This is how we define the location of the CFA. We use to handle it
285    as REG + OFFSET all the time,  but now it can be more complex.
286    It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
287    Instead of passing around REG and OFFSET, we pass a copy
288    of this structure.  */
289 typedef struct cfa_loc {
290   HOST_WIDE_INT offset;
291   HOST_WIDE_INT base_offset;
292   unsigned int reg;
293   BOOL_BITFIELD indirect : 1;  /* 1 if CFA is accessed via a dereference.  */
294   BOOL_BITFIELD in_use : 1;    /* 1 if a saved cfa is stored here.  */
295 } dw_cfa_location;
296
297 /* All call frame descriptions (FDE's) in the GCC generated DWARF
298    refer to a single Common Information Entry (CIE), defined at
299    the beginning of the .debug_frame section.  This use of a single
300    CIE obviates the need to keep track of multiple CIE's
301    in the DWARF generation routines below.  */
302
303 typedef struct GTY(()) dw_fde_struct {
304   tree decl;
305   const char *dw_fde_begin;
306   const char *dw_fde_current_label;
307   const char *dw_fde_end;
308   const char *dw_fde_vms_end_prologue;
309   const char *dw_fde_vms_begin_epilogue;
310   const char *dw_fde_second_begin;
311   const char *dw_fde_second_end;
312   cfi_vec dw_fde_cfi;
313   int dw_fde_switch_cfi_index; /* Last CFI before switching sections.  */
314   HOST_WIDE_INT stack_realignment;
315   unsigned funcdef_number;
316   /* Dynamic realign argument pointer register.  */
317   unsigned int drap_reg;
318   /* Virtual dynamic realign argument pointer register.  */
319   unsigned int vdrap_reg;
320   /* These 3 flags are copied from rtl_data in function.h.  */
321   unsigned all_throwers_are_sibcalls : 1;
322   unsigned uses_eh_lsda : 1;
323   unsigned nothrow : 1;
324   /* Whether we did stack realign in this call frame.  */
325   unsigned stack_realign : 1;
326   /* Whether dynamic realign argument pointer register has been saved.  */
327   unsigned drap_reg_saved: 1;
328   /* True iff dw_fde_begin label is in text_section or cold_text_section.  */
329   unsigned in_std_section : 1;
330   /* True iff dw_fde_second_begin label is in text_section or
331      cold_text_section.  */
332   unsigned second_in_std_section : 1;
333 }
334 dw_fde_node;
335
336 /* Maximum size (in bytes) of an artificially generated label.  */
337 #define MAX_ARTIFICIAL_LABEL_BYTES      30
338
339 /* The size of addresses as they appear in the Dwarf 2 data.
340    Some architectures use word addresses to refer to code locations,
341    but Dwarf 2 info always uses byte addresses.  On such machines,
342    Dwarf 2 addresses need to be larger than the architecture's
343    pointers.  */
344 #ifndef DWARF2_ADDR_SIZE
345 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
346 #endif
347
348 /* The size in bytes of a DWARF field indicating an offset or length
349    relative to a debug info section, specified to be 4 bytes in the
350    DWARF-2 specification.  The SGI/MIPS ABI defines it to be the same
351    as PTR_SIZE.  */
352
353 #ifndef DWARF_OFFSET_SIZE
354 #define DWARF_OFFSET_SIZE 4
355 #endif
356
357 /* The size in bytes of a DWARF 4 type signature.  */
358
359 #ifndef DWARF_TYPE_SIGNATURE_SIZE
360 #define DWARF_TYPE_SIGNATURE_SIZE 8
361 #endif
362
363 /* According to the (draft) DWARF 3 specification, the initial length
364    should either be 4 or 12 bytes.  When it's 12 bytes, the first 4
365    bytes are 0xffffffff, followed by the length stored in the next 8
366    bytes.
367
368    However, the SGI/MIPS ABI uses an initial length which is equal to
369    DWARF_OFFSET_SIZE.  It is defined (elsewhere) accordingly.  */
370
371 #ifndef DWARF_INITIAL_LENGTH_SIZE
372 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
373 #endif
374
375 /* Round SIZE up to the nearest BOUNDARY.  */
376 #define DWARF_ROUND(SIZE,BOUNDARY) \
377   ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
378
379 /* Offsets recorded in opcodes are a multiple of this alignment factor.  */
380 #ifndef DWARF_CIE_DATA_ALIGNMENT
381 #ifdef STACK_GROWS_DOWNWARD
382 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
383 #else
384 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
385 #endif
386 #endif
387
388 /* CIE identifier.  */
389 #if HOST_BITS_PER_WIDE_INT >= 64
390 #define DWARF_CIE_ID \
391   (unsigned HOST_WIDE_INT) (DWARF_OFFSET_SIZE == 4 ? DW_CIE_ID : DW64_CIE_ID)
392 #else
393 #define DWARF_CIE_ID DW_CIE_ID
394 #endif
395
396 /* A pointer to the base of a table that contains frame description
397    information for each routine.  */
398 static GTY((length ("fde_table_allocated"))) dw_fde_ref fde_table;
399
400 /* Number of elements currently allocated for fde_table.  */
401 static GTY(()) unsigned fde_table_allocated;
402
403 /* Number of elements in fde_table currently in use.  */
404 static GTY(()) unsigned fde_table_in_use;
405
406 /* Size (in elements) of increments by which we may expand the
407    fde_table.  */
408 #define FDE_TABLE_INCREMENT 256
409
410 /* Get the current fde_table entry we should use.  */
411
412 static inline dw_fde_ref
413 current_fde (void)
414 {
415   return fde_table_in_use ? &fde_table[fde_table_in_use - 1] : NULL;
416 }
417
418 /* A vector of call frame insns for the CIE.  */
419 static GTY(()) cfi_vec cie_cfi_vec;
420
421 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
422    attribute that accelerates the lookup of the FDE associated
423    with the subprogram.  This variable holds the table index of the FDE
424    associated with the current function (body) definition.  */
425 static unsigned current_funcdef_fde;
426
427 struct GTY(()) indirect_string_node {
428   const char *str;
429   unsigned int refcount;
430   enum dwarf_form form;
431   char *label;
432 };
433
434 static GTY ((param_is (struct indirect_string_node))) htab_t debug_str_hash;
435
436 static GTY(()) int dw2_string_counter;
437 static GTY(()) unsigned long dwarf2out_cfi_label_num;
438
439 /* True if the compilation unit places functions in more than one section.  */
440 static GTY(()) bool have_multiple_function_sections = false;
441
442 /* Whether the default text and cold text sections have been used at all.  */
443
444 static GTY(()) bool text_section_used = false;
445 static GTY(()) bool cold_text_section_used = false;
446
447 /* The default cold text section.  */
448 static GTY(()) section *cold_text_section;
449
450 /* Forward declarations for functions defined in this file.  */
451
452 static char *stripattributes (const char *);
453 static const char *dwarf_cfi_name (unsigned);
454 static dw_cfi_ref new_cfi (void);
455 static void add_cfi (cfi_vec *, dw_cfi_ref);
456 static void add_fde_cfi (const char *, dw_cfi_ref);
457 static void lookup_cfa_1 (dw_cfi_ref, dw_cfa_location *, dw_cfa_location *);
458 static void lookup_cfa (dw_cfa_location *);
459 static void reg_save (const char *, unsigned, unsigned, HOST_WIDE_INT);
460 static void initial_return_save (rtx);
461 static HOST_WIDE_INT stack_adjust_offset (const_rtx, HOST_WIDE_INT,
462                                           HOST_WIDE_INT);
463 static void output_cfi (dw_cfi_ref, dw_fde_ref, int);
464 static void output_cfi_directive (dw_cfi_ref);
465 static void output_call_frame_info (int);
466 static void dwarf2out_note_section_used (void);
467 static bool clobbers_queued_reg_save (const_rtx);
468 static void dwarf2out_frame_debug_expr (rtx, const char *);
469
470 /* Support for complex CFA locations.  */
471 static void output_cfa_loc (dw_cfi_ref, int);
472 static void output_cfa_loc_raw (dw_cfi_ref);
473 static void get_cfa_from_loc_descr (dw_cfa_location *,
474                                     struct dw_loc_descr_struct *);
475 static struct dw_loc_descr_struct *build_cfa_loc
476   (dw_cfa_location *, HOST_WIDE_INT);
477 static struct dw_loc_descr_struct *build_cfa_aligned_loc
478   (HOST_WIDE_INT, HOST_WIDE_INT);
479 static void def_cfa_1 (const char *, dw_cfa_location *);
480 static struct dw_loc_descr_struct *mem_loc_descriptor
481   (rtx, enum machine_mode mode, enum machine_mode mem_mode,
482    enum var_init_status);
483
484 /* How to start an assembler comment.  */
485 #ifndef ASM_COMMENT_START
486 #define ASM_COMMENT_START ";#"
487 #endif
488
489 /* Data and reference forms for relocatable data.  */
490 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
491 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
492
493 #ifndef DEBUG_FRAME_SECTION
494 #define DEBUG_FRAME_SECTION     ".debug_frame"
495 #endif
496
497 #ifndef FUNC_BEGIN_LABEL
498 #define FUNC_BEGIN_LABEL        "LFB"
499 #endif
500
501 #ifndef FUNC_END_LABEL
502 #define FUNC_END_LABEL          "LFE"
503 #endif
504
505 #ifndef PROLOGUE_END_LABEL
506 #define PROLOGUE_END_LABEL      "LPE"
507 #endif
508
509 #ifndef EPILOGUE_BEGIN_LABEL
510 #define EPILOGUE_BEGIN_LABEL    "LEB"
511 #endif
512
513 #ifndef FRAME_BEGIN_LABEL
514 #define FRAME_BEGIN_LABEL       "Lframe"
515 #endif
516 #define CIE_AFTER_SIZE_LABEL    "LSCIE"
517 #define CIE_END_LABEL           "LECIE"
518 #define FDE_LABEL               "LSFDE"
519 #define FDE_AFTER_SIZE_LABEL    "LASFDE"
520 #define FDE_END_LABEL           "LEFDE"
521 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
522 #define LINE_NUMBER_END_LABEL   "LELT"
523 #define LN_PROLOG_AS_LABEL      "LASLTP"
524 #define LN_PROLOG_END_LABEL     "LELTP"
525 #define DIE_LABEL_PREFIX        "DW"
526
527 /* The DWARF 2 CFA column which tracks the return address.  Normally this
528    is the column for PC, or the first column after all of the hard
529    registers.  */
530 #ifndef DWARF_FRAME_RETURN_COLUMN
531 #ifdef PC_REGNUM
532 #define DWARF_FRAME_RETURN_COLUMN       DWARF_FRAME_REGNUM (PC_REGNUM)
533 #else
534 #define DWARF_FRAME_RETURN_COLUMN       DWARF_FRAME_REGISTERS
535 #endif
536 #endif
537
538 /* The mapping from gcc register number to DWARF 2 CFA column number.  By
539    default, we just provide columns for all registers.  */
540 #ifndef DWARF_FRAME_REGNUM
541 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
542 #endif
543 \f
544 /* Match the base name of a file to the base name of a compilation unit. */
545
546 static int
547 matches_main_base (const char *path)
548 {
549   /* Cache the last query. */
550   static const char *last_path = NULL;
551   static int last_match = 0;
552   if (path != last_path)
553     {
554       const char *base;
555       int length = base_of_path (path, &base);
556       last_path = path;
557       last_match = (length == main_input_baselength
558                     && memcmp (base, main_input_basename, length) == 0);
559     }
560   return last_match;
561 }
562
563 #ifdef DEBUG_DEBUG_STRUCT
564
565 static int
566 dump_struct_debug (tree type, enum debug_info_usage usage,
567                    enum debug_struct_file criterion, int generic,
568                    int matches, int result)
569 {
570   /* Find the type name. */
571   tree type_decl = TYPE_STUB_DECL (type);
572   tree t = type_decl;
573   const char *name = 0;
574   if (TREE_CODE (t) == TYPE_DECL)
575     t = DECL_NAME (t);
576   if (t)
577     name = IDENTIFIER_POINTER (t);
578
579   fprintf (stderr, "    struct %d %s %s %s %s %d %p %s\n",
580            criterion,
581            DECL_IN_SYSTEM_HEADER (type_decl) ? "sys" : "usr",
582            matches ? "bas" : "hdr",
583            generic ? "gen" : "ord",
584            usage == DINFO_USAGE_DFN ? ";" :
585              usage == DINFO_USAGE_DIR_USE ? "." : "*",
586            result,
587            (void*) type_decl, name);
588   return result;
589 }
590 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
591   dump_struct_debug (type, usage, criterion, generic, matches, result)
592
593 #else
594
595 #define DUMP_GSTRUCT(type, usage, criterion, generic, matches, result) \
596   (result)
597
598 #endif
599
600 static bool
601 should_emit_struct_debug (tree type, enum debug_info_usage usage)
602 {
603   enum debug_struct_file criterion;
604   tree type_decl;
605   bool generic = lang_hooks.types.generic_p (type);
606
607   if (generic)
608     criterion = debug_struct_generic[usage];
609   else
610     criterion = debug_struct_ordinary[usage];
611
612   if (criterion == DINFO_STRUCT_FILE_NONE)
613     return DUMP_GSTRUCT (type, usage, criterion, generic, false, false);
614   if (criterion == DINFO_STRUCT_FILE_ANY)
615     return DUMP_GSTRUCT (type, usage, criterion, generic, false, true);
616
617   type_decl = TYPE_STUB_DECL (TYPE_MAIN_VARIANT (type));
618
619   if (criterion == DINFO_STRUCT_FILE_SYS && DECL_IN_SYSTEM_HEADER (type_decl))
620     return DUMP_GSTRUCT (type, usage, criterion, generic, false, true);
621
622   if (matches_main_base (DECL_SOURCE_FILE (type_decl)))
623     return DUMP_GSTRUCT (type, usage, criterion, generic, true, true);
624   return DUMP_GSTRUCT (type, usage, criterion, generic, false, false);
625 }
626 \f
627 /* Hook used by __throw.  */
628
629 rtx
630 expand_builtin_dwarf_sp_column (void)
631 {
632   unsigned int dwarf_regnum = DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM);
633   return GEN_INT (DWARF2_FRAME_REG_OUT (dwarf_regnum, 1));
634 }
635
636 /* Return a pointer to a copy of the section string name S with all
637    attributes stripped off, and an asterisk prepended (for assemble_name).  */
638
639 static inline char *
640 stripattributes (const char *s)
641 {
642   char *stripped = XNEWVEC (char, strlen (s) + 2);
643   char *p = stripped;
644
645   *p++ = '*';
646
647   while (*s && *s != ',')
648     *p++ = *s++;
649
650   *p = '\0';
651   return stripped;
652 }
653
654 /* MEM is a memory reference for the register size table, each element of
655    which has mode MODE.  Initialize column C as a return address column.  */
656
657 static void
658 init_return_column_size (enum machine_mode mode, rtx mem, unsigned int c)
659 {
660   HOST_WIDE_INT offset = c * GET_MODE_SIZE (mode);
661   HOST_WIDE_INT size = GET_MODE_SIZE (Pmode);
662   emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
663 }
664
665 /* Divide OFF by DWARF_CIE_DATA_ALIGNMENT, asserting no remainder.  */
666
667 static inline HOST_WIDE_INT
668 div_data_align (HOST_WIDE_INT off)
669 {
670   HOST_WIDE_INT r = off / DWARF_CIE_DATA_ALIGNMENT;
671   gcc_assert (r * DWARF_CIE_DATA_ALIGNMENT == off);
672   return r;
673 }
674
675 /* Return true if we need a signed version of a given opcode
676    (e.g. DW_CFA_offset_extended_sf vs DW_CFA_offset_extended).  */
677
678 static inline bool
679 need_data_align_sf_opcode (HOST_WIDE_INT off)
680 {
681   return DWARF_CIE_DATA_ALIGNMENT < 0 ? off > 0 : off < 0;
682 }
683
684 /* Generate code to initialize the register size table.  */
685
686 void
687 expand_builtin_init_dwarf_reg_sizes (tree address)
688 {
689   unsigned int i;
690   enum machine_mode mode = TYPE_MODE (char_type_node);
691   rtx addr = expand_normal (address);
692   rtx mem = gen_rtx_MEM (BLKmode, addr);
693   bool wrote_return_column = false;
694
695   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
696     {
697       int rnum = DWARF2_FRAME_REG_OUT (DWARF_FRAME_REGNUM (i), 1);
698
699       if (rnum < DWARF_FRAME_REGISTERS)
700         {
701           HOST_WIDE_INT offset = rnum * GET_MODE_SIZE (mode);
702           enum machine_mode save_mode = reg_raw_mode[i];
703           HOST_WIDE_INT size;
704
705           if (HARD_REGNO_CALL_PART_CLOBBERED (i, save_mode))
706             save_mode = choose_hard_reg_mode (i, 1, true);
707           if (DWARF_FRAME_REGNUM (i) == DWARF_FRAME_RETURN_COLUMN)
708             {
709               if (save_mode == VOIDmode)
710                 continue;
711               wrote_return_column = true;
712             }
713           size = GET_MODE_SIZE (save_mode);
714           if (offset < 0)
715             continue;
716
717           emit_move_insn (adjust_address (mem, mode, offset),
718                           gen_int_mode (size, mode));
719         }
720     }
721
722   if (!wrote_return_column)
723     init_return_column_size (mode, mem, DWARF_FRAME_RETURN_COLUMN);
724
725 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
726   init_return_column_size (mode, mem, DWARF_ALT_FRAME_RETURN_COLUMN);
727 #endif
728
729   targetm.init_dwarf_reg_sizes_extra (address);
730 }
731
732 /* Convert a DWARF call frame info. operation to its string name */
733
734 static const char *
735 dwarf_cfi_name (unsigned int cfi_opc)
736 {
737   switch (cfi_opc)
738     {
739     case DW_CFA_advance_loc:
740       return "DW_CFA_advance_loc";
741     case DW_CFA_offset:
742       return "DW_CFA_offset";
743     case DW_CFA_restore:
744       return "DW_CFA_restore";
745     case DW_CFA_nop:
746       return "DW_CFA_nop";
747     case DW_CFA_set_loc:
748       return "DW_CFA_set_loc";
749     case DW_CFA_advance_loc1:
750       return "DW_CFA_advance_loc1";
751     case DW_CFA_advance_loc2:
752       return "DW_CFA_advance_loc2";
753     case DW_CFA_advance_loc4:
754       return "DW_CFA_advance_loc4";
755     case DW_CFA_offset_extended:
756       return "DW_CFA_offset_extended";
757     case DW_CFA_restore_extended:
758       return "DW_CFA_restore_extended";
759     case DW_CFA_undefined:
760       return "DW_CFA_undefined";
761     case DW_CFA_same_value:
762       return "DW_CFA_same_value";
763     case DW_CFA_register:
764       return "DW_CFA_register";
765     case DW_CFA_remember_state:
766       return "DW_CFA_remember_state";
767     case DW_CFA_restore_state:
768       return "DW_CFA_restore_state";
769     case DW_CFA_def_cfa:
770       return "DW_CFA_def_cfa";
771     case DW_CFA_def_cfa_register:
772       return "DW_CFA_def_cfa_register";
773     case DW_CFA_def_cfa_offset:
774       return "DW_CFA_def_cfa_offset";
775
776     /* DWARF 3 */
777     case DW_CFA_def_cfa_expression:
778       return "DW_CFA_def_cfa_expression";
779     case DW_CFA_expression:
780       return "DW_CFA_expression";
781     case DW_CFA_offset_extended_sf:
782       return "DW_CFA_offset_extended_sf";
783     case DW_CFA_def_cfa_sf:
784       return "DW_CFA_def_cfa_sf";
785     case DW_CFA_def_cfa_offset_sf:
786       return "DW_CFA_def_cfa_offset_sf";
787
788     /* SGI/MIPS specific */
789     case DW_CFA_MIPS_advance_loc8:
790       return "DW_CFA_MIPS_advance_loc8";
791
792     /* GNU extensions */
793     case DW_CFA_GNU_window_save:
794       return "DW_CFA_GNU_window_save";
795     case DW_CFA_GNU_args_size:
796       return "DW_CFA_GNU_args_size";
797     case DW_CFA_GNU_negative_offset_extended:
798       return "DW_CFA_GNU_negative_offset_extended";
799
800     default:
801       return "DW_CFA_<unknown>";
802     }
803 }
804
805 /* Return a pointer to a newly allocated Call Frame Instruction.  */
806
807 static inline dw_cfi_ref
808 new_cfi (void)
809 {
810   dw_cfi_ref cfi = ggc_alloc_dw_cfi_node ();
811
812   cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
813   cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
814
815   return cfi;
816 }
817
818 /* Add a Call Frame Instruction to list of instructions.  */
819
820 static inline void
821 add_cfi (cfi_vec *vec, dw_cfi_ref cfi)
822 {
823   dw_fde_ref fde = current_fde ();
824
825   /* When DRAP is used, CFA is defined with an expression.  Redefine
826      CFA may lead to a different CFA value.   */
827   /* ??? Of course, this heuristic fails when we're annotating epilogues,
828      because of course we'll always want to redefine the CFA back to the
829      stack pointer on the way out.  Where should we move this check?  */
830   if (0 && fde && fde->drap_reg != INVALID_REGNUM)
831     switch (cfi->dw_cfi_opc)
832       {
833         case DW_CFA_def_cfa_register:
834         case DW_CFA_def_cfa_offset:
835         case DW_CFA_def_cfa_offset_sf:
836         case DW_CFA_def_cfa:
837         case DW_CFA_def_cfa_sf:
838           gcc_unreachable ();
839
840         default:
841           break;
842       }
843
844   VEC_safe_push (dw_cfi_ref, gc, *vec, cfi);
845 }
846
847 /* Generate a new label for the CFI info to refer to.  FORCE is true
848    if a label needs to be output even when using .cfi_* directives.  */
849
850 char *
851 dwarf2out_cfi_label (bool force)
852 {
853   static char label[20];
854
855   if (!force && dwarf2out_do_cfi_asm ())
856     {
857       /* In this case, we will be emitting the asm directive instead of
858          the label, so just return a placeholder to keep the rest of the
859          interfaces happy.  */
860       strcpy (label, "<do not output>");
861     }
862   else
863     {
864       int num = dwarf2out_cfi_label_num++;
865       ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", num);
866       ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LCFI", num);
867     }
868
869   return label;
870 }
871
872 /* True if remember_state should be emitted before following CFI directive.  */
873 static bool emit_cfa_remember;
874
875 /* True if any CFI directives were emitted at the current insn.  */
876 static bool any_cfis_emitted;
877
878 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
879    or to the CIE if LABEL is NULL.  */
880
881 static void
882 add_fde_cfi (const char *label, dw_cfi_ref cfi)
883 {
884   cfi_vec *vec;
885
886   if (cie_cfi_vec == NULL)
887     cie_cfi_vec = VEC_alloc (dw_cfi_ref, gc, 20);
888
889   vec = &cie_cfi_vec;
890
891   if (emit_cfa_remember)
892     {
893       dw_cfi_ref cfi_remember;
894
895       /* Emit the state save.  */
896       emit_cfa_remember = false;
897       cfi_remember = new_cfi ();
898       cfi_remember->dw_cfi_opc = DW_CFA_remember_state;
899       add_fde_cfi (label, cfi_remember);
900     }
901
902   if (dwarf2out_do_cfi_asm ())
903     {
904       if (label)
905         {
906           dw_fde_ref fde = current_fde ();
907
908           gcc_assert (fde != NULL);
909
910           /* We still have to add the cfi to the list so that lookup_cfa
911              works later on.  When -g2 and above we even need to force
912              emitting of CFI labels and add to list a DW_CFA_set_loc for
913              convert_cfa_to_fb_loc_list purposes.  If we're generating
914              DWARF3 output we use DW_OP_call_frame_cfa and so don't use
915              convert_cfa_to_fb_loc_list.  */
916           if (dwarf_version == 2
917               && debug_info_level > DINFO_LEVEL_TERSE
918               && (write_symbols == DWARF2_DEBUG
919                   || write_symbols == VMS_AND_DWARF2_DEBUG))
920             {
921               switch (cfi->dw_cfi_opc)
922                 {
923                 case DW_CFA_def_cfa_offset:
924                 case DW_CFA_def_cfa_offset_sf:
925                 case DW_CFA_def_cfa_register:
926                 case DW_CFA_def_cfa:
927                 case DW_CFA_def_cfa_sf:
928                 case DW_CFA_def_cfa_expression:
929                 case DW_CFA_restore_state:
930                   if (*label == 0 || strcmp (label, "<do not output>") == 0)
931                     label = dwarf2out_cfi_label (true);
932
933                   if (fde->dw_fde_current_label == NULL
934                       || strcmp (label, fde->dw_fde_current_label) != 0)
935                     {
936                       dw_cfi_ref xcfi;
937
938                       label = xstrdup (label);
939
940                       /* Set the location counter to the new label.  */
941                       xcfi = new_cfi ();
942                       /* It doesn't metter whether DW_CFA_set_loc
943                          or DW_CFA_advance_loc4 is added here, those aren't
944                          emitted into assembly, only looked up by
945                          convert_cfa_to_fb_loc_list.  */
946                       xcfi->dw_cfi_opc = DW_CFA_set_loc;
947                       xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
948                       add_cfi (&fde->dw_fde_cfi, xcfi);
949                       fde->dw_fde_current_label = label;
950                     }
951                   break;
952                 default:
953                   break;
954                 }
955             }
956
957           output_cfi_directive (cfi);
958
959           vec = &fde->dw_fde_cfi;
960           any_cfis_emitted = true;
961         }
962       /* ??? If this is a CFI for the CIE, we don't emit.  This
963          assumes that the standard CIE contents that the assembler
964          uses matches the standard CIE contents that the compiler
965          uses.  This is probably a bad assumption.  I'm not quite
966          sure how to address this for now.  */
967     }
968   else if (label)
969     {
970       dw_fde_ref fde = current_fde ();
971
972       gcc_assert (fde != NULL);
973
974       if (*label == 0)
975         label = dwarf2out_cfi_label (false);
976
977       if (fde->dw_fde_current_label == NULL
978           || strcmp (label, fde->dw_fde_current_label) != 0)
979         {
980           dw_cfi_ref xcfi;
981
982           label = xstrdup (label);
983
984           /* Set the location counter to the new label.  */
985           xcfi = new_cfi ();
986           /* If we have a current label, advance from there, otherwise
987              set the location directly using set_loc.  */
988           xcfi->dw_cfi_opc = fde->dw_fde_current_label
989                              ? DW_CFA_advance_loc4
990                              : DW_CFA_set_loc;
991           xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
992           add_cfi (&fde->dw_fde_cfi, xcfi);
993
994           fde->dw_fde_current_label = label;
995         }
996
997       vec = &fde->dw_fde_cfi;
998       any_cfis_emitted = true;
999     }
1000
1001   add_cfi (vec, cfi);
1002 }
1003
1004 /* Subroutine of lookup_cfa.  */
1005
1006 static void
1007 lookup_cfa_1 (dw_cfi_ref cfi, dw_cfa_location *loc, dw_cfa_location *remember)
1008 {
1009   switch (cfi->dw_cfi_opc)
1010     {
1011     case DW_CFA_def_cfa_offset:
1012     case DW_CFA_def_cfa_offset_sf:
1013       loc->offset = cfi->dw_cfi_oprnd1.dw_cfi_offset;
1014       break;
1015     case DW_CFA_def_cfa_register:
1016       loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
1017       break;
1018     case DW_CFA_def_cfa:
1019     case DW_CFA_def_cfa_sf:
1020       loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
1021       loc->offset = cfi->dw_cfi_oprnd2.dw_cfi_offset;
1022       break;
1023     case DW_CFA_def_cfa_expression:
1024       get_cfa_from_loc_descr (loc, cfi->dw_cfi_oprnd1.dw_cfi_loc);
1025       break;
1026
1027     case DW_CFA_remember_state:
1028       gcc_assert (!remember->in_use);
1029       *remember = *loc;
1030       remember->in_use = 1;
1031       break;
1032     case DW_CFA_restore_state:
1033       gcc_assert (remember->in_use);
1034       *loc = *remember;
1035       remember->in_use = 0;
1036       break;
1037
1038     default:
1039       break;
1040     }
1041 }
1042
1043 /* Find the previous value for the CFA.  */
1044
1045 static void
1046 lookup_cfa (dw_cfa_location *loc)
1047 {
1048   int ix;
1049   dw_cfi_ref cfi;
1050   dw_fde_ref fde;
1051   dw_cfa_location remember;
1052
1053   memset (loc, 0, sizeof (*loc));
1054   loc->reg = INVALID_REGNUM;
1055   remember = *loc;
1056
1057   FOR_EACH_VEC_ELT (dw_cfi_ref, cie_cfi_vec, ix, cfi)
1058     lookup_cfa_1 (cfi, loc, &remember);
1059
1060   fde = current_fde ();
1061   if (fde)
1062     FOR_EACH_VEC_ELT (dw_cfi_ref, fde->dw_fde_cfi, ix, cfi)
1063       lookup_cfa_1 (cfi, loc, &remember);
1064 }
1065
1066 /* The current rule for calculating the DWARF2 canonical frame address.  */
1067 static dw_cfa_location cfa;
1068
1069 /* The register used for saving registers to the stack, and its offset
1070    from the CFA.  */
1071 static dw_cfa_location cfa_store;
1072
1073 /* The current save location around an epilogue.  */
1074 static dw_cfa_location cfa_remember;
1075
1076 /* The running total of the size of arguments pushed onto the stack.  */
1077 static HOST_WIDE_INT args_size;
1078
1079 /* The last args_size we actually output.  */
1080 static HOST_WIDE_INT old_args_size;
1081
1082 /* Entry point to update the canonical frame address (CFA).
1083    LABEL is passed to add_fde_cfi.  The value of CFA is now to be
1084    calculated from REG+OFFSET.  */
1085
1086 void
1087 dwarf2out_def_cfa (const char *label, unsigned int reg, HOST_WIDE_INT offset)
1088 {
1089   dw_cfa_location loc;
1090   loc.indirect = 0;
1091   loc.base_offset = 0;
1092   loc.reg = reg;
1093   loc.offset = offset;
1094   def_cfa_1 (label, &loc);
1095 }
1096
1097 /* Determine if two dw_cfa_location structures define the same data.  */
1098
1099 static bool
1100 cfa_equal_p (const dw_cfa_location *loc1, const dw_cfa_location *loc2)
1101 {
1102   return (loc1->reg == loc2->reg
1103           && loc1->offset == loc2->offset
1104           && loc1->indirect == loc2->indirect
1105           && (loc1->indirect == 0
1106               || loc1->base_offset == loc2->base_offset));
1107 }
1108
1109 /* This routine does the actual work.  The CFA is now calculated from
1110    the dw_cfa_location structure.  */
1111
1112 static void
1113 def_cfa_1 (const char *label, dw_cfa_location *loc_p)
1114 {
1115   dw_cfi_ref cfi;
1116   dw_cfa_location old_cfa, loc;
1117
1118   cfa = *loc_p;
1119   loc = *loc_p;
1120
1121   if (cfa_store.reg == loc.reg && loc.indirect == 0)
1122     cfa_store.offset = loc.offset;
1123
1124   loc.reg = DWARF_FRAME_REGNUM (loc.reg);
1125   lookup_cfa (&old_cfa);
1126
1127   /* If nothing changed, no need to issue any call frame instructions.  */
1128   if (cfa_equal_p (&loc, &old_cfa))
1129     return;
1130
1131   cfi = new_cfi ();
1132
1133   if (loc.reg == old_cfa.reg && !loc.indirect && !old_cfa.indirect)
1134     {
1135       /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction, indicating
1136          the CFA register did not change but the offset did.  The data
1137          factoring for DW_CFA_def_cfa_offset_sf happens in output_cfi, or
1138          in the assembler via the .cfi_def_cfa_offset directive.  */
1139       if (loc.offset < 0)
1140         cfi->dw_cfi_opc = DW_CFA_def_cfa_offset_sf;
1141       else
1142         cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
1143       cfi->dw_cfi_oprnd1.dw_cfi_offset = loc.offset;
1144     }
1145
1146 #ifndef MIPS_DEBUGGING_INFO  /* SGI dbx thinks this means no offset.  */
1147   else if (loc.offset == old_cfa.offset
1148            && old_cfa.reg != INVALID_REGNUM
1149            && !loc.indirect
1150            && !old_cfa.indirect)
1151     {
1152       /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
1153          indicating the CFA register has changed to <register> but the
1154          offset has not changed.  */
1155       cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
1156       cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
1157     }
1158 #endif
1159
1160   else if (loc.indirect == 0)
1161     {
1162       /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
1163          indicating the CFA register has changed to <register> with
1164          the specified offset.  The data factoring for DW_CFA_def_cfa_sf
1165          happens in output_cfi, or in the assembler via the .cfi_def_cfa
1166          directive.  */
1167       if (loc.offset < 0)
1168         cfi->dw_cfi_opc = DW_CFA_def_cfa_sf;
1169       else
1170         cfi->dw_cfi_opc = DW_CFA_def_cfa;
1171       cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
1172       cfi->dw_cfi_oprnd2.dw_cfi_offset = loc.offset;
1173     }
1174   else
1175     {
1176       /* Construct a DW_CFA_def_cfa_expression instruction to
1177          calculate the CFA using a full location expression since no
1178          register-offset pair is available.  */
1179       struct dw_loc_descr_struct *loc_list;
1180
1181       cfi->dw_cfi_opc = DW_CFA_def_cfa_expression;
1182       loc_list = build_cfa_loc (&loc, 0);
1183       cfi->dw_cfi_oprnd1.dw_cfi_loc = loc_list;
1184     }
1185
1186   add_fde_cfi (label, cfi);
1187 }
1188
1189 /* Add the CFI for saving a register.  REG is the CFA column number.
1190    LABEL is passed to add_fde_cfi.
1191    If SREG is -1, the register is saved at OFFSET from the CFA;
1192    otherwise it is saved in SREG.  */
1193
1194 static void
1195 reg_save (const char *label, unsigned int reg, unsigned int sreg, HOST_WIDE_INT offset)
1196 {
1197   dw_cfi_ref cfi = new_cfi ();
1198   dw_fde_ref fde = current_fde ();
1199
1200   cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
1201
1202   /* When stack is aligned, store REG using DW_CFA_expression with
1203      FP.  */
1204   if (fde
1205       && fde->stack_realign
1206       && sreg == INVALID_REGNUM)
1207     {
1208       cfi->dw_cfi_opc = DW_CFA_expression;
1209       cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
1210       cfi->dw_cfi_oprnd2.dw_cfi_loc
1211         = build_cfa_aligned_loc (offset, fde->stack_realignment);
1212     }
1213   else if (sreg == INVALID_REGNUM)
1214     {
1215       if (need_data_align_sf_opcode (offset))
1216         cfi->dw_cfi_opc = DW_CFA_offset_extended_sf;
1217       else if (reg & ~0x3f)
1218         cfi->dw_cfi_opc = DW_CFA_offset_extended;
1219       else
1220         cfi->dw_cfi_opc = DW_CFA_offset;
1221       cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
1222     }
1223   else if (sreg == reg)
1224     cfi->dw_cfi_opc = DW_CFA_same_value;
1225   else
1226     {
1227       cfi->dw_cfi_opc = DW_CFA_register;
1228       cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
1229     }
1230
1231   add_fde_cfi (label, cfi);
1232 }
1233
1234 /* Add the CFI for saving a register window.  LABEL is passed to reg_save.
1235    This CFI tells the unwinder that it needs to restore the window registers
1236    from the previous frame's window save area.
1237
1238    ??? Perhaps we should note in the CIE where windows are saved (instead of
1239    assuming 0(cfa)) and what registers are in the window.  */
1240
1241 void
1242 dwarf2out_window_save (const char *label)
1243 {
1244   dw_cfi_ref cfi = new_cfi ();
1245
1246   cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
1247   add_fde_cfi (label, cfi);
1248 }
1249
1250 /* Entry point for saving a register to the stack.  REG is the GCC register
1251    number.  LABEL and OFFSET are passed to reg_save.  */
1252
1253 void
1254 dwarf2out_reg_save (const char *label, unsigned int reg, HOST_WIDE_INT offset)
1255 {
1256   reg_save (label, DWARF_FRAME_REGNUM (reg), INVALID_REGNUM, offset);
1257 }
1258
1259 /* Entry point for saving the return address in the stack.
1260    LABEL and OFFSET are passed to reg_save.  */
1261
1262 void
1263 dwarf2out_return_save (const char *label, HOST_WIDE_INT offset)
1264 {
1265   reg_save (label, DWARF_FRAME_RETURN_COLUMN, INVALID_REGNUM, offset);
1266 }
1267
1268 /* Entry point for saving the return address in a register.
1269    LABEL and SREG are passed to reg_save.  */
1270
1271 void
1272 dwarf2out_return_reg (const char *label, unsigned int sreg)
1273 {
1274   reg_save (label, DWARF_FRAME_RETURN_COLUMN, DWARF_FRAME_REGNUM (sreg), 0);
1275 }
1276
1277 /* Record the initial position of the return address.  RTL is
1278    INCOMING_RETURN_ADDR_RTX.  */
1279
1280 static void
1281 initial_return_save (rtx rtl)
1282 {
1283   unsigned int reg = INVALID_REGNUM;
1284   HOST_WIDE_INT offset = 0;
1285
1286   switch (GET_CODE (rtl))
1287     {
1288     case REG:
1289       /* RA is in a register.  */
1290       reg = DWARF_FRAME_REGNUM (REGNO (rtl));
1291       break;
1292
1293     case MEM:
1294       /* RA is on the stack.  */
1295       rtl = XEXP (rtl, 0);
1296       switch (GET_CODE (rtl))
1297         {
1298         case REG:
1299           gcc_assert (REGNO (rtl) == STACK_POINTER_REGNUM);
1300           offset = 0;
1301           break;
1302
1303         case PLUS:
1304           gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
1305           offset = INTVAL (XEXP (rtl, 1));
1306           break;
1307
1308         case MINUS:
1309           gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
1310           offset = -INTVAL (XEXP (rtl, 1));
1311           break;
1312
1313         default:
1314           gcc_unreachable ();
1315         }
1316
1317       break;
1318
1319     case PLUS:
1320       /* The return address is at some offset from any value we can
1321          actually load.  For instance, on the SPARC it is in %i7+8. Just
1322          ignore the offset for now; it doesn't matter for unwinding frames.  */
1323       gcc_assert (CONST_INT_P (XEXP (rtl, 1)));
1324       initial_return_save (XEXP (rtl, 0));
1325       return;
1326
1327     default:
1328       gcc_unreachable ();
1329     }
1330
1331   if (reg != DWARF_FRAME_RETURN_COLUMN)
1332     reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa.offset);
1333 }
1334
1335 /* Given a SET, calculate the amount of stack adjustment it
1336    contains.  */
1337
1338 static HOST_WIDE_INT
1339 stack_adjust_offset (const_rtx pattern, HOST_WIDE_INT cur_args_size,
1340                      HOST_WIDE_INT cur_offset)
1341 {
1342   const_rtx src = SET_SRC (pattern);
1343   const_rtx dest = SET_DEST (pattern);
1344   HOST_WIDE_INT offset = 0;
1345   enum rtx_code code;
1346
1347   if (dest == stack_pointer_rtx)
1348     {
1349       code = GET_CODE (src);
1350
1351       /* Assume (set (reg sp) (reg whatever)) sets args_size
1352          level to 0.  */
1353       if (code == REG && src != stack_pointer_rtx)
1354         {
1355           offset = -cur_args_size;
1356 #ifndef STACK_GROWS_DOWNWARD
1357           offset = -offset;
1358 #endif
1359           return offset - cur_offset;
1360         }
1361
1362       if (! (code == PLUS || code == MINUS)
1363           || XEXP (src, 0) != stack_pointer_rtx
1364           || !CONST_INT_P (XEXP (src, 1)))
1365         return 0;
1366
1367       /* (set (reg sp) (plus (reg sp) (const_int))) */
1368       offset = INTVAL (XEXP (src, 1));
1369       if (code == PLUS)
1370         offset = -offset;
1371       return offset;
1372     }
1373
1374   if (MEM_P (src) && !MEM_P (dest))
1375     dest = src;
1376   if (MEM_P (dest))
1377     {
1378       /* (set (mem (pre_dec (reg sp))) (foo)) */
1379       src = XEXP (dest, 0);
1380       code = GET_CODE (src);
1381
1382       switch (code)
1383         {
1384         case PRE_MODIFY:
1385         case POST_MODIFY:
1386           if (XEXP (src, 0) == stack_pointer_rtx)
1387             {
1388               rtx val = XEXP (XEXP (src, 1), 1);
1389               /* We handle only adjustments by constant amount.  */
1390               gcc_assert (GET_CODE (XEXP (src, 1)) == PLUS
1391                           && CONST_INT_P (val));
1392               offset = -INTVAL (val);
1393               break;
1394             }
1395           return 0;
1396
1397         case PRE_DEC:
1398         case POST_DEC:
1399           if (XEXP (src, 0) == stack_pointer_rtx)
1400             {
1401               offset = GET_MODE_SIZE (GET_MODE (dest));
1402               break;
1403             }
1404           return 0;
1405
1406         case PRE_INC:
1407         case POST_INC:
1408           if (XEXP (src, 0) == stack_pointer_rtx)
1409             {
1410               offset = -GET_MODE_SIZE (GET_MODE (dest));
1411               break;
1412             }
1413           return 0;
1414
1415         default:
1416           return 0;
1417         }
1418     }
1419   else
1420     return 0;
1421
1422   return offset;
1423 }
1424
1425 /* Precomputed args_size for CODE_LABELs and BARRIERs preceeding them,
1426    indexed by INSN_UID.  */
1427
1428 static HOST_WIDE_INT *barrier_args_size;
1429
1430 /* Helper function for compute_barrier_args_size.  Handle one insn.  */
1431
1432 static HOST_WIDE_INT
1433 compute_barrier_args_size_1 (rtx insn, HOST_WIDE_INT cur_args_size,
1434                              VEC (rtx, heap) **next)
1435 {
1436   HOST_WIDE_INT offset = 0;
1437   int i;
1438
1439   if (! RTX_FRAME_RELATED_P (insn))
1440     {
1441       if (prologue_epilogue_contains (insn))
1442         /* Nothing */;
1443       else if (GET_CODE (PATTERN (insn)) == SET)
1444         offset = stack_adjust_offset (PATTERN (insn), cur_args_size, 0);
1445       else if (GET_CODE (PATTERN (insn)) == PARALLEL
1446                || GET_CODE (PATTERN (insn)) == SEQUENCE)
1447         {
1448           /* There may be stack adjustments inside compound insns.  Search
1449              for them.  */
1450           for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1451             if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1452               offset += stack_adjust_offset (XVECEXP (PATTERN (insn), 0, i),
1453                                              cur_args_size, offset);
1454         }
1455     }
1456   else
1457     {
1458       rtx expr = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1459
1460       if (expr)
1461         {
1462           expr = XEXP (expr, 0);
1463           if (GET_CODE (expr) == PARALLEL
1464               || GET_CODE (expr) == SEQUENCE)
1465             for (i = 1; i < XVECLEN (expr, 0); i++)
1466               {
1467                 rtx elem = XVECEXP (expr, 0, i);
1468
1469                 if (GET_CODE (elem) == SET && !RTX_FRAME_RELATED_P (elem))
1470                   offset += stack_adjust_offset (elem, cur_args_size, offset);
1471               }
1472         }
1473     }
1474
1475 #ifndef STACK_GROWS_DOWNWARD
1476   offset = -offset;
1477 #endif
1478
1479   cur_args_size += offset;
1480   if (cur_args_size < 0)
1481     cur_args_size = 0;
1482
1483   if (JUMP_P (insn))
1484     {
1485       rtx dest = JUMP_LABEL (insn);
1486
1487       if (dest)
1488         {
1489           if (barrier_args_size [INSN_UID (dest)] < 0)
1490             {
1491               barrier_args_size [INSN_UID (dest)] = cur_args_size;
1492               VEC_safe_push (rtx, heap, *next, dest);
1493             }
1494         }
1495     }
1496
1497   return cur_args_size;
1498 }
1499
1500 /* Walk the whole function and compute args_size on BARRIERs.  */
1501
1502 static void
1503 compute_barrier_args_size (void)
1504 {
1505   int max_uid = get_max_uid (), i;
1506   rtx insn;
1507   VEC (rtx, heap) *worklist, *next, *tmp;
1508
1509   barrier_args_size = XNEWVEC (HOST_WIDE_INT, max_uid);
1510   for (i = 0; i < max_uid; i++)
1511     barrier_args_size[i] = -1;
1512
1513   worklist = VEC_alloc (rtx, heap, 20);
1514   next = VEC_alloc (rtx, heap, 20);
1515   insn = get_insns ();
1516   barrier_args_size[INSN_UID (insn)] = 0;
1517   VEC_quick_push (rtx, worklist, insn);
1518   for (;;)
1519     {
1520       while (!VEC_empty (rtx, worklist))
1521         {
1522           rtx prev, body, first_insn;
1523           HOST_WIDE_INT cur_args_size;
1524
1525           first_insn = insn = VEC_pop (rtx, worklist);
1526           cur_args_size = barrier_args_size[INSN_UID (insn)];
1527           prev = prev_nonnote_insn (insn);
1528           if (prev && BARRIER_P (prev))
1529             barrier_args_size[INSN_UID (prev)] = cur_args_size;
1530
1531           for (; insn; insn = NEXT_INSN (insn))
1532             {
1533               if (INSN_DELETED_P (insn) || NOTE_P (insn))
1534                 continue;
1535               if (BARRIER_P (insn))
1536                 break;
1537
1538               if (LABEL_P (insn))
1539                 {
1540                   if (insn == first_insn)
1541                     continue;
1542                   else if (barrier_args_size[INSN_UID (insn)] < 0)
1543                     {
1544                       barrier_args_size[INSN_UID (insn)] = cur_args_size;
1545                       continue;
1546                     }
1547                   else
1548                     {
1549                       /* The insns starting with this label have been
1550                          already scanned or are in the worklist.  */
1551                       break;
1552                     }
1553                 }
1554
1555               body = PATTERN (insn);
1556               if (GET_CODE (body) == SEQUENCE)
1557                 {
1558                   HOST_WIDE_INT dest_args_size = cur_args_size;
1559                   for (i = 1; i < XVECLEN (body, 0); i++)
1560                     if (INSN_ANNULLED_BRANCH_P (XVECEXP (body, 0, 0))
1561                         && INSN_FROM_TARGET_P (XVECEXP (body, 0, i)))
1562                       dest_args_size
1563                         = compute_barrier_args_size_1 (XVECEXP (body, 0, i),
1564                                                        dest_args_size, &next);
1565                     else
1566                       cur_args_size
1567                         = compute_barrier_args_size_1 (XVECEXP (body, 0, i),
1568                                                        cur_args_size, &next);
1569
1570                   if (INSN_ANNULLED_BRANCH_P (XVECEXP (body, 0, 0)))
1571                     compute_barrier_args_size_1 (XVECEXP (body, 0, 0),
1572                                                  dest_args_size, &next);
1573                   else
1574                     cur_args_size
1575                       = compute_barrier_args_size_1 (XVECEXP (body, 0, 0),
1576                                                      cur_args_size, &next);
1577                 }
1578               else
1579                 cur_args_size
1580                   = compute_barrier_args_size_1 (insn, cur_args_size, &next);
1581             }
1582         }
1583
1584       if (VEC_empty (rtx, next))
1585         break;
1586
1587       /* Swap WORKLIST with NEXT and truncate NEXT for next iteration.  */
1588       tmp = next;
1589       next = worklist;
1590       worklist = tmp;
1591       VEC_truncate (rtx, next, 0);
1592     }
1593
1594   VEC_free (rtx, heap, worklist);
1595   VEC_free (rtx, heap, next);
1596 }
1597
1598 /* Add a CFI to update the running total of the size of arguments
1599    pushed onto the stack.  */
1600
1601 static void
1602 dwarf2out_args_size (const char *label, HOST_WIDE_INT size)
1603 {
1604   dw_cfi_ref cfi;
1605
1606   if (size == old_args_size)
1607     return;
1608
1609   old_args_size = size;
1610
1611   cfi = new_cfi ();
1612   cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
1613   cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
1614   add_fde_cfi (label, cfi);
1615 }
1616
1617 /* Record a stack adjustment of OFFSET bytes.  */
1618
1619 static void
1620 dwarf2out_stack_adjust (HOST_WIDE_INT offset, const char *label)
1621 {
1622   if (cfa.reg == STACK_POINTER_REGNUM)
1623     cfa.offset += offset;
1624
1625   if (cfa_store.reg == STACK_POINTER_REGNUM)
1626     cfa_store.offset += offset;
1627
1628   if (ACCUMULATE_OUTGOING_ARGS)
1629     return;
1630
1631 #ifndef STACK_GROWS_DOWNWARD
1632   offset = -offset;
1633 #endif
1634
1635   args_size += offset;
1636   if (args_size < 0)
1637     args_size = 0;
1638
1639   def_cfa_1 (label, &cfa);
1640   if (flag_asynchronous_unwind_tables)
1641     dwarf2out_args_size (label, args_size);
1642 }
1643
1644 /* Check INSN to see if it looks like a push or a stack adjustment, and
1645    make a note of it if it does.  EH uses this information to find out
1646    how much extra space it needs to pop off the stack.  */
1647
1648 static void
1649 dwarf2out_notice_stack_adjust (rtx insn, bool after_p)
1650 {
1651   HOST_WIDE_INT offset;
1652   const char *label;
1653   int i;
1654
1655   /* Don't handle epilogues at all.  Certainly it would be wrong to do so
1656      with this function.  Proper support would require all frame-related
1657      insns to be marked, and to be able to handle saving state around
1658      epilogues textually in the middle of the function.  */
1659   if (prologue_epilogue_contains (insn))
1660     return;
1661
1662   /* If INSN is an instruction from target of an annulled branch, the
1663      effects are for the target only and so current argument size
1664      shouldn't change at all.  */
1665   if (final_sequence
1666       && INSN_ANNULLED_BRANCH_P (XVECEXP (final_sequence, 0, 0))
1667       && INSN_FROM_TARGET_P (insn))
1668     return;
1669
1670   /* If only calls can throw, and we have a frame pointer,
1671      save up adjustments until we see the CALL_INSN.  */
1672   if (!flag_asynchronous_unwind_tables && cfa.reg != STACK_POINTER_REGNUM)
1673     {
1674       if (CALL_P (insn) && !after_p)
1675         {
1676           /* Extract the size of the args from the CALL rtx itself.  */
1677           insn = PATTERN (insn);
1678           if (GET_CODE (insn) == PARALLEL)
1679             insn = XVECEXP (insn, 0, 0);
1680           if (GET_CODE (insn) == SET)
1681             insn = SET_SRC (insn);
1682           gcc_assert (GET_CODE (insn) == CALL);
1683           dwarf2out_args_size ("", INTVAL (XEXP (insn, 1)));
1684         }
1685       return;
1686     }
1687
1688   if (CALL_P (insn) && !after_p)
1689     {
1690       if (!flag_asynchronous_unwind_tables)
1691         dwarf2out_args_size ("", args_size);
1692       return;
1693     }
1694   else if (BARRIER_P (insn))
1695     {
1696       /* Don't call compute_barrier_args_size () if the only
1697          BARRIER is at the end of function.  */
1698       if (barrier_args_size == NULL && next_nonnote_insn (insn))
1699         compute_barrier_args_size ();
1700       if (barrier_args_size == NULL)
1701         offset = 0;
1702       else
1703         {
1704           offset = barrier_args_size[INSN_UID (insn)];
1705           if (offset < 0)
1706             offset = 0;
1707         }
1708
1709       offset -= args_size;
1710 #ifndef STACK_GROWS_DOWNWARD
1711       offset = -offset;
1712 #endif
1713     }
1714   else if (GET_CODE (PATTERN (insn)) == SET)
1715     offset = stack_adjust_offset (PATTERN (insn), args_size, 0);
1716   else if (GET_CODE (PATTERN (insn)) == PARALLEL
1717            || GET_CODE (PATTERN (insn)) == SEQUENCE)
1718     {
1719       /* There may be stack adjustments inside compound insns.  Search
1720          for them.  */
1721       for (offset = 0, i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1722         if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1723           offset += stack_adjust_offset (XVECEXP (PATTERN (insn), 0, i),
1724                                          args_size, offset);
1725     }
1726   else
1727     return;
1728
1729   if (offset == 0)
1730     return;
1731
1732   label = dwarf2out_cfi_label (false);
1733   dwarf2out_stack_adjust (offset, label);
1734 }
1735
1736 /* We delay emitting a register save until either (a) we reach the end
1737    of the prologue or (b) the register is clobbered.  This clusters
1738    register saves so that there are fewer pc advances.  */
1739
1740 struct GTY(()) queued_reg_save {
1741   struct queued_reg_save *next;
1742   rtx reg;
1743   HOST_WIDE_INT cfa_offset;
1744   rtx saved_reg;
1745 };
1746
1747 static GTY(()) struct queued_reg_save *queued_reg_saves;
1748
1749 /* The caller's ORIG_REG is saved in SAVED_IN_REG.  */
1750 struct GTY(()) reg_saved_in_data {
1751   rtx orig_reg;
1752   rtx saved_in_reg;
1753 };
1754
1755 /* A list of registers saved in other registers.
1756    The list intentionally has a small maximum capacity of 4; if your
1757    port needs more than that, you might consider implementing a
1758    more efficient data structure.  */
1759 static GTY(()) struct reg_saved_in_data regs_saved_in_regs[4];
1760 static GTY(()) size_t num_regs_saved_in_regs;
1761
1762 static const char *last_reg_save_label;
1763
1764 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1765    SREG, or if SREG is NULL then it is saved at OFFSET to the CFA.  */
1766
1767 static void
1768 queue_reg_save (const char *label, rtx reg, rtx sreg, HOST_WIDE_INT offset)
1769 {
1770   struct queued_reg_save *q;
1771
1772   /* Duplicates waste space, but it's also necessary to remove them
1773      for correctness, since the queue gets output in reverse
1774      order.  */
1775   for (q = queued_reg_saves; q != NULL; q = q->next)
1776     if (REGNO (q->reg) == REGNO (reg))
1777       break;
1778
1779   if (q == NULL)
1780     {
1781       q = ggc_alloc_queued_reg_save ();
1782       q->next = queued_reg_saves;
1783       queued_reg_saves = q;
1784     }
1785
1786   q->reg = reg;
1787   q->cfa_offset = offset;
1788   q->saved_reg = sreg;
1789
1790   last_reg_save_label = label;
1791 }
1792
1793 /* Output all the entries in QUEUED_REG_SAVES.  */
1794
1795 void
1796 dwarf2out_flush_queued_reg_saves (void)
1797 {
1798   struct queued_reg_save *q;
1799
1800   for (q = queued_reg_saves; q; q = q->next)
1801     {
1802       size_t i;
1803       unsigned int reg, sreg;
1804
1805       for (i = 0; i < num_regs_saved_in_regs; i++)
1806         if (REGNO (regs_saved_in_regs[i].orig_reg) == REGNO (q->reg))
1807           break;
1808       if (q->saved_reg && i == num_regs_saved_in_regs)
1809         {
1810           gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1811           num_regs_saved_in_regs++;
1812         }
1813       if (i != num_regs_saved_in_regs)
1814         {
1815           regs_saved_in_regs[i].orig_reg = q->reg;
1816           regs_saved_in_regs[i].saved_in_reg = q->saved_reg;
1817         }
1818
1819       reg = DWARF_FRAME_REGNUM (REGNO (q->reg));
1820       if (q->saved_reg)
1821         sreg = DWARF_FRAME_REGNUM (REGNO (q->saved_reg));
1822       else
1823         sreg = INVALID_REGNUM;
1824       reg_save (last_reg_save_label, reg, sreg, q->cfa_offset);
1825     }
1826
1827   queued_reg_saves = NULL;
1828   last_reg_save_label = NULL;
1829 }
1830
1831 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1832    location for?  Or, does it clobber a register which we've previously
1833    said that some other register is saved in, and for which we now
1834    have a new location for?  */
1835
1836 static bool
1837 clobbers_queued_reg_save (const_rtx insn)
1838 {
1839   struct queued_reg_save *q;
1840
1841   for (q = queued_reg_saves; q; q = q->next)
1842     {
1843       size_t i;
1844       if (modified_in_p (q->reg, insn))
1845         return true;
1846       for (i = 0; i < num_regs_saved_in_regs; i++)
1847         if (REGNO (q->reg) == REGNO (regs_saved_in_regs[i].orig_reg)
1848             && modified_in_p (regs_saved_in_regs[i].saved_in_reg, insn))
1849           return true;
1850     }
1851
1852   return false;
1853 }
1854
1855 /* Entry point for saving the first register into the second.  */
1856
1857 void
1858 dwarf2out_reg_save_reg (const char *label, rtx reg, rtx sreg)
1859 {
1860   size_t i;
1861   unsigned int regno, sregno;
1862
1863   for (i = 0; i < num_regs_saved_in_regs; i++)
1864     if (REGNO (regs_saved_in_regs[i].orig_reg) == REGNO (reg))
1865       break;
1866   if (i == num_regs_saved_in_regs)
1867     {
1868       gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1869       num_regs_saved_in_regs++;
1870     }
1871   regs_saved_in_regs[i].orig_reg = reg;
1872   regs_saved_in_regs[i].saved_in_reg = sreg;
1873
1874   regno = DWARF_FRAME_REGNUM (REGNO (reg));
1875   sregno = DWARF_FRAME_REGNUM (REGNO (sreg));
1876   reg_save (label, regno, sregno, 0);
1877 }
1878
1879 /* What register, if any, is currently saved in REG?  */
1880
1881 static rtx
1882 reg_saved_in (rtx reg)
1883 {
1884   unsigned int regn = REGNO (reg);
1885   size_t i;
1886   struct queued_reg_save *q;
1887
1888   for (q = queued_reg_saves; q; q = q->next)
1889     if (q->saved_reg && regn == REGNO (q->saved_reg))
1890       return q->reg;
1891
1892   for (i = 0; i < num_regs_saved_in_regs; i++)
1893     if (regs_saved_in_regs[i].saved_in_reg
1894         && regn == REGNO (regs_saved_in_regs[i].saved_in_reg))
1895       return regs_saved_in_regs[i].orig_reg;
1896
1897   return NULL_RTX;
1898 }
1899
1900
1901 /* A temporary register holding an integral value used in adjusting SP
1902    or setting up the store_reg.  The "offset" field holds the integer
1903    value, not an offset.  */
1904 static dw_cfa_location cfa_temp;
1905
1906 /* A subroutine of dwarf2out_frame_debug, process a REG_DEF_CFA note.  */
1907
1908 static void
1909 dwarf2out_frame_debug_def_cfa (rtx pat, const char *label)
1910 {
1911   memset (&cfa, 0, sizeof (cfa));
1912
1913   switch (GET_CODE (pat))
1914     {
1915     case PLUS:
1916       cfa.reg = REGNO (XEXP (pat, 0));
1917       cfa.offset = INTVAL (XEXP (pat, 1));
1918       break;
1919
1920     case REG:
1921       cfa.reg = REGNO (pat);
1922       break;
1923
1924     case MEM:
1925       cfa.indirect = 1;
1926       pat = XEXP (pat, 0);
1927       if (GET_CODE (pat) == PLUS)
1928         {
1929           cfa.base_offset = INTVAL (XEXP (pat, 1));
1930           pat = XEXP (pat, 0);
1931         }
1932       cfa.reg = REGNO (pat);
1933       break;
1934
1935     default:
1936       /* Recurse and define an expression.  */
1937       gcc_unreachable ();
1938     }
1939
1940   def_cfa_1 (label, &cfa);
1941 }
1942
1943 /* A subroutine of dwarf2out_frame_debug, process a REG_ADJUST_CFA note.  */
1944
1945 static void
1946 dwarf2out_frame_debug_adjust_cfa (rtx pat, const char *label)
1947 {
1948   rtx src, dest;
1949
1950   gcc_assert (GET_CODE (pat) == SET);
1951   dest = XEXP (pat, 0);
1952   src = XEXP (pat, 1);
1953
1954   switch (GET_CODE (src))
1955     {
1956     case PLUS:
1957       gcc_assert (REGNO (XEXP (src, 0)) == cfa.reg);
1958       cfa.offset -= INTVAL (XEXP (src, 1));
1959       break;
1960
1961     case REG:
1962         break;
1963
1964     default:
1965         gcc_unreachable ();
1966     }
1967
1968   cfa.reg = REGNO (dest);
1969   gcc_assert (cfa.indirect == 0);
1970
1971   def_cfa_1 (label, &cfa);
1972 }
1973
1974 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_OFFSET note.  */
1975
1976 static void
1977 dwarf2out_frame_debug_cfa_offset (rtx set, const char *label)
1978 {
1979   HOST_WIDE_INT offset;
1980   rtx src, addr, span;
1981
1982   src = XEXP (set, 1);
1983   addr = XEXP (set, 0);
1984   gcc_assert (MEM_P (addr));
1985   addr = XEXP (addr, 0);
1986
1987   /* As documented, only consider extremely simple addresses.  */
1988   switch (GET_CODE (addr))
1989     {
1990     case REG:
1991       gcc_assert (REGNO (addr) == cfa.reg);
1992       offset = -cfa.offset;
1993       break;
1994     case PLUS:
1995       gcc_assert (REGNO (XEXP (addr, 0)) == cfa.reg);
1996       offset = INTVAL (XEXP (addr, 1)) - cfa.offset;
1997       break;
1998     default:
1999       gcc_unreachable ();
2000     }
2001
2002   span = targetm.dwarf_register_span (src);
2003
2004   /* ??? We'd like to use queue_reg_save, but we need to come up with
2005      a different flushing heuristic for epilogues.  */
2006   if (!span)
2007     reg_save (label, DWARF_FRAME_REGNUM (REGNO (src)), INVALID_REGNUM, offset);
2008   else
2009     {
2010       /* We have a PARALLEL describing where the contents of SRC live.
2011          Queue register saves for each piece of the PARALLEL.  */
2012       int par_index;
2013       int limit;
2014       HOST_WIDE_INT span_offset = offset;
2015
2016       gcc_assert (GET_CODE (span) == PARALLEL);
2017
2018       limit = XVECLEN (span, 0);
2019       for (par_index = 0; par_index < limit; par_index++)
2020         {
2021           rtx elem = XVECEXP (span, 0, par_index);
2022
2023           reg_save (label, DWARF_FRAME_REGNUM (REGNO (elem)),
2024                     INVALID_REGNUM, span_offset);
2025           span_offset += GET_MODE_SIZE (GET_MODE (elem));
2026         }
2027     }
2028 }
2029
2030 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_REGISTER note.  */
2031
2032 static void
2033 dwarf2out_frame_debug_cfa_register (rtx set, const char *label)
2034 {
2035   rtx src, dest;
2036   unsigned sregno, dregno;
2037
2038   src = XEXP (set, 1);
2039   dest = XEXP (set, 0);
2040
2041   if (src == pc_rtx)
2042     sregno = DWARF_FRAME_RETURN_COLUMN;
2043   else
2044     sregno = DWARF_FRAME_REGNUM (REGNO (src));
2045
2046   dregno = DWARF_FRAME_REGNUM (REGNO (dest));
2047
2048   /* ??? We'd like to use queue_reg_save, but we need to come up with
2049      a different flushing heuristic for epilogues.  */
2050   reg_save (label, sregno, dregno, 0);
2051 }
2052
2053 /* Helper function to get mode of MEM's address.  */
2054
2055 static inline enum machine_mode
2056 get_address_mode (rtx mem)
2057 {
2058   enum machine_mode mode = GET_MODE (XEXP (mem, 0));
2059   if (mode != VOIDmode)
2060     return mode;
2061   return targetm.addr_space.address_mode (MEM_ADDR_SPACE (mem));
2062 }
2063
2064 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_EXPRESSION note. */
2065
2066 static void
2067 dwarf2out_frame_debug_cfa_expression (rtx set, const char *label)
2068 {
2069   rtx src, dest, span;
2070   dw_cfi_ref cfi = new_cfi ();
2071
2072   dest = SET_DEST (set);
2073   src = SET_SRC (set);
2074
2075   gcc_assert (REG_P (src));
2076   gcc_assert (MEM_P (dest));
2077
2078   span = targetm.dwarf_register_span (src);
2079   gcc_assert (!span);
2080
2081   cfi->dw_cfi_opc = DW_CFA_expression;
2082   cfi->dw_cfi_oprnd1.dw_cfi_reg_num = DWARF_FRAME_REGNUM (REGNO (src));
2083   cfi->dw_cfi_oprnd2.dw_cfi_loc
2084     = mem_loc_descriptor (XEXP (dest, 0), get_address_mode (dest),
2085                           GET_MODE (dest), VAR_INIT_STATUS_INITIALIZED);
2086
2087   /* ??? We'd like to use queue_reg_save, were the interface different,
2088      and, as above, we could manage flushing for epilogues.  */
2089   add_fde_cfi (label, cfi);
2090 }
2091
2092 /* A subroutine of dwarf2out_frame_debug, process a REG_CFA_RESTORE note.  */
2093
2094 static void
2095 dwarf2out_frame_debug_cfa_restore (rtx reg, const char *label)
2096 {
2097   dw_cfi_ref cfi = new_cfi ();
2098   unsigned int regno = DWARF_FRAME_REGNUM (REGNO (reg));
2099
2100   cfi->dw_cfi_opc = (regno & ~0x3f ? DW_CFA_restore_extended : DW_CFA_restore);
2101   cfi->dw_cfi_oprnd1.dw_cfi_reg_num = regno;
2102
2103   add_fde_cfi (label, cfi);
2104 }
2105
2106 /* Record call frame debugging information for an expression EXPR,
2107    which either sets SP or FP (adjusting how we calculate the frame
2108    address) or saves a register to the stack or another register.
2109    LABEL indicates the address of EXPR.
2110
2111    This function encodes a state machine mapping rtxes to actions on
2112    cfa, cfa_store, and cfa_temp.reg.  We describe these rules so
2113    users need not read the source code.
2114
2115   The High-Level Picture
2116
2117   Changes in the register we use to calculate the CFA: Currently we
2118   assume that if you copy the CFA register into another register, we
2119   should take the other one as the new CFA register; this seems to
2120   work pretty well.  If it's wrong for some target, it's simple
2121   enough not to set RTX_FRAME_RELATED_P on the insn in question.
2122
2123   Changes in the register we use for saving registers to the stack:
2124   This is usually SP, but not always.  Again, we deduce that if you
2125   copy SP into another register (and SP is not the CFA register),
2126   then the new register is the one we will be using for register
2127   saves.  This also seems to work.
2128
2129   Register saves: There's not much guesswork about this one; if
2130   RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
2131   register save, and the register used to calculate the destination
2132   had better be the one we think we're using for this purpose.
2133   It's also assumed that a copy from a call-saved register to another
2134   register is saving that register if RTX_FRAME_RELATED_P is set on
2135   that instruction.  If the copy is from a call-saved register to
2136   the *same* register, that means that the register is now the same
2137   value as in the caller.
2138
2139   Except: If the register being saved is the CFA register, and the
2140   offset is nonzero, we are saving the CFA, so we assume we have to
2141   use DW_CFA_def_cfa_expression.  If the offset is 0, we assume that
2142   the intent is to save the value of SP from the previous frame.
2143
2144   In addition, if a register has previously been saved to a different
2145   register,
2146
2147   Invariants / Summaries of Rules
2148
2149   cfa          current rule for calculating the CFA.  It usually
2150                consists of a register and an offset.
2151   cfa_store    register used by prologue code to save things to the stack
2152                cfa_store.offset is the offset from the value of
2153                cfa_store.reg to the actual CFA
2154   cfa_temp     register holding an integral value.  cfa_temp.offset
2155                stores the value, which will be used to adjust the
2156                stack pointer.  cfa_temp is also used like cfa_store,
2157                to track stores to the stack via fp or a temp reg.
2158
2159   Rules  1- 4: Setting a register's value to cfa.reg or an expression
2160                with cfa.reg as the first operand changes the cfa.reg and its
2161                cfa.offset.  Rule 1 and 4 also set cfa_temp.reg and
2162                cfa_temp.offset.
2163
2164   Rules  6- 9: Set a non-cfa.reg register value to a constant or an
2165                expression yielding a constant.  This sets cfa_temp.reg
2166                and cfa_temp.offset.
2167
2168   Rule 5:      Create a new register cfa_store used to save items to the
2169                stack.
2170
2171   Rules 10-14: Save a register to the stack.  Define offset as the
2172                difference of the original location and cfa_store's
2173                location (or cfa_temp's location if cfa_temp is used).
2174
2175   Rules 16-20: If AND operation happens on sp in prologue, we assume
2176                stack is realigned.  We will use a group of DW_OP_XXX
2177                expressions to represent the location of the stored
2178                register instead of CFA+offset.
2179
2180   The Rules
2181
2182   "{a,b}" indicates a choice of a xor b.
2183   "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
2184
2185   Rule 1:
2186   (set <reg1> <reg2>:cfa.reg)
2187   effects: cfa.reg = <reg1>
2188            cfa.offset unchanged
2189            cfa_temp.reg = <reg1>
2190            cfa_temp.offset = cfa.offset
2191
2192   Rule 2:
2193   (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
2194                               {<const_int>,<reg>:cfa_temp.reg}))
2195   effects: cfa.reg = sp if fp used
2196            cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
2197            cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
2198              if cfa_store.reg==sp
2199
2200   Rule 3:
2201   (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
2202   effects: cfa.reg = fp
2203            cfa_offset += +/- <const_int>
2204
2205   Rule 4:
2206   (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
2207   constraints: <reg1> != fp
2208                <reg1> != sp
2209   effects: cfa.reg = <reg1>
2210            cfa_temp.reg = <reg1>
2211            cfa_temp.offset = cfa.offset
2212
2213   Rule 5:
2214   (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
2215   constraints: <reg1> != fp
2216                <reg1> != sp
2217   effects: cfa_store.reg = <reg1>
2218            cfa_store.offset = cfa.offset - cfa_temp.offset
2219
2220   Rule 6:
2221   (set <reg> <const_int>)
2222   effects: cfa_temp.reg = <reg>
2223            cfa_temp.offset = <const_int>
2224
2225   Rule 7:
2226   (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
2227   effects: cfa_temp.reg = <reg1>
2228            cfa_temp.offset |= <const_int>
2229
2230   Rule 8:
2231   (set <reg> (high <exp>))
2232   effects: none
2233
2234   Rule 9:
2235   (set <reg> (lo_sum <exp> <const_int>))
2236   effects: cfa_temp.reg = <reg>
2237            cfa_temp.offset = <const_int>
2238
2239   Rule 10:
2240   (set (mem ({pre,post}_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
2241   effects: cfa_store.offset -= <const_int>
2242            cfa.offset = cfa_store.offset if cfa.reg == sp
2243            cfa.reg = sp
2244            cfa.base_offset = -cfa_store.offset
2245
2246   Rule 11:
2247   (set (mem ({pre_inc,pre_dec,post_dec} sp:cfa_store.reg)) <reg>)
2248   effects: cfa_store.offset += -/+ mode_size(mem)
2249            cfa.offset = cfa_store.offset if cfa.reg == sp
2250            cfa.reg = sp
2251            cfa.base_offset = -cfa_store.offset
2252
2253   Rule 12:
2254   (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
2255
2256        <reg2>)
2257   effects: cfa.reg = <reg1>
2258            cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
2259
2260   Rule 13:
2261   (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
2262   effects: cfa.reg = <reg1>
2263            cfa.base_offset = -{cfa_store,cfa_temp}.offset
2264
2265   Rule 14:
2266   (set (mem (post_inc <reg1>:cfa_temp <const_int>)) <reg2>)
2267   effects: cfa.reg = <reg1>
2268            cfa.base_offset = -cfa_temp.offset
2269            cfa_temp.offset -= mode_size(mem)
2270
2271   Rule 15:
2272   (set <reg> {unspec, unspec_volatile})
2273   effects: target-dependent
2274
2275   Rule 16:
2276   (set sp (and: sp <const_int>))
2277   constraints: cfa_store.reg == sp
2278   effects: current_fde.stack_realign = 1
2279            cfa_store.offset = 0
2280            fde->drap_reg = cfa.reg if cfa.reg != sp and cfa.reg != fp
2281
2282   Rule 17:
2283   (set (mem ({pre_inc, pre_dec} sp)) (mem (plus (cfa.reg) (const_int))))
2284   effects: cfa_store.offset += -/+ mode_size(mem)
2285
2286   Rule 18:
2287   (set (mem ({pre_inc, pre_dec} sp)) fp)
2288   constraints: fde->stack_realign == 1
2289   effects: cfa_store.offset = 0
2290            cfa.reg != HARD_FRAME_POINTER_REGNUM
2291
2292   Rule 19:
2293   (set (mem ({pre_inc, pre_dec} sp)) cfa.reg)
2294   constraints: fde->stack_realign == 1
2295                && cfa.offset == 0
2296                && cfa.indirect == 0
2297                && cfa.reg != HARD_FRAME_POINTER_REGNUM
2298   effects: Use DW_CFA_def_cfa_expression to define cfa
2299            cfa.reg == fde->drap_reg  */
2300
2301 static void
2302 dwarf2out_frame_debug_expr (rtx expr, const char *label)
2303 {
2304   rtx src, dest, span;
2305   HOST_WIDE_INT offset;
2306   dw_fde_ref fde;
2307
2308   /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
2309      the PARALLEL independently. The first element is always processed if
2310      it is a SET. This is for backward compatibility.   Other elements
2311      are processed only if they are SETs and the RTX_FRAME_RELATED_P
2312      flag is set in them.  */
2313   if (GET_CODE (expr) == PARALLEL || GET_CODE (expr) == SEQUENCE)
2314     {
2315       int par_index;
2316       int limit = XVECLEN (expr, 0);
2317       rtx elem;
2318
2319       /* PARALLELs have strict read-modify-write semantics, so we
2320          ought to evaluate every rvalue before changing any lvalue.
2321          It's cumbersome to do that in general, but there's an
2322          easy approximation that is enough for all current users:
2323          handle register saves before register assignments.  */
2324       if (GET_CODE (expr) == PARALLEL)
2325         for (par_index = 0; par_index < limit; par_index++)
2326           {
2327             elem = XVECEXP (expr, 0, par_index);
2328             if (GET_CODE (elem) == SET
2329                 && MEM_P (SET_DEST (elem))
2330                 && (RTX_FRAME_RELATED_P (elem) || par_index == 0))
2331               dwarf2out_frame_debug_expr (elem, label);
2332           }
2333
2334       for (par_index = 0; par_index < limit; par_index++)
2335         {
2336           elem = XVECEXP (expr, 0, par_index);
2337           if (GET_CODE (elem) == SET
2338               && (!MEM_P (SET_DEST (elem)) || GET_CODE (expr) == SEQUENCE)
2339               && (RTX_FRAME_RELATED_P (elem) || par_index == 0))
2340             dwarf2out_frame_debug_expr (elem, label);
2341           else if (GET_CODE (elem) == SET
2342                    && par_index != 0
2343                    && !RTX_FRAME_RELATED_P (elem))
2344             {
2345               /* Stack adjustment combining might combine some post-prologue
2346                  stack adjustment into a prologue stack adjustment.  */
2347               HOST_WIDE_INT offset = stack_adjust_offset (elem, args_size, 0);
2348
2349               if (offset != 0)
2350                 dwarf2out_stack_adjust (offset, label);
2351             }
2352         }
2353       return;
2354     }
2355
2356   gcc_assert (GET_CODE (expr) == SET);
2357
2358   src = SET_SRC (expr);
2359   dest = SET_DEST (expr);
2360
2361   if (REG_P (src))
2362     {
2363       rtx rsi = reg_saved_in (src);
2364       if (rsi)
2365         src = rsi;
2366     }
2367
2368   fde = current_fde ();
2369
2370   switch (GET_CODE (dest))
2371     {
2372     case REG:
2373       switch (GET_CODE (src))
2374         {
2375           /* Setting FP from SP.  */
2376         case REG:
2377           if (cfa.reg == (unsigned) REGNO (src))
2378             {
2379               /* Rule 1 */
2380               /* Update the CFA rule wrt SP or FP.  Make sure src is
2381                  relative to the current CFA register.
2382
2383                  We used to require that dest be either SP or FP, but the
2384                  ARM copies SP to a temporary register, and from there to
2385                  FP.  So we just rely on the backends to only set
2386                  RTX_FRAME_RELATED_P on appropriate insns.  */
2387               cfa.reg = REGNO (dest);
2388               cfa_temp.reg = cfa.reg;
2389               cfa_temp.offset = cfa.offset;
2390             }
2391           else
2392             {
2393               /* Saving a register in a register.  */
2394               gcc_assert (!fixed_regs [REGNO (dest)]
2395                           /* For the SPARC and its register window.  */
2396                           || (DWARF_FRAME_REGNUM (REGNO (src))
2397                               == DWARF_FRAME_RETURN_COLUMN));
2398
2399               /* After stack is aligned, we can only save SP in FP
2400                  if drap register is used.  In this case, we have
2401                  to restore stack pointer with the CFA value and we
2402                  don't generate this DWARF information.  */
2403               if (fde
2404                   && fde->stack_realign
2405                   && REGNO (src) == STACK_POINTER_REGNUM)
2406                 gcc_assert (REGNO (dest) == HARD_FRAME_POINTER_REGNUM
2407                             && fde->drap_reg != INVALID_REGNUM
2408                             && cfa.reg != REGNO (src));
2409               else
2410                 queue_reg_save (label, src, dest, 0);
2411             }
2412           break;
2413
2414         case PLUS:
2415         case MINUS:
2416         case LO_SUM:
2417           if (dest == stack_pointer_rtx)
2418             {
2419               /* Rule 2 */
2420               /* Adjusting SP.  */
2421               switch (GET_CODE (XEXP (src, 1)))
2422                 {
2423                 case CONST_INT:
2424                   offset = INTVAL (XEXP (src, 1));
2425                   break;
2426                 case REG:
2427                   gcc_assert ((unsigned) REGNO (XEXP (src, 1))
2428                               == cfa_temp.reg);
2429                   offset = cfa_temp.offset;
2430                   break;
2431                 default:
2432                   gcc_unreachable ();
2433                 }
2434
2435               if (XEXP (src, 0) == hard_frame_pointer_rtx)
2436                 {
2437                   /* Restoring SP from FP in the epilogue.  */
2438                   gcc_assert (cfa.reg == (unsigned) HARD_FRAME_POINTER_REGNUM);
2439                   cfa.reg = STACK_POINTER_REGNUM;
2440                 }
2441               else if (GET_CODE (src) == LO_SUM)
2442                 /* Assume we've set the source reg of the LO_SUM from sp.  */
2443                 ;
2444               else
2445                 gcc_assert (XEXP (src, 0) == stack_pointer_rtx);
2446
2447               if (GET_CODE (src) != MINUS)
2448                 offset = -offset;
2449               if (cfa.reg == STACK_POINTER_REGNUM)
2450                 cfa.offset += offset;
2451               if (cfa_store.reg == STACK_POINTER_REGNUM)
2452                 cfa_store.offset += offset;
2453             }
2454           else if (dest == hard_frame_pointer_rtx)
2455             {
2456               /* Rule 3 */
2457               /* Either setting the FP from an offset of the SP,
2458                  or adjusting the FP */
2459               gcc_assert (frame_pointer_needed);
2460
2461               gcc_assert (REG_P (XEXP (src, 0))
2462                           && (unsigned) REGNO (XEXP (src, 0)) == cfa.reg
2463                           && CONST_INT_P (XEXP (src, 1)));
2464               offset = INTVAL (XEXP (src, 1));
2465               if (GET_CODE (src) != MINUS)
2466                 offset = -offset;
2467               cfa.offset += offset;
2468               cfa.reg = HARD_FRAME_POINTER_REGNUM;
2469             }
2470           else
2471             {
2472               gcc_assert (GET_CODE (src) != MINUS);
2473
2474               /* Rule 4 */
2475               if (REG_P (XEXP (src, 0))
2476                   && REGNO (XEXP (src, 0)) == cfa.reg
2477                   && CONST_INT_P (XEXP (src, 1)))
2478                 {
2479                   /* Setting a temporary CFA register that will be copied
2480                      into the FP later on.  */
2481                   offset = - INTVAL (XEXP (src, 1));
2482                   cfa.offset += offset;
2483                   cfa.reg = REGNO (dest);
2484                   /* Or used to save regs to the stack.  */
2485                   cfa_temp.reg = cfa.reg;
2486                   cfa_temp.offset = cfa.offset;
2487                 }
2488
2489               /* Rule 5 */
2490               else if (REG_P (XEXP (src, 0))
2491                        && REGNO (XEXP (src, 0)) == cfa_temp.reg
2492                        && XEXP (src, 1) == stack_pointer_rtx)
2493                 {
2494                   /* Setting a scratch register that we will use instead
2495                      of SP for saving registers to the stack.  */
2496                   gcc_assert (cfa.reg == STACK_POINTER_REGNUM);
2497                   cfa_store.reg = REGNO (dest);
2498                   cfa_store.offset = cfa.offset - cfa_temp.offset;
2499                 }
2500
2501               /* Rule 9 */
2502               else if (GET_CODE (src) == LO_SUM
2503                        && CONST_INT_P (XEXP (src, 1)))
2504                 {
2505                   cfa_temp.reg = REGNO (dest);
2506                   cfa_temp.offset = INTVAL (XEXP (src, 1));
2507                 }
2508               else
2509                 gcc_unreachable ();
2510             }
2511           break;
2512
2513           /* Rule 6 */
2514         case CONST_INT:
2515           cfa_temp.reg = REGNO (dest);
2516           cfa_temp.offset = INTVAL (src);
2517           break;
2518
2519           /* Rule 7 */
2520         case IOR:
2521           gcc_assert (REG_P (XEXP (src, 0))
2522                       && (unsigned) REGNO (XEXP (src, 0)) == cfa_temp.reg
2523                       && CONST_INT_P (XEXP (src, 1)));
2524
2525           if ((unsigned) REGNO (dest) != cfa_temp.reg)
2526             cfa_temp.reg = REGNO (dest);
2527           cfa_temp.offset |= INTVAL (XEXP (src, 1));
2528           break;
2529
2530           /* Skip over HIGH, assuming it will be followed by a LO_SUM,
2531              which will fill in all of the bits.  */
2532           /* Rule 8 */
2533         case HIGH:
2534           break;
2535
2536           /* Rule 15 */
2537         case UNSPEC:
2538         case UNSPEC_VOLATILE:
2539           gcc_assert (targetm.dwarf_handle_frame_unspec);
2540           targetm.dwarf_handle_frame_unspec (label, expr, XINT (src, 1));
2541           return;
2542
2543           /* Rule 16 */
2544         case AND:
2545           /* If this AND operation happens on stack pointer in prologue,
2546              we assume the stack is realigned and we extract the
2547              alignment.  */
2548           if (fde && XEXP (src, 0) == stack_pointer_rtx)
2549             {
2550               /* We interpret reg_save differently with stack_realign set.
2551                  Thus we must flush whatever we have queued first.  */
2552               dwarf2out_flush_queued_reg_saves ();
2553
2554               gcc_assert (cfa_store.reg == REGNO (XEXP (src, 0)));
2555               fde->stack_realign = 1;
2556               fde->stack_realignment = INTVAL (XEXP (src, 1));
2557               cfa_store.offset = 0;
2558
2559               if (cfa.reg != STACK_POINTER_REGNUM
2560                   && cfa.reg != HARD_FRAME_POINTER_REGNUM)
2561                 fde->drap_reg = cfa.reg;
2562             }
2563           return;
2564
2565         default:
2566           gcc_unreachable ();
2567         }
2568
2569       def_cfa_1 (label, &cfa);
2570       break;
2571
2572     case MEM:
2573
2574       /* Saving a register to the stack.  Make sure dest is relative to the
2575          CFA register.  */
2576       switch (GET_CODE (XEXP (dest, 0)))
2577         {
2578           /* Rule 10 */
2579           /* With a push.  */
2580         case PRE_MODIFY:
2581         case POST_MODIFY:
2582           /* We can't handle variable size modifications.  */
2583           gcc_assert (GET_CODE (XEXP (XEXP (XEXP (dest, 0), 1), 1))
2584                       == CONST_INT);
2585           offset = -INTVAL (XEXP (XEXP (XEXP (dest, 0), 1), 1));
2586
2587           gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
2588                       && cfa_store.reg == STACK_POINTER_REGNUM);
2589
2590           cfa_store.offset += offset;
2591           if (cfa.reg == STACK_POINTER_REGNUM)
2592             cfa.offset = cfa_store.offset;
2593
2594           if (GET_CODE (XEXP (dest, 0)) == POST_MODIFY)
2595             offset -= cfa_store.offset;
2596           else
2597             offset = -cfa_store.offset;
2598           break;
2599
2600           /* Rule 11 */
2601         case PRE_INC:
2602         case PRE_DEC:
2603         case POST_DEC:
2604           offset = GET_MODE_SIZE (GET_MODE (dest));
2605           if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
2606             offset = -offset;
2607
2608           gcc_assert ((REGNO (XEXP (XEXP (dest, 0), 0))
2609                        == STACK_POINTER_REGNUM)
2610                       && cfa_store.reg == STACK_POINTER_REGNUM);
2611
2612           cfa_store.offset += offset;
2613
2614           /* Rule 18: If stack is aligned, we will use FP as a
2615              reference to represent the address of the stored
2616              regiser.  */
2617           if (fde
2618               && fde->stack_realign
2619               && src == hard_frame_pointer_rtx)
2620             {
2621               gcc_assert (cfa.reg != HARD_FRAME_POINTER_REGNUM);
2622               cfa_store.offset = 0;
2623             }
2624
2625           if (cfa.reg == STACK_POINTER_REGNUM)
2626             cfa.offset = cfa_store.offset;
2627
2628           if (GET_CODE (XEXP (dest, 0)) == POST_DEC)
2629             offset += -cfa_store.offset;
2630           else
2631             offset = -cfa_store.offset;
2632           break;
2633
2634           /* Rule 12 */
2635           /* With an offset.  */
2636         case PLUS:
2637         case MINUS:
2638         case LO_SUM:
2639           {
2640             int regno;
2641
2642             gcc_assert (CONST_INT_P (XEXP (XEXP (dest, 0), 1))
2643                         && REG_P (XEXP (XEXP (dest, 0), 0)));
2644             offset = INTVAL (XEXP (XEXP (dest, 0), 1));
2645             if (GET_CODE (XEXP (dest, 0)) == MINUS)
2646               offset = -offset;
2647
2648             regno = REGNO (XEXP (XEXP (dest, 0), 0));
2649
2650             if (cfa.reg == (unsigned) regno)
2651               offset -= cfa.offset;
2652             else if (cfa_store.reg == (unsigned) regno)
2653               offset -= cfa_store.offset;
2654             else
2655               {
2656                 gcc_assert (cfa_temp.reg == (unsigned) regno);
2657                 offset -= cfa_temp.offset;
2658               }
2659           }
2660           break;
2661
2662           /* Rule 13 */
2663           /* Without an offset.  */
2664         case REG:
2665           {
2666             int regno = REGNO (XEXP (dest, 0));
2667
2668             if (cfa.reg == (unsigned) regno)
2669               offset = -cfa.offset;
2670             else if (cfa_store.reg == (unsigned) regno)
2671               offset = -cfa_store.offset;
2672             else
2673               {
2674                 gcc_assert (cfa_temp.reg == (unsigned) regno);
2675                 offset = -cfa_temp.offset;
2676               }
2677           }
2678           break;
2679
2680           /* Rule 14 */
2681         case POST_INC:
2682           gcc_assert (cfa_temp.reg
2683                       == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)));
2684           offset = -cfa_temp.offset;
2685           cfa_temp.offset -= GET_MODE_SIZE (GET_MODE (dest));
2686           break;
2687
2688         default:
2689           gcc_unreachable ();
2690         }
2691
2692         /* Rule 17 */
2693         /* If the source operand of this MEM operation is not a
2694            register, basically the source is return address.  Here
2695            we only care how much stack grew and we don't save it.  */
2696       if (!REG_P (src))
2697         break;
2698
2699       if (REGNO (src) != STACK_POINTER_REGNUM
2700           && REGNO (src) != HARD_FRAME_POINTER_REGNUM
2701           && (unsigned) REGNO (src) == cfa.reg)
2702         {
2703           /* We're storing the current CFA reg into the stack.  */
2704
2705           if (cfa.offset == 0)
2706             {
2707               /* Rule 19 */
2708               /* If stack is aligned, putting CFA reg into stack means
2709                  we can no longer use reg + offset to represent CFA.
2710                  Here we use DW_CFA_def_cfa_expression instead.  The
2711                  result of this expression equals to the original CFA
2712                  value.  */
2713               if (fde
2714                   && fde->stack_realign
2715                   && cfa.indirect == 0
2716                   && cfa.reg != HARD_FRAME_POINTER_REGNUM)
2717                 {
2718                   dw_cfa_location cfa_exp;
2719
2720                   gcc_assert (fde->drap_reg == cfa.reg);
2721
2722                   cfa_exp.indirect = 1;
2723                   cfa_exp.reg = HARD_FRAME_POINTER_REGNUM;
2724                   cfa_exp.base_offset = offset;
2725                   cfa_exp.offset = 0;
2726
2727                   fde->drap_reg_saved = 1;
2728
2729                   def_cfa_1 (label, &cfa_exp);
2730                   break;
2731                 }
2732
2733               /* If the source register is exactly the CFA, assume
2734                  we're saving SP like any other register; this happens
2735                  on the ARM.  */
2736               def_cfa_1 (label, &cfa);
2737               queue_reg_save (label, stack_pointer_rtx, NULL_RTX, offset);
2738               break;
2739             }
2740           else
2741             {
2742               /* Otherwise, we'll need to look in the stack to
2743                  calculate the CFA.  */
2744               rtx x = XEXP (dest, 0);
2745
2746               if (!REG_P (x))
2747                 x = XEXP (x, 0);
2748               gcc_assert (REG_P (x));
2749
2750               cfa.reg = REGNO (x);
2751               cfa.base_offset = offset;
2752               cfa.indirect = 1;
2753               def_cfa_1 (label, &cfa);
2754               break;
2755             }
2756         }
2757
2758       def_cfa_1 (label, &cfa);
2759       {
2760         span = targetm.dwarf_register_span (src);
2761
2762         if (!span)
2763           queue_reg_save (label, src, NULL_RTX, offset);
2764         else
2765           {
2766             /* We have a PARALLEL describing where the contents of SRC
2767                live.  Queue register saves for each piece of the
2768                PARALLEL.  */
2769             int par_index;
2770             int limit;
2771             HOST_WIDE_INT span_offset = offset;
2772
2773             gcc_assert (GET_CODE (span) == PARALLEL);
2774
2775             limit = XVECLEN (span, 0);
2776             for (par_index = 0; par_index < limit; par_index++)
2777               {
2778                 rtx elem = XVECEXP (span, 0, par_index);
2779
2780                 queue_reg_save (label, elem, NULL_RTX, span_offset);
2781                 span_offset += GET_MODE_SIZE (GET_MODE (elem));
2782               }
2783           }
2784       }
2785       break;
2786
2787     default:
2788       gcc_unreachable ();
2789     }
2790 }
2791
2792 /* Record call frame debugging information for INSN, which either
2793    sets SP or FP (adjusting how we calculate the frame address) or saves a
2794    register to the stack.  If INSN is NULL_RTX, initialize our state.
2795
2796    If AFTER_P is false, we're being called before the insn is emitted,
2797    otherwise after.  Call instructions get invoked twice.  */
2798
2799 void
2800 dwarf2out_frame_debug (rtx insn, bool after_p)
2801 {
2802   const char *label;
2803   rtx note, n;
2804   bool handled_one = false;
2805
2806   if (!NONJUMP_INSN_P (insn) || clobbers_queued_reg_save (insn))
2807     dwarf2out_flush_queued_reg_saves ();
2808
2809   if (!RTX_FRAME_RELATED_P (insn))
2810     {
2811       /* ??? This should be done unconditionally since stack adjustments
2812          matter if the stack pointer is not the CFA register anymore but
2813          is still used to save registers.  */
2814       if (!ACCUMULATE_OUTGOING_ARGS)
2815         dwarf2out_notice_stack_adjust (insn, after_p);
2816       return;
2817     }
2818
2819   label = dwarf2out_cfi_label (false);
2820   any_cfis_emitted = false;
2821
2822   for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
2823     switch (REG_NOTE_KIND (note))
2824       {
2825       case REG_FRAME_RELATED_EXPR:
2826         insn = XEXP (note, 0);
2827         goto found;
2828
2829       case REG_CFA_DEF_CFA:
2830         dwarf2out_frame_debug_def_cfa (XEXP (note, 0), label);
2831         handled_one = true;
2832         break;
2833
2834       case REG_CFA_ADJUST_CFA:
2835         n = XEXP (note, 0);
2836         if (n == NULL)
2837           {
2838             n = PATTERN (insn);
2839             if (GET_CODE (n) == PARALLEL)
2840               n = XVECEXP (n, 0, 0);
2841           }
2842         dwarf2out_frame_debug_adjust_cfa (n, label);
2843         handled_one = true;
2844         break;
2845
2846       case REG_CFA_OFFSET:
2847         n = XEXP (note, 0);
2848         if (n == NULL)
2849           n = single_set (insn);
2850         dwarf2out_frame_debug_cfa_offset (n, label);
2851         handled_one = true;
2852         break;
2853
2854       case REG_CFA_REGISTER:
2855         n = XEXP (note, 0);
2856         if (n == NULL)
2857           {
2858             n = PATTERN (insn);
2859             if (GET_CODE (n) == PARALLEL)
2860               n = XVECEXP (n, 0, 0);
2861           }
2862         dwarf2out_frame_debug_cfa_register (n, label);
2863         handled_one = true;
2864         break;
2865
2866       case REG_CFA_EXPRESSION:
2867         n = XEXP (note, 0);
2868         if (n == NULL)
2869           n = single_set (insn);
2870         dwarf2out_frame_debug_cfa_expression (n, label);
2871         handled_one = true;
2872         break;
2873
2874       case REG_CFA_RESTORE:
2875         n = XEXP (note, 0);
2876         if (n == NULL)
2877           {
2878             n = PATTERN (insn);
2879             if (GET_CODE (n) == PARALLEL)
2880               n = XVECEXP (n, 0, 0);
2881             n = XEXP (n, 0);
2882           }
2883         dwarf2out_frame_debug_cfa_restore (n, label);
2884         handled_one = true;
2885         break;
2886
2887       case REG_CFA_SET_VDRAP:
2888         n = XEXP (note, 0);
2889         if (REG_P (n))
2890           {
2891             dw_fde_ref fde = current_fde ();
2892             if (fde)
2893               {
2894                 gcc_assert (fde->vdrap_reg == INVALID_REGNUM);
2895                 if (REG_P (n))
2896                   fde->vdrap_reg = REGNO (n);
2897               }
2898           }
2899         handled_one = true;
2900         break;
2901
2902       default:
2903         break;
2904       }
2905   if (handled_one)
2906     {
2907       if (any_cfis_emitted)
2908         dwarf2out_flush_queued_reg_saves ();
2909       return;
2910     }
2911
2912   insn = PATTERN (insn);
2913  found:
2914   dwarf2out_frame_debug_expr (insn, label);
2915
2916   /* Check again.  A parallel can save and update the same register.
2917      We could probably check just once, here, but this is safer than
2918      removing the check above.  */
2919   if (any_cfis_emitted || clobbers_queued_reg_save (insn))
2920     dwarf2out_flush_queued_reg_saves ();
2921 }
2922
2923 /* Called once at the start of final to initialize some data for the
2924    current function.  */
2925 void
2926 dwarf2out_frame_debug_init (void)
2927 {
2928   size_t i;
2929
2930   /* Flush any queued register saves.  */
2931   dwarf2out_flush_queued_reg_saves ();
2932
2933   /* Set up state for generating call frame debug info.  */
2934   lookup_cfa (&cfa);
2935   gcc_assert (cfa.reg
2936               == (unsigned long)DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM));
2937
2938   cfa.reg = STACK_POINTER_REGNUM;
2939   cfa_store = cfa;
2940   cfa_temp.reg = -1;
2941   cfa_temp.offset = 0;
2942
2943   for (i = 0; i < num_regs_saved_in_regs; i++)
2944     {
2945       regs_saved_in_regs[i].orig_reg = NULL_RTX;
2946       regs_saved_in_regs[i].saved_in_reg = NULL_RTX;
2947     }
2948   num_regs_saved_in_regs = 0;
2949
2950   if (barrier_args_size)
2951     {
2952       XDELETEVEC (barrier_args_size);
2953       barrier_args_size = NULL;
2954     }
2955 }
2956
2957 /* Determine if we need to save and restore CFI information around this
2958    epilogue.  If SIBCALL is true, then this is a sibcall epilogue.  If
2959    we do need to save/restore, then emit the save now, and insert a
2960    NOTE_INSN_CFA_RESTORE_STATE at the appropriate place in the stream.  */
2961
2962 void
2963 dwarf2out_cfi_begin_epilogue (rtx insn)
2964 {
2965   bool saw_frp = false;
2966   rtx i;
2967
2968   /* Scan forward to the return insn, noticing if there are possible
2969      frame related insns.  */
2970   for (i = NEXT_INSN (insn); i ; i = NEXT_INSN (i))
2971     {
2972       if (!INSN_P (i))
2973         continue;
2974
2975       /* Look for both regular and sibcalls to end the block.  */
2976       if (returnjump_p (i))
2977         break;
2978       if (CALL_P (i) && SIBLING_CALL_P (i))
2979         break;
2980
2981       if (GET_CODE (PATTERN (i)) == SEQUENCE)
2982         {
2983           int idx;
2984           rtx seq = PATTERN (i);
2985
2986           if (returnjump_p (XVECEXP (seq, 0, 0)))
2987             break;
2988           if (CALL_P (XVECEXP (seq, 0, 0))
2989               && SIBLING_CALL_P (XVECEXP (seq, 0, 0)))
2990             break;
2991
2992           for (idx = 0; idx < XVECLEN (seq, 0); idx++)
2993             if (RTX_FRAME_RELATED_P (XVECEXP (seq, 0, idx)))
2994               saw_frp = true;
2995         }
2996
2997       if (RTX_FRAME_RELATED_P (i))
2998         saw_frp = true;
2999     }
3000
3001   /* If the port doesn't emit epilogue unwind info, we don't need a
3002      save/restore pair.  */
3003   if (!saw_frp)
3004     return;
3005
3006   /* Otherwise, search forward to see if the return insn was the last
3007      basic block of the function.  If so, we don't need save/restore.  */
3008   gcc_assert (i != NULL);
3009   i = next_real_insn (i);
3010   if (i == NULL)
3011     return;
3012
3013   /* Insert the restore before that next real insn in the stream, and before
3014      a potential NOTE_INSN_EPILOGUE_BEG -- we do need these notes to be
3015      properly nested.  This should be after any label or alignment.  This
3016      will be pushed into the CFI stream by the function below.  */
3017   while (1)
3018     {
3019       rtx p = PREV_INSN (i);
3020       if (!NOTE_P (p))
3021         break;
3022       if (NOTE_KIND (p) == NOTE_INSN_BASIC_BLOCK)
3023         break;
3024       i = p;
3025     }
3026   emit_note_before (NOTE_INSN_CFA_RESTORE_STATE, i);
3027
3028   emit_cfa_remember = true;
3029
3030   /* And emulate the state save.  */
3031   gcc_assert (!cfa_remember.in_use);
3032   cfa_remember = cfa;
3033   cfa_remember.in_use = 1;
3034 }
3035
3036 /* A "subroutine" of dwarf2out_cfi_begin_epilogue.  Emit the restore
3037    required.  */
3038
3039 void
3040 dwarf2out_frame_debug_restore_state (void)
3041 {
3042   dw_cfi_ref cfi = new_cfi ();
3043   const char *label = dwarf2out_cfi_label (false);
3044
3045   cfi->dw_cfi_opc = DW_CFA_restore_state;
3046   add_fde_cfi (label, cfi);
3047
3048   gcc_assert (cfa_remember.in_use);
3049   cfa = cfa_remember;
3050   cfa_remember.in_use = 0;
3051 }
3052
3053 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used.  */
3054 static enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
3055  (enum dwarf_call_frame_info cfi);
3056
3057 static enum dw_cfi_oprnd_type
3058 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi)
3059 {
3060   switch (cfi)
3061     {
3062     case DW_CFA_nop:
3063     case DW_CFA_GNU_window_save:
3064     case DW_CFA_remember_state:
3065     case DW_CFA_restore_state:
3066       return dw_cfi_oprnd_unused;
3067
3068     case DW_CFA_set_loc:
3069     case DW_CFA_advance_loc1:
3070     case DW_CFA_advance_loc2:
3071     case DW_CFA_advance_loc4:
3072     case DW_CFA_MIPS_advance_loc8:
3073       return dw_cfi_oprnd_addr;
3074
3075     case DW_CFA_offset:
3076     case DW_CFA_offset_extended:
3077     case DW_CFA_def_cfa:
3078     case DW_CFA_offset_extended_sf:
3079     case DW_CFA_def_cfa_sf:
3080     case DW_CFA_restore:
3081     case DW_CFA_restore_extended:
3082     case DW_CFA_undefined:
3083     case DW_CFA_same_value:
3084     case DW_CFA_def_cfa_register:
3085     case DW_CFA_register:
3086     case DW_CFA_expression:
3087       return dw_cfi_oprnd_reg_num;
3088
3089     case DW_CFA_def_cfa_offset:
3090     case DW_CFA_GNU_args_size:
3091     case DW_CFA_def_cfa_offset_sf:
3092       return dw_cfi_oprnd_offset;
3093
3094     case DW_CFA_def_cfa_expression:
3095       return dw_cfi_oprnd_loc;
3096
3097     default:
3098       gcc_unreachable ();
3099     }
3100 }
3101
3102 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used.  */
3103 static enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
3104  (enum dwarf_call_frame_info cfi);
3105
3106 static enum dw_cfi_oprnd_type
3107 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi)
3108 {
3109   switch (cfi)
3110     {
3111     case DW_CFA_def_cfa:
3112     case DW_CFA_def_cfa_sf:
3113     case DW_CFA_offset:
3114     case DW_CFA_offset_extended_sf:
3115     case DW_CFA_offset_extended:
3116       return dw_cfi_oprnd_offset;
3117
3118     case DW_CFA_register:
3119       return dw_cfi_oprnd_reg_num;
3120
3121     case DW_CFA_expression:
3122       return dw_cfi_oprnd_loc;
3123
3124     default:
3125       return dw_cfi_oprnd_unused;
3126     }
3127 }
3128
3129 /* Switch [BACK] to eh_frame_section.  If we don't have an eh_frame_section,
3130    switch to the data section instead, and write out a synthetic start label
3131    for collect2 the first time around.  */
3132
3133 static void
3134 switch_to_eh_frame_section (bool back)
3135 {
3136   tree label;
3137
3138 #ifdef EH_FRAME_SECTION_NAME
3139   if (eh_frame_section == 0)
3140     {
3141       int flags;
3142
3143       if (EH_TABLES_CAN_BE_READ_ONLY)
3144         {
3145           int fde_encoding;
3146           int per_encoding;
3147           int lsda_encoding;
3148
3149           fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
3150                                                        /*global=*/0);
3151           per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
3152                                                        /*global=*/1);
3153           lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
3154                                                         /*global=*/0);
3155           flags = ((! flag_pic
3156                     || ((fde_encoding & 0x70) != DW_EH_PE_absptr
3157                         && (fde_encoding & 0x70) != DW_EH_PE_aligned
3158                         && (per_encoding & 0x70) != DW_EH_PE_absptr
3159                         && (per_encoding & 0x70) != DW_EH_PE_aligned
3160                         && (lsda_encoding & 0x70) != DW_EH_PE_absptr
3161                         && (lsda_encoding & 0x70) != DW_EH_PE_aligned))
3162                    ? 0 : SECTION_WRITE);
3163         }
3164       else
3165         flags = SECTION_WRITE;
3166       eh_frame_section = get_section (EH_FRAME_SECTION_NAME, flags, NULL);
3167     }
3168 #endif /* EH_FRAME_SECTION_NAME */
3169
3170   if (eh_frame_section)
3171     switch_to_section (eh_frame_section);
3172   else
3173     {
3174       /* We have no special eh_frame section.  Put the information in
3175          the data section and emit special labels to guide collect2.  */
3176       switch_to_section (data_section);
3177
3178       if (!back)
3179         {
3180           label = get_file_function_name ("F");
3181           ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
3182           targetm.asm_out.globalize_label (asm_out_file,
3183                                            IDENTIFIER_POINTER (label));
3184           ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
3185         }
3186     }
3187 }
3188
3189 /* Switch [BACK] to the eh or debug frame table section, depending on
3190    FOR_EH.  */
3191
3192 static void
3193 switch_to_frame_table_section (int for_eh, bool back)
3194 {
3195   if (for_eh)
3196     switch_to_eh_frame_section (back);
3197   else
3198     {
3199       if (!debug_frame_section)
3200         debug_frame_section = get_section (DEBUG_FRAME_SECTION,
3201                                            SECTION_DEBUG, NULL);
3202       switch_to_section (debug_frame_section);
3203     }
3204 }
3205
3206 /* Output a Call Frame Information opcode and its operand(s).  */
3207
3208 static void
3209 output_cfi (dw_cfi_ref cfi, dw_fde_ref fde, int for_eh)
3210 {
3211   unsigned long r;
3212   HOST_WIDE_INT off;
3213
3214   if (cfi->dw_cfi_opc == DW_CFA_advance_loc)
3215     dw2_asm_output_data (1, (cfi->dw_cfi_opc
3216                              | (cfi->dw_cfi_oprnd1.dw_cfi_offset & 0x3f)),
3217                          "DW_CFA_advance_loc " HOST_WIDE_INT_PRINT_HEX,
3218                          ((unsigned HOST_WIDE_INT)
3219                           cfi->dw_cfi_oprnd1.dw_cfi_offset));
3220   else if (cfi->dw_cfi_opc == DW_CFA_offset)
3221     {
3222       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3223       dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
3224                            "DW_CFA_offset, column %#lx", r);
3225       off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3226       dw2_asm_output_data_uleb128 (off, NULL);
3227     }
3228   else if (cfi->dw_cfi_opc == DW_CFA_restore)
3229     {
3230       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3231       dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
3232                            "DW_CFA_restore, column %#lx", r);
3233     }
3234   else
3235     {
3236       dw2_asm_output_data (1, cfi->dw_cfi_opc,
3237                            "%s", dwarf_cfi_name (cfi->dw_cfi_opc));
3238
3239       switch (cfi->dw_cfi_opc)
3240         {
3241         case DW_CFA_set_loc:
3242           if (for_eh)
3243             dw2_asm_output_encoded_addr_rtx (
3244                 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
3245                 gen_rtx_SYMBOL_REF (Pmode, cfi->dw_cfi_oprnd1.dw_cfi_addr),
3246                 false, NULL);
3247           else
3248             dw2_asm_output_addr (DWARF2_ADDR_SIZE,
3249                                  cfi->dw_cfi_oprnd1.dw_cfi_addr, NULL);
3250           fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3251           break;
3252
3253         case DW_CFA_advance_loc1:
3254           dw2_asm_output_delta (1, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3255                                 fde->dw_fde_current_label, NULL);
3256           fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3257           break;
3258
3259         case DW_CFA_advance_loc2:
3260           dw2_asm_output_delta (2, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3261                                 fde->dw_fde_current_label, NULL);
3262           fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3263           break;
3264
3265         case DW_CFA_advance_loc4:
3266           dw2_asm_output_delta (4, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3267                                 fde->dw_fde_current_label, NULL);
3268           fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3269           break;
3270
3271         case DW_CFA_MIPS_advance_loc8:
3272           dw2_asm_output_delta (8, cfi->dw_cfi_oprnd1.dw_cfi_addr,
3273                                 fde->dw_fde_current_label, NULL);
3274           fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
3275           break;
3276
3277         case DW_CFA_offset_extended:
3278           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3279           dw2_asm_output_data_uleb128 (r, NULL);
3280           off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3281           dw2_asm_output_data_uleb128 (off, NULL);
3282           break;
3283
3284         case DW_CFA_def_cfa:
3285           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3286           dw2_asm_output_data_uleb128 (r, NULL);
3287           dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
3288           break;
3289
3290         case DW_CFA_offset_extended_sf:
3291           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3292           dw2_asm_output_data_uleb128 (r, NULL);
3293           off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3294           dw2_asm_output_data_sleb128 (off, NULL);
3295           break;
3296
3297         case DW_CFA_def_cfa_sf:
3298           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3299           dw2_asm_output_data_uleb128 (r, NULL);
3300           off = div_data_align (cfi->dw_cfi_oprnd2.dw_cfi_offset);
3301           dw2_asm_output_data_sleb128 (off, NULL);
3302           break;
3303
3304         case DW_CFA_restore_extended:
3305         case DW_CFA_undefined:
3306         case DW_CFA_same_value:
3307         case DW_CFA_def_cfa_register:
3308           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3309           dw2_asm_output_data_uleb128 (r, NULL);
3310           break;
3311
3312         case DW_CFA_register:
3313           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
3314           dw2_asm_output_data_uleb128 (r, NULL);
3315           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, for_eh);
3316           dw2_asm_output_data_uleb128 (r, NULL);
3317           break;
3318
3319         case DW_CFA_def_cfa_offset:
3320         case DW_CFA_GNU_args_size:
3321           dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
3322           break;
3323
3324         case DW_CFA_def_cfa_offset_sf:
3325           off = div_data_align (cfi->dw_cfi_oprnd1.dw_cfi_offset);
3326           dw2_asm_output_data_sleb128 (off, NULL);
3327           break;
3328
3329         case DW_CFA_GNU_window_save:
3330           break;
3331
3332         case DW_CFA_def_cfa_expression:
3333         case DW_CFA_expression:
3334           output_cfa_loc (cfi, for_eh);
3335           break;
3336
3337         case DW_CFA_GNU_negative_offset_extended:
3338           /* Obsoleted by DW_CFA_offset_extended_sf.  */
3339           gcc_unreachable ();
3340
3341         default:
3342           break;
3343         }
3344     }
3345 }
3346
3347 /* Similar, but do it via assembler directives instead.  */
3348
3349 static void
3350 output_cfi_directive (dw_cfi_ref cfi)
3351 {
3352   unsigned long r, r2;
3353
3354   switch (cfi->dw_cfi_opc)
3355     {
3356     case DW_CFA_advance_loc:
3357     case DW_CFA_advance_loc1:
3358     case DW_CFA_advance_loc2:
3359     case DW_CFA_advance_loc4:
3360     case DW_CFA_MIPS_advance_loc8:
3361     case DW_CFA_set_loc:
3362       /* Should only be created by add_fde_cfi in a code path not
3363          followed when emitting via directives.  The assembler is
3364          going to take care of this for us.  */
3365       gcc_unreachable ();
3366
3367     case DW_CFA_offset:
3368     case DW_CFA_offset_extended:
3369     case DW_CFA_offset_extended_sf:
3370       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3371       fprintf (asm_out_file, "\t.cfi_offset %lu, "HOST_WIDE_INT_PRINT_DEC"\n",
3372                r, cfi->dw_cfi_oprnd2.dw_cfi_offset);
3373       break;
3374
3375     case DW_CFA_restore:
3376     case DW_CFA_restore_extended:
3377       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3378       fprintf (asm_out_file, "\t.cfi_restore %lu\n", r);
3379       break;
3380
3381     case DW_CFA_undefined:
3382       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3383       fprintf (asm_out_file, "\t.cfi_undefined %lu\n", r);
3384       break;
3385
3386     case DW_CFA_same_value:
3387       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3388       fprintf (asm_out_file, "\t.cfi_same_value %lu\n", r);
3389       break;
3390
3391     case DW_CFA_def_cfa:
3392     case DW_CFA_def_cfa_sf:
3393       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3394       fprintf (asm_out_file, "\t.cfi_def_cfa %lu, "HOST_WIDE_INT_PRINT_DEC"\n",
3395                r, cfi->dw_cfi_oprnd2.dw_cfi_offset);
3396       break;
3397
3398     case DW_CFA_def_cfa_register:
3399       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3400       fprintf (asm_out_file, "\t.cfi_def_cfa_register %lu\n", r);
3401       break;
3402
3403     case DW_CFA_register:
3404       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
3405       r2 = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, 1);
3406       fprintf (asm_out_file, "\t.cfi_register %lu, %lu\n", r, r2);
3407       break;
3408
3409     case DW_CFA_def_cfa_offset:
3410     case DW_CFA_def_cfa_offset_sf:
3411       fprintf (asm_out_file, "\t.cfi_def_cfa_offset "
3412                HOST_WIDE_INT_PRINT_DEC"\n",
3413                cfi->dw_cfi_oprnd1.dw_cfi_offset);
3414       break;
3415
3416     case DW_CFA_remember_state:
3417       fprintf (asm_out_file, "\t.cfi_remember_state\n");
3418       break;
3419     case DW_CFA_restore_state:
3420       fprintf (asm_out_file, "\t.cfi_restore_state\n");
3421       break;
3422
3423     case DW_CFA_GNU_args_size:
3424       fprintf (asm_out_file, "\t.cfi_escape %#x,", DW_CFA_GNU_args_size);
3425       dw2_asm_output_data_uleb128_raw (cfi->dw_cfi_oprnd1.dw_cfi_offset);
3426       if (flag_debug_asm)
3427         fprintf (asm_out_file, "\t%s args_size "HOST_WIDE_INT_PRINT_DEC,
3428                  ASM_COMMENT_START, cfi->dw_cfi_oprnd1.dw_cfi_offset);
3429       fputc ('\n', asm_out_file);
3430       break;
3431
3432     case DW_CFA_GNU_window_save:
3433       fprintf (asm_out_file, "\t.cfi_window_save\n");
3434       break;
3435
3436     case DW_CFA_def_cfa_expression:
3437     case DW_CFA_expression:
3438       fprintf (asm_out_file, "\t.cfi_escape %#x,", cfi->dw_cfi_opc);
3439       output_cfa_loc_raw (cfi);
3440       fputc ('\n', asm_out_file);
3441       break;
3442
3443     default:
3444       gcc_unreachable ();
3445     }
3446 }
3447
3448 /* Output CFIs from VEC, up to index UPTO, to bring current FDE to the
3449    same state as after executing CFIs in CFI chain.  DO_CFI_ASM is
3450    true if .cfi_* directives shall be emitted, false otherwise.  If it
3451    is false, FDE and FOR_EH are the other arguments to pass to
3452    output_cfi.  */
3453
3454 static void
3455 output_cfis (cfi_vec vec, int upto, bool do_cfi_asm,
3456              dw_fde_ref fde, bool for_eh)
3457 {
3458   int ix;
3459   struct dw_cfi_struct cfi_buf;
3460   dw_cfi_ref cfi2;
3461   dw_cfi_ref cfi_args_size = NULL, cfi_cfa = NULL, cfi_cfa_offset = NULL;
3462   VEC(dw_cfi_ref, heap) *regs = VEC_alloc (dw_cfi_ref, heap, 32);
3463   unsigned int len, idx;
3464
3465   for (ix = 0; ix < upto + 1; ix++)
3466     {
3467       dw_cfi_ref cfi = ix < upto ? VEC_index (dw_cfi_ref, vec, ix) : NULL;
3468       switch (cfi ? cfi->dw_cfi_opc : DW_CFA_nop)
3469         {
3470         case DW_CFA_advance_loc:
3471         case DW_CFA_advance_loc1:
3472         case DW_CFA_advance_loc2:
3473         case DW_CFA_advance_loc4:
3474         case DW_CFA_MIPS_advance_loc8:
3475         case DW_CFA_set_loc:
3476           /* All advances should be ignored.  */
3477           break;
3478         case DW_CFA_remember_state:
3479           {
3480             dw_cfi_ref args_size = cfi_args_size;
3481
3482             /* Skip everything between .cfi_remember_state and
3483                .cfi_restore_state.  */
3484             ix++;
3485             if (ix == upto)
3486               goto flush_all;
3487
3488             for (; ix < upto; ix++)
3489               {
3490                 cfi2 = VEC_index (dw_cfi_ref, vec, ix);
3491                 if (cfi2->dw_cfi_opc == DW_CFA_restore_state)
3492                   break;
3493                 else if (cfi2->dw_cfi_opc == DW_CFA_GNU_args_size)
3494                   args_size = cfi2;
3495                 else
3496                   gcc_assert (cfi2->dw_cfi_opc != DW_CFA_remember_state);
3497               }
3498
3499             cfi_args_size = args_size;
3500             break;
3501           }
3502         case DW_CFA_GNU_args_size:
3503           cfi_args_size = cfi;
3504           break;
3505         case DW_CFA_GNU_window_save:
3506           goto flush_all;
3507         case DW_CFA_offset:
3508         case DW_CFA_offset_extended:
3509         case DW_CFA_offset_extended_sf:
3510         case DW_CFA_restore:
3511         case DW_CFA_restore_extended:
3512         case DW_CFA_undefined:
3513         case DW_CFA_same_value:
3514         case DW_CFA_register:
3515         case DW_CFA_val_offset:
3516         case DW_CFA_val_offset_sf:
3517         case DW_CFA_expression:
3518         case DW_CFA_val_expression:
3519         case DW_CFA_GNU_negative_offset_extended:
3520           if (VEC_length (dw_cfi_ref, regs)
3521               <= cfi->dw_cfi_oprnd1.dw_cfi_reg_num)
3522             VEC_safe_grow_cleared (dw_cfi_ref, heap, regs,
3523                                    cfi->dw_cfi_oprnd1.dw_cfi_reg_num + 1);
3524           VEC_replace (dw_cfi_ref, regs, cfi->dw_cfi_oprnd1.dw_cfi_reg_num,
3525                        cfi);
3526           break;
3527         case DW_CFA_def_cfa:
3528         case DW_CFA_def_cfa_sf:
3529         case DW_CFA_def_cfa_expression:
3530           cfi_cfa = cfi;
3531           cfi_cfa_offset = cfi;
3532           break;
3533         case DW_CFA_def_cfa_register:
3534           cfi_cfa = cfi;
3535           break;
3536         case DW_CFA_def_cfa_offset:
3537         case DW_CFA_def_cfa_offset_sf:
3538           cfi_cfa_offset = cfi;
3539           break;
3540         case DW_CFA_nop:
3541           gcc_assert (cfi == NULL);
3542         flush_all:
3543           len = VEC_length (dw_cfi_ref, regs);
3544           for (idx = 0; idx < len; idx++)
3545             {
3546               cfi2 = VEC_replace (dw_cfi_ref, regs, idx, NULL);
3547               if (cfi2 != NULL
3548                   && cfi2->dw_cfi_opc != DW_CFA_restore
3549                   && cfi2->dw_cfi_opc != DW_CFA_restore_extended)
3550                 {
3551                   if (do_cfi_asm)
3552                     output_cfi_directive (cfi2);
3553                   else
3554                     output_cfi (cfi2, fde, for_eh);
3555                 }
3556             }
3557           if (cfi_cfa && cfi_cfa_offset && cfi_cfa_offset != cfi_cfa)
3558             {
3559               gcc_assert (cfi_cfa->dw_cfi_opc != DW_CFA_def_cfa_expression);
3560               cfi_buf = *cfi_cfa;
3561               switch (cfi_cfa_offset->dw_cfi_opc)
3562                 {
3563                 case DW_CFA_def_cfa_offset:
3564                   cfi_buf.dw_cfi_opc = DW_CFA_def_cfa;
3565                   cfi_buf.dw_cfi_oprnd2 = cfi_cfa_offset->dw_cfi_oprnd1;
3566                   break;
3567                 case DW_CFA_def_cfa_offset_sf:
3568                   cfi_buf.dw_cfi_opc = DW_CFA_def_cfa_sf;
3569                   cfi_buf.dw_cfi_oprnd2 = cfi_cfa_offset->dw_cfi_oprnd1;
3570                   break;
3571                 case DW_CFA_def_cfa:
3572                 case DW_CFA_def_cfa_sf:
3573                   cfi_buf.dw_cfi_opc = cfi_cfa_offset->dw_cfi_opc;
3574                   cfi_buf.dw_cfi_oprnd2 = cfi_cfa_offset->dw_cfi_oprnd2;
3575                   break;
3576                 default:
3577                   gcc_unreachable ();
3578                 }
3579               cfi_cfa = &cfi_buf;
3580             }
3581           else if (cfi_cfa_offset)
3582             cfi_cfa = cfi_cfa_offset;
3583           if (cfi_cfa)
3584             {
3585               if (do_cfi_asm)
3586                 output_cfi_directive (cfi_cfa);
3587               else
3588                 output_cfi (cfi_cfa, fde, for_eh);
3589             }
3590           cfi_cfa = NULL;
3591           cfi_cfa_offset = NULL;
3592           if (cfi_args_size
3593               && cfi_args_size->dw_cfi_oprnd1.dw_cfi_offset)
3594             {
3595               if (do_cfi_asm)
3596                 output_cfi_directive (cfi_args_size);
3597               else
3598                 output_cfi (cfi_args_size, fde, for_eh);
3599             }
3600           cfi_args_size = NULL;
3601           if (cfi == NULL)
3602             {
3603               VEC_free (dw_cfi_ref, heap, regs);
3604               return;
3605             }
3606           else if (do_cfi_asm)
3607             output_cfi_directive (cfi);
3608           else
3609             output_cfi (cfi, fde, for_eh);
3610           break;
3611         default:
3612           gcc_unreachable ();
3613         }
3614     }
3615 }
3616
3617 /* Like output_cfis, but emit all CFIs in the vector.  */
3618 static void
3619 output_all_cfis (cfi_vec vec, bool do_cfi_asm,
3620                  dw_fde_ref fde, bool for_eh)
3621 {
3622   output_cfis (vec, VEC_length (dw_cfi_ref, vec), do_cfi_asm, fde, for_eh);
3623 }
3624
3625 /* Output one FDE.  */
3626
3627 static void
3628 output_fde (dw_fde_ref fde, bool for_eh, bool second,
3629             char *section_start_label, int fde_encoding, char *augmentation,
3630             bool any_lsda_needed, int lsda_encoding)
3631 {
3632   int ix;
3633   const char *begin, *end;
3634   static unsigned int j;
3635   char l1[20], l2[20];
3636   dw_cfi_ref cfi;
3637
3638   targetm.asm_out.emit_unwind_label (asm_out_file, fde->decl, for_eh,
3639                                      /* empty */ 0);
3640   targetm.asm_out.internal_label (asm_out_file, FDE_LABEL,
3641                                   for_eh + j);
3642   ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + j);
3643   ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + j);
3644   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4 && !for_eh)
3645     dw2_asm_output_data (4, 0xffffffff, "Initial length escape value"
3646                          " indicating 64-bit DWARF extension");
3647   dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
3648                         "FDE Length");
3649   ASM_OUTPUT_LABEL (asm_out_file, l1);
3650
3651   if (for_eh)
3652     dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
3653   else
3654     dw2_asm_output_offset (DWARF_OFFSET_SIZE, section_start_label,
3655                            debug_frame_section, "FDE CIE offset");
3656
3657   begin = second ? fde->dw_fde_second_begin : fde->dw_fde_begin;
3658   end = second ? fde->dw_fde_second_end : fde->dw_fde_end;
3659
3660   if (for_eh)
3661     {
3662       rtx sym_ref = gen_rtx_SYMBOL_REF (Pmode, begin);
3663       SYMBOL_REF_FLAGS (sym_ref) |= SYMBOL_FLAG_LOCAL;
3664       dw2_asm_output_encoded_addr_rtx (fde_encoding, sym_ref, false,
3665                                        "FDE initial location");
3666       dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
3667                             end, begin, "FDE address range");
3668     }
3669   else
3670     {
3671       dw2_asm_output_addr (DWARF2_ADDR_SIZE, begin, "FDE initial location");
3672       dw2_asm_output_delta (DWARF2_ADDR_SIZE, end, begin, "FDE address range");
3673     }
3674
3675   if (augmentation[0])
3676     {
3677       if (any_lsda_needed)
3678         {
3679           int size = size_of_encoded_value (lsda_encoding);
3680
3681           if (lsda_encoding == DW_EH_PE_aligned)
3682             {
3683               int offset = (  4         /* Length */
3684                             + 4         /* CIE offset */
3685                             + 2 * size_of_encoded_value (fde_encoding)
3686                             + 1         /* Augmentation size */ );
3687               int pad = -offset & (PTR_SIZE - 1);
3688
3689               size += pad;
3690               gcc_assert (size_of_uleb128 (size) == 1);
3691             }
3692
3693           dw2_asm_output_data_uleb128 (size, "Augmentation size");
3694
3695           if (fde->uses_eh_lsda)
3696             {
3697               ASM_GENERATE_INTERNAL_LABEL (l1, second ? "LLSDAC" : "LLSDA",
3698                                            fde->funcdef_number);
3699               dw2_asm_output_encoded_addr_rtx (lsda_encoding,
3700                                                gen_rtx_SYMBOL_REF (Pmode, l1),
3701                                                false,
3702                                                "Language Specific Data Area");
3703             }
3704           else
3705             {
3706               if (lsda_encoding == DW_EH_PE_aligned)
3707                 ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
3708               dw2_asm_output_data (size_of_encoded_value (lsda_encoding), 0,
3709                                    "Language Specific Data Area (none)");
3710             }
3711         }
3712       else
3713         dw2_asm_output_data_uleb128 (0, "Augmentation size");
3714     }
3715
3716   /* Loop through the Call Frame Instructions associated with
3717      this FDE.  */
3718   fde->dw_fde_current_label = begin;
3719   if (fde->dw_fde_second_begin == NULL)
3720     FOR_EACH_VEC_ELT (dw_cfi_ref, fde->dw_fde_cfi, ix, cfi)
3721       output_cfi (cfi, fde, for_eh);
3722   else if (!second)
3723     {
3724       if (fde->dw_fde_switch_cfi_index > 0)
3725         FOR_EACH_VEC_ELT (dw_cfi_ref, fde->dw_fde_cfi, ix, cfi)
3726           {
3727             if (ix == fde->dw_fde_switch_cfi_index)
3728               break;
3729             output_cfi (cfi, fde, for_eh);
3730           }
3731     }
3732   else
3733     {
3734       int i, from = 0;
3735       int until = VEC_length (dw_cfi_ref, fde->dw_fde_cfi);
3736
3737       if (fde->dw_fde_switch_cfi_index > 0)
3738         {
3739           from = fde->dw_fde_switch_cfi_index;
3740           output_cfis (fde->dw_fde_cfi, from, false, fde, for_eh);
3741         }
3742       for (i = from; i < until; i++)
3743         output_cfi (VEC_index (dw_cfi_ref, fde->dw_fde_cfi, i),
3744                     fde, for_eh);
3745     }
3746
3747   /* If we are to emit a ref/link from function bodies to their frame tables,
3748      do it now.  This is typically performed to make sure that tables
3749      associated with functions are dragged with them and not discarded in
3750      garbage collecting links. We need to do this on a per function basis to
3751      cope with -ffunction-sections.  */
3752
3753 #ifdef ASM_OUTPUT_DWARF_TABLE_REF
3754   /* Switch to the function section, emit the ref to the tables, and
3755      switch *back* into the table section.  */
3756   switch_to_section (function_section (fde->decl));
3757   ASM_OUTPUT_DWARF_TABLE_REF (section_start_label);
3758   switch_to_frame_table_section (for_eh, true);
3759 #endif
3760
3761   /* Pad the FDE out to an address sized boundary.  */
3762   ASM_OUTPUT_ALIGN (asm_out_file,
3763                     floor_log2 ((for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE)));
3764   ASM_OUTPUT_LABEL (asm_out_file, l2);
3765
3766   j += 2;
3767 }
3768
3769 /* Return true if frame description entry FDE is needed for EH.  */
3770
3771 static bool
3772 fde_needed_for_eh_p (dw_fde_ref fde)
3773 {
3774   if (flag_asynchronous_unwind_tables)
3775     return true;
3776
3777   if (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde->decl))
3778     return true;
3779
3780   if (fde->uses_eh_lsda)
3781     return true;
3782
3783   /* If exceptions are enabled, we have collected nothrow info.  */
3784   if (flag_exceptions && (fde->all_throwers_are_sibcalls || fde->nothrow))
3785     return false;
3786
3787   return true;
3788 }
3789
3790 /* Output the call frame information used to record information
3791    that relates to calculating the frame pointer, and records the
3792    location of saved registers.  */
3793
3794 static void
3795 output_call_frame_info (int for_eh)
3796 {
3797   unsigned int i;
3798   dw_fde_ref fde;
3799   dw_cfi_ref cfi;
3800   char l1[20], l2[20], section_start_label[20];
3801   bool any_lsda_needed = false;
3802   char augmentation[6];
3803   int augmentation_size;
3804   int fde_encoding = DW_EH_PE_absptr;
3805   int per_encoding = DW_EH_PE_absptr;
3806   int lsda_encoding = DW_EH_PE_absptr;
3807   int return_reg;
3808   rtx personality = NULL;
3809   int dw_cie_version;
3810
3811   /* Don't emit a CIE if there won't be any FDEs.  */
3812   if (fde_table_in_use == 0)
3813     return;
3814
3815   /* Nothing to do if the assembler's doing it all.  */
3816   if (dwarf2out_do_cfi_asm ())
3817     return;
3818
3819   /* If we don't have any functions we'll want to unwind out of, don't emit
3820      any EH unwind information.  If we make FDEs linkonce, we may have to
3821      emit an empty label for an FDE that wouldn't otherwise be emitted.  We
3822      want to avoid having an FDE kept around when the function it refers to
3823      is discarded.  Example where this matters: a primary function template
3824      in C++ requires EH information, an explicit specialization doesn't.  */
3825   if (for_eh)
3826     {
3827       bool any_eh_needed = false;
3828
3829       for (i = 0; i < fde_table_in_use; i++)
3830         if (fde_table[i].uses_eh_lsda)
3831           any_eh_needed = any_lsda_needed = true;
3832         else if (fde_needed_for_eh_p (&fde_table[i]))
3833           any_eh_needed = true;
3834         else if (TARGET_USES_WEAK_UNWIND_INFO)
3835           targetm.asm_out.emit_unwind_label (asm_out_file, fde_table[i].decl,
3836                                              1, 1);
3837
3838       if (!any_eh_needed)
3839         return;
3840     }
3841
3842   /* We're going to be generating comments, so turn on app.  */
3843   if (flag_debug_asm)
3844     app_enable ();
3845
3846   /* Switch to the proper frame section, first time.  */
3847   switch_to_frame_table_section (for_eh, false);
3848
3849   ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
3850   ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
3851
3852   /* Output the CIE.  */
3853   ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
3854   ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
3855   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4 && !for_eh)
3856     dw2_asm_output_data (4, 0xffffffff,
3857       "Initial length escape value indicating 64-bit DWARF extension");
3858   dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
3859                         "Length of Common Information Entry");
3860   ASM_OUTPUT_LABEL (asm_out_file, l1);
3861
3862   /* Now that the CIE pointer is PC-relative for EH,
3863      use 0 to identify the CIE.  */
3864   dw2_asm_output_data ((for_eh ? 4 : DWARF_OFFSET_SIZE),
3865                        (for_eh ? 0 : DWARF_CIE_ID),
3866                        "CIE Identifier Tag");
3867
3868   /* Use the CIE version 3 for DWARF3; allow DWARF2 to continue to
3869      use CIE version 1, unless that would produce incorrect results
3870      due to overflowing the return register column.  */
3871   return_reg = DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN, for_eh);
3872   dw_cie_version = 1;
3873   if (return_reg >= 256 || dwarf_version > 2)
3874     dw_cie_version = 3;
3875   dw2_asm_output_data (1, dw_cie_version, "CIE Version");
3876
3877   augmentation[0] = 0;
3878   augmentation_size = 0;
3879
3880   personality = current_unit_personality;
3881   if (for_eh)
3882     {
3883       char *p;
3884
3885       /* Augmentation:
3886          z      Indicates that a uleb128 is present to size the
3887                 augmentation section.
3888          L      Indicates the encoding (and thus presence) of
3889                 an LSDA pointer in the FDE augmentation.
3890          R      Indicates a non-default pointer encoding for
3891                 FDE code pointers.
3892          P      Indicates the presence of an encoding + language
3893                 personality routine in the CIE augmentation.  */
3894
3895       fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
3896       per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
3897       lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
3898
3899       p = augmentation + 1;
3900       if (personality)
3901         {
3902           *p++ = 'P';
3903           augmentation_size += 1 + size_of_encoded_value (per_encoding);
3904           assemble_external_libcall (personality);
3905         }
3906       if (any_lsda_needed)
3907         {
3908           *p++ = 'L';
3909           augmentation_size += 1;
3910         }
3911       if (fde_encoding != DW_EH_PE_absptr)
3912         {
3913           *p++ = 'R';
3914           augmentation_size += 1;
3915         }
3916       if (p > augmentation + 1)
3917         {
3918           augmentation[0] = 'z';
3919           *p = '\0';
3920         }
3921
3922       /* Ug.  Some platforms can't do unaligned dynamic relocations at all.  */
3923       if (personality && per_encoding == DW_EH_PE_aligned)
3924         {
3925           int offset = (  4             /* Length */
3926                         + 4             /* CIE Id */
3927                         + 1             /* CIE version */
3928                         + strlen (augmentation) + 1     /* Augmentation */
3929                         + size_of_uleb128 (1)           /* Code alignment */
3930                         + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
3931                         + 1             /* RA column */
3932                         + 1             /* Augmentation size */
3933                         + 1             /* Personality encoding */ );
3934           int pad = -offset & (PTR_SIZE - 1);
3935
3936           augmentation_size += pad;
3937
3938           /* Augmentations should be small, so there's scarce need to
3939              iterate for a solution.  Die if we exceed one uleb128 byte.  */
3940           gcc_assert (size_of_uleb128 (augmentation_size) == 1);
3941         }
3942     }
3943
3944   dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
3945   if (dw_cie_version >= 4)
3946     {
3947       dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "CIE Address Size");
3948       dw2_asm_output_data (1, 0, "CIE Segment Size");
3949     }
3950   dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
3951   dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
3952                                "CIE Data Alignment Factor");
3953
3954   if (dw_cie_version == 1)
3955     dw2_asm_output_data (1, return_reg, "CIE RA Column");
3956   else
3957     dw2_asm_output_data_uleb128 (return_reg, "CIE RA Column");
3958
3959   if (augmentation[0])
3960     {
3961       dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
3962       if (personality)
3963         {
3964           dw2_asm_output_data (1, per_encoding, "Personality (%s)",
3965                                eh_data_format_name (per_encoding));
3966           dw2_asm_output_encoded_addr_rtx (per_encoding,
3967                                            personality,
3968                                            true, NULL);
3969         }
3970
3971       if (any_lsda_needed)
3972         dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
3973                              eh_data_format_name (lsda_encoding));
3974
3975       if (fde_encoding != DW_EH_PE_absptr)
3976         dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
3977                              eh_data_format_name (fde_encoding));
3978     }
3979
3980   FOR_EACH_VEC_ELT (dw_cfi_ref, cie_cfi_vec, i, cfi)
3981     output_cfi (cfi, NULL, for_eh);
3982
3983   /* Pad the CIE out to an address sized boundary.  */
3984   ASM_OUTPUT_ALIGN (asm_out_file,
3985                     floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
3986   ASM_OUTPUT_LABEL (asm_out_file, l2);
3987
3988   /* Loop through all of the FDE's.  */
3989   for (i = 0; i < fde_table_in_use; i++)
3990     {
3991       unsigned int k;
3992       fde = &fde_table[i];
3993
3994       /* Don't emit EH unwind info for leaf functions that don't need it.  */
3995       if (for_eh && !fde_needed_for_eh_p (fde))
3996         continue;
3997
3998       for (k = 0; k < (fde->dw_fde_second_begin ? 2 : 1); k++)
3999         output_fde (fde, for_eh, k, section_start_label, fde_encoding,
4000                     augmentation, any_lsda_needed, lsda_encoding);
4001     }
4002
4003   if (for_eh && targetm.terminate_dw2_eh_frame_info)
4004     dw2_asm_output_data (4, 0, "End of Table");
4005 #ifdef MIPS_DEBUGGING_INFO
4006   /* Work around Irix 6 assembler bug whereby labels at the end of a section
4007      get a value of 0.  Putting .align 0 after the label fixes it.  */
4008   ASM_OUTPUT_ALIGN (asm_out_file, 0);
4009 #endif
4010
4011   /* Turn off app to make assembly quicker.  */
4012   if (flag_debug_asm)
4013     app_disable ();
4014 }
4015
4016 /* Emit .cfi_startproc and .cfi_personality/.cfi_lsda if needed.  */
4017
4018 static void
4019 dwarf2out_do_cfi_startproc (bool second)
4020 {
4021   int enc;
4022   rtx ref;
4023   rtx personality = get_personality_function (current_function_decl);
4024
4025   fprintf (asm_out_file, "\t.cfi_startproc\n");
4026
4027   if (personality)
4028     {
4029       enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
4030       ref = personality;
4031
4032       /* ??? The GAS support isn't entirely consistent.  We have to
4033          handle indirect support ourselves, but PC-relative is done
4034          in the assembler.  Further, the assembler can't handle any
4035          of the weirder relocation types.  */
4036       if (enc & DW_EH_PE_indirect)
4037         ref = dw2_force_const_mem (ref, true);
4038
4039       fprintf (asm_out_file, "\t.cfi_personality %#x,", enc);
4040       output_addr_const (asm_out_file, ref);
4041       fputc ('\n', asm_out_file);
4042     }
4043
4044   if (crtl->uses_eh_lsda)
4045     {
4046       char lab[20];
4047
4048       enc = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
4049       ASM_GENERATE_INTERNAL_LABEL (lab, second ? "LLSDAC" : "LLSDA",
4050                                    current_function_funcdef_no);
4051       ref = gen_rtx_SYMBOL_REF (Pmode, lab);
4052       SYMBOL_REF_FLAGS (ref) = SYMBOL_FLAG_LOCAL;
4053
4054       if (enc & DW_EH_PE_indirect)
4055         ref = dw2_force_const_mem (ref, true);
4056
4057       fprintf (asm_out_file, "\t.cfi_lsda %#x,", enc);
4058       output_addr_const (asm_out_file, ref);
4059       fputc ('\n', asm_out_file);
4060     }
4061 }
4062
4063 /* Output a marker (i.e. a label) for the beginning of a function, before
4064    the prologue.  */
4065
4066 void
4067 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED,
4068                           const char *file ATTRIBUTE_UNUSED)
4069 {
4070   char label[MAX_ARTIFICIAL_LABEL_BYTES];
4071   char * dup_label;
4072   dw_fde_ref fde;
4073   section *fnsec;
4074   bool do_frame;
4075
4076   current_function_func_begin_label = NULL;
4077
4078   do_frame = dwarf2out_do_frame ();
4079
4080   /* ??? current_function_func_begin_label is also used by except.c for
4081      call-site information.  We must emit this label if it might be used.  */
4082   if (!do_frame
4083       && (!flag_exceptions
4084           || targetm.except_unwind_info (&global_options) != UI_TARGET))
4085     return;
4086
4087   fnsec = function_section (current_function_decl);
4088   switch_to_section (fnsec);
4089   ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
4090                                current_function_funcdef_no);
4091   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
4092                           current_function_funcdef_no);
4093   dup_label = xstrdup (label);
4094   current_function_func_begin_label = dup_label;
4095
4096   /* We can elide the fde allocation if we're not emitting debug info.  */
4097   if (!do_frame)
4098     return;
4099
4100   /* Expand the fde table if necessary.  */
4101   if (fde_table_in_use == fde_table_allocated)
4102     {
4103       fde_table_allocated += FDE_TABLE_INCREMENT;
4104       fde_table = GGC_RESIZEVEC (dw_fde_node, fde_table, fde_table_allocated);
4105       memset (fde_table + fde_table_in_use, 0,
4106               FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
4107     }
4108
4109   /* Record the FDE associated with this function.  */
4110   current_funcdef_fde = fde_table_in_use;
4111
4112   /* Add the new FDE at the end of the fde_table.  */
4113   fde = &fde_table[fde_table_in_use++];
4114   fde->decl = current_function_decl;
4115   fde->dw_fde_begin = dup_label;
4116   fde->dw_fde_end = NULL;
4117   fde->dw_fde_current_label = dup_label;
4118   fde->dw_fde_second_begin = NULL;
4119   fde->dw_fde_second_end = NULL;
4120   fde->dw_fde_vms_end_prologue = NULL;
4121   fde->dw_fde_vms_begin_epilogue = NULL;
4122   fde->dw_fde_cfi = VEC_alloc (dw_cfi_ref, gc, 20);
4123   fde->dw_fde_switch_cfi_index = 0;
4124   fde->funcdef_number = current_function_funcdef_no;
4125   fde->all_throwers_are_sibcalls = crtl->all_throwers_are_sibcalls;
4126   fde->uses_eh_lsda = crtl->uses_eh_lsda;
4127   fde->nothrow = crtl->nothrow;
4128   fde->drap_reg = INVALID_REGNUM;
4129   fde->vdrap_reg = INVALID_REGNUM;
4130   fde->in_std_section = (fnsec == text_section
4131                          || (cold_text_section && fnsec == cold_text_section));
4132   fde->second_in_std_section = 0;
4133
4134   args_size = old_args_size = 0;
4135
4136   /* We only want to output line number information for the genuine dwarf2
4137      prologue case, not the eh frame case.  */
4138 #ifdef DWARF2_DEBUGGING_INFO
4139   if (file)
4140     dwarf2out_source_line (line, file, 0, true);
4141 #endif
4142
4143   if (dwarf2out_do_cfi_asm ())
4144     dwarf2out_do_cfi_startproc (false);
4145   else
4146     {
4147       rtx personality = get_personality_function (current_function_decl);
4148       if (!current_unit_personality)
4149         current_unit_personality = personality;
4150
4151       /* We cannot keep a current personality per function as without CFI
4152          asm, at the point where we emit the CFI data, there is no current
4153          function anymore.  */
4154       if (personality && current_unit_personality != personality)
4155         sorry ("multiple EH personalities are supported only with assemblers "
4156                "supporting .cfi_personality directive");
4157     }
4158 }
4159
4160 /* Output a marker (i.e. a label) for the end of the generated code
4161    for a function prologue.  This gets called *after* the prologue code has
4162    been generated.  */
4163
4164 void
4165 dwarf2out_vms_end_prologue (unsigned int line ATTRIBUTE_UNUSED,
4166                         const char *file ATTRIBUTE_UNUSED)
4167 {
4168   dw_fde_ref fde;
4169   char label[MAX_ARTIFICIAL_LABEL_BYTES];
4170
4171   /* Output a label to mark the endpoint of the code generated for this
4172      function.  */
4173   ASM_GENERATE_INTERNAL_LABEL (label, PROLOGUE_END_LABEL,
4174                                current_function_funcdef_no);
4175   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, PROLOGUE_END_LABEL,
4176                           current_function_funcdef_no);
4177   fde = &fde_table[fde_table_in_use - 1];
4178   fde->dw_fde_vms_end_prologue = xstrdup (label);
4179 }
4180
4181 /* Output a marker (i.e. a label) for the beginning of the generated code
4182    for a function epilogue.  This gets called *before* the prologue code has
4183    been generated.  */
4184
4185 void
4186 dwarf2out_vms_begin_epilogue (unsigned int line ATTRIBUTE_UNUSED,
4187                           const char *file ATTRIBUTE_UNUSED)
4188 {
4189   dw_fde_ref fde;
4190   char label[MAX_ARTIFICIAL_LABEL_BYTES];
4191
4192   fde = &fde_table[fde_table_in_use - 1];
4193   if (fde->dw_fde_vms_begin_epilogue)
4194     return;
4195
4196   /* Output a label to mark the endpoint of the code generated for this
4197      function.  */
4198   ASM_GENERATE_INTERNAL_LABEL (label, EPILOGUE_BEGIN_LABEL,
4199                                current_function_funcdef_no);
4200   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, EPILOGUE_BEGIN_LABEL,
4201                           current_function_funcdef_no);
4202   fde->dw_fde_vms_begin_epilogue = xstrdup (label);
4203 }
4204
4205 /* Output a marker (i.e. a label) for the absolute end of the generated code
4206    for a function definition.  This gets called *after* the epilogue code has
4207    been generated.  */
4208
4209 void
4210 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
4211                         const char *file ATTRIBUTE_UNUSED)
4212 {
4213   dw_fde_ref fde;
4214   char label[MAX_ARTIFICIAL_LABEL_BYTES];
4215
4216   last_var_location_insn = NULL_RTX;
4217
4218   if (dwarf2out_do_cfi_asm ())
4219     fprintf (asm_out_file, "\t.cfi_endproc\n");
4220
4221   /* Output a label to mark the endpoint of the code generated for this
4222      function.  */
4223   ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
4224                                current_function_funcdef_no);
4225   ASM_OUTPUT_LABEL (asm_out_file, label);
4226   fde = current_fde ();
4227   gcc_assert (fde != NULL);
4228   if (fde->dw_fde_second_begin == NULL)
4229     fde->dw_fde_end = xstrdup (label);
4230 }
4231
4232 void
4233 dwarf2out_frame_init (void)
4234 {
4235   /* Allocate the initial hunk of the fde_table.  */
4236   fde_table = ggc_alloc_cleared_vec_dw_fde_node (FDE_TABLE_INCREMENT);
4237   fde_table_allocated = FDE_TABLE_INCREMENT;
4238   fde_table_in_use = 0;
4239
4240   /* Generate the CFA instructions common to all FDE's.  Do it now for the
4241      sake of lookup_cfa.  */
4242
4243   /* On entry, the Canonical Frame Address is at SP.  */
4244   dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
4245
4246   if (targetm.debug_unwind_info () == UI_DWARF2
4247       || targetm.except_unwind_info (&global_options) == UI_DWARF2)
4248     initial_return_save (INCOMING_RETURN_ADDR_RTX);
4249 }
4250
4251 void
4252 dwarf2out_frame_finish (void)
4253 {
4254   /* Output call frame information.  */
4255   if (targetm.debug_unwind_info () == UI_DWARF2)
4256     output_call_frame_info (0);
4257
4258   /* Output another copy for the unwinder.  */
4259   if ((flag_unwind_tables || flag_exceptions)
4260       && targetm.except_unwind_info (&global_options) == UI_DWARF2)
4261     output_call_frame_info (1);
4262 }
4263
4264 /* Note that the current function section is being used for code.  */
4265
4266 static void
4267 dwarf2out_note_section_used (void)
4268 {
4269   section *sec = current_function_section ();
4270   if (sec == text_section)
4271     text_section_used = true;
4272   else if (sec == cold_text_section)
4273     cold_text_section_used = true;
4274 }
4275
4276 static void var_location_switch_text_section (void);
4277 static void set_cur_line_info_table (section *);
4278
4279 void
4280 dwarf2out_switch_text_section (void)
4281 {
4282   section *sect;
4283   dw_fde_ref fde = current_fde ();
4284
4285   gcc_assert (cfun && fde && fde->dw_fde_second_begin == NULL);
4286
4287   if (!in_cold_section_p)
4288     {
4289       fde->dw_fde_end = crtl->subsections.cold_section_end_label;
4290       fde->dw_fde_second_begin = crtl->subsections.hot_section_label;
4291       fde->dw_fde_second_end = crtl->subsections.hot_section_end_label;
4292     }
4293   else
4294     {
4295       fde->dw_fde_end = crtl->subsections.hot_section_end_label;
4296       fde->dw_fde_second_begin = crtl->subsections.cold_section_label;
4297       fde->dw_fde_second_end = crtl->subsections.cold_section_end_label;
4298     }
4299   have_multiple_function_sections = true;
4300
4301   /* Reset the current label on switching text sections, so that we
4302      don't attempt to advance_loc4 between labels in different sections.  */
4303   fde->dw_fde_current_label = NULL;
4304
4305   /* There is no need to mark used sections when not debugging.  */
4306   if (cold_text_section != NULL)
4307     dwarf2out_note_section_used ();
4308
4309   if (dwarf2out_do_cfi_asm ())
4310     fprintf (asm_out_file, "\t.cfi_endproc\n");
4311
4312   /* Now do the real section switch.  */
4313   sect = current_function_section ();
4314   switch_to_section (sect);
4315
4316   fde->second_in_std_section
4317     = (sect == text_section
4318        || (cold_text_section && sect == cold_text_section));
4319
4320   if (dwarf2out_do_cfi_asm ())
4321     {
4322       dwarf2out_do_cfi_startproc (true);
4323       /* As this is a different FDE, insert all current CFI instructions
4324          again.  */
4325       output_all_cfis (fde->dw_fde_cfi, true, fde, true);
4326     }
4327   fde->dw_fde_switch_cfi_index = VEC_length (dw_cfi_ref, fde->dw_fde_cfi);
4328   var_location_switch_text_section ();
4329
4330   set_cur_line_info_table (sect);
4331 }
4332 \f
4333 /* And now, the subset of the debugging information support code necessary
4334    for emitting location expressions.  */
4335
4336 /* Data about a single source file.  */
4337 struct GTY(()) dwarf_file_data {
4338   const char * filename;
4339   int emitted_number;
4340 };
4341
4342 typedef struct dw_val_struct *dw_val_ref;
4343 typedef struct die_struct *dw_die_ref;
4344 typedef const struct die_struct *const_dw_die_ref;
4345 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
4346 typedef struct dw_loc_list_struct *dw_loc_list_ref;
4347
4348 typedef struct GTY(()) deferred_locations_struct
4349 {
4350   tree variable;
4351   dw_die_ref die;
4352 } deferred_locations;
4353
4354 DEF_VEC_O(deferred_locations);
4355 DEF_VEC_ALLOC_O(deferred_locations,gc);
4356
4357 static GTY(()) VEC(deferred_locations, gc) *deferred_locations_list;
4358
4359 DEF_VEC_P(dw_die_ref);
4360 DEF_VEC_ALLOC_P(dw_die_ref,heap);
4361
4362 /* Each DIE may have a series of attribute/value pairs.  Values
4363    can take on several forms.  The forms that are used in this
4364    implementation are listed below.  */
4365
4366 enum dw_val_class
4367 {
4368   dw_val_class_addr,
4369   dw_val_class_offset,
4370   dw_val_class_loc,
4371   dw_val_class_loc_list,
4372   dw_val_class_range_list,
4373   dw_val_class_const,
4374   dw_val_class_unsigned_const,
4375   dw_val_class_const_double,
4376   dw_val_class_vec,
4377   dw_val_class_flag,
4378   dw_val_class_die_ref,
4379   dw_val_class_fde_ref,
4380   dw_val_class_lbl_id,
4381   dw_val_class_lineptr,
4382   dw_val_class_str,
4383   dw_val_class_macptr,
4384   dw_val_class_file,
4385   dw_val_class_data8,
4386   dw_val_class_decl_ref,
4387   dw_val_class_vms_delta
4388 };
4389
4390 /* Describe a floating point constant value, or a vector constant value.  */
4391
4392 typedef struct GTY(()) dw_vec_struct {
4393   unsigned char * GTY((length ("%h.length"))) array;
4394   unsigned length;
4395   unsigned elt_size;
4396 }
4397 dw_vec_const;
4398
4399 /* The dw_val_node describes an attribute's value, as it is
4400    represented internally.  */
4401
4402 typedef struct GTY(()) dw_val_struct {
4403   enum dw_val_class val_class;
4404   union dw_val_struct_union
4405     {
4406       rtx GTY ((tag ("dw_val_class_addr"))) val_addr;
4407       unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_offset"))) val_offset;
4408       dw_loc_list_ref GTY ((tag ("dw_val_class_loc_list"))) val_loc_list;
4409       dw_loc_descr_ref GTY ((tag ("dw_val_class_loc"))) val_loc;
4410       HOST_WIDE_INT GTY ((default)) val_int;
4411       unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned;
4412       double_int GTY ((tag ("dw_val_class_const_double"))) val_double;
4413       dw_vec_const GTY ((tag ("dw_val_class_vec"))) val_vec;
4414       struct dw_val_die_union
4415         {
4416           dw_die_ref die;
4417           int external;
4418         } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref;
4419       unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index;
4420       struct indirect_string_node * GTY ((tag ("dw_val_class_str"))) val_str;
4421       char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id;
4422       unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag;
4423       struct dwarf_file_data * GTY ((tag ("dw_val_class_file"))) val_file;
4424       unsigned char GTY ((tag ("dw_val_class_data8"))) val_data8[8];
4425       tree GTY ((tag ("dw_val_class_decl_ref"))) val_decl_ref;
4426       struct dw_val_vms_delta_union
4427         {
4428           char * lbl1;
4429           char * lbl2;
4430         } GTY ((tag ("dw_val_class_vms_delta"))) val_vms_delta;
4431     }
4432   GTY ((desc ("%1.val_class"))) v;
4433 }
4434 dw_val_node;
4435
4436 /* Locations in memory are described using a sequence of stack machine
4437    operations.  */
4438
4439 typedef struct GTY(()) dw_loc_descr_struct {
4440   dw_loc_descr_ref dw_loc_next;
4441   ENUM_BITFIELD (dwarf_location_atom) dw_loc_opc : 8;
4442   /* Used to distinguish DW_OP_addr with a direct symbol relocation
4443      from DW_OP_addr with a dtp-relative symbol relocation.  */
4444   unsigned int dtprel : 1;
4445   int dw_loc_addr;
4446   dw_val_node dw_loc_oprnd1;
4447   dw_val_node dw_loc_oprnd2;
4448 }
4449 dw_loc_descr_node;
4450
4451 /* Location lists are ranges + location descriptions for that range,
4452    so you can track variables that are in different places over
4453    their entire life.  */
4454 typedef struct GTY(()) dw_loc_list_struct {
4455   dw_loc_list_ref dw_loc_next;
4456   const char *begin; /* Label for begin address of range */
4457   const char *end;  /* Label for end address of range */
4458   char *ll_symbol; /* Label for beginning of location list.
4459                       Only on head of list */
4460   const char *section; /* Section this loclist is relative to */
4461   dw_loc_descr_ref expr;
4462   hashval_t hash;
4463   /* True if all addresses in this and subsequent lists are known to be
4464      resolved.  */
4465   bool resolved_addr;
4466   /* True if this list has been replaced by dw_loc_next.  */
4467   bool replaced;
4468   bool emitted;
4469 } dw_loc_list_node;
4470
4471 static dw_loc_descr_ref int_loc_descriptor (HOST_WIDE_INT);
4472
4473 /* Convert a DWARF stack opcode into its string name.  */
4474
4475 static const char *
4476 dwarf_stack_op_name (unsigned int op)
4477 {
4478   switch (op)
4479     {
4480     case DW_OP_addr:
4481       return "DW_OP_addr";
4482     case DW_OP_deref:
4483       return "DW_OP_deref";
4484     case DW_OP_const1u:
4485       return "DW_OP_const1u";
4486     case DW_OP_const1s:
4487       return "DW_OP_const1s";
4488     case DW_OP_const2u:
4489       return "DW_OP_const2u";
4490     case DW_OP_const2s:
4491       return "DW_OP_const2s";
4492     case DW_OP_const4u:
4493       return "DW_OP_const4u";
4494     case DW_OP_const4s:
4495       return "DW_OP_const4s";
4496     case DW_OP_const8u:
4497       return "DW_OP_const8u";
4498     case DW_OP_const8s:
4499       return "DW_OP_const8s";
4500     case DW_OP_constu:
4501       return "DW_OP_constu";
4502     case DW_OP_consts:
4503       return "DW_OP_consts";
4504     case DW_OP_dup:
4505       return "DW_OP_dup";
4506     case DW_OP_drop:
4507       return "DW_OP_drop";
4508     case DW_OP_over:
4509       return "DW_OP_over";
4510     case DW_OP_pick:
4511       return "DW_OP_pick";
4512     case DW_OP_swap:
4513       return "DW_OP_swap";
4514     case DW_OP_rot:
4515       return "DW_OP_rot";
4516     case DW_OP_xderef:
4517       return "DW_OP_xderef";
4518     case DW_OP_abs:
4519       return "DW_OP_abs";
4520     case DW_OP_and:
4521       return "DW_OP_and";
4522     case DW_OP_div:
4523       return "DW_OP_div";
4524     case DW_OP_minus:
4525       return "DW_OP_minus";
4526     case DW_OP_mod:
4527       return "DW_OP_mod";
4528     case DW_OP_mul:
4529       return "DW_OP_mul";
4530     case DW_OP_neg:
4531       return "DW_OP_neg";
4532     case DW_OP_not:
4533       return "DW_OP_not";
4534     case DW_OP_or:
4535       return "DW_OP_or";
4536     case DW_OP_plus:
4537       return "DW_OP_plus";
4538     case DW_OP_plus_uconst:
4539       return "DW_OP_plus_uconst";
4540     case DW_OP_shl:
4541       return "DW_OP_shl";
4542     case DW_OP_shr:
4543       return "DW_OP_shr";
4544     case DW_OP_shra:
4545       return "DW_OP_shra";
4546     case DW_OP_xor:
4547       return "DW_OP_xor";
4548     case DW_OP_bra:
4549       return "DW_OP_bra";
4550     case DW_OP_eq:
4551       return "DW_OP_eq";
4552     case DW_OP_ge:
4553       return "DW_OP_ge";
4554     case DW_OP_gt:
4555       return "DW_OP_gt";
4556     case DW_OP_le:
4557       return "DW_OP_le";
4558     case DW_OP_lt:
4559       return "DW_OP_lt";
4560     case DW_OP_ne:
4561       return "DW_OP_ne";
4562     case DW_OP_skip:
4563       return "DW_OP_skip";
4564     case DW_OP_lit0:
4565       return "DW_OP_lit0";
4566     case DW_OP_lit1:
4567       return "DW_OP_lit1";
4568     case DW_OP_lit2:
4569       return "DW_OP_lit2";
4570     case DW_OP_lit3:
4571       return "DW_OP_lit3";
4572     case DW_OP_lit4:
4573       return "DW_OP_lit4";
4574     case DW_OP_lit5:
4575       return "DW_OP_lit5";
4576     case DW_OP_lit6:
4577       return "DW_OP_lit6";
4578     case DW_OP_lit7:
4579       return "DW_OP_lit7";
4580     case DW_OP_lit8:
4581       return "DW_OP_lit8";
4582     case DW_OP_lit9:
4583       return "DW_OP_lit9";
4584     case DW_OP_lit10:
4585       return "DW_OP_lit10";
4586     case DW_OP_lit11:
4587       return "DW_OP_lit11";
4588     case DW_OP_lit12:
4589       return "DW_OP_lit12";
4590     case DW_OP_lit13:
4591       return "DW_OP_lit13";
4592     case DW_OP_lit14:
4593       return "DW_OP_lit14";
4594     case DW_OP_lit15:
4595       return "DW_OP_lit15";
4596     case DW_OP_lit16:
4597       return "DW_OP_lit16";
4598     case DW_OP_lit17:
4599       return "DW_OP_lit17";
4600     case DW_OP_lit18:
4601       return "DW_OP_lit18";
4602     case DW_OP_lit19:
4603       return "DW_OP_lit19";
4604     case DW_OP_lit20:
4605       return "DW_OP_lit20";
4606     case DW_OP_lit21:
4607       return "DW_OP_lit21";
4608     case DW_OP_lit22:
4609       return "DW_OP_lit22";
4610     case DW_OP_lit23:
4611       return "DW_OP_lit23";
4612     case DW_OP_lit24:
4613       return "DW_OP_lit24";
4614     case DW_OP_lit25:
4615       return "DW_OP_lit25";
4616     case DW_OP_lit26:
4617       return "DW_OP_lit26";
4618     case DW_OP_lit27:
4619       return "DW_OP_lit27";
4620     case DW_OP_lit28:
4621       return "DW_OP_lit28";
4622     case DW_OP_lit29:
4623       return "DW_OP_lit29";
4624     case DW_OP_lit30:
4625       return "DW_OP_lit30";
4626     case DW_OP_lit31:
4627       return "DW_OP_lit31";
4628     case DW_OP_reg0:
4629       return "DW_OP_reg0";
4630     case DW_OP_reg1:
4631       return "DW_OP_reg1";
4632     case DW_OP_reg2:
4633       return "DW_OP_reg2";
4634     case DW_OP_reg3:
4635       return "DW_OP_reg3";
4636     case DW_OP_reg4:
4637       return "DW_OP_reg4";
4638     case DW_OP_reg5:
4639       return "DW_OP_reg5";
4640     case DW_OP_reg6:
4641       return "DW_OP_reg6";
4642     case DW_OP_reg7:
4643       return "DW_OP_reg7";
4644     case DW_OP_reg8:
4645       return "DW_OP_reg8";
4646     case DW_OP_reg9:
4647       return "DW_OP_reg9";
4648     case DW_OP_reg10:
4649       return "DW_OP_reg10";
4650     case DW_OP_reg11:
4651       return "DW_OP_reg11";
4652     case DW_OP_reg12:
4653       return "DW_OP_reg12";
4654     case DW_OP_reg13:
4655       return "DW_OP_reg13";
4656     case DW_OP_reg14:
4657       return "DW_OP_reg14";
4658     case DW_OP_reg15:
4659       return "DW_OP_reg15";
4660     case DW_OP_reg16:
4661       return "DW_OP_reg16";
4662     case DW_OP_reg17:
4663       return "DW_OP_reg17";
4664     case DW_OP_reg18:
4665       return "DW_OP_reg18";
4666     case DW_OP_reg19:
4667       return "DW_OP_reg19";
4668     case DW_OP_reg20:
4669       return "DW_OP_reg20";
4670     case DW_OP_reg21:
4671       return "DW_OP_reg21";
4672     case DW_OP_reg22:
4673       return "DW_OP_reg22";
4674     case DW_OP_reg23:
4675       return "DW_OP_reg23";
4676     case DW_OP_reg24:
4677       return "DW_OP_reg24";
4678     case DW_OP_reg25:
4679       return "DW_OP_reg25";
4680     case DW_OP_reg26:
4681       return "DW_OP_reg26";
4682     case DW_OP_reg27:
4683       return "DW_OP_reg27";
4684     case DW_OP_reg28:
4685       return "DW_OP_reg28";
4686     case DW_OP_reg29:
4687       return "DW_OP_reg29";
4688     case DW_OP_reg30:
4689       return "DW_OP_reg30";
4690     case DW_OP_reg31:
4691       return "DW_OP_reg31";
4692     case DW_OP_breg0:
4693       return "DW_OP_breg0";
4694     case DW_OP_breg1:
4695       return "DW_OP_breg1";
4696     case DW_OP_breg2:
4697       return "DW_OP_breg2";
4698     case DW_OP_breg3:
4699       return "DW_OP_breg3";
4700     case DW_OP_breg4:
4701       return "DW_OP_breg4";
4702     case DW_OP_breg5:
4703       return "DW_OP_breg5";
4704     case DW_OP_breg6:
4705       return "DW_OP_breg6";
4706     case DW_OP_breg7:
4707       return "DW_OP_breg7";
4708     case DW_OP_breg8:
4709       return "DW_OP_breg8";
4710     case DW_OP_breg9:
4711       return "DW_OP_breg9";
4712     case DW_OP_breg10:
4713       return "DW_OP_breg10";
4714     case DW_OP_breg11:
4715       return "DW_OP_breg11";
4716     case DW_OP_breg12:
4717       return "DW_OP_breg12";
4718     case DW_OP_breg13:
4719       return "DW_OP_breg13";
4720     case DW_OP_breg14:
4721       return "DW_OP_breg14";
4722     case DW_OP_breg15:
4723       return "DW_OP_breg15";
4724     case DW_OP_breg16:
4725       return "DW_OP_breg16";
4726     case DW_OP_breg17:
4727       return "DW_OP_breg17";
4728     case DW_OP_breg18:
4729       return "DW_OP_breg18";
4730     case DW_OP_breg19:
4731       return "DW_OP_breg19";
4732     case DW_OP_breg20:
4733       return "DW_OP_breg20";
4734     case DW_OP_breg21:
4735       return "DW_OP_breg21";
4736     case DW_OP_breg22:
4737       return "DW_OP_breg22";
4738     case DW_OP_breg23:
4739       return "DW_OP_breg23";
4740     case DW_OP_breg24:
4741       return "DW_OP_breg24";
4742     case DW_OP_breg25:
4743       return "DW_OP_breg25";
4744     case DW_OP_breg26:
4745       return "DW_OP_breg26";
4746     case DW_OP_breg27:
4747       return "DW_OP_breg27";
4748     case DW_OP_breg28:
4749       return "DW_OP_breg28";
4750     case DW_OP_breg29:
4751       return "DW_OP_breg29";
4752     case DW_OP_breg30:
4753       return "DW_OP_breg30";
4754     case DW_OP_breg31:
4755       return "DW_OP_breg31";
4756     case DW_OP_regx:
4757       return "DW_OP_regx";
4758     case DW_OP_fbreg:
4759       return "DW_OP_fbreg";
4760     case DW_OP_bregx:
4761       return "DW_OP_bregx";
4762     case DW_OP_piece:
4763       return "DW_OP_piece";
4764     case DW_OP_deref_size:
4765       return "DW_OP_deref_size";
4766     case DW_OP_xderef_size:
4767       return "DW_OP_xderef_size";
4768     case DW_OP_nop:
4769       return "DW_OP_nop";
4770
4771     case DW_OP_push_object_address:
4772       return "DW_OP_push_object_address";
4773     case DW_OP_call2:
4774       return "DW_OP_call2";
4775     case DW_OP_call4:
4776       return "DW_OP_call4";
4777     case DW_OP_call_ref:
4778       return "DW_OP_call_ref";
4779     case DW_OP_implicit_value:
4780       return "DW_OP_implicit_value";
4781     case DW_OP_stack_value:
4782       return "DW_OP_stack_value";
4783     case DW_OP_form_tls_address:
4784       return "DW_OP_form_tls_address";
4785     case DW_OP_call_frame_cfa:
4786       return "DW_OP_call_frame_cfa";
4787     case DW_OP_bit_piece:
4788       return "DW_OP_bit_piece";
4789
4790     case DW_OP_GNU_push_tls_address:
4791       return "DW_OP_GNU_push_tls_address";
4792     case DW_OP_GNU_uninit:
4793       return "DW_OP_GNU_uninit";
4794     case DW_OP_GNU_encoded_addr:
4795       return "DW_OP_GNU_encoded_addr";
4796     case DW_OP_GNU_implicit_pointer:
4797       return "DW_OP_GNU_implicit_pointer";
4798     case DW_OP_GNU_entry_value:
4799       return "DW_OP_GNU_entry_value";
4800     case DW_OP_GNU_const_type:
4801       return "DW_OP_GNU_const_type";
4802     case DW_OP_GNU_regval_type:
4803       return "DW_OP_GNU_regval_type";
4804     case DW_OP_GNU_deref_type:
4805       return "DW_OP_GNU_deref_type";
4806     case DW_OP_GNU_convert:
4807       return "DW_OP_GNU_convert";
4808     case DW_OP_GNU_reinterpret:
4809       return "DW_OP_GNU_reinterpret";
4810
4811     default:
4812       return "OP_<unknown>";
4813     }
4814 }
4815
4816 /* Return a pointer to a newly allocated location description.  Location
4817    descriptions are simple expression terms that can be strung
4818    together to form more complicated location (address) descriptions.  */
4819
4820 static inline dw_loc_descr_ref
4821 new_loc_descr (enum dwarf_location_atom op, unsigned HOST_WIDE_INT oprnd1,
4822                unsigned HOST_WIDE_INT oprnd2)
4823 {
4824   dw_loc_descr_ref descr = ggc_alloc_cleared_dw_loc_descr_node ();
4825
4826   descr->dw_loc_opc = op;
4827   descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
4828   descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
4829   descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
4830   descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
4831
4832   return descr;
4833 }
4834
4835 /* Return a pointer to a newly allocated location description for
4836    REG and OFFSET.  */
4837
4838 static inline dw_loc_descr_ref
4839 new_reg_loc_descr (unsigned int reg,  unsigned HOST_WIDE_INT offset)
4840 {
4841   if (reg <= 31)
4842     return new_loc_descr ((enum dwarf_location_atom) (DW_OP_breg0 + reg),
4843                           offset, 0);
4844   else
4845     return new_loc_descr (DW_OP_bregx, reg, offset);
4846 }
4847
4848 /* Add a location description term to a location description expression.  */
4849
4850 static inline void
4851 add_loc_descr (dw_loc_descr_ref *list_head, dw_loc_descr_ref descr)
4852 {
4853   dw_loc_descr_ref *d;
4854
4855   /* Find the end of the chain.  */
4856   for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
4857     ;
4858
4859   *d = descr;
4860 }
4861
4862 /* Add a constant OFFSET to a location expression.  */
4863
4864 static void
4865 loc_descr_plus_const (dw_loc_descr_ref *list_head, HOST_WIDE_INT offset)
4866 {
4867   dw_loc_descr_ref loc;
4868   HOST_WIDE_INT *p;
4869
4870   gcc_assert (*list_head != NULL);
4871
4872   if (!offset)
4873     return;
4874
4875   /* Find the end of the chain.  */
4876   for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
4877     ;
4878
4879   p = NULL;
4880   if (loc->dw_loc_opc == DW_OP_fbreg
4881       || (loc->dw_loc_opc >= DW_OP_breg0 && loc->dw_loc_opc <= DW_OP_breg31))
4882     p = &loc->dw_loc_oprnd1.v.val_int;
4883   else if (loc->dw_loc_opc == DW_OP_bregx)
4884     p = &loc->dw_loc_oprnd2.v.val_int;
4885
4886   /* If the last operation is fbreg, breg{0..31,x}, optimize by adjusting its
4887      offset.  Don't optimize if an signed integer overflow would happen.  */
4888   if (p != NULL
4889       && ((offset > 0 && *p <= INTTYPE_MAXIMUM (HOST_WIDE_INT) - offset)
4890           || (offset < 0 && *p >= INTTYPE_MINIMUM (HOST_WIDE_INT) - offset)))
4891     *p += offset;
4892
4893   else if (offset > 0)
4894     loc->dw_loc_next = new_loc_descr (DW_OP_plus_uconst, offset, 0);
4895
4896   else
4897     {
4898       loc->dw_loc_next = int_loc_descriptor (-offset);
4899       add_loc_descr (&loc->dw_loc_next, new_loc_descr (DW_OP_minus, 0, 0));
4900     }
4901 }
4902
4903 /* Add a constant OFFSET to a location list.  */
4904
4905 static void
4906 loc_list_plus_const (dw_loc_list_ref list_head, HOST_WIDE_INT offset)
4907 {
4908   dw_loc_list_ref d;
4909   for (d = list_head; d != NULL; d = d->dw_loc_next)
4910     loc_descr_plus_const (&d->expr, offset);
4911 }
4912
4913 #define DWARF_REF_SIZE  \
4914   (dwarf_version == 2 ? DWARF2_ADDR_SIZE : DWARF_OFFSET_SIZE)
4915
4916 static unsigned long size_of_locs (dw_loc_descr_ref);
4917 static unsigned long int get_base_type_offset (dw_die_ref);
4918
4919 /* Return the size of a location descriptor.  */
4920
4921 static unsigned long
4922 size_of_loc_descr (dw_loc_descr_ref loc)
4923 {
4924   unsigned long size = 1;
4925
4926   switch (loc->dw_loc_opc)
4927     {
4928     case DW_OP_addr:
4929       size += DWARF2_ADDR_SIZE;
4930       break;
4931     case DW_OP_const1u:
4932     case DW_OP_const1s:
4933       size += 1;
4934       break;
4935     case DW_OP_const2u:
4936     case DW_OP_const2s:
4937       size += 2;
4938       break;
4939     case DW_OP_const4u:
4940     case DW_OP_const4s:
4941       size += 4;
4942       break;
4943     case DW_OP_const8u:
4944     case DW_OP_const8s:
4945       size += 8;
4946       break;
4947     case DW_OP_constu:
4948       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4949       break;
4950     case DW_OP_consts:
4951       size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4952       break;
4953     case DW_OP_pick:
4954       size += 1;
4955       break;
4956     case DW_OP_plus_uconst:
4957       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4958       break;
4959     case DW_OP_skip:
4960     case DW_OP_bra:
4961       size += 2;
4962       break;
4963     case DW_OP_breg0:
4964     case DW_OP_breg1:
4965     case DW_OP_breg2:
4966     case DW_OP_breg3:
4967     case DW_OP_breg4:
4968     case DW_OP_breg5:
4969     case DW_OP_breg6:
4970     case DW_OP_breg7:
4971     case DW_OP_breg8:
4972     case DW_OP_breg9:
4973     case DW_OP_breg10:
4974     case DW_OP_breg11:
4975     case DW_OP_breg12:
4976     case DW_OP_breg13:
4977     case DW_OP_breg14:
4978     case DW_OP_breg15:
4979     case DW_OP_breg16:
4980     case DW_OP_breg17:
4981     case DW_OP_breg18:
4982     case DW_OP_breg19:
4983     case DW_OP_breg20:
4984     case DW_OP_breg21:
4985     case DW_OP_breg22:
4986     case DW_OP_breg23:
4987     case DW_OP_breg24:
4988     case DW_OP_breg25:
4989     case DW_OP_breg26:
4990     case DW_OP_breg27:
4991     case DW_OP_breg28:
4992     case DW_OP_breg29:
4993     case DW_OP_breg30:
4994     case DW_OP_breg31:
4995       size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
4996       break;
4997     case DW_OP_regx:
4998       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
4999       break;
5000     case DW_OP_fbreg:
5001       size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
5002       break;
5003     case DW_OP_bregx:
5004       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
5005       size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
5006       break;
5007     case DW_OP_piece:
5008       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
5009       break;
5010     case DW_OP_bit_piece:
5011       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
5012       size += size_of_uleb128 (loc->dw_loc_oprnd2.v.val_unsigned);
5013       break;
5014     case DW_OP_deref_size:
5015     case DW_OP_xderef_size:
5016       size += 1;
5017       break;
5018     case DW_OP_call2:
5019       size += 2;
5020       break;
5021     case DW_OP_call4:
5022       size += 4;
5023       break;
5024     case DW_OP_call_ref:
5025       size += DWARF_REF_SIZE;
5026       break;
5027     case DW_OP_implicit_value:
5028       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned)
5029               + loc->dw_loc_oprnd1.v.val_unsigned;
5030       break;
5031     case DW_OP_GNU_implicit_pointer:
5032       size += DWARF_REF_SIZE + size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
5033       break;
5034     case DW_OP_GNU_entry_value:
5035       {
5036         unsigned long op_size = size_of_locs (loc->dw_loc_oprnd1.v.val_loc);
5037         size += size_of_uleb128 (op_size) + op_size;
5038         break;
5039       }
5040     case DW_OP_GNU_const_type:
5041       {
5042         unsigned long o
5043           = get_base_type_offset (loc->dw_loc_oprnd1.v.val_die_ref.die);
5044         size += size_of_uleb128 (o) + 1;
5045         switch (loc->dw_loc_oprnd2.val_class)
5046           {
5047           case dw_val_class_vec:
5048             size += loc->dw_loc_oprnd2.v.val_vec.length
5049                     * loc->dw_loc_oprnd2.v.val_vec.elt_size;
5050             break;
5051           case dw_val_class_const:
5052             size += HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT;
5053             break;
5054           case dw_val_class_const_double:
5055             size += 2 * HOST_BITS_PER_WIDE_INT / BITS_PER_UNIT;
5056             break;
5057           default:
5058             gcc_unreachable ();
5059           }
5060         break;
5061       }
5062     case DW_OP_GNU_regval_type:
5063       {
5064         unsigned long o
5065           = get_base_type_offset (loc->dw_loc_oprnd2.v.val_die_ref.die);
5066         size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned)
5067                 + size_of_uleb128 (o);
5068       }
5069       break;
5070     case DW_OP_GNU_deref_type:
5071       {
5072         unsigned long o
5073           = get_base_type_offset (loc->dw_loc_oprnd2.v.val_die_ref.die);
5074         size += 1 + size_of_uleb128 (o);
5075       }
5076       break;
5077     case DW_OP_GNU_convert:
5078     case DW_OP_GNU_reinterpret:
5079       {
5080         unsigned long o
5081           = get_base_type_offset (loc->dw_loc_oprnd1.v.val_die_ref.die);
5082         size += size_of_uleb128 (o);
5083       }
5084     default:
5085       break;
5086     }
5087
5088   return size;
5089 }
5090
5091 /* Return the size of a series of location descriptors.  */
5092
5093 static unsigned long
5094 size_of_locs (dw_loc_descr_ref loc)
5095 {
5096   dw_loc_descr_ref l;
5097   unsigned long size;
5098
5099   /* If there are no skip or bra opcodes, don't fill in the dw_loc_addr
5100      field, to avoid writing to a PCH file.  */
5101   for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
5102     {
5103       if (l->dw_loc_opc == DW_OP_skip || l->dw_loc_opc == DW_OP_bra)
5104         break;
5105       size += size_of_loc_descr (l);
5106     }
5107   if (! l)
5108     return size;
5109
5110   for (size = 0, l = loc; l != NULL; l = l->dw_loc_next)
5111     {
5112       l->dw_loc_addr = size;
5113       size += size_of_loc_descr (l);
5114     }
5115
5116   return size;
5117 }
5118
5119 static HOST_WIDE_INT extract_int (const unsigned char *, unsigned);
5120 static void get_ref_die_offset_label (char *, dw_die_ref);
5121 static void output_loc_sequence (dw_loc_descr_ref, int);
5122
5123 /* Output location description stack opcode's operands (if any).
5124    The for_eh_or_skip parameter controls whether register numbers are
5125    converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
5126    hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
5127    info).  This should be suppressed for the cases that have not been converted
5128    (i.e. symbolic debug info), by setting the parameter < 0.  See PR47324.  */
5129
5130 static void
5131 output_loc_operands (dw_loc_descr_ref loc, int for_eh_or_skip)
5132 {
5133   dw_val_ref val1 = &loc->dw_loc_oprnd1;
5134   dw_val_ref val2 = &loc->dw_loc_oprnd2;
5135
5136   switch (loc->dw_loc_opc)
5137     {
5138 #ifdef DWARF2_DEBUGGING_INFO
5139     case DW_OP_const2u:
5140     case DW_OP_const2s:
5141       dw2_asm_output_data (2, val1->v.val_int, NULL);
5142       break;
5143     case DW_OP_const4u:
5144       if (loc->dtprel)
5145         {
5146           gcc_assert (targetm.asm_out.output_dwarf_dtprel);
5147           targetm.asm_out.output_dwarf_dtprel (asm_out_file, 4,
5148                                                val1->v.val_addr);
5149           fputc ('\n', asm_out_file);
5150           break;
5151         }
5152       /* FALLTHRU */
5153     case DW_OP_const4s:
5154       dw2_asm_output_data (4, val1->v.val_int, NULL);
5155       break;
5156     case DW_OP_const8u:
5157       if (loc->dtprel)
5158         {
5159           gcc_assert (targetm.asm_out.output_dwarf_dtprel);
5160           targetm.asm_out.output_dwarf_dtprel (asm_out_file, 8,
5161                                                val1->v.val_addr);
5162           fputc ('\n', asm_out_file);
5163           break;
5164         }
5165       /* FALLTHRU */
5166     case DW_OP_const8s:
5167       gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
5168       dw2_asm_output_data (8, val1->v.val_int, NULL);
5169       break;
5170     case DW_OP_skip:
5171     case DW_OP_bra:
5172       {
5173         int offset;
5174
5175         gcc_assert (val1->val_class == dw_val_class_loc);
5176         offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
5177
5178         dw2_asm_output_data (2, offset, NULL);
5179       }
5180       break;
5181     case DW_OP_implicit_value:
5182       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5183       switch (val2->val_class)
5184         {
5185         case dw_val_class_const:
5186           dw2_asm_output_data (val1->v.val_unsigned, val2->v.val_int, NULL);
5187           break;
5188         case dw_val_class_vec:
5189           {
5190             unsigned int elt_size = val2->v.val_vec.elt_size;
5191             unsigned int len = val2->v.val_vec.length;
5192             unsigned int i;
5193             unsigned char *p;
5194
5195             if (elt_size > sizeof (HOST_WIDE_INT))
5196               {
5197                 elt_size /= 2;
5198                 len *= 2;
5199               }
5200             for (i = 0, p = val2->v.val_vec.array;
5201                  i < len;
5202                  i++, p += elt_size)
5203               dw2_asm_output_data (elt_size, extract_int (p, elt_size),
5204                                    "fp or vector constant word %u", i);
5205           }
5206           break;
5207         case dw_val_class_const_double:
5208           {
5209             unsigned HOST_WIDE_INT first, second;
5210
5211             if (WORDS_BIG_ENDIAN)
5212               {
5213                 first = val2->v.val_double.high;
5214                 second = val2->v.val_double.low;
5215               }
5216             else
5217               {
5218                 first = val2->v.val_double.low;
5219                 second = val2->v.val_double.high;
5220               }
5221             dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
5222                                  first, NULL);
5223             dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
5224                                  second, NULL);
5225           }
5226           break;
5227         case dw_val_class_addr:
5228           gcc_assert (val1->v.val_unsigned == DWARF2_ADDR_SIZE);
5229           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val2->v.val_addr, NULL);
5230           break;
5231         default:
5232           gcc_unreachable ();
5233         }
5234       break;
5235 #else
5236     case DW_OP_const2u:
5237     case DW_OP_const2s:
5238     case DW_OP_const4u:
5239     case DW_OP_const4s:
5240     case DW_OP_const8u:
5241     case DW_OP_const8s:
5242     case DW_OP_skip:
5243     case DW_OP_bra:
5244     case DW_OP_implicit_value:
5245       /* We currently don't make any attempt to make sure these are
5246          aligned properly like we do for the main unwind info, so
5247          don't support emitting things larger than a byte if we're
5248          only doing unwinding.  */
5249       gcc_unreachable ();
5250 #endif
5251     case DW_OP_const1u:
5252     case DW_OP_const1s:
5253       dw2_asm_output_data (1, val1->v.val_int, NULL);
5254       break;
5255     case DW_OP_constu:
5256       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5257       break;
5258     case DW_OP_consts:
5259       dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
5260       break;
5261     case DW_OP_pick:
5262       dw2_asm_output_data (1, val1->v.val_int, NULL);
5263       break;
5264     case DW_OP_plus_uconst:
5265       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5266       break;
5267     case DW_OP_breg0:
5268     case DW_OP_breg1:
5269     case DW_OP_breg2:
5270     case DW_OP_breg3:
5271     case DW_OP_breg4:
5272     case DW_OP_breg5:
5273     case DW_OP_breg6:
5274     case DW_OP_breg7:
5275     case DW_OP_breg8:
5276     case DW_OP_breg9:
5277     case DW_OP_breg10:
5278     case DW_OP_breg11:
5279     case DW_OP_breg12:
5280     case DW_OP_breg13:
5281     case DW_OP_breg14:
5282     case DW_OP_breg15:
5283     case DW_OP_breg16:
5284     case DW_OP_breg17:
5285     case DW_OP_breg18:
5286     case DW_OP_breg19:
5287     case DW_OP_breg20:
5288     case DW_OP_breg21:
5289     case DW_OP_breg22:
5290     case DW_OP_breg23:
5291     case DW_OP_breg24:
5292     case DW_OP_breg25:
5293     case DW_OP_breg26:
5294     case DW_OP_breg27:
5295     case DW_OP_breg28:
5296     case DW_OP_breg29:
5297     case DW_OP_breg30:
5298     case DW_OP_breg31:
5299       dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
5300       break;
5301     case DW_OP_regx:
5302       {
5303         unsigned r = val1->v.val_unsigned;
5304         if (for_eh_or_skip >= 0)
5305           r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
5306         gcc_assert (size_of_uleb128 (r) 
5307                     == size_of_uleb128 (val1->v.val_unsigned));
5308         dw2_asm_output_data_uleb128 (r, NULL);  
5309       }
5310       break;
5311     case DW_OP_fbreg:
5312       dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
5313       break;
5314     case DW_OP_bregx:
5315       {
5316         unsigned r = val1->v.val_unsigned;
5317         if (for_eh_or_skip >= 0)
5318           r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
5319         gcc_assert (size_of_uleb128 (r) 
5320                     == size_of_uleb128 (val1->v.val_unsigned));
5321         dw2_asm_output_data_uleb128 (r, NULL);  
5322         dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
5323       }
5324       break;
5325     case DW_OP_piece:
5326       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5327       break;
5328     case DW_OP_bit_piece:
5329       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
5330       dw2_asm_output_data_uleb128 (val2->v.val_unsigned, NULL);
5331       break;
5332     case DW_OP_deref_size:
5333     case DW_OP_xderef_size:
5334       dw2_asm_output_data (1, val1->v.val_int, NULL);
5335       break;
5336
5337     case DW_OP_addr:
5338       if (loc->dtprel)
5339         {
5340           if (targetm.asm_out.output_dwarf_dtprel)
5341             {
5342               targetm.asm_out.output_dwarf_dtprel (asm_out_file,
5343                                                    DWARF2_ADDR_SIZE,
5344                                                    val1->v.val_addr);
5345               fputc ('\n', asm_out_file);
5346             }
5347           else
5348             gcc_unreachable ();
5349         }
5350       else
5351         {
5352 #ifdef DWARF2_DEBUGGING_INFO
5353           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
5354 #else
5355           gcc_unreachable ();
5356 #endif
5357         }
5358       break;
5359
5360     case DW_OP_GNU_implicit_pointer:
5361       {
5362         char label[MAX_ARTIFICIAL_LABEL_BYTES
5363                    + HOST_BITS_PER_WIDE_INT / 2 + 2];
5364         gcc_assert (val1->val_class == dw_val_class_die_ref);
5365         get_ref_die_offset_label (label, val1->v.val_die_ref.die);
5366         dw2_asm_output_offset (DWARF_REF_SIZE, label, debug_info_section, NULL);
5367         dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
5368       }
5369       break;
5370
5371     case DW_OP_GNU_entry_value:
5372       dw2_asm_output_data_uleb128 (size_of_locs (val1->v.val_loc), NULL);
5373       output_loc_sequence (val1->v.val_loc, for_eh_or_skip);
5374       break;
5375
5376     case DW_OP_GNU_const_type:
5377       {
5378         unsigned long o = get_base_type_offset (val1->v.val_die_ref.die), l;
5379         gcc_assert (o);
5380         dw2_asm_output_data_uleb128 (o, NULL);
5381         switch (val2->val_class)
5382           {
5383           case dw_val_class_const:
5384             l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
5385             dw2_asm_output_data (1, l, NULL);
5386             dw2_asm_output_data (l, val2->v.val_int, NULL);
5387             break;
5388           case dw_val_class_vec:
5389             {
5390               unsigned int elt_size = val2->v.val_vec.elt_size;
5391               unsigned int len = val2->v.val_vec.length;
5392               unsigned int i;
5393               unsigned char *p;
5394
5395               l = len * elt_size;
5396               dw2_asm_output_data (1, l, NULL);
5397               if (elt_size > sizeof (HOST_WIDE_INT))
5398                 {
5399                   elt_size /= 2;
5400                   len *= 2;
5401                 }
5402               for (i = 0, p = val2->v.val_vec.array;
5403                    i < len;
5404                    i++, p += elt_size)
5405                 dw2_asm_output_data (elt_size, extract_int (p, elt_size),
5406                                      "fp or vector constant word %u", i);
5407             }
5408             break;
5409           case dw_val_class_const_double:
5410             {
5411               unsigned HOST_WIDE_INT first, second;
5412               l = HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
5413
5414               dw2_asm_output_data (1, 2 * l, NULL);
5415               if (WORDS_BIG_ENDIAN)
5416                 {
5417                   first = val2->v.val_double.high;
5418                   second = val2->v.val_double.low;
5419                 }
5420               else
5421                 {
5422                   first = val2->v.val_double.low;
5423                   second = val2->v.val_double.high;
5424                 }
5425               dw2_asm_output_data (l, first, NULL);
5426               dw2_asm_output_data (l, second, NULL);
5427             }
5428             break;
5429           default:
5430             gcc_unreachable ();
5431           }
5432       }
5433       break;
5434     case DW_OP_GNU_regval_type:
5435       {
5436         unsigned r = val1->v.val_unsigned;
5437         unsigned long o = get_base_type_offset (val2->v.val_die_ref.die);
5438         gcc_assert (o);
5439         if (for_eh_or_skip >= 0)
5440           {
5441             r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
5442             gcc_assert (size_of_uleb128 (r)
5443                         == size_of_uleb128 (val1->v.val_unsigned));
5444           }
5445         dw2_asm_output_data_uleb128 (r, NULL);
5446         dw2_asm_output_data_uleb128 (o, NULL);
5447       }
5448       break;
5449     case DW_OP_GNU_deref_type:
5450       {
5451         unsigned long o = get_base_type_offset (val2->v.val_die_ref.die);
5452         gcc_assert (o);
5453         dw2_asm_output_data (1, val1->v.val_int, NULL);
5454         dw2_asm_output_data_uleb128 (o, NULL);
5455       }
5456       break;
5457     case DW_OP_GNU_convert:
5458     case DW_OP_GNU_reinterpret:
5459       {
5460         unsigned long o = get_base_type_offset (val1->v.val_die_ref.die);
5461         gcc_assert (o);
5462         dw2_asm_output_data_uleb128 (o, NULL);
5463       }
5464       break;
5465
5466     default:
5467       /* Other codes have no operands.  */
5468       break;
5469     }
5470 }
5471
5472 /* Output a sequence of location operations.  
5473    The for_eh_or_skip parameter controls whether register numbers are
5474    converted using DWARF2_FRAME_REG_OUT, which is needed in the case that
5475    hard reg numbers have been processed via DWARF_FRAME_REGNUM (i.e. for unwind
5476    info).  This should be suppressed for the cases that have not been converted
5477    (i.e. symbolic debug info), by setting the parameter < 0.  See PR47324.  */
5478
5479 static void
5480 output_loc_sequence (dw_loc_descr_ref loc, int for_eh_or_skip)
5481 {
5482   for (; loc != NULL; loc = loc->dw_loc_next)
5483     {
5484       enum dwarf_location_atom opc = loc->dw_loc_opc;
5485       /* Output the opcode.  */
5486       if (for_eh_or_skip >= 0 
5487           && opc >= DW_OP_breg0 && opc <= DW_OP_breg31)
5488         {
5489           unsigned r = (opc - DW_OP_breg0);
5490           r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
5491           gcc_assert (r <= 31);
5492           opc = (enum dwarf_location_atom) (DW_OP_breg0 + r);
5493         }
5494       else if (for_eh_or_skip >= 0 
5495                && opc >= DW_OP_reg0 && opc <= DW_OP_reg31)
5496         {
5497           unsigned r = (opc - DW_OP_reg0);
5498           r = DWARF2_FRAME_REG_OUT (r, for_eh_or_skip);
5499           gcc_assert (r <= 31);
5500           opc = (enum dwarf_location_atom) (DW_OP_reg0 + r);
5501         }
5502
5503       dw2_asm_output_data (1, opc,
5504                              "%s", dwarf_stack_op_name (opc));
5505
5506       /* Output the operand(s) (if any).  */
5507       output_loc_operands (loc, for_eh_or_skip);
5508     }
5509 }
5510
5511 /* Output location description stack opcode's operands (if any).
5512    The output is single bytes on a line, suitable for .cfi_escape.  */
5513
5514 static void
5515 output_loc_operands_raw (dw_loc_descr_ref loc)
5516 {
5517   dw_val_ref val1 = &loc->dw_loc_oprnd1;
5518   dw_val_ref val2 = &loc->dw_loc_oprnd2;
5519
5520   switch (loc->dw_loc_opc)
5521     {
5522     case DW_OP_addr:
5523     case DW_OP_implicit_value:
5524       /* We cannot output addresses in .cfi_escape, only bytes.  */
5525       gcc_unreachable ();
5526
5527     case DW_OP_const1u:
5528     case DW_OP_const1s:
5529     case DW_OP_pick:
5530     case DW_OP_deref_size:
5531     case DW_OP_xderef_size:
5532       fputc (',', asm_out_file);
5533       dw2_asm_output_data_raw (1, val1->v.val_int);
5534       break;
5535
5536     case DW_OP_const2u:
5537     case DW_OP_const2s:
5538       fputc (',', asm_out_file);
5539       dw2_asm_output_data_raw (2, val1->v.val_int);
5540       break;
5541
5542     case DW_OP_const4u:
5543     case DW_OP_const4s:
5544       fputc (',', asm_out_file);
5545       dw2_asm_output_data_raw (4, val1->v.val_int);
5546       break;
5547
5548     case DW_OP_const8u:
5549     case DW_OP_const8s:
5550       gcc_assert (HOST_BITS_PER_WIDE_INT >= 64);
5551       fputc (',', asm_out_file);
5552       dw2_asm_output_data_raw (8, val1->v.val_int);
5553       break;
5554
5555     case DW_OP_skip:
5556     case DW_OP_bra:
5557       {
5558         int offset;
5559
5560         gcc_assert (val1->val_class == dw_val_class_loc);
5561         offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
5562
5563         fputc (',', asm_out_file);
5564         dw2_asm_output_data_raw (2, offset);
5565       }
5566       break;
5567
5568     case DW_OP_regx:
5569       {
5570         unsigned r = DWARF2_FRAME_REG_OUT (val1->v.val_unsigned, 1);
5571         gcc_assert (size_of_uleb128 (r) 
5572                     == size_of_uleb128 (val1->v.val_unsigned));
5573         fputc (',', asm_out_file);
5574         dw2_asm_output_data_uleb128_raw (r);
5575       }
5576       break;
5577       
5578     case DW_OP_constu:
5579     case DW_OP_plus_uconst:
5580     case DW_OP_piece:
5581       fputc (',', asm_out_file);
5582       dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
5583       break;
5584
5585     case DW_OP_bit_piece:
5586       fputc (',', asm_out_file);
5587       dw2_asm_output_data_uleb128_raw (val1->v.val_unsigned);
5588       dw2_asm_output_data_uleb128_raw (val2->v.val_unsigned);
5589       break;
5590
5591     case DW_OP_consts:
5592     case DW_OP_breg0:
5593     case DW_OP_breg1:
5594     case DW_OP_breg2:
5595     case DW_OP_breg3:
5596     case DW_OP_breg4:
5597     case DW_OP_breg5:
5598     case DW_OP_breg6:
5599     case DW_OP_breg7:
5600     case DW_OP_breg8:
5601     case DW_OP_breg9:
5602     case DW_OP_breg10:
5603     case DW_OP_breg11:
5604     case DW_OP_breg12:
5605     case DW_OP_breg13:
5606     case DW_OP_breg14:
5607     case DW_OP_breg15:
5608     case DW_OP_breg16:
5609     case DW_OP_breg17:
5610     case DW_OP_breg18:
5611     case DW_OP_breg19:
5612     case DW_OP_breg20:
5613     case DW_OP_breg21:
5614     case DW_OP_breg22:
5615     case DW_OP_breg23:
5616     case DW_OP_breg24:
5617     case DW_OP_breg25:
5618     case DW_OP_breg26:
5619     case DW_OP_breg27:
5620     case DW_OP_breg28:
5621     case DW_OP_breg29:
5622     case DW_OP_breg30:
5623     case DW_OP_breg31:
5624     case DW_OP_fbreg:
5625       fputc (',', asm_out_file);
5626       dw2_asm_output_data_sleb128_raw (val1->v.val_int);
5627       break;
5628
5629     case DW_OP_bregx:
5630       {
5631         unsigned r = DWARF2_FRAME_REG_OUT (val1->v.val_unsigned, 1);
5632         gcc_assert (size_of_uleb128 (r) 
5633                     == size_of_uleb128 (val1->v.val_unsigned));
5634         fputc (',', asm_out_file);
5635         dw2_asm_output_data_uleb128_raw (r);
5636         fputc (',', asm_out_file);
5637         dw2_asm_output_data_sleb128_raw (val2->v.val_int);
5638       }
5639       break;
5640
5641     case DW_OP_GNU_implicit_pointer:
5642     case DW_OP_GNU_entry_value:
5643     case DW_OP_GNU_const_type:
5644     case DW_OP_GNU_regval_type:
5645     case DW_OP_GNU_deref_type:
5646     case DW_OP_GNU_convert:
5647     case DW_OP_GNU_reinterpret:
5648       gcc_unreachable ();
5649       break;
5650
5651     default:
5652       /* Other codes have no operands.  */
5653       break;
5654     }
5655 }
5656
5657 static void
5658 output_loc_sequence_raw (dw_loc_descr_ref loc)
5659 {
5660   while (1)
5661     {
5662       enum dwarf_location_atom opc = loc->dw_loc_opc;
5663       /* Output the opcode.  */
5664       if (opc >= DW_OP_breg0 && opc <= DW_OP_breg31)
5665         {
5666           unsigned r = (opc - DW_OP_breg0);
5667           r = DWARF2_FRAME_REG_OUT (r, 1);
5668           gcc_assert (r <= 31);
5669           opc = (enum dwarf_location_atom) (DW_OP_breg0 + r);
5670         }
5671       else if (opc >= DW_OP_reg0 && opc <= DW_OP_reg31)
5672         {
5673           unsigned r = (opc - DW_OP_reg0);
5674           r = DWARF2_FRAME_REG_OUT (r, 1);
5675           gcc_assert (r <= 31);
5676           opc = (enum dwarf_location_atom) (DW_OP_reg0 + r);
5677         }
5678       /* Output the opcode.  */
5679       fprintf (asm_out_file, "%#x", opc);
5680       output_loc_operands_raw (loc);
5681
5682       if (!loc->dw_loc_next)
5683         break;
5684       loc = loc->dw_loc_next;
5685
5686       fputc (',', asm_out_file);
5687     }
5688 }
5689
5690 /* This routine will generate the correct assembly data for a location
5691    description based on a cfi entry with a complex address.  */
5692
5693 static void
5694 output_cfa_loc (dw_cfi_ref cfi, int for_eh)
5695 {
5696   dw_loc_descr_ref loc;
5697   unsigned long size;
5698
5699   if (cfi->dw_cfi_opc == DW_CFA_expression)
5700     {
5701       unsigned r = 
5702         DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
5703       dw2_asm_output_data (1, r, NULL);
5704       loc = cfi->dw_cfi_oprnd2.dw_cfi_loc;
5705     }
5706   else
5707     loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
5708
5709   /* Output the size of the block.  */
5710   size = size_of_locs (loc);
5711   dw2_asm_output_data_uleb128 (size, NULL);
5712
5713   /* Now output the operations themselves.  */
5714   output_loc_sequence (loc, for_eh);
5715 }
5716
5717 /* Similar, but used for .cfi_escape.  */
5718
5719 static void
5720 output_cfa_loc_raw (dw_cfi_ref cfi)
5721 {
5722   dw_loc_descr_ref loc;
5723   unsigned long size;
5724
5725   if (cfi->dw_cfi_opc == DW_CFA_expression)
5726     {
5727       unsigned r = 
5728         DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, 1);
5729       fprintf (asm_out_file, "%#x,", r);
5730       loc = cfi->dw_cfi_oprnd2.dw_cfi_loc;
5731     }
5732   else
5733     loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
5734
5735   /* Output the size of the block.  */
5736   size = size_of_locs (loc);
5737   dw2_asm_output_data_uleb128_raw (size);
5738   fputc (',', asm_out_file);
5739
5740   /* Now output the operations themselves.  */
5741   output_loc_sequence_raw (loc);
5742 }
5743
5744 /* This function builds a dwarf location descriptor sequence from a
5745    dw_cfa_location, adding the given OFFSET to the result of the
5746    expression.  */
5747
5748 static struct dw_loc_descr_struct *
5749 build_cfa_loc (dw_cfa_location *cfa, HOST_WIDE_INT offset)
5750 {
5751   struct dw_loc_descr_struct *head, *tmp;
5752
5753   offset += cfa->offset;
5754
5755   if (cfa->indirect)
5756     {
5757       head = new_reg_loc_descr (cfa->reg, cfa->base_offset);
5758       head->dw_loc_oprnd1.val_class = dw_val_class_const;
5759       tmp = new_loc_descr (DW_OP_deref, 0, 0);
5760       add_loc_descr (&head, tmp);
5761       if (offset != 0)
5762         {
5763           tmp = new_loc_descr (DW_OP_plus_uconst, offset, 0);
5764           add_loc_descr (&head, tmp);
5765         }
5766     }
5767   else
5768     head = new_reg_loc_descr (cfa->reg, offset);
5769
5770   return head;
5771 }
5772
5773 /* This function builds a dwarf location descriptor sequence for
5774    the address at OFFSET from the CFA when stack is aligned to
5775    ALIGNMENT byte.  */
5776
5777 static struct dw_loc_descr_struct *
5778 build_cfa_aligned_loc (HOST_WIDE_INT offset, HOST_WIDE_INT alignment)
5779 {
5780   struct dw_loc_descr_struct *head;
5781   unsigned int dwarf_fp
5782     = DWARF_FRAME_REGNUM (HARD_FRAME_POINTER_REGNUM);
5783
5784  /* When CFA is defined as FP+OFFSET, emulate stack alignment.  */
5785   if (cfa.reg == HARD_FRAME_POINTER_REGNUM && cfa.indirect == 0)
5786     {
5787       head = new_reg_loc_descr (dwarf_fp, 0);
5788       add_loc_descr (&head, int_loc_descriptor (alignment));
5789       add_loc_descr (&head, new_loc_descr (DW_OP_and, 0, 0));
5790       loc_descr_plus_const (&head, offset);
5791     }
5792   else
5793     head = new_reg_loc_descr (dwarf_fp, offset);
5794   return head;
5795 }
5796
5797 /* This function fills in aa dw_cfa_location structure from a dwarf location
5798    descriptor sequence.  */
5799
5800 static void
5801 get_cfa_from_loc_descr (dw_cfa_location *cfa, struct dw_loc_descr_struct *loc)
5802 {
5803   struct dw_loc_descr_struct *ptr;
5804   cfa->offset = 0;
5805   cfa->base_offset = 0;
5806   cfa->indirect = 0;
5807   cfa->reg = -1;
5808
5809   for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
5810     {
5811       enum dwarf_location_atom op = ptr->dw_loc_opc;
5812
5813       switch (op)
5814         {
5815         case DW_OP_reg0:
5816         case DW_OP_reg1:
5817         case DW_OP_reg2:
5818         case DW_OP_reg3:
5819         case DW_OP_reg4:
5820         case DW_OP_reg5:
5821         case DW_OP_reg6:
5822         case DW_OP_reg7:
5823         case DW_OP_reg8:
5824         case DW_OP_reg9:
5825         case DW_OP_reg10:
5826         case DW_OP_reg11:
5827         case DW_OP_reg12:
5828         case DW_OP_reg13:
5829         case DW_OP_reg14:
5830         case DW_OP_reg15:
5831         case DW_OP_reg16:
5832         case DW_OP_reg17:
5833         case DW_OP_reg18:
5834         case DW_OP_reg19:
5835         case DW_OP_reg20:
5836         case DW_OP_reg21:
5837         case DW_OP_reg22:
5838         case DW_OP_reg23:
5839         case DW_OP_reg24:
5840         case DW_OP_reg25:
5841         case DW_OP_reg26:
5842         case DW_OP_reg27:
5843         case DW_OP_reg28:
5844         case DW_OP_reg29:
5845         case DW_OP_reg30:
5846         case DW_OP_reg31:
5847           cfa->reg = op - DW_OP_reg0;
5848           break;
5849         case DW_OP_regx:
5850           cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
5851           break;
5852         case DW_OP_breg0:
5853         case DW_OP_breg1:
5854         case DW_OP_breg2:
5855         case DW_OP_breg3:
5856         case DW_OP_breg4:
5857         case DW_OP_breg5:
5858         case DW_OP_breg6:
5859         case DW_OP_breg7:
5860         case DW_OP_breg8:
5861         case DW_OP_breg9:
5862         case DW_OP_breg10:
5863         case DW_OP_breg11:
5864         case DW_OP_breg12:
5865         case DW_OP_breg13:
5866         case DW_OP_breg14:
5867         case DW_OP_breg15:
5868         case DW_OP_breg16:
5869         case DW_OP_breg17:
5870         case DW_OP_breg18:
5871         case DW_OP_breg19:
5872         case DW_OP_breg20:
5873         case DW_OP_breg21:
5874         case DW_OP_breg22:
5875         case DW_OP_breg23:
5876         case DW_OP_breg24:
5877         case DW_OP_breg25:
5878         case DW_OP_breg26:
5879         case DW_OP_breg27:
5880         case DW_OP_breg28:
5881         case DW_OP_breg29:
5882         case DW_OP_breg30:
5883         case DW_OP_breg31:
5884           cfa->reg = op - DW_OP_breg0;
5885           cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
5886           break;
5887         case DW_OP_bregx:
5888           cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
5889           cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
5890           break;
5891         case DW_OP_deref:
5892           cfa->indirect = 1;
5893           break;
5894         case DW_OP_plus_uconst:
5895           cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
5896           break;
5897         default:
5898           internal_error ("DW_LOC_OP %s not implemented",
5899                           dwarf_stack_op_name (ptr->dw_loc_opc));
5900         }
5901     }
5902 }
5903 \f
5904 /* And now, the support for symbolic debugging information.  */
5905
5906 /* .debug_str support.  */
5907 static int output_indirect_string (void **, void *);
5908
5909 static void dwarf2out_init (const char *);
5910 static void dwarf2out_finish (const char *);
5911 static void dwarf2out_assembly_start (void);
5912 static void dwarf2out_define (unsigned int, const char *);
5913 static void dwarf2out_undef (unsigned int, const char *);
5914 static void dwarf2out_start_source_file (unsigned, const char *);
5915 static void dwarf2out_end_source_file (unsigned);
5916 static void dwarf2out_function_decl (tree);
5917 static void dwarf2out_begin_block (unsigned, unsigned);
5918 static void dwarf2out_end_block (unsigned, unsigned);
5919 static bool dwarf2out_ignore_block (const_tree);
5920 static void dwarf2out_global_decl (tree);
5921 static void dwarf2out_type_decl (tree, int);
5922 static void dwarf2out_imported_module_or_decl (tree, tree, tree, bool);
5923 static void dwarf2out_imported_module_or_decl_1 (tree, tree, tree,
5924                                                  dw_die_ref);
5925 static void dwarf2out_abstract_function (tree);
5926 static void dwarf2out_var_location (rtx);
5927 static void dwarf2out_begin_function (tree);
5928 static void dwarf2out_set_name (tree, tree);
5929
5930 /* The debug hooks structure.  */
5931
5932 const struct gcc_debug_hooks dwarf2_debug_hooks =
5933 {
5934   dwarf2out_init,
5935   dwarf2out_finish,
5936   dwarf2out_assembly_start,
5937   dwarf2out_define,
5938   dwarf2out_undef,
5939   dwarf2out_start_source_file,
5940   dwarf2out_end_source_file,
5941   dwarf2out_begin_block,
5942   dwarf2out_end_block,
5943   dwarf2out_ignore_block,
5944   dwarf2out_source_line,
5945   dwarf2out_begin_prologue,
5946 #if VMS_DEBUGGING_INFO
5947   dwarf2out_vms_end_prologue,
5948   dwarf2out_vms_begin_epilogue,
5949 #else
5950   debug_nothing_int_charstar,
5951   debug_nothing_int_charstar,
5952 #endif
5953   dwarf2out_end_epilogue,
5954   dwarf2out_begin_function,
5955   debug_nothing_int,            /* end_function */
5956   dwarf2out_function_decl,      /* function_decl */
5957   dwarf2out_global_decl,
5958   dwarf2out_type_decl,          /* type_decl */
5959   dwarf2out_imported_module_or_decl,
5960   debug_nothing_tree,           /* deferred_inline_function */
5961   /* The DWARF 2 backend tries to reduce debugging bloat by not
5962      emitting the abstract description of inline functions until
5963      something tries to reference them.  */
5964   dwarf2out_abstract_function,  /* outlining_inline_function */
5965   debug_nothing_rtx,            /* label */
5966   debug_nothing_int,            /* handle_pch */
5967   dwarf2out_var_location,
5968   dwarf2out_switch_text_section,
5969   dwarf2out_set_name,
5970   1,                            /* start_end_main_source_file */
5971   TYPE_SYMTAB_IS_DIE            /* tree_type_symtab_field */
5972 };
5973 \f
5974 /* NOTE: In the comments in this file, many references are made to
5975    "Debugging Information Entries".  This term is abbreviated as `DIE'
5976    throughout the remainder of this file.  */
5977
5978 /* An internal representation of the DWARF output is built, and then
5979    walked to generate the DWARF debugging info.  The walk of the internal
5980    representation is done after the entire program has been compiled.
5981    The types below are used to describe the internal representation.  */
5982
5983 /* Whether to put type DIEs into their own section .debug_types instead
5984    of making them part of the .debug_info section.  Only supported for
5985    Dwarf V4 or higher and the user didn't disable them through
5986    -fno-debug-types-section.  It is more efficient to put them in a
5987    separate comdat sections since the linker will then be able to
5988    remove duplicates.  But not all tools support .debug_types sections
5989    yet.  */
5990
5991 #define use_debug_types (dwarf_version >= 4 && flag_debug_types_section)
5992
5993 /* Various DIE's use offsets relative to the beginning of the
5994    .debug_info section to refer to each other.  */
5995
5996 typedef long int dw_offset;
5997
5998 /* Define typedefs here to avoid circular dependencies.  */
5999
6000 typedef struct dw_attr_struct *dw_attr_ref;
6001 typedef struct dw_line_info_struct *dw_line_info_ref;
6002 typedef struct pubname_struct *pubname_ref;
6003 typedef struct dw_ranges_struct *dw_ranges_ref;
6004 typedef struct dw_ranges_by_label_struct *dw_ranges_by_label_ref;
6005 typedef struct comdat_type_struct *comdat_type_node_ref;
6006
6007 /* The entries in the line_info table more-or-less mirror the opcodes
6008    that are used in the real dwarf line table.  Arrays of these entries
6009    are collected per section when DWARF2_ASM_LINE_DEBUG_INFO is not
6010    supported.  */
6011
6012 enum dw_line_info_opcode {
6013   /* Emit DW_LNE_set_address; the operand is the label index.  */
6014   LI_set_address,
6015
6016   /* Emit a row to the matrix with the given line.  This may be done
6017      via any combination of DW_LNS_copy, DW_LNS_advance_line, and
6018      special opcodes.  */
6019   LI_set_line,
6020
6021   /* Emit a DW_LNS_set_file.  */
6022   LI_set_file,
6023
6024   /* Emit a DW_LNS_set_column.  */
6025   LI_set_column,
6026
6027   /* Emit a DW_LNS_negate_stmt; the operand is ignored.  */
6028   LI_negate_stmt,
6029
6030   /* Emit a DW_LNS_set_prologue_end/epilogue_begin; the operand is ignored.  */
6031   LI_set_prologue_end,
6032   LI_set_epilogue_begin,
6033
6034   /* Emit a DW_LNE_set_discriminator.  */
6035   LI_set_discriminator
6036 };
6037
6038 typedef struct GTY(()) dw_line_info_struct {
6039   enum dw_line_info_opcode opcode;
6040   unsigned int val;
6041 } dw_line_info_entry;
6042
6043 DEF_VEC_O(dw_line_info_entry);
6044 DEF_VEC_ALLOC_O(dw_line_info_entry, gc);
6045
6046 typedef struct GTY(()) dw_line_info_table_struct {
6047   /* The label that marks the end of this section.  */
6048   const char *end_label;
6049
6050   /* The values for the last row of the matrix, as collected in the table.
6051      These are used to minimize the changes to the next row.  */
6052   unsigned int file_num;
6053   unsigned int line_num;
6054   unsigned int column_num;
6055   int discrim_num;
6056   bool is_stmt;
6057   bool in_use;
6058
6059   VEC(dw_line_info_entry, gc) *entries;
6060 } dw_line_info_table;
6061
6062 typedef dw_line_info_table *dw_line_info_table_p;
6063
6064 DEF_VEC_P(dw_line_info_table_p);
6065 DEF_VEC_ALLOC_P(dw_line_info_table_p, gc);
6066
6067 /* Each DIE attribute has a field specifying the attribute kind,
6068    a link to the next attribute in the chain, and an attribute value.
6069    Attributes are typically linked below the DIE they modify.  */
6070
6071 typedef struct GTY(()) dw_attr_struct {
6072   enum dwarf_attribute dw_attr;
6073   dw_val_node dw_attr_val;
6074 }
6075 dw_attr_node;
6076
6077 DEF_VEC_O(dw_attr_node);
6078 DEF_VEC_ALLOC_O(dw_attr_node,gc);
6079
6080 /* The Debugging Information Entry (DIE) structure.  DIEs form a tree.
6081    The children of each node form a circular list linked by
6082    die_sib.  die_child points to the node *before* the "first" child node.  */
6083
6084 typedef struct GTY((chain_circular ("%h.die_sib"))) die_struct {
6085   union die_symbol_or_type_node
6086     {
6087       char * GTY ((tag ("0"))) die_symbol;
6088       comdat_type_node_ref GTY ((tag ("1"))) die_type_node;
6089     }
6090   GTY ((desc ("use_debug_types"))) die_id;
6091   VEC(dw_attr_node,gc) * die_attr;
6092   dw_die_ref die_parent;
6093   dw_die_ref die_child;
6094   dw_die_ref die_sib;
6095   dw_die_ref die_definition; /* ref from a specification to its definition */
6096   dw_offset die_offset;
6097   unsigned long die_abbrev;
6098   int die_mark;
6099   /* Die is used and must not be pruned as unused.  */
6100   int die_perennial_p;
6101   unsigned int decl_id;
6102   enum dwarf_tag die_tag;
6103 }
6104 die_node;
6105
6106 /* Evaluate 'expr' while 'c' is set to each child of DIE in order.  */
6107 #define FOR_EACH_CHILD(die, c, expr) do {       \
6108   c = die->die_child;                           \
6109   if (c) do {                                   \
6110     c = c->die_sib;                             \
6111     expr;                                       \
6112   } while (c != die->die_child);                \
6113 } while (0)
6114
6115 /* The pubname structure */
6116
6117 typedef struct GTY(()) pubname_struct {
6118   dw_die_ref die;
6119   const char *name;
6120 }
6121 pubname_entry;
6122
6123 DEF_VEC_O(pubname_entry);
6124 DEF_VEC_ALLOC_O(pubname_entry, gc);
6125
6126 struct GTY(()) dw_ranges_struct {
6127   /* If this is positive, it's a block number, otherwise it's a
6128      bitwise-negated index into dw_ranges_by_label.  */
6129   int num;
6130 };
6131
6132 /* A structure to hold a macinfo entry.  */
6133
6134 typedef struct GTY(()) macinfo_struct {
6135   unsigned HOST_WIDE_INT code;
6136   unsigned HOST_WIDE_INT lineno;
6137   const char *info;
6138 }
6139 macinfo_entry;
6140
6141 DEF_VEC_O(macinfo_entry);
6142 DEF_VEC_ALLOC_O(macinfo_entry, gc);
6143
6144 struct GTY(()) dw_ranges_by_label_struct {
6145   const char *begin;
6146   const char *end;
6147 };
6148
6149 /* The comdat type node structure.  */
6150 typedef struct GTY(()) comdat_type_struct
6151 {
6152   dw_die_ref root_die;
6153   dw_die_ref type_die;
6154   char signature[DWARF_TYPE_SIGNATURE_SIZE];
6155   struct comdat_type_struct *next;
6156 }
6157 comdat_type_node;
6158
6159 /* The limbo die list structure.  */
6160 typedef struct GTY(()) limbo_die_struct {
6161   dw_die_ref die;
6162   tree created_for;
6163   struct limbo_die_struct *next;
6164 }
6165 limbo_die_node;
6166
6167 typedef struct skeleton_chain_struct
6168 {
6169   dw_die_ref old_die;
6170   dw_die_ref new_die;
6171   struct skeleton_chain_struct *parent;
6172 }
6173 skeleton_chain_node;
6174
6175 /* How to start an assembler comment.  */
6176 #ifndef ASM_COMMENT_START
6177 #define ASM_COMMENT_START ";#"
6178 #endif
6179
6180 /* Define a macro which returns nonzero for a TYPE_DECL which was
6181    implicitly generated for a tagged type.
6182
6183    Note that unlike the gcc front end (which generates a NULL named
6184    TYPE_DECL node for each complete tagged type, each array type, and
6185    each function type node created) the g++ front end generates a
6186    _named_ TYPE_DECL node for each tagged type node created.
6187    These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
6188    generate a DW_TAG_typedef DIE for them.  */
6189
6190 #define TYPE_DECL_IS_STUB(decl)                         \
6191   (DECL_NAME (decl) == NULL_TREE                        \
6192    || (DECL_ARTIFICIAL (decl)                           \
6193        && is_tagged_type (TREE_TYPE (decl))             \
6194        && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl)))  \
6195            /* This is necessary for stub decls that     \
6196               appear in nested inline functions.  */    \
6197            || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
6198                && (decl_ultimate_origin (decl)          \
6199                    == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
6200
6201 /* Information concerning the compilation unit's programming
6202    language, and compiler version.  */
6203
6204 /* Fixed size portion of the DWARF compilation unit header.  */
6205 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
6206   (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
6207
6208 /* Fixed size portion of the DWARF comdat type unit header.  */
6209 #define DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE \
6210   (DWARF_COMPILE_UNIT_HEADER_SIZE + DWARF_TYPE_SIGNATURE_SIZE \
6211    + DWARF_OFFSET_SIZE)
6212
6213 /* Fixed size portion of public names info.  */
6214 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
6215
6216 /* Fixed size portion of the address range info.  */
6217 #define DWARF_ARANGES_HEADER_SIZE                                       \
6218   (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4,      \
6219                 DWARF2_ADDR_SIZE * 2)                                   \
6220    - DWARF_INITIAL_LENGTH_SIZE)
6221
6222 /* Size of padding portion in the address range info.  It must be
6223    aligned to twice the pointer size.  */
6224 #define DWARF_ARANGES_PAD_SIZE \
6225   (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
6226                 DWARF2_ADDR_SIZE * 2)                              \
6227    - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
6228
6229 /* Use assembler line directives if available.  */
6230 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
6231 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
6232 #define DWARF2_ASM_LINE_DEBUG_INFO 1
6233 #else
6234 #define DWARF2_ASM_LINE_DEBUG_INFO 0
6235 #endif
6236 #endif
6237
6238 /* Minimum line offset in a special line info. opcode.
6239    This value was chosen to give a reasonable range of values.  */
6240 #define DWARF_LINE_BASE  -10
6241
6242 /* First special line opcode - leave room for the standard opcodes.  */
6243 #define DWARF_LINE_OPCODE_BASE  ((int)DW_LNS_set_isa + 1)
6244
6245 /* Range of line offsets in a special line info. opcode.  */
6246 #define DWARF_LINE_RANGE  (254-DWARF_LINE_OPCODE_BASE+1)
6247
6248 /* Flag that indicates the initial value of the is_stmt_start flag.
6249    In the present implementation, we do not mark any lines as
6250    the beginning of a source statement, because that information
6251    is not made available by the GCC front-end.  */
6252 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
6253
6254 /* Maximum number of operations per instruction bundle.  */
6255 #ifndef DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN
6256 #define DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN 1
6257 #endif
6258
6259 /* This location is used by calc_die_sizes() to keep track
6260    the offset of each DIE within the .debug_info section.  */
6261 static unsigned long next_die_offset;
6262
6263 /* Record the root of the DIE's built for the current compilation unit.  */
6264 static GTY(()) dw_die_ref single_comp_unit_die;
6265
6266 /* A list of type DIEs that have been separated into comdat sections.  */
6267 static GTY(()) comdat_type_node *comdat_type_list;
6268
6269 /* A list of DIEs with a NULL parent waiting to be relocated.  */
6270 static GTY(()) limbo_die_node *limbo_die_list;
6271
6272 /* A list of DIEs for which we may have to generate
6273    DW_AT_{,MIPS_}linkage_name once their DECL_ASSEMBLER_NAMEs are set.  */
6274 static GTY(()) limbo_die_node *deferred_asm_name;
6275
6276 /* Filenames referenced by this compilation unit.  */
6277 static GTY((param_is (struct dwarf_file_data))) htab_t file_table;
6278
6279 /* A hash table of references to DIE's that describe declarations.
6280    The key is a DECL_UID() which is a unique number identifying each decl.  */
6281 static GTY ((param_is (struct die_struct))) htab_t decl_die_table;
6282
6283 /* A hash table of references to DIE's that describe COMMON blocks.
6284    The key is DECL_UID() ^ die_parent.  */
6285 static GTY ((param_is (struct die_struct))) htab_t common_block_die_table;
6286
6287 typedef struct GTY(()) die_arg_entry_struct {
6288     dw_die_ref die;
6289     tree arg;
6290 } die_arg_entry;
6291
6292 DEF_VEC_O(die_arg_entry);
6293 DEF_VEC_ALLOC_O(die_arg_entry,gc);
6294
6295 /* Node of the variable location list.  */
6296 struct GTY ((chain_next ("%h.next"))) var_loc_node {
6297   /* Either NOTE_INSN_VAR_LOCATION, or, for SRA optimized variables,
6298      EXPR_LIST chain.  For small bitsizes, bitsize is encoded
6299      in mode of the EXPR_LIST node and first EXPR_LIST operand
6300      is either NOTE_INSN_VAR_LOCATION for a piece with a known
6301      location or NULL for padding.  For larger bitsizes,
6302      mode is 0 and first operand is a CONCAT with bitsize
6303      as first CONCAT operand and NOTE_INSN_VAR_LOCATION resp.
6304      NULL as second operand.  */
6305   rtx GTY (()) loc;
6306   const char * GTY (()) label;
6307   struct var_loc_node * GTY (()) next;
6308 };
6309
6310 /* Variable location list.  */
6311 struct GTY (()) var_loc_list_def {
6312   struct var_loc_node * GTY (()) first;
6313
6314   /* Pointer to the last but one or last element of the
6315      chained list.  If the list is empty, both first and
6316      last are NULL, if the list contains just one node
6317      or the last node certainly is not redundant, it points
6318      to the last node, otherwise points to the last but one.
6319      Do not mark it for GC because it is marked through the chain.  */
6320   struct var_loc_node * GTY ((skip ("%h"))) last;
6321
6322   /* Pointer to the last element before section switch,
6323      if NULL, either sections weren't switched or first
6324      is after section switch.  */
6325   struct var_loc_node * GTY ((skip ("%h"))) last_before_switch;
6326
6327   /* DECL_UID of the variable decl.  */
6328   unsigned int decl_id;
6329 };
6330 typedef struct var_loc_list_def var_loc_list;
6331
6332 /* Call argument location list.  */
6333 struct GTY ((chain_next ("%h.next"))) call_arg_loc_node {
6334   rtx GTY (()) call_arg_loc_note;
6335   const char * GTY (()) label;
6336   tree GTY (()) block;
6337   bool tail_call_p;
6338   rtx GTY (()) symbol_ref;
6339   struct call_arg_loc_node * GTY (()) next;
6340 };
6341
6342
6343 /* Table of decl location linked lists.  */
6344 static GTY ((param_is (var_loc_list))) htab_t decl_loc_table;
6345
6346 /* Head and tail of call_arg_loc chain.  */
6347 static GTY (()) struct call_arg_loc_node *call_arg_locations;
6348 static struct call_arg_loc_node *call_arg_loc_last;
6349
6350 /* Number of call sites in the current function.  */
6351 static int call_site_count = -1;
6352 /* Number of tail call sites in the current function.  */
6353 static int tail_call_site_count = -1;
6354
6355 /* Vector mapping block numbers to DW_TAG_{lexical_block,inlined_subroutine}
6356    DIEs.  */
6357 static VEC (dw_die_ref, heap) *block_map;
6358
6359 /* A cached location list.  */
6360 struct GTY (()) cached_dw_loc_list_def {
6361   /* The DECL_UID of the decl that this entry describes.  */
6362   unsigned int decl_id;
6363
6364   /* The cached location list.  */
6365   dw_loc_list_ref loc_list;
6366 };
6367 typedef struct cached_dw_loc_list_def cached_dw_loc_list;
6368
6369 /* Table of cached location lists.  */
6370 static GTY ((param_is (cached_dw_loc_list))) htab_t cached_dw_loc_list_table;
6371
6372 /* A pointer to the base of a list of references to DIE's that
6373    are uniquely identified by their tag, presence/absence of
6374    children DIE's, and list of attribute/value pairs.  */
6375 static GTY((length ("abbrev_die_table_allocated")))
6376   dw_die_ref *abbrev_die_table;
6377
6378 /* Number of elements currently allocated for abbrev_die_table.  */
6379 static GTY(()) unsigned abbrev_die_table_allocated;
6380
6381 /* Number of elements in type_die_table currently in use.  */
6382 static GTY(()) unsigned abbrev_die_table_in_use;
6383
6384 /* Size (in elements) of increments by which we may expand the
6385    abbrev_die_table.  */
6386 #define ABBREV_DIE_TABLE_INCREMENT 256
6387
6388 /* A global counter for generating labels for line number data.  */
6389 static unsigned int line_info_label_num;
6390
6391 /* The current table to which we should emit line number information
6392    for the current function.  This will be set up at the beginning of
6393    assembly for the function.  */
6394 static dw_line_info_table *cur_line_info_table;
6395
6396 /* The two default tables of line number info.  */
6397 static GTY(()) dw_line_info_table *text_section_line_info;
6398 static GTY(()) dw_line_info_table *cold_text_section_line_info;
6399
6400 /* The set of all non-default tables of line number info.  */
6401 static GTY(()) VEC (dw_line_info_table_p, gc) *separate_line_info;
6402
6403 /* A flag to tell pubnames/types export if there is an info section to
6404    refer to.  */
6405 static bool info_section_emitted;
6406
6407 /* A pointer to the base of a table that contains a list of publicly
6408    accessible names.  */
6409 static GTY (()) VEC (pubname_entry, gc) *  pubname_table;
6410
6411 /* A pointer to the base of a table that contains a list of publicly
6412    accessible types.  */
6413 static GTY (()) VEC (pubname_entry, gc) * pubtype_table;
6414
6415 /* A pointer to the base of a table that contains a list of macro
6416    defines/undefines (and file start/end markers).  */
6417 static GTY (()) VEC (macinfo_entry, gc) * macinfo_table;
6418
6419 /* Array of dies for which we should generate .debug_ranges info.  */
6420 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table;
6421
6422 /* Number of elements currently allocated for ranges_table.  */
6423 static GTY(()) unsigned ranges_table_allocated;
6424
6425 /* Number of elements in ranges_table currently in use.  */
6426 static GTY(()) unsigned ranges_table_in_use;
6427
6428 /* Array of pairs of labels referenced in ranges_table.  */
6429 static GTY ((length ("ranges_by_label_allocated")))
6430      dw_ranges_by_label_ref ranges_by_label;
6431
6432 /* Number of elements currently allocated for ranges_by_label.  */
6433 static GTY(()) unsigned ranges_by_label_allocated;
6434
6435 /* Number of elements in ranges_by_label currently in use.  */
6436 static GTY(()) unsigned ranges_by_label_in_use;
6437
6438 /* Size (in elements) of increments by which we may expand the
6439    ranges_table.  */
6440 #define RANGES_TABLE_INCREMENT 64
6441
6442 /* Whether we have location lists that need outputting */
6443 static GTY(()) bool have_location_lists;
6444
6445 /* Unique label counter.  */
6446 static GTY(()) unsigned int loclabel_num;
6447
6448 /* Unique label counter for point-of-call tables.  */
6449 static GTY(()) unsigned int poc_label_num;
6450
6451 /* Record whether the function being analyzed contains inlined functions.  */
6452 static int current_function_has_inlines;
6453
6454 /* The last file entry emitted by maybe_emit_file().  */
6455 static GTY(()) struct dwarf_file_data * last_emitted_file;
6456
6457 /* Number of internal labels generated by gen_internal_sym().  */
6458 static GTY(()) int label_num;
6459
6460 /* Cached result of previous call to lookup_filename.  */
6461 static GTY(()) struct dwarf_file_data * file_table_last_lookup;
6462
6463 static GTY(()) VEC(die_arg_entry,gc) *tmpl_value_parm_die_table;
6464
6465 /* Instances of generic types for which we need to generate debug
6466    info that describe their generic parameters and arguments. That
6467    generation needs to happen once all types are properly laid out so
6468    we do it at the end of compilation.  */
6469 static GTY(()) VEC(tree,gc) *generic_type_instances;
6470
6471 /* Offset from the "steady-state frame pointer" to the frame base,
6472    within the current function.  */
6473 static HOST_WIDE_INT frame_pointer_fb_offset;
6474
6475 static VEC (dw_die_ref, heap) *base_types;
6476
6477 /* Forward declarations for functions defined in this file.  */
6478
6479 static int is_pseudo_reg (const_rtx);
6480 static tree type_main_variant (tree);
6481 static int is_tagged_type (const_tree);
6482 static const char *dwarf_tag_name (unsigned);
6483 static const char *dwarf_attr_name (unsigned);
6484 static const char *dwarf_form_name (unsigned);
6485 static tree decl_ultimate_origin (const_tree);
6486 static tree decl_class_context (tree);
6487 static void add_dwarf_attr (dw_die_ref, dw_attr_ref);
6488 static inline enum dw_val_class AT_class (dw_attr_ref);
6489 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
6490 static inline unsigned AT_flag (dw_attr_ref);
6491 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
6492 static inline HOST_WIDE_INT AT_int (dw_attr_ref);
6493 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
6494 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_ref);
6495 static void add_AT_double (dw_die_ref, enum dwarf_attribute,
6496                            HOST_WIDE_INT, unsigned HOST_WIDE_INT);
6497 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
6498                                unsigned int, unsigned char *);
6499 static void add_AT_data8 (dw_die_ref, enum dwarf_attribute, unsigned char *);
6500 static hashval_t debug_str_do_hash (const void *);
6501 static int debug_str_eq (const void *, const void *);
6502 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
6503 static inline const char *AT_string (dw_attr_ref);
6504 static enum dwarf_form AT_string_form (dw_attr_ref);
6505 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
6506 static void add_AT_specification (dw_die_ref, dw_die_ref);
6507 static inline dw_die_ref AT_ref (dw_attr_ref);
6508 static inline int AT_ref_external (dw_attr_ref);
6509 static inline void set_AT_ref_external (dw_attr_ref, int);
6510 static void add_AT_fde_ref (dw_die_ref, enum dwarf_attribute, unsigned);
6511 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
6512 static inline dw_loc_descr_ref AT_loc (dw_attr_ref);
6513 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
6514                              dw_loc_list_ref);
6515 static inline dw_loc_list_ref AT_loc_list (dw_attr_ref);
6516 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx);
6517 static inline rtx AT_addr (dw_attr_ref);
6518 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
6519 static void add_AT_lineptr (dw_die_ref, enum dwarf_attribute, const char *);
6520 static void add_AT_macptr (dw_die_ref, enum dwarf_attribute, const char *);
6521 static void add_AT_offset (dw_die_ref, enum dwarf_attribute,
6522                            unsigned HOST_WIDE_INT);
6523 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
6524                                unsigned long);
6525 static inline const char *AT_lbl (dw_attr_ref);
6526 static dw_attr_ref get_AT (dw_die_ref, enum dwarf_attribute);
6527 static const char *get_AT_low_pc (dw_die_ref);
6528 static const char *get_AT_hi_pc (dw_die_ref);
6529 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
6530 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
6531 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
6532 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
6533 static bool is_cxx (void);
6534 static bool is_fortran (void);
6535 static bool is_ada (void);
6536 static void remove_AT (dw_die_ref, enum dwarf_attribute);
6537 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
6538 static void add_child_die (dw_die_ref, dw_die_ref);
6539 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
6540 static dw_die_ref lookup_type_die (tree);
6541 static dw_die_ref strip_naming_typedef (tree, dw_die_ref);
6542 static dw_die_ref lookup_type_die_strip_naming_typedef (tree);
6543 static void equate_type_number_to_die (tree, dw_die_ref);
6544 static hashval_t decl_die_table_hash (const void *);
6545 static int decl_die_table_eq (const void *, const void *);
6546 static dw_die_ref lookup_decl_die (tree);
6547 static hashval_t common_block_die_table_hash (const void *);
6548 static int common_block_die_table_eq (const void *, const void *);
6549 static hashval_t decl_loc_table_hash (const void *);
6550 static int decl_loc_table_eq (const void *, const void *);
6551 static var_loc_list *lookup_decl_loc (const_tree);
6552 static void equate_decl_number_to_die (tree, dw_die_ref);
6553 static struct var_loc_node *add_var_loc_to_decl (tree, rtx, const char *);
6554 static void print_spaces (FILE *);
6555 static void print_die (dw_die_ref, FILE *);
6556 static dw_die_ref push_new_compile_unit (dw_die_ref, dw_die_ref);
6557 static dw_die_ref pop_compile_unit (dw_die_ref);
6558 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
6559 static void attr_checksum (dw_attr_ref, struct md5_ctx *, int *);
6560 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
6561 static void checksum_sleb128 (HOST_WIDE_INT, struct md5_ctx *);
6562 static void checksum_uleb128 (unsigned HOST_WIDE_INT, struct md5_ctx *);
6563 static void loc_checksum_ordered (dw_loc_descr_ref, struct md5_ctx *);
6564 static void attr_checksum_ordered (enum dwarf_tag, dw_attr_ref,
6565                                    struct md5_ctx *, int *);
6566 struct checksum_attributes;
6567 static void collect_checksum_attributes (struct checksum_attributes *, dw_die_ref);
6568 static void die_checksum_ordered (dw_die_ref, struct md5_ctx *, int *);
6569 static void checksum_die_context (dw_die_ref, struct md5_ctx *);
6570 static void generate_type_signature (dw_die_ref, comdat_type_node *);
6571 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
6572 static int same_dw_val_p (const dw_val_node *, const dw_val_node *, int *);
6573 static int same_attr_p (dw_attr_ref, dw_attr_ref, int *);
6574 static int same_die_p (dw_die_ref, dw_die_ref, int *);
6575 static int same_die_p_wrap (dw_die_ref, dw_die_ref);
6576 static void compute_section_prefix (dw_die_ref);
6577 static int is_type_die (dw_die_ref);
6578 static int is_comdat_die (dw_die_ref);
6579 static int is_symbol_die (dw_die_ref);
6580 static void assign_symbol_names (dw_die_ref);
6581 static void break_out_includes (dw_die_ref);
6582 static int is_declaration_die (dw_die_ref);
6583 static int should_move_die_to_comdat (dw_die_ref);
6584 static dw_die_ref clone_as_declaration (dw_die_ref);
6585 static dw_die_ref clone_die (dw_die_ref);
6586 static dw_die_ref clone_tree (dw_die_ref);
6587 static void copy_declaration_context (dw_die_ref, dw_die_ref);
6588 static void generate_skeleton_ancestor_tree (skeleton_chain_node *);
6589 static void generate_skeleton_bottom_up (skeleton_chain_node *);
6590 static dw_die_ref generate_skeleton (dw_die_ref);
6591 static dw_die_ref remove_child_or_replace_with_skeleton (dw_die_ref,
6592                                                          dw_die_ref);
6593 static void break_out_comdat_types (dw_die_ref);
6594 static dw_die_ref copy_ancestor_tree (dw_die_ref, dw_die_ref, htab_t);
6595 static void copy_decls_walk (dw_die_ref, dw_die_ref, htab_t);
6596 static void copy_decls_for_unworthy_types (dw_die_ref);
6597
6598 static hashval_t htab_cu_hash (const void *);
6599 static int htab_cu_eq (const void *, const void *);
6600 static void htab_cu_del (void *);
6601 static int check_duplicate_cu (dw_die_ref, htab_t, unsigned *);
6602 static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
6603 static void add_sibling_attributes (dw_die_ref);
6604 static void build_abbrev_table (dw_die_ref);
6605 static void output_location_lists (dw_die_ref);
6606 static int constant_size (unsigned HOST_WIDE_INT);
6607 static unsigned long size_of_die (dw_die_ref);
6608 static void calc_die_sizes (dw_die_ref);
6609 static void calc_base_type_die_sizes (void);
6610 static void mark_dies (dw_die_ref);
6611 static void unmark_dies (dw_die_ref);
6612 static void unmark_all_dies (dw_die_ref);
6613 static unsigned long size_of_pubnames (VEC (pubname_entry,gc) *);
6614 static unsigned long size_of_aranges (void);
6615 static enum dwarf_form value_format (dw_attr_ref);
6616 static void output_value_format (dw_attr_ref);
6617 static void output_abbrev_section (void);
6618 static void output_die_symbol (dw_die_ref);
6619 static void output_die (dw_die_ref);
6620 static void output_compilation_unit_header (void);
6621 static void output_comp_unit (dw_die_ref, int);
6622 static void output_comdat_type_unit (comdat_type_node *);
6623 static const char *dwarf2_name (tree, int);
6624 static void add_pubname (tree, dw_die_ref);
6625 static void add_pubname_string (const char *, dw_die_ref);
6626 static void add_pubtype (tree, dw_die_ref);
6627 static void output_pubnames (VEC (pubname_entry,gc) *);
6628 static void output_aranges (unsigned long);
6629 static unsigned int add_ranges_num (int);
6630 static unsigned int add_ranges (const_tree);
6631 static void add_ranges_by_labels (dw_die_ref, const char *, const char *,
6632                                   bool *);
6633 static void output_ranges (void);
6634 static dw_line_info_table *new_line_info_table (void);
6635 static void output_line_info (void);
6636 static void output_file_names (void);
6637 static dw_die_ref base_type_die (tree);
6638 static int is_base_type (tree);
6639 static dw_die_ref subrange_type_die (tree, tree, tree, dw_die_ref);
6640 static dw_die_ref modified_type_die (tree, int, int, dw_die_ref);
6641 static dw_die_ref generic_parameter_die (tree, tree, bool, dw_die_ref);
6642 static dw_die_ref template_parameter_pack_die (tree, tree, dw_die_ref);
6643 static int type_is_enum (const_tree);
6644 static unsigned int dbx_reg_number (const_rtx);
6645 static void add_loc_descr_op_piece (dw_loc_descr_ref *, int);
6646 static dw_loc_descr_ref reg_loc_descriptor (rtx, enum var_init_status);
6647 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int,
6648                                                 enum var_init_status);
6649 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx,
6650                                                      enum var_init_status);
6651 static dw_loc_descr_ref based_loc_descr (rtx, HOST_WIDE_INT,
6652                                          enum var_init_status);
6653 static int is_based_loc (const_rtx);
6654 static int resolve_one_addr (rtx *, void *);
6655 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx,
6656                                                enum var_init_status);
6657 static dw_loc_descr_ref loc_descriptor (rtx, enum machine_mode mode,
6658                                         enum var_init_status);
6659 static dw_loc_list_ref loc_list_from_tree (tree, int);
6660 static dw_loc_descr_ref loc_descriptor_from_tree (tree, int);
6661 static HOST_WIDE_INT ceiling (HOST_WIDE_INT, unsigned int);
6662 static tree field_type (const_tree);
6663 static unsigned int simple_type_align_in_bits (const_tree);
6664 static unsigned int simple_decl_align_in_bits (const_tree);
6665 static unsigned HOST_WIDE_INT simple_type_size_in_bits (const_tree);
6666 static HOST_WIDE_INT field_byte_offset (const_tree);
6667 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
6668                                          dw_loc_list_ref);
6669 static void add_data_member_location_attribute (dw_die_ref, tree);
6670 static bool add_const_value_attribute (dw_die_ref, rtx);
6671 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
6672 static void insert_double (double_int, unsigned char *);
6673 static void insert_float (const_rtx, unsigned char *);
6674 static rtx rtl_for_decl_location (tree);
6675 static bool add_location_or_const_value_attribute (dw_die_ref, tree, bool,
6676                                                    enum dwarf_attribute);
6677 static bool tree_add_const_value_attribute (dw_die_ref, tree);
6678 static bool tree_add_const_value_attribute_for_decl (dw_die_ref, tree);
6679 static void add_name_attribute (dw_die_ref, const char *);
6680 static void add_gnat_descriptive_type_attribute (dw_die_ref, tree, dw_die_ref);
6681 static void add_comp_dir_attribute (dw_die_ref);
6682 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree);
6683 static void add_subscript_info (dw_die_ref, tree, bool);
6684 static void add_byte_size_attribute (dw_die_ref, tree);
6685 static void add_bit_offset_attribute (dw_die_ref, tree);
6686 static void add_bit_size_attribute (dw_die_ref, tree);
6687 static void add_prototyped_attribute (dw_die_ref, tree);
6688 static dw_die_ref add_abstract_origin_attribute (dw_die_ref, tree);
6689 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
6690 static void add_src_coords_attributes (dw_die_ref, tree);
6691 static void add_name_and_src_coords_attributes (dw_die_ref, tree);
6692 static void push_decl_scope (tree);
6693 static void pop_decl_scope (void);
6694 static dw_die_ref scope_die_for (tree, dw_die_ref);
6695 static inline int local_scope_p (dw_die_ref);
6696 static inline int class_scope_p (dw_die_ref);
6697 static inline int class_or_namespace_scope_p (dw_die_ref);
6698 static void add_type_attribute (dw_die_ref, tree, int, int, dw_die_ref);
6699 static void add_calling_convention_attribute (dw_die_ref, tree);
6700 static const char *type_tag (const_tree);
6701 static tree member_declared_type (const_tree);
6702 #if 0
6703 static const char *decl_start_label (tree);
6704 #endif
6705 static void gen_array_type_die (tree, dw_die_ref);
6706 static void gen_descr_array_type_die (tree, struct array_descr_info *, dw_die_ref);
6707 #if 0
6708 static void gen_entry_point_die (tree, dw_die_ref);
6709 #endif
6710 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
6711 static dw_die_ref gen_formal_parameter_die (tree, tree, bool, dw_die_ref);
6712 static dw_die_ref gen_formal_parameter_pack_die  (tree, tree, dw_die_ref, tree*);
6713 static void gen_unspecified_parameters_die (tree, dw_die_ref);
6714 static void gen_formal_types_die (tree, dw_die_ref);
6715 static void gen_subprogram_die (tree, dw_die_ref);
6716 static void gen_variable_die (tree, tree, dw_die_ref);
6717 static void gen_const_die (tree, dw_die_ref);
6718 static void gen_label_die (tree, dw_die_ref);
6719 static void gen_lexical_block_die (tree, dw_die_ref, int);
6720 static void gen_inlined_subroutine_die (tree, dw_die_ref, int);
6721 static void gen_field_die (tree, dw_die_ref);
6722 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
6723 static dw_die_ref gen_compile_unit_die (const char *);
6724 static void gen_inheritance_die (tree, tree, dw_die_ref);
6725 static void gen_member_die (tree, dw_die_ref);
6726 static void gen_struct_or_union_type_die (tree, dw_die_ref,
6727                                                 enum debug_info_usage);
6728 static void gen_subroutine_type_die (tree, dw_die_ref);
6729 static void gen_typedef_die (tree, dw_die_ref);
6730 static void gen_type_die (tree, dw_die_ref);
6731 static void gen_block_die (tree, dw_die_ref, int);
6732 static void decls_for_scope (tree, dw_die_ref, int);
6733 static inline int is_redundant_typedef (const_tree);
6734 static bool is_naming_typedef_decl (const_tree);
6735 static inline dw_die_ref get_context_die (tree);
6736 static void gen_namespace_die (tree, dw_die_ref);
6737 static dw_die_ref gen_decl_die (tree, tree, dw_die_ref);
6738 static dw_die_ref force_decl_die (tree);
6739 static dw_die_ref force_type_die (tree);
6740 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
6741 static dw_die_ref declare_in_namespace (tree, dw_die_ref);
6742 static struct dwarf_file_data * lookup_filename (const char *);
6743 static void retry_incomplete_types (void);
6744 static void gen_type_die_for_member (tree, tree, dw_die_ref);
6745 static void gen_generic_params_dies (tree);
6746 static void gen_tagged_type_die (tree, dw_die_ref, enum debug_info_usage);
6747 static void gen_type_die_with_usage (tree, dw_die_ref, enum debug_info_usage);
6748 static void splice_child_die (dw_die_ref, dw_die_ref);
6749 static int file_info_cmp (const void *, const void *);
6750 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *,
6751                                      const char *, const char *);
6752 static void output_loc_list (dw_loc_list_ref);
6753 static char *gen_internal_sym (const char *);
6754
6755 static void prune_unmark_dies (dw_die_ref);
6756 static void prune_unused_types_mark_generic_parms_dies (dw_die_ref);
6757 static void prune_unused_types_mark (dw_die_ref, int);
6758 static void prune_unused_types_walk (dw_die_ref);
6759 static void prune_unused_types_walk_attribs (dw_die_ref);
6760 static void prune_unused_types_prune (dw_die_ref);
6761 static void prune_unused_types (void);
6762 static int maybe_emit_file (struct dwarf_file_data *fd);
6763 static inline const char *AT_vms_delta1 (dw_attr_ref);
6764 static inline const char *AT_vms_delta2 (dw_attr_ref);
6765 static inline void add_AT_vms_delta (dw_die_ref, enum dwarf_attribute,
6766                                      const char *, const char *);
6767 static void append_entry_to_tmpl_value_parm_die_table (dw_die_ref, tree);
6768 static void gen_remaining_tmpl_value_param_die_attribute (void);
6769 static bool generic_type_p (tree);
6770 static void schedule_generic_params_dies_gen (tree t);
6771 static void gen_scheduled_generic_parms_dies (void);
6772
6773 /* Section names used to hold DWARF debugging information.  */
6774 #ifndef DEBUG_INFO_SECTION
6775 #define DEBUG_INFO_SECTION      ".debug_info"
6776 #endif
6777 #ifndef DEBUG_ABBREV_SECTION
6778 #define DEBUG_ABBREV_SECTION    ".debug_abbrev"
6779 #endif
6780 #ifndef DEBUG_ARANGES_SECTION
6781 #define DEBUG_ARANGES_SECTION   ".debug_aranges"
6782 #endif
6783 #ifndef DEBUG_MACINFO_SECTION
6784 #define DEBUG_MACINFO_SECTION   ".debug_macinfo"
6785 #endif
6786 #ifndef DEBUG_LINE_SECTION
6787 #define DEBUG_LINE_SECTION      ".debug_line"
6788 #endif
6789 #ifndef DEBUG_LOC_SECTION
6790 #define DEBUG_LOC_SECTION       ".debug_loc"
6791 #endif
6792 #ifndef DEBUG_PUBNAMES_SECTION
6793 #define DEBUG_PUBNAMES_SECTION  ".debug_pubnames"
6794 #endif
6795 #ifndef DEBUG_PUBTYPES_SECTION
6796 #define DEBUG_PUBTYPES_SECTION  ".debug_pubtypes"
6797 #endif
6798 #ifndef DEBUG_STR_SECTION
6799 #define DEBUG_STR_SECTION       ".debug_str"
6800 #endif
6801 #ifndef DEBUG_RANGES_SECTION
6802 #define DEBUG_RANGES_SECTION    ".debug_ranges"
6803 #endif
6804
6805 /* Standard ELF section names for compiled code and data.  */
6806 #ifndef TEXT_SECTION_NAME
6807 #define TEXT_SECTION_NAME       ".text"
6808 #endif
6809
6810 /* Section flags for .debug_str section.  */
6811 #define DEBUG_STR_SECTION_FLAGS \
6812   (HAVE_GAS_SHF_MERGE && flag_merge_debug_strings               \
6813    ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1        \
6814    : SECTION_DEBUG)
6815
6816 /* Labels we insert at beginning sections we can reference instead of
6817    the section names themselves.  */
6818
6819 #ifndef TEXT_SECTION_LABEL
6820 #define TEXT_SECTION_LABEL              "Ltext"
6821 #endif
6822 #ifndef COLD_TEXT_SECTION_LABEL
6823 #define COLD_TEXT_SECTION_LABEL         "Ltext_cold"
6824 #endif
6825 #ifndef DEBUG_LINE_SECTION_LABEL
6826 #define DEBUG_LINE_SECTION_LABEL        "Ldebug_line"
6827 #endif
6828 #ifndef DEBUG_INFO_SECTION_LABEL
6829 #define DEBUG_INFO_SECTION_LABEL        "Ldebug_info"
6830 #endif
6831 #ifndef DEBUG_ABBREV_SECTION_LABEL
6832 #define DEBUG_ABBREV_SECTION_LABEL      "Ldebug_abbrev"
6833 #endif
6834 #ifndef DEBUG_LOC_SECTION_LABEL
6835 #define DEBUG_LOC_SECTION_LABEL         "Ldebug_loc"
6836 #endif
6837 #ifndef DEBUG_RANGES_SECTION_LABEL
6838 #define DEBUG_RANGES_SECTION_LABEL      "Ldebug_ranges"
6839 #endif
6840 #ifndef DEBUG_MACINFO_SECTION_LABEL
6841 #define DEBUG_MACINFO_SECTION_LABEL     "Ldebug_macinfo"
6842 #endif
6843
6844
6845 /* Definitions of defaults for formats and names of various special
6846    (artificial) labels which may be generated within this file (when the -g
6847    options is used and DWARF2_DEBUGGING_INFO is in effect.
6848    If necessary, these may be overridden from within the tm.h file, but
6849    typically, overriding these defaults is unnecessary.  */
6850
6851 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
6852 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6853 static char cold_text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6854 static char cold_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
6855 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6856 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6857 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6858 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6859 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
6860 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
6861
6862 #ifndef TEXT_END_LABEL
6863 #define TEXT_END_LABEL          "Letext"
6864 #endif
6865 #ifndef COLD_END_LABEL
6866 #define COLD_END_LABEL          "Letext_cold"
6867 #endif
6868 #ifndef BLOCK_BEGIN_LABEL
6869 #define BLOCK_BEGIN_LABEL       "LBB"
6870 #endif
6871 #ifndef BLOCK_END_LABEL
6872 #define BLOCK_END_LABEL         "LBE"
6873 #endif
6874 #ifndef LINE_CODE_LABEL
6875 #define LINE_CODE_LABEL         "LM"
6876 #endif
6877
6878 \f
6879 /* Return the root of the DIE's built for the current compilation unit.  */
6880 static dw_die_ref
6881 comp_unit_die (void)
6882 {
6883   if (!single_comp_unit_die)
6884     single_comp_unit_die = gen_compile_unit_die (NULL);
6885   return single_comp_unit_die;
6886 }
6887
6888 /* We allow a language front-end to designate a function that is to be
6889    called to "demangle" any name before it is put into a DIE.  */
6890
6891 static const char *(*demangle_name_func) (const char *);
6892
6893 void
6894 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
6895 {
6896   demangle_name_func = func;
6897 }
6898
6899 /* Test if rtl node points to a pseudo register.  */
6900
6901 static inline int
6902 is_pseudo_reg (const_rtx rtl)
6903 {
6904   return ((REG_P (rtl) && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
6905           || (GET_CODE (rtl) == SUBREG
6906               && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
6907 }
6908
6909 /* Return a reference to a type, with its const and volatile qualifiers
6910    removed.  */
6911
6912 static inline tree
6913 type_main_variant (tree type)
6914 {
6915   type = TYPE_MAIN_VARIANT (type);
6916
6917   /* ??? There really should be only one main variant among any group of
6918      variants of a given type (and all of the MAIN_VARIANT values for all
6919      members of the group should point to that one type) but sometimes the C
6920      front-end messes this up for array types, so we work around that bug
6921      here.  */
6922   if (TREE_CODE (type) == ARRAY_TYPE)
6923     while (type != TYPE_MAIN_VARIANT (type))
6924       type = TYPE_MAIN_VARIANT (type);
6925
6926   return type;
6927 }
6928
6929 /* Return nonzero if the given type node represents a tagged type.  */
6930
6931 static inline int
6932 is_tagged_type (const_tree type)
6933 {
6934   enum tree_code code = TREE_CODE (type);
6935
6936   return (code == RECORD_TYPE || code == UNION_TYPE
6937           || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
6938 }
6939
6940 /* Set label to debug_info_section_label + die_offset of a DIE reference.  */
6941
6942 static void
6943 get_ref_die_offset_label (char *label, dw_die_ref ref)
6944 {
6945   sprintf (label, "%s+%ld", debug_info_section_label, ref->die_offset);
6946 }
6947
6948 /* Return die_offset of a DIE reference to a base type.  */
6949
6950 static unsigned long int
6951 get_base_type_offset (dw_die_ref ref)
6952 {
6953   if (ref->die_offset)
6954     return ref->die_offset;
6955   if (comp_unit_die ()->die_abbrev)
6956     {
6957       calc_base_type_die_sizes ();
6958       gcc_assert (ref->die_offset);
6959     }
6960   return ref->die_offset;
6961 }
6962
6963 /* Convert a DIE tag into its string name.  */
6964
6965 static const char *
6966 dwarf_tag_name (unsigned int tag)
6967 {
6968   switch (tag)
6969     {
6970     case DW_TAG_padding:
6971       return "DW_TAG_padding";
6972     case DW_TAG_array_type:
6973       return "DW_TAG_array_type";
6974     case DW_TAG_class_type:
6975       return "DW_TAG_class_type";
6976     case DW_TAG_entry_point:
6977       return "DW_TAG_entry_point";
6978     case DW_TAG_enumeration_type:
6979       return "DW_TAG_enumeration_type";
6980     case DW_TAG_formal_parameter:
6981       return "DW_TAG_formal_parameter";
6982     case DW_TAG_imported_declaration:
6983       return "DW_TAG_imported_declaration";
6984     case DW_TAG_label:
6985       return "DW_TAG_label";
6986     case DW_TAG_lexical_block:
6987       return "DW_TAG_lexical_block";
6988     case DW_TAG_member:
6989       return "DW_TAG_member";
6990     case DW_TAG_pointer_type:
6991       return "DW_TAG_pointer_type";
6992     case DW_TAG_reference_type:
6993       return "DW_TAG_reference_type";
6994     case DW_TAG_compile_unit:
6995       return "DW_TAG_compile_unit";
6996     case DW_TAG_string_type:
6997       return "DW_TAG_string_type";
6998     case DW_TAG_structure_type:
6999       return "DW_TAG_structure_type";
7000     case DW_TAG_subroutine_type:
7001       return "DW_TAG_subroutine_type";
7002     case DW_TAG_typedef:
7003       return "DW_TAG_typedef";
7004     case DW_TAG_union_type:
7005       return "DW_TAG_union_type";
7006     case DW_TAG_unspecified_parameters:
7007       return "DW_TAG_unspecified_parameters";
7008     case DW_TAG_variant:
7009       return "DW_TAG_variant";
7010     case DW_TAG_common_block:
7011       return "DW_TAG_common_block";
7012     case DW_TAG_common_inclusion:
7013       return "DW_TAG_common_inclusion";
7014     case DW_TAG_inheritance:
7015       return "DW_TAG_inheritance";
7016     case DW_TAG_inlined_subroutine:
7017       return "DW_TAG_inlined_subroutine";
7018     case DW_TAG_module:
7019       return "DW_TAG_module";
7020     case DW_TAG_ptr_to_member_type:
7021       return "DW_TAG_ptr_to_member_type";
7022     case DW_TAG_set_type:
7023       return "DW_TAG_set_type";
7024     case DW_TAG_subrange_type:
7025       return "DW_TAG_subrange_type";
7026     case DW_TAG_with_stmt:
7027       return "DW_TAG_with_stmt";
7028     case DW_TAG_access_declaration:
7029       return "DW_TAG_access_declaration";
7030     case DW_TAG_base_type:
7031       return "DW_TAG_base_type";
7032     case DW_TAG_catch_block:
7033       return "DW_TAG_catch_block";
7034     case DW_TAG_const_type:
7035       return "DW_TAG_const_type";
7036     case DW_TAG_constant:
7037       return "DW_TAG_constant";
7038     case DW_TAG_enumerator:
7039       return "DW_TAG_enumerator";
7040     case DW_TAG_file_type:
7041       return "DW_TAG_file_type";
7042     case DW_TAG_friend:
7043       return "DW_TAG_friend";
7044     case DW_TAG_namelist:
7045       return "DW_TAG_namelist";
7046     case DW_TAG_namelist_item:
7047       return "DW_TAG_namelist_item";
7048     case DW_TAG_packed_type:
7049       return "DW_TAG_packed_type";
7050     case DW_TAG_subprogram:
7051       return "DW_TAG_subprogram";
7052     case DW_TAG_template_type_param:
7053       return "DW_TAG_template_type_param";
7054     case DW_TAG_template_value_param:
7055       return "DW_TAG_template_value_param";
7056     case DW_TAG_thrown_type:
7057       return "DW_TAG_thrown_type";
7058     case DW_TAG_try_block:
7059       return "DW_TAG_try_block";
7060     case DW_TAG_variant_part:
7061       return "DW_TAG_variant_part";
7062     case DW_TAG_variable:
7063       return "DW_TAG_variable";
7064     case DW_TAG_volatile_type:
7065       return "DW_TAG_volatile_type";
7066     case DW_TAG_dwarf_procedure:
7067       return "DW_TAG_dwarf_procedure";
7068     case DW_TAG_restrict_type:
7069       return "DW_TAG_restrict_type";
7070     case DW_TAG_interface_type:
7071       return "DW_TAG_interface_type";
7072     case DW_TAG_namespace:
7073       return "DW_TAG_namespace";
7074     case DW_TAG_imported_module:
7075       return "DW_TAG_imported_module";
7076     case DW_TAG_unspecified_type:
7077       return "DW_TAG_unspecified_type";
7078     case DW_TAG_partial_unit:
7079       return "DW_TAG_partial_unit";
7080     case DW_TAG_imported_unit:
7081       return "DW_TAG_imported_unit";
7082     case DW_TAG_condition:
7083       return "DW_TAG_condition";
7084     case DW_TAG_shared_type:
7085       return "DW_TAG_shared_type";
7086     case DW_TAG_type_unit:
7087       return "DW_TAG_type_unit";
7088     case DW_TAG_rvalue_reference_type:
7089       return "DW_TAG_rvalue_reference_type";
7090     case DW_TAG_template_alias:
7091       return "DW_TAG_template_alias";
7092     case DW_TAG_GNU_template_parameter_pack:
7093       return "DW_TAG_GNU_template_parameter_pack";
7094     case DW_TAG_GNU_formal_parameter_pack:
7095       return "DW_TAG_GNU_formal_parameter_pack";
7096     case DW_TAG_MIPS_loop:
7097       return "DW_TAG_MIPS_loop";
7098     case DW_TAG_format_label:
7099       return "DW_TAG_format_label";
7100     case DW_TAG_function_template:
7101       return "DW_TAG_function_template";
7102     case DW_TAG_class_template:
7103       return "DW_TAG_class_template";
7104     case DW_TAG_GNU_BINCL:
7105       return "DW_TAG_GNU_BINCL";
7106     case DW_TAG_GNU_EINCL:
7107       return "DW_TAG_GNU_EINCL";
7108     case DW_TAG_GNU_template_template_param:
7109       return "DW_TAG_GNU_template_template_param";
7110     case DW_TAG_GNU_call_site:
7111       return "DW_TAG_GNU_call_site";
7112     case DW_TAG_GNU_call_site_parameter:
7113       return "DW_TAG_GNU_call_site_parameter";
7114     default:
7115       return "DW_TAG_<unknown>";
7116     }
7117 }
7118
7119 /* Convert a DWARF attribute code into its string name.  */
7120
7121 static const char *
7122 dwarf_attr_name (unsigned int attr)
7123 {
7124   switch (attr)
7125     {
7126     case DW_AT_sibling:
7127       return "DW_AT_sibling";
7128     case DW_AT_location:
7129       return "DW_AT_location";
7130     case DW_AT_name:
7131       return "DW_AT_name";
7132     case DW_AT_ordering:
7133       return "DW_AT_ordering";
7134     case DW_AT_subscr_data:
7135       return "DW_AT_subscr_data";
7136     case DW_AT_byte_size:
7137       return "DW_AT_byte_size";
7138     case DW_AT_bit_offset:
7139       return "DW_AT_bit_offset";
7140     case DW_AT_bit_size:
7141       return "DW_AT_bit_size";
7142     case DW_AT_element_list:
7143       return "DW_AT_element_list";
7144     case DW_AT_stmt_list:
7145       return "DW_AT_stmt_list";
7146     case DW_AT_low_pc:
7147       return "DW_AT_low_pc";
7148     case DW_AT_high_pc:
7149       return "DW_AT_high_pc";
7150     case DW_AT_language:
7151       return "DW_AT_language";
7152     case DW_AT_member:
7153       return "DW_AT_member";
7154     case DW_AT_discr:
7155       return "DW_AT_discr";
7156     case DW_AT_discr_value:
7157       return "DW_AT_discr_value";
7158     case DW_AT_visibility:
7159       return "DW_AT_visibility";
7160     case DW_AT_import:
7161       return "DW_AT_import";
7162     case DW_AT_string_length:
7163       return "DW_AT_string_length";
7164     case DW_AT_common_reference:
7165       return "DW_AT_common_reference";
7166     case DW_AT_comp_dir:
7167       return "DW_AT_comp_dir";
7168     case DW_AT_const_value:
7169       return "DW_AT_const_value";
7170     case DW_AT_containing_type:
7171       return "DW_AT_containing_type";
7172     case DW_AT_default_value:
7173       return "DW_AT_default_value";
7174     case DW_AT_inline:
7175       return "DW_AT_inline";
7176     case DW_AT_is_optional:
7177       return "DW_AT_is_optional";
7178     case DW_AT_lower_bound:
7179       return "DW_AT_lower_bound";
7180     case DW_AT_producer:
7181       return "DW_AT_producer";
7182     case DW_AT_prototyped:
7183       return "DW_AT_prototyped";
7184     case DW_AT_return_addr:
7185       return "DW_AT_return_addr";
7186     case DW_AT_start_scope:
7187       return "DW_AT_start_scope";
7188     case DW_AT_bit_stride:
7189       return "DW_AT_bit_stride";
7190     case DW_AT_upper_bound:
7191       return "DW_AT_upper_bound";
7192     case DW_AT_abstract_origin:
7193       return "DW_AT_abstract_origin";
7194     case DW_AT_accessibility:
7195       return "DW_AT_accessibility";
7196     case DW_AT_address_class:
7197       return "DW_AT_address_class";
7198     case DW_AT_artificial:
7199       return "DW_AT_artificial";
7200     case DW_AT_base_types:
7201       return "DW_AT_base_types";
7202     case DW_AT_calling_convention:
7203       return "DW_AT_calling_convention";
7204     case DW_AT_count:
7205       return "DW_AT_count";
7206     case DW_AT_data_member_location:
7207       return "DW_AT_data_member_location";
7208     case DW_AT_decl_column:
7209       return "DW_AT_decl_column";
7210     case DW_AT_decl_file:
7211       return "DW_AT_decl_file";
7212     case DW_AT_decl_line:
7213       return "DW_AT_decl_line";
7214     case DW_AT_declaration:
7215       return "DW_AT_declaration";
7216     case DW_AT_discr_list:
7217       return "DW_AT_discr_list";
7218     case DW_AT_encoding:
7219       return "DW_AT_encoding";
7220     case DW_AT_external:
7221       return "DW_AT_external";
7222     case DW_AT_explicit:
7223       return "DW_AT_explicit";
7224     case DW_AT_frame_base:
7225       return "DW_AT_frame_base";
7226     case DW_AT_friend:
7227       return "DW_AT_friend";
7228     case DW_AT_identifier_case:
7229       return "DW_AT_identifier_case";
7230     case DW_AT_macro_info:
7231       return "DW_AT_macro_info";
7232     case DW_AT_namelist_items:
7233       return "DW_AT_namelist_items";
7234     case DW_AT_priority:
7235       return "DW_AT_priority";
7236     case DW_AT_segment:
7237       return "DW_AT_segment";
7238     case DW_AT_specification:
7239       return "DW_AT_specification";
7240     case DW_AT_static_link:
7241       return "DW_AT_static_link";
7242     case DW_AT_type:
7243       return "DW_AT_type";
7244     case DW_AT_use_location:
7245       return "DW_AT_use_location";
7246     case DW_AT_variable_parameter:
7247       return "DW_AT_variable_parameter";
7248     case DW_AT_virtuality:
7249       return "DW_AT_virtuality";
7250     case DW_AT_vtable_elem_location:
7251       return "DW_AT_vtable_elem_location";
7252
7253     case DW_AT_allocated:
7254       return "DW_AT_allocated";
7255     case DW_AT_associated:
7256       return "DW_AT_associated";
7257     case DW_AT_data_location:
7258       return "DW_AT_data_location";
7259     case DW_AT_byte_stride:
7260       return "DW_AT_byte_stride";
7261     case DW_AT_entry_pc:
7262       return "DW_AT_entry_pc";
7263     case DW_AT_use_UTF8:
7264       return "DW_AT_use_UTF8";
7265     case DW_AT_extension:
7266       return "DW_AT_extension";
7267     case DW_AT_ranges:
7268       return "DW_AT_ranges";
7269     case DW_AT_trampoline:
7270       return "DW_AT_trampoline";
7271     case DW_AT_call_column:
7272       return "DW_AT_call_column";
7273     case DW_AT_call_file:
7274       return "DW_AT_call_file";
7275     case DW_AT_call_line:
7276       return "DW_AT_call_line";
7277     case DW_AT_object_pointer:
7278       return "DW_AT_object_pointer";
7279
7280     case DW_AT_signature:
7281       return "DW_AT_signature";
7282     case DW_AT_main_subprogram:
7283       return "DW_AT_main_subprogram";
7284     case DW_AT_data_bit_offset:
7285       return "DW_AT_data_bit_offset";
7286     case DW_AT_const_expr:
7287       return "DW_AT_const_expr";
7288     case DW_AT_enum_class:
7289       return "DW_AT_enum_class";
7290     case DW_AT_linkage_name:
7291       return "DW_AT_linkage_name";
7292
7293     case DW_AT_MIPS_fde:
7294       return "DW_AT_MIPS_fde";
7295     case DW_AT_MIPS_loop_begin:
7296       return "DW_AT_MIPS_loop_begin";
7297     case DW_AT_MIPS_tail_loop_begin:
7298       return "DW_AT_MIPS_tail_loop_begin";
7299     case DW_AT_MIPS_epilog_begin:
7300       return "DW_AT_MIPS_epilog_begin";
7301 #if VMS_DEBUGGING_INFO
7302     case DW_AT_HP_prologue:
7303       return "DW_AT_HP_prologue";
7304 #else
7305     case DW_AT_MIPS_loop_unroll_factor:
7306       return "DW_AT_MIPS_loop_unroll_factor";
7307 #endif
7308     case DW_AT_MIPS_software_pipeline_depth:
7309       return "DW_AT_MIPS_software_pipeline_depth";
7310     case DW_AT_MIPS_linkage_name:
7311       return "DW_AT_MIPS_linkage_name";
7312 #if VMS_DEBUGGING_INFO
7313     case DW_AT_HP_epilogue:
7314       return "DW_AT_HP_epilogue";
7315 #else
7316     case DW_AT_MIPS_stride:
7317       return "DW_AT_MIPS_stride";
7318 #endif
7319     case DW_AT_MIPS_abstract_name:
7320       return "DW_AT_MIPS_abstract_name";
7321     case DW_AT_MIPS_clone_origin:
7322       return "DW_AT_MIPS_clone_origin";
7323     case DW_AT_MIPS_has_inlines:
7324       return "DW_AT_MIPS_has_inlines";
7325
7326     case DW_AT_sf_names:
7327       return "DW_AT_sf_names";
7328     case DW_AT_src_info:
7329       return "DW_AT_src_info";
7330     case DW_AT_mac_info:
7331       return "DW_AT_mac_info";
7332     case DW_AT_src_coords:
7333       return "DW_AT_src_coords";
7334     case DW_AT_body_begin:
7335       return "DW_AT_body_begin";
7336     case DW_AT_body_end:
7337       return "DW_AT_body_end";
7338
7339     case DW_AT_GNU_vector:
7340       return "DW_AT_GNU_vector";
7341     case DW_AT_GNU_guarded_by:
7342       return "DW_AT_GNU_guarded_by";
7343     case DW_AT_GNU_pt_guarded_by:
7344       return "DW_AT_GNU_pt_guarded_by";
7345     case DW_AT_GNU_guarded:
7346       return "DW_AT_GNU_guarded";
7347     case DW_AT_GNU_pt_guarded:
7348       return "DW_AT_GNU_pt_guarded";
7349     case DW_AT_GNU_locks_excluded:
7350       return "DW_AT_GNU_locks_excluded";
7351     case DW_AT_GNU_exclusive_locks_required:
7352       return "DW_AT_GNU_exclusive_locks_required";
7353     case DW_AT_GNU_shared_locks_required:
7354       return "DW_AT_GNU_shared_locks_required";
7355     case DW_AT_GNU_odr_signature:
7356       return "DW_AT_GNU_odr_signature";
7357     case DW_AT_GNU_template_name:
7358       return "DW_AT_GNU_template_name";
7359     case DW_AT_GNU_call_site_value:
7360       return "DW_AT_GNU_call_site_value";
7361     case DW_AT_GNU_call_site_data_value:
7362       return "DW_AT_GNU_call_site_data_value";
7363     case DW_AT_GNU_call_site_target:
7364       return "DW_AT_GNU_call_site_target";
7365     case DW_AT_GNU_call_site_target_clobbered:
7366       return "DW_AT_GNU_call_site_target_clobbered";
7367     case DW_AT_GNU_tail_call:
7368       return "DW_AT_GNU_tail_call";
7369     case DW_AT_GNU_all_tail_call_sites:
7370       return "DW_AT_GNU_all_tail_call_sites";
7371     case DW_AT_GNU_all_call_sites:
7372       return "DW_AT_GNU_all_call_sites";
7373     case DW_AT_GNU_all_source_call_sites:
7374       return "DW_AT_GNU_all_source_call_sites";
7375
7376     case DW_AT_GNAT_descriptive_type:
7377       return "DW_AT_GNAT_descriptive_type";
7378
7379     case DW_AT_VMS_rtnbeg_pd_address:
7380       return "DW_AT_VMS_rtnbeg_pd_address";
7381
7382     default:
7383       return "DW_AT_<unknown>";
7384     }
7385 }
7386
7387 /* Convert a DWARF value form code into its string name.  */
7388
7389 static const char *
7390 dwarf_form_name (unsigned int form)
7391 {
7392   switch (form)
7393     {
7394     case DW_FORM_addr:
7395       return "DW_FORM_addr";
7396     case DW_FORM_block2:
7397       return "DW_FORM_block2";
7398     case DW_FORM_block4:
7399       return "DW_FORM_block4";
7400     case DW_FORM_data2:
7401       return "DW_FORM_data2";
7402     case DW_FORM_data4:
7403       return "DW_FORM_data4";
7404     case DW_FORM_data8:
7405       return "DW_FORM_data8";
7406     case DW_FORM_string:
7407       return "DW_FORM_string";
7408     case DW_FORM_block:
7409       return "DW_FORM_block";
7410     case DW_FORM_block1:
7411       return "DW_FORM_block1";
7412     case DW_FORM_data1:
7413       return "DW_FORM_data1";
7414     case DW_FORM_flag:
7415       return "DW_FORM_flag";
7416     case DW_FORM_sdata:
7417       return "DW_FORM_sdata";
7418     case DW_FORM_strp:
7419       return "DW_FORM_strp";
7420     case DW_FORM_udata:
7421       return "DW_FORM_udata";
7422     case DW_FORM_ref_addr:
7423       return "DW_FORM_ref_addr";
7424     case DW_FORM_ref1:
7425       return "DW_FORM_ref1";
7426     case DW_FORM_ref2:
7427       return "DW_FORM_ref2";
7428     case DW_FORM_ref4:
7429       return "DW_FORM_ref4";
7430     case DW_FORM_ref8:
7431       return "DW_FORM_ref8";
7432     case DW_FORM_ref_udata:
7433       return "DW_FORM_ref_udata";
7434     case DW_FORM_indirect:
7435       return "DW_FORM_indirect";
7436     case DW_FORM_sec_offset:
7437       return "DW_FORM_sec_offset";
7438     case DW_FORM_exprloc:
7439       return "DW_FORM_exprloc";
7440     case DW_FORM_flag_present:
7441       return "DW_FORM_flag_present";
7442     case DW_FORM_ref_sig8:
7443       return "DW_FORM_ref_sig8";
7444     default:
7445       return "DW_FORM_<unknown>";
7446     }
7447 }
7448 \f
7449 /* Determine the "ultimate origin" of a decl.  The decl may be an inlined
7450    instance of an inlined instance of a decl which is local to an inline
7451    function, so we have to trace all of the way back through the origin chain
7452    to find out what sort of node actually served as the original seed for the
7453    given block.  */
7454
7455 static tree
7456 decl_ultimate_origin (const_tree decl)
7457 {
7458   if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_COMMON))
7459     return NULL_TREE;
7460
7461   /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
7462      nodes in the function to point to themselves; ignore that if
7463      we're trying to output the abstract instance of this function.  */
7464   if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
7465     return NULL_TREE;
7466
7467   /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
7468      most distant ancestor, this should never happen.  */
7469   gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl)));
7470
7471   return DECL_ABSTRACT_ORIGIN (decl);
7472 }
7473
7474 /* Get the class to which DECL belongs, if any.  In g++, the DECL_CONTEXT
7475    of a virtual function may refer to a base class, so we check the 'this'
7476    parameter.  */
7477
7478 static tree
7479 decl_class_context (tree decl)
7480 {
7481   tree context = NULL_TREE;
7482
7483   if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
7484     context = DECL_CONTEXT (decl);
7485   else
7486     context = TYPE_MAIN_VARIANT
7487       (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
7488
7489   if (context && !TYPE_P (context))
7490     context = NULL_TREE;
7491
7492   return context;
7493 }
7494 \f
7495 /* Add an attribute/value pair to a DIE.  */
7496
7497 static inline void
7498 add_dwarf_attr (dw_die_ref die, dw_attr_ref attr)
7499 {
7500   /* Maybe this should be an assert?  */
7501   if (die == NULL)
7502     return;
7503
7504   if (die->die_attr == NULL)
7505     die->die_attr = VEC_alloc (dw_attr_node, gc, 1);
7506   VEC_safe_push (dw_attr_node, gc, die->die_attr, attr);
7507 }
7508
7509 static inline enum dw_val_class
7510 AT_class (dw_attr_ref a)
7511 {
7512   return a->dw_attr_val.val_class;
7513 }
7514
7515 /* Add a flag value attribute to a DIE.  */
7516
7517 static inline void
7518 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
7519 {
7520   dw_attr_node attr;
7521
7522   attr.dw_attr = attr_kind;
7523   attr.dw_attr_val.val_class = dw_val_class_flag;
7524   attr.dw_attr_val.v.val_flag = flag;
7525   add_dwarf_attr (die, &attr);
7526 }
7527
7528 static inline unsigned
7529 AT_flag (dw_attr_ref a)
7530 {
7531   gcc_assert (a && AT_class (a) == dw_val_class_flag);
7532   return a->dw_attr_val.v.val_flag;
7533 }
7534
7535 /* Add a signed integer attribute value to a DIE.  */
7536
7537 static inline void
7538 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
7539 {
7540   dw_attr_node attr;
7541
7542   attr.dw_attr = attr_kind;
7543   attr.dw_attr_val.val_class = dw_val_class_const;
7544   attr.dw_attr_val.v.val_int = int_val;
7545   add_dwarf_attr (die, &attr);
7546 }
7547
7548 static inline HOST_WIDE_INT
7549 AT_int (dw_attr_ref a)
7550 {
7551   gcc_assert (a && AT_class (a) == dw_val_class_const);
7552   return a->dw_attr_val.v.val_int;
7553 }
7554
7555 /* Add an unsigned integer attribute value to a DIE.  */
7556
7557 static inline void
7558 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
7559                  unsigned HOST_WIDE_INT unsigned_val)
7560 {
7561   dw_attr_node attr;
7562
7563   attr.dw_attr = attr_kind;
7564   attr.dw_attr_val.val_class = dw_val_class_unsigned_const;
7565   attr.dw_attr_val.v.val_unsigned = unsigned_val;
7566   add_dwarf_attr (die, &attr);
7567 }
7568
7569 static inline unsigned HOST_WIDE_INT
7570 AT_unsigned (dw_attr_ref a)
7571 {
7572   gcc_assert (a && AT_class (a) == dw_val_class_unsigned_const);
7573   return a->dw_attr_val.v.val_unsigned;
7574 }
7575
7576 /* Add an unsigned double integer attribute value to a DIE.  */
7577
7578 static inline void
7579 add_AT_double (dw_die_ref die, enum dwarf_attribute attr_kind,
7580                HOST_WIDE_INT high, unsigned HOST_WIDE_INT low)
7581 {
7582   dw_attr_node attr;
7583
7584   attr.dw_attr = attr_kind;
7585   attr.dw_attr_val.val_class = dw_val_class_const_double;
7586   attr.dw_attr_val.v.val_double.high = high;
7587   attr.dw_attr_val.v.val_double.low = low;
7588   add_dwarf_attr (die, &attr);
7589 }
7590
7591 /* Add a floating point attribute value to a DIE and return it.  */
7592
7593 static inline void
7594 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
7595             unsigned int length, unsigned int elt_size, unsigned char *array)
7596 {
7597   dw_attr_node attr;
7598
7599   attr.dw_attr = attr_kind;
7600   attr.dw_attr_val.val_class = dw_val_class_vec;
7601   attr.dw_attr_val.v.val_vec.length = length;
7602   attr.dw_attr_val.v.val_vec.elt_size = elt_size;
7603   attr.dw_attr_val.v.val_vec.array = array;
7604   add_dwarf_attr (die, &attr);
7605 }
7606
7607 /* Add an 8-byte data attribute value to a DIE.  */
7608
7609 static inline void
7610 add_AT_data8 (dw_die_ref die, enum dwarf_attribute attr_kind,
7611               unsigned char data8[8])
7612 {
7613   dw_attr_node attr;
7614
7615   attr.dw_attr = attr_kind;
7616   attr.dw_attr_val.val_class = dw_val_class_data8;
7617   memcpy (attr.dw_attr_val.v.val_data8, data8, 8);
7618   add_dwarf_attr (die, &attr);
7619 }
7620
7621 /* Hash and equality functions for debug_str_hash.  */
7622
7623 static hashval_t
7624 debug_str_do_hash (const void *x)
7625 {
7626   return htab_hash_string (((const struct indirect_string_node *)x)->str);
7627 }
7628
7629 static int
7630 debug_str_eq (const void *x1, const void *x2)
7631 {
7632   return strcmp ((((const struct indirect_string_node *)x1)->str),
7633                  (const char *)x2) == 0;
7634 }
7635
7636 /* Add STR to the indirect string hash table.  */
7637
7638 static struct indirect_string_node *
7639 find_AT_string (const char *str)
7640 {
7641   struct indirect_string_node *node;
7642   void **slot;
7643
7644   if (! debug_str_hash)
7645     debug_str_hash = htab_create_ggc (10, debug_str_do_hash,
7646                                       debug_str_eq, NULL);
7647
7648   slot = htab_find_slot_with_hash (debug_str_hash, str,
7649                                    htab_hash_string (str), INSERT);
7650   if (*slot == NULL)
7651     {
7652       node = ggc_alloc_cleared_indirect_string_node ();
7653       node->str = ggc_strdup (str);
7654       *slot = node;
7655     }
7656   else
7657     node = (struct indirect_string_node *) *slot;
7658
7659   node->refcount++;
7660   return node;
7661 }
7662
7663 /* Add a string attribute value to a DIE.  */
7664
7665 static inline void
7666 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
7667 {
7668   dw_attr_node attr;
7669   struct indirect_string_node *node;
7670
7671   node = find_AT_string (str);
7672
7673   attr.dw_attr = attr_kind;
7674   attr.dw_attr_val.val_class = dw_val_class_str;
7675   attr.dw_attr_val.v.val_str = node;
7676   add_dwarf_attr (die, &attr);
7677 }
7678
7679 static inline const char *
7680 AT_string (dw_attr_ref a)
7681 {
7682   gcc_assert (a && AT_class (a) == dw_val_class_str);
7683   return a->dw_attr_val.v.val_str->str;
7684 }
7685
7686 /* Find out whether a string should be output inline in DIE
7687    or out-of-line in .debug_str section.  */
7688
7689 static enum dwarf_form
7690 AT_string_form (dw_attr_ref a)
7691 {
7692   struct indirect_string_node *node;
7693   unsigned int len;
7694   char label[32];
7695
7696   gcc_assert (a && AT_class (a) == dw_val_class_str);
7697
7698   node = a->dw_attr_val.v.val_str;
7699   if (node->form)
7700     return node->form;
7701
7702   len = strlen (node->str) + 1;
7703
7704   /* If the string is shorter or equal to the size of the reference, it is
7705      always better to put it inline.  */
7706   if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
7707     return node->form = DW_FORM_string;
7708
7709   /* If we cannot expect the linker to merge strings in .debug_str
7710      section, only put it into .debug_str if it is worth even in this
7711      single module.  */
7712   if (DWARF2_INDIRECT_STRING_SUPPORT_MISSING_ON_TARGET
7713       || ((debug_str_section->common.flags & SECTION_MERGE) == 0
7714       && (len - DWARF_OFFSET_SIZE) * node->refcount <= len))
7715     return node->form = DW_FORM_string;
7716
7717   ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
7718   ++dw2_string_counter;
7719   node->label = xstrdup (label);
7720
7721   return node->form = DW_FORM_strp;
7722 }
7723
7724 /* Add a DIE reference attribute value to a DIE.  */
7725
7726 static inline void
7727 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
7728 {
7729   dw_attr_node attr;
7730
7731 #ifdef ENABLE_CHECKING
7732   gcc_assert (targ_die != NULL);
7733 #else
7734   /* With LTO we can end up trying to reference something we didn't create
7735      a DIE for.  Avoid crashing later on a NULL referenced DIE.  */
7736   if (targ_die == NULL)
7737     return;
7738 #endif
7739
7740   attr.dw_attr = attr_kind;
7741   attr.dw_attr_val.val_class = dw_val_class_die_ref;
7742   attr.dw_attr_val.v.val_die_ref.die = targ_die;
7743   attr.dw_attr_val.v.val_die_ref.external = 0;
7744   add_dwarf_attr (die, &attr);
7745 }
7746
7747 /* Add an AT_specification attribute to a DIE, and also make the back
7748    pointer from the specification to the definition.  */
7749
7750 static inline void
7751 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
7752 {
7753   add_AT_die_ref (die, DW_AT_specification, targ_die);
7754   gcc_assert (!targ_die->die_definition);
7755   targ_die->die_definition = die;
7756 }
7757
7758 static inline dw_die_ref
7759 AT_ref (dw_attr_ref a)
7760 {
7761   gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
7762   return a->dw_attr_val.v.val_die_ref.die;
7763 }
7764
7765 static inline int
7766 AT_ref_external (dw_attr_ref a)
7767 {
7768   if (a && AT_class (a) == dw_val_class_die_ref)
7769     return a->dw_attr_val.v.val_die_ref.external;
7770
7771   return 0;
7772 }
7773
7774 static inline void
7775 set_AT_ref_external (dw_attr_ref a, int i)
7776 {
7777   gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
7778   a->dw_attr_val.v.val_die_ref.external = i;
7779 }
7780
7781 /* Add an FDE reference attribute value to a DIE.  */
7782
7783 static inline void
7784 add_AT_fde_ref (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int targ_fde)
7785 {
7786   dw_attr_node attr;
7787
7788   attr.dw_attr = attr_kind;
7789   attr.dw_attr_val.val_class = dw_val_class_fde_ref;
7790   attr.dw_attr_val.v.val_fde_index = targ_fde;
7791   add_dwarf_attr (die, &attr);
7792 }
7793
7794 /* Add a location description attribute value to a DIE.  */
7795
7796 static inline void
7797 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
7798 {
7799   dw_attr_node attr;
7800
7801   attr.dw_attr = attr_kind;
7802   attr.dw_attr_val.val_class = dw_val_class_loc;
7803   attr.dw_attr_val.v.val_loc = loc;
7804   add_dwarf_attr (die, &attr);
7805 }
7806
7807 static inline dw_loc_descr_ref
7808 AT_loc (dw_attr_ref a)
7809 {
7810   gcc_assert (a && AT_class (a) == dw_val_class_loc);
7811   return a->dw_attr_val.v.val_loc;
7812 }
7813
7814 static inline void
7815 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
7816 {
7817   dw_attr_node attr;
7818
7819   attr.dw_attr = attr_kind;
7820   attr.dw_attr_val.val_class = dw_val_class_loc_list;
7821   attr.dw_attr_val.v.val_loc_list = loc_list;
7822   add_dwarf_attr (die, &attr);
7823   have_location_lists = true;
7824 }
7825
7826 static inline dw_loc_list_ref
7827 AT_loc_list (dw_attr_ref a)
7828 {
7829   gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
7830   return a->dw_attr_val.v.val_loc_list;
7831 }
7832
7833 static inline dw_loc_list_ref *
7834 AT_loc_list_ptr (dw_attr_ref a)
7835 {
7836   gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
7837   return &a->dw_attr_val.v.val_loc_list;
7838 }
7839
7840 /* Add an address constant attribute value to a DIE.  */
7841
7842 static inline void
7843 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr)
7844 {
7845   dw_attr_node attr;
7846
7847   attr.dw_attr = attr_kind;
7848   attr.dw_attr_val.val_class = dw_val_class_addr;
7849   attr.dw_attr_val.v.val_addr = addr;
7850   add_dwarf_attr (die, &attr);
7851 }
7852
7853 /* Get the RTX from to an address DIE attribute.  */
7854
7855 static inline rtx
7856 AT_addr (dw_attr_ref a)
7857 {
7858   gcc_assert (a && AT_class (a) == dw_val_class_addr);
7859   return a->dw_attr_val.v.val_addr;
7860 }
7861
7862 /* Add a file attribute value to a DIE.  */
7863
7864 static inline void
7865 add_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind,
7866              struct dwarf_file_data *fd)
7867 {
7868   dw_attr_node attr;
7869
7870   attr.dw_attr = attr_kind;
7871   attr.dw_attr_val.val_class = dw_val_class_file;
7872   attr.dw_attr_val.v.val_file = fd;
7873   add_dwarf_attr (die, &attr);
7874 }
7875
7876 /* Get the dwarf_file_data from a file DIE attribute.  */
7877
7878 static inline struct dwarf_file_data *
7879 AT_file (dw_attr_ref a)
7880 {
7881   gcc_assert (a && AT_class (a) == dw_val_class_file);
7882   return a->dw_attr_val.v.val_file;
7883 }
7884
7885 /* Add a vms delta attribute value to a DIE.  */
7886
7887 static inline void
7888 add_AT_vms_delta (dw_die_ref die, enum dwarf_attribute attr_kind,
7889                   const char *lbl1, const char *lbl2)
7890 {
7891   dw_attr_node attr;
7892
7893   attr.dw_attr = attr_kind;
7894   attr.dw_attr_val.val_class = dw_val_class_vms_delta;
7895   attr.dw_attr_val.v.val_vms_delta.lbl1 = xstrdup (lbl1);
7896   attr.dw_attr_val.v.val_vms_delta.lbl2 = xstrdup (lbl2);
7897   add_dwarf_attr (die, &attr);
7898 }
7899
7900 /* Add a label identifier attribute value to a DIE.  */
7901
7902 static inline void
7903 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind, const char *lbl_id)
7904 {
7905   dw_attr_node attr;
7906
7907   attr.dw_attr = attr_kind;
7908   attr.dw_attr_val.val_class = dw_val_class_lbl_id;
7909   attr.dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
7910   add_dwarf_attr (die, &attr);
7911 }
7912
7913 /* Add a section offset attribute value to a DIE, an offset into the
7914    debug_line section.  */
7915
7916 static inline void
7917 add_AT_lineptr (dw_die_ref die, enum dwarf_attribute attr_kind,
7918                 const char *label)
7919 {
7920   dw_attr_node attr;
7921
7922   attr.dw_attr = attr_kind;
7923   attr.dw_attr_val.val_class = dw_val_class_lineptr;
7924   attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
7925   add_dwarf_attr (die, &attr);
7926 }
7927
7928 /* Add a section offset attribute value to a DIE, an offset into the
7929    debug_macinfo section.  */
7930
7931 static inline void
7932 add_AT_macptr (dw_die_ref die, enum dwarf_attribute attr_kind,
7933                const char *label)
7934 {
7935   dw_attr_node attr;
7936
7937   attr.dw_attr = attr_kind;
7938   attr.dw_attr_val.val_class = dw_val_class_macptr;
7939   attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
7940   add_dwarf_attr (die, &attr);
7941 }
7942
7943 /* Add an offset attribute value to a DIE.  */
7944
7945 static inline void
7946 add_AT_offset (dw_die_ref die, enum dwarf_attribute attr_kind,
7947                unsigned HOST_WIDE_INT offset)
7948 {
7949   dw_attr_node attr;
7950
7951   attr.dw_attr = attr_kind;
7952   attr.dw_attr_val.val_class = dw_val_class_offset;
7953   attr.dw_attr_val.v.val_offset = offset;
7954   add_dwarf_attr (die, &attr);
7955 }
7956
7957 /* Add an range_list attribute value to a DIE.  */
7958
7959 static void
7960 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
7961                    long unsigned int offset)
7962 {
7963   dw_attr_node attr;
7964
7965   attr.dw_attr = attr_kind;
7966   attr.dw_attr_val.val_class = dw_val_class_range_list;
7967   attr.dw_attr_val.v.val_offset = offset;
7968   add_dwarf_attr (die, &attr);
7969 }
7970
7971 /* Return the start label of a delta attribute.  */
7972
7973 static inline const char *
7974 AT_vms_delta1 (dw_attr_ref a)
7975 {
7976   gcc_assert (a && (AT_class (a) == dw_val_class_vms_delta));
7977   return a->dw_attr_val.v.val_vms_delta.lbl1;
7978 }
7979
7980 /* Return the end label of a delta attribute.  */
7981
7982 static inline const char *
7983 AT_vms_delta2 (dw_attr_ref a)
7984 {
7985   gcc_assert (a && (AT_class (a) == dw_val_class_vms_delta));
7986   return a->dw_attr_val.v.val_vms_delta.lbl2;
7987 }
7988
7989 static inline const char *
7990 AT_lbl (dw_attr_ref a)
7991 {
7992   gcc_assert (a && (AT_class (a) == dw_val_class_lbl_id
7993                     || AT_class (a) == dw_val_class_lineptr
7994                     || AT_class (a) == dw_val_class_macptr));
7995   return a->dw_attr_val.v.val_lbl_id;
7996 }
7997
7998 /* Get the attribute of type attr_kind.  */
7999
8000 static dw_attr_ref
8001 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
8002 {
8003   dw_attr_ref a;
8004   unsigned ix;
8005   dw_die_ref spec = NULL;
8006
8007   if (! die)
8008     return NULL;
8009
8010   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
8011     if (a->dw_attr == attr_kind)
8012       return a;
8013     else if (a->dw_attr == DW_AT_specification
8014              || a->dw_attr == DW_AT_abstract_origin)
8015       spec = AT_ref (a);
8016
8017   if (spec)
8018     return get_AT (spec, attr_kind);
8019
8020   return NULL;
8021 }
8022
8023 /* Return the "low pc" attribute value, typically associated with a subprogram
8024    DIE.  Return null if the "low pc" attribute is either not present, or if it
8025    cannot be represented as an assembler label identifier.  */
8026
8027 static inline const char *
8028 get_AT_low_pc (dw_die_ref die)
8029 {
8030   dw_attr_ref a = get_AT (die, DW_AT_low_pc);
8031
8032   return a ? AT_lbl (a) : NULL;
8033 }
8034
8035 /* Return the "high pc" attribute value, typically associated with a subprogram
8036    DIE.  Return null if the "high pc" attribute is either not present, or if it
8037    cannot be represented as an assembler label identifier.  */
8038
8039 static inline const char *
8040 get_AT_hi_pc (dw_die_ref die)
8041 {
8042   dw_attr_ref a = get_AT (die, DW_AT_high_pc);
8043
8044   return a ? AT_lbl (a) : NULL;
8045 }
8046
8047 /* Return the value of the string attribute designated by ATTR_KIND, or
8048    NULL if it is not present.  */
8049
8050 static inline const char *
8051 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
8052 {
8053   dw_attr_ref a = get_AT (die, attr_kind);
8054
8055   return a ? AT_string (a) : NULL;
8056 }
8057
8058 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
8059    if it is not present.  */
8060
8061 static inline int
8062 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
8063 {
8064   dw_attr_ref a = get_AT (die, attr_kind);
8065
8066   return a ? AT_flag (a) : 0;
8067 }
8068
8069 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
8070    if it is not present.  */
8071
8072 static inline unsigned
8073 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
8074 {
8075   dw_attr_ref a = get_AT (die, attr_kind);
8076
8077   return a ? AT_unsigned (a) : 0;
8078 }
8079
8080 static inline dw_die_ref
8081 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
8082 {
8083   dw_attr_ref a = get_AT (die, attr_kind);
8084
8085   return a ? AT_ref (a) : NULL;
8086 }
8087
8088 static inline struct dwarf_file_data *
8089 get_AT_file (dw_die_ref die, enum dwarf_attribute attr_kind)
8090 {
8091   dw_attr_ref a = get_AT (die, attr_kind);
8092
8093   return a ? AT_file (a) : NULL;
8094 }
8095
8096 /* Return TRUE if the language is C++.  */
8097
8098 static inline bool
8099 is_cxx (void)
8100 {
8101   unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
8102
8103   return lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus;
8104 }
8105
8106 /* Return TRUE if the language is Fortran.  */
8107
8108 static inline bool
8109 is_fortran (void)
8110 {
8111   unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
8112
8113   return (lang == DW_LANG_Fortran77
8114           || lang == DW_LANG_Fortran90
8115           || lang == DW_LANG_Fortran95);
8116 }
8117
8118 /* Return TRUE if the language is Ada.  */
8119
8120 static inline bool
8121 is_ada (void)
8122 {
8123   unsigned int lang = get_AT_unsigned (comp_unit_die (), DW_AT_language);
8124
8125   return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
8126 }
8127
8128 /* Remove the specified attribute if present.  */
8129
8130 static void
8131 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
8132 {
8133   dw_attr_ref a;
8134   unsigned ix;
8135
8136   if (! die)
8137     return;
8138
8139   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
8140     if (a->dw_attr == attr_kind)
8141       {
8142         if (AT_class (a) == dw_val_class_str)
8143           if (a->dw_attr_val.v.val_str->refcount)
8144             a->dw_attr_val.v.val_str->refcount--;
8145
8146         /* VEC_ordered_remove should help reduce the number of abbrevs
8147            that are needed.  */
8148         VEC_ordered_remove (dw_attr_node, die->die_attr, ix);
8149         return;
8150       }
8151 }
8152
8153 /* Remove CHILD from its parent.  PREV must have the property that
8154    PREV->DIE_SIB == CHILD.  Does not alter CHILD.  */
8155
8156 static void
8157 remove_child_with_prev (dw_die_ref child, dw_die_ref prev)
8158 {
8159   gcc_assert (child->die_parent == prev->die_parent);
8160   gcc_assert (prev->die_sib == child);
8161   if (prev == child)
8162     {
8163       gcc_assert (child->die_parent->die_child == child);
8164       prev = NULL;
8165     }
8166   else
8167     prev->die_sib = child->die_sib;
8168   if (child->die_parent->die_child == child)
8169     child->die_parent->die_child = prev;
8170 }
8171
8172 /* Replace OLD_CHILD with NEW_CHILD.  PREV must have the property that
8173    PREV->DIE_SIB == OLD_CHILD.  Does not alter OLD_CHILD.  */
8174
8175 static void
8176 replace_child (dw_die_ref old_child, dw_die_ref new_child, dw_die_ref prev)
8177 {
8178   dw_die_ref parent = old_child->die_parent;
8179
8180   gcc_assert (parent == prev->die_parent);
8181   gcc_assert (prev->die_sib == old_child);
8182
8183   new_child->die_parent = parent;
8184   if (prev == old_child)
8185     {
8186       gcc_assert (parent->die_child == old_child);
8187       new_child->die_sib = new_child;
8188     }
8189   else
8190     {
8191       prev->die_sib = new_child;
8192       new_child->die_sib = old_child->die_sib;
8193     }
8194   if (old_child->die_parent->die_child == old_child)
8195     old_child->die_parent->die_child = new_child;
8196 }
8197
8198 /* Move all children from OLD_PARENT to NEW_PARENT.  */
8199
8200 static void
8201 move_all_children (dw_die_ref old_parent, dw_die_ref new_parent)
8202 {
8203   dw_die_ref c;
8204   new_parent->die_child = old_parent->die_child;
8205   old_parent->die_child = NULL;
8206   FOR_EACH_CHILD (new_parent, c, c->die_parent = new_parent);
8207 }
8208
8209 /* Remove child DIE whose die_tag is TAG.  Do nothing if no child
8210    matches TAG.  */
8211
8212 static void
8213 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
8214 {
8215   dw_die_ref c;
8216
8217   c = die->die_child;
8218   if (c) do {
8219     dw_die_ref prev = c;
8220     c = c->die_sib;
8221     while (c->die_tag == tag)
8222       {
8223         remove_child_with_prev (c, prev);
8224         /* Might have removed every child.  */
8225         if (c == c->die_sib)
8226           return;
8227         c = c->die_sib;
8228       }
8229   } while (c != die->die_child);
8230 }
8231
8232 /* Add a CHILD_DIE as the last child of DIE.  */
8233
8234 static void
8235 add_child_die (dw_die_ref die, dw_die_ref child_die)
8236 {
8237   /* FIXME this should probably be an assert.  */
8238   if (! die || ! child_die)
8239     return;
8240   gcc_assert (die != child_die);
8241
8242   child_die->die_parent = die;
8243   if (die->die_child)
8244     {
8245       child_die->die_sib = die->die_child->die_sib;
8246       die->die_child->die_sib = child_die;
8247     }
8248   else
8249     child_die->die_sib = child_die;
8250   die->die_child = child_die;
8251 }
8252
8253 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
8254    is the specification, to the end of PARENT's list of children.
8255    This is done by removing and re-adding it.  */
8256
8257 static void
8258 splice_child_die (dw_die_ref parent, dw_die_ref child)
8259 {
8260   dw_die_ref p;
8261
8262   /* We want the declaration DIE from inside the class, not the
8263      specification DIE at toplevel.  */
8264   if (child->die_parent != parent)
8265     {
8266       dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
8267
8268       if (tmp)
8269         child = tmp;
8270     }
8271
8272   gcc_assert (child->die_parent == parent
8273               || (child->die_parent
8274                   == get_AT_ref (parent, DW_AT_specification)));
8275
8276   for (p = child->die_parent->die_child; ; p = p->die_sib)
8277     if (p->die_sib == child)
8278       {
8279         remove_child_with_prev (child, p);
8280         break;
8281       }
8282
8283   add_child_die (parent, child);
8284 }
8285
8286 /* Return a pointer to a newly created DIE node.  */
8287
8288 static inline dw_die_ref
8289 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
8290 {
8291   dw_die_ref die = ggc_alloc_cleared_die_node ();
8292
8293   die->die_tag = tag_value;
8294
8295   if (parent_die != NULL)
8296     add_child_die (parent_die, die);
8297   else
8298     {
8299       limbo_die_node *limbo_node;
8300
8301       limbo_node = ggc_alloc_cleared_limbo_die_node ();
8302       limbo_node->die = die;
8303       limbo_node->created_for = t;
8304       limbo_node->next = limbo_die_list;
8305       limbo_die_list = limbo_node;
8306     }
8307
8308   return die;
8309 }
8310
8311 /* Return the DIE associated with the given type specifier.  */
8312
8313 static inline dw_die_ref
8314 lookup_type_die (tree type)
8315 {
8316   return TYPE_SYMTAB_DIE (type);
8317 }
8318
8319 /* Given a TYPE_DIE representing the type TYPE, if TYPE is an
8320    anonymous type named by the typedef TYPE_DIE, return the DIE of the
8321    anonymous type instead the one of the naming typedef.  */
8322
8323 static inline dw_die_ref
8324 strip_naming_typedef (tree type, dw_die_ref type_die)
8325 {
8326   if (type
8327       && TREE_CODE (type) == RECORD_TYPE
8328       && type_die
8329       && type_die->die_tag == DW_TAG_typedef
8330       && is_naming_typedef_decl (TYPE_NAME (type)))
8331     type_die = get_AT_ref (type_die, DW_AT_type);
8332   return type_die;
8333 }
8334
8335 /* Like lookup_type_die, but if type is an anonymous type named by a
8336    typedef[1], return the DIE of the anonymous type instead the one of
8337    the naming typedef.  This is because in gen_typedef_die, we did
8338    equate the anonymous struct named by the typedef with the DIE of
8339    the naming typedef. So by default, lookup_type_die on an anonymous
8340    struct yields the DIE of the naming typedef.
8341
8342    [1]: Read the comment of is_naming_typedef_decl to learn about what
8343    a naming typedef is.  */
8344
8345 static inline dw_die_ref
8346 lookup_type_die_strip_naming_typedef (tree type)
8347 {
8348   dw_die_ref die = lookup_type_die (type);
8349   return strip_naming_typedef (type, die);
8350 }
8351
8352 /* Equate a DIE to a given type specifier.  */
8353
8354 static inline void
8355 equate_type_number_to_die (tree type, dw_die_ref type_die)
8356 {
8357   TYPE_SYMTAB_DIE (type) = type_die;
8358 }
8359
8360 /* Returns a hash value for X (which really is a die_struct).  */
8361
8362 static hashval_t
8363 decl_die_table_hash (const void *x)
8364 {
8365   return (hashval_t) ((const_dw_die_ref) x)->decl_id;
8366 }
8367
8368 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y.  */
8369
8370 static int
8371 decl_die_table_eq (const void *x, const void *y)
8372 {
8373   return (((const_dw_die_ref) x)->decl_id == DECL_UID ((const_tree) y));
8374 }
8375
8376 /* Return the DIE associated with a given declaration.  */
8377
8378 static inline dw_die_ref
8379 lookup_decl_die (tree decl)
8380 {
8381   return (dw_die_ref) htab_find_with_hash (decl_die_table, decl, DECL_UID (decl));
8382 }
8383
8384 /* Returns a hash value for X (which really is a var_loc_list).  */
8385
8386 static hashval_t
8387 decl_loc_table_hash (const void *x)
8388 {
8389   return (hashval_t) ((const var_loc_list *) x)->decl_id;
8390 }
8391
8392 /* Return nonzero if decl_id of var_loc_list X is the same as
8393    UID of decl *Y.  */
8394
8395 static int
8396 decl_loc_table_eq (const void *x, const void *y)
8397 {
8398   return (((const var_loc_list *) x)->decl_id == DECL_UID ((const_tree) y));
8399 }
8400
8401 /* Return the var_loc list associated with a given declaration.  */
8402
8403 static inline var_loc_list *
8404 lookup_decl_loc (const_tree decl)
8405 {
8406   if (!decl_loc_table)
8407     return NULL;
8408   return (var_loc_list *)
8409     htab_find_with_hash (decl_loc_table, decl, DECL_UID (decl));
8410 }
8411
8412 /* Returns a hash value for X (which really is a cached_dw_loc_list_list).  */
8413
8414 static hashval_t
8415 cached_dw_loc_list_table_hash (const void *x)
8416 {
8417   return (hashval_t) ((const cached_dw_loc_list *) x)->decl_id;
8418 }
8419
8420 /* Return nonzero if decl_id of cached_dw_loc_list X is the same as
8421    UID of decl *Y.  */
8422
8423 static int
8424 cached_dw_loc_list_table_eq (const void *x, const void *y)
8425 {
8426   return (((const cached_dw_loc_list *) x)->decl_id
8427           == DECL_UID ((const_tree) y));
8428 }
8429
8430 /* Equate a DIE to a particular declaration.  */
8431
8432 static void
8433 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
8434 {
8435   unsigned int decl_id = DECL_UID (decl);
8436   void **slot;
8437
8438   slot = htab_find_slot_with_hash (decl_die_table, decl, decl_id, INSERT);
8439   *slot = decl_die;
8440   decl_die->decl_id = decl_id;
8441 }
8442
8443 /* Return how many bits covers PIECE EXPR_LIST.  */
8444
8445 static int
8446 decl_piece_bitsize (rtx piece)
8447 {
8448   int ret = (int) GET_MODE (piece);
8449   if (ret)
8450     return ret;
8451   gcc_assert (GET_CODE (XEXP (piece, 0)) == CONCAT
8452               && CONST_INT_P (XEXP (XEXP (piece, 0), 0)));
8453   return INTVAL (XEXP (XEXP (piece, 0), 0));
8454 }
8455
8456 /* Return pointer to the location of location note in PIECE EXPR_LIST.  */
8457
8458 static rtx *
8459 decl_piece_varloc_ptr (rtx piece)
8460 {
8461   if ((int) GET_MODE (piece))
8462     return &XEXP (piece, 0);
8463   else
8464     return &XEXP (XEXP (piece, 0), 1);
8465 }
8466
8467 /* Create an EXPR_LIST for location note LOC_NOTE covering BITSIZE bits.
8468    Next is the chain of following piece nodes.  */
8469
8470 static rtx
8471 decl_piece_node (rtx loc_note, HOST_WIDE_INT bitsize, rtx next)
8472 {
8473   if (bitsize <= (int) MAX_MACHINE_MODE)
8474     return alloc_EXPR_LIST (bitsize, loc_note, next);
8475   else
8476     return alloc_EXPR_LIST (0, gen_rtx_CONCAT (VOIDmode,
8477                                                GEN_INT (bitsize),
8478                                                loc_note), next);
8479 }
8480
8481 /* Return rtx that should be stored into loc field for
8482    LOC_NOTE and BITPOS/BITSIZE.  */
8483
8484 static rtx
8485 construct_piece_list (rtx loc_note, HOST_WIDE_INT bitpos,
8486                       HOST_WIDE_INT bitsize)
8487 {
8488   if (bitsize != -1)
8489     {
8490       loc_note = decl_piece_node (loc_note, bitsize, NULL_RTX);
8491       if (bitpos != 0)
8492         loc_note = decl_piece_node (NULL_RTX, bitpos, loc_note);
8493     }
8494   return loc_note;
8495 }
8496
8497 /* This function either modifies location piece list *DEST in
8498    place (if SRC and INNER is NULL), or copies location piece list
8499    *SRC to *DEST while modifying it.  Location BITPOS is modified
8500    to contain LOC_NOTE, any pieces overlapping it are removed resp.
8501    not copied and if needed some padding around it is added.
8502    When modifying in place, DEST should point to EXPR_LIST where
8503    earlier pieces cover PIECE_BITPOS bits, when copying SRC points
8504    to the start of the whole list and INNER points to the EXPR_LIST
8505    where earlier pieces cover PIECE_BITPOS bits.  */
8506
8507 static void
8508 adjust_piece_list (rtx *dest, rtx *src, rtx *inner,
8509                    HOST_WIDE_INT bitpos, HOST_WIDE_INT piece_bitpos,
8510                    HOST_WIDE_INT bitsize, rtx loc_note)
8511 {
8512   int diff;
8513   bool copy = inner != NULL;
8514
8515   if (copy)
8516     {
8517       /* First copy all nodes preceeding the current bitpos.  */
8518       while (src != inner)
8519         {
8520           *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
8521                                    decl_piece_bitsize (*src), NULL_RTX);
8522           dest = &XEXP (*dest, 1);
8523           src = &XEXP (*src, 1);
8524         }
8525     }
8526   /* Add padding if needed.  */
8527   if (bitpos != piece_bitpos)
8528     {
8529       *dest = decl_piece_node (NULL_RTX, bitpos - piece_bitpos,
8530                                copy ? NULL_RTX : *dest);
8531       dest = &XEXP (*dest, 1);
8532     }
8533   else if (*dest && decl_piece_bitsize (*dest) == bitsize)
8534     {
8535       gcc_assert (!copy);
8536       /* A piece with correct bitpos and bitsize already exist,
8537          just update the location for it and return.  */
8538       *decl_piece_varloc_ptr (*dest) = loc_note;
8539       return;
8540     }
8541   /* Add the piece that changed.  */
8542   *dest = decl_piece_node (loc_note, bitsize, copy ? NULL_RTX : *dest);
8543   dest = &XEXP (*dest, 1);
8544   /* Skip over pieces that overlap it.  */
8545   diff = bitpos - piece_bitpos + bitsize;
8546   if (!copy)
8547     src = dest;
8548   while (diff > 0 && *src)
8549     {
8550       rtx piece = *src;
8551       diff -= decl_piece_bitsize (piece);
8552       if (copy)
8553         src = &XEXP (piece, 1);
8554       else
8555         {
8556           *src = XEXP (piece, 1);
8557           free_EXPR_LIST_node (piece);
8558         }
8559     }
8560   /* Add padding if needed.  */
8561   if (diff < 0 && *src)
8562     {
8563       if (!copy)
8564         dest = src;
8565       *dest = decl_piece_node (NULL_RTX, -diff, copy ? NULL_RTX : *dest);
8566       dest = &XEXP (*dest, 1);
8567     }
8568   if (!copy)
8569     return;
8570   /* Finally copy all nodes following it.  */
8571   while (*src)
8572     {
8573       *dest = decl_piece_node (*decl_piece_varloc_ptr (*src),
8574                                decl_piece_bitsize (*src), NULL_RTX);
8575       dest = &XEXP (*dest, 1);
8576       src = &XEXP (*src, 1);
8577     }
8578 }
8579
8580 /* Add a variable location node to the linked list for DECL.  */
8581
8582 static struct var_loc_node *
8583 add_var_loc_to_decl (tree decl, rtx loc_note, const char *label)
8584 {
8585   unsigned int decl_id;
8586   var_loc_list *temp;
8587   void **slot;
8588   struct var_loc_node *loc = NULL;
8589   HOST_WIDE_INT bitsize = -1, bitpos = -1;
8590
8591   if (DECL_DEBUG_EXPR_IS_FROM (decl))
8592     {
8593       tree realdecl = DECL_DEBUG_EXPR (decl);
8594       if (realdecl && handled_component_p (realdecl))
8595         {
8596           HOST_WIDE_INT maxsize;
8597           tree innerdecl;
8598           innerdecl
8599             = get_ref_base_and_extent (realdecl, &bitpos, &bitsize, &maxsize);
8600           if (!DECL_P (innerdecl)
8601               || DECL_IGNORED_P (innerdecl)
8602               || TREE_STATIC (innerdecl)
8603               || bitsize <= 0
8604               || bitpos + bitsize > 256
8605               || bitsize != maxsize)
8606             return NULL;
8607           decl = innerdecl;
8608         }
8609     }
8610
8611   decl_id = DECL_UID (decl);
8612   slot = htab_find_slot_with_hash (decl_loc_table, decl, decl_id, INSERT);
8613   if (*slot == NULL)
8614     {
8615       temp = ggc_alloc_cleared_var_loc_list ();
8616       temp->decl_id = decl_id;
8617       *slot = temp;
8618     }
8619   else
8620     temp = (var_loc_list *) *slot;
8621
8622   if (temp->last)
8623     {
8624       struct var_loc_node *last = temp->last, *unused = NULL;
8625       rtx *piece_loc = NULL, last_loc_note;
8626       int piece_bitpos = 0;
8627       if (last->next)
8628         {
8629           last = last->next;
8630           gcc_assert (last->next == NULL);
8631         }
8632       if (bitsize != -1 && GET_CODE (last->loc) == EXPR_LIST)
8633         {
8634           piece_loc = &last->loc;
8635           do
8636             {
8637               int cur_bitsize = decl_piece_bitsize (*piece_loc);
8638               if (piece_bitpos + cur_bitsize > bitpos)
8639                 break;
8640               piece_bitpos += cur_bitsize;
8641               piece_loc = &XEXP (*piece_loc, 1);
8642             }
8643           while (*piece_loc);
8644         }
8645       /* TEMP->LAST here is either pointer to the last but one or
8646          last element in the chained list, LAST is pointer to the
8647          last element.  */
8648       if (label && strcmp (last->label, label) == 0)
8649         {
8650           /* For SRA optimized variables if there weren't any real
8651              insns since last note, just modify the last node.  */
8652           if (piece_loc != NULL)
8653             {
8654               adjust_piece_list (piece_loc, NULL, NULL,
8655                                  bitpos, piece_bitpos, bitsize, loc_note);
8656               return NULL;
8657             }
8658           /* If the last note doesn't cover any instructions, remove it.  */
8659           if (temp->last != last)
8660             {
8661               temp->last->next = NULL;
8662               unused = last;
8663               last = temp->last;
8664               gcc_assert (strcmp (last->label, label) != 0);
8665             }
8666           else
8667             {
8668               gcc_assert (temp->first == temp->last);
8669               memset (temp->last, '\0', sizeof (*temp->last));
8670               temp->last->loc = construct_piece_list (loc_note, bitpos, bitsize);
8671               return temp->last;
8672             }
8673         }
8674       if (bitsize == -1 && NOTE_P (last->loc))
8675         last_loc_note = last->loc;
8676       else if (piece_loc != NULL
8677                && *piece_loc != NULL_RTX
8678                && piece_bitpos == bitpos
8679                && decl_piece_bitsize (*piece_loc) == bitsize)
8680         last_loc_note = *decl_piece_varloc_ptr (*piece_loc);
8681       else
8682         last_loc_note = NULL_RTX;
8683       /* If the current location is the same as the end of the list,
8684          and either both or neither of the locations is uninitialized,
8685          we have nothing to do.  */
8686       if (last_loc_note == NULL_RTX
8687           || (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (last_loc_note),
8688                             NOTE_VAR_LOCATION_LOC (loc_note)))
8689           || ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
8690                != NOTE_VAR_LOCATION_STATUS (loc_note))
8691               && ((NOTE_VAR_LOCATION_STATUS (last_loc_note)
8692                    == VAR_INIT_STATUS_UNINITIALIZED)
8693                   || (NOTE_VAR_LOCATION_STATUS (loc_note)
8694                       == VAR_INIT_STATUS_UNINITIALIZED))))
8695         {
8696           /* Add LOC to the end of list and update LAST.  If the last
8697              element of the list has been removed above, reuse its
8698              memory for the new node, otherwise allocate a new one.  */
8699           if (unused)
8700             {
8701               loc = unused;
8702               memset (loc, '\0', sizeof (*loc));
8703             }
8704           else
8705             loc = ggc_alloc_cleared_var_loc_node ();
8706           if (bitsize == -1 || piece_loc == NULL)
8707             loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
8708           else
8709             adjust_piece_list (&loc->loc, &last->loc, piece_loc,
8710                                bitpos, piece_bitpos, bitsize, loc_note);
8711           last->next = loc;
8712           /* Ensure TEMP->LAST will point either to the new last but one
8713              element of the chain, or to the last element in it.  */
8714           if (last != temp->last)
8715             temp->last = last;
8716         }
8717       else if (unused)
8718         ggc_free (unused);
8719     }
8720   else
8721     {
8722       loc = ggc_alloc_cleared_var_loc_node ();
8723       temp->first = loc;
8724       temp->last = loc;
8725       loc->loc = construct_piece_list (loc_note, bitpos, bitsize);
8726     }
8727   return loc;
8728 }
8729 \f
8730 /* Keep track of the number of spaces used to indent the
8731    output of the debugging routines that print the structure of
8732    the DIE internal representation.  */
8733 static int print_indent;
8734
8735 /* Indent the line the number of spaces given by print_indent.  */
8736
8737 static inline void
8738 print_spaces (FILE *outfile)
8739 {
8740   fprintf (outfile, "%*s", print_indent, "");
8741 }
8742
8743 /* Print a type signature in hex.  */
8744
8745 static inline void
8746 print_signature (FILE *outfile, char *sig)
8747 {
8748   int i;
8749
8750   for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
8751     fprintf (outfile, "%02x", sig[i] & 0xff);
8752 }
8753
8754 /* Print the information associated with a given DIE, and its children.
8755    This routine is a debugging aid only.  */
8756
8757 static void
8758 print_die (dw_die_ref die, FILE *outfile)
8759 {
8760   dw_attr_ref a;
8761   dw_die_ref c;
8762   unsigned ix;
8763
8764   print_spaces (outfile);
8765   fprintf (outfile, "DIE %4ld: %s (%p)\n",
8766            die->die_offset, dwarf_tag_name (die->die_tag),
8767            (void*) die);
8768   print_spaces (outfile);
8769   fprintf (outfile, "  abbrev id: %lu", die->die_abbrev);
8770   fprintf (outfile, " offset: %ld", die->die_offset);
8771   fprintf (outfile, " mark: %d\n", die->die_mark);
8772
8773   if (use_debug_types && die->die_id.die_type_node)
8774     {
8775       print_spaces (outfile);
8776       fprintf (outfile, "  signature: ");
8777       print_signature (outfile, die->die_id.die_type_node->signature);
8778       fprintf (outfile, "\n");
8779     }
8780
8781   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
8782     {
8783       print_spaces (outfile);
8784       fprintf (outfile, "  %s: ", dwarf_attr_name (a->dw_attr));
8785
8786       switch (AT_class (a))
8787         {
8788         case dw_val_class_addr:
8789           fprintf (outfile, "address");
8790           break;
8791         case dw_val_class_offset:
8792           fprintf (outfile, "offset");
8793           break;
8794         case dw_val_class_loc:
8795           fprintf (outfile, "location descriptor");
8796           break;
8797         case dw_val_class_loc_list:
8798           fprintf (outfile, "location list -> label:%s",
8799                    AT_loc_list (a)->ll_symbol);
8800           break;
8801         case dw_val_class_range_list:
8802           fprintf (outfile, "range list");
8803           break;
8804         case dw_val_class_const:
8805           fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, AT_int (a));
8806           break;
8807         case dw_val_class_unsigned_const:
8808           fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, AT_unsigned (a));
8809           break;
8810         case dw_val_class_const_double:
8811           fprintf (outfile, "constant ("HOST_WIDE_INT_PRINT_DEC","\
8812                             HOST_WIDE_INT_PRINT_UNSIGNED")",
8813                    a->dw_attr_val.v.val_double.high,
8814                    a->dw_attr_val.v.val_double.low);
8815           break;
8816         case dw_val_class_vec:
8817           fprintf (outfile, "floating-point or vector constant");
8818           break;
8819         case dw_val_class_flag:
8820           fprintf (outfile, "%u", AT_flag (a));
8821           break;
8822         case dw_val_class_die_ref:
8823           if (AT_ref (a) != NULL)
8824             {
8825               if (use_debug_types && AT_ref (a)->die_id.die_type_node)
8826                 {
8827                   fprintf (outfile, "die -> signature: ");
8828                   print_signature (outfile,
8829                                    AT_ref (a)->die_id.die_type_node->signature);
8830                 }
8831               else if (! use_debug_types && AT_ref (a)->die_id.die_symbol)
8832                 fprintf (outfile, "die -> label: %s",
8833                          AT_ref (a)->die_id.die_symbol);
8834               else
8835                 fprintf (outfile, "die -> %ld", AT_ref (a)->die_offset);
8836               fprintf (outfile, " (%p)", (void *) AT_ref (a));
8837             }
8838           else
8839             fprintf (outfile, "die -> <null>");
8840           break;
8841         case dw_val_class_vms_delta:
8842           fprintf (outfile, "delta: @slotcount(%s-%s)",
8843                    AT_vms_delta2 (a), AT_vms_delta1 (a));
8844           break;
8845         case dw_val_class_lbl_id:
8846         case dw_val_class_lineptr:
8847         case dw_val_class_macptr:
8848           fprintf (outfile, "label: %s", AT_lbl (a));
8849           break;
8850         case dw_val_class_str:
8851           if (AT_string (a) != NULL)
8852             fprintf (outfile, "\"%s\"", AT_string (a));
8853           else
8854             fprintf (outfile, "<null>");
8855           break;
8856         case dw_val_class_file:
8857           fprintf (outfile, "\"%s\" (%d)", AT_file (a)->filename,
8858                    AT_file (a)->emitted_number);
8859           break;
8860         case dw_val_class_data8:
8861           {
8862             int i;
8863
8864             for (i = 0; i < 8; i++)
8865               fprintf (outfile, "%02x", a->dw_attr_val.v.val_data8[i]);
8866             break;
8867           }
8868         default:
8869           break;
8870         }
8871
8872       fprintf (outfile, "\n");
8873     }
8874
8875   if (die->die_child != NULL)
8876     {
8877       print_indent += 4;
8878       FOR_EACH_CHILD (die, c, print_die (c, outfile));
8879       print_indent -= 4;
8880     }
8881   if (print_indent == 0)
8882     fprintf (outfile, "\n");
8883 }
8884
8885 /* Print the information collected for a given DIE.  */
8886
8887 DEBUG_FUNCTION void
8888 debug_dwarf_die (dw_die_ref die)
8889 {
8890   print_die (die, stderr);
8891 }
8892
8893 /* Print all DWARF information collected for the compilation unit.
8894    This routine is a debugging aid only.  */
8895
8896 DEBUG_FUNCTION void
8897 debug_dwarf (void)
8898 {
8899   print_indent = 0;
8900   print_die (comp_unit_die (), stderr);
8901 }
8902 \f
8903 /* Start a new compilation unit DIE for an include file.  OLD_UNIT is the CU
8904    for the enclosing include file, if any.  BINCL_DIE is the DW_TAG_GNU_BINCL
8905    DIE that marks the start of the DIEs for this include file.  */
8906
8907 static dw_die_ref
8908 push_new_compile_unit (dw_die_ref old_unit, dw_die_ref bincl_die)
8909 {
8910   const char *filename = get_AT_string (bincl_die, DW_AT_name);
8911   dw_die_ref new_unit = gen_compile_unit_die (filename);
8912
8913   new_unit->die_sib = old_unit;
8914   return new_unit;
8915 }
8916
8917 /* Close an include-file CU and reopen the enclosing one.  */
8918
8919 static dw_die_ref
8920 pop_compile_unit (dw_die_ref old_unit)
8921 {
8922   dw_die_ref new_unit = old_unit->die_sib;
8923
8924   old_unit->die_sib = NULL;
8925   return new_unit;
8926 }
8927
8928 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
8929 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
8930
8931 /* Calculate the checksum of a location expression.  */
8932
8933 static inline void
8934 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
8935 {
8936   int tem;
8937
8938   tem = (loc->dtprel << 8) | ((unsigned int) loc->dw_loc_opc);
8939   CHECKSUM (tem);
8940   CHECKSUM (loc->dw_loc_oprnd1);
8941   CHECKSUM (loc->dw_loc_oprnd2);
8942 }
8943
8944 /* Calculate the checksum of an attribute.  */
8945
8946 static void
8947 attr_checksum (dw_attr_ref at, struct md5_ctx *ctx, int *mark)
8948 {
8949   dw_loc_descr_ref loc;
8950   rtx r;
8951
8952   CHECKSUM (at->dw_attr);
8953
8954   /* We don't care that this was compiled with a different compiler
8955      snapshot; if the output is the same, that's what matters.  */
8956   if (at->dw_attr == DW_AT_producer)
8957     return;
8958
8959   switch (AT_class (at))
8960     {
8961     case dw_val_class_const:
8962       CHECKSUM (at->dw_attr_val.v.val_int);
8963       break;
8964     case dw_val_class_unsigned_const:
8965       CHECKSUM (at->dw_attr_val.v.val_unsigned);
8966       break;
8967     case dw_val_class_const_double:
8968       CHECKSUM (at->dw_attr_val.v.val_double);
8969       break;
8970     case dw_val_class_vec:
8971       CHECKSUM (at->dw_attr_val.v.val_vec);
8972       break;
8973     case dw_val_class_flag:
8974       CHECKSUM (at->dw_attr_val.v.val_flag);
8975       break;
8976     case dw_val_class_str:
8977       CHECKSUM_STRING (AT_string (at));
8978       break;
8979
8980     case dw_val_class_addr:
8981       r = AT_addr (at);
8982       gcc_assert (GET_CODE (r) == SYMBOL_REF);
8983       CHECKSUM_STRING (XSTR (r, 0));
8984       break;
8985
8986     case dw_val_class_offset:
8987       CHECKSUM (at->dw_attr_val.v.val_offset);
8988       break;
8989
8990     case dw_val_class_loc:
8991       for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
8992         loc_checksum (loc, ctx);
8993       break;
8994
8995     case dw_val_class_die_ref:
8996       die_checksum (AT_ref (at), ctx, mark);
8997       break;
8998
8999     case dw_val_class_fde_ref:
9000     case dw_val_class_vms_delta:
9001     case dw_val_class_lbl_id:
9002     case dw_val_class_lineptr:
9003     case dw_val_class_macptr:
9004       break;
9005
9006     case dw_val_class_file:
9007       CHECKSUM_STRING (AT_file (at)->filename);
9008       break;
9009
9010     case dw_val_class_data8:
9011       CHECKSUM (at->dw_attr_val.v.val_data8);
9012       break;
9013
9014     default:
9015       break;
9016     }
9017 }
9018
9019 /* Calculate the checksum of a DIE.  */
9020
9021 static void
9022 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
9023 {
9024   dw_die_ref c;
9025   dw_attr_ref a;
9026   unsigned ix;
9027
9028   /* To avoid infinite recursion.  */
9029   if (die->die_mark)
9030     {
9031       CHECKSUM (die->die_mark);
9032       return;
9033     }
9034   die->die_mark = ++(*mark);
9035
9036   CHECKSUM (die->die_tag);
9037
9038   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
9039     attr_checksum (a, ctx, mark);
9040
9041   FOR_EACH_CHILD (die, c, die_checksum (c, ctx, mark));
9042 }
9043
9044 #undef CHECKSUM
9045 #undef CHECKSUM_STRING
9046
9047 /* For DWARF-4 types, include the trailing NULL when checksumming strings.  */
9048 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
9049 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO) + 1, ctx)
9050 #define CHECKSUM_SLEB128(FOO) checksum_sleb128 ((FOO), ctx)
9051 #define CHECKSUM_ULEB128(FOO) checksum_uleb128 ((FOO), ctx)
9052 #define CHECKSUM_ATTR(FOO) \
9053   if (FOO) attr_checksum_ordered (die->die_tag, (FOO), ctx, mark)
9054
9055 /* Calculate the checksum of a number in signed LEB128 format.  */
9056
9057 static void
9058 checksum_sleb128 (HOST_WIDE_INT value, struct md5_ctx *ctx)
9059 {
9060   unsigned char byte;
9061   bool more;
9062
9063   while (1)
9064     {
9065       byte = (value & 0x7f);
9066       value >>= 7;
9067       more = !((value == 0 && (byte & 0x40) == 0)
9068                 || (value == -1 && (byte & 0x40) != 0));
9069       if (more)
9070         byte |= 0x80;
9071       CHECKSUM (byte);
9072       if (!more)
9073         break;
9074     }
9075 }
9076
9077 /* Calculate the checksum of a number in unsigned LEB128 format.  */
9078
9079 static void
9080 checksum_uleb128 (unsigned HOST_WIDE_INT value, struct md5_ctx *ctx)
9081 {
9082   while (1)
9083     {
9084       unsigned char byte = (value & 0x7f);
9085       value >>= 7;
9086       if (value != 0)
9087         /* More bytes to follow.  */
9088         byte |= 0x80;
9089       CHECKSUM (byte);
9090       if (value == 0)
9091         break;
9092     }
9093 }
9094
9095 /* Checksum the context of the DIE.  This adds the names of any
9096    surrounding namespaces or structures to the checksum.  */
9097
9098 static void
9099 checksum_die_context (dw_die_ref die, struct md5_ctx *ctx)
9100 {
9101   const char *name;
9102   dw_die_ref spec;
9103   int tag = die->die_tag;
9104
9105   if (tag != DW_TAG_namespace
9106       && tag != DW_TAG_structure_type
9107       && tag != DW_TAG_class_type)
9108     return;
9109
9110   name = get_AT_string (die, DW_AT_name);
9111
9112   spec = get_AT_ref (die, DW_AT_specification);
9113   if (spec != NULL)
9114     die = spec;
9115
9116   if (die->die_parent != NULL)
9117     checksum_die_context (die->die_parent, ctx);
9118
9119   CHECKSUM_ULEB128 ('C');
9120   CHECKSUM_ULEB128 (tag);
9121   if (name != NULL)
9122     CHECKSUM_STRING (name);
9123 }
9124
9125 /* Calculate the checksum of a location expression.  */
9126
9127 static inline void
9128 loc_checksum_ordered (dw_loc_descr_ref loc, struct md5_ctx *ctx)
9129 {
9130   /* Special case for lone DW_OP_plus_uconst: checksum as if the location
9131      were emitted as a DW_FORM_sdata instead of a location expression.  */
9132   if (loc->dw_loc_opc == DW_OP_plus_uconst && loc->dw_loc_next == NULL)
9133     {
9134       CHECKSUM_ULEB128 (DW_FORM_sdata);
9135       CHECKSUM_SLEB128 ((HOST_WIDE_INT) loc->dw_loc_oprnd1.v.val_unsigned);
9136       return;
9137     }
9138
9139   /* Otherwise, just checksum the raw location expression.  */
9140   while (loc != NULL)
9141     {
9142       CHECKSUM_ULEB128 (loc->dw_loc_opc);
9143       CHECKSUM (loc->dw_loc_oprnd1);
9144       CHECKSUM (loc->dw_loc_oprnd2);
9145       loc = loc->dw_loc_next;
9146     }
9147 }
9148
9149 /* Calculate the checksum of an attribute.  */
9150
9151 static void
9152 attr_checksum_ordered (enum dwarf_tag tag, dw_attr_ref at,
9153                        struct md5_ctx *ctx, int *mark)
9154 {
9155   dw_loc_descr_ref loc;
9156   rtx r;
9157
9158   if (AT_class (at) == dw_val_class_die_ref)
9159     {
9160       dw_die_ref target_die = AT_ref (at);
9161
9162       /* For pointer and reference types, we checksum only the (qualified)
9163          name of the target type (if there is a name).  For friend entries,
9164          we checksum only the (qualified) name of the target type or function.
9165          This allows the checksum to remain the same whether the target type
9166          is complete or not.  */
9167       if ((at->dw_attr == DW_AT_type
9168            && (tag == DW_TAG_pointer_type
9169                || tag == DW_TAG_reference_type
9170                || tag == DW_TAG_rvalue_reference_type
9171                || tag == DW_TAG_ptr_to_member_type))
9172           || (at->dw_attr == DW_AT_friend
9173               && tag == DW_TAG_friend))
9174         {
9175           dw_attr_ref name_attr = get_AT (target_die, DW_AT_name);
9176
9177           if (name_attr != NULL)
9178             {
9179               dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
9180
9181               if (decl == NULL)
9182                 decl = target_die;
9183               CHECKSUM_ULEB128 ('N');
9184               CHECKSUM_ULEB128 (at->dw_attr);
9185               if (decl->die_parent != NULL)
9186                 checksum_die_context (decl->die_parent, ctx);
9187               CHECKSUM_ULEB128 ('E');
9188               CHECKSUM_STRING (AT_string (name_attr));
9189               return;
9190             }
9191         }
9192
9193       /* For all other references to another DIE, we check to see if the
9194          target DIE has already been visited.  If it has, we emit a
9195          backward reference; if not, we descend recursively.  */
9196       if (target_die->die_mark > 0)
9197         {
9198           CHECKSUM_ULEB128 ('R');
9199           CHECKSUM_ULEB128 (at->dw_attr);
9200           CHECKSUM_ULEB128 (target_die->die_mark);
9201         }
9202       else
9203         {
9204           dw_die_ref decl = get_AT_ref (target_die, DW_AT_specification);
9205
9206           if (decl == NULL)
9207             decl = target_die;
9208           target_die->die_mark = ++(*mark);
9209           CHECKSUM_ULEB128 ('T');
9210           CHECKSUM_ULEB128 (at->dw_attr);
9211           if (decl->die_parent != NULL)
9212             checksum_die_context (decl->die_parent, ctx);
9213           die_checksum_ordered (target_die, ctx, mark);
9214         }
9215       return;
9216     }
9217
9218   CHECKSUM_ULEB128 ('A');
9219   CHECKSUM_ULEB128 (at->dw_attr);
9220
9221   switch (AT_class (at))
9222     {
9223     case dw_val_class_const:
9224       CHECKSUM_ULEB128 (DW_FORM_sdata);
9225       CHECKSUM_SLEB128 (at->dw_attr_val.v.val_int);
9226       break;
9227
9228     case dw_val_class_unsigned_const:
9229       CHECKSUM_ULEB128 (DW_FORM_sdata);
9230       CHECKSUM_SLEB128 ((int) at->dw_attr_val.v.val_unsigned);
9231       break;
9232
9233     case dw_val_class_const_double:
9234       CHECKSUM_ULEB128 (DW_FORM_block);
9235       CHECKSUM_ULEB128 (sizeof (at->dw_attr_val.v.val_double));
9236       CHECKSUM (at->dw_attr_val.v.val_double);
9237       break;
9238
9239     case dw_val_class_vec:
9240       CHECKSUM_ULEB128 (DW_FORM_block);
9241       CHECKSUM_ULEB128 (sizeof (at->dw_attr_val.v.val_vec));
9242       CHECKSUM (at->dw_attr_val.v.val_vec);
9243       break;
9244
9245     case dw_val_class_flag:
9246       CHECKSUM_ULEB128 (DW_FORM_flag);
9247       CHECKSUM_ULEB128 (at->dw_attr_val.v.val_flag ? 1 : 0);
9248       break;
9249
9250     case dw_val_class_str:
9251       CHECKSUM_ULEB128 (DW_FORM_string);
9252       CHECKSUM_STRING (AT_string (at));
9253       break;
9254
9255     case dw_val_class_addr:
9256       r = AT_addr (at);
9257       gcc_assert (GET_CODE (r) == SYMBOL_REF);
9258       CHECKSUM_ULEB128 (DW_FORM_string);
9259       CHECKSUM_STRING (XSTR (r, 0));
9260       break;
9261
9262     case dw_val_class_offset:
9263       CHECKSUM_ULEB128 (DW_FORM_sdata);
9264       CHECKSUM_ULEB128 (at->dw_attr_val.v.val_offset);
9265       break;
9266
9267     case dw_val_class_loc:
9268       for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
9269         loc_checksum_ordered (loc, ctx);
9270       break;
9271
9272     case dw_val_class_fde_ref:
9273     case dw_val_class_lbl_id:
9274     case dw_val_class_lineptr:
9275     case dw_val_class_macptr:
9276       break;
9277
9278     case dw_val_class_file:
9279       CHECKSUM_ULEB128 (DW_FORM_string);
9280       CHECKSUM_STRING (AT_file (at)->filename);
9281       break;
9282
9283     case dw_val_class_data8:
9284       CHECKSUM (at->dw_attr_val.v.val_data8);
9285       break;
9286
9287     default:
9288       break;
9289     }
9290 }
9291
9292 struct checksum_attributes
9293 {
9294   dw_attr_ref at_name;
9295   dw_attr_ref at_type;
9296   dw_attr_ref at_friend;
9297   dw_attr_ref at_accessibility;
9298   dw_attr_ref at_address_class;
9299   dw_attr_ref at_allocated;
9300   dw_attr_ref at_artificial;
9301   dw_attr_ref at_associated;
9302   dw_attr_ref at_binary_scale;
9303   dw_attr_ref at_bit_offset;
9304   dw_attr_ref at_bit_size;
9305   dw_attr_ref at_bit_stride;
9306   dw_attr_ref at_byte_size;
9307   dw_attr_ref at_byte_stride;
9308   dw_attr_ref at_const_value;
9309   dw_attr_ref at_containing_type;
9310   dw_attr_ref at_count;
9311   dw_attr_ref at_data_location;
9312   dw_attr_ref at_data_member_location;
9313   dw_attr_ref at_decimal_scale;
9314   dw_attr_ref at_decimal_sign;
9315   dw_attr_ref at_default_value;
9316   dw_attr_ref at_digit_count;
9317   dw_attr_ref at_discr;
9318   dw_attr_ref at_discr_list;
9319   dw_attr_ref at_discr_value;
9320   dw_attr_ref at_encoding;
9321   dw_attr_ref at_endianity;
9322   dw_attr_ref at_explicit;
9323   dw_attr_ref at_is_optional;
9324   dw_attr_ref at_location;
9325   dw_attr_ref at_lower_bound;
9326   dw_attr_ref at_mutable;
9327   dw_attr_ref at_ordering;
9328   dw_attr_ref at_picture_string;
9329   dw_attr_ref at_prototyped;
9330   dw_attr_ref at_small;
9331   dw_attr_ref at_segment;
9332   dw_attr_ref at_string_length;
9333   dw_attr_ref at_threads_scaled;
9334   dw_attr_ref at_upper_bound;
9335   dw_attr_ref at_use_location;
9336   dw_attr_ref at_use_UTF8;
9337   dw_attr_ref at_variable_parameter;
9338   dw_attr_ref at_virtuality;
9339   dw_attr_ref at_visibility;
9340   dw_attr_ref at_vtable_elem_location;
9341 };
9342
9343 /* Collect the attributes that we will want to use for the checksum.  */
9344
9345 static void
9346 collect_checksum_attributes (struct checksum_attributes *attrs, dw_die_ref die)
9347 {
9348   dw_attr_ref a;
9349   unsigned ix;
9350
9351   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
9352     {
9353       switch (a->dw_attr)
9354         {
9355         case DW_AT_name:
9356           attrs->at_name = a;
9357           break;
9358         case DW_AT_type:
9359           attrs->at_type = a;
9360           break;
9361         case DW_AT_friend:
9362           attrs->at_friend = a;
9363           break;
9364         case DW_AT_accessibility:
9365           attrs->at_accessibility = a;
9366           break;
9367         case DW_AT_address_class:
9368           attrs->at_address_class = a;
9369           break;
9370         case DW_AT_allocated:
9371           attrs->at_allocated = a;
9372           break;
9373         case DW_AT_artificial:
9374           attrs->at_artificial = a;
9375           break;
9376         case DW_AT_associated:
9377           attrs->at_associated = a;
9378           break;
9379         case DW_AT_binary_scale:
9380           attrs->at_binary_scale = a;
9381           break;
9382         case DW_AT_bit_offset:
9383           attrs->at_bit_offset = a;
9384           break;
9385         case DW_AT_bit_size:
9386           attrs->at_bit_size = a;
9387           break;
9388         case DW_AT_bit_stride:
9389           attrs->at_bit_stride = a;
9390           break;
9391         case DW_AT_byte_size:
9392           attrs->at_byte_size = a;
9393           break;
9394         case DW_AT_byte_stride:
9395           attrs->at_byte_stride = a;
9396           break;
9397         case DW_AT_const_value:
9398           attrs->at_const_value = a;
9399           break;
9400         case DW_AT_containing_type:
9401           attrs->at_containing_type = a;
9402           break;
9403         case DW_AT_count:
9404           attrs->at_count = a;
9405           break;
9406         case DW_AT_data_location:
9407           attrs->at_data_location = a;
9408           break;
9409         case DW_AT_data_member_location:
9410           attrs->at_data_member_location = a;
9411           break;
9412         case DW_AT_decimal_scale:
9413           attrs->at_decimal_scale = a;
9414           break;
9415         case DW_AT_decimal_sign:
9416           attrs->at_decimal_sign = a;
9417           break;
9418         case DW_AT_default_value:
9419           attrs->at_default_value = a;
9420           break;
9421         case DW_AT_digit_count:
9422           attrs->at_digit_count = a;
9423           break;
9424         case DW_AT_discr:
9425           attrs->at_discr = a;
9426           break;
9427         case DW_AT_discr_list:
9428           attrs->at_discr_list = a;
9429           break;
9430         case DW_AT_discr_value:
9431           attrs->at_discr_value = a;
9432           break;
9433         case DW_AT_encoding:
9434           attrs->at_encoding = a;
9435           break;
9436         case DW_AT_endianity:
9437           attrs->at_endianity = a;
9438           break;
9439         case DW_AT_explicit:
9440           attrs->at_explicit = a;
9441           break;
9442         case DW_AT_is_optional:
9443           attrs->at_is_optional = a;
9444           break;
9445         case DW_AT_location:
9446           attrs->at_location = a;
9447           break;
9448         case DW_AT_lower_bound:
9449           attrs->at_lower_bound = a;
9450           break;
9451         case DW_AT_mutable:
9452           attrs->at_mutable = a;
9453           break;
9454         case DW_AT_ordering:
9455           attrs->at_ordering = a;
9456           break;
9457         case DW_AT_picture_string:
9458           attrs->at_picture_string = a;
9459           break;
9460         case DW_AT_prototyped:
9461           attrs->at_prototyped = a;
9462           break;
9463         case DW_AT_small:
9464           attrs->at_small = a;
9465           break;
9466         case DW_AT_segment:
9467           attrs->at_segment = a;
9468           break;
9469         case DW_AT_string_length:
9470           attrs->at_string_length = a;
9471           break;
9472         case DW_AT_threads_scaled:
9473           attrs->at_threads_scaled = a;
9474           break;
9475         case DW_AT_upper_bound:
9476           attrs->at_upper_bound = a;
9477           break;
9478         case DW_AT_use_location:
9479           attrs->at_use_location = a;
9480           break;
9481         case DW_AT_use_UTF8:
9482           attrs->at_use_UTF8 = a;
9483           break;
9484         case DW_AT_variable_parameter:
9485           attrs->at_variable_parameter = a;
9486           break;
9487         case DW_AT_virtuality:
9488           attrs->at_virtuality = a;
9489           break;
9490         case DW_AT_visibility:
9491           attrs->at_visibility = a;
9492           break;
9493         case DW_AT_vtable_elem_location:
9494           attrs->at_vtable_elem_location = a;
9495           break;
9496         default:
9497           break;
9498         }
9499     }
9500 }
9501
9502 /* Calculate the checksum of a DIE, using an ordered subset of attributes.  */
9503
9504 static void
9505 die_checksum_ordered (dw_die_ref die, struct md5_ctx *ctx, int *mark)
9506 {
9507   dw_die_ref c;
9508   dw_die_ref decl;
9509   struct checksum_attributes attrs;
9510
9511   CHECKSUM_ULEB128 ('D');
9512   CHECKSUM_ULEB128 (die->die_tag);
9513
9514   memset (&attrs, 0, sizeof (attrs));
9515
9516   decl = get_AT_ref (die, DW_AT_specification);
9517   if (decl != NULL)
9518     collect_checksum_attributes (&attrs, decl);
9519   collect_checksum_attributes (&attrs, die);
9520
9521   CHECKSUM_ATTR (attrs.at_name);
9522   CHECKSUM_ATTR (attrs.at_accessibility);
9523   CHECKSUM_ATTR (attrs.at_address_class);
9524   CHECKSUM_ATTR (attrs.at_allocated);
9525   CHECKSUM_ATTR (attrs.at_artificial);
9526   CHECKSUM_ATTR (attrs.at_associated);
9527   CHECKSUM_ATTR (attrs.at_binary_scale);
9528   CHECKSUM_ATTR (attrs.at_bit_offset);
9529   CHECKSUM_ATTR (attrs.at_bit_size);
9530   CHECKSUM_ATTR (attrs.at_bit_stride);
9531   CHECKSUM_ATTR (attrs.at_byte_size);
9532   CHECKSUM_ATTR (attrs.at_byte_stride);
9533   CHECKSUM_ATTR (attrs.at_const_value);
9534   CHECKSUM_ATTR (attrs.at_containing_type);
9535   CHECKSUM_ATTR (attrs.at_count);
9536   CHECKSUM_ATTR (attrs.at_data_location);
9537   CHECKSUM_ATTR (attrs.at_data_member_location);
9538   CHECKSUM_ATTR (attrs.at_decimal_scale);
9539   CHECKSUM_ATTR (attrs.at_decimal_sign);
9540   CHECKSUM_ATTR (attrs.at_default_value);
9541   CHECKSUM_ATTR (attrs.at_digit_count);
9542   CHECKSUM_ATTR (attrs.at_discr);
9543   CHECKSUM_ATTR (attrs.at_discr_list);
9544   CHECKSUM_ATTR (attrs.at_discr_value);
9545   CHECKSUM_ATTR (attrs.at_encoding);
9546   CHECKSUM_ATTR (attrs.at_endianity);
9547   CHECKSUM_ATTR (attrs.at_explicit);
9548   CHECKSUM_ATTR (attrs.at_is_optional);
9549   CHECKSUM_ATTR (attrs.at_location);
9550   CHECKSUM_ATTR (attrs.at_lower_bound);
9551   CHECKSUM_ATTR (attrs.at_mutable);
9552   CHECKSUM_ATTR (attrs.at_ordering);
9553   CHECKSUM_ATTR (attrs.at_picture_string);
9554   CHECKSUM_ATTR (attrs.at_prototyped);
9555   CHECKSUM_ATTR (attrs.at_small);
9556   CHECKSUM_ATTR (attrs.at_segment);
9557   CHECKSUM_ATTR (attrs.at_string_length);
9558   CHECKSUM_ATTR (attrs.at_threads_scaled);
9559   CHECKSUM_ATTR (attrs.at_upper_bound);
9560   CHECKSUM_ATTR (attrs.at_use_location);
9561   CHECKSUM_ATTR (attrs.at_use_UTF8);
9562   CHECKSUM_ATTR (attrs.at_variable_parameter);
9563   CHECKSUM_ATTR (attrs.at_virtuality);
9564   CHECKSUM_ATTR (attrs.at_visibility);
9565   CHECKSUM_ATTR (attrs.at_vtable_elem_location);
9566   CHECKSUM_ATTR (attrs.at_type);
9567   CHECKSUM_ATTR (attrs.at_friend);
9568
9569   /* Checksum the child DIEs, except for nested types and member functions.  */
9570   c = die->die_child;
9571   if (c) do {
9572     dw_attr_ref name_attr;
9573
9574     c = c->die_sib;
9575     name_attr = get_AT (c, DW_AT_name);
9576     if ((is_type_die (c) || c->die_tag == DW_TAG_subprogram)
9577         && name_attr != NULL)
9578       {
9579         CHECKSUM_ULEB128 ('S');
9580         CHECKSUM_ULEB128 (c->die_tag);
9581         CHECKSUM_STRING (AT_string (name_attr));
9582       }
9583     else
9584       {
9585         /* Mark this DIE so it gets processed when unmarking.  */
9586         if (c->die_mark == 0)
9587           c->die_mark = -1;
9588         die_checksum_ordered (c, ctx, mark);
9589       }
9590   } while (c != die->die_child);
9591
9592   CHECKSUM_ULEB128 (0);
9593 }
9594
9595 #undef CHECKSUM
9596 #undef CHECKSUM_STRING
9597 #undef CHECKSUM_ATTR
9598 #undef CHECKSUM_LEB128
9599 #undef CHECKSUM_ULEB128
9600
9601 /* Generate the type signature for DIE.  This is computed by generating an
9602    MD5 checksum over the DIE's tag, its relevant attributes, and its
9603    children.  Attributes that are references to other DIEs are processed
9604    by recursion, using the MARK field to prevent infinite recursion.
9605    If the DIE is nested inside a namespace or another type, we also
9606    need to include that context in the signature.  The lower 64 bits
9607    of the resulting MD5 checksum comprise the signature.  */
9608
9609 static void
9610 generate_type_signature (dw_die_ref die, comdat_type_node *type_node)
9611 {
9612   int mark;
9613   const char *name;
9614   unsigned char checksum[16];
9615   struct md5_ctx ctx;
9616   dw_die_ref decl;
9617
9618   name = get_AT_string (die, DW_AT_name);
9619   decl = get_AT_ref (die, DW_AT_specification);
9620
9621   /* First, compute a signature for just the type name (and its surrounding
9622      context, if any.  This is stored in the type unit DIE for link-time
9623      ODR (one-definition rule) checking.  */
9624
9625   if (is_cxx() && name != NULL)
9626     {
9627       md5_init_ctx (&ctx);
9628
9629       /* Checksum the names of surrounding namespaces and structures.  */
9630       if (decl != NULL && decl->die_parent != NULL)
9631         checksum_die_context (decl->die_parent, &ctx);
9632
9633       md5_process_bytes (&die->die_tag, sizeof (die->die_tag), &ctx);
9634       md5_process_bytes (name, strlen (name) + 1, &ctx);
9635       md5_finish_ctx (&ctx, checksum);
9636
9637       add_AT_data8 (type_node->root_die, DW_AT_GNU_odr_signature, &checksum[8]);
9638     }
9639
9640   /* Next, compute the complete type signature.  */
9641
9642   md5_init_ctx (&ctx);
9643   mark = 1;
9644   die->die_mark = mark;
9645
9646   /* Checksum the names of surrounding namespaces and structures.  */
9647   if (decl != NULL && decl->die_parent != NULL)
9648     checksum_die_context (decl->die_parent, &ctx);
9649
9650   /* Checksum the DIE and its children.  */
9651   die_checksum_ordered (die, &ctx, &mark);
9652   unmark_all_dies (die);
9653   md5_finish_ctx (&ctx, checksum);
9654
9655   /* Store the signature in the type node and link the type DIE and the
9656      type node together.  */
9657   memcpy (type_node->signature, &checksum[16 - DWARF_TYPE_SIGNATURE_SIZE],
9658           DWARF_TYPE_SIGNATURE_SIZE);
9659   die->die_id.die_type_node = type_node;
9660   type_node->type_die = die;
9661
9662   /* If the DIE is a specification, link its declaration to the type node
9663      as well.  */
9664   if (decl != NULL)
9665     decl->die_id.die_type_node = type_node;
9666 }
9667
9668 /* Do the location expressions look same?  */
9669 static inline int
9670 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
9671 {
9672   return loc1->dw_loc_opc == loc2->dw_loc_opc
9673          && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
9674          && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
9675 }
9676
9677 /* Do the values look the same?  */
9678 static int
9679 same_dw_val_p (const dw_val_node *v1, const dw_val_node *v2, int *mark)
9680 {
9681   dw_loc_descr_ref loc1, loc2;
9682   rtx r1, r2;
9683
9684   if (v1->val_class != v2->val_class)
9685     return 0;
9686
9687   switch (v1->val_class)
9688     {
9689     case dw_val_class_const:
9690       return v1->v.val_int == v2->v.val_int;
9691     case dw_val_class_unsigned_const:
9692       return v1->v.val_unsigned == v2->v.val_unsigned;
9693     case dw_val_class_const_double:
9694       return v1->v.val_double.high == v2->v.val_double.high
9695              && v1->v.val_double.low == v2->v.val_double.low;
9696     case dw_val_class_vec:
9697       if (v1->v.val_vec.length != v2->v.val_vec.length
9698           || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
9699         return 0;
9700       if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
9701                   v1->v.val_vec.length * v1->v.val_vec.elt_size))
9702         return 0;
9703       return 1;
9704     case dw_val_class_flag:
9705       return v1->v.val_flag == v2->v.val_flag;
9706     case dw_val_class_str:
9707       return !strcmp(v1->v.val_str->str, v2->v.val_str->str);
9708
9709     case dw_val_class_addr:
9710       r1 = v1->v.val_addr;
9711       r2 = v2->v.val_addr;
9712       if (GET_CODE (r1) != GET_CODE (r2))
9713         return 0;
9714       return !rtx_equal_p (r1, r2);
9715
9716     case dw_val_class_offset:
9717       return v1->v.val_offset == v2->v.val_offset;
9718
9719     case dw_val_class_loc:
9720       for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
9721            loc1 && loc2;
9722            loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
9723         if (!same_loc_p (loc1, loc2, mark))
9724           return 0;
9725       return !loc1 && !loc2;
9726
9727     case dw_val_class_die_ref:
9728       return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
9729
9730     case dw_val_class_fde_ref:
9731     case dw_val_class_vms_delta:
9732     case dw_val_class_lbl_id:
9733     case dw_val_class_lineptr:
9734     case dw_val_class_macptr:
9735       return 1;
9736
9737     case dw_val_class_file:
9738       return v1->v.val_file == v2->v.val_file;
9739
9740     case dw_val_class_data8:
9741       return !memcmp (v1->v.val_data8, v2->v.val_data8, 8);
9742
9743     default:
9744       return 1;
9745     }
9746 }
9747
9748 /* Do the attributes look the same?  */
9749
9750 static int
9751 same_attr_p (dw_attr_ref at1, dw_attr_ref at2, int *mark)
9752 {
9753   if (at1->dw_attr != at2->dw_attr)
9754     return 0;
9755
9756   /* We don't care that this was compiled with a different compiler
9757      snapshot; if the output is the same, that's what matters. */
9758   if (at1->dw_attr == DW_AT_producer)
9759     return 1;
9760
9761   return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
9762 }
9763
9764 /* Do the dies look the same?  */
9765
9766 static int
9767 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
9768 {
9769   dw_die_ref c1, c2;
9770   dw_attr_ref a1;
9771   unsigned ix;
9772
9773   /* To avoid infinite recursion.  */
9774   if (die1->die_mark)
9775     return die1->die_mark == die2->die_mark;
9776   die1->die_mark = die2->die_mark = ++(*mark);
9777
9778   if (die1->die_tag != die2->die_tag)
9779     return 0;
9780
9781   if (VEC_length (dw_attr_node, die1->die_attr)
9782       != VEC_length (dw_attr_node, die2->die_attr))
9783     return 0;
9784
9785   FOR_EACH_VEC_ELT (dw_attr_node, die1->die_attr, ix, a1)
9786     if (!same_attr_p (a1, VEC_index (dw_attr_node, die2->die_attr, ix), mark))
9787       return 0;
9788
9789   c1 = die1->die_child;
9790   c2 = die2->die_child;
9791   if (! c1)
9792     {
9793       if (c2)
9794         return 0;
9795     }
9796   else
9797     for (;;)
9798       {
9799         if (!same_die_p (c1, c2, mark))
9800           return 0;
9801         c1 = c1->die_sib;
9802         c2 = c2->die_sib;
9803         if (c1 == die1->die_child)
9804           {
9805             if (c2 == die2->die_child)
9806               break;
9807             else
9808               return 0;
9809           }
9810     }
9811
9812   return 1;
9813 }
9814
9815 /* Do the dies look the same?  Wrapper around same_die_p.  */
9816
9817 static int
9818 same_die_p_wrap (dw_die_ref die1, dw_die_ref die2)
9819 {
9820   int mark = 0;
9821   int ret = same_die_p (die1, die2, &mark);
9822
9823   unmark_all_dies (die1);
9824   unmark_all_dies (die2);
9825
9826   return ret;
9827 }
9828
9829 /* The prefix to attach to symbols on DIEs in the current comdat debug
9830    info section.  */
9831 static char *comdat_symbol_id;
9832
9833 /* The index of the current symbol within the current comdat CU.  */
9834 static unsigned int comdat_symbol_number;
9835
9836 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
9837    children, and set comdat_symbol_id accordingly.  */
9838
9839 static void
9840 compute_section_prefix (dw_die_ref unit_die)
9841 {
9842   const char *die_name = get_AT_string (unit_die, DW_AT_name);
9843   const char *base = die_name ? lbasename (die_name) : "anonymous";
9844   char *name = XALLOCAVEC (char, strlen (base) + 64);
9845   char *p;
9846   int i, mark;
9847   unsigned char checksum[16];
9848   struct md5_ctx ctx;
9849
9850   /* Compute the checksum of the DIE, then append part of it as hex digits to
9851      the name filename of the unit.  */
9852
9853   md5_init_ctx (&ctx);
9854   mark = 0;
9855   die_checksum (unit_die, &ctx, &mark);
9856   unmark_all_dies (unit_die);
9857   md5_finish_ctx (&ctx, checksum);
9858
9859   sprintf (name, "%s.", base);
9860   clean_symbol_name (name);
9861
9862   p = name + strlen (name);
9863   for (i = 0; i < 4; i++)
9864     {
9865       sprintf (p, "%.2x", checksum[i]);
9866       p += 2;
9867     }
9868
9869   comdat_symbol_id = unit_die->die_id.die_symbol = xstrdup (name);
9870   comdat_symbol_number = 0;
9871 }
9872
9873 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P.  */
9874
9875 static int
9876 is_type_die (dw_die_ref die)
9877 {
9878   switch (die->die_tag)
9879     {
9880     case DW_TAG_array_type:
9881     case DW_TAG_class_type:
9882     case DW_TAG_interface_type:
9883     case DW_TAG_enumeration_type:
9884     case DW_TAG_pointer_type:
9885     case DW_TAG_reference_type:
9886     case DW_TAG_rvalue_reference_type:
9887     case DW_TAG_string_type:
9888     case DW_TAG_structure_type:
9889     case DW_TAG_subroutine_type:
9890     case DW_TAG_union_type:
9891     case DW_TAG_ptr_to_member_type:
9892     case DW_TAG_set_type:
9893     case DW_TAG_subrange_type:
9894     case DW_TAG_base_type:
9895     case DW_TAG_const_type:
9896     case DW_TAG_file_type:
9897     case DW_TAG_packed_type:
9898     case DW_TAG_volatile_type:
9899     case DW_TAG_typedef:
9900       return 1;
9901     default:
9902       return 0;
9903     }
9904 }
9905
9906 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
9907    Basically, we want to choose the bits that are likely to be shared between
9908    compilations (types) and leave out the bits that are specific to individual
9909    compilations (functions).  */
9910
9911 static int
9912 is_comdat_die (dw_die_ref c)
9913 {
9914   /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
9915      we do for stabs.  The advantage is a greater likelihood of sharing between
9916      objects that don't include headers in the same order (and therefore would
9917      put the base types in a different comdat).  jason 8/28/00 */
9918
9919   if (c->die_tag == DW_TAG_base_type)
9920     return 0;
9921
9922   if (c->die_tag == DW_TAG_pointer_type
9923       || c->die_tag == DW_TAG_reference_type
9924       || c->die_tag == DW_TAG_rvalue_reference_type
9925       || c->die_tag == DW_TAG_const_type
9926       || c->die_tag == DW_TAG_volatile_type)
9927     {
9928       dw_die_ref t = get_AT_ref (c, DW_AT_type);
9929
9930       return t ? is_comdat_die (t) : 0;
9931     }
9932
9933   return is_type_die (c);
9934 }
9935
9936 /* Returns 1 iff C is the sort of DIE that might be referred to from another
9937    compilation unit.  */
9938
9939 static int
9940 is_symbol_die (dw_die_ref c)
9941 {
9942   return (is_type_die (c)
9943           || is_declaration_die (c)
9944           || c->die_tag == DW_TAG_namespace
9945           || c->die_tag == DW_TAG_module);
9946 }
9947
9948 /* Returns true iff C is a compile-unit DIE.  */
9949
9950 static inline bool
9951 is_cu_die (dw_die_ref c)
9952 {
9953   return c && c->die_tag == DW_TAG_compile_unit;
9954 }
9955
9956 static char *
9957 gen_internal_sym (const char *prefix)
9958 {
9959   char buf[256];
9960
9961   ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
9962   return xstrdup (buf);
9963 }
9964
9965 /* Assign symbols to all worthy DIEs under DIE.  */
9966
9967 static void
9968 assign_symbol_names (dw_die_ref die)
9969 {
9970   dw_die_ref c;
9971
9972   if (is_symbol_die (die))
9973     {
9974       if (comdat_symbol_id)
9975         {
9976           char *p = XALLOCAVEC (char, strlen (comdat_symbol_id) + 64);
9977
9978           sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
9979                    comdat_symbol_id, comdat_symbol_number++);
9980           die->die_id.die_symbol = xstrdup (p);
9981         }
9982       else
9983         die->die_id.die_symbol = gen_internal_sym ("LDIE");
9984     }
9985
9986   FOR_EACH_CHILD (die, c, assign_symbol_names (c));
9987 }
9988
9989 struct cu_hash_table_entry
9990 {
9991   dw_die_ref cu;
9992   unsigned min_comdat_num, max_comdat_num;
9993   struct cu_hash_table_entry *next;
9994 };
9995
9996 /* Routines to manipulate hash table of CUs.  */
9997 static hashval_t
9998 htab_cu_hash (const void *of)
9999 {
10000   const struct cu_hash_table_entry *const entry =
10001     (const struct cu_hash_table_entry *) of;
10002
10003   return htab_hash_string (entry->cu->die_id.die_symbol);
10004 }
10005
10006 static int
10007 htab_cu_eq (const void *of1, const void *of2)
10008 {
10009   const struct cu_hash_table_entry *const entry1 =
10010     (const struct cu_hash_table_entry *) of1;
10011   const struct die_struct *const entry2 = (const struct die_struct *) of2;
10012
10013   return !strcmp (entry1->cu->die_id.die_symbol, entry2->die_id.die_symbol);
10014 }
10015
10016 static void
10017 htab_cu_del (void *what)
10018 {
10019   struct cu_hash_table_entry *next,
10020     *entry = (struct cu_hash_table_entry *) what;
10021
10022   while (entry)
10023     {
10024       next = entry->next;
10025       free (entry);
10026       entry = next;
10027     }
10028 }
10029
10030 /* Check whether we have already seen this CU and set up SYM_NUM
10031    accordingly.  */
10032 static int
10033 check_duplicate_cu (dw_die_ref cu, htab_t htable, unsigned int *sym_num)
10034 {
10035   struct cu_hash_table_entry dummy;
10036   struct cu_hash_table_entry **slot, *entry, *last = &dummy;
10037
10038   dummy.max_comdat_num = 0;
10039
10040   slot = (struct cu_hash_table_entry **)
10041     htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_id.die_symbol),
10042         INSERT);
10043   entry = *slot;
10044
10045   for (; entry; last = entry, entry = entry->next)
10046     {
10047       if (same_die_p_wrap (cu, entry->cu))
10048         break;
10049     }
10050
10051   if (entry)
10052     {
10053       *sym_num = entry->min_comdat_num;
10054       return 1;
10055     }
10056
10057   entry = XCNEW (struct cu_hash_table_entry);
10058   entry->cu = cu;
10059   entry->min_comdat_num = *sym_num = last->max_comdat_num;
10060   entry->next = *slot;
10061   *slot = entry;
10062
10063   return 0;
10064 }
10065
10066 /* Record SYM_NUM to record of CU in HTABLE.  */
10067 static void
10068 record_comdat_symbol_number (dw_die_ref cu, htab_t htable, unsigned int sym_num)
10069 {
10070   struct cu_hash_table_entry **slot, *entry;
10071
10072   slot = (struct cu_hash_table_entry **)
10073     htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_id.die_symbol),
10074         NO_INSERT);
10075   entry = *slot;
10076
10077   entry->max_comdat_num = sym_num;
10078 }
10079
10080 /* Traverse the DIE (which is always comp_unit_die), and set up
10081    additional compilation units for each of the include files we see
10082    bracketed by BINCL/EINCL.  */
10083
10084 static void
10085 break_out_includes (dw_die_ref die)
10086 {
10087   dw_die_ref c;
10088   dw_die_ref unit = NULL;
10089   limbo_die_node *node, **pnode;
10090   htab_t cu_hash_table;
10091
10092   c = die->die_child;
10093   if (c) do {
10094     dw_die_ref prev = c;
10095     c = c->die_sib;
10096     while (c->die_tag == DW_TAG_GNU_BINCL || c->die_tag == DW_TAG_GNU_EINCL
10097            || (unit && is_comdat_die (c)))
10098       {
10099         dw_die_ref next = c->die_sib;
10100
10101         /* This DIE is for a secondary CU; remove it from the main one.  */
10102         remove_child_with_prev (c, prev);
10103
10104         if (c->die_tag == DW_TAG_GNU_BINCL)
10105           unit = push_new_compile_unit (unit, c);
10106         else if (c->die_tag == DW_TAG_GNU_EINCL)
10107           unit = pop_compile_unit (unit);
10108         else
10109           add_child_die (unit, c);
10110         c = next;
10111         if (c == die->die_child)
10112           break;
10113       }
10114   } while (c != die->die_child);
10115
10116 #if 0
10117   /* We can only use this in debugging, since the frontend doesn't check
10118      to make sure that we leave every include file we enter.  */
10119   gcc_assert (!unit);
10120 #endif
10121
10122   assign_symbol_names (die);
10123   cu_hash_table = htab_create (10, htab_cu_hash, htab_cu_eq, htab_cu_del);
10124   for (node = limbo_die_list, pnode = &limbo_die_list;
10125        node;
10126        node = node->next)
10127     {
10128       int is_dupl;
10129
10130       compute_section_prefix (node->die);
10131       is_dupl = check_duplicate_cu (node->die, cu_hash_table,
10132                         &comdat_symbol_number);
10133       assign_symbol_names (node->die);
10134       if (is_dupl)
10135         *pnode = node->next;
10136       else
10137         {
10138           pnode = &node->next;
10139           record_comdat_symbol_number (node->die, cu_hash_table,
10140                 comdat_symbol_number);
10141         }
10142     }
10143   htab_delete (cu_hash_table);
10144 }
10145
10146 /* Return non-zero if this DIE is a declaration.  */
10147
10148 static int
10149 is_declaration_die (dw_die_ref die)
10150 {
10151   dw_attr_ref a;
10152   unsigned ix;
10153
10154   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
10155     if (a->dw_attr == DW_AT_declaration)
10156       return 1;
10157
10158   return 0;
10159 }
10160
10161 /* Return non-zero if this DIE is nested inside a subprogram.  */
10162
10163 static int
10164 is_nested_in_subprogram (dw_die_ref die)
10165 {
10166   dw_die_ref decl = get_AT_ref (die, DW_AT_specification);
10167
10168   if (decl == NULL)
10169     decl = die;
10170   return local_scope_p (decl);
10171 }
10172
10173 /* Return non-zero if this DIE contains a defining declaration of a
10174    subprogram.  */
10175
10176 static int
10177 contains_subprogram_definition (dw_die_ref die)
10178 {
10179   dw_die_ref c;
10180
10181   if (die->die_tag == DW_TAG_subprogram && ! is_declaration_die (die))
10182     return 1;
10183   FOR_EACH_CHILD (die, c, if (contains_subprogram_definition(c)) return 1);
10184   return 0;
10185 }
10186
10187 /* Return non-zero if this is a type DIE that should be moved to a
10188    COMDAT .debug_types section.  */
10189
10190 static int
10191 should_move_die_to_comdat (dw_die_ref die)
10192 {
10193   switch (die->die_tag)
10194     {
10195     case DW_TAG_class_type:
10196     case DW_TAG_structure_type:
10197     case DW_TAG_enumeration_type:
10198     case DW_TAG_union_type:
10199       /* Don't move declarations, inlined instances, or types nested in a
10200          subprogram.  */
10201       if (is_declaration_die (die)
10202           || get_AT (die, DW_AT_abstract_origin)
10203           || is_nested_in_subprogram (die))
10204         return 0;
10205       /* A type definition should never contain a subprogram definition.  */
10206       gcc_assert (!contains_subprogram_definition (die));
10207       return 1;
10208     case DW_TAG_array_type:
10209     case DW_TAG_interface_type:
10210     case DW_TAG_pointer_type:
10211     case DW_TAG_reference_type:
10212     case DW_TAG_rvalue_reference_type:
10213     case DW_TAG_string_type:
10214     case DW_TAG_subroutine_type:
10215     case DW_TAG_ptr_to_member_type:
10216     case DW_TAG_set_type:
10217     case DW_TAG_subrange_type:
10218     case DW_TAG_base_type:
10219     case DW_TAG_const_type:
10220     case DW_TAG_file_type:
10221     case DW_TAG_packed_type:
10222     case DW_TAG_volatile_type:
10223     case DW_TAG_typedef:
10224     default:
10225       return 0;
10226     }
10227 }
10228
10229 /* Make a clone of DIE.  */
10230
10231 static dw_die_ref
10232 clone_die (dw_die_ref die)
10233 {
10234   dw_die_ref clone;
10235   dw_attr_ref a;
10236   unsigned ix;
10237
10238   clone = ggc_alloc_cleared_die_node ();
10239   clone->die_tag = die->die_tag;
10240
10241   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
10242     add_dwarf_attr (clone, a);
10243
10244   return clone;
10245 }
10246
10247 /* Make a clone of the tree rooted at DIE.  */
10248
10249 static dw_die_ref
10250 clone_tree (dw_die_ref die)
10251 {
10252   dw_die_ref c;
10253   dw_die_ref clone = clone_die (die);
10254
10255   FOR_EACH_CHILD (die, c, add_child_die (clone, clone_tree(c)));
10256
10257   return clone;
10258 }
10259
10260 /* Make a clone of DIE as a declaration.  */
10261
10262 static dw_die_ref
10263 clone_as_declaration (dw_die_ref die)
10264 {
10265   dw_die_ref clone;
10266   dw_die_ref decl;
10267   dw_attr_ref a;
10268   unsigned ix;
10269
10270   /* If the DIE is already a declaration, just clone it.  */
10271   if (is_declaration_die (die))
10272     return clone_die (die);
10273
10274   /* If the DIE is a specification, just clone its declaration DIE.  */
10275   decl = get_AT_ref (die, DW_AT_specification);
10276   if (decl != NULL)
10277     return clone_die (decl);
10278
10279   clone = ggc_alloc_cleared_die_node ();
10280   clone->die_tag = die->die_tag;
10281
10282   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
10283     {
10284       /* We don't want to copy over all attributes.
10285          For example we don't want DW_AT_byte_size because otherwise we will no
10286          longer have a declaration and GDB will treat it as a definition.  */
10287
10288       switch (a->dw_attr)
10289         {
10290         case DW_AT_artificial:
10291         case DW_AT_containing_type:
10292         case DW_AT_external:
10293         case DW_AT_name:
10294         case DW_AT_type:
10295         case DW_AT_virtuality:
10296         case DW_AT_linkage_name:
10297         case DW_AT_MIPS_linkage_name:
10298           add_dwarf_attr (clone, a);
10299           break;
10300         case DW_AT_byte_size:
10301         default:
10302           break;
10303         }
10304     }
10305
10306   if (die->die_id.die_type_node)
10307     add_AT_die_ref (clone, DW_AT_signature, die);
10308
10309   add_AT_flag (clone, DW_AT_declaration, 1);
10310   return clone;
10311 }
10312
10313 /* Copy the declaration context to the new compile unit DIE.  This includes
10314    any surrounding namespace or type declarations.  If the DIE has an
10315    AT_specification attribute, it also includes attributes and children
10316    attached to the specification.  */
10317
10318 static void
10319 copy_declaration_context (dw_die_ref unit, dw_die_ref die)
10320 {
10321   dw_die_ref decl;
10322   dw_die_ref new_decl;
10323
10324   decl = get_AT_ref (die, DW_AT_specification);
10325   if (decl == NULL)
10326     decl = die;
10327   else
10328     {
10329       unsigned ix;
10330       dw_die_ref c;
10331       dw_attr_ref a;
10332
10333       /* Copy the type node pointer from the new DIE to the original
10334          declaration DIE so we can forward references later.  */
10335       decl->die_id.die_type_node = die->die_id.die_type_node;
10336
10337       remove_AT (die, DW_AT_specification);
10338
10339       FOR_EACH_VEC_ELT (dw_attr_node, decl->die_attr, ix, a)
10340         {
10341           if (a->dw_attr != DW_AT_name
10342               && a->dw_attr != DW_AT_declaration
10343               && a->dw_attr != DW_AT_external)
10344             add_dwarf_attr (die, a);
10345         }
10346
10347       FOR_EACH_CHILD (decl, c, add_child_die (die, clone_tree(c)));
10348     }
10349
10350   if (decl->die_parent != NULL
10351       && decl->die_parent->die_tag != DW_TAG_compile_unit
10352       && decl->die_parent->die_tag != DW_TAG_type_unit)
10353     {
10354       new_decl = copy_ancestor_tree (unit, decl, NULL);
10355       if (new_decl != NULL)
10356         {
10357           remove_AT (new_decl, DW_AT_signature);
10358           add_AT_specification (die, new_decl);
10359         }
10360     }
10361 }
10362
10363 /* Generate the skeleton ancestor tree for the given NODE, then clone
10364    the DIE and add the clone into the tree.  */
10365
10366 static void
10367 generate_skeleton_ancestor_tree (skeleton_chain_node *node)
10368 {
10369   if (node->new_die != NULL)
10370     return;
10371
10372   node->new_die = clone_as_declaration (node->old_die);
10373
10374   if (node->parent != NULL)
10375     {
10376       generate_skeleton_ancestor_tree (node->parent);
10377       add_child_die (node->parent->new_die, node->new_die);
10378     }
10379 }
10380
10381 /* Generate a skeleton tree of DIEs containing any declarations that are
10382    found in the original tree.  We traverse the tree looking for declaration
10383    DIEs, and construct the skeleton from the bottom up whenever we find one.  */
10384
10385 static void
10386 generate_skeleton_bottom_up (skeleton_chain_node *parent)
10387 {
10388   skeleton_chain_node node;
10389   dw_die_ref c;
10390   dw_die_ref first;
10391   dw_die_ref prev = NULL;
10392   dw_die_ref next = NULL;
10393
10394   node.parent = parent;
10395
10396   first = c = parent->old_die->die_child;
10397   if (c)
10398     next = c->die_sib;
10399   if (c) do {
10400     if (prev == NULL || prev->die_sib == c)
10401       prev = c;
10402     c = next;
10403     next = (c == first ? NULL : c->die_sib);
10404     node.old_die = c;
10405     node.new_die = NULL;
10406     if (is_declaration_die (c))
10407       {
10408         /* Clone the existing DIE, move the original to the skeleton
10409            tree (which is in the main CU), and put the clone, with
10410            all the original's children, where the original came from.  */
10411         dw_die_ref clone = clone_die (c);
10412         move_all_children (c, clone);
10413
10414         replace_child (c, clone, prev);
10415         generate_skeleton_ancestor_tree (parent);
10416         add_child_die (parent->new_die, c);
10417         node.new_die = c;
10418         c = clone;
10419       }
10420     generate_skeleton_bottom_up (&node);
10421   } while (next != NULL);
10422 }
10423
10424 /* Wrapper function for generate_skeleton_bottom_up.  */
10425
10426 static dw_die_ref
10427 generate_skeleton (dw_die_ref die)
10428 {
10429   skeleton_chain_node node;
10430
10431   node.old_die = die;
10432   node.new_die = NULL;
10433   node.parent = NULL;
10434
10435   /* If this type definition is nested inside another type,
10436      always leave at least a declaration in its place.  */
10437   if (die->die_parent != NULL && is_type_die (die->die_parent))
10438     node.new_die = clone_as_declaration (die);
10439
10440   generate_skeleton_bottom_up (&node);
10441   return node.new_die;
10442 }
10443
10444 /* Remove the DIE from its parent, possibly replacing it with a cloned
10445    declaration.  The original DIE will be moved to a new compile unit
10446    so that existing references to it follow it to the new location.  If
10447    any of the original DIE's descendants is a declaration, we need to
10448    replace the original DIE with a skeleton tree and move the
10449    declarations back into the skeleton tree.  */
10450
10451 static dw_die_ref
10452 remove_child_or_replace_with_skeleton (dw_die_ref child, dw_die_ref prev)
10453 {
10454   dw_die_ref skeleton;
10455
10456   skeleton = generate_skeleton (child);
10457   if (skeleton == NULL)
10458     remove_child_with_prev (child, prev);
10459   else
10460     {
10461       skeleton->die_id.die_type_node = child->die_id.die_type_node;
10462       replace_child (child, skeleton, prev);
10463     }
10464
10465   return skeleton;
10466 }
10467
10468 /* Traverse the DIE and set up additional .debug_types sections for each
10469    type worthy of being placed in a COMDAT section.  */
10470
10471 static void
10472 break_out_comdat_types (dw_die_ref die)
10473 {
10474   dw_die_ref c;
10475   dw_die_ref first;
10476   dw_die_ref prev = NULL;
10477   dw_die_ref next = NULL;
10478   dw_die_ref unit = NULL;
10479
10480   first = c = die->die_child;
10481   if (c)
10482     next = c->die_sib;
10483   if (c) do {
10484     if (prev == NULL || prev->die_sib == c)
10485       prev = c;
10486     c = next;
10487     next = (c == first ? NULL : c->die_sib);
10488     if (should_move_die_to_comdat (c))
10489       {
10490         dw_die_ref replacement;
10491         comdat_type_node_ref type_node;
10492
10493         /* Create a new type unit DIE as the root for the new tree, and
10494            add it to the list of comdat types.  */
10495         unit = new_die (DW_TAG_type_unit, NULL, NULL);
10496         add_AT_unsigned (unit, DW_AT_language,
10497                          get_AT_unsigned (comp_unit_die (), DW_AT_language));
10498         type_node = ggc_alloc_cleared_comdat_type_node ();
10499         type_node->root_die = unit;
10500         type_node->next = comdat_type_list;
10501         comdat_type_list = type_node;
10502
10503         /* Generate the type signature.  */
10504         generate_type_signature (c, type_node);
10505
10506         /* Copy the declaration context, attributes, and children of the
10507            declaration into the new compile unit DIE.  */
10508         copy_declaration_context (unit, c);
10509
10510         /* Remove this DIE from the main CU.  */
10511         replacement = remove_child_or_replace_with_skeleton (c, prev);
10512
10513         /* Break out nested types into their own type units.  */
10514         break_out_comdat_types (c);
10515
10516         /* Add the DIE to the new compunit.  */
10517         add_child_die (unit, c);
10518
10519         if (replacement != NULL)
10520           c = replacement;
10521       }
10522     else if (c->die_tag == DW_TAG_namespace
10523              || c->die_tag == DW_TAG_class_type
10524              || c->die_tag == DW_TAG_structure_type
10525              || c->die_tag == DW_TAG_union_type)
10526       {
10527         /* Look for nested types that can be broken out.  */
10528         break_out_comdat_types (c);
10529       }
10530   } while (next != NULL);
10531 }
10532
10533 /* Structure to map a DIE in one CU to its copy in a comdat type unit.  */
10534
10535 struct decl_table_entry
10536 {
10537   dw_die_ref orig;
10538   dw_die_ref copy;
10539 };
10540
10541 /* Routines to manipulate hash table of copied declarations.  */
10542
10543 static hashval_t
10544 htab_decl_hash (const void *of)
10545 {
10546   const struct decl_table_entry *const entry =
10547     (const struct decl_table_entry *) of;
10548
10549   return htab_hash_pointer (entry->orig);
10550 }
10551
10552 static int
10553 htab_decl_eq (const void *of1, const void *of2)
10554 {
10555   const struct decl_table_entry *const entry1 =
10556     (const struct decl_table_entry *) of1;
10557   const struct die_struct *const entry2 = (const struct die_struct *) of2;
10558
10559   return entry1->orig == entry2;
10560 }
10561
10562 static void
10563 htab_decl_del (void *what)
10564 {
10565   struct decl_table_entry *entry = (struct decl_table_entry *) what;
10566
10567   free (entry);
10568 }
10569
10570 /* Copy DIE and its ancestors, up to, but not including, the compile unit
10571    or type unit entry, to a new tree.  Adds the new tree to UNIT and returns
10572    a pointer to the copy of DIE.  If DECL_TABLE is provided, it is used
10573    to check if the ancestor has already been copied into UNIT.  */
10574
10575 static dw_die_ref
10576 copy_ancestor_tree (dw_die_ref unit, dw_die_ref die, htab_t decl_table)
10577 {
10578   dw_die_ref parent = die->die_parent;
10579   dw_die_ref new_parent = unit;
10580   dw_die_ref copy;
10581   void **slot = NULL;
10582   struct decl_table_entry *entry = NULL;
10583
10584   if (decl_table)
10585     {
10586       /* Check if the entry has already been copied to UNIT.  */
10587       slot = htab_find_slot_with_hash (decl_table, die,
10588                                        htab_hash_pointer (die), INSERT);
10589       if (*slot != HTAB_EMPTY_ENTRY)
10590         {
10591           entry = (struct decl_table_entry *) *slot;
10592           return entry->copy;
10593         }
10594
10595       /* Record in DECL_TABLE that DIE has been copied to UNIT.  */
10596       entry = XCNEW (struct decl_table_entry);
10597       entry->orig = die;
10598       entry->copy = NULL;
10599       *slot = entry;
10600     }
10601
10602   if (parent != NULL)
10603     {
10604       dw_die_ref spec = get_AT_ref (parent, DW_AT_specification);
10605       if (spec != NULL)
10606         parent = spec;
10607       if (parent->die_tag != DW_TAG_compile_unit
10608           && parent->die_tag != DW_TAG_type_unit)
10609         new_parent = copy_ancestor_tree (unit, parent, decl_table);
10610     }
10611
10612   copy = clone_as_declaration (die);
10613   add_child_die (new_parent, copy);
10614
10615   if (decl_table != NULL)
10616     {
10617       /* Record the pointer to the copy.  */
10618       entry->copy = copy;
10619     }
10620
10621   return copy;
10622 }
10623
10624 /* Walk the DIE and its children, looking for references to incomplete
10625    or trivial types that are unmarked (i.e., that are not in the current
10626    type_unit).  */
10627
10628 static void
10629 copy_decls_walk (dw_die_ref unit, dw_die_ref die, htab_t decl_table)
10630 {
10631   dw_die_ref c;
10632   dw_attr_ref a;
10633   unsigned ix;
10634
10635   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
10636     {
10637       if (AT_class (a) == dw_val_class_die_ref)
10638         {
10639           dw_die_ref targ = AT_ref (a);
10640           comdat_type_node_ref type_node = targ->die_id.die_type_node;
10641           void **slot;
10642           struct decl_table_entry *entry;
10643
10644           if (targ->die_mark != 0 || type_node != NULL)
10645             continue;
10646
10647           slot = htab_find_slot_with_hash (decl_table, targ,
10648                                            htab_hash_pointer (targ), INSERT);
10649
10650           if (*slot != HTAB_EMPTY_ENTRY)
10651             {
10652               /* TARG has already been copied, so we just need to
10653                  modify the reference to point to the copy.  */
10654               entry = (struct decl_table_entry *) *slot;
10655               a->dw_attr_val.v.val_die_ref.die = entry->copy;
10656             }
10657           else
10658             {
10659               dw_die_ref parent = unit;
10660               dw_die_ref copy = clone_tree (targ);
10661
10662               /* Make sure the cloned tree is marked as part of the
10663                  type unit.  */
10664               mark_dies (copy);
10665
10666               /* Record in DECL_TABLE that TARG has been copied.
10667                  Need to do this now, before the recursive call,
10668                  because DECL_TABLE may be expanded and SLOT
10669                  would no longer be a valid pointer.  */
10670               entry = XCNEW (struct decl_table_entry);
10671               entry->orig = targ;
10672               entry->copy = copy;
10673               *slot = entry;
10674
10675               /* If TARG has surrounding context, copy its ancestor tree
10676                  into the new type unit.  */
10677               if (targ->die_parent != NULL
10678                   && targ->die_parent->die_tag != DW_TAG_compile_unit
10679                   && targ->die_parent->die_tag != DW_TAG_type_unit)
10680                 parent = copy_ancestor_tree (unit, targ->die_parent,
10681                                              decl_table);
10682
10683               add_child_die (parent, copy);
10684               a->dw_attr_val.v.val_die_ref.die = copy;
10685
10686               /* Make sure the newly-copied DIE is walked.  If it was
10687                  installed in a previously-added context, it won't
10688                  get visited otherwise.  */
10689               if (parent != unit)
10690                 {
10691                   /* Find the highest point of the newly-added tree,
10692                      mark each node along the way, and walk from there.  */
10693                   parent->die_mark = 1;
10694                   while (parent->die_parent
10695                          && parent->die_parent->die_mark == 0)
10696                     {
10697                       parent = parent->die_parent;
10698                       parent->die_mark = 1;
10699                     }
10700                   copy_decls_walk (unit, parent, decl_table);
10701                 }
10702             }
10703         }
10704     }
10705
10706   FOR_EACH_CHILD (die, c, copy_decls_walk (unit, c, decl_table));
10707 }
10708
10709 /* Copy declarations for "unworthy" types into the new comdat section.
10710    Incomplete types, modified types, and certain other types aren't broken
10711    out into comdat sections of their own, so they don't have a signature,
10712    and we need to copy the declaration into the same section so that we
10713    don't have an external reference.  */
10714
10715 static void
10716 copy_decls_for_unworthy_types (dw_die_ref unit)
10717 {
10718   htab_t decl_table;
10719
10720   mark_dies (unit);
10721   decl_table = htab_create (10, htab_decl_hash, htab_decl_eq, htab_decl_del);
10722   copy_decls_walk (unit, unit, decl_table);
10723   htab_delete (decl_table);
10724   unmark_dies (unit);
10725 }
10726
10727 /* Traverse the DIE and add a sibling attribute if it may have the
10728    effect of speeding up access to siblings.  To save some space,
10729    avoid generating sibling attributes for DIE's without children.  */
10730
10731 static void
10732 add_sibling_attributes (dw_die_ref die)
10733 {
10734   dw_die_ref c;
10735
10736   if (! die->die_child)
10737     return;
10738
10739   if (die->die_parent && die != die->die_parent->die_child)
10740     add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
10741
10742   FOR_EACH_CHILD (die, c, add_sibling_attributes (c));
10743 }
10744
10745 /* Output all location lists for the DIE and its children.  */
10746
10747 static void
10748 output_location_lists (dw_die_ref die)
10749 {
10750   dw_die_ref c;
10751   dw_attr_ref a;
10752   unsigned ix;
10753
10754   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
10755     if (AT_class (a) == dw_val_class_loc_list)
10756       output_loc_list (AT_loc_list (a));
10757
10758   FOR_EACH_CHILD (die, c, output_location_lists (c));
10759 }
10760
10761 /* The format of each DIE (and its attribute value pairs) is encoded in an
10762    abbreviation table.  This routine builds the abbreviation table and assigns
10763    a unique abbreviation id for each abbreviation entry.  The children of each
10764    die are visited recursively.  */
10765
10766 static void
10767 build_abbrev_table (dw_die_ref die)
10768 {
10769   unsigned long abbrev_id;
10770   unsigned int n_alloc;
10771   dw_die_ref c;
10772   dw_attr_ref a;
10773   unsigned ix;
10774
10775   /* Scan the DIE references, and mark as external any that refer to
10776      DIEs from other CUs (i.e. those which are not marked).  */
10777   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
10778     if (AT_class (a) == dw_val_class_die_ref
10779         && AT_ref (a)->die_mark == 0)
10780       {
10781         gcc_assert (use_debug_types || AT_ref (a)->die_id.die_symbol);
10782         set_AT_ref_external (a, 1);
10783       }
10784
10785   for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
10786     {
10787       dw_die_ref abbrev = abbrev_die_table[abbrev_id];
10788       dw_attr_ref die_a, abbrev_a;
10789       unsigned ix;
10790       bool ok = true;
10791
10792       if (abbrev->die_tag != die->die_tag)
10793         continue;
10794       if ((abbrev->die_child != NULL) != (die->die_child != NULL))
10795         continue;
10796
10797       if (VEC_length (dw_attr_node, abbrev->die_attr)
10798           != VEC_length (dw_attr_node, die->die_attr))
10799         continue;
10800
10801       FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, die_a)
10802         {
10803           abbrev_a = VEC_index (dw_attr_node, abbrev->die_attr, ix);
10804           if ((abbrev_a->dw_attr != die_a->dw_attr)
10805               || (value_format (abbrev_a) != value_format (die_a)))
10806             {
10807               ok = false;
10808               break;
10809             }
10810         }
10811       if (ok)
10812         break;
10813     }
10814
10815   if (abbrev_id >= abbrev_die_table_in_use)
10816     {
10817       if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
10818         {
10819           n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
10820           abbrev_die_table = GGC_RESIZEVEC (dw_die_ref, abbrev_die_table,
10821                                             n_alloc);
10822
10823           memset (&abbrev_die_table[abbrev_die_table_allocated], 0,
10824                  (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
10825           abbrev_die_table_allocated = n_alloc;
10826         }
10827
10828       ++abbrev_die_table_in_use;
10829       abbrev_die_table[abbrev_id] = die;
10830     }
10831
10832   die->die_abbrev = abbrev_id;
10833   FOR_EACH_CHILD (die, c, build_abbrev_table (c));
10834 }
10835 \f
10836 /* Return the power-of-two number of bytes necessary to represent VALUE.  */
10837
10838 static int
10839 constant_size (unsigned HOST_WIDE_INT value)
10840 {
10841   int log;
10842
10843   if (value == 0)
10844     log = 0;
10845   else
10846     log = floor_log2 (value);
10847
10848   log = log / 8;
10849   log = 1 << (floor_log2 (log) + 1);
10850
10851   return log;
10852 }
10853
10854 /* Return the size of a DIE as it is represented in the
10855    .debug_info section.  */
10856
10857 static unsigned long
10858 size_of_die (dw_die_ref die)
10859 {
10860   unsigned long size = 0;
10861   dw_attr_ref a;
10862   unsigned ix;
10863
10864   size += size_of_uleb128 (die->die_abbrev);
10865   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
10866     {
10867       switch (AT_class (a))
10868         {
10869         case dw_val_class_addr:
10870           size += DWARF2_ADDR_SIZE;
10871           break;
10872         case dw_val_class_offset:
10873           size += DWARF_OFFSET_SIZE;
10874           break;
10875         case dw_val_class_loc:
10876           {
10877             unsigned long lsize = size_of_locs (AT_loc (a));
10878
10879             /* Block length.  */
10880             if (dwarf_version >= 4)
10881               size += size_of_uleb128 (lsize);
10882             else
10883               size += constant_size (lsize);
10884             size += lsize;
10885           }
10886           break;
10887         case dw_val_class_loc_list:
10888           size += DWARF_OFFSET_SIZE;
10889           break;
10890         case dw_val_class_range_list:
10891           size += DWARF_OFFSET_SIZE;
10892           break;
10893         case dw_val_class_const:
10894           size += size_of_sleb128 (AT_int (a));
10895           break;
10896         case dw_val_class_unsigned_const:
10897           size += constant_size (AT_unsigned (a));
10898           break;
10899         case dw_val_class_const_double:
10900           size += 2 * HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR;
10901           if (HOST_BITS_PER_WIDE_INT >= 64)
10902             size++; /* block */
10903           break;
10904         case dw_val_class_vec:
10905           size += constant_size (a->dw_attr_val.v.val_vec.length
10906                                  * a->dw_attr_val.v.val_vec.elt_size)
10907                   + a->dw_attr_val.v.val_vec.length
10908                     * a->dw_attr_val.v.val_vec.elt_size; /* block */
10909           break;
10910         case dw_val_class_flag:
10911           if (dwarf_version >= 4)
10912             /* Currently all add_AT_flag calls pass in 1 as last argument,
10913                so DW_FORM_flag_present can be used.  If that ever changes,
10914                we'll need to use DW_FORM_flag and have some optimization
10915                in build_abbrev_table that will change those to
10916                DW_FORM_flag_present if it is set to 1 in all DIEs using
10917                the same abbrev entry.  */
10918             gcc_assert (a->dw_attr_val.v.val_flag == 1);
10919           else
10920             size += 1;
10921           break;
10922         case dw_val_class_die_ref:
10923           if (AT_ref_external (a))
10924             {
10925               /* In DWARF4, we use DW_FORM_ref_sig8; for earlier versions
10926                  we use DW_FORM_ref_addr.  In DWARF2, DW_FORM_ref_addr
10927                  is sized by target address length, whereas in DWARF3
10928                  it's always sized as an offset.  */
10929               if (use_debug_types)
10930                 size += DWARF_TYPE_SIGNATURE_SIZE;
10931               else if (dwarf_version == 2)
10932                 size += DWARF2_ADDR_SIZE;
10933               else
10934                 size += DWARF_OFFSET_SIZE;
10935             }
10936           else
10937             size += DWARF_OFFSET_SIZE;
10938           break;
10939         case dw_val_class_fde_ref:
10940           size += DWARF_OFFSET_SIZE;
10941           break;
10942         case dw_val_class_lbl_id:
10943           size += DWARF2_ADDR_SIZE;
10944           break;
10945         case dw_val_class_lineptr:
10946         case dw_val_class_macptr:
10947           size += DWARF_OFFSET_SIZE;
10948           break;
10949         case dw_val_class_str:
10950           if (AT_string_form (a) == DW_FORM_strp)
10951             size += DWARF_OFFSET_SIZE;
10952           else
10953             size += strlen (a->dw_attr_val.v.val_str->str) + 1;
10954           break;
10955         case dw_val_class_file:
10956           size += constant_size (maybe_emit_file (a->dw_attr_val.v.val_file));
10957           break;
10958         case dw_val_class_data8:
10959           size += 8;
10960           break;
10961         case dw_val_class_vms_delta:
10962           size += DWARF_OFFSET_SIZE;
10963           break;
10964         default:
10965           gcc_unreachable ();
10966         }
10967     }
10968
10969   return size;
10970 }
10971
10972 /* Size the debugging information associated with a given DIE.  Visits the
10973    DIE's children recursively.  Updates the global variable next_die_offset, on
10974    each time through.  Uses the current value of next_die_offset to update the
10975    die_offset field in each DIE.  */
10976
10977 static void
10978 calc_die_sizes (dw_die_ref die)
10979 {
10980   dw_die_ref c;
10981
10982   gcc_assert (die->die_offset == 0
10983               || (unsigned long int) die->die_offset == next_die_offset);
10984   die->die_offset = next_die_offset;
10985   next_die_offset += size_of_die (die);
10986
10987   FOR_EACH_CHILD (die, c, calc_die_sizes (c));
10988
10989   if (die->die_child != NULL)
10990     /* Count the null byte used to terminate sibling lists.  */
10991     next_die_offset += 1;
10992 }
10993
10994 /* Size just the base type children at the start of the CU.
10995    This is needed because build_abbrev needs to size locs
10996    and sizing of type based stack ops needs to know die_offset
10997    values for the base types.  */
10998
10999 static void
11000 calc_base_type_die_sizes (void)
11001 {
11002   unsigned long die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
11003   unsigned int i;
11004   dw_die_ref base_type;
11005 #if ENABLE_ASSERT_CHECKING
11006   dw_die_ref prev = comp_unit_die ()->die_child;
11007 #endif
11008
11009   die_offset += size_of_die (comp_unit_die ());
11010   for (i = 0; VEC_iterate (dw_die_ref, base_types, i, base_type); i++)
11011     {
11012 #if ENABLE_ASSERT_CHECKING
11013       gcc_assert (base_type->die_offset == 0
11014                   && prev->die_sib == base_type
11015                   && base_type->die_child == NULL
11016                   && base_type->die_abbrev);
11017       prev = base_type;
11018 #endif
11019       base_type->die_offset = die_offset;
11020       die_offset += size_of_die (base_type);
11021     }
11022 }
11023
11024 /* Set the marks for a die and its children.  We do this so
11025    that we know whether or not a reference needs to use FORM_ref_addr; only
11026    DIEs in the same CU will be marked.  We used to clear out the offset
11027    and use that as the flag, but ran into ordering problems.  */
11028
11029 static void
11030 mark_dies (dw_die_ref die)
11031 {
11032   dw_die_ref c;
11033
11034   gcc_assert (!die->die_mark);
11035
11036   die->die_mark = 1;
11037   FOR_EACH_CHILD (die, c, mark_dies (c));
11038 }
11039
11040 /* Clear the marks for a die and its children.  */
11041
11042 static void
11043 unmark_dies (dw_die_ref die)
11044 {
11045   dw_die_ref c;
11046
11047   if (! use_debug_types)
11048     gcc_assert (die->die_mark);
11049
11050   die->die_mark = 0;
11051   FOR_EACH_CHILD (die, c, unmark_dies (c));
11052 }
11053
11054 /* Clear the marks for a die, its children and referred dies.  */
11055
11056 static void
11057 unmark_all_dies (dw_die_ref die)
11058 {
11059   dw_die_ref c;
11060   dw_attr_ref a;
11061   unsigned ix;
11062
11063   if (!die->die_mark)
11064     return;
11065   die->die_mark = 0;
11066
11067   FOR_EACH_CHILD (die, c, unmark_all_dies (c));
11068
11069   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
11070     if (AT_class (a) == dw_val_class_die_ref)
11071       unmark_all_dies (AT_ref (a));
11072 }
11073
11074 /* Return the size of the .debug_pubnames or .debug_pubtypes table
11075    generated for the compilation unit.  */
11076
11077 static unsigned long
11078 size_of_pubnames (VEC (pubname_entry, gc) * names)
11079 {
11080   unsigned long size;
11081   unsigned i;
11082   pubname_ref p;
11083
11084   size = DWARF_PUBNAMES_HEADER_SIZE;
11085   FOR_EACH_VEC_ELT (pubname_entry, names, i, p)
11086     if (names != pubtype_table
11087         || p->die->die_offset != 0
11088         || !flag_eliminate_unused_debug_types)
11089       size += strlen (p->name) + DWARF_OFFSET_SIZE + 1;
11090
11091   size += DWARF_OFFSET_SIZE;
11092   return size;
11093 }
11094
11095 /* Return the size of the information in the .debug_aranges section.  */
11096
11097 static unsigned long
11098 size_of_aranges (void)
11099 {
11100   unsigned long size;
11101
11102   size = DWARF_ARANGES_HEADER_SIZE;
11103
11104   /* Count the address/length pair for this compilation unit.  */
11105   if (text_section_used)
11106     size += 2 * DWARF2_ADDR_SIZE;
11107   if (cold_text_section_used)
11108     size += 2 * DWARF2_ADDR_SIZE;
11109   if (have_multiple_function_sections)
11110     {
11111       unsigned fde_idx = 0;
11112
11113       for (fde_idx = 0; fde_idx < fde_table_in_use; fde_idx++)
11114         {
11115           dw_fde_ref fde = &fde_table[fde_idx];
11116
11117           if (!fde->in_std_section)
11118             size += 2 * DWARF2_ADDR_SIZE;
11119           if (fde->dw_fde_second_begin && !fde->second_in_std_section)
11120             size += 2 * DWARF2_ADDR_SIZE;
11121         }
11122     }
11123
11124   /* Count the two zero words used to terminated the address range table.  */
11125   size += 2 * DWARF2_ADDR_SIZE;
11126   return size;
11127 }
11128 \f
11129 /* Select the encoding of an attribute value.  */
11130
11131 static enum dwarf_form
11132 value_format (dw_attr_ref a)
11133 {
11134   switch (a->dw_attr_val.val_class)
11135     {
11136     case dw_val_class_addr:
11137       /* Only very few attributes allow DW_FORM_addr.  */
11138       switch (a->dw_attr)
11139         {
11140         case DW_AT_low_pc:
11141         case DW_AT_high_pc:
11142         case DW_AT_entry_pc:
11143         case DW_AT_trampoline:
11144           return DW_FORM_addr;
11145         default:
11146           break;
11147         }
11148       switch (DWARF2_ADDR_SIZE)
11149         {
11150         case 1:
11151           return DW_FORM_data1;
11152         case 2:
11153           return DW_FORM_data2;
11154         case 4:
11155           return DW_FORM_data4;
11156         case 8:
11157           return DW_FORM_data8;
11158         default:
11159           gcc_unreachable ();
11160         }
11161     case dw_val_class_range_list:
11162     case dw_val_class_loc_list:
11163       if (dwarf_version >= 4)
11164         return DW_FORM_sec_offset;
11165       /* FALLTHRU */
11166     case dw_val_class_vms_delta:
11167     case dw_val_class_offset:
11168       switch (DWARF_OFFSET_SIZE)
11169         {
11170         case 4:
11171           return DW_FORM_data4;
11172         case 8:
11173           return DW_FORM_data8;
11174         default:
11175           gcc_unreachable ();
11176         }
11177     case dw_val_class_loc:
11178       if (dwarf_version >= 4)
11179         return DW_FORM_exprloc;
11180       switch (constant_size (size_of_locs (AT_loc (a))))
11181         {
11182         case 1:
11183           return DW_FORM_block1;
11184         case 2:
11185           return DW_FORM_block2;
11186         default:
11187           gcc_unreachable ();
11188         }
11189     case dw_val_class_const:
11190       return DW_FORM_sdata;
11191     case dw_val_class_unsigned_const:
11192       switch (constant_size (AT_unsigned (a)))
11193         {
11194         case 1:
11195           return DW_FORM_data1;
11196         case 2:
11197           return DW_FORM_data2;
11198         case 4:
11199           return DW_FORM_data4;
11200         case 8:
11201           return DW_FORM_data8;
11202         default:
11203           gcc_unreachable ();
11204         }
11205     case dw_val_class_const_double:
11206       switch (HOST_BITS_PER_WIDE_INT)
11207         {
11208         case 8:
11209           return DW_FORM_data2;
11210         case 16:
11211           return DW_FORM_data4;
11212         case 32:
11213           return DW_FORM_data8;
11214         case 64:
11215         default:
11216           return DW_FORM_block1;
11217         }
11218     case dw_val_class_vec:
11219       switch (constant_size (a->dw_attr_val.v.val_vec.length
11220                              * a->dw_attr_val.v.val_vec.elt_size))
11221         {
11222         case 1:
11223           return DW_FORM_block1;
11224         case 2:
11225           return DW_FORM_block2;
11226         case 4:
11227           return DW_FORM_block4;
11228         default:
11229           gcc_unreachable ();
11230         }
11231     case dw_val_class_flag:
11232       if (dwarf_version >= 4)
11233         {
11234           /* Currently all add_AT_flag calls pass in 1 as last argument,
11235              so DW_FORM_flag_present can be used.  If that ever changes,
11236              we'll need to use DW_FORM_flag and have some optimization
11237              in build_abbrev_table that will change those to
11238              DW_FORM_flag_present if it is set to 1 in all DIEs using
11239              the same abbrev entry.  */
11240           gcc_assert (a->dw_attr_val.v.val_flag == 1);
11241           return DW_FORM_flag_present;
11242         }
11243       return DW_FORM_flag;
11244     case dw_val_class_die_ref:
11245       if (AT_ref_external (a))
11246         return use_debug_types ? DW_FORM_ref_sig8 : DW_FORM_ref_addr;
11247       else
11248         return DW_FORM_ref;
11249     case dw_val_class_fde_ref:
11250       return DW_FORM_data;
11251     case dw_val_class_lbl_id:
11252       return DW_FORM_addr;
11253     case dw_val_class_lineptr:
11254     case dw_val_class_macptr:
11255       return dwarf_version >= 4 ? DW_FORM_sec_offset : DW_FORM_data;
11256     case dw_val_class_str:
11257       return AT_string_form (a);
11258     case dw_val_class_file:
11259       switch (constant_size (maybe_emit_file (a->dw_attr_val.v.val_file)))
11260         {
11261         case 1:
11262           return DW_FORM_data1;
11263         case 2:
11264           return DW_FORM_data2;
11265         case 4:
11266           return DW_FORM_data4;
11267         default:
11268           gcc_unreachable ();
11269         }
11270
11271     case dw_val_class_data8:
11272       return DW_FORM_data8;
11273
11274     default:
11275       gcc_unreachable ();
11276     }
11277 }
11278
11279 /* Output the encoding of an attribute value.  */
11280
11281 static void
11282 output_value_format (dw_attr_ref a)
11283 {
11284   enum dwarf_form form = value_format (a);
11285
11286   dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
11287 }
11288
11289 /* Output the .debug_abbrev section which defines the DIE abbreviation
11290    table.  */
11291
11292 static void
11293 output_abbrev_section (void)
11294 {
11295   unsigned long abbrev_id;
11296
11297   if (abbrev_die_table_in_use == 1)
11298     return;
11299
11300   for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
11301     {
11302       dw_die_ref abbrev = abbrev_die_table[abbrev_id];
11303       unsigned ix;
11304       dw_attr_ref a_attr;
11305
11306       dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
11307       dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
11308                                    dwarf_tag_name (abbrev->die_tag));
11309
11310       if (abbrev->die_child != NULL)
11311         dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
11312       else
11313         dw2_asm_output_data (1, DW_children_no, "DW_children_no");
11314
11315       for (ix = 0; VEC_iterate (dw_attr_node, abbrev->die_attr, ix, a_attr);
11316            ix++)
11317         {
11318           dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
11319                                        dwarf_attr_name (a_attr->dw_attr));
11320           output_value_format (a_attr);
11321         }
11322
11323       dw2_asm_output_data (1, 0, NULL);
11324       dw2_asm_output_data (1, 0, NULL);
11325     }
11326
11327   /* Terminate the table.  */
11328   dw2_asm_output_data (1, 0, NULL);
11329 }
11330
11331 /* Output a symbol we can use to refer to this DIE from another CU.  */
11332
11333 static inline void
11334 output_die_symbol (dw_die_ref die)
11335 {
11336   char *sym = die->die_id.die_symbol;
11337
11338   if (sym == 0)
11339     return;
11340
11341   if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
11342     /* We make these global, not weak; if the target doesn't support
11343        .linkonce, it doesn't support combining the sections, so debugging
11344        will break.  */
11345     targetm.asm_out.globalize_label (asm_out_file, sym);
11346
11347   ASM_OUTPUT_LABEL (asm_out_file, sym);
11348 }
11349
11350 /* Return a new location list, given the begin and end range, and the
11351    expression.  */
11352
11353 static inline dw_loc_list_ref
11354 new_loc_list (dw_loc_descr_ref expr, const char *begin, const char *end,
11355               const char *section)
11356 {
11357   dw_loc_list_ref retlist = ggc_alloc_cleared_dw_loc_list_node ();
11358
11359   retlist->begin = begin;
11360   retlist->end = end;
11361   retlist->expr = expr;
11362   retlist->section = section;
11363
11364   return retlist;
11365 }
11366
11367 /* Generate a new internal symbol for this location list node, if it
11368    hasn't got one yet.  */
11369
11370 static inline void
11371 gen_llsym (dw_loc_list_ref list)
11372 {
11373   gcc_assert (!list->ll_symbol);
11374   list->ll_symbol = gen_internal_sym ("LLST");
11375 }
11376
11377 /* Output the location list given to us.  */
11378
11379 static void
11380 output_loc_list (dw_loc_list_ref list_head)
11381 {
11382   dw_loc_list_ref curr = list_head;
11383
11384   if (list_head->emitted)
11385     return;
11386   list_head->emitted = true;
11387
11388   ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
11389
11390   /* Walk the location list, and output each range + expression.  */
11391   for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
11392     {
11393       unsigned long size;
11394       /* Don't output an entry that starts and ends at the same address.  */
11395       if (strcmp (curr->begin, curr->end) == 0)
11396         continue;
11397       if (!have_multiple_function_sections)
11398         {
11399           dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
11400                                 "Location list begin address (%s)",
11401                                 list_head->ll_symbol);
11402           dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
11403                                 "Location list end address (%s)",
11404                                 list_head->ll_symbol);
11405         }
11406       else
11407         {
11408           dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
11409                                "Location list begin address (%s)",
11410                                list_head->ll_symbol);
11411           dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
11412                                "Location list end address (%s)",
11413                                list_head->ll_symbol);
11414         }
11415       size = size_of_locs (curr->expr);
11416
11417       /* Output the block length for this list of location operations.  */
11418       gcc_assert (size <= 0xffff);
11419       dw2_asm_output_data (2, size, "%s", "Location expression size");
11420
11421       output_loc_sequence (curr->expr, -1);
11422     }
11423
11424   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
11425                        "Location list terminator begin (%s)",
11426                        list_head->ll_symbol);
11427   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
11428                        "Location list terminator end (%s)",
11429                        list_head->ll_symbol);
11430 }
11431
11432 /* Output a type signature.  */
11433
11434 static inline void
11435 output_signature (const char *sig, const char *name)
11436 {
11437   int i;
11438
11439   for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11440     dw2_asm_output_data (1, sig[i], i == 0 ? "%s" : NULL, name);
11441 }
11442
11443 /* Output the DIE and its attributes.  Called recursively to generate
11444    the definitions of each child DIE.  */
11445
11446 static void
11447 output_die (dw_die_ref die)
11448 {
11449   dw_attr_ref a;
11450   dw_die_ref c;
11451   unsigned long size;
11452   unsigned ix;
11453
11454   /* If someone in another CU might refer to us, set up a symbol for
11455      them to point to.  */
11456   if (! use_debug_types && die->die_id.die_symbol)
11457     output_die_symbol (die);
11458
11459   dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (%#lx) %s)",
11460                                (unsigned long)die->die_offset,
11461                                dwarf_tag_name (die->die_tag));
11462
11463   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
11464     {
11465       const char *name = dwarf_attr_name (a->dw_attr);
11466
11467       switch (AT_class (a))
11468         {
11469         case dw_val_class_addr:
11470           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
11471           break;
11472
11473         case dw_val_class_offset:
11474           dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
11475                                "%s", name);
11476           break;
11477
11478         case dw_val_class_range_list:
11479           {
11480             char *p = strchr (ranges_section_label, '\0');
11481
11482             sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
11483                      a->dw_attr_val.v.val_offset);
11484             dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
11485                                    debug_ranges_section, "%s", name);
11486             *p = '\0';
11487           }
11488           break;
11489
11490         case dw_val_class_loc:
11491           size = size_of_locs (AT_loc (a));
11492
11493           /* Output the block length for this list of location operations.  */
11494           if (dwarf_version >= 4)
11495             dw2_asm_output_data_uleb128 (size, "%s", name);
11496           else
11497             dw2_asm_output_data (constant_size (size), size, "%s", name);
11498
11499           output_loc_sequence (AT_loc (a), -1);
11500           break;
11501
11502         case dw_val_class_const:
11503           /* ??? It would be slightly more efficient to use a scheme like is
11504              used for unsigned constants below, but gdb 4.x does not sign
11505              extend.  Gdb 5.x does sign extend.  */
11506           dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
11507           break;
11508
11509         case dw_val_class_unsigned_const:
11510           dw2_asm_output_data (constant_size (AT_unsigned (a)),
11511                                AT_unsigned (a), "%s", name);
11512           break;
11513
11514         case dw_val_class_const_double:
11515           {
11516             unsigned HOST_WIDE_INT first, second;
11517
11518             if (HOST_BITS_PER_WIDE_INT >= 64)
11519               dw2_asm_output_data (1,
11520                                    2 * HOST_BITS_PER_WIDE_INT
11521                                    / HOST_BITS_PER_CHAR,
11522                                    NULL);
11523
11524             if (WORDS_BIG_ENDIAN)
11525               {
11526                 first = a->dw_attr_val.v.val_double.high;
11527                 second = a->dw_attr_val.v.val_double.low;
11528               }
11529             else
11530               {
11531                 first = a->dw_attr_val.v.val_double.low;
11532                 second = a->dw_attr_val.v.val_double.high;
11533               }
11534
11535             dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
11536                                  first, name);
11537             dw2_asm_output_data (HOST_BITS_PER_WIDE_INT / HOST_BITS_PER_CHAR,
11538                                  second, NULL);
11539           }
11540           break;
11541
11542         case dw_val_class_vec:
11543           {
11544             unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
11545             unsigned int len = a->dw_attr_val.v.val_vec.length;
11546             unsigned int i;
11547             unsigned char *p;
11548
11549             dw2_asm_output_data (constant_size (len * elt_size),
11550                                  len * elt_size, "%s", name);
11551             if (elt_size > sizeof (HOST_WIDE_INT))
11552               {
11553                 elt_size /= 2;
11554                 len *= 2;
11555               }
11556             for (i = 0, p = a->dw_attr_val.v.val_vec.array;
11557                  i < len;
11558                  i++, p += elt_size)
11559               dw2_asm_output_data (elt_size, extract_int (p, elt_size),
11560                                    "fp or vector constant word %u", i);
11561             break;
11562           }
11563
11564         case dw_val_class_flag:
11565           if (dwarf_version >= 4)
11566             {
11567               /* Currently all add_AT_flag calls pass in 1 as last argument,
11568                  so DW_FORM_flag_present can be used.  If that ever changes,
11569                  we'll need to use DW_FORM_flag and have some optimization
11570                  in build_abbrev_table that will change those to
11571                  DW_FORM_flag_present if it is set to 1 in all DIEs using
11572                  the same abbrev entry.  */
11573               gcc_assert (AT_flag (a) == 1);
11574               if (flag_debug_asm)
11575                 fprintf (asm_out_file, "\t\t\t%s %s\n",
11576                          ASM_COMMENT_START, name);
11577               break;
11578             }
11579           dw2_asm_output_data (1, AT_flag (a), "%s", name);
11580           break;
11581
11582         case dw_val_class_loc_list:
11583           {
11584             char *sym = AT_loc_list (a)->ll_symbol;
11585
11586             gcc_assert (sym);
11587             dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, debug_loc_section,
11588                                    "%s", name);
11589           }
11590           break;
11591
11592         case dw_val_class_die_ref:
11593           if (AT_ref_external (a))
11594             {
11595               if (use_debug_types)
11596                 {
11597                   comdat_type_node_ref type_node =
11598                     AT_ref (a)->die_id.die_type_node;
11599
11600                   gcc_assert (type_node);
11601                   output_signature (type_node->signature, name);
11602                 }
11603               else
11604                 {
11605                   char *sym = AT_ref (a)->die_id.die_symbol;
11606                   int size;
11607
11608                   gcc_assert (sym);
11609                   /* In DWARF2, DW_FORM_ref_addr is sized by target address
11610                      length, whereas in DWARF3 it's always sized as an
11611                      offset.  */
11612                   if (dwarf_version == 2)
11613                     size = DWARF2_ADDR_SIZE;
11614                   else
11615                     size = DWARF_OFFSET_SIZE;
11616                   dw2_asm_output_offset (size, sym, debug_info_section, "%s",
11617                                          name);
11618                 }
11619             }
11620           else
11621             {
11622               gcc_assert (AT_ref (a)->die_offset);
11623               dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
11624                                    "%s", name);
11625             }
11626           break;
11627
11628         case dw_val_class_fde_ref:
11629           {
11630             char l1[20];
11631
11632             ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
11633                                          a->dw_attr_val.v.val_fde_index * 2);
11634             dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, debug_frame_section,
11635                                    "%s", name);
11636           }
11637           break;
11638
11639         case dw_val_class_vms_delta:
11640           dw2_asm_output_vms_delta (DWARF_OFFSET_SIZE,
11641                                     AT_vms_delta2 (a), AT_vms_delta1 (a),
11642                                     "%s", name);
11643           break;
11644
11645         case dw_val_class_lbl_id:
11646           dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
11647           break;
11648
11649         case dw_val_class_lineptr:
11650           dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
11651                                  debug_line_section, "%s", name);
11652           break;
11653
11654         case dw_val_class_macptr:
11655           dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
11656                                  debug_macinfo_section, "%s", name);
11657           break;
11658
11659         case dw_val_class_str:
11660           if (AT_string_form (a) == DW_FORM_strp)
11661             dw2_asm_output_offset (DWARF_OFFSET_SIZE,
11662                                    a->dw_attr_val.v.val_str->label,
11663                                    debug_str_section,
11664                                    "%s: \"%s\"", name, AT_string (a));
11665           else
11666             dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
11667           break;
11668
11669         case dw_val_class_file:
11670           {
11671             int f = maybe_emit_file (a->dw_attr_val.v.val_file);
11672
11673             dw2_asm_output_data (constant_size (f), f, "%s (%s)", name,
11674                                  a->dw_attr_val.v.val_file->filename);
11675             break;
11676           }
11677
11678         case dw_val_class_data8:
11679           {
11680             int i;
11681
11682             for (i = 0; i < 8; i++)
11683               dw2_asm_output_data (1, a->dw_attr_val.v.val_data8[i],
11684                                    i == 0 ? "%s" : NULL, name);
11685             break;
11686           }
11687
11688         default:
11689           gcc_unreachable ();
11690         }
11691     }
11692
11693   FOR_EACH_CHILD (die, c, output_die (c));
11694
11695   /* Add null byte to terminate sibling list.  */
11696   if (die->die_child != NULL)
11697     dw2_asm_output_data (1, 0, "end of children of DIE %#lx",
11698                          (unsigned long) die->die_offset);
11699 }
11700
11701 /* Output the compilation unit that appears at the beginning of the
11702    .debug_info section, and precedes the DIE descriptions.  */
11703
11704 static void
11705 output_compilation_unit_header (void)
11706 {
11707   int ver = dwarf_version;
11708
11709   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11710     dw2_asm_output_data (4, 0xffffffff,
11711       "Initial length escape value indicating 64-bit DWARF extension");
11712   dw2_asm_output_data (DWARF_OFFSET_SIZE,
11713                        next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
11714                        "Length of Compilation Unit Info");
11715   dw2_asm_output_data (2, ver, "DWARF version number");
11716   dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
11717                          debug_abbrev_section,
11718                          "Offset Into Abbrev. Section");
11719   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
11720 }
11721
11722 /* Output the compilation unit DIE and its children.  */
11723
11724 static void
11725 output_comp_unit (dw_die_ref die, int output_if_empty)
11726 {
11727   const char *secname;
11728   char *oldsym, *tmp;
11729
11730   /* Unless we are outputting main CU, we may throw away empty ones.  */
11731   if (!output_if_empty && die->die_child == NULL)
11732     return;
11733
11734   /* Even if there are no children of this DIE, we must output the information
11735      about the compilation unit.  Otherwise, on an empty translation unit, we
11736      will generate a present, but empty, .debug_info section.  IRIX 6.5 `nm'
11737      will then complain when examining the file.  First mark all the DIEs in
11738      this CU so we know which get local refs.  */
11739   mark_dies (die);
11740
11741   build_abbrev_table (die);
11742
11743   /* Initialize the beginning DIE offset - and calculate sizes/offsets.  */
11744   next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
11745   calc_die_sizes (die);
11746
11747   oldsym = die->die_id.die_symbol;
11748   if (oldsym)
11749     {
11750       tmp = XALLOCAVEC (char, strlen (oldsym) + 24);
11751
11752       sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
11753       secname = tmp;
11754       die->die_id.die_symbol = NULL;
11755       switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
11756     }
11757   else
11758     {
11759       switch_to_section (debug_info_section);
11760       ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
11761       info_section_emitted = true;
11762     }
11763
11764   /* Output debugging information.  */
11765   output_compilation_unit_header ();
11766   output_die (die);
11767
11768   /* Leave the marks on the main CU, so we can check them in
11769      output_pubnames.  */
11770   if (oldsym)
11771     {
11772       unmark_dies (die);
11773       die->die_id.die_symbol = oldsym;
11774     }
11775 }
11776
11777 /* Output a comdat type unit DIE and its children.  */
11778
11779 static void
11780 output_comdat_type_unit (comdat_type_node *node)
11781 {
11782   const char *secname;
11783   char *tmp;
11784   int i;
11785 #if defined (OBJECT_FORMAT_ELF)
11786   tree comdat_key;
11787 #endif
11788
11789   /* First mark all the DIEs in this CU so we know which get local refs.  */
11790   mark_dies (node->root_die);
11791
11792   build_abbrev_table (node->root_die);
11793
11794   /* Initialize the beginning DIE offset - and calculate sizes/offsets.  */
11795   next_die_offset = DWARF_COMDAT_TYPE_UNIT_HEADER_SIZE;
11796   calc_die_sizes (node->root_die);
11797
11798 #if defined (OBJECT_FORMAT_ELF)
11799   secname = ".debug_types";
11800   tmp = XALLOCAVEC (char, 4 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11801   sprintf (tmp, "wt.");
11802   for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11803     sprintf (tmp + 3 + i * 2, "%02x", node->signature[i] & 0xff);
11804   comdat_key = get_identifier (tmp);
11805   targetm.asm_out.named_section (secname,
11806                                  SECTION_DEBUG | SECTION_LINKONCE,
11807                                  comdat_key);
11808 #else
11809   tmp = XALLOCAVEC (char, 18 + DWARF_TYPE_SIGNATURE_SIZE * 2);
11810   sprintf (tmp, ".gnu.linkonce.wt.");
11811   for (i = 0; i < DWARF_TYPE_SIGNATURE_SIZE; i++)
11812     sprintf (tmp + 17 + i * 2, "%02x", node->signature[i] & 0xff);
11813   secname = tmp;
11814   switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
11815 #endif
11816
11817   /* Output debugging information.  */
11818   output_compilation_unit_header ();
11819   output_signature (node->signature, "Type Signature");
11820   dw2_asm_output_data (DWARF_OFFSET_SIZE, node->type_die->die_offset,
11821                        "Offset to Type DIE");
11822   output_die (node->root_die);
11823
11824   unmark_dies (node->root_die);
11825 }
11826
11827 /* Return the DWARF2/3 pubname associated with a decl.  */
11828
11829 static const char *
11830 dwarf2_name (tree decl, int scope)
11831 {
11832   if (DECL_NAMELESS (decl))
11833     return NULL;
11834   return lang_hooks.dwarf_name (decl, scope ? 1 : 0);
11835 }
11836
11837 /* Add a new entry to .debug_pubnames if appropriate.  */
11838
11839 static void
11840 add_pubname_string (const char *str, dw_die_ref die)
11841 {
11842   if (targetm.want_debug_pub_sections)
11843     {
11844       pubname_entry e;
11845
11846       e.die = die;
11847       e.name = xstrdup (str);
11848       VEC_safe_push (pubname_entry, gc, pubname_table, &e);
11849     }
11850 }
11851
11852 static void
11853 add_pubname (tree decl, dw_die_ref die)
11854 {
11855   if (targetm.want_debug_pub_sections && TREE_PUBLIC (decl))
11856     {
11857       const char *name = dwarf2_name (decl, 1);
11858       if (name)
11859         add_pubname_string (name, die);
11860     }
11861 }
11862
11863 /* Add a new entry to .debug_pubtypes if appropriate.  */
11864
11865 static void
11866 add_pubtype (tree decl, dw_die_ref die)
11867 {
11868   pubname_entry e;
11869
11870   if (!targetm.want_debug_pub_sections)
11871     return;
11872
11873   e.name = NULL;
11874   if ((TREE_PUBLIC (decl)
11875        || is_cu_die (die->die_parent))
11876       && (die->die_tag == DW_TAG_typedef || COMPLETE_TYPE_P (decl)))
11877     {
11878       e.die = die;
11879       if (TYPE_P (decl))
11880         {
11881           if (TYPE_NAME (decl))
11882             {
11883               if (TREE_CODE (TYPE_NAME (decl)) == IDENTIFIER_NODE)
11884                 e.name = IDENTIFIER_POINTER (TYPE_NAME (decl));
11885               else if (TREE_CODE (TYPE_NAME (decl)) == TYPE_DECL
11886                        && DECL_NAME (TYPE_NAME (decl)))
11887                 e.name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (decl)));
11888               else
11889                e.name = xstrdup ((const char *) get_AT_string (die, DW_AT_name));
11890             }
11891         }
11892       else
11893         {
11894           e.name = dwarf2_name (decl, 1);
11895           if (e.name)
11896             e.name = xstrdup (e.name);
11897         }
11898
11899       /* If we don't have a name for the type, there's no point in adding
11900          it to the table.  */
11901       if (e.name && e.name[0] != '\0')
11902         VEC_safe_push (pubname_entry, gc, pubtype_table, &e);
11903     }
11904 }
11905
11906 /* Output the public names table used to speed up access to externally
11907    visible names; or the public types table used to find type definitions.  */
11908
11909 static void
11910 output_pubnames (VEC (pubname_entry, gc) * names)
11911 {
11912   unsigned i;
11913   unsigned long pubnames_length = size_of_pubnames (names);
11914   pubname_ref pub;
11915
11916   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11917     dw2_asm_output_data (4, 0xffffffff,
11918       "Initial length escape value indicating 64-bit DWARF extension");
11919   if (names == pubname_table)
11920     dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
11921                          "Length of Public Names Info");
11922   else
11923     dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
11924                          "Length of Public Type Names Info");
11925   /* Version number for pubnames/pubtypes is still 2, even in DWARF3.  */
11926   dw2_asm_output_data (2, 2, "DWARF Version");
11927   dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
11928                          debug_info_section,
11929                          "Offset of Compilation Unit Info");
11930   dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
11931                        "Compilation Unit Length");
11932
11933   FOR_EACH_VEC_ELT (pubname_entry, names, i, pub)
11934     {
11935       /* We shouldn't see pubnames for DIEs outside of the main CU.  */
11936       if (names == pubname_table)
11937         gcc_assert (pub->die->die_mark);
11938
11939       if (names != pubtype_table
11940           || pub->die->die_offset != 0
11941           || !flag_eliminate_unused_debug_types)
11942         {
11943           dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
11944                                "DIE offset");
11945
11946           dw2_asm_output_nstring (pub->name, -1, "external name");
11947         }
11948     }
11949
11950   dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
11951 }
11952
11953 /* Output the information that goes into the .debug_aranges table.
11954    Namely, define the beginning and ending address range of the
11955    text section generated for this compilation unit.  */
11956
11957 static void
11958 output_aranges (unsigned long aranges_length)
11959 {
11960   unsigned i;
11961
11962   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
11963     dw2_asm_output_data (4, 0xffffffff,
11964       "Initial length escape value indicating 64-bit DWARF extension");
11965   dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
11966                        "Length of Address Ranges Info");
11967   /* Version number for aranges is still 2, even in DWARF3.  */
11968   dw2_asm_output_data (2, 2, "DWARF Version");
11969   dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
11970                          debug_info_section,
11971                          "Offset of Compilation Unit Info");
11972   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
11973   dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
11974
11975   /* We need to align to twice the pointer size here.  */
11976   if (DWARF_ARANGES_PAD_SIZE)
11977     {
11978       /* Pad using a 2 byte words so that padding is correct for any
11979          pointer size.  */
11980       dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
11981                            2 * DWARF2_ADDR_SIZE);
11982       for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
11983         dw2_asm_output_data (2, 0, NULL);
11984     }
11985
11986   /* It is necessary not to output these entries if the sections were
11987      not used; if the sections were not used, the length will be 0 and
11988      the address may end up as 0 if the section is discarded by ld
11989      --gc-sections, leaving an invalid (0, 0) entry that can be
11990      confused with the terminator.  */
11991   if (text_section_used)
11992     {
11993       dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
11994       dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
11995                             text_section_label, "Length");
11996     }
11997   if (cold_text_section_used)
11998     {
11999       dw2_asm_output_addr (DWARF2_ADDR_SIZE, cold_text_section_label,
12000                            "Address");
12001       dw2_asm_output_delta (DWARF2_ADDR_SIZE, cold_end_label,
12002                             cold_text_section_label, "Length");
12003     }
12004
12005   if (have_multiple_function_sections)
12006     {
12007       unsigned fde_idx = 0;
12008
12009       for (fde_idx = 0; fde_idx < fde_table_in_use; fde_idx++)
12010         {
12011           dw_fde_ref fde = &fde_table[fde_idx];
12012
12013           if (!fde->in_std_section)
12014             {
12015               dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_begin,
12016                                    "Address");
12017               dw2_asm_output_delta (DWARF2_ADDR_SIZE, fde->dw_fde_end,
12018                                     fde->dw_fde_begin, "Length");
12019             }
12020           if (fde->dw_fde_second_begin && !fde->second_in_std_section)
12021             {
12022               dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_second_begin,
12023                                    "Address");
12024               dw2_asm_output_delta (DWARF2_ADDR_SIZE, fde->dw_fde_second_end,
12025                                     fde->dw_fde_second_begin, "Length");
12026             }
12027         }
12028     }
12029
12030   /* Output the terminator words.  */
12031   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
12032   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
12033 }
12034
12035 /* Add a new entry to .debug_ranges.  Return the offset at which it
12036    was placed.  */
12037
12038 static unsigned int
12039 add_ranges_num (int num)
12040 {
12041   unsigned int in_use = ranges_table_in_use;
12042
12043   if (in_use == ranges_table_allocated)
12044     {
12045       ranges_table_allocated += RANGES_TABLE_INCREMENT;
12046       ranges_table = GGC_RESIZEVEC (struct dw_ranges_struct, ranges_table,
12047                                     ranges_table_allocated);
12048       memset (ranges_table + ranges_table_in_use, 0,
12049               RANGES_TABLE_INCREMENT * sizeof (struct dw_ranges_struct));
12050     }
12051
12052   ranges_table[in_use].num = num;
12053   ranges_table_in_use = in_use + 1;
12054
12055   return in_use * 2 * DWARF2_ADDR_SIZE;
12056 }
12057
12058 /* Add a new entry to .debug_ranges corresponding to a block, or a
12059    range terminator if BLOCK is NULL.  */
12060
12061 static unsigned int
12062 add_ranges (const_tree block)
12063 {
12064   return add_ranges_num (block ? BLOCK_NUMBER (block) : 0);
12065 }
12066
12067 /* Add a new entry to .debug_ranges corresponding to a pair of
12068    labels.  */
12069
12070 static void
12071 add_ranges_by_labels (dw_die_ref die, const char *begin, const char *end,
12072                       bool *added)
12073 {
12074   unsigned int in_use = ranges_by_label_in_use;
12075   unsigned int offset;
12076
12077   if (in_use == ranges_by_label_allocated)
12078     {
12079       ranges_by_label_allocated += RANGES_TABLE_INCREMENT;
12080       ranges_by_label = GGC_RESIZEVEC (struct dw_ranges_by_label_struct,
12081                                        ranges_by_label,
12082                                        ranges_by_label_allocated);
12083       memset (ranges_by_label + ranges_by_label_in_use, 0,
12084               RANGES_TABLE_INCREMENT
12085               * sizeof (struct dw_ranges_by_label_struct));
12086     }
12087
12088   ranges_by_label[in_use].begin = begin;
12089   ranges_by_label[in_use].end = end;
12090   ranges_by_label_in_use = in_use + 1;
12091
12092   offset = add_ranges_num (-(int)in_use - 1);
12093   if (!*added)
12094     {
12095       add_AT_range_list (die, DW_AT_ranges, offset);
12096       *added = true;
12097     }
12098 }
12099
12100 static void
12101 output_ranges (void)
12102 {
12103   unsigned i;
12104   static const char *const start_fmt = "Offset %#x";
12105   const char *fmt = start_fmt;
12106
12107   for (i = 0; i < ranges_table_in_use; i++)
12108     {
12109       int block_num = ranges_table[i].num;
12110
12111       if (block_num > 0)
12112         {
12113           char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
12114           char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
12115
12116           ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
12117           ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
12118
12119           /* If all code is in the text section, then the compilation
12120              unit base address defaults to DW_AT_low_pc, which is the
12121              base of the text section.  */
12122           if (!have_multiple_function_sections)
12123             {
12124               dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
12125                                     text_section_label,
12126                                     fmt, i * 2 * DWARF2_ADDR_SIZE);
12127               dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
12128                                     text_section_label, NULL);
12129             }
12130
12131           /* Otherwise, the compilation unit base address is zero,
12132              which allows us to use absolute addresses, and not worry
12133              about whether the target supports cross-section
12134              arithmetic.  */
12135           else
12136             {
12137               dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
12138                                    fmt, i * 2 * DWARF2_ADDR_SIZE);
12139               dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
12140             }
12141
12142           fmt = NULL;
12143         }
12144
12145       /* Negative block_num stands for an index into ranges_by_label.  */
12146       else if (block_num < 0)
12147         {
12148           int lab_idx = - block_num - 1;
12149
12150           if (!have_multiple_function_sections)
12151             {
12152               gcc_unreachable ();
12153 #if 0
12154               /* If we ever use add_ranges_by_labels () for a single
12155                  function section, all we have to do is to take out
12156                  the #if 0 above.  */
12157               dw2_asm_output_delta (DWARF2_ADDR_SIZE,
12158                                     ranges_by_label[lab_idx].begin,
12159                                     text_section_label,
12160                                     fmt, i * 2 * DWARF2_ADDR_SIZE);
12161               dw2_asm_output_delta (DWARF2_ADDR_SIZE,
12162                                     ranges_by_label[lab_idx].end,
12163                                     text_section_label, NULL);
12164 #endif
12165             }
12166           else
12167             {
12168               dw2_asm_output_addr (DWARF2_ADDR_SIZE,
12169                                    ranges_by_label[lab_idx].begin,
12170                                    fmt, i * 2 * DWARF2_ADDR_SIZE);
12171               dw2_asm_output_addr (DWARF2_ADDR_SIZE,
12172                                    ranges_by_label[lab_idx].end,
12173                                    NULL);
12174             }
12175         }
12176       else
12177         {
12178           dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
12179           dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
12180           fmt = start_fmt;
12181         }
12182     }
12183 }
12184
12185 /* Data structure containing information about input files.  */
12186 struct file_info
12187 {
12188   const char *path;     /* Complete file name.  */
12189   const char *fname;    /* File name part.  */
12190   int length;           /* Length of entire string.  */
12191   struct dwarf_file_data * file_idx;    /* Index in input file table.  */
12192   int dir_idx;          /* Index in directory table.  */
12193 };
12194
12195 /* Data structure containing information about directories with source
12196    files.  */
12197 struct dir_info
12198 {
12199   const char *path;     /* Path including directory name.  */
12200   int length;           /* Path length.  */
12201   int prefix;           /* Index of directory entry which is a prefix.  */
12202   int count;            /* Number of files in this directory.  */
12203   int dir_idx;          /* Index of directory used as base.  */
12204 };
12205
12206 /* Callback function for file_info comparison.  We sort by looking at
12207    the directories in the path.  */
12208
12209 static int
12210 file_info_cmp (const void *p1, const void *p2)
12211 {
12212   const struct file_info *const s1 = (const struct file_info *) p1;
12213   const struct file_info *const s2 = (const struct file_info *) p2;
12214   const unsigned char *cp1;
12215   const unsigned char *cp2;
12216
12217   /* Take care of file names without directories.  We need to make sure that
12218      we return consistent values to qsort since some will get confused if
12219      we return the same value when identical operands are passed in opposite
12220      orders.  So if neither has a directory, return 0 and otherwise return
12221      1 or -1 depending on which one has the directory.  */
12222   if ((s1->path == s1->fname || s2->path == s2->fname))
12223     return (s2->path == s2->fname) - (s1->path == s1->fname);
12224
12225   cp1 = (const unsigned char *) s1->path;
12226   cp2 = (const unsigned char *) s2->path;
12227
12228   while (1)
12229     {
12230       ++cp1;
12231       ++cp2;
12232       /* Reached the end of the first path?  If so, handle like above.  */
12233       if ((cp1 == (const unsigned char *) s1->fname)
12234           || (cp2 == (const unsigned char *) s2->fname))
12235         return ((cp2 == (const unsigned char *) s2->fname)
12236                 - (cp1 == (const unsigned char *) s1->fname));
12237
12238       /* Character of current path component the same?  */
12239       else if (*cp1 != *cp2)
12240         return *cp1 - *cp2;
12241     }
12242 }
12243
12244 struct file_name_acquire_data
12245 {
12246   struct file_info *files;
12247   int used_files;
12248   int max_files;
12249 };
12250
12251 /* Traversal function for the hash table.  */
12252
12253 static int
12254 file_name_acquire (void ** slot, void *data)
12255 {
12256   struct file_name_acquire_data *fnad = (struct file_name_acquire_data *) data;
12257   struct dwarf_file_data *d = (struct dwarf_file_data *) *slot;
12258   struct file_info *fi;
12259   const char *f;
12260
12261   gcc_assert (fnad->max_files >= d->emitted_number);
12262
12263   if (! d->emitted_number)
12264     return 1;
12265
12266   gcc_assert (fnad->max_files != fnad->used_files);
12267
12268   fi = fnad->files + fnad->used_files++;
12269
12270   /* Skip all leading "./".  */
12271   f = d->filename;
12272   while (f[0] == '.' && IS_DIR_SEPARATOR (f[1]))
12273     f += 2;
12274
12275   /* Create a new array entry.  */
12276   fi->path = f;
12277   fi->length = strlen (f);
12278   fi->file_idx = d;
12279
12280   /* Search for the file name part.  */
12281   f = strrchr (f, DIR_SEPARATOR);
12282 #if defined (DIR_SEPARATOR_2)
12283   {
12284     char *g = strrchr (fi->path, DIR_SEPARATOR_2);
12285
12286     if (g != NULL)
12287       {
12288         if (f == NULL || f < g)
12289           f = g;
12290       }
12291   }
12292 #endif
12293
12294   fi->fname = f == NULL ? fi->path : f + 1;
12295   return 1;
12296 }
12297
12298 /* Output the directory table and the file name table.  We try to minimize
12299    the total amount of memory needed.  A heuristic is used to avoid large
12300    slowdowns with many input files.  */
12301
12302 static void
12303 output_file_names (void)
12304 {
12305   struct file_name_acquire_data fnad;
12306   int numfiles;
12307   struct file_info *files;
12308   struct dir_info *dirs;
12309   int *saved;
12310   int *savehere;
12311   int *backmap;
12312   int ndirs;
12313   int idx_offset;
12314   int i;
12315
12316   if (!last_emitted_file)
12317     {
12318       dw2_asm_output_data (1, 0, "End directory table");
12319       dw2_asm_output_data (1, 0, "End file name table");
12320       return;
12321     }
12322
12323   numfiles = last_emitted_file->emitted_number;
12324
12325   /* Allocate the various arrays we need.  */
12326   files = XALLOCAVEC (struct file_info, numfiles);
12327   dirs = XALLOCAVEC (struct dir_info, numfiles);
12328
12329   fnad.files = files;
12330   fnad.used_files = 0;
12331   fnad.max_files = numfiles;
12332   htab_traverse (file_table, file_name_acquire, &fnad);
12333   gcc_assert (fnad.used_files == fnad.max_files);
12334
12335   qsort (files, numfiles, sizeof (files[0]), file_info_cmp);
12336
12337   /* Find all the different directories used.  */
12338   dirs[0].path = files[0].path;
12339   dirs[0].length = files[0].fname - files[0].path;
12340   dirs[0].prefix = -1;
12341   dirs[0].count = 1;
12342   dirs[0].dir_idx = 0;
12343   files[0].dir_idx = 0;
12344   ndirs = 1;
12345
12346   for (i = 1; i < numfiles; i++)
12347     if (files[i].fname - files[i].path == dirs[ndirs - 1].length
12348         && memcmp (dirs[ndirs - 1].path, files[i].path,
12349                    dirs[ndirs - 1].length) == 0)
12350       {
12351         /* Same directory as last entry.  */
12352         files[i].dir_idx = ndirs - 1;
12353         ++dirs[ndirs - 1].count;
12354       }
12355     else
12356       {
12357         int j;
12358
12359         /* This is a new directory.  */
12360         dirs[ndirs].path = files[i].path;
12361         dirs[ndirs].length = files[i].fname - files[i].path;
12362         dirs[ndirs].count = 1;
12363         dirs[ndirs].dir_idx = ndirs;
12364         files[i].dir_idx = ndirs;
12365
12366         /* Search for a prefix.  */
12367         dirs[ndirs].prefix = -1;
12368         for (j = 0; j < ndirs; j++)
12369           if (dirs[j].length < dirs[ndirs].length
12370               && dirs[j].length > 1
12371               && (dirs[ndirs].prefix == -1
12372                   || dirs[j].length > dirs[dirs[ndirs].prefix].length)
12373               && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
12374             dirs[ndirs].prefix = j;
12375
12376         ++ndirs;
12377       }
12378
12379   /* Now to the actual work.  We have to find a subset of the directories which
12380      allow expressing the file name using references to the directory table
12381      with the least amount of characters.  We do not do an exhaustive search
12382      where we would have to check out every combination of every single
12383      possible prefix.  Instead we use a heuristic which provides nearly optimal
12384      results in most cases and never is much off.  */
12385   saved = XALLOCAVEC (int, ndirs);
12386   savehere = XALLOCAVEC (int, ndirs);
12387
12388   memset (saved, '\0', ndirs * sizeof (saved[0]));
12389   for (i = 0; i < ndirs; i++)
12390     {
12391       int j;
12392       int total;
12393
12394       /* We can always save some space for the current directory.  But this
12395          does not mean it will be enough to justify adding the directory.  */
12396       savehere[i] = dirs[i].length;
12397       total = (savehere[i] - saved[i]) * dirs[i].count;
12398
12399       for (j = i + 1; j < ndirs; j++)
12400         {
12401           savehere[j] = 0;
12402           if (saved[j] < dirs[i].length)
12403             {
12404               /* Determine whether the dirs[i] path is a prefix of the
12405                  dirs[j] path.  */
12406               int k;
12407
12408               k = dirs[j].prefix;
12409               while (k != -1 && k != (int) i)
12410                 k = dirs[k].prefix;
12411
12412               if (k == (int) i)
12413                 {
12414                   /* Yes it is.  We can possibly save some memory by
12415                      writing the filenames in dirs[j] relative to
12416                      dirs[i].  */
12417                   savehere[j] = dirs[i].length;
12418                   total += (savehere[j] - saved[j]) * dirs[j].count;
12419                 }
12420             }
12421         }
12422
12423       /* Check whether we can save enough to justify adding the dirs[i]
12424          directory.  */
12425       if (total > dirs[i].length + 1)
12426         {
12427           /* It's worthwhile adding.  */
12428           for (j = i; j < ndirs; j++)
12429             if (savehere[j] > 0)
12430               {
12431                 /* Remember how much we saved for this directory so far.  */
12432                 saved[j] = savehere[j];
12433
12434                 /* Remember the prefix directory.  */
12435                 dirs[j].dir_idx = i;
12436               }
12437         }
12438     }
12439
12440   /* Emit the directory name table.  */
12441   idx_offset = dirs[0].length > 0 ? 1 : 0;
12442   for (i = 1 - idx_offset; i < ndirs; i++)
12443     dw2_asm_output_nstring (dirs[i].path,
12444                             dirs[i].length
12445                              - !DWARF2_DIR_SHOULD_END_WITH_SEPARATOR,
12446                             "Directory Entry: %#x", i + idx_offset);
12447
12448   dw2_asm_output_data (1, 0, "End directory table");
12449
12450   /* We have to emit them in the order of emitted_number since that's
12451      used in the debug info generation.  To do this efficiently we
12452      generate a back-mapping of the indices first.  */
12453   backmap = XALLOCAVEC (int, numfiles);
12454   for (i = 0; i < numfiles; i++)
12455     backmap[files[i].file_idx->emitted_number - 1] = i;
12456
12457   /* Now write all the file names.  */
12458   for (i = 0; i < numfiles; i++)
12459     {
12460       int file_idx = backmap[i];
12461       int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
12462
12463 #ifdef VMS_DEBUGGING_INFO
12464 #define MAX_VMS_VERSION_LEN 6 /* ";32768" */
12465
12466       /* Setting these fields can lead to debugger miscomparisons,
12467          but VMS Debug requires them to be set correctly.  */
12468
12469       int ver;
12470       long long cdt;
12471       long siz;
12472       int maxfilelen = strlen (files[file_idx].path)
12473                                + dirs[dir_idx].length
12474                                + MAX_VMS_VERSION_LEN + 1;
12475       char *filebuf = XALLOCAVEC (char, maxfilelen);
12476
12477       vms_file_stats_name (files[file_idx].path, 0, 0, 0, &ver);
12478       snprintf (filebuf, maxfilelen, "%s;%d",
12479                 files[file_idx].path + dirs[dir_idx].length, ver);
12480
12481       dw2_asm_output_nstring
12482         (filebuf, -1, "File Entry: %#x", (unsigned) i + 1);
12483
12484       /* Include directory index.  */
12485       dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
12486
12487       /* Modification time.  */
12488       dw2_asm_output_data_uleb128
12489         ((vms_file_stats_name (files[file_idx].path, &cdt, 0, 0, 0) == 0)
12490           ? cdt : 0,
12491          NULL);
12492
12493       /* File length in bytes.  */
12494       dw2_asm_output_data_uleb128
12495         ((vms_file_stats_name (files[file_idx].path, 0, &siz, 0, 0) == 0)
12496           ? siz : 0,
12497          NULL);
12498 #else
12499       dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
12500                               "File Entry: %#x", (unsigned) i + 1);
12501
12502       /* Include directory index.  */
12503       dw2_asm_output_data_uleb128 (dir_idx + idx_offset, NULL);
12504
12505       /* Modification time.  */
12506       dw2_asm_output_data_uleb128 (0, NULL);
12507
12508       /* File length in bytes.  */
12509       dw2_asm_output_data_uleb128 (0, NULL);
12510 #endif /* VMS_DEBUGGING_INFO */
12511     }
12512
12513   dw2_asm_output_data (1, 0, "End file name table");
12514 }
12515
12516
12517 /* Output one line number table into the .debug_line section.  */
12518
12519 static void
12520 output_one_line_info_table (dw_line_info_table *table)
12521 {
12522   char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
12523   unsigned int current_line = 1;
12524   bool current_is_stmt = DWARF_LINE_DEFAULT_IS_STMT_START;
12525   dw_line_info_entry *ent;
12526   size_t i;
12527
12528   FOR_EACH_VEC_ELT (dw_line_info_entry, table->entries, i, ent)
12529     {
12530       switch (ent->opcode)
12531         {
12532         case LI_set_address:
12533           /* ??? Unfortunately, we have little choice here currently, and
12534              must always use the most general form.  GCC does not know the
12535              address delta itself, so we can't use DW_LNS_advance_pc.  Many
12536              ports do have length attributes which will give an upper bound
12537              on the address range.  We could perhaps use length attributes
12538              to determine when it is safe to use DW_LNS_fixed_advance_pc.  */
12539           ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, ent->val);
12540
12541           /* This can handle any delta.  This takes
12542              4+DWARF2_ADDR_SIZE bytes.  */
12543           dw2_asm_output_data (1, 0, "set address %s", line_label);
12544           dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12545           dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12546           dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
12547           break;
12548
12549         case LI_set_line:
12550           if (ent->val == current_line)
12551             {
12552               /* We still need to start a new row, so output a copy insn.  */
12553               dw2_asm_output_data (1, DW_LNS_copy,
12554                                    "copy line %u", current_line);
12555             }
12556           else
12557             {
12558               int line_offset = ent->val - current_line;
12559               int line_delta = line_offset - DWARF_LINE_BASE;
12560
12561               current_line = ent->val;
12562               if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
12563                 {
12564                   /* This can handle deltas from -10 to 234, using the current
12565                      definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE.
12566                      This takes 1 byte.  */
12567                   dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
12568                                        "line %u", current_line);
12569                 }
12570               else
12571                 {
12572                   /* This can handle any delta.  This takes at least 4 bytes,
12573                      depending on the value being encoded.  */
12574                   dw2_asm_output_data (1, DW_LNS_advance_line,
12575                                        "advance to line %u", current_line);
12576                   dw2_asm_output_data_sleb128 (line_offset, NULL);
12577                   dw2_asm_output_data (1, DW_LNS_copy, NULL);
12578                 }
12579             }
12580           break;
12581
12582         case LI_set_file:
12583           dw2_asm_output_data (1, DW_LNS_set_file, "set file %u", ent->val);
12584           dw2_asm_output_data_uleb128 (ent->val, "%u", ent->val);
12585           break;
12586
12587         case LI_set_column:
12588           dw2_asm_output_data (1, DW_LNS_set_column, "column %u", ent->val);
12589           dw2_asm_output_data_uleb128 (ent->val, "%u", ent->val);
12590           break;
12591
12592         case LI_negate_stmt:
12593           current_is_stmt = !current_is_stmt;
12594           dw2_asm_output_data (1, DW_LNS_negate_stmt,
12595                                "is_stmt %d", current_is_stmt);
12596           break;
12597
12598         case LI_set_prologue_end:
12599           dw2_asm_output_data (1, DW_LNS_set_prologue_end,
12600                                "set prologue end");
12601           break;
12602           
12603         case LI_set_epilogue_begin:
12604           dw2_asm_output_data (1, DW_LNS_set_epilogue_begin,
12605                                "set epilogue begin");
12606           break;
12607
12608         case LI_set_discriminator:
12609           dw2_asm_output_data (1, 0, "discriminator %u", ent->val);
12610           dw2_asm_output_data_uleb128 (1 + size_of_uleb128 (ent->val), NULL);
12611           dw2_asm_output_data (1, DW_LNE_set_discriminator, NULL);
12612           dw2_asm_output_data_uleb128 (ent->val, NULL);
12613           break;
12614         }
12615     }
12616
12617   /* Emit debug info for the address of the end of the table.  */
12618   dw2_asm_output_data (1, 0, "set address %s", table->end_label);
12619   dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
12620   dw2_asm_output_data (1, DW_LNE_set_address, NULL);
12621   dw2_asm_output_addr (DWARF2_ADDR_SIZE, table->end_label, NULL);
12622
12623   dw2_asm_output_data (1, 0, "end sequence");
12624   dw2_asm_output_data_uleb128 (1, NULL);
12625   dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
12626 }
12627
12628 /* Output the source line number correspondence information.  This
12629    information goes into the .debug_line section.  */
12630
12631 static void
12632 output_line_info (void)
12633 {
12634   char l1[20], l2[20], p1[20], p2[20];
12635   int ver = dwarf_version;
12636   bool saw_one = false;
12637   int opc;
12638
12639   ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
12640   ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
12641   ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
12642   ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
12643
12644   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
12645     dw2_asm_output_data (4, 0xffffffff,
12646       "Initial length escape value indicating 64-bit DWARF extension");
12647   dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
12648                         "Length of Source Line Info");
12649   ASM_OUTPUT_LABEL (asm_out_file, l1);
12650
12651   dw2_asm_output_data (2, ver, "DWARF Version");
12652   dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
12653   ASM_OUTPUT_LABEL (asm_out_file, p1);
12654
12655   /* Define the architecture-dependent minimum instruction length (in bytes).
12656      In this implementation of DWARF, this field is used for information
12657      purposes only.  Since GCC generates assembly language, we have no
12658      a priori knowledge of how many instruction bytes are generated for each
12659      source line, and therefore can use only the DW_LNE_set_address and
12660      DW_LNS_fixed_advance_pc line information commands.  Accordingly, we fix
12661      this as '1', which is "correct enough" for all architectures,
12662      and don't let the target override.  */
12663   dw2_asm_output_data (1, 1, "Minimum Instruction Length");
12664
12665   if (ver >= 4)
12666     dw2_asm_output_data (1, DWARF_LINE_DEFAULT_MAX_OPS_PER_INSN,
12667                          "Maximum Operations Per Instruction");
12668   dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
12669                        "Default is_stmt_start flag");
12670   dw2_asm_output_data (1, DWARF_LINE_BASE,
12671                        "Line Base Value (Special Opcodes)");
12672   dw2_asm_output_data (1, DWARF_LINE_RANGE,
12673                        "Line Range Value (Special Opcodes)");
12674   dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
12675                        "Special Opcode Base");
12676
12677   for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
12678     {
12679       int n_op_args;
12680       switch (opc)
12681         {
12682         case DW_LNS_advance_pc:
12683         case DW_LNS_advance_line:
12684         case DW_LNS_set_file:
12685         case DW_LNS_set_column:
12686         case DW_LNS_fixed_advance_pc:
12687         case DW_LNS_set_isa:
12688           n_op_args = 1;
12689           break;
12690         default:
12691           n_op_args = 0;
12692           break;
12693         }
12694
12695       dw2_asm_output_data (1, n_op_args, "opcode: %#x has %d args",
12696                            opc, n_op_args);
12697     }
12698
12699   /* Write out the information about the files we use.  */
12700   output_file_names ();
12701   ASM_OUTPUT_LABEL (asm_out_file, p2);
12702
12703   if (separate_line_info)
12704     {
12705       dw_line_info_table *table;
12706       size_t i;
12707
12708       FOR_EACH_VEC_ELT (dw_line_info_table_p, separate_line_info, i, table)
12709         if (table->in_use)
12710           {
12711             output_one_line_info_table (table);
12712             saw_one = true;
12713           }
12714     }
12715   if (cold_text_section_line_info && cold_text_section_line_info->in_use)
12716     {
12717       output_one_line_info_table (cold_text_section_line_info);
12718       saw_one = true;
12719     }
12720
12721   /* ??? Some Darwin linkers crash on a .debug_line section with no
12722      sequences.  Further, merely a DW_LNE_end_sequence entry is not
12723      sufficient -- the address column must also be initialized.
12724      Make sure to output at least one set_address/end_sequence pair,
12725      choosing .text since that section is always present.  */
12726   if (text_section_line_info->in_use || !saw_one)
12727     output_one_line_info_table (text_section_line_info);
12728
12729   /* Output the marker for the end of the line number info.  */
12730   ASM_OUTPUT_LABEL (asm_out_file, l2);
12731 }
12732 \f
12733 /* Given a pointer to a tree node for some base type, return a pointer to
12734    a DIE that describes the given type.
12735
12736    This routine must only be called for GCC type nodes that correspond to
12737    Dwarf base (fundamental) types.  */
12738
12739 static dw_die_ref
12740 base_type_die (tree type)
12741 {
12742   dw_die_ref base_type_result;
12743   enum dwarf_type encoding;
12744
12745   if (TREE_CODE (type) == ERROR_MARK || TREE_CODE (type) == VOID_TYPE)
12746     return 0;
12747
12748   /* If this is a subtype that should not be emitted as a subrange type,
12749      use the base type.  See subrange_type_for_debug_p.  */
12750   if (TREE_CODE (type) == INTEGER_TYPE && TREE_TYPE (type) != NULL_TREE)
12751     type = TREE_TYPE (type);
12752
12753   switch (TREE_CODE (type))
12754     {
12755     case INTEGER_TYPE:
12756       if ((dwarf_version >= 4 || !dwarf_strict)
12757           && TYPE_NAME (type)
12758           && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
12759           && DECL_IS_BUILTIN (TYPE_NAME (type))
12760           && DECL_NAME (TYPE_NAME (type)))
12761         {
12762           const char *name = IDENTIFIER_POINTER (DECL_NAME (TYPE_NAME (type)));
12763           if (strcmp (name, "char16_t") == 0
12764               || strcmp (name, "char32_t") == 0)
12765             {
12766               encoding = DW_ATE_UTF;
12767               break;
12768             }
12769         }
12770       if (TYPE_STRING_FLAG (type))
12771         {
12772           if (TYPE_UNSIGNED (type))
12773             encoding = DW_ATE_unsigned_char;
12774           else
12775             encoding = DW_ATE_signed_char;
12776         }
12777       else if (TYPE_UNSIGNED (type))
12778         encoding = DW_ATE_unsigned;
12779       else
12780         encoding = DW_ATE_signed;
12781       break;
12782
12783     case REAL_TYPE:
12784       if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type)))
12785         {
12786           if (dwarf_version >= 3 || !dwarf_strict)
12787             encoding = DW_ATE_decimal_float;
12788           else
12789             encoding = DW_ATE_lo_user;
12790         }
12791       else
12792         encoding = DW_ATE_float;
12793       break;
12794
12795     case FIXED_POINT_TYPE:
12796       if (!(dwarf_version >= 3 || !dwarf_strict))
12797         encoding = DW_ATE_lo_user;
12798       else if (TYPE_UNSIGNED (type))
12799         encoding = DW_ATE_unsigned_fixed;
12800       else
12801         encoding = DW_ATE_signed_fixed;
12802       break;
12803
12804       /* Dwarf2 doesn't know anything about complex ints, so use
12805          a user defined type for it.  */
12806     case COMPLEX_TYPE:
12807       if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
12808         encoding = DW_ATE_complex_float;
12809       else
12810         encoding = DW_ATE_lo_user;
12811       break;
12812
12813     case BOOLEAN_TYPE:
12814       /* GNU FORTRAN/Ada/C++ BOOLEAN type.  */
12815       encoding = DW_ATE_boolean;
12816       break;
12817
12818     default:
12819       /* No other TREE_CODEs are Dwarf fundamental types.  */
12820       gcc_unreachable ();
12821     }
12822
12823   base_type_result = new_die (DW_TAG_base_type, comp_unit_die (), type);
12824
12825   add_AT_unsigned (base_type_result, DW_AT_byte_size,
12826                    int_size_in_bytes (type));
12827   add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
12828
12829   return base_type_result;
12830 }
12831
12832 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
12833    given input type is a Dwarf "fundamental" type.  Otherwise return null.  */
12834
12835 static inline int
12836 is_base_type (tree type)
12837 {
12838   switch (TREE_CODE (type))
12839     {
12840     case ERROR_MARK:
12841     case VOID_TYPE:
12842     case INTEGER_TYPE:
12843     case REAL_TYPE:
12844     case FIXED_POINT_TYPE:
12845     case COMPLEX_TYPE:
12846     case BOOLEAN_TYPE:
12847       return 1;
12848
12849     case ARRAY_TYPE:
12850     case RECORD_TYPE:
12851     case UNION_TYPE:
12852     case QUAL_UNION_TYPE:
12853     case ENUMERAL_TYPE:
12854     case FUNCTION_TYPE:
12855     case METHOD_TYPE:
12856     case POINTER_TYPE:
12857     case REFERENCE_TYPE:
12858     case NULLPTR_TYPE:
12859     case OFFSET_TYPE:
12860     case LANG_TYPE:
12861     case VECTOR_TYPE:
12862       return 0;
12863
12864     default:
12865       gcc_unreachable ();
12866     }
12867
12868   return 0;
12869 }
12870
12871 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
12872    node, return the size in bits for the type if it is a constant, or else
12873    return the alignment for the type if the type's size is not constant, or
12874    else return BITS_PER_WORD if the type actually turns out to be an
12875    ERROR_MARK node.  */
12876
12877 static inline unsigned HOST_WIDE_INT
12878 simple_type_size_in_bits (const_tree type)
12879 {
12880   if (TREE_CODE (type) == ERROR_MARK)
12881     return BITS_PER_WORD;
12882   else if (TYPE_SIZE (type) == NULL_TREE)
12883     return 0;
12884   else if (host_integerp (TYPE_SIZE (type), 1))
12885     return tree_low_cst (TYPE_SIZE (type), 1);
12886   else
12887     return TYPE_ALIGN (type);
12888 }
12889
12890 /* Similarly, but return a double_int instead of UHWI.  */
12891
12892 static inline double_int
12893 double_int_type_size_in_bits (const_tree type)
12894 {
12895   if (TREE_CODE (type) == ERROR_MARK)
12896     return uhwi_to_double_int (BITS_PER_WORD);
12897   else if (TYPE_SIZE (type) == NULL_TREE)
12898     return double_int_zero;
12899   else if (TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST)
12900     return tree_to_double_int (TYPE_SIZE (type));
12901   else
12902     return uhwi_to_double_int (TYPE_ALIGN (type));
12903 }
12904
12905 /*  Given a pointer to a tree node for a subrange type, return a pointer
12906     to a DIE that describes the given type.  */
12907
12908 static dw_die_ref
12909 subrange_type_die (tree type, tree low, tree high, dw_die_ref context_die)
12910 {
12911   dw_die_ref subrange_die;
12912   const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
12913
12914   if (context_die == NULL)
12915     context_die = comp_unit_die ();
12916
12917   subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
12918
12919   if (int_size_in_bytes (TREE_TYPE (type)) != size_in_bytes)
12920     {
12921       /* The size of the subrange type and its base type do not match,
12922          so we need to generate a size attribute for the subrange type.  */
12923       add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
12924     }
12925
12926   if (low)
12927     add_bound_info (subrange_die, DW_AT_lower_bound, low);
12928   if (high)
12929     add_bound_info (subrange_die, DW_AT_upper_bound, high);
12930
12931   return subrange_die;
12932 }
12933
12934 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
12935    entry that chains various modifiers in front of the given type.  */
12936
12937 static dw_die_ref
12938 modified_type_die (tree type, int is_const_type, int is_volatile_type,
12939                    dw_die_ref context_die)
12940 {
12941   enum tree_code code = TREE_CODE (type);
12942   dw_die_ref mod_type_die;
12943   dw_die_ref sub_die = NULL;
12944   tree item_type = NULL;
12945   tree qualified_type;
12946   tree name, low, high;
12947
12948   if (code == ERROR_MARK)
12949     return NULL;
12950
12951   /* See if we already have the appropriately qualified variant of
12952      this type.  */
12953   qualified_type
12954     = get_qualified_type (type,
12955                           ((is_const_type ? TYPE_QUAL_CONST : 0)
12956                            | (is_volatile_type ? TYPE_QUAL_VOLATILE : 0)));
12957
12958   if (qualified_type == sizetype
12959       && TYPE_NAME (qualified_type)
12960       && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL)
12961     {
12962       tree t = TREE_TYPE (TYPE_NAME (qualified_type));
12963
12964       gcc_checking_assert (TREE_CODE (t) == INTEGER_TYPE
12965                            && TYPE_PRECISION (t)
12966                            == TYPE_PRECISION (qualified_type)
12967                            && TYPE_UNSIGNED (t)
12968                            == TYPE_UNSIGNED (qualified_type));
12969       qualified_type = t;
12970     }
12971
12972   /* If we do, then we can just use its DIE, if it exists.  */
12973   if (qualified_type)
12974     {
12975       mod_type_die = lookup_type_die (qualified_type);
12976       if (mod_type_die)
12977         return mod_type_die;
12978     }
12979
12980   name = qualified_type ? TYPE_NAME (qualified_type) : NULL;
12981
12982   /* Handle C typedef types.  */
12983   if (name && TREE_CODE (name) == TYPE_DECL && DECL_ORIGINAL_TYPE (name)
12984       && !DECL_ARTIFICIAL (name))
12985     {
12986       tree dtype = TREE_TYPE (name);
12987
12988       if (qualified_type == dtype)
12989         {
12990           /* For a named type, use the typedef.  */
12991           gen_type_die (qualified_type, context_die);
12992           return lookup_type_die (qualified_type);
12993         }
12994       else if (is_const_type < TYPE_READONLY (dtype)
12995                || is_volatile_type < TYPE_VOLATILE (dtype)
12996                || (is_const_type <= TYPE_READONLY (dtype)
12997                    && is_volatile_type <= TYPE_VOLATILE (dtype)
12998                    && DECL_ORIGINAL_TYPE (name) != type))
12999         /* cv-unqualified version of named type.  Just use the unnamed
13000            type to which it refers.  */
13001         return modified_type_die (DECL_ORIGINAL_TYPE (name),
13002                                   is_const_type, is_volatile_type,
13003                                   context_die);
13004       /* Else cv-qualified version of named type; fall through.  */
13005     }
13006
13007   if (is_const_type
13008       /* If both is_const_type and is_volatile_type, prefer the path
13009          which leads to a qualified type.  */
13010       && (!is_volatile_type
13011           || get_qualified_type (type, TYPE_QUAL_CONST) == NULL_TREE
13012           || get_qualified_type (type, TYPE_QUAL_VOLATILE) != NULL_TREE))
13013     {
13014       mod_type_die = new_die (DW_TAG_const_type, comp_unit_die (), type);
13015       sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
13016     }
13017   else if (is_volatile_type)
13018     {
13019       mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die (), type);
13020       sub_die = modified_type_die (type, is_const_type, 0, context_die);
13021     }
13022   else if (code == POINTER_TYPE)
13023     {
13024       mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die (), type);
13025       add_AT_unsigned (mod_type_die, DW_AT_byte_size,
13026                        simple_type_size_in_bits (type) / BITS_PER_UNIT);
13027       item_type = TREE_TYPE (type);
13028       if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type)))
13029         add_AT_unsigned (mod_type_die, DW_AT_address_class,
13030                          TYPE_ADDR_SPACE (item_type));
13031     }
13032   else if (code == REFERENCE_TYPE)
13033     {
13034       if (TYPE_REF_IS_RVALUE (type) && dwarf_version >= 4)
13035         mod_type_die = new_die (DW_TAG_rvalue_reference_type, comp_unit_die (),
13036                                 type);
13037       else
13038         mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die (), type);
13039       add_AT_unsigned (mod_type_die, DW_AT_byte_size,
13040                        simple_type_size_in_bits (type) / BITS_PER_UNIT);
13041       item_type = TREE_TYPE (type);
13042       if (!ADDR_SPACE_GENERIC_P (TYPE_ADDR_SPACE (item_type)))
13043         add_AT_unsigned (mod_type_die, DW_AT_address_class,
13044                          TYPE_ADDR_SPACE (item_type));
13045     }
13046   else if (code == INTEGER_TYPE
13047            && TREE_TYPE (type) != NULL_TREE
13048            && subrange_type_for_debug_p (type, &low, &high))
13049     {
13050       mod_type_die = subrange_type_die (type, low, high, context_die);
13051       item_type = TREE_TYPE (type);
13052     }
13053   else if (is_base_type (type))
13054     mod_type_die = base_type_die (type);
13055   else
13056     {
13057       gen_type_die (type, context_die);
13058
13059       /* We have to get the type_main_variant here (and pass that to the
13060          `lookup_type_die' routine) because the ..._TYPE node we have
13061          might simply be a *copy* of some original type node (where the
13062          copy was created to help us keep track of typedef names) and
13063          that copy might have a different TYPE_UID from the original
13064          ..._TYPE node.  */
13065       if (TREE_CODE (type) != VECTOR_TYPE)
13066         return lookup_type_die (type_main_variant (type));
13067       else
13068         /* Vectors have the debugging information in the type,
13069            not the main variant.  */
13070         return lookup_type_die (type);
13071     }
13072
13073   /* Builtin types don't have a DECL_ORIGINAL_TYPE.  For those,
13074      don't output a DW_TAG_typedef, since there isn't one in the
13075      user's program; just attach a DW_AT_name to the type.
13076      Don't attach a DW_AT_name to DW_TAG_const_type or DW_TAG_volatile_type
13077      if the base type already has the same name.  */
13078   if (name
13079       && ((TREE_CODE (name) != TYPE_DECL
13080            && (qualified_type == TYPE_MAIN_VARIANT (type)
13081                || (!is_const_type && !is_volatile_type)))
13082           || (TREE_CODE (name) == TYPE_DECL
13083               && TREE_TYPE (name) == qualified_type
13084               && DECL_NAME (name))))
13085     {
13086       if (TREE_CODE (name) == TYPE_DECL)
13087         /* Could just call add_name_and_src_coords_attributes here,
13088            but since this is a builtin type it doesn't have any
13089            useful source coordinates anyway.  */
13090         name = DECL_NAME (name);
13091       add_name_attribute (mod_type_die, IDENTIFIER_POINTER (name));
13092       add_gnat_descriptive_type_attribute (mod_type_die, type, context_die);
13093     }
13094   /* This probably indicates a bug.  */
13095   else if (mod_type_die && mod_type_die->die_tag == DW_TAG_base_type)
13096     add_name_attribute (mod_type_die, "__unknown__");
13097
13098   if (qualified_type)
13099     equate_type_number_to_die (qualified_type, mod_type_die);
13100
13101   if (item_type)
13102     /* We must do this after the equate_type_number_to_die call, in case
13103        this is a recursive type.  This ensures that the modified_type_die
13104        recursion will terminate even if the type is recursive.  Recursive
13105        types are possible in Ada.  */
13106     sub_die = modified_type_die (item_type,
13107                                  TYPE_READONLY (item_type),
13108                                  TYPE_VOLATILE (item_type),
13109                                  context_die);
13110
13111   if (sub_die != NULL)
13112     add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
13113
13114   return mod_type_die;
13115 }
13116
13117 /* Generate DIEs for the generic parameters of T.
13118    T must be either a generic type or a generic function.
13119    See http://gcc.gnu.org/wiki/TemplateParmsDwarf for more.  */
13120
13121 static void
13122 gen_generic_params_dies (tree t)
13123 {
13124   tree parms, args;
13125   int parms_num, i;
13126   dw_die_ref die = NULL;
13127
13128   if (!t || (TYPE_P (t) && !COMPLETE_TYPE_P (t)))
13129     return;
13130
13131   if (TYPE_P (t))
13132     die = lookup_type_die (t);
13133   else if (DECL_P (t))
13134     die = lookup_decl_die (t);
13135
13136   gcc_assert (die);
13137
13138   parms = lang_hooks.get_innermost_generic_parms (t);
13139   if (!parms)
13140     /* T has no generic parameter. It means T is neither a generic type
13141        or function. End of story.  */
13142     return;
13143
13144   parms_num = TREE_VEC_LENGTH (parms);
13145   args = lang_hooks.get_innermost_generic_args (t);
13146   for (i = 0; i < parms_num; i++)
13147     {
13148       tree parm, arg, arg_pack_elems;
13149
13150       parm = TREE_VEC_ELT (parms, i);
13151       arg = TREE_VEC_ELT (args, i);
13152       arg_pack_elems = lang_hooks.types.get_argument_pack_elems (arg);
13153       gcc_assert (parm && TREE_VALUE (parm) && arg);
13154
13155       if (parm && TREE_VALUE (parm) && arg)
13156         {
13157           /* If PARM represents a template parameter pack,
13158              emit a DW_TAG_GNU_template_parameter_pack DIE, followed
13159              by DW_TAG_template_*_parameter DIEs for the argument
13160              pack elements of ARG. Note that ARG would then be
13161              an argument pack.  */
13162           if (arg_pack_elems)
13163             template_parameter_pack_die (TREE_VALUE (parm),
13164                                          arg_pack_elems,
13165                                          die);
13166           else
13167             generic_parameter_die (TREE_VALUE (parm), arg,
13168                                    true /* Emit DW_AT_name */, die);
13169         }
13170     }
13171 }
13172
13173 /* Create and return a DIE for PARM which should be
13174    the representation of a generic type parameter.
13175    For instance, in the C++ front end, PARM would be a template parameter.
13176    ARG is the argument to PARM.
13177    EMIT_NAME_P if tree, the DIE will have DW_AT_name attribute set to the
13178    name of the PARM.
13179    PARENT_DIE is the parent DIE which the new created DIE should be added to,
13180    as a child node.  */
13181
13182 static dw_die_ref
13183 generic_parameter_die (tree parm, tree arg,
13184                        bool emit_name_p,
13185                        dw_die_ref parent_die)
13186 {
13187   dw_die_ref tmpl_die = NULL;
13188   const char *name = NULL;
13189
13190   if (!parm || !DECL_NAME (parm) || !arg)
13191     return NULL;
13192
13193   /* We support non-type generic parameters and arguments,
13194      type generic parameters and arguments, as well as
13195      generic generic parameters (a.k.a. template template parameters in C++)
13196      and arguments.  */
13197   if (TREE_CODE (parm) == PARM_DECL)
13198     /* PARM is a nontype generic parameter  */
13199     tmpl_die = new_die (DW_TAG_template_value_param, parent_die, parm);
13200   else if (TREE_CODE (parm) == TYPE_DECL)
13201     /* PARM is a type generic parameter.  */
13202     tmpl_die = new_die (DW_TAG_template_type_param, parent_die, parm);
13203   else if (lang_hooks.decls.generic_generic_parameter_decl_p (parm))
13204     /* PARM is a generic generic parameter.
13205        Its DIE is a GNU extension. It shall have a
13206        DW_AT_name attribute to represent the name of the template template
13207        parameter, and a DW_AT_GNU_template_name attribute to represent the
13208        name of the template template argument.  */
13209     tmpl_die = new_die (DW_TAG_GNU_template_template_param,
13210                         parent_die, parm);
13211   else
13212     gcc_unreachable ();
13213
13214   if (tmpl_die)
13215     {
13216       tree tmpl_type;
13217
13218       /* If PARM is a generic parameter pack, it means we are
13219          emitting debug info for a template argument pack element.
13220          In other terms, ARG is a template argument pack element.
13221          In that case, we don't emit any DW_AT_name attribute for
13222          the die.  */
13223       if (emit_name_p)
13224         {
13225           name = IDENTIFIER_POINTER (DECL_NAME (parm));
13226           gcc_assert (name);
13227           add_AT_string (tmpl_die, DW_AT_name, name);
13228         }
13229
13230       if (!lang_hooks.decls.generic_generic_parameter_decl_p (parm))
13231         {
13232           /* DWARF3, 5.6.8 says if PARM is a non-type generic parameter
13233              TMPL_DIE should have a child DW_AT_type attribute that is set
13234              to the type of the argument to PARM, which is ARG.
13235              If PARM is a type generic parameter, TMPL_DIE should have a
13236              child DW_AT_type that is set to ARG.  */
13237           tmpl_type = TYPE_P (arg) ? arg : TREE_TYPE (arg);
13238           add_type_attribute (tmpl_die, tmpl_type, 0,
13239                               TREE_THIS_VOLATILE (tmpl_type),
13240                               parent_die);
13241         }
13242       else
13243         {
13244           /* So TMPL_DIE is a DIE representing a
13245              a generic generic template parameter, a.k.a template template
13246              parameter in C++ and arg is a template.  */
13247
13248           /* The DW_AT_GNU_template_name attribute of the DIE must be set
13249              to the name of the argument.  */
13250           name = dwarf2_name (TYPE_P (arg) ? TYPE_NAME (arg) : arg, 1);
13251           if (name)
13252             add_AT_string (tmpl_die, DW_AT_GNU_template_name, name);
13253         }
13254
13255       if (TREE_CODE (parm) == PARM_DECL)
13256         /* So PARM is a non-type generic parameter.
13257            DWARF3 5.6.8 says we must set a DW_AT_const_value child
13258            attribute of TMPL_DIE which value represents the value
13259            of ARG.
13260            We must be careful here:
13261            The value of ARG might reference some function decls.
13262            We might currently be emitting debug info for a generic
13263            type and types are emitted before function decls, we don't
13264            know if the function decls referenced by ARG will actually be
13265            emitted after cgraph computations.
13266            So must defer the generation of the DW_AT_const_value to
13267            after cgraph is ready.  */
13268         append_entry_to_tmpl_value_parm_die_table (tmpl_die, arg);
13269     }
13270
13271   return tmpl_die;
13272 }
13273
13274 /* Generate and return a  DW_TAG_GNU_template_parameter_pack DIE representing.
13275    PARM_PACK must be a template parameter pack. The returned DIE
13276    will be child DIE of PARENT_DIE.  */
13277
13278 static dw_die_ref
13279 template_parameter_pack_die (tree parm_pack,
13280                              tree parm_pack_args,
13281                              dw_die_ref parent_die)
13282 {
13283   dw_die_ref die;
13284   int j;
13285
13286   gcc_assert (parent_die && parm_pack);
13287
13288   die = new_die (DW_TAG_GNU_template_parameter_pack, parent_die, parm_pack);
13289   add_name_and_src_coords_attributes (die, parm_pack);
13290   for (j = 0; j < TREE_VEC_LENGTH (parm_pack_args); j++)
13291     generic_parameter_die (parm_pack,
13292                            TREE_VEC_ELT (parm_pack_args, j),
13293                            false /* Don't emit DW_AT_name */,
13294                            die);
13295   return die;
13296 }
13297
13298 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
13299    an enumerated type.  */
13300
13301 static inline int
13302 type_is_enum (const_tree type)
13303 {
13304   return TREE_CODE (type) == ENUMERAL_TYPE;
13305 }
13306
13307 /* Return the DBX register number described by a given RTL node.  */
13308
13309 static unsigned int
13310 dbx_reg_number (const_rtx rtl)
13311 {
13312   unsigned regno = REGNO (rtl);
13313
13314   gcc_assert (regno < FIRST_PSEUDO_REGISTER);
13315
13316 #ifdef LEAF_REG_REMAP
13317   if (current_function_uses_only_leaf_regs)
13318     {
13319       int leaf_reg = LEAF_REG_REMAP (regno);
13320       if (leaf_reg != -1)
13321         regno = (unsigned) leaf_reg;
13322     }
13323 #endif
13324
13325   return DBX_REGISTER_NUMBER (regno);
13326 }
13327
13328 /* Optionally add a DW_OP_piece term to a location description expression.
13329    DW_OP_piece is only added if the location description expression already
13330    doesn't end with DW_OP_piece.  */
13331
13332 static void
13333 add_loc_descr_op_piece (dw_loc_descr_ref *list_head, int size)
13334 {
13335   dw_loc_descr_ref loc;
13336
13337   if (*list_head != NULL)
13338     {
13339       /* Find the end of the chain.  */
13340       for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
13341         ;
13342
13343       if (loc->dw_loc_opc != DW_OP_piece)
13344         loc->dw_loc_next = new_loc_descr (DW_OP_piece, size, 0);
13345     }
13346 }
13347
13348 /* Return a location descriptor that designates a machine register or
13349    zero if there is none.  */
13350
13351 static dw_loc_descr_ref
13352 reg_loc_descriptor (rtx rtl, enum var_init_status initialized)
13353 {
13354   rtx regs;
13355
13356   if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
13357     return 0;
13358
13359   /* We only use "frame base" when we're sure we're talking about the
13360      post-prologue local stack frame.  We do this by *not* running
13361      register elimination until this point, and recognizing the special
13362      argument pointer and soft frame pointer rtx's.
13363      Use DW_OP_fbreg offset DW_OP_stack_value in this case.  */
13364   if ((rtl == arg_pointer_rtx || rtl == frame_pointer_rtx)
13365       && eliminate_regs (rtl, VOIDmode, NULL_RTX) != rtl)
13366     {
13367       dw_loc_descr_ref result = NULL;
13368
13369       if (dwarf_version >= 4 || !dwarf_strict)
13370         {
13371           result = mem_loc_descriptor (rtl, GET_MODE (rtl), VOIDmode,
13372                                        initialized);
13373           if (result)
13374             add_loc_descr (&result,
13375                            new_loc_descr (DW_OP_stack_value, 0, 0));
13376         }
13377       return result;
13378     }
13379
13380   regs = targetm.dwarf_register_span (rtl);
13381
13382   if (hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)] > 1 || regs)
13383     return multiple_reg_loc_descriptor (rtl, regs, initialized);
13384   else
13385     return one_reg_loc_descriptor (dbx_reg_number (rtl), initialized);
13386 }
13387
13388 /* Return a location descriptor that designates a machine register for
13389    a given hard register number.  */
13390
13391 static dw_loc_descr_ref
13392 one_reg_loc_descriptor (unsigned int regno, enum var_init_status initialized)
13393 {
13394   dw_loc_descr_ref reg_loc_descr;
13395
13396   if (regno <= 31)
13397     reg_loc_descr
13398       = new_loc_descr ((enum dwarf_location_atom) (DW_OP_reg0 + regno), 0, 0);
13399   else
13400     reg_loc_descr = new_loc_descr (DW_OP_regx, regno, 0);
13401
13402   if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
13403     add_loc_descr (&reg_loc_descr, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13404
13405   return reg_loc_descr;
13406 }
13407
13408 /* Given an RTL of a register, return a location descriptor that
13409    designates a value that spans more than one register.  */
13410
13411 static dw_loc_descr_ref
13412 multiple_reg_loc_descriptor (rtx rtl, rtx regs,
13413                              enum var_init_status initialized)
13414 {
13415   int nregs, size, i;
13416   unsigned reg;
13417   dw_loc_descr_ref loc_result = NULL;
13418
13419   reg = REGNO (rtl);
13420 #ifdef LEAF_REG_REMAP
13421   if (current_function_uses_only_leaf_regs)
13422     {
13423       int leaf_reg = LEAF_REG_REMAP (reg);
13424       if (leaf_reg != -1)
13425         reg = (unsigned) leaf_reg;
13426     }
13427 #endif
13428   gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg) == dbx_reg_number (rtl));
13429   nregs = hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)];
13430
13431   /* Simple, contiguous registers.  */
13432   if (regs == NULL_RTX)
13433     {
13434       size = GET_MODE_SIZE (GET_MODE (rtl)) / nregs;
13435
13436       loc_result = NULL;
13437       while (nregs--)
13438         {
13439           dw_loc_descr_ref t;
13440
13441           t = one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg),
13442                                       VAR_INIT_STATUS_INITIALIZED);
13443           add_loc_descr (&loc_result, t);
13444           add_loc_descr_op_piece (&loc_result, size);
13445           ++reg;
13446         }
13447       return loc_result;
13448     }
13449
13450   /* Now onto stupid register sets in non contiguous locations.  */
13451
13452   gcc_assert (GET_CODE (regs) == PARALLEL);
13453
13454   size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
13455   loc_result = NULL;
13456
13457   for (i = 0; i < XVECLEN (regs, 0); ++i)
13458     {
13459       dw_loc_descr_ref t;
13460
13461       t = one_reg_loc_descriptor (REGNO (XVECEXP (regs, 0, i)),
13462                                   VAR_INIT_STATUS_INITIALIZED);
13463       add_loc_descr (&loc_result, t);
13464       size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
13465       add_loc_descr_op_piece (&loc_result, size);
13466     }
13467
13468   if (loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
13469     add_loc_descr (&loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13470   return loc_result;
13471 }
13472
13473 /* Return a location descriptor that designates a constant.  */
13474
13475 static dw_loc_descr_ref
13476 int_loc_descriptor (HOST_WIDE_INT i)
13477 {
13478   enum dwarf_location_atom op;
13479
13480   /* Pick the smallest representation of a constant, rather than just
13481      defaulting to the LEB encoding.  */
13482   if (i >= 0)
13483     {
13484       if (i <= 31)
13485         op = (enum dwarf_location_atom) (DW_OP_lit0 + i);
13486       else if (i <= 0xff)
13487         op = DW_OP_const1u;
13488       else if (i <= 0xffff)
13489         op = DW_OP_const2u;
13490       else if (HOST_BITS_PER_WIDE_INT == 32
13491                || i <= 0xffffffff)
13492         op = DW_OP_const4u;
13493       else
13494         op = DW_OP_constu;
13495     }
13496   else
13497     {
13498       if (i >= -0x80)
13499         op = DW_OP_const1s;
13500       else if (i >= -0x8000)
13501         op = DW_OP_const2s;
13502       else if (HOST_BITS_PER_WIDE_INT == 32
13503                || i >= -0x80000000)
13504         op = DW_OP_const4s;
13505       else
13506         op = DW_OP_consts;
13507     }
13508
13509   return new_loc_descr (op, i, 0);
13510 }
13511
13512 /* Return loc description representing "address" of integer value.
13513    This can appear only as toplevel expression.  */
13514
13515 static dw_loc_descr_ref
13516 address_of_int_loc_descriptor (int size, HOST_WIDE_INT i)
13517 {
13518   int litsize;
13519   dw_loc_descr_ref loc_result = NULL;
13520
13521   if (!(dwarf_version >= 4 || !dwarf_strict))
13522     return NULL;
13523
13524   if (i >= 0)
13525     {
13526       if (i <= 31)
13527         litsize = 1;
13528       else if (i <= 0xff)
13529         litsize = 2;
13530       else if (i <= 0xffff)
13531         litsize = 3;
13532       else if (HOST_BITS_PER_WIDE_INT == 32
13533                || i <= 0xffffffff)
13534         litsize = 5;
13535       else
13536         litsize = 1 + size_of_uleb128 ((unsigned HOST_WIDE_INT) i);
13537     }
13538   else
13539     {
13540       if (i >= -0x80)
13541         litsize = 2;
13542       else if (i >= -0x8000)
13543         litsize = 3;
13544       else if (HOST_BITS_PER_WIDE_INT == 32
13545                || i >= -0x80000000)
13546         litsize = 5;
13547       else
13548         litsize = 1 + size_of_sleb128 (i);
13549     }
13550   /* Determine if DW_OP_stack_value or DW_OP_implicit_value
13551      is more compact.  For DW_OP_stack_value we need:
13552      litsize + 1 (DW_OP_stack_value)
13553      and for DW_OP_implicit_value:
13554      1 (DW_OP_implicit_value) + 1 (length) + size.  */
13555   if ((int) DWARF2_ADDR_SIZE >= size && litsize + 1 <= 1 + 1 + size)
13556     {
13557       loc_result = int_loc_descriptor (i);
13558       add_loc_descr (&loc_result,
13559                      new_loc_descr (DW_OP_stack_value, 0, 0));
13560       return loc_result;
13561     }
13562
13563   loc_result = new_loc_descr (DW_OP_implicit_value,
13564                               size, 0);
13565   loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
13566   loc_result->dw_loc_oprnd2.v.val_int = i;
13567   return loc_result;
13568 }
13569
13570 /* Return a location descriptor that designates a base+offset location.  */
13571
13572 static dw_loc_descr_ref
13573 based_loc_descr (rtx reg, HOST_WIDE_INT offset,
13574                  enum var_init_status initialized)
13575 {
13576   unsigned int regno;
13577   dw_loc_descr_ref result;
13578   dw_fde_ref fde = current_fde ();
13579
13580   /* We only use "frame base" when we're sure we're talking about the
13581      post-prologue local stack frame.  We do this by *not* running
13582      register elimination until this point, and recognizing the special
13583      argument pointer and soft frame pointer rtx's.  */
13584   if (reg == arg_pointer_rtx || reg == frame_pointer_rtx)
13585     {
13586       rtx elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
13587
13588       if (elim != reg)
13589         {
13590           if (GET_CODE (elim) == PLUS)
13591             {
13592               offset += INTVAL (XEXP (elim, 1));
13593               elim = XEXP (elim, 0);
13594             }
13595           gcc_assert ((SUPPORTS_STACK_ALIGNMENT
13596                        && (elim == hard_frame_pointer_rtx
13597                            || elim == stack_pointer_rtx))
13598                       || elim == (frame_pointer_needed
13599                                   ? hard_frame_pointer_rtx
13600                                   : stack_pointer_rtx));
13601
13602           /* If drap register is used to align stack, use frame
13603              pointer + offset to access stack variables.  If stack
13604              is aligned without drap, use stack pointer + offset to
13605              access stack variables.  */
13606           if (crtl->stack_realign_tried
13607               && reg == frame_pointer_rtx)
13608             {
13609               int base_reg
13610                 = DWARF_FRAME_REGNUM ((fde && fde->drap_reg != INVALID_REGNUM)
13611                                       ? HARD_FRAME_POINTER_REGNUM
13612                                       : REGNO (elim));
13613               return new_reg_loc_descr (base_reg, offset);
13614             }
13615
13616           offset += frame_pointer_fb_offset;
13617           return new_loc_descr (DW_OP_fbreg, offset, 0);
13618         }
13619     }
13620   else if (!optimize
13621            && fde
13622            && (fde->drap_reg == REGNO (reg)
13623                || fde->vdrap_reg == REGNO (reg)))
13624     {
13625       /* Use cfa+offset to represent the location of arguments passed
13626          on the stack when drap is used to align stack.
13627          Only do this when not optimizing, for optimized code var-tracking
13628          is supposed to track where the arguments live and the register
13629          used as vdrap or drap in some spot might be used for something
13630          else in other part of the routine.  */
13631       return new_loc_descr (DW_OP_fbreg, offset, 0);
13632     }
13633
13634   regno = dbx_reg_number (reg);
13635   if (regno <= 31)
13636     result = new_loc_descr ((enum dwarf_location_atom) (DW_OP_breg0 + regno),
13637                             offset, 0);
13638   else
13639     result = new_loc_descr (DW_OP_bregx, regno, offset);
13640
13641   if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
13642     add_loc_descr (&result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
13643
13644   return result;
13645 }
13646
13647 /* Return true if this RTL expression describes a base+offset calculation.  */
13648
13649 static inline int
13650 is_based_loc (const_rtx rtl)
13651 {
13652   return (GET_CODE (rtl) == PLUS
13653           && ((REG_P (XEXP (rtl, 0))
13654                && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
13655                && CONST_INT_P (XEXP (rtl, 1)))));
13656 }
13657
13658 /* Try to handle TLS MEMs, for which mem_loc_descriptor on XEXP (mem, 0)
13659    failed.  */
13660
13661 static dw_loc_descr_ref
13662 tls_mem_loc_descriptor (rtx mem)
13663 {
13664   tree base;
13665   dw_loc_descr_ref loc_result;
13666
13667   if (MEM_EXPR (mem) == NULL_TREE || MEM_OFFSET (mem) == NULL_RTX)
13668     return NULL;
13669
13670   base = get_base_address (MEM_EXPR (mem));
13671   if (base == NULL
13672       || TREE_CODE (base) != VAR_DECL
13673       || !DECL_THREAD_LOCAL_P (base))
13674     return NULL;
13675
13676   loc_result = loc_descriptor_from_tree (MEM_EXPR (mem), 1);
13677   if (loc_result == NULL)
13678     return NULL;
13679
13680   if (INTVAL (MEM_OFFSET (mem)))
13681     loc_descr_plus_const (&loc_result, INTVAL (MEM_OFFSET (mem)));
13682
13683   return loc_result;
13684 }
13685
13686 /* Output debug info about reason why we failed to expand expression as dwarf
13687    expression.  */
13688
13689 static void
13690 expansion_failed (tree expr, rtx rtl, char const *reason)
13691 {
13692   if (dump_file && (dump_flags & TDF_DETAILS))
13693     {
13694       fprintf (dump_file, "Failed to expand as dwarf: ");
13695       if (expr)
13696         print_generic_expr (dump_file, expr, dump_flags);
13697       if (rtl)
13698         {
13699           fprintf (dump_file, "\n");
13700           print_rtl (dump_file, rtl);
13701         }
13702       fprintf (dump_file, "\nReason: %s\n", reason);
13703     }
13704 }
13705
13706 /* Helper function for const_ok_for_output, called either directly
13707    or via for_each_rtx.  */
13708
13709 static int
13710 const_ok_for_output_1 (rtx *rtlp, void *data ATTRIBUTE_UNUSED)
13711 {
13712   rtx rtl = *rtlp;
13713
13714   if (GET_CODE (rtl) == UNSPEC)
13715     {
13716       /* If delegitimize_address couldn't do anything with the UNSPEC, assume
13717          we can't express it in the debug info.  */
13718 #ifdef ENABLE_CHECKING
13719       /* Don't complain about TLS UNSPECs, those are just too hard to
13720          delegitimize.  */
13721       if (XVECLEN (rtl, 0) != 1
13722           || GET_CODE (XVECEXP (rtl, 0, 0)) != SYMBOL_REF
13723           || SYMBOL_REF_DECL (XVECEXP (rtl, 0, 0)) == NULL
13724           || TREE_CODE (SYMBOL_REF_DECL (XVECEXP (rtl, 0, 0))) != VAR_DECL
13725           || !DECL_THREAD_LOCAL_P (SYMBOL_REF_DECL (XVECEXP (rtl, 0, 0))))
13726         inform (current_function_decl
13727                 ? DECL_SOURCE_LOCATION (current_function_decl)
13728                 : UNKNOWN_LOCATION,
13729 #if NUM_UNSPEC_VALUES > 0
13730                 "non-delegitimized UNSPEC %s (%d) found in variable location",
13731                 ((XINT (rtl, 1) >= 0 && XINT (rtl, 1) < NUM_UNSPEC_VALUES)
13732                  ? unspec_strings[XINT (rtl, 1)] : "unknown"),
13733                 XINT (rtl, 1));
13734 #else
13735                 "non-delegitimized UNSPEC %d found in variable location",
13736                 XINT (rtl, 1));
13737 #endif
13738 #endif
13739       expansion_failed (NULL_TREE, rtl,
13740                         "UNSPEC hasn't been delegitimized.\n");
13741       return 1;
13742     }
13743
13744   if (GET_CODE (rtl) != SYMBOL_REF)
13745     return 0;
13746
13747   if (CONSTANT_POOL_ADDRESS_P (rtl))
13748     {
13749       bool marked;
13750       get_pool_constant_mark (rtl, &marked);
13751       /* If all references to this pool constant were optimized away,
13752          it was not output and thus we can't represent it.  */
13753       if (!marked)
13754         {
13755           expansion_failed (NULL_TREE, rtl,
13756                             "Constant was removed from constant pool.\n");
13757           return 1;
13758         }
13759     }
13760
13761   if (SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
13762     return 1;
13763
13764   /* Avoid references to external symbols in debug info, on several targets
13765      the linker might even refuse to link when linking a shared library,
13766      and in many other cases the relocations for .debug_info/.debug_loc are
13767      dropped, so the address becomes zero anyway.  Hidden symbols, guaranteed
13768      to be defined within the same shared library or executable are fine.  */
13769   if (SYMBOL_REF_EXTERNAL_P (rtl))
13770     {
13771       tree decl = SYMBOL_REF_DECL (rtl);
13772
13773       if (decl == NULL || !targetm.binds_local_p (decl))
13774         {
13775           expansion_failed (NULL_TREE, rtl,
13776                             "Symbol not defined in current TU.\n");
13777           return 1;
13778         }
13779     }
13780
13781   return 0;
13782 }
13783
13784 /* Return true if constant RTL can be emitted in DW_OP_addr or
13785    DW_AT_const_value.  TLS SYMBOL_REFs, external SYMBOL_REFs or
13786    non-marked constant pool SYMBOL_REFs can't be referenced in it.  */
13787
13788 static bool
13789 const_ok_for_output (rtx rtl)
13790 {
13791   if (GET_CODE (rtl) == SYMBOL_REF)
13792     return const_ok_for_output_1 (&rtl, NULL) == 0;
13793
13794   if (GET_CODE (rtl) == CONST)
13795     return for_each_rtx (&XEXP (rtl, 0), const_ok_for_output_1, NULL) == 0;
13796
13797   return true;
13798 }
13799
13800 /* Return a reference to DW_TAG_base_type corresponding to MODE and UNSIGNEDP
13801    if possible, NULL otherwise.  */
13802
13803 static dw_die_ref
13804 base_type_for_mode (enum machine_mode mode, bool unsignedp)
13805 {
13806   dw_die_ref type_die;
13807   tree type = lang_hooks.types.type_for_mode (mode, unsignedp);
13808
13809   if (type == NULL)
13810     return NULL;
13811   switch (TREE_CODE (type))
13812     {
13813     case INTEGER_TYPE:
13814     case REAL_TYPE:
13815       break;
13816     default:
13817       return NULL;
13818     }
13819   type_die = lookup_type_die (type);
13820   if (!type_die)
13821     type_die = modified_type_die (type, false, false, comp_unit_die ());
13822   if (type_die == NULL || type_die->die_tag != DW_TAG_base_type)
13823     return NULL;
13824   return type_die;
13825 }
13826
13827 /* For OP descriptor assumed to be in unsigned MODE, convert it to a signed
13828    type matching MODE, or, if MODE is narrower than DWARF2_ADDR_SIZE, signed
13829    type matching DWARF2_ADDR_SIZE.  Return NULL if the conversion is not
13830    possible.  */
13831
13832 static dw_loc_descr_ref
13833 convert_descriptor_to_signed (enum machine_mode mode, dw_loc_descr_ref op)
13834 {
13835   enum machine_mode outer_mode = mode;
13836   dw_die_ref type_die;
13837   dw_loc_descr_ref cvt;
13838
13839   if (GET_MODE_SIZE (mode) < DWARF2_ADDR_SIZE)
13840     {
13841       outer_mode = mode_for_size (DWARF2_ADDR_SIZE * BITS_PER_UNIT,
13842                                   MODE_INT, 0);
13843       if (outer_mode == BLKmode
13844           || GET_MODE_SIZE (outer_mode) != DWARF2_ADDR_SIZE)
13845         return NULL;
13846     }
13847   type_die = base_type_for_mode (outer_mode, 0);
13848   if (type_die == NULL)
13849     return NULL;
13850   cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
13851   cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
13852   cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
13853   cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
13854   add_loc_descr (&op, cvt);
13855   return op;
13856 }
13857
13858 /* The following routine converts the RTL for a variable or parameter
13859    (resident in memory) into an equivalent Dwarf representation of a
13860    mechanism for getting the address of that same variable onto the top of a
13861    hypothetical "address evaluation" stack.
13862
13863    When creating memory location descriptors, we are effectively transforming
13864    the RTL for a memory-resident object into its Dwarf postfix expression
13865    equivalent.  This routine recursively descends an RTL tree, turning
13866    it into Dwarf postfix code as it goes.
13867
13868    MODE is the mode that should be assumed for the rtl if it is VOIDmode.
13869
13870    MEM_MODE is the mode of the memory reference, needed to handle some
13871    autoincrement addressing modes.
13872
13873    Return 0 if we can't represent the location.  */
13874
13875 static dw_loc_descr_ref
13876 mem_loc_descriptor (rtx rtl, enum machine_mode mode,
13877                     enum machine_mode mem_mode,
13878                     enum var_init_status initialized)
13879 {
13880   dw_loc_descr_ref mem_loc_result = NULL;
13881   enum dwarf_location_atom op;
13882   dw_loc_descr_ref op0, op1;
13883
13884   if (mode == VOIDmode)
13885     mode = GET_MODE (rtl);
13886
13887   /* Note that for a dynamically sized array, the location we will generate a
13888      description of here will be the lowest numbered location which is
13889      actually within the array.  That's *not* necessarily the same as the
13890      zeroth element of the array.  */
13891
13892   rtl = targetm.delegitimize_address (rtl);
13893
13894   if (mode != GET_MODE (rtl) && GET_MODE (rtl) != VOIDmode)
13895     return NULL;
13896
13897   switch (GET_CODE (rtl))
13898     {
13899     case POST_INC:
13900     case POST_DEC:
13901     case POST_MODIFY:
13902       return mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode, initialized);
13903
13904     case SUBREG:
13905       /* The case of a subreg may arise when we have a local (register)
13906          variable or a formal (register) parameter which doesn't quite fill
13907          up an entire register.  For now, just assume that it is
13908          legitimate to make the Dwarf info refer to the whole register which
13909          contains the given subreg.  */
13910       if (!subreg_lowpart_p (rtl))
13911         break;
13912       if (GET_MODE_CLASS (mode) == MODE_INT
13913           && GET_MODE_CLASS (GET_MODE (SUBREG_REG (rtl))) == MODE_INT
13914           && (GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE
13915 #ifdef POINTERS_EXTEND_UNSIGNED
13916               || (mode == Pmode && mem_mode != VOIDmode)
13917 #endif
13918              )
13919           && GET_MODE_SIZE (GET_MODE (SUBREG_REG (rtl))) <= DWARF2_ADDR_SIZE)
13920         {
13921           mem_loc_result = mem_loc_descriptor (SUBREG_REG (rtl),
13922                                                GET_MODE (SUBREG_REG (rtl)),
13923                                                mem_mode, initialized);
13924           break;
13925         }
13926       if (dwarf_strict)
13927         break;
13928       if (GET_MODE_SIZE (mode) > GET_MODE_SIZE (GET_MODE (SUBREG_REG (rtl))))
13929         break;
13930       if (GET_MODE_SIZE (mode) != GET_MODE_SIZE (GET_MODE (SUBREG_REG (rtl)))
13931           && (GET_MODE_CLASS (mode) != MODE_INT
13932               || GET_MODE_CLASS (GET_MODE (SUBREG_REG (rtl))) != MODE_INT))
13933         break;
13934       else
13935         {
13936           dw_die_ref type_die;
13937           dw_loc_descr_ref cvt;
13938
13939           mem_loc_result = mem_loc_descriptor (SUBREG_REG (rtl),
13940                                                GET_MODE (SUBREG_REG (rtl)),
13941                                                mem_mode, initialized);
13942           if (mem_loc_result == NULL)
13943             break;
13944           type_die = base_type_for_mode (mode, 0);
13945           if (type_die == NULL)
13946             {
13947               mem_loc_result = NULL;
13948               break;
13949             }
13950           if (GET_MODE_SIZE (mode)
13951               != GET_MODE_SIZE (GET_MODE (SUBREG_REG (rtl))))
13952             cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
13953           else
13954             cvt = new_loc_descr (DW_OP_GNU_reinterpret, 0, 0);
13955           cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
13956           cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
13957           cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
13958           add_loc_descr (&mem_loc_result, cvt);
13959         }
13960       break;
13961
13962     case REG:
13963       if (GET_MODE_CLASS (mode) != MODE_INT
13964           || (GET_MODE_SIZE (mode) > DWARF2_ADDR_SIZE
13965 #ifdef POINTERS_EXTEND_UNSIGNED
13966               && (mode != Pmode || mem_mode == VOIDmode)
13967 #endif
13968               ))
13969         {
13970           dw_die_ref type_die;
13971
13972           if (dwarf_strict)
13973             break;
13974           if (REGNO (rtl) > FIRST_PSEUDO_REGISTER)
13975             break;
13976           type_die = base_type_for_mode (mode, 0);
13977           if (type_die == NULL)
13978             break;
13979           mem_loc_result = new_loc_descr (DW_OP_GNU_regval_type,
13980                                           dbx_reg_number (rtl), 0);
13981           mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_die_ref;
13982           mem_loc_result->dw_loc_oprnd2.v.val_die_ref.die = type_die;
13983           mem_loc_result->dw_loc_oprnd2.v.val_die_ref.external = 0;
13984           break;
13985         }
13986       /* Whenever a register number forms a part of the description of the
13987          method for calculating the (dynamic) address of a memory resident
13988          object, DWARF rules require the register number be referred to as
13989          a "base register".  This distinction is not based in any way upon
13990          what category of register the hardware believes the given register
13991          belongs to.  This is strictly DWARF terminology we're dealing with
13992          here. Note that in cases where the location of a memory-resident
13993          data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
13994          OP_CONST (0)) the actual DWARF location descriptor that we generate
13995          may just be OP_BASEREG (basereg).  This may look deceptively like
13996          the object in question was allocated to a register (rather than in
13997          memory) so DWARF consumers need to be aware of the subtle
13998          distinction between OP_REG and OP_BASEREG.  */
13999       if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
14000         mem_loc_result = based_loc_descr (rtl, 0, VAR_INIT_STATUS_INITIALIZED);
14001       else if (stack_realign_drap
14002                && crtl->drap_reg
14003                && crtl->args.internal_arg_pointer == rtl
14004                && REGNO (crtl->drap_reg) < FIRST_PSEUDO_REGISTER)
14005         {
14006           /* If RTL is internal_arg_pointer, which has been optimized
14007              out, use DRAP instead.  */
14008           mem_loc_result = based_loc_descr (crtl->drap_reg, 0,
14009                                             VAR_INIT_STATUS_INITIALIZED);
14010         }
14011       break;
14012
14013     case SIGN_EXTEND:
14014     case ZERO_EXTEND:
14015       gcc_assert (GET_MODE_CLASS (mode) == MODE_INT);
14016       op0 = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (XEXP (rtl, 0)),
14017                                 mem_mode, VAR_INIT_STATUS_INITIALIZED);
14018       if (op0 == 0)
14019         break;
14020       else if (GET_CODE (rtl) == ZERO_EXTEND
14021                && GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE
14022                && GET_MODE_BITSIZE (GET_MODE (XEXP (rtl, 0)))
14023                   < HOST_BITS_PER_WIDE_INT
14024                /* If DW_OP_const{1,2,4}u won't be used, it is shorter
14025                   to expand zero extend as two shifts instead of
14026                   masking.  */
14027                && GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) <= 4)
14028         {
14029           enum machine_mode imode = GET_MODE (XEXP (rtl, 0));
14030           mem_loc_result = op0;
14031           add_loc_descr (&mem_loc_result,
14032                          int_loc_descriptor (GET_MODE_MASK (imode)));
14033           add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_and, 0, 0));
14034         }
14035       else if (GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE)
14036         {
14037           int shift = DWARF2_ADDR_SIZE
14038                       - GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0)));
14039           shift *= BITS_PER_UNIT;
14040           if (GET_CODE (rtl) == SIGN_EXTEND)
14041             op = DW_OP_shra;
14042           else
14043             op = DW_OP_shr;
14044           mem_loc_result = op0;
14045           add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
14046           add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
14047           add_loc_descr (&mem_loc_result, int_loc_descriptor (shift));
14048           add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
14049         }
14050       else if (!dwarf_strict)
14051         {
14052           dw_die_ref type_die1, type_die2;
14053           dw_loc_descr_ref cvt;
14054
14055           type_die1 = base_type_for_mode (GET_MODE (XEXP (rtl, 0)),
14056                                           GET_CODE (rtl) == ZERO_EXTEND);
14057           if (type_die1 == NULL)
14058             break;
14059           type_die2 = base_type_for_mode (mode, 0);
14060           if (type_die2 == NULL)
14061             break;
14062           mem_loc_result = op0;
14063           cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14064           cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14065           cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die1;
14066           cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14067           add_loc_descr (&mem_loc_result, cvt);
14068           cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14069           cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14070           cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die2;
14071           cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14072           add_loc_descr (&mem_loc_result, cvt);
14073         }
14074       break;
14075
14076     case MEM:
14077       mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0),
14078                                            get_address_mode (rtl), mode,
14079                                            VAR_INIT_STATUS_INITIALIZED);
14080       if (mem_loc_result == NULL)
14081         mem_loc_result = tls_mem_loc_descriptor (rtl);
14082       if (mem_loc_result != 0)
14083         {
14084           if (GET_MODE_SIZE (mode) > DWARF2_ADDR_SIZE
14085               || GET_MODE_CLASS (mode) != MODE_INT)
14086             {
14087               dw_die_ref type_die;
14088               dw_loc_descr_ref deref;
14089
14090               if (dwarf_strict)
14091                 return NULL;
14092               type_die = base_type_for_mode (mode, 0);
14093               if (type_die == NULL)
14094                 return NULL;
14095               deref = new_loc_descr (DW_OP_GNU_deref_type,
14096                                      GET_MODE_SIZE (mode), 0);
14097               deref->dw_loc_oprnd2.val_class = dw_val_class_die_ref;
14098               deref->dw_loc_oprnd2.v.val_die_ref.die = type_die;
14099               deref->dw_loc_oprnd2.v.val_die_ref.external = 0;
14100               add_loc_descr (&mem_loc_result, deref);
14101             }
14102           else if (GET_MODE_SIZE (mode) == DWARF2_ADDR_SIZE)
14103             add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
14104           else
14105             add_loc_descr (&mem_loc_result,
14106                            new_loc_descr (DW_OP_deref_size,
14107                                           GET_MODE_SIZE (mode), 0));
14108         }
14109       else
14110         {
14111           rtx new_rtl = avoid_constant_pool_reference (rtl);
14112           if (new_rtl != rtl)
14113             return mem_loc_descriptor (new_rtl, mode, mem_mode, initialized);
14114         }
14115       break;
14116
14117     case LO_SUM:
14118       return mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode, initialized);
14119
14120     case LABEL_REF:
14121       /* Some ports can transform a symbol ref into a label ref, because
14122          the symbol ref is too far away and has to be dumped into a constant
14123          pool.  */
14124     case CONST:
14125     case SYMBOL_REF:
14126       if (GET_MODE_CLASS (mode) != MODE_INT
14127           || (GET_MODE_SIZE (mode) > DWARF2_ADDR_SIZE
14128 #ifdef POINTERS_EXTEND_UNSIGNED
14129               && (mode != Pmode || mem_mode == VOIDmode)
14130 #endif
14131               ))
14132         break;
14133       if (GET_CODE (rtl) == SYMBOL_REF
14134           && SYMBOL_REF_TLS_MODEL (rtl) != TLS_MODEL_NONE)
14135         {
14136           dw_loc_descr_ref temp;
14137
14138           /* If this is not defined, we have no way to emit the data.  */
14139           if (!targetm.have_tls || !targetm.asm_out.output_dwarf_dtprel)
14140             break;
14141
14142           /* We used to emit DW_OP_addr here, but that's wrong, since
14143              DW_OP_addr should be relocated by the debug info consumer,
14144              while DW_OP_GNU_push_tls_address operand should not.  */
14145           temp = new_loc_descr (DWARF2_ADDR_SIZE == 4
14146                                 ? DW_OP_const4u : DW_OP_const8u, 0, 0);
14147           temp->dw_loc_oprnd1.val_class = dw_val_class_addr;
14148           temp->dw_loc_oprnd1.v.val_addr = rtl;
14149           temp->dtprel = true;
14150
14151           mem_loc_result = new_loc_descr (DW_OP_GNU_push_tls_address, 0, 0);
14152           add_loc_descr (&mem_loc_result, temp);
14153
14154           break;
14155         }
14156
14157       if (!const_ok_for_output (rtl))
14158         break;
14159
14160     symref:
14161       mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
14162       mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
14163       mem_loc_result->dw_loc_oprnd1.v.val_addr = rtl;
14164       VEC_safe_push (rtx, gc, used_rtx_array, rtl);
14165       break;
14166
14167     case CONCAT:
14168     case CONCATN:
14169     case VAR_LOCATION:
14170     case DEBUG_IMPLICIT_PTR:
14171       expansion_failed (NULL_TREE, rtl,
14172                         "CONCAT/CONCATN/VAR_LOCATION is handled only by loc_descriptor");
14173       return 0;
14174
14175     case ENTRY_VALUE:
14176       if (dwarf_strict)
14177         return NULL;
14178       if (REG_P (ENTRY_VALUE_EXP (rtl)))
14179         {
14180           if (GET_MODE_CLASS (mode) != MODE_INT
14181               || GET_MODE_SIZE (mode) > DWARF2_ADDR_SIZE)
14182             op0 = mem_loc_descriptor (ENTRY_VALUE_EXP (rtl), mode,
14183                                       VOIDmode, VAR_INIT_STATUS_INITIALIZED);
14184           else
14185             op0
14186               = one_reg_loc_descriptor (dbx_reg_number (ENTRY_VALUE_EXP (rtl)),
14187                                         VAR_INIT_STATUS_INITIALIZED);
14188         }
14189       else if (MEM_P (ENTRY_VALUE_EXP (rtl))
14190                && REG_P (XEXP (ENTRY_VALUE_EXP (rtl), 0)))
14191         {
14192           op0 = mem_loc_descriptor (ENTRY_VALUE_EXP (rtl), mode,
14193                                     VOIDmode, VAR_INIT_STATUS_INITIALIZED);
14194           if (op0 && op0->dw_loc_opc == DW_OP_fbreg)
14195             return NULL;
14196         }
14197       else
14198         gcc_unreachable ();
14199       if (op0 == NULL)
14200         return NULL;
14201       mem_loc_result = new_loc_descr (DW_OP_GNU_entry_value, 0, 0);
14202       mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_loc;
14203       mem_loc_result->dw_loc_oprnd1.v.val_loc = op0;
14204       return mem_loc_result;
14205
14206     case PRE_MODIFY:
14207       /* Extract the PLUS expression nested inside and fall into
14208          PLUS code below.  */
14209       rtl = XEXP (rtl, 1);
14210       goto plus;
14211
14212     case PRE_INC:
14213     case PRE_DEC:
14214       /* Turn these into a PLUS expression and fall into the PLUS code
14215          below.  */
14216       rtl = gen_rtx_PLUS (mode, XEXP (rtl, 0),
14217                           GEN_INT (GET_CODE (rtl) == PRE_INC
14218                                    ? GET_MODE_UNIT_SIZE (mem_mode)
14219                                    : -GET_MODE_UNIT_SIZE (mem_mode)));
14220
14221       /* ... fall through ...  */
14222
14223     case PLUS:
14224     plus:
14225       if (is_based_loc (rtl)
14226           && GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE
14227           && GET_MODE_CLASS (mode) == MODE_INT)
14228         mem_loc_result = based_loc_descr (XEXP (rtl, 0),
14229                                           INTVAL (XEXP (rtl, 1)),
14230                                           VAR_INIT_STATUS_INITIALIZED);
14231       else
14232         {
14233           mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14234                                                VAR_INIT_STATUS_INITIALIZED);
14235           if (mem_loc_result == 0)
14236             break;
14237
14238           if (CONST_INT_P (XEXP (rtl, 1))
14239               && GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE)
14240             loc_descr_plus_const (&mem_loc_result, INTVAL (XEXP (rtl, 1)));
14241           else
14242             {
14243               dw_loc_descr_ref mem_loc_result2
14244                 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
14245                                       VAR_INIT_STATUS_INITIALIZED);
14246               if (mem_loc_result2 == 0)
14247                 break;
14248               add_loc_descr (&mem_loc_result, mem_loc_result2);
14249               add_loc_descr (&mem_loc_result,
14250                              new_loc_descr (DW_OP_plus, 0, 0));
14251             }
14252         }
14253       break;
14254
14255     /* If a pseudo-reg is optimized away, it is possible for it to
14256        be replaced with a MEM containing a multiply or shift.  */
14257     case MINUS:
14258       op = DW_OP_minus;
14259       goto do_binop;
14260
14261     case MULT:
14262       op = DW_OP_mul;
14263       goto do_binop;
14264
14265     case DIV:
14266       op = DW_OP_div;
14267       goto do_binop;
14268
14269     case UMOD:
14270       op = DW_OP_mod;
14271       goto do_binop;
14272
14273     case ASHIFT:
14274       op = DW_OP_shl;
14275       goto do_shift;
14276
14277     case ASHIFTRT:
14278       op = DW_OP_shra;
14279       goto do_shift;
14280
14281     case LSHIFTRT:
14282       op = DW_OP_shr;
14283       goto do_shift;
14284
14285     do_shift:
14286       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14287                                 VAR_INIT_STATUS_INITIALIZED);
14288       {
14289         rtx rtlop1 = XEXP (rtl, 1);
14290         if (GET_MODE (rtlop1) != VOIDmode
14291             && GET_MODE_BITSIZE (GET_MODE (rtlop1))
14292                < GET_MODE_BITSIZE (mode))
14293           rtlop1 = gen_rtx_ZERO_EXTEND (mode, rtlop1);
14294         op1 = mem_loc_descriptor (rtlop1, mode, mem_mode,
14295                                   VAR_INIT_STATUS_INITIALIZED);
14296       }
14297
14298       if (op0 == 0 || op1 == 0)
14299         break;
14300
14301       mem_loc_result = op0;
14302       add_loc_descr (&mem_loc_result, op1);
14303       add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
14304       break;
14305
14306     case AND:
14307       op = DW_OP_and;
14308       goto do_binop;
14309
14310     case IOR:
14311       op = DW_OP_or;
14312       goto do_binop;
14313
14314     case XOR:
14315       op = DW_OP_xor;
14316       goto do_binop;
14317
14318     do_binop:
14319       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14320                                 VAR_INIT_STATUS_INITIALIZED);
14321       op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
14322                                 VAR_INIT_STATUS_INITIALIZED);
14323
14324       if (op0 == 0 || op1 == 0)
14325         break;
14326
14327       mem_loc_result = op0;
14328       add_loc_descr (&mem_loc_result, op1);
14329       add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
14330       break;
14331
14332     case MOD:
14333       if (GET_MODE_SIZE (mode) > DWARF2_ADDR_SIZE && !dwarf_strict)
14334         {
14335           /* If MODE is wider than DWARF2_ADDR_SIZE, mem_loc_descriptor
14336              should return signed typed values and therefore DW_OP_mod
14337              won't be unsigned as it defaults for untyped stack values,
14338              but signed.  */
14339           op = DW_OP_mod;
14340           goto do_binop;
14341         }
14342
14343       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14344                                 VAR_INIT_STATUS_INITIALIZED);
14345       op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
14346                                 VAR_INIT_STATUS_INITIALIZED);
14347
14348       if (op0 == 0 || op1 == 0)
14349         break;
14350
14351       mem_loc_result = op0;
14352       add_loc_descr (&mem_loc_result, op1);
14353       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
14354       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_over, 0, 0));
14355       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_div, 0, 0));
14356       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
14357       add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_minus, 0, 0));
14358       break;
14359
14360     case UDIV:
14361       if (!dwarf_strict && GET_MODE_CLASS (mode) == MODE_INT)
14362         {
14363           dw_die_ref type_die;
14364           dw_loc_descr_ref cvt;
14365
14366           type_die = base_type_for_mode (mode, 1);
14367           if (type_die == NULL)
14368             break;
14369           op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14370                                     VAR_INIT_STATUS_INITIALIZED);
14371           op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
14372                                     VAR_INIT_STATUS_INITIALIZED);
14373           if (op0 == 0 || op1 == 0)
14374             break;
14375           cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14376           cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14377           cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14378           cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14379           add_loc_descr (&op0, cvt);
14380           cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14381           cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14382           cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14383           cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14384           add_loc_descr (&op1, cvt);
14385           mem_loc_result = op0;
14386           add_loc_descr (&mem_loc_result, op1);
14387           add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_div, 0, 0));
14388           mem_loc_result = convert_descriptor_to_signed (mode, mem_loc_result);
14389         }
14390       break;
14391
14392     case NOT:
14393       op = DW_OP_not;
14394       goto do_unop;
14395
14396     case ABS:
14397       op = DW_OP_abs;
14398       goto do_unop;
14399
14400     case NEG:
14401       op = DW_OP_neg;
14402       goto do_unop;
14403
14404     do_unop:
14405       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14406                                 VAR_INIT_STATUS_INITIALIZED);
14407
14408       if (op0 == 0)
14409         break;
14410
14411       mem_loc_result = op0;
14412       add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
14413       break;
14414
14415     case CONST_INT:
14416       if (GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE
14417 #ifdef POINTERS_EXTEND_UNSIGNED
14418           || (mode == Pmode
14419               && mem_mode != VOIDmode
14420               && trunc_int_for_mode (INTVAL (rtl), ptr_mode) == INTVAL (rtl))
14421 #endif
14422           )
14423         {
14424           mem_loc_result = int_loc_descriptor (INTVAL (rtl));
14425           break;
14426         }
14427       if (!dwarf_strict
14428           && (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT
14429               || GET_MODE_BITSIZE (mode) == 2 * HOST_BITS_PER_WIDE_INT))
14430         {
14431           dw_die_ref type_die = base_type_for_mode (mode, 0);
14432           if (type_die == NULL)
14433             return NULL;
14434           mem_loc_result = new_loc_descr (DW_OP_GNU_const_type, 0,
14435                                           INTVAL (rtl));
14436           mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14437           mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14438           mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
14439           if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
14440             mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_const;
14441           else
14442             {
14443               mem_loc_result->dw_loc_oprnd2.val_class
14444                 = dw_val_class_const_double;
14445               mem_loc_result->dw_loc_oprnd2.v.val_double
14446                 = shwi_to_double_int (INTVAL (rtl));
14447             }
14448         }
14449       break;
14450
14451     case CONST_DOUBLE:
14452       if (!dwarf_strict)
14453         {
14454           dw_die_ref type_die;
14455
14456           /* Note that a CONST_DOUBLE rtx could represent either an integer
14457              or a floating-point constant.  A CONST_DOUBLE is used whenever
14458              the constant requires more than one word in order to be
14459              adequately represented.  We output CONST_DOUBLEs as blocks.  */
14460           if (mode == VOIDmode
14461               || (GET_MODE (rtl) == VOIDmode
14462                   && GET_MODE_BITSIZE (mode) != 2 * HOST_BITS_PER_WIDE_INT))
14463             break;
14464           type_die = base_type_for_mode (mode, 0);
14465           if (type_die == NULL)
14466             return NULL;
14467           mem_loc_result = new_loc_descr (DW_OP_GNU_const_type, 0, 0);
14468           mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14469           mem_loc_result->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14470           mem_loc_result->dw_loc_oprnd1.v.val_die_ref.external = 0;
14471           if (SCALAR_FLOAT_MODE_P (mode))
14472             {
14473               unsigned int length = GET_MODE_SIZE (mode);
14474               unsigned char *array
14475                   = (unsigned char*) ggc_alloc_atomic (length);
14476
14477               insert_float (rtl, array);
14478               mem_loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
14479               mem_loc_result->dw_loc_oprnd2.v.val_vec.length = length / 4;
14480               mem_loc_result->dw_loc_oprnd2.v.val_vec.elt_size = 4;
14481               mem_loc_result->dw_loc_oprnd2.v.val_vec.array = array;
14482             }
14483           else
14484             {
14485               mem_loc_result->dw_loc_oprnd2.val_class
14486                 = dw_val_class_const_double;
14487               mem_loc_result->dw_loc_oprnd2.v.val_double
14488                 = rtx_to_double_int (rtl);
14489             }
14490         }
14491       break;
14492
14493     case EQ:
14494       op = DW_OP_eq;
14495       goto do_scompare;
14496
14497     case GE:
14498       op = DW_OP_ge;
14499       goto do_scompare;
14500
14501     case GT:
14502       op = DW_OP_gt;
14503       goto do_scompare;
14504
14505     case LE:
14506       op = DW_OP_le;
14507       goto do_scompare;
14508
14509     case LT:
14510       op = DW_OP_lt;
14511       goto do_scompare;
14512
14513     case NE:
14514       op = DW_OP_ne;
14515       goto do_scompare;
14516
14517     do_scompare:
14518       {
14519         enum machine_mode op_mode = GET_MODE (XEXP (rtl, 0));
14520
14521         if (op_mode == VOIDmode)
14522           op_mode = GET_MODE (XEXP (rtl, 1));
14523         if (op_mode == VOIDmode)
14524           break;
14525
14526         if (dwarf_strict
14527             && (GET_MODE_CLASS (op_mode) != MODE_INT
14528                 || GET_MODE_SIZE (op_mode) > DWARF2_ADDR_SIZE))
14529           break;
14530
14531         op0 = mem_loc_descriptor (XEXP (rtl, 0), op_mode, mem_mode,
14532                                   VAR_INIT_STATUS_INITIALIZED);
14533         op1 = mem_loc_descriptor (XEXP (rtl, 1), op_mode, mem_mode,
14534                                   VAR_INIT_STATUS_INITIALIZED);
14535
14536         if (op0 == 0 || op1 == 0)
14537           break;
14538
14539         if (GET_MODE_CLASS (op_mode) == MODE_INT
14540             && GET_MODE_SIZE (op_mode) < DWARF2_ADDR_SIZE)
14541           {
14542             int shift = DWARF2_ADDR_SIZE - GET_MODE_SIZE (op_mode);
14543             shift *= BITS_PER_UNIT;
14544             /* For eq/ne, if the operands are known to be zero-extended,
14545                there is no need to do the fancy shifting up.  */
14546             if (op == DW_OP_eq || op == DW_OP_ne)
14547               {
14548                 dw_loc_descr_ref last0, last1;
14549                 for (last0 = op0;
14550                      last0->dw_loc_next != NULL;
14551                      last0 = last0->dw_loc_next)
14552                   ;
14553                 for (last1 = op1;
14554                      last1->dw_loc_next != NULL;
14555                      last1 = last1->dw_loc_next)
14556                   ;
14557                 /* deref_size zero extends, and for constants we can check
14558                    whether they are zero extended or not.  */
14559                 if (((last0->dw_loc_opc == DW_OP_deref_size
14560                       && last0->dw_loc_oprnd1.v.val_int
14561                          <= GET_MODE_SIZE (op_mode))
14562                      || (CONST_INT_P (XEXP (rtl, 0))
14563                          && (unsigned HOST_WIDE_INT) INTVAL (XEXP (rtl, 0))
14564                              == (INTVAL (XEXP (rtl, 0))
14565                                  & GET_MODE_MASK (op_mode))))
14566                     && ((last1->dw_loc_opc == DW_OP_deref_size
14567                          && last1->dw_loc_oprnd1.v.val_int
14568                             <= GET_MODE_SIZE (op_mode))
14569                         || (CONST_INT_P (XEXP (rtl, 1))
14570                             && (unsigned HOST_WIDE_INT)
14571                                INTVAL (XEXP (rtl, 1))
14572                                == (INTVAL (XEXP (rtl, 1))
14573                                    & GET_MODE_MASK (op_mode)))))
14574                   goto do_compare;
14575               }
14576             add_loc_descr (&op0, int_loc_descriptor (shift));
14577             add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
14578             if (CONST_INT_P (XEXP (rtl, 1)))
14579               op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1)) << shift);
14580             else
14581               {
14582                 add_loc_descr (&op1, int_loc_descriptor (shift));
14583                 add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
14584               }
14585           }
14586       }
14587
14588     do_compare:
14589       mem_loc_result = op0;
14590       add_loc_descr (&mem_loc_result, op1);
14591       add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
14592       if (STORE_FLAG_VALUE != 1)
14593         {
14594           add_loc_descr (&mem_loc_result,
14595                          int_loc_descriptor (STORE_FLAG_VALUE));
14596           add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
14597         }
14598       break;
14599
14600     case GEU:
14601       op = DW_OP_ge;
14602       goto do_ucompare;
14603
14604     case GTU:
14605       op = DW_OP_gt;
14606       goto do_ucompare;
14607
14608     case LEU:
14609       op = DW_OP_le;
14610       goto do_ucompare;
14611
14612     case LTU:
14613       op = DW_OP_lt;
14614       goto do_ucompare;
14615
14616     do_ucompare:
14617       {
14618         enum machine_mode op_mode = GET_MODE (XEXP (rtl, 0));
14619
14620         if (op_mode == VOIDmode)
14621           op_mode = GET_MODE (XEXP (rtl, 1));
14622         if (op_mode == VOIDmode)
14623           break;
14624         if (GET_MODE_CLASS (op_mode) != MODE_INT)
14625           break;
14626
14627         if (dwarf_strict && GET_MODE_SIZE (op_mode) > DWARF2_ADDR_SIZE)
14628           break;
14629
14630         if (op_mode != VOIDmode && GET_MODE_CLASS (op_mode) != MODE_INT)
14631             break;
14632
14633         op0 = mem_loc_descriptor (XEXP (rtl, 0), op_mode, mem_mode,
14634                                   VAR_INIT_STATUS_INITIALIZED);
14635         op1 = mem_loc_descriptor (XEXP (rtl, 1), op_mode, mem_mode,
14636                                   VAR_INIT_STATUS_INITIALIZED);
14637
14638         if (op0 == 0 || op1 == 0)
14639           break;
14640
14641         if (GET_MODE_SIZE (op_mode) < DWARF2_ADDR_SIZE)
14642           {
14643             HOST_WIDE_INT mask = GET_MODE_MASK (op_mode);
14644             dw_loc_descr_ref last0, last1;
14645             for (last0 = op0;
14646                  last0->dw_loc_next != NULL;
14647                  last0 = last0->dw_loc_next)
14648               ;
14649             for (last1 = op1;
14650                  last1->dw_loc_next != NULL;
14651                  last1 = last1->dw_loc_next)
14652               ;
14653             if (CONST_INT_P (XEXP (rtl, 0)))
14654               op0 = int_loc_descriptor (INTVAL (XEXP (rtl, 0)) & mask);
14655             /* deref_size zero extends, so no need to mask it again.  */
14656             else if (last0->dw_loc_opc != DW_OP_deref_size
14657                      || last0->dw_loc_oprnd1.v.val_int
14658                         > GET_MODE_SIZE (op_mode))
14659               {
14660                 add_loc_descr (&op0, int_loc_descriptor (mask));
14661                 add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
14662               }
14663             if (CONST_INT_P (XEXP (rtl, 1)))
14664               op1 = int_loc_descriptor (INTVAL (XEXP (rtl, 1)) & mask);
14665             /* deref_size zero extends, so no need to mask it again.  */
14666             else if (last1->dw_loc_opc != DW_OP_deref_size
14667                      || last1->dw_loc_oprnd1.v.val_int
14668                         > GET_MODE_SIZE (op_mode))
14669               {
14670                 add_loc_descr (&op1, int_loc_descriptor (mask));
14671                 add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
14672               }
14673           }
14674         else if (GET_MODE_SIZE (op_mode) == DWARF2_ADDR_SIZE)
14675           {
14676             HOST_WIDE_INT bias = 1;
14677             bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
14678             add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
14679             if (CONST_INT_P (XEXP (rtl, 1)))
14680               op1 = int_loc_descriptor ((unsigned HOST_WIDE_INT) bias
14681                                         + INTVAL (XEXP (rtl, 1)));
14682             else
14683               add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst,
14684                                                   bias, 0));
14685           }
14686         else
14687           {
14688             dw_die_ref type_die = base_type_for_mode (mode, 1);
14689             dw_loc_descr_ref cvt;
14690
14691             if (type_die == NULL)
14692               break;
14693             cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14694             cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14695             cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14696             cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14697             add_loc_descr (&op0, cvt);
14698             cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14699             cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14700             cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14701             cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14702             add_loc_descr (&op1, cvt);
14703           }
14704       }
14705       goto do_compare;
14706
14707     case UMIN:
14708     case UMAX:
14709       if (GET_MODE_CLASS (mode) != MODE_INT)
14710         break;
14711       /* FALLTHRU */
14712     case SMIN:
14713     case SMAX:
14714       if (dwarf_strict
14715           && (GET_MODE_CLASS (mode) != MODE_INT
14716               || GET_MODE_SIZE (mode) > DWARF2_ADDR_SIZE))
14717         break;
14718
14719       op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14720                                 VAR_INIT_STATUS_INITIALIZED);
14721       op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
14722                                 VAR_INIT_STATUS_INITIALIZED);
14723
14724       if (op0 == 0 || op1 == 0)
14725         break;
14726
14727       add_loc_descr (&op0, new_loc_descr (DW_OP_dup, 0, 0));
14728       add_loc_descr (&op1, new_loc_descr (DW_OP_swap, 0, 0));
14729       add_loc_descr (&op1, new_loc_descr (DW_OP_over, 0, 0));
14730       if (GET_CODE (rtl) == UMIN || GET_CODE (rtl) == UMAX)
14731         {
14732           if (GET_MODE_SIZE (mode) < DWARF2_ADDR_SIZE)
14733             {
14734               HOST_WIDE_INT mask = GET_MODE_MASK (mode);
14735               add_loc_descr (&op0, int_loc_descriptor (mask));
14736               add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
14737               add_loc_descr (&op1, int_loc_descriptor (mask));
14738               add_loc_descr (&op1, new_loc_descr (DW_OP_and, 0, 0));
14739             }
14740           else if (GET_MODE_SIZE (mode) == DWARF2_ADDR_SIZE)
14741             {
14742               HOST_WIDE_INT bias = 1;
14743               bias <<= (DWARF2_ADDR_SIZE * BITS_PER_UNIT - 1);
14744               add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, bias, 0));
14745               add_loc_descr (&op1, new_loc_descr (DW_OP_plus_uconst, bias, 0));
14746             }
14747           else
14748             {
14749               dw_die_ref type_die = base_type_for_mode (mode, 1);
14750               dw_loc_descr_ref cvt;
14751
14752               if (type_die == NULL)
14753                 break;
14754               cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14755               cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14756               cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14757               cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14758               add_loc_descr (&op0, cvt);
14759               cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14760               cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14761               cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14762               cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14763               add_loc_descr (&op1, cvt);
14764             }
14765         }
14766       else if (GET_MODE_CLASS (mode) == MODE_INT
14767                && GET_MODE_SIZE (mode) < DWARF2_ADDR_SIZE)
14768         {
14769           int shift = DWARF2_ADDR_SIZE - GET_MODE_SIZE (mode);
14770           shift *= BITS_PER_UNIT;
14771           add_loc_descr (&op0, int_loc_descriptor (shift));
14772           add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
14773           add_loc_descr (&op1, int_loc_descriptor (shift));
14774           add_loc_descr (&op1, new_loc_descr (DW_OP_shl, 0, 0));
14775         }
14776
14777       if (GET_CODE (rtl) == SMIN || GET_CODE (rtl) == UMIN)
14778         op = DW_OP_lt;
14779       else
14780         op = DW_OP_gt;
14781       mem_loc_result = op0;
14782       add_loc_descr (&mem_loc_result, op1);
14783       add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
14784       {
14785         dw_loc_descr_ref bra_node, drop_node;
14786
14787         bra_node = new_loc_descr (DW_OP_bra, 0, 0);
14788         add_loc_descr (&mem_loc_result, bra_node);
14789         add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_swap, 0, 0));
14790         drop_node = new_loc_descr (DW_OP_drop, 0, 0);
14791         add_loc_descr (&mem_loc_result, drop_node);
14792         bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14793         bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
14794       }
14795       break;
14796
14797     case ZERO_EXTRACT:
14798     case SIGN_EXTRACT:
14799       if (CONST_INT_P (XEXP (rtl, 1))
14800           && CONST_INT_P (XEXP (rtl, 2))
14801           && ((unsigned) INTVAL (XEXP (rtl, 1))
14802               + (unsigned) INTVAL (XEXP (rtl, 2))
14803               <= GET_MODE_BITSIZE (mode))
14804           && GET_MODE_CLASS (mode) == MODE_INT
14805           && GET_MODE_SIZE (mode) <= DWARF2_ADDR_SIZE
14806           && GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0))) <= DWARF2_ADDR_SIZE)
14807         {
14808           int shift, size;
14809           op0 = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (XEXP (rtl, 0)),
14810                                     mem_mode, VAR_INIT_STATUS_INITIALIZED);
14811           if (op0 == 0)
14812             break;
14813           if (GET_CODE (rtl) == SIGN_EXTRACT)
14814             op = DW_OP_shra;
14815           else
14816             op = DW_OP_shr;
14817           mem_loc_result = op0;
14818           size = INTVAL (XEXP (rtl, 1));
14819           shift = INTVAL (XEXP (rtl, 2));
14820           if (BITS_BIG_ENDIAN)
14821             shift = GET_MODE_BITSIZE (GET_MODE (XEXP (rtl, 0)))
14822                     - shift - size;
14823           if (shift + size != (int) DWARF2_ADDR_SIZE)
14824             {
14825               add_loc_descr (&mem_loc_result,
14826                              int_loc_descriptor (DWARF2_ADDR_SIZE
14827                                                  - shift - size));
14828               add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_shl, 0, 0));
14829             }
14830           if (size != (int) DWARF2_ADDR_SIZE)
14831             {
14832               add_loc_descr (&mem_loc_result,
14833                              int_loc_descriptor (DWARF2_ADDR_SIZE - size));
14834               add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
14835             }
14836         }
14837       break;
14838
14839     case IF_THEN_ELSE:
14840       {
14841         dw_loc_descr_ref op2, bra_node, drop_node;
14842         op0 = mem_loc_descriptor (XEXP (rtl, 0),
14843                                   GET_MODE (XEXP (rtl, 0)) == VOIDmode
14844                                   ? word_mode : GET_MODE (XEXP (rtl, 0)),
14845                                   mem_mode, VAR_INIT_STATUS_INITIALIZED);
14846         op1 = mem_loc_descriptor (XEXP (rtl, 1), mode, mem_mode,
14847                                   VAR_INIT_STATUS_INITIALIZED);
14848         op2 = mem_loc_descriptor (XEXP (rtl, 2), mode, mem_mode,
14849                                   VAR_INIT_STATUS_INITIALIZED);
14850         if (op0 == NULL || op1 == NULL || op2 == NULL)
14851           break;
14852
14853         mem_loc_result = op1;
14854         add_loc_descr (&mem_loc_result, op2);
14855         add_loc_descr (&mem_loc_result, op0);
14856         bra_node = new_loc_descr (DW_OP_bra, 0, 0);
14857         add_loc_descr (&mem_loc_result, bra_node);
14858         add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_swap, 0, 0));
14859         drop_node = new_loc_descr (DW_OP_drop, 0, 0);
14860         add_loc_descr (&mem_loc_result, drop_node);
14861         bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
14862         bra_node->dw_loc_oprnd1.v.val_loc = drop_node;
14863       }
14864       break;
14865
14866     case FLOAT_EXTEND:
14867     case FLOAT_TRUNCATE:
14868     case FLOAT:
14869     case UNSIGNED_FLOAT:
14870     case FIX:
14871     case UNSIGNED_FIX:
14872       if (!dwarf_strict)
14873         {
14874           dw_die_ref type_die;
14875           dw_loc_descr_ref cvt;
14876
14877           op0 = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (XEXP (rtl, 0)),
14878                                     mem_mode, VAR_INIT_STATUS_INITIALIZED);
14879           if (op0 == NULL)
14880             break;
14881           if (GET_MODE_CLASS (GET_MODE (XEXP (rtl, 0))) == MODE_INT
14882               && (GET_CODE (rtl) == UNSIGNED_FLOAT
14883                   || GET_MODE_SIZE (GET_MODE (XEXP (rtl, 0)))
14884                      <= DWARF2_ADDR_SIZE))
14885             {
14886               type_die = base_type_for_mode (GET_MODE (XEXP (rtl, 0)),
14887                                              GET_CODE (rtl) == UNSIGNED_FLOAT);
14888               if (type_die == NULL)
14889                 break;
14890               cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14891               cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14892               cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14893               cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14894               add_loc_descr (&op0, cvt);
14895             }
14896           type_die = base_type_for_mode (mode, GET_CODE (rtl) == UNSIGNED_FIX);
14897           if (type_die == NULL)
14898             break;
14899           cvt = new_loc_descr (DW_OP_GNU_convert, 0, 0);
14900           cvt->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
14901           cvt->dw_loc_oprnd1.v.val_die_ref.die = type_die;
14902           cvt->dw_loc_oprnd1.v.val_die_ref.external = 0;
14903           add_loc_descr (&op0, cvt);
14904           if (GET_MODE_CLASS (mode) == MODE_INT
14905               && (GET_CODE (rtl) == UNSIGNED_FIX
14906                   || GET_MODE_SIZE (mode) < DWARF2_ADDR_SIZE))
14907             {
14908               op0 = convert_descriptor_to_signed (mode, op0);
14909               if (op0 == NULL)
14910                 break;
14911             }
14912           mem_loc_result = op0;
14913         }
14914       break;
14915
14916     case CLZ:
14917     case CTZ:
14918     case FFS:
14919       /* CLZ (where constV is CLZ_DEFINED_VALUE_AT_ZERO computed value,
14920               const0 is DW_OP_lit0 or corresponding typed constant,
14921               const1 is DW_OP_lit1 or corresponding typed constant
14922               and constMSB is constant with just the MSB bit set
14923               for the mode):
14924            DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
14925          L1: const0 DW_OP_swap
14926          L2: DW_OP_dup constMSB DW_OP_and DW_OP_bra <L3> const1 DW_OP_shl
14927              DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
14928          L3: DW_OP_drop
14929          L4: DW_OP_nop
14930
14931          CTZ is similar:
14932            DW_OP_dup DW_OP_bra <L1> DW_OP_drop constV DW_OP_skip <L4>
14933          L1: const0 DW_OP_swap
14934          L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
14935              DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
14936          L3: DW_OP_drop
14937          L4: DW_OP_nop
14938
14939          FFS is similar:
14940            DW_OP_dup DW_OP_bra <L1> DW_OP_drop const0 DW_OP_skip <L4>
14941          L1: const1 DW_OP_swap
14942          L2: DW_OP_dup const1 DW_OP_and DW_OP_bra <L3> const1 DW_OP_shr
14943              DW_OP_swap DW_OP_plus_uconst <1> DW_OP_swap DW_OP_skip <L2>
14944          L3: DW_OP_drop
14945          L4: DW_OP_nop  */
14946       if (GET_MODE_CLASS (mode) == MODE_INT
14947           && GET_MODE (XEXP (rtl, 0)) == mode
14948           && (GET_CODE (rtl) != CLZ
14949               || GET_MODE_BITSIZE (mode) <= 2 * HOST_BITS_PER_WIDE_INT))
14950         {
14951           HOST_WIDE_INT valv;
14952           dw_loc_descr_ref l1jump, l1label;
14953           dw_loc_descr_ref l2jump, l2label;
14954           dw_loc_descr_ref l3jump, l3label;
14955           dw_loc_descr_ref l4jump, l4label;
14956           rtx msb;
14957
14958           op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
14959                                     VAR_INIT_STATUS_INITIALIZED);
14960           if (op0 == NULL)
14961             break;
14962           if (GET_CODE (rtl) == CLZ)
14963             {
14964               if (!CLZ_DEFINED_VALUE_AT_ZERO (mode, valv))
14965                 valv = GET_MODE_BITSIZE (mode);
14966             }
14967           else if (GET_CODE (rtl) == FFS)
14968             valv = 0;
14969           else if (!CTZ_DEFINED_VALUE_AT_ZERO (mode, valv))
14970             valv = GET_MODE_BITSIZE (mode);
14971           add_loc_descr (&op0, new_loc_descr (DW_OP_dup, 0, 0));
14972           l1jump = new_loc_descr (DW_OP_bra, 0, 0);
14973           add_loc_descr (&op0, l1jump);
14974           add_loc_descr (&op0, new_loc_descr (DW_OP_drop, 0, 0));
14975           op1 = mem_loc_descriptor (GEN_INT (valv), mode, mem_mode,
14976                                     VAR_INIT_STATUS_INITIALIZED);
14977           if (op1 == NULL)
14978             break;
14979           add_loc_descr (&op0, op1);
14980           l4jump = new_loc_descr (DW_OP_skip, 0, 0);
14981           add_loc_descr (&op0, l4jump);
14982           l1label = mem_loc_descriptor (GET_CODE (rtl) == FFS
14983                                         ? const1_rtx : const0_rtx,
14984                                         mode, mem_mode,
14985                                         VAR_INIT_STATUS_INITIALIZED);
14986           if (l1label == NULL)
14987             break;
14988           add_loc_descr (&op0, l1label);
14989           add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
14990           l2label = new_loc_descr (DW_OP_dup, 0, 0);
14991           add_loc_descr (&op0, l2label);
14992           if (GET_CODE (rtl) != CLZ)
14993             msb = const1_rtx;
14994           else if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
14995             msb = GEN_INT ((unsigned HOST_WIDE_INT) 1
14996                            << (GET_MODE_BITSIZE (mode) - 1));
14997           else
14998             msb = immed_double_const (0, (unsigned HOST_WIDE_INT) 1
14999                                          << (GET_MODE_BITSIZE (mode)
15000                                              - HOST_BITS_PER_WIDE_INT - 1),
15001                                       mode);
15002           if (GET_CODE (msb) == CONST_INT && INTVAL (msb) < 0)
15003             op1 = new_loc_descr (HOST_BITS_PER_WIDE_INT == 32
15004                                  ? DW_OP_const4u
15005                                  : HOST_BITS_PER_WIDE_INT == 64
15006                                  ? DW_OP_const8u : DW_OP_constu,
15007                                  INTVAL (msb), 0);
15008           else
15009             op1 = mem_loc_descriptor (msb, mode, mem_mode,
15010                                       VAR_INIT_STATUS_INITIALIZED);
15011           if (op1 == NULL)
15012             break;
15013           add_loc_descr (&op0, op1);
15014           add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
15015           l3jump = new_loc_descr (DW_OP_bra, 0, 0);
15016           add_loc_descr (&op0, l3jump);
15017           op1 = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15018                                     VAR_INIT_STATUS_INITIALIZED);
15019           if (op1 == NULL)
15020             break;
15021           add_loc_descr (&op0, op1);
15022           add_loc_descr (&op0, new_loc_descr (GET_CODE (rtl) == CLZ
15023                                               ? DW_OP_shl : DW_OP_shr, 0, 0));
15024           add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
15025           add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst, 1, 0));
15026           add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
15027           l2jump = new_loc_descr (DW_OP_skip, 0, 0);
15028           add_loc_descr (&op0, l2jump);
15029           l3label = new_loc_descr (DW_OP_drop, 0, 0);
15030           add_loc_descr (&op0, l3label);
15031           l4label = new_loc_descr (DW_OP_nop, 0, 0);
15032           add_loc_descr (&op0, l4label);
15033           l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15034           l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15035           l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15036           l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15037           l3jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15038           l3jump->dw_loc_oprnd1.v.val_loc = l3label;
15039           l4jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15040           l4jump->dw_loc_oprnd1.v.val_loc = l4label;
15041           mem_loc_result = op0;
15042         }
15043       break;
15044
15045     case POPCOUNT:
15046     case PARITY:
15047       /* POPCOUNT (const0 is DW_OP_lit0 or corresponding typed constant,
15048                    const1 is DW_OP_lit1 or corresponding typed constant):
15049              const0 DW_OP_swap
15050          L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
15051              DW_OP_plus DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
15052          L2: DW_OP_drop
15053
15054          PARITY is similar:
15055          L1: DW_OP_dup DW_OP_bra <L2> DW_OP_dup DW_OP_rot const1 DW_OP_and
15056              DW_OP_xor DW_OP_swap const1 DW_OP_shr DW_OP_skip <L1>
15057          L2: DW_OP_drop  */
15058       if (GET_MODE_CLASS (mode) == MODE_INT
15059           && GET_MODE (XEXP (rtl, 0)) == mode)
15060         {
15061           dw_loc_descr_ref l1jump, l1label;
15062           dw_loc_descr_ref l2jump, l2label;
15063
15064           op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15065                                     VAR_INIT_STATUS_INITIALIZED);
15066           if (op0 == NULL)
15067             break;
15068           op1 = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15069                                     VAR_INIT_STATUS_INITIALIZED);
15070           if (op1 == NULL)
15071             break;
15072           add_loc_descr (&op0, op1);
15073           add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
15074           l1label = new_loc_descr (DW_OP_dup, 0, 0);
15075           add_loc_descr (&op0, l1label);
15076           l2jump = new_loc_descr (DW_OP_bra, 0, 0);
15077           add_loc_descr (&op0, l2jump);
15078           add_loc_descr (&op0, new_loc_descr (DW_OP_dup, 0, 0));
15079           add_loc_descr (&op0, new_loc_descr (DW_OP_rot, 0, 0));
15080           op1 = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15081                                     VAR_INIT_STATUS_INITIALIZED);
15082           if (op1 == NULL)
15083             break;
15084           add_loc_descr (&op0, op1);
15085           add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
15086           add_loc_descr (&op0, new_loc_descr (GET_CODE (rtl) == POPCOUNT
15087                                               ? DW_OP_plus : DW_OP_xor, 0, 0));
15088           add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
15089           op1 = mem_loc_descriptor (const1_rtx, mode, mem_mode,
15090                                     VAR_INIT_STATUS_INITIALIZED);
15091           add_loc_descr (&op0, op1);
15092           add_loc_descr (&op0, new_loc_descr (DW_OP_shr, 0, 0));
15093           l1jump = new_loc_descr (DW_OP_skip, 0, 0);
15094           add_loc_descr (&op0, l1jump);
15095           l2label = new_loc_descr (DW_OP_drop, 0, 0);
15096           add_loc_descr (&op0, l2label);
15097           l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15098           l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15099           l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15100           l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15101           mem_loc_result = op0;
15102         }
15103       break;
15104
15105     case BSWAP:
15106       /* BSWAP (constS is initial shift count, either 56 or 24):
15107              constS const0
15108          L1: DW_OP_pick <2> constS DW_OP_pick <3> DW_OP_minus DW_OP_shr
15109              const255 DW_OP_and DW_OP_pick <2> DW_OP_shl DW_OP_or
15110              DW_OP_swap DW_OP_dup const0 DW_OP_eq DW_OP_bra <L2> const8
15111              DW_OP_minus DW_OP_swap DW_OP_skip <L1>
15112          L2: DW_OP_drop DW_OP_swap DW_OP_drop  */
15113       if (GET_MODE_CLASS (mode) == MODE_INT
15114           && BITS_PER_UNIT == 8
15115           && (GET_MODE_BITSIZE (mode) == 32
15116               || GET_MODE_BITSIZE (mode) == 64))
15117         {
15118           dw_loc_descr_ref l1jump, l1label;
15119           dw_loc_descr_ref l2jump, l2label;
15120
15121           op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15122                                     VAR_INIT_STATUS_INITIALIZED);
15123           if (op0 == NULL)
15124             break;
15125
15126           op1 = mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode) - 8),
15127                                     mode, mem_mode,
15128                                     VAR_INIT_STATUS_INITIALIZED);
15129           if (op1 == NULL)
15130             break;
15131           add_loc_descr (&op0, op1);
15132           op1 = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15133                                     VAR_INIT_STATUS_INITIALIZED);
15134           if (op1 == NULL)
15135             break;
15136           add_loc_descr (&op0, op1);
15137           l1label = new_loc_descr (DW_OP_pick, 2, 0);
15138           add_loc_descr (&op0, l1label);
15139           op1 = mem_loc_descriptor (GEN_INT (GET_MODE_BITSIZE (mode) - 8),
15140                                     mode, mem_mode,
15141                                     VAR_INIT_STATUS_INITIALIZED);
15142           add_loc_descr (&op0, op1);
15143           add_loc_descr (&op0, new_loc_descr (DW_OP_pick, 3, 0));
15144           add_loc_descr (&op0, new_loc_descr (DW_OP_minus, 0, 0));
15145           add_loc_descr (&op0, new_loc_descr (DW_OP_shr, 0, 0));
15146           op1 = mem_loc_descriptor (GEN_INT (255), mode, mem_mode,
15147                                     VAR_INIT_STATUS_INITIALIZED);
15148           if (op1 == NULL)
15149             break;
15150           add_loc_descr (&op0, op1);
15151           add_loc_descr (&op0, new_loc_descr (DW_OP_and, 0, 0));
15152           add_loc_descr (&op0, new_loc_descr (DW_OP_pick, 2, 0));
15153           add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
15154           add_loc_descr (&op0, new_loc_descr (DW_OP_or, 0, 0));
15155           add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
15156           add_loc_descr (&op0, new_loc_descr (DW_OP_dup, 0, 0));
15157           op1 = mem_loc_descriptor (const0_rtx, mode, mem_mode,
15158                                     VAR_INIT_STATUS_INITIALIZED);
15159           add_loc_descr (&op0, op1);
15160           add_loc_descr (&op0, new_loc_descr (DW_OP_eq, 0, 0));
15161           l2jump = new_loc_descr (DW_OP_bra, 0, 0);
15162           add_loc_descr (&op0, l2jump);
15163           op1 = mem_loc_descriptor (GEN_INT (8), mode, mem_mode,
15164                                     VAR_INIT_STATUS_INITIALIZED);
15165           add_loc_descr (&op0, op1);
15166           add_loc_descr (&op0, new_loc_descr (DW_OP_minus, 0, 0));
15167           add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
15168           l1jump = new_loc_descr (DW_OP_skip, 0, 0);
15169           add_loc_descr (&op0, l1jump);
15170           l2label = new_loc_descr (DW_OP_drop, 0, 0);
15171           add_loc_descr (&op0, l2label);
15172           add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
15173           add_loc_descr (&op0, new_loc_descr (DW_OP_drop, 0, 0));
15174           l1jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15175           l1jump->dw_loc_oprnd1.v.val_loc = l1label;
15176           l2jump->dw_loc_oprnd1.val_class = dw_val_class_loc;
15177           l2jump->dw_loc_oprnd1.v.val_loc = l2label;
15178           mem_loc_result = op0;
15179         }
15180       break;
15181
15182     case ROTATE:
15183     case ROTATERT:
15184       /* ROTATE (constMASK is mode mask, BITSIZE is bitsize of mode):
15185              DW_OP_over DW_OP_over DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
15186              [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_neg
15187              DW_OP_plus_uconst <BITSIZE> DW_OP_shr DW_OP_or
15188
15189          ROTATERT is similar:
15190              DW_OP_over DW_OP_over DW_OP_neg DW_OP_plus_uconst <BITSIZE>
15191              DW_OP_shl [ constMASK DW_OP_and ] DW_OP_rot
15192              [ DW_OP_swap constMASK DW_OP_and DW_OP_swap ] DW_OP_shr DW_OP_or
15193          */
15194       if (GET_MODE_CLASS (mode) == MODE_INT)
15195         {
15196           rtx rtlop1 = XEXP (rtl, 1);
15197           dw_loc_descr_ref mask[2] = { NULL, NULL };
15198           int i;
15199
15200           if (GET_MODE (rtlop1) != VOIDmode
15201               && GET_MODE_BITSIZE (GET_MODE (rtlop1))
15202                  < GET_MODE_BITSIZE (mode))
15203             rtlop1 = gen_rtx_ZERO_EXTEND (mode, rtlop1);
15204           op0 = mem_loc_descriptor (XEXP (rtl, 0), mode, mem_mode,
15205                                     VAR_INIT_STATUS_INITIALIZED);
15206           op1 = mem_loc_descriptor (rtlop1, mode, mem_mode,
15207                                     VAR_INIT_STATUS_INITIALIZED);
15208           if (op0 == NULL || op1 == NULL)
15209             break;
15210           if (GET_MODE_SIZE (mode) < DWARF2_ADDR_SIZE)
15211             for (i = 0; i < 2; i++)
15212               {
15213                 if (GET_MODE_BITSIZE (mode) < HOST_BITS_PER_WIDE_INT)
15214                   mask[i] = mem_loc_descriptor (GEN_INT (GET_MODE_MASK (mode)),
15215                                                 mode, mem_mode,
15216                                                 VAR_INIT_STATUS_INITIALIZED);
15217                 else if (GET_MODE_BITSIZE (mode) == HOST_BITS_PER_WIDE_INT)
15218                   mask[i] = new_loc_descr (HOST_BITS_PER_WIDE_INT == 32
15219                                            ? DW_OP_const4u
15220                                            : HOST_BITS_PER_WIDE_INT == 64
15221                                            ? DW_OP_const8u : DW_OP_constu,
15222                                            GET_MODE_MASK (mode), 0);
15223                 else
15224                   mask[i] = NULL;
15225                 if (mask[i] == NULL)
15226                   return NULL;
15227                 add_loc_descr (&mask[i], new_loc_descr (DW_OP_and, 0, 0));
15228               }
15229           add_loc_descr (&op0, op1);
15230           add_loc_descr (&op0, new_loc_descr (DW_OP_over, 0, 0));
15231           add_loc_descr (&op0, new_loc_descr (DW_OP_over, 0, 0));
15232           if (GET_CODE (rtl) == ROTATERT)
15233             {
15234               add_loc_descr (&op0, new_loc_descr (DW_OP_neg, 0, 0));
15235               add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst,
15236                                                   GET_MODE_BITSIZE (mode), 0));
15237             }
15238           add_loc_descr (&op0, new_loc_descr (DW_OP_shl, 0, 0));
15239           if (mask[0] != NULL)
15240             add_loc_descr (&op0, mask[0]);
15241           add_loc_descr (&op0, new_loc_descr (DW_OP_rot, 0, 0));
15242           if (mask[1] != NULL)
15243             {
15244               add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
15245               add_loc_descr (&op0, mask[1]);
15246               add_loc_descr (&op0, new_loc_descr (DW_OP_swap, 0, 0));
15247             }
15248           if (GET_CODE (rtl) == ROTATE)
15249             {
15250               add_loc_descr (&op0, new_loc_descr (DW_OP_neg, 0, 0));
15251               add_loc_descr (&op0, new_loc_descr (DW_OP_plus_uconst,
15252                                                   GET_MODE_BITSIZE (mode), 0));
15253             }
15254           add_loc_descr (&op0, new_loc_descr (DW_OP_shr, 0, 0));
15255           add_loc_descr (&op0, new_loc_descr (DW_OP_or, 0, 0));
15256           mem_loc_result = op0;
15257         }
15258       break;
15259
15260     case COMPARE:
15261     case TRUNCATE:
15262       /* In theory, we could implement the above.  */
15263       /* DWARF cannot represent the unsigned compare operations
15264          natively.  */
15265     case SS_MULT:
15266     case US_MULT:
15267     case SS_DIV:
15268     case US_DIV:
15269     case SS_PLUS:
15270     case US_PLUS:
15271     case SS_MINUS:
15272     case US_MINUS:
15273     case SS_NEG:
15274     case US_NEG:
15275     case SS_ABS:
15276     case SS_ASHIFT:
15277     case US_ASHIFT:
15278     case SS_TRUNCATE:
15279     case US_TRUNCATE:
15280     case UNORDERED:
15281     case ORDERED:
15282     case UNEQ:
15283     case UNGE:
15284     case UNGT:
15285     case UNLE:
15286     case UNLT:
15287     case LTGT:
15288     case FRACT_CONVERT:
15289     case UNSIGNED_FRACT_CONVERT:
15290     case SAT_FRACT:
15291     case UNSIGNED_SAT_FRACT:
15292     case SQRT:
15293     case ASM_OPERANDS:
15294     case VEC_MERGE:
15295     case VEC_SELECT:
15296     case VEC_CONCAT:
15297     case VEC_DUPLICATE:
15298     case UNSPEC:
15299     case HIGH:
15300     case FMA:
15301     case STRICT_LOW_PART:
15302     case CONST_VECTOR:
15303     case CONST_FIXED:
15304       /* If delegitimize_address couldn't do anything with the UNSPEC, we
15305          can't express it in the debug info.  This can happen e.g. with some
15306          TLS UNSPECs.  */
15307       break;
15308
15309     case CONST_STRING:
15310       resolve_one_addr (&rtl, NULL);
15311       goto symref;
15312
15313     default:
15314 #ifdef ENABLE_CHECKING
15315       print_rtl (stderr, rtl);
15316       gcc_unreachable ();
15317 #else
15318       break;
15319 #endif
15320     }
15321
15322   if (mem_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
15323     add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
15324
15325   return mem_loc_result;
15326 }
15327
15328 /* Return a descriptor that describes the concatenation of two locations.
15329    This is typically a complex variable.  */
15330
15331 static dw_loc_descr_ref
15332 concat_loc_descriptor (rtx x0, rtx x1, enum var_init_status initialized)
15333 {
15334   dw_loc_descr_ref cc_loc_result = NULL;
15335   dw_loc_descr_ref x0_ref
15336     = loc_descriptor (x0, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
15337   dw_loc_descr_ref x1_ref
15338     = loc_descriptor (x1, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
15339
15340   if (x0_ref == 0 || x1_ref == 0)
15341     return 0;
15342
15343   cc_loc_result = x0_ref;
15344   add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x0)));
15345
15346   add_loc_descr (&cc_loc_result, x1_ref);
15347   add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x1)));
15348
15349   if (initialized == VAR_INIT_STATUS_UNINITIALIZED)
15350     add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
15351
15352   return cc_loc_result;
15353 }
15354
15355 /* Return a descriptor that describes the concatenation of N
15356    locations.  */
15357
15358 static dw_loc_descr_ref
15359 concatn_loc_descriptor (rtx concatn, enum var_init_status initialized)
15360 {
15361   unsigned int i;
15362   dw_loc_descr_ref cc_loc_result = NULL;
15363   unsigned int n = XVECLEN (concatn, 0);
15364
15365   for (i = 0; i < n; ++i)
15366     {
15367       dw_loc_descr_ref ref;
15368       rtx x = XVECEXP (concatn, 0, i);
15369
15370       ref = loc_descriptor (x, VOIDmode, VAR_INIT_STATUS_INITIALIZED);
15371       if (ref == NULL)
15372         return NULL;
15373
15374       add_loc_descr (&cc_loc_result, ref);
15375       add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x)));
15376     }
15377
15378   if (cc_loc_result && initialized == VAR_INIT_STATUS_UNINITIALIZED)
15379     add_loc_descr (&cc_loc_result, new_loc_descr (DW_OP_GNU_uninit, 0, 0));
15380
15381   return cc_loc_result;
15382 }
15383
15384 /* Helper function for loc_descriptor.  Return DW_OP_GNU_implicit_pointer
15385    for DEBUG_IMPLICIT_PTR RTL.  */
15386
15387 static dw_loc_descr_ref
15388 implicit_ptr_descriptor (rtx rtl, HOST_WIDE_INT offset)
15389 {
15390   dw_loc_descr_ref ret;
15391   dw_die_ref ref;
15392
15393   if (dwarf_strict)
15394     return NULL;
15395   gcc_assert (TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == VAR_DECL
15396               || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == PARM_DECL
15397               || TREE_CODE (DEBUG_IMPLICIT_PTR_DECL (rtl)) == RESULT_DECL);
15398   ref = lookup_decl_die (DEBUG_IMPLICIT_PTR_DECL (rtl));
15399   ret = new_loc_descr (DW_OP_GNU_implicit_pointer, 0, offset);
15400   ret->dw_loc_oprnd2.val_class = dw_val_class_const;
15401   if (ref)
15402     {
15403       ret->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
15404       ret->dw_loc_oprnd1.v.val_die_ref.die = ref;
15405       ret->dw_loc_oprnd1.v.val_die_ref.external = 0;
15406     }
15407   else
15408     {
15409       ret->dw_loc_oprnd1.val_class = dw_val_class_decl_ref;
15410       ret->dw_loc_oprnd1.v.val_decl_ref = DEBUG_IMPLICIT_PTR_DECL (rtl);
15411     }
15412   return ret;
15413 }
15414
15415 /* Output a proper Dwarf location descriptor for a variable or parameter
15416    which is either allocated in a register or in a memory location.  For a
15417    register, we just generate an OP_REG and the register number.  For a
15418    memory location we provide a Dwarf postfix expression describing how to
15419    generate the (dynamic) address of the object onto the address stack.
15420
15421    MODE is mode of the decl if this loc_descriptor is going to be used in
15422    .debug_loc section where DW_OP_stack_value and DW_OP_implicit_value are
15423    allowed, VOIDmode otherwise.
15424
15425    If we don't know how to describe it, return 0.  */
15426
15427 static dw_loc_descr_ref
15428 loc_descriptor (rtx rtl, enum machine_mode mode,
15429                 enum var_init_status initialized)
15430 {
15431   dw_loc_descr_ref loc_result = NULL;
15432
15433   switch (GET_CODE (rtl))
15434     {
15435     case SUBREG:
15436       /* The case of a subreg may arise when we have a local (register)
15437          variable or a formal (register) parameter which doesn't quite fill
15438          up an entire register.  For now, just assume that it is
15439          legitimate to make the Dwarf info refer to the whole register which
15440          contains the given subreg.  */
15441       if (REG_P (SUBREG_REG (rtl)) && subreg_lowpart_p (rtl))
15442         loc_result = loc_descriptor (SUBREG_REG (rtl), mode, initialized);
15443       else
15444         goto do_default;
15445       break;
15446
15447     case REG:
15448       loc_result = reg_loc_descriptor (rtl, initialized);
15449       break;
15450
15451     case MEM:
15452       loc_result = mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
15453                                        GET_MODE (rtl), initialized);
15454       if (loc_result == NULL)
15455         loc_result = tls_mem_loc_descriptor (rtl);
15456       if (loc_result == NULL)
15457         {
15458           rtx new_rtl = avoid_constant_pool_reference (rtl);
15459           if (new_rtl != rtl)
15460             loc_result = loc_descriptor (new_rtl, mode, initialized);
15461         }
15462       break;
15463
15464     case CONCAT:
15465       loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1),
15466                                           initialized);
15467       break;
15468
15469     case CONCATN:
15470       loc_result = concatn_loc_descriptor (rtl, initialized);
15471       break;
15472
15473     case VAR_LOCATION:
15474       /* Single part.  */
15475       if (GET_CODE (PAT_VAR_LOCATION_LOC (rtl)) != PARALLEL)
15476         {
15477           rtx loc = PAT_VAR_LOCATION_LOC (rtl);
15478           if (GET_CODE (loc) == EXPR_LIST)
15479             loc = XEXP (loc, 0);
15480           loc_result = loc_descriptor (loc, mode, initialized);
15481           break;
15482         }
15483
15484       rtl = XEXP (rtl, 1);
15485       /* FALLTHRU */
15486
15487     case PARALLEL:
15488       {
15489         rtvec par_elems = XVEC (rtl, 0);
15490         int num_elem = GET_NUM_ELEM (par_elems);
15491         enum machine_mode mode;
15492         int i;
15493
15494         /* Create the first one, so we have something to add to.  */
15495         loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0),
15496                                      VOIDmode, initialized);
15497         if (loc_result == NULL)
15498           return NULL;
15499         mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
15500         add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
15501         for (i = 1; i < num_elem; i++)
15502           {
15503             dw_loc_descr_ref temp;
15504
15505             temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0),
15506                                    VOIDmode, initialized);
15507             if (temp == NULL)
15508               return NULL;
15509             add_loc_descr (&loc_result, temp);
15510             mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
15511             add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
15512           }
15513       }
15514       break;
15515
15516     case CONST_INT:
15517       if (mode != VOIDmode && mode != BLKmode)
15518         loc_result = address_of_int_loc_descriptor (GET_MODE_SIZE (mode),
15519                                                     INTVAL (rtl));
15520       break;
15521
15522     case CONST_DOUBLE:
15523       if (mode == VOIDmode)
15524         mode = GET_MODE (rtl);
15525
15526       if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
15527         {
15528           gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
15529
15530           /* Note that a CONST_DOUBLE rtx could represent either an integer
15531              or a floating-point constant.  A CONST_DOUBLE is used whenever
15532              the constant requires more than one word in order to be
15533              adequately represented.  We output CONST_DOUBLEs as blocks.  */
15534           loc_result = new_loc_descr (DW_OP_implicit_value,
15535                                       GET_MODE_SIZE (mode), 0);
15536           if (SCALAR_FLOAT_MODE_P (mode))
15537             {
15538               unsigned int length = GET_MODE_SIZE (mode);
15539               unsigned char *array
15540                   = (unsigned char*) ggc_alloc_atomic (length);
15541
15542               insert_float (rtl, array);
15543               loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
15544               loc_result->dw_loc_oprnd2.v.val_vec.length = length / 4;
15545               loc_result->dw_loc_oprnd2.v.val_vec.elt_size = 4;
15546               loc_result->dw_loc_oprnd2.v.val_vec.array = array;
15547             }
15548           else
15549             {
15550               loc_result->dw_loc_oprnd2.val_class = dw_val_class_const_double;
15551               loc_result->dw_loc_oprnd2.v.val_double
15552                 = rtx_to_double_int (rtl);
15553             }
15554         }
15555       break;
15556
15557     case CONST_VECTOR:
15558       if (mode == VOIDmode)
15559         mode = GET_MODE (rtl);
15560
15561       if (mode != VOIDmode && (dwarf_version >= 4 || !dwarf_strict))
15562         {
15563           unsigned int elt_size = GET_MODE_UNIT_SIZE (GET_MODE (rtl));
15564           unsigned int length = CONST_VECTOR_NUNITS (rtl);
15565           unsigned char *array = (unsigned char *)
15566             ggc_alloc_atomic (length * elt_size);
15567           unsigned int i;
15568           unsigned char *p;
15569
15570           gcc_assert (mode == GET_MODE (rtl) || VOIDmode == GET_MODE (rtl));
15571           switch (GET_MODE_CLASS (mode))
15572             {
15573             case MODE_VECTOR_INT:
15574               for (i = 0, p = array; i < length; i++, p += elt_size)
15575                 {
15576                   rtx elt = CONST_VECTOR_ELT (rtl, i);
15577                   double_int val = rtx_to_double_int (elt);
15578
15579                   if (elt_size <= sizeof (HOST_WIDE_INT))
15580                     insert_int (double_int_to_shwi (val), elt_size, p);
15581                   else
15582                     {
15583                       gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
15584                       insert_double (val, p);
15585                     }
15586                 }
15587               break;
15588
15589             case MODE_VECTOR_FLOAT:
15590               for (i = 0, p = array; i < length; i++, p += elt_size)
15591                 {
15592                   rtx elt = CONST_VECTOR_ELT (rtl, i);
15593                   insert_float (elt, p);
15594                 }
15595               break;
15596
15597             default:
15598               gcc_unreachable ();
15599             }
15600
15601           loc_result = new_loc_descr (DW_OP_implicit_value,
15602                                       length * elt_size, 0);
15603           loc_result->dw_loc_oprnd2.val_class = dw_val_class_vec;
15604           loc_result->dw_loc_oprnd2.v.val_vec.length = length;
15605           loc_result->dw_loc_oprnd2.v.val_vec.elt_size = elt_size;
15606           loc_result->dw_loc_oprnd2.v.val_vec.array = array;
15607         }
15608       break;
15609
15610     case CONST:
15611       if (mode == VOIDmode
15612           || GET_CODE (XEXP (rtl, 0)) == CONST_INT
15613           || GET_CODE (XEXP (rtl, 0)) == CONST_DOUBLE
15614           || GET_CODE (XEXP (rtl, 0)) == CONST_VECTOR)
15615         {
15616           loc_result = loc_descriptor (XEXP (rtl, 0), mode, initialized);
15617           break;
15618         }
15619       /* FALLTHROUGH */
15620     case SYMBOL_REF:
15621       if (!const_ok_for_output (rtl))
15622         break;
15623     case LABEL_REF:
15624       if (mode != VOIDmode && GET_MODE_SIZE (mode) == DWARF2_ADDR_SIZE
15625           && (dwarf_version >= 4 || !dwarf_strict))
15626         {
15627           loc_result = new_loc_descr (DW_OP_addr, 0, 0);
15628           loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
15629           loc_result->dw_loc_oprnd1.v.val_addr = rtl;
15630           add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
15631           VEC_safe_push (rtx, gc, used_rtx_array, rtl);
15632         }
15633       break;
15634
15635     case DEBUG_IMPLICIT_PTR:
15636       loc_result = implicit_ptr_descriptor (rtl, 0);
15637       break;
15638
15639     case PLUS:
15640       if (GET_CODE (XEXP (rtl, 0)) == DEBUG_IMPLICIT_PTR
15641           && CONST_INT_P (XEXP (rtl, 1)))
15642         {
15643           loc_result
15644             = implicit_ptr_descriptor (XEXP (rtl, 0), INTVAL (XEXP (rtl, 1)));
15645           break;
15646         }
15647       /* FALLTHRU */
15648     do_default:
15649     default:
15650       if ((GET_MODE_CLASS (mode) == MODE_INT && GET_MODE (rtl) == mode
15651            && GET_MODE_SIZE (GET_MODE (rtl)) <= DWARF2_ADDR_SIZE
15652            && dwarf_version >= 4)
15653           || (!dwarf_strict && mode != VOIDmode && mode != BLKmode))
15654         {
15655           /* Value expression.  */
15656           loc_result = mem_loc_descriptor (rtl, mode, VOIDmode, initialized);
15657           if (loc_result)
15658             add_loc_descr (&loc_result,
15659                            new_loc_descr (DW_OP_stack_value, 0, 0));
15660         }
15661       break;
15662     }
15663
15664   return loc_result;
15665 }
15666
15667 /* We need to figure out what section we should use as the base for the
15668    address ranges where a given location is valid.
15669    1. If this particular DECL has a section associated with it, use that.
15670    2. If this function has a section associated with it, use that.
15671    3. Otherwise, use the text section.
15672    XXX: If you split a variable across multiple sections, we won't notice.  */
15673
15674 static const char *
15675 secname_for_decl (const_tree decl)
15676 {
15677   const char *secname;
15678
15679   if (VAR_OR_FUNCTION_DECL_P (decl) && DECL_SECTION_NAME (decl))
15680     {
15681       tree sectree = DECL_SECTION_NAME (decl);
15682       secname = TREE_STRING_POINTER (sectree);
15683     }
15684   else if (current_function_decl && DECL_SECTION_NAME (current_function_decl))
15685     {
15686       tree sectree = DECL_SECTION_NAME (current_function_decl);
15687       secname = TREE_STRING_POINTER (sectree);
15688     }
15689   else if (cfun && in_cold_section_p)
15690     secname = crtl->subsections.cold_section_label;
15691   else
15692     secname = text_section_label;
15693
15694   return secname;
15695 }
15696
15697 /* Return true when DECL_BY_REFERENCE is defined and set for DECL.  */
15698
15699 static bool
15700 decl_by_reference_p (tree decl)
15701 {
15702   return ((TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL
15703            || TREE_CODE (decl) == VAR_DECL)
15704           && DECL_BY_REFERENCE (decl));
15705 }
15706
15707 /* Helper function for dw_loc_list.  Compute proper Dwarf location descriptor
15708    for VARLOC.  */
15709
15710 static dw_loc_descr_ref
15711 dw_loc_list_1 (tree loc, rtx varloc, int want_address,
15712                enum var_init_status initialized)
15713 {
15714   int have_address = 0;
15715   dw_loc_descr_ref descr;
15716   enum machine_mode mode;
15717
15718   if (want_address != 2)
15719     {
15720       gcc_assert (GET_CODE (varloc) == VAR_LOCATION);
15721       /* Single part.  */
15722       if (GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
15723         {
15724           varloc = PAT_VAR_LOCATION_LOC (varloc);
15725           if (GET_CODE (varloc) == EXPR_LIST)
15726             varloc = XEXP (varloc, 0);
15727           mode = GET_MODE (varloc);
15728           if (MEM_P (varloc))
15729             {
15730               rtx addr = XEXP (varloc, 0);
15731               descr = mem_loc_descriptor (addr, get_address_mode (varloc),
15732                                           mode, initialized);
15733               if (descr)
15734                 have_address = 1;
15735               else
15736                 {
15737                   rtx x = avoid_constant_pool_reference (varloc);
15738                   if (x != varloc)
15739                     descr = mem_loc_descriptor (x, mode, VOIDmode,
15740                                                 initialized);
15741                 }
15742             }
15743           else
15744             descr = mem_loc_descriptor (varloc, mode, VOIDmode, initialized);
15745         }
15746       else
15747         return 0;
15748     }
15749   else
15750     {
15751       if (GET_CODE (varloc) == VAR_LOCATION)
15752         mode = DECL_MODE (PAT_VAR_LOCATION_DECL (varloc));
15753       else
15754         mode = DECL_MODE (loc);
15755       descr = loc_descriptor (varloc, mode, initialized);
15756       have_address = 1;
15757     }
15758
15759   if (!descr)
15760     return 0;
15761
15762   if (want_address == 2 && !have_address
15763       && (dwarf_version >= 4 || !dwarf_strict))
15764     {
15765       if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
15766         {
15767           expansion_failed (loc, NULL_RTX,
15768                             "DWARF address size mismatch");
15769           return 0;
15770         }
15771       add_loc_descr (&descr, new_loc_descr (DW_OP_stack_value, 0, 0));
15772       have_address = 1;
15773     }
15774   /* Show if we can't fill the request for an address.  */
15775   if (want_address && !have_address)
15776     {
15777       expansion_failed (loc, NULL_RTX,
15778                         "Want address and only have value");
15779       return 0;
15780     }
15781
15782   /* If we've got an address and don't want one, dereference.  */
15783   if (!want_address && have_address)
15784     {
15785       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
15786       enum dwarf_location_atom op;
15787
15788       if (size > DWARF2_ADDR_SIZE || size == -1)
15789         {
15790           expansion_failed (loc, NULL_RTX,
15791                             "DWARF address size mismatch");
15792           return 0;
15793         }
15794       else if (size == DWARF2_ADDR_SIZE)
15795         op = DW_OP_deref;
15796       else
15797         op = DW_OP_deref_size;
15798
15799       add_loc_descr (&descr, new_loc_descr (op, size, 0));
15800     }
15801
15802   return descr;
15803 }
15804
15805 /* Create a DW_OP_piece or DW_OP_bit_piece for bitsize, or return NULL
15806    if it is not possible.  */
15807
15808 static dw_loc_descr_ref
15809 new_loc_descr_op_bit_piece (HOST_WIDE_INT bitsize, HOST_WIDE_INT offset)
15810 {
15811   if ((bitsize % BITS_PER_UNIT) == 0 && offset == 0)
15812     return new_loc_descr (DW_OP_piece, bitsize / BITS_PER_UNIT, 0);
15813   else if (dwarf_version >= 3 || !dwarf_strict)
15814     return new_loc_descr (DW_OP_bit_piece, bitsize, offset);
15815   else
15816     return NULL;
15817 }
15818
15819 /* Helper function for dw_loc_list.  Compute proper Dwarf location descriptor
15820    for VAR_LOC_NOTE for variable DECL that has been optimized by SRA.  */
15821
15822 static dw_loc_descr_ref
15823 dw_sra_loc_expr (tree decl, rtx loc)
15824 {
15825   rtx p;
15826   unsigned int padsize = 0;
15827   dw_loc_descr_ref descr, *descr_tail;
15828   unsigned HOST_WIDE_INT decl_size;
15829   rtx varloc;
15830   enum var_init_status initialized;
15831
15832   if (DECL_SIZE (decl) == NULL
15833       || !host_integerp (DECL_SIZE (decl), 1))
15834     return NULL;
15835
15836   decl_size = tree_low_cst (DECL_SIZE (decl), 1);
15837   descr = NULL;
15838   descr_tail = &descr;
15839
15840   for (p = loc; p; p = XEXP (p, 1))
15841     {
15842       unsigned int bitsize = decl_piece_bitsize (p);
15843       rtx loc_note = *decl_piece_varloc_ptr (p);
15844       dw_loc_descr_ref cur_descr;
15845       dw_loc_descr_ref *tail, last = NULL;
15846       unsigned int opsize = 0;
15847
15848       if (loc_note == NULL_RTX
15849           || NOTE_VAR_LOCATION_LOC (loc_note) == NULL_RTX)
15850         {
15851           padsize += bitsize;
15852           continue;
15853         }
15854       initialized = NOTE_VAR_LOCATION_STATUS (loc_note);
15855       varloc = NOTE_VAR_LOCATION (loc_note);
15856       cur_descr = dw_loc_list_1 (decl, varloc, 2, initialized);
15857       if (cur_descr == NULL)
15858         {
15859           padsize += bitsize;
15860           continue;
15861         }
15862
15863       /* Check that cur_descr either doesn't use
15864          DW_OP_*piece operations, or their sum is equal
15865          to bitsize.  Otherwise we can't embed it.  */
15866       for (tail = &cur_descr; *tail != NULL;
15867            tail = &(*tail)->dw_loc_next)
15868         if ((*tail)->dw_loc_opc == DW_OP_piece)
15869           {
15870             opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned
15871                       * BITS_PER_UNIT;
15872             last = *tail;
15873           }
15874         else if ((*tail)->dw_loc_opc == DW_OP_bit_piece)
15875           {
15876             opsize += (*tail)->dw_loc_oprnd1.v.val_unsigned;
15877             last = *tail;
15878           }
15879
15880       if (last != NULL && opsize != bitsize)
15881         {
15882           padsize += bitsize;
15883           continue;
15884         }
15885
15886       /* If there is a hole, add DW_OP_*piece after empty DWARF
15887          expression, which means that those bits are optimized out.  */
15888       if (padsize)
15889         {
15890           if (padsize > decl_size)
15891             return NULL;
15892           decl_size -= padsize;
15893           *descr_tail = new_loc_descr_op_bit_piece (padsize, 0);
15894           if (*descr_tail == NULL)
15895             return NULL;
15896           descr_tail = &(*descr_tail)->dw_loc_next;
15897           padsize = 0;
15898         }
15899       *descr_tail = cur_descr;
15900       descr_tail = tail;
15901       if (bitsize > decl_size)
15902         return NULL;
15903       decl_size -= bitsize;
15904       if (last == NULL)
15905         {
15906           HOST_WIDE_INT offset = 0;
15907           if (GET_CODE (varloc) == VAR_LOCATION
15908               && GET_CODE (PAT_VAR_LOCATION_LOC (varloc)) != PARALLEL)
15909             {
15910               varloc = PAT_VAR_LOCATION_LOC (varloc);
15911               if (GET_CODE (varloc) == EXPR_LIST)
15912                 varloc = XEXP (varloc, 0);
15913             }
15914           do 
15915             {
15916               if (GET_CODE (varloc) == CONST
15917                   || GET_CODE (varloc) == SIGN_EXTEND
15918                   || GET_CODE (varloc) == ZERO_EXTEND)
15919                 varloc = XEXP (varloc, 0);
15920               else if (GET_CODE (varloc) == SUBREG)
15921                 varloc = SUBREG_REG (varloc);
15922               else
15923                 break;
15924             }
15925           while (1);
15926           /* DW_OP_bit_size offset should be zero for register
15927              or implicit location descriptions and empty location
15928              descriptions, but for memory addresses needs big endian
15929              adjustment.  */
15930           if (MEM_P (varloc))
15931             {
15932               unsigned HOST_WIDE_INT memsize
15933                 = INTVAL (MEM_SIZE (varloc)) * BITS_PER_UNIT;
15934               if (memsize != bitsize)
15935                 {
15936                   if (BYTES_BIG_ENDIAN != WORDS_BIG_ENDIAN
15937                       && (memsize > BITS_PER_WORD || bitsize > BITS_PER_WORD))
15938                     return NULL;
15939                   if (memsize < bitsize)
15940                     return NULL;
15941                   if (BITS_BIG_ENDIAN)
15942                     offset = memsize - bitsize;
15943                 }
15944             }
15945
15946           *descr_tail = new_loc_descr_op_bit_piece (bitsize, offset);
15947           if (*descr_tail == NULL)
15948             return NULL;
15949           descr_tail = &(*descr_tail)->dw_loc_next;
15950         }
15951     }
15952
15953   /* If there were any non-empty expressions, add padding till the end of
15954      the decl.  */
15955   if (descr != NULL && decl_size != 0)
15956     {
15957       *descr_tail = new_loc_descr_op_bit_piece (decl_size, 0);
15958       if (*descr_tail == NULL)
15959         return NULL;
15960     }
15961   return descr;
15962 }
15963
15964 /* Return the dwarf representation of the location list LOC_LIST of
15965    DECL.  WANT_ADDRESS has the same meaning as in loc_list_from_tree
15966    function.  */
15967
15968 static dw_loc_list_ref
15969 dw_loc_list (var_loc_list *loc_list, tree decl, int want_address)
15970 {
15971   const char *endname, *secname;
15972   rtx varloc;
15973   enum var_init_status initialized;
15974   struct var_loc_node *node;
15975   dw_loc_descr_ref descr;
15976   char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
15977   dw_loc_list_ref list = NULL;
15978   dw_loc_list_ref *listp = &list;
15979
15980   /* Now that we know what section we are using for a base,
15981      actually construct the list of locations.
15982      The first location information is what is passed to the
15983      function that creates the location list, and the remaining
15984      locations just get added on to that list.
15985      Note that we only know the start address for a location
15986      (IE location changes), so to build the range, we use
15987      the range [current location start, next location start].
15988      This means we have to special case the last node, and generate
15989      a range of [last location start, end of function label].  */
15990
15991   secname = secname_for_decl (decl);
15992
15993   for (node = loc_list->first; node; node = node->next)
15994     if (GET_CODE (node->loc) == EXPR_LIST
15995         || NOTE_VAR_LOCATION_LOC (node->loc) != NULL_RTX)
15996       {
15997         if (GET_CODE (node->loc) == EXPR_LIST)
15998           {
15999             /* This requires DW_OP_{,bit_}piece, which is not usable
16000                inside DWARF expressions.  */
16001             if (want_address != 2)
16002               continue;
16003             descr = dw_sra_loc_expr (decl, node->loc);
16004             if (descr == NULL)
16005               continue;
16006           }
16007         else
16008           {
16009             initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
16010             varloc = NOTE_VAR_LOCATION (node->loc);
16011             descr = dw_loc_list_1 (decl, varloc, want_address, initialized);
16012           }
16013         if (descr)
16014           {
16015             bool range_across_switch = false;
16016             /* If section switch happens in between node->label
16017                and node->next->label (or end of function) and
16018                we can't emit it as a single entry list,
16019                emit two ranges, first one ending at the end
16020                of first partition and second one starting at the
16021                beginning of second partition.  */
16022             if (node == loc_list->last_before_switch
16023                 && (node != loc_list->first || loc_list->first->next)
16024                 && current_function_decl)
16025               {
16026                 endname = current_fde ()->dw_fde_end;
16027                 range_across_switch = true;
16028               }
16029             /* The variable has a location between NODE->LABEL and
16030                NODE->NEXT->LABEL.  */
16031             else if (node->next)
16032               endname = node->next->label;
16033             /* If the variable has a location at the last label
16034                it keeps its location until the end of function.  */
16035             else if (!current_function_decl)
16036               endname = text_end_label;
16037             else
16038               {
16039                 ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
16040                                              current_function_funcdef_no);
16041                 endname = ggc_strdup (label_id);
16042               }
16043
16044             *listp = new_loc_list (descr, node->label, endname, secname);
16045             listp = &(*listp)->dw_loc_next;
16046
16047             if (range_across_switch)
16048               {
16049                 if (GET_CODE (node->loc) == EXPR_LIST)
16050                   descr = dw_sra_loc_expr (decl, node->loc);
16051                 else
16052                   {
16053                     initialized = NOTE_VAR_LOCATION_STATUS (node->loc);
16054                     varloc = NOTE_VAR_LOCATION (node->loc);
16055                     descr = dw_loc_list_1 (decl, varloc, want_address,
16056                                            initialized);
16057                   }
16058                 gcc_assert (descr);
16059                 /* The variable has a location between NODE->LABEL and
16060                    NODE->NEXT->LABEL.  */
16061                 if (node->next)
16062                   endname = node->next->label;
16063                 else
16064                   endname = current_fde ()->dw_fde_second_end;
16065                 *listp = new_loc_list (descr,
16066                                        current_fde ()->dw_fde_second_begin,
16067                                        endname, secname);
16068                 listp = &(*listp)->dw_loc_next;
16069               }
16070           }
16071       }
16072
16073   /* Try to avoid the overhead of a location list emitting a location
16074      expression instead, but only if we didn't have more than one
16075      location entry in the first place.  If some entries were not
16076      representable, we don't want to pretend a single entry that was
16077      applies to the entire scope in which the variable is
16078      available.  */
16079   if (list && loc_list->first->next)
16080     gen_llsym (list);
16081
16082   return list;
16083 }
16084
16085 /* Return if the loc_list has only single element and thus can be represented
16086    as location description.   */
16087
16088 static bool
16089 single_element_loc_list_p (dw_loc_list_ref list)
16090 {
16091   gcc_assert (!list->dw_loc_next || list->ll_symbol);
16092   return !list->ll_symbol;
16093 }
16094
16095 /* To each location in list LIST add loc descr REF.  */
16096
16097 static void
16098 add_loc_descr_to_each (dw_loc_list_ref list, dw_loc_descr_ref ref)
16099 {
16100   dw_loc_descr_ref copy;
16101   add_loc_descr (&list->expr, ref);
16102   list = list->dw_loc_next;
16103   while (list)
16104     {
16105       copy = ggc_alloc_dw_loc_descr_node ();
16106       memcpy (copy, ref, sizeof (dw_loc_descr_node));
16107       add_loc_descr (&list->expr, copy);
16108       while (copy->dw_loc_next)
16109         {
16110           dw_loc_descr_ref new_copy = ggc_alloc_dw_loc_descr_node ();
16111           memcpy (new_copy, copy->dw_loc_next, sizeof (dw_loc_descr_node));
16112           copy->dw_loc_next = new_copy;
16113           copy = new_copy;
16114         }
16115       list = list->dw_loc_next;
16116     }
16117 }
16118
16119 /* Given two lists RET and LIST
16120    produce location list that is result of adding expression in LIST
16121    to expression in RET on each possition in program.
16122    Might be destructive on both RET and LIST.
16123
16124    TODO: We handle only simple cases of RET or LIST having at most one
16125    element. General case would inolve sorting the lists in program order
16126    and merging them that will need some additional work.
16127    Adding that will improve quality of debug info especially for SRA-ed
16128    structures.  */
16129
16130 static void
16131 add_loc_list (dw_loc_list_ref *ret, dw_loc_list_ref list)
16132 {
16133   if (!list)
16134     return;
16135   if (!*ret)
16136     {
16137       *ret = list;
16138       return;
16139     }
16140   if (!list->dw_loc_next)
16141     {
16142       add_loc_descr_to_each (*ret, list->expr);
16143       return;
16144     }
16145   if (!(*ret)->dw_loc_next)
16146     {
16147       add_loc_descr_to_each (list, (*ret)->expr);
16148       *ret = list;
16149       return;
16150     }
16151   expansion_failed (NULL_TREE, NULL_RTX,
16152                     "Don't know how to merge two non-trivial"
16153                     " location lists.\n");
16154   *ret = NULL;
16155   return;
16156 }
16157
16158 /* LOC is constant expression.  Try a luck, look it up in constant
16159    pool and return its loc_descr of its address.  */
16160
16161 static dw_loc_descr_ref
16162 cst_pool_loc_descr (tree loc)
16163 {
16164   /* Get an RTL for this, if something has been emitted.  */
16165   rtx rtl = lookup_constant_def (loc);
16166
16167   if (!rtl || !MEM_P (rtl))
16168     {
16169       gcc_assert (!rtl);
16170       return 0;
16171     }
16172   gcc_assert (GET_CODE (XEXP (rtl, 0)) == SYMBOL_REF);
16173
16174   /* TODO: We might get more coverage if we was actually delaying expansion
16175      of all expressions till end of compilation when constant pools are fully
16176      populated.  */
16177   if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (XEXP (rtl, 0))))
16178     {
16179       expansion_failed (loc, NULL_RTX,
16180                         "CST value in contant pool but not marked.");
16181       return 0;
16182     }
16183   return mem_loc_descriptor (XEXP (rtl, 0), get_address_mode (rtl),
16184                              GET_MODE (rtl), VAR_INIT_STATUS_INITIALIZED);
16185 }
16186
16187 /* Return dw_loc_list representing address of addr_expr LOC
16188    by looking for innder INDIRECT_REF expression and turing it
16189    into simple arithmetics.  */
16190
16191 static dw_loc_list_ref
16192 loc_list_for_address_of_addr_expr_of_indirect_ref (tree loc, bool toplev)
16193 {
16194   tree obj, offset;
16195   HOST_WIDE_INT bitsize, bitpos, bytepos;
16196   enum machine_mode mode;
16197   int volatilep;
16198   int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
16199   dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
16200
16201   obj = get_inner_reference (TREE_OPERAND (loc, 0),
16202                              &bitsize, &bitpos, &offset, &mode,
16203                              &unsignedp, &volatilep, false);
16204   STRIP_NOPS (obj);
16205   if (bitpos % BITS_PER_UNIT)
16206     {
16207       expansion_failed (loc, NULL_RTX, "bitfield access");
16208       return 0;
16209     }
16210   if (!INDIRECT_REF_P (obj))
16211     {
16212       expansion_failed (obj,
16213                         NULL_RTX, "no indirect ref in inner refrence");
16214       return 0;
16215     }
16216   if (!offset && !bitpos)
16217     list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), toplev ? 2 : 1);
16218   else if (toplev
16219            && int_size_in_bytes (TREE_TYPE (loc)) <= DWARF2_ADDR_SIZE
16220            && (dwarf_version >= 4 || !dwarf_strict))
16221     {
16222       list_ret = loc_list_from_tree (TREE_OPERAND (obj, 0), 0);
16223       if (!list_ret)
16224         return 0;
16225       if (offset)
16226         {
16227           /* Variable offset.  */
16228           list_ret1 = loc_list_from_tree (offset, 0);
16229           if (list_ret1 == 0)
16230             return 0;
16231           add_loc_list (&list_ret, list_ret1);
16232           if (!list_ret)
16233             return 0;
16234           add_loc_descr_to_each (list_ret,
16235                                  new_loc_descr (DW_OP_plus, 0, 0));
16236         }
16237       bytepos = bitpos / BITS_PER_UNIT;
16238       if (bytepos > 0)
16239         add_loc_descr_to_each (list_ret,
16240                                new_loc_descr (DW_OP_plus_uconst,
16241                                               bytepos, 0));
16242       else if (bytepos < 0)
16243         loc_list_plus_const (list_ret, bytepos);
16244       add_loc_descr_to_each (list_ret,
16245                              new_loc_descr (DW_OP_stack_value, 0, 0));
16246     }
16247   return list_ret;
16248 }
16249
16250
16251 /* Generate Dwarf location list representing LOC.
16252    If WANT_ADDRESS is false, expression computing LOC will be computed
16253    If WANT_ADDRESS is 1, expression computing address of LOC will be returned
16254    if WANT_ADDRESS is 2, expression computing address useable in location
16255      will be returned (i.e. DW_OP_reg can be used
16256      to refer to register values).  */
16257
16258 static dw_loc_list_ref
16259 loc_list_from_tree (tree loc, int want_address)
16260 {
16261   dw_loc_descr_ref ret = NULL, ret1 = NULL;
16262   dw_loc_list_ref list_ret = NULL, list_ret1 = NULL;
16263   int have_address = 0;
16264   enum dwarf_location_atom op;
16265
16266   /* ??? Most of the time we do not take proper care for sign/zero
16267      extending the values properly.  Hopefully this won't be a real
16268      problem...  */
16269
16270   switch (TREE_CODE (loc))
16271     {
16272     case ERROR_MARK:
16273       expansion_failed (loc, NULL_RTX, "ERROR_MARK");
16274       return 0;
16275
16276     case PLACEHOLDER_EXPR:
16277       /* This case involves extracting fields from an object to determine the
16278          position of other fields.  We don't try to encode this here.  The
16279          only user of this is Ada, which encodes the needed information using
16280          the names of types.  */
16281       expansion_failed (loc, NULL_RTX, "PLACEHOLDER_EXPR");
16282       return 0;
16283
16284     case CALL_EXPR:
16285       expansion_failed (loc, NULL_RTX, "CALL_EXPR");
16286       /* There are no opcodes for these operations.  */
16287       return 0;
16288
16289     case PREINCREMENT_EXPR:
16290     case PREDECREMENT_EXPR:
16291     case POSTINCREMENT_EXPR:
16292     case POSTDECREMENT_EXPR:
16293       expansion_failed (loc, NULL_RTX, "PRE/POST INDCREMENT/DECREMENT");
16294       /* There are no opcodes for these operations.  */
16295       return 0;
16296
16297     case ADDR_EXPR:
16298       /* If we already want an address, see if there is INDIRECT_REF inside
16299          e.g. for &this->field.  */
16300       if (want_address)
16301         {
16302           list_ret = loc_list_for_address_of_addr_expr_of_indirect_ref
16303                        (loc, want_address == 2);
16304           if (list_ret)
16305             have_address = 1;
16306           else if (decl_address_ip_invariant_p (TREE_OPERAND (loc, 0))
16307                    && (ret = cst_pool_loc_descr (loc)))
16308             have_address = 1;
16309         }
16310         /* Otherwise, process the argument and look for the address.  */
16311       if (!list_ret && !ret)
16312         list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 1);
16313       else
16314         {
16315           if (want_address)
16316             expansion_failed (loc, NULL_RTX, "need address of ADDR_EXPR");
16317           return NULL;
16318         }
16319       break;
16320
16321     case VAR_DECL:
16322       if (DECL_THREAD_LOCAL_P (loc))
16323         {
16324           rtx rtl;
16325           enum dwarf_location_atom first_op;
16326           enum dwarf_location_atom second_op;
16327           bool dtprel = false;
16328
16329           if (targetm.have_tls)
16330             {
16331               /* If this is not defined, we have no way to emit the
16332                  data.  */
16333               if (!targetm.asm_out.output_dwarf_dtprel)
16334                 return 0;
16335
16336                /* The way DW_OP_GNU_push_tls_address is specified, we
16337                   can only look up addresses of objects in the current
16338                   module.  We used DW_OP_addr as first op, but that's
16339                   wrong, because DW_OP_addr is relocated by the debug
16340                   info consumer, while DW_OP_GNU_push_tls_address
16341                   operand shouldn't be.  */
16342               if (DECL_EXTERNAL (loc) && !targetm.binds_local_p (loc))
16343                 return 0;
16344               first_op = DWARF2_ADDR_SIZE == 4 ? DW_OP_const4u : DW_OP_const8u;
16345               dtprel = true;
16346               second_op = DW_OP_GNU_push_tls_address;
16347             }
16348           else
16349             {
16350               if (!targetm.emutls.debug_form_tls_address
16351                   || !(dwarf_version >= 3 || !dwarf_strict))
16352                 return 0;
16353               /* We stuffed the control variable into the DECL_VALUE_EXPR
16354                  to signal (via DECL_HAS_VALUE_EXPR_P) that the decl should
16355                  no longer appear in gimple code.  We used the control
16356                  variable in specific so that we could pick it up here.  */
16357               loc = DECL_VALUE_EXPR (loc);
16358               first_op = DW_OP_addr;
16359               second_op = DW_OP_form_tls_address;
16360             }
16361
16362           rtl = rtl_for_decl_location (loc);
16363           if (rtl == NULL_RTX)
16364             return 0;
16365
16366           if (!MEM_P (rtl))
16367             return 0;
16368           rtl = XEXP (rtl, 0);
16369           if (! CONSTANT_P (rtl))
16370             return 0;
16371
16372           ret = new_loc_descr (first_op, 0, 0);
16373           ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
16374           ret->dw_loc_oprnd1.v.val_addr = rtl;
16375           ret->dtprel = dtprel;
16376
16377           ret1 = new_loc_descr (second_op, 0, 0);
16378           add_loc_descr (&ret, ret1);
16379
16380           have_address = 1;
16381           break;
16382         }
16383       /* FALLTHRU */
16384
16385     case PARM_DECL:
16386     case RESULT_DECL:
16387       if (DECL_HAS_VALUE_EXPR_P (loc))
16388         return loc_list_from_tree (DECL_VALUE_EXPR (loc),
16389                                    want_address);
16390       /* FALLTHRU */
16391
16392     case FUNCTION_DECL:
16393       {
16394         rtx rtl;
16395         var_loc_list *loc_list = lookup_decl_loc (loc);
16396
16397         if (loc_list && loc_list->first)
16398           {
16399             list_ret = dw_loc_list (loc_list, loc, want_address);
16400             have_address = want_address != 0;
16401             break;
16402           }
16403         rtl = rtl_for_decl_location (loc);
16404         if (rtl == NULL_RTX)
16405           {
16406             expansion_failed (loc, NULL_RTX, "DECL has no RTL");
16407             return 0;
16408           }
16409         else if (CONST_INT_P (rtl))
16410           {
16411             HOST_WIDE_INT val = INTVAL (rtl);
16412             if (TYPE_UNSIGNED (TREE_TYPE (loc)))
16413               val &= GET_MODE_MASK (DECL_MODE (loc));
16414             ret = int_loc_descriptor (val);
16415           }
16416         else if (GET_CODE (rtl) == CONST_STRING)
16417           {
16418             expansion_failed (loc, NULL_RTX, "CONST_STRING");
16419             return 0;
16420           }
16421         else if (CONSTANT_P (rtl) && const_ok_for_output (rtl))
16422           {
16423             ret = new_loc_descr (DW_OP_addr, 0, 0);
16424             ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
16425             ret->dw_loc_oprnd1.v.val_addr = rtl;
16426           }
16427         else
16428           {
16429             enum machine_mode mode, mem_mode;
16430
16431             /* Certain constructs can only be represented at top-level.  */
16432             if (want_address == 2)
16433               {
16434                 ret = loc_descriptor (rtl, VOIDmode,
16435                                       VAR_INIT_STATUS_INITIALIZED);
16436                 have_address = 1;
16437               }
16438             else
16439               {
16440                 mode = GET_MODE (rtl);
16441                 mem_mode = VOIDmode;
16442                 if (MEM_P (rtl))
16443                   {
16444                     mem_mode = mode;
16445                     mode = get_address_mode (rtl);
16446                     rtl = XEXP (rtl, 0);
16447                     have_address = 1;
16448                   }
16449                 ret = mem_loc_descriptor (rtl, mode, mem_mode,
16450                                           VAR_INIT_STATUS_INITIALIZED);
16451               }
16452             if (!ret)
16453               expansion_failed (loc, rtl,
16454                                 "failed to produce loc descriptor for rtl");
16455           }
16456       }
16457       break;
16458
16459     case MEM_REF:
16460       /* ??? FIXME.  */
16461       if (!integer_zerop (TREE_OPERAND (loc, 1)))
16462         return 0;
16463       /* Fallthru.  */
16464     case INDIRECT_REF:
16465       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
16466       have_address = 1;
16467       break;
16468
16469     case COMPOUND_EXPR:
16470       return loc_list_from_tree (TREE_OPERAND (loc, 1), want_address);
16471
16472     CASE_CONVERT:
16473     case VIEW_CONVERT_EXPR:
16474     case SAVE_EXPR:
16475     case MODIFY_EXPR:
16476       return loc_list_from_tree (TREE_OPERAND (loc, 0), want_address);
16477
16478     case COMPONENT_REF:
16479     case BIT_FIELD_REF:
16480     case ARRAY_REF:
16481     case ARRAY_RANGE_REF:
16482     case REALPART_EXPR:
16483     case IMAGPART_EXPR:
16484       {
16485         tree obj, offset;
16486         HOST_WIDE_INT bitsize, bitpos, bytepos;
16487         enum machine_mode mode;
16488         int volatilep;
16489         int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
16490
16491         obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
16492                                    &unsignedp, &volatilep, false);
16493
16494         gcc_assert (obj != loc);
16495
16496         list_ret = loc_list_from_tree (obj,
16497                                        want_address == 2
16498                                        && !bitpos && !offset ? 2 : 1);
16499         /* TODO: We can extract value of the small expression via shifting even
16500            for nonzero bitpos.  */
16501         if (list_ret == 0)
16502           return 0;
16503         if (bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
16504           {
16505             expansion_failed (loc, NULL_RTX,
16506                               "bitfield access");
16507             return 0;
16508           }
16509
16510         if (offset != NULL_TREE)
16511           {
16512             /* Variable offset.  */
16513             list_ret1 = loc_list_from_tree (offset, 0);
16514             if (list_ret1 == 0)
16515               return 0;
16516             add_loc_list (&list_ret, list_ret1);
16517             if (!list_ret)
16518               return 0;
16519             add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus, 0, 0));
16520           }
16521
16522         bytepos = bitpos / BITS_PER_UNIT;
16523         if (bytepos > 0)
16524           add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
16525         else if (bytepos < 0)
16526           loc_list_plus_const (list_ret, bytepos);
16527
16528         have_address = 1;
16529         break;
16530       }
16531
16532     case INTEGER_CST:
16533       if ((want_address || !host_integerp (loc, 0))
16534           && (ret = cst_pool_loc_descr (loc)))
16535         have_address = 1;
16536       else if (want_address == 2
16537                && host_integerp (loc, 0)
16538                && (ret = address_of_int_loc_descriptor
16539                            (int_size_in_bytes (TREE_TYPE (loc)),
16540                             tree_low_cst (loc, 0))))
16541         have_address = 1;
16542       else if (host_integerp (loc, 0))
16543         ret = int_loc_descriptor (tree_low_cst (loc, 0));
16544       else
16545         {
16546           expansion_failed (loc, NULL_RTX,
16547                             "Integer operand is not host integer");
16548           return 0;
16549         }
16550       break;
16551
16552     case CONSTRUCTOR:
16553     case REAL_CST:
16554     case STRING_CST:
16555     case COMPLEX_CST:
16556       if ((ret = cst_pool_loc_descr (loc)))
16557         have_address = 1;
16558       else
16559       /* We can construct small constants here using int_loc_descriptor.  */
16560         expansion_failed (loc, NULL_RTX,
16561                           "constructor or constant not in constant pool");
16562       break;
16563
16564     case TRUTH_AND_EXPR:
16565     case TRUTH_ANDIF_EXPR:
16566     case BIT_AND_EXPR:
16567       op = DW_OP_and;
16568       goto do_binop;
16569
16570     case TRUTH_XOR_EXPR:
16571     case BIT_XOR_EXPR:
16572       op = DW_OP_xor;
16573       goto do_binop;
16574
16575     case TRUTH_OR_EXPR:
16576     case TRUTH_ORIF_EXPR:
16577     case BIT_IOR_EXPR:
16578       op = DW_OP_or;
16579       goto do_binop;
16580
16581     case FLOOR_DIV_EXPR:
16582     case CEIL_DIV_EXPR:
16583     case ROUND_DIV_EXPR:
16584     case TRUNC_DIV_EXPR:
16585       if (TYPE_UNSIGNED (TREE_TYPE (loc)))
16586         return 0;
16587       op = DW_OP_div;
16588       goto do_binop;
16589
16590     case MINUS_EXPR:
16591       op = DW_OP_minus;
16592       goto do_binop;
16593
16594     case FLOOR_MOD_EXPR:
16595     case CEIL_MOD_EXPR:
16596     case ROUND_MOD_EXPR:
16597     case TRUNC_MOD_EXPR:
16598       if (TYPE_UNSIGNED (TREE_TYPE (loc)))
16599         {
16600           op = DW_OP_mod;
16601           goto do_binop;
16602         }
16603       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
16604       list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0);
16605       if (list_ret == 0 || list_ret1 == 0)
16606         return 0;
16607
16608       add_loc_list (&list_ret, list_ret1);
16609       if (list_ret == 0)
16610         return 0;
16611       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
16612       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_over, 0, 0));
16613       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_div, 0, 0));
16614       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_mul, 0, 0));
16615       add_loc_descr_to_each (list_ret, new_loc_descr (DW_OP_minus, 0, 0));
16616       break;
16617
16618     case MULT_EXPR:
16619       op = DW_OP_mul;
16620       goto do_binop;
16621
16622     case LSHIFT_EXPR:
16623       op = DW_OP_shl;
16624       goto do_binop;
16625
16626     case RSHIFT_EXPR:
16627       op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
16628       goto do_binop;
16629
16630     case POINTER_PLUS_EXPR:
16631     case PLUS_EXPR:
16632       if (host_integerp (TREE_OPERAND (loc, 1), 0))
16633         {
16634           list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
16635           if (list_ret == 0)
16636             return 0;
16637
16638           loc_list_plus_const (list_ret, tree_low_cst (TREE_OPERAND (loc, 1), 0));
16639           break;
16640         }
16641
16642       op = DW_OP_plus;
16643       goto do_binop;
16644
16645     case LE_EXPR:
16646       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
16647         return 0;
16648
16649       op = DW_OP_le;
16650       goto do_binop;
16651
16652     case GE_EXPR:
16653       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
16654         return 0;
16655
16656       op = DW_OP_ge;
16657       goto do_binop;
16658
16659     case LT_EXPR:
16660       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
16661         return 0;
16662
16663       op = DW_OP_lt;
16664       goto do_binop;
16665
16666     case GT_EXPR:
16667       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
16668         return 0;
16669
16670       op = DW_OP_gt;
16671       goto do_binop;
16672
16673     case EQ_EXPR:
16674       op = DW_OP_eq;
16675       goto do_binop;
16676
16677     case NE_EXPR:
16678       op = DW_OP_ne;
16679       goto do_binop;
16680
16681     do_binop:
16682       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
16683       list_ret1 = loc_list_from_tree (TREE_OPERAND (loc, 1), 0);
16684       if (list_ret == 0 || list_ret1 == 0)
16685         return 0;
16686
16687       add_loc_list (&list_ret, list_ret1);
16688       if (list_ret == 0)
16689         return 0;
16690       add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
16691       break;
16692
16693     case TRUTH_NOT_EXPR:
16694     case BIT_NOT_EXPR:
16695       op = DW_OP_not;
16696       goto do_unop;
16697
16698     case ABS_EXPR:
16699       op = DW_OP_abs;
16700       goto do_unop;
16701
16702     case NEGATE_EXPR:
16703       op = DW_OP_neg;
16704       goto do_unop;
16705
16706     do_unop:
16707       list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
16708       if (list_ret == 0)
16709         return 0;
16710
16711       add_loc_descr_to_each (list_ret, new_loc_descr (op, 0, 0));
16712       break;
16713
16714     case MIN_EXPR:
16715     case MAX_EXPR:
16716       {
16717         const enum tree_code code =
16718           TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
16719
16720         loc = build3 (COND_EXPR, TREE_TYPE (loc),
16721                       build2 (code, integer_type_node,
16722                               TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
16723                       TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
16724       }
16725
16726       /* ... fall through ...  */
16727
16728     case COND_EXPR:
16729       {
16730         dw_loc_descr_ref lhs
16731           = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
16732         dw_loc_list_ref rhs
16733           = loc_list_from_tree (TREE_OPERAND (loc, 2), 0);
16734         dw_loc_descr_ref bra_node, jump_node, tmp;
16735
16736         list_ret = loc_list_from_tree (TREE_OPERAND (loc, 0), 0);
16737         if (list_ret == 0 || lhs == 0 || rhs == 0)
16738           return 0;
16739
16740         bra_node = new_loc_descr (DW_OP_bra, 0, 0);
16741         add_loc_descr_to_each (list_ret, bra_node);
16742
16743         add_loc_list (&list_ret, rhs);
16744         jump_node = new_loc_descr (DW_OP_skip, 0, 0);
16745         add_loc_descr_to_each (list_ret, jump_node);
16746
16747         add_loc_descr_to_each (list_ret, lhs);
16748         bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
16749         bra_node->dw_loc_oprnd1.v.val_loc = lhs;
16750
16751         /* ??? Need a node to point the skip at.  Use a nop.  */
16752         tmp = new_loc_descr (DW_OP_nop, 0, 0);
16753         add_loc_descr_to_each (list_ret, tmp);
16754         jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
16755         jump_node->dw_loc_oprnd1.v.val_loc = tmp;
16756       }
16757       break;
16758
16759     case FIX_TRUNC_EXPR:
16760       return 0;
16761
16762     default:
16763       /* Leave front-end specific codes as simply unknown.  This comes
16764          up, for instance, with the C STMT_EXPR.  */
16765       if ((unsigned int) TREE_CODE (loc)
16766           >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
16767         {
16768           expansion_failed (loc, NULL_RTX,
16769                             "language specific tree node");
16770           return 0;
16771         }
16772
16773 #ifdef ENABLE_CHECKING
16774       /* Otherwise this is a generic code; we should just lists all of
16775          these explicitly.  We forgot one.  */
16776       gcc_unreachable ();
16777 #else
16778       /* In a release build, we want to degrade gracefully: better to
16779          generate incomplete debugging information than to crash.  */
16780       return NULL;
16781 #endif
16782     }
16783
16784   if (!ret && !list_ret)
16785     return 0;
16786
16787   if (want_address == 2 && !have_address
16788       && (dwarf_version >= 4 || !dwarf_strict))
16789     {
16790       if (int_size_in_bytes (TREE_TYPE (loc)) > DWARF2_ADDR_SIZE)
16791         {
16792           expansion_failed (loc, NULL_RTX,
16793                             "DWARF address size mismatch");
16794           return 0;
16795         }
16796       if (ret)
16797         add_loc_descr (&ret, new_loc_descr (DW_OP_stack_value, 0, 0));
16798       else
16799         add_loc_descr_to_each (list_ret,
16800                                new_loc_descr (DW_OP_stack_value, 0, 0));
16801       have_address = 1;
16802     }
16803   /* Show if we can't fill the request for an address.  */
16804   if (want_address && !have_address)
16805     {
16806       expansion_failed (loc, NULL_RTX,
16807                         "Want address and only have value");
16808       return 0;
16809     }
16810
16811   gcc_assert (!ret || !list_ret);
16812
16813   /* If we've got an address and don't want one, dereference.  */
16814   if (!want_address && have_address)
16815     {
16816       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
16817
16818       if (size > DWARF2_ADDR_SIZE || size == -1)
16819         {
16820           expansion_failed (loc, NULL_RTX,
16821                             "DWARF address size mismatch");
16822           return 0;
16823         }
16824       else if (size == DWARF2_ADDR_SIZE)
16825         op = DW_OP_deref;
16826       else
16827         op = DW_OP_deref_size;
16828
16829       if (ret)
16830         add_loc_descr (&ret, new_loc_descr (op, size, 0));
16831       else
16832         add_loc_descr_to_each (list_ret, new_loc_descr (op, size, 0));
16833     }
16834   if (ret)
16835     list_ret = new_loc_list (ret, NULL, NULL, NULL);
16836
16837   return list_ret;
16838 }
16839
16840 /* Same as above but return only single location expression.  */
16841 static dw_loc_descr_ref
16842 loc_descriptor_from_tree (tree loc, int want_address)
16843 {
16844   dw_loc_list_ref ret = loc_list_from_tree (loc, want_address);
16845   if (!ret)
16846     return NULL;
16847   if (ret->dw_loc_next)
16848     {
16849       expansion_failed (loc, NULL_RTX,
16850                         "Location list where only loc descriptor needed");
16851       return NULL;
16852     }
16853   return ret->expr;
16854 }
16855
16856 /* Given a value, round it up to the lowest multiple of `boundary'
16857    which is not less than the value itself.  */
16858
16859 static inline HOST_WIDE_INT
16860 ceiling (HOST_WIDE_INT value, unsigned int boundary)
16861 {
16862   return (((value + boundary - 1) / boundary) * boundary);
16863 }
16864
16865 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
16866    pointer to the declared type for the relevant field variable, or return
16867    `integer_type_node' if the given node turns out to be an
16868    ERROR_MARK node.  */
16869
16870 static inline tree
16871 field_type (const_tree decl)
16872 {
16873   tree type;
16874
16875   if (TREE_CODE (decl) == ERROR_MARK)
16876     return integer_type_node;
16877
16878   type = DECL_BIT_FIELD_TYPE (decl);
16879   if (type == NULL_TREE)
16880     type = TREE_TYPE (decl);
16881
16882   return type;
16883 }
16884
16885 /* Given a pointer to a tree node, return the alignment in bits for
16886    it, or else return BITS_PER_WORD if the node actually turns out to
16887    be an ERROR_MARK node.  */
16888
16889 static inline unsigned
16890 simple_type_align_in_bits (const_tree type)
16891 {
16892   return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
16893 }
16894
16895 static inline unsigned
16896 simple_decl_align_in_bits (const_tree decl)
16897 {
16898   return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
16899 }
16900
16901 /* Return the result of rounding T up to ALIGN.  */
16902
16903 static inline double_int
16904 round_up_to_align (double_int t, unsigned int align)
16905 {
16906   double_int alignd = uhwi_to_double_int (align);
16907   t = double_int_add (t, alignd);
16908   t = double_int_add (t, double_int_minus_one);
16909   t = double_int_div (t, alignd, true, TRUNC_DIV_EXPR);
16910   t = double_int_mul (t, alignd);
16911   return t;
16912 }
16913
16914 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
16915    lowest addressed byte of the "containing object" for the given FIELD_DECL,
16916    or return 0 if we are unable to determine what that offset is, either
16917    because the argument turns out to be a pointer to an ERROR_MARK node, or
16918    because the offset is actually variable.  (We can't handle the latter case
16919    just yet).  */
16920
16921 static HOST_WIDE_INT
16922 field_byte_offset (const_tree decl)
16923 {
16924   double_int object_offset_in_bits;
16925   double_int object_offset_in_bytes;
16926   double_int bitpos_int;
16927
16928   if (TREE_CODE (decl) == ERROR_MARK)
16929     return 0;
16930
16931   gcc_assert (TREE_CODE (decl) == FIELD_DECL);
16932
16933   /* We cannot yet cope with fields whose positions are variable, so
16934      for now, when we see such things, we simply return 0.  Someday, we may
16935      be able to handle such cases, but it will be damn difficult.  */
16936   if (TREE_CODE (bit_position (decl)) != INTEGER_CST)
16937     return 0;
16938
16939   bitpos_int = tree_to_double_int (bit_position (decl));
16940
16941 #ifdef PCC_BITFIELD_TYPE_MATTERS
16942   if (PCC_BITFIELD_TYPE_MATTERS)
16943     {
16944       tree type;
16945       tree field_size_tree;
16946       double_int deepest_bitpos;
16947       double_int field_size_in_bits;
16948       unsigned int type_align_in_bits;
16949       unsigned int decl_align_in_bits;
16950       double_int type_size_in_bits;
16951
16952       type = field_type (decl);
16953       type_size_in_bits = double_int_type_size_in_bits (type);
16954       type_align_in_bits = simple_type_align_in_bits (type);
16955
16956       field_size_tree = DECL_SIZE (decl);
16957
16958       /* The size could be unspecified if there was an error, or for
16959          a flexible array member.  */
16960       if (!field_size_tree)
16961         field_size_tree = bitsize_zero_node;
16962
16963       /* If the size of the field is not constant, use the type size.  */
16964       if (TREE_CODE (field_size_tree) == INTEGER_CST)
16965         field_size_in_bits = tree_to_double_int (field_size_tree);
16966       else
16967         field_size_in_bits = type_size_in_bits;
16968
16969       decl_align_in_bits = simple_decl_align_in_bits (decl);
16970
16971       /* The GCC front-end doesn't make any attempt to keep track of the
16972          starting bit offset (relative to the start of the containing
16973          structure type) of the hypothetical "containing object" for a
16974          bit-field.  Thus, when computing the byte offset value for the
16975          start of the "containing object" of a bit-field, we must deduce
16976          this information on our own. This can be rather tricky to do in
16977          some cases.  For example, handling the following structure type
16978          definition when compiling for an i386/i486 target (which only
16979          aligns long long's to 32-bit boundaries) can be very tricky:
16980
16981          struct S { int field1; long long field2:31; };
16982
16983          Fortunately, there is a simple rule-of-thumb which can be used
16984          in such cases.  When compiling for an i386/i486, GCC will
16985          allocate 8 bytes for the structure shown above.  It decides to
16986          do this based upon one simple rule for bit-field allocation.
16987          GCC allocates each "containing object" for each bit-field at
16988          the first (i.e. lowest addressed) legitimate alignment boundary
16989          (based upon the required minimum alignment for the declared
16990          type of the field) which it can possibly use, subject to the
16991          condition that there is still enough available space remaining
16992          in the containing object (when allocated at the selected point)
16993          to fully accommodate all of the bits of the bit-field itself.
16994
16995          This simple rule makes it obvious why GCC allocates 8 bytes for
16996          each object of the structure type shown above.  When looking
16997          for a place to allocate the "containing object" for `field2',
16998          the compiler simply tries to allocate a 64-bit "containing
16999          object" at each successive 32-bit boundary (starting at zero)
17000          until it finds a place to allocate that 64- bit field such that
17001          at least 31 contiguous (and previously unallocated) bits remain
17002          within that selected 64 bit field.  (As it turns out, for the
17003          example above, the compiler finds it is OK to allocate the
17004          "containing object" 64-bit field at bit-offset zero within the
17005          structure type.)
17006
17007          Here we attempt to work backwards from the limited set of facts
17008          we're given, and we try to deduce from those facts, where GCC
17009          must have believed that the containing object started (within
17010          the structure type). The value we deduce is then used (by the
17011          callers of this routine) to generate DW_AT_location and
17012          DW_AT_bit_offset attributes for fields (both bit-fields and, in
17013          the case of DW_AT_location, regular fields as well).  */
17014
17015       /* Figure out the bit-distance from the start of the structure to
17016          the "deepest" bit of the bit-field.  */
17017       deepest_bitpos = double_int_add (bitpos_int, field_size_in_bits);
17018
17019       /* This is the tricky part.  Use some fancy footwork to deduce
17020          where the lowest addressed bit of the containing object must
17021          be.  */
17022       object_offset_in_bits
17023         = double_int_sub (deepest_bitpos, type_size_in_bits);
17024
17025       /* Round up to type_align by default.  This works best for
17026          bitfields.  */
17027       object_offset_in_bits
17028         = round_up_to_align (object_offset_in_bits, type_align_in_bits);
17029
17030       if (double_int_ucmp (object_offset_in_bits, bitpos_int) > 0)
17031         {
17032           object_offset_in_bits
17033             = double_int_sub (deepest_bitpos, type_size_in_bits);
17034
17035           /* Round up to decl_align instead.  */
17036           object_offset_in_bits
17037             = round_up_to_align (object_offset_in_bits, decl_align_in_bits);
17038         }
17039     }
17040   else
17041 #endif /* PCC_BITFIELD_TYPE_MATTERS */
17042     object_offset_in_bits = bitpos_int;
17043
17044   object_offset_in_bytes
17045     = double_int_div (object_offset_in_bits,
17046                       uhwi_to_double_int (BITS_PER_UNIT), true,
17047                       TRUNC_DIV_EXPR);
17048   return double_int_to_shwi (object_offset_in_bytes);
17049 }
17050 \f
17051 /* The following routines define various Dwarf attributes and any data
17052    associated with them.  */
17053
17054 /* Add a location description attribute value to a DIE.
17055
17056    This emits location attributes suitable for whole variables and
17057    whole parameters.  Note that the location attributes for struct fields are
17058    generated by the routine `data_member_location_attribute' below.  */
17059
17060 static inline void
17061 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
17062                              dw_loc_list_ref descr)
17063 {
17064   if (descr == 0)
17065     return;
17066   if (single_element_loc_list_p (descr))
17067     add_AT_loc (die, attr_kind, descr->expr);
17068   else
17069     add_AT_loc_list (die, attr_kind, descr);
17070 }
17071
17072 /* Add DW_AT_accessibility attribute to DIE if needed.  */
17073
17074 static void
17075 add_accessibility_attribute (dw_die_ref die, tree decl)
17076 {
17077   /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
17078      children, otherwise the default is DW_ACCESS_public.  In DWARF2
17079      the default has always been DW_ACCESS_public.  */
17080   if (TREE_PROTECTED (decl))
17081     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
17082   else if (TREE_PRIVATE (decl))
17083     {
17084       if (dwarf_version == 2
17085           || die->die_parent == NULL
17086           || die->die_parent->die_tag != DW_TAG_class_type)
17087         add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
17088     }
17089   else if (dwarf_version > 2
17090            && die->die_parent
17091            && die->die_parent->die_tag == DW_TAG_class_type)
17092     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
17093 }
17094
17095 /* Attach the specialized form of location attribute used for data members of
17096    struct and union types.  In the special case of a FIELD_DECL node which
17097    represents a bit-field, the "offset" part of this special location
17098    descriptor must indicate the distance in bytes from the lowest-addressed
17099    byte of the containing struct or union type to the lowest-addressed byte of
17100    the "containing object" for the bit-field.  (See the `field_byte_offset'
17101    function above).
17102
17103    For any given bit-field, the "containing object" is a hypothetical object
17104    (of some integral or enum type) within which the given bit-field lives.  The
17105    type of this hypothetical "containing object" is always the same as the
17106    declared type of the individual bit-field itself (for GCC anyway... the
17107    DWARF spec doesn't actually mandate this).  Note that it is the size (in
17108    bytes) of the hypothetical "containing object" which will be given in the
17109    DW_AT_byte_size attribute for this bit-field.  (See the
17110    `byte_size_attribute' function below.)  It is also used when calculating the
17111    value of the DW_AT_bit_offset attribute.  (See the `bit_offset_attribute'
17112    function below.)  */
17113
17114 static void
17115 add_data_member_location_attribute (dw_die_ref die, tree decl)
17116 {
17117   HOST_WIDE_INT offset;
17118   dw_loc_descr_ref loc_descr = 0;
17119
17120   if (TREE_CODE (decl) == TREE_BINFO)
17121     {
17122       /* We're working on the TAG_inheritance for a base class.  */
17123       if (BINFO_VIRTUAL_P (decl) && is_cxx ())
17124         {
17125           /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
17126              aren't at a fixed offset from all (sub)objects of the same
17127              type.  We need to extract the appropriate offset from our
17128              vtable.  The following dwarf expression means
17129
17130                BaseAddr = ObAddr + *((*ObAddr) - Offset)
17131
17132              This is specific to the V3 ABI, of course.  */
17133
17134           dw_loc_descr_ref tmp;
17135
17136           /* Make a copy of the object address.  */
17137           tmp = new_loc_descr (DW_OP_dup, 0, 0);
17138           add_loc_descr (&loc_descr, tmp);
17139
17140           /* Extract the vtable address.  */
17141           tmp = new_loc_descr (DW_OP_deref, 0, 0);
17142           add_loc_descr (&loc_descr, tmp);
17143
17144           /* Calculate the address of the offset.  */
17145           offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
17146           gcc_assert (offset < 0);
17147
17148           tmp = int_loc_descriptor (-offset);
17149           add_loc_descr (&loc_descr, tmp);
17150           tmp = new_loc_descr (DW_OP_minus, 0, 0);
17151           add_loc_descr (&loc_descr, tmp);
17152
17153           /* Extract the offset.  */
17154           tmp = new_loc_descr (DW_OP_deref, 0, 0);
17155           add_loc_descr (&loc_descr, tmp);
17156
17157           /* Add it to the object address.  */
17158           tmp = new_loc_descr (DW_OP_plus, 0, 0);
17159           add_loc_descr (&loc_descr, tmp);
17160         }
17161       else
17162         offset = tree_low_cst (BINFO_OFFSET (decl), 0);
17163     }
17164   else
17165     offset = field_byte_offset (decl);
17166
17167   if (! loc_descr)
17168     {
17169       if (dwarf_version > 2)
17170         {
17171           /* Don't need to output a location expression, just the constant. */
17172           if (offset < 0)
17173             add_AT_int (die, DW_AT_data_member_location, offset);
17174           else
17175             add_AT_unsigned (die, DW_AT_data_member_location, offset);
17176           return;
17177         }
17178       else
17179         {
17180           enum dwarf_location_atom op;
17181
17182           /* The DWARF2 standard says that we should assume that the structure
17183              address is already on the stack, so we can specify a structure
17184              field address by using DW_OP_plus_uconst.  */
17185
17186 #ifdef MIPS_DEBUGGING_INFO
17187           /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
17188              operator correctly.  It works only if we leave the offset on the
17189              stack.  */
17190           op = DW_OP_constu;
17191 #else
17192           op = DW_OP_plus_uconst;
17193 #endif
17194
17195           loc_descr = new_loc_descr (op, offset, 0);
17196         }
17197     }
17198
17199   add_AT_loc (die, DW_AT_data_member_location, loc_descr);
17200 }
17201
17202 /* Writes integer values to dw_vec_const array.  */
17203
17204 static void
17205 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
17206 {
17207   while (size != 0)
17208     {
17209       *dest++ = val & 0xff;
17210       val >>= 8;
17211       --size;
17212     }
17213 }
17214
17215 /* Reads integers from dw_vec_const array.  Inverse of insert_int.  */
17216
17217 static HOST_WIDE_INT
17218 extract_int (const unsigned char *src, unsigned int size)
17219 {
17220   HOST_WIDE_INT val = 0;
17221
17222   src += size;
17223   while (size != 0)
17224     {
17225       val <<= 8;
17226       val |= *--src & 0xff;
17227       --size;
17228     }
17229   return val;
17230 }
17231
17232 /* Writes double_int values to dw_vec_const array.  */
17233
17234 static void
17235 insert_double (double_int val, unsigned char *dest)
17236 {
17237   unsigned char *p0 = dest;
17238   unsigned char *p1 = dest + sizeof (HOST_WIDE_INT);
17239
17240   if (WORDS_BIG_ENDIAN)
17241     {
17242       p0 = p1;
17243       p1 = dest;
17244     }
17245
17246   insert_int ((HOST_WIDE_INT) val.low, sizeof (HOST_WIDE_INT), p0);
17247   insert_int ((HOST_WIDE_INT) val.high, sizeof (HOST_WIDE_INT), p1);
17248 }
17249
17250 /* Writes floating point values to dw_vec_const array.  */
17251
17252 static void
17253 insert_float (const_rtx rtl, unsigned char *array)
17254 {
17255   REAL_VALUE_TYPE rv;
17256   long val[4];
17257   int i;
17258
17259   REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
17260   real_to_target (val, &rv, GET_MODE (rtl));
17261
17262   /* real_to_target puts 32-bit pieces in each long.  Pack them.  */
17263   for (i = 0; i < GET_MODE_SIZE (GET_MODE (rtl)) / 4; i++)
17264     {
17265       insert_int (val[i], 4, array);
17266       array += 4;
17267     }
17268 }
17269
17270 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
17271    does not have a "location" either in memory or in a register.  These
17272    things can arise in GNU C when a constant is passed as an actual parameter
17273    to an inlined function.  They can also arise in C++ where declared
17274    constants do not necessarily get memory "homes".  */
17275
17276 static bool
17277 add_const_value_attribute (dw_die_ref die, rtx rtl)
17278 {
17279   switch (GET_CODE (rtl))
17280     {
17281     case CONST_INT:
17282       {
17283         HOST_WIDE_INT val = INTVAL (rtl);
17284
17285         if (val < 0)
17286           add_AT_int (die, DW_AT_const_value, val);
17287         else
17288           add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
17289       }
17290       return true;
17291
17292     case CONST_DOUBLE:
17293       /* Note that a CONST_DOUBLE rtx could represent either an integer or a
17294          floating-point constant.  A CONST_DOUBLE is used whenever the
17295          constant requires more than one word in order to be adequately
17296          represented.  */
17297       {
17298         enum machine_mode mode = GET_MODE (rtl);
17299
17300         if (SCALAR_FLOAT_MODE_P (mode))
17301           {
17302             unsigned int length = GET_MODE_SIZE (mode);
17303             unsigned char *array = (unsigned char *) ggc_alloc_atomic (length);
17304
17305             insert_float (rtl, array);
17306             add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
17307           }
17308         else
17309           add_AT_double (die, DW_AT_const_value,
17310                          CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
17311       }
17312       return true;
17313
17314     case CONST_VECTOR:
17315       {
17316         enum machine_mode mode = GET_MODE (rtl);
17317         unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
17318         unsigned int length = CONST_VECTOR_NUNITS (rtl);
17319         unsigned char *array = (unsigned char *) ggc_alloc_atomic
17320           (length * elt_size);
17321         unsigned int i;
17322         unsigned char *p;
17323
17324         switch (GET_MODE_CLASS (mode))
17325           {
17326           case MODE_VECTOR_INT:
17327             for (i = 0, p = array; i < length; i++, p += elt_size)
17328               {
17329                 rtx elt = CONST_VECTOR_ELT (rtl, i);
17330                 double_int val = rtx_to_double_int (elt);
17331
17332                 if (elt_size <= sizeof (HOST_WIDE_INT))
17333                   insert_int (double_int_to_shwi (val), elt_size, p);
17334                 else
17335                   {
17336                     gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
17337                     insert_double (val, p);
17338                   }
17339               }
17340             break;
17341
17342           case MODE_VECTOR_FLOAT:
17343             for (i = 0, p = array; i < length; i++, p += elt_size)
17344               {
17345                 rtx elt = CONST_VECTOR_ELT (rtl, i);
17346                 insert_float (elt, p);
17347               }
17348             break;
17349
17350           default:
17351             gcc_unreachable ();
17352           }
17353
17354         add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
17355       }
17356       return true;
17357
17358     case CONST_STRING:
17359       if (dwarf_version >= 4 || !dwarf_strict)
17360         {
17361           dw_loc_descr_ref loc_result;
17362           resolve_one_addr (&rtl, NULL);
17363         rtl_addr:
17364           loc_result = new_loc_descr (DW_OP_addr, 0, 0);
17365           loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
17366           loc_result->dw_loc_oprnd1.v.val_addr = rtl;
17367           add_loc_descr (&loc_result, new_loc_descr (DW_OP_stack_value, 0, 0));
17368           add_AT_loc (die, DW_AT_location, loc_result);
17369           VEC_safe_push (rtx, gc, used_rtx_array, rtl);
17370           return true;
17371         }
17372       return false;
17373
17374     case CONST:
17375       if (CONSTANT_P (XEXP (rtl, 0)))
17376         return add_const_value_attribute (die, XEXP (rtl, 0));
17377       /* FALLTHROUGH */
17378     case SYMBOL_REF:
17379       if (!const_ok_for_output (rtl))
17380         return false;
17381     case LABEL_REF:
17382       if (dwarf_version >= 4 || !dwarf_strict)
17383         goto rtl_addr;
17384       return false;
17385
17386     case PLUS:
17387       /* In cases where an inlined instance of an inline function is passed
17388          the address of an `auto' variable (which is local to the caller) we
17389          can get a situation where the DECL_RTL of the artificial local
17390          variable (for the inlining) which acts as a stand-in for the
17391          corresponding formal parameter (of the inline function) will look
17392          like (plus:SI (reg:SI FRAME_PTR) (const_int ...)).  This is not
17393          exactly a compile-time constant expression, but it isn't the address
17394          of the (artificial) local variable either.  Rather, it represents the
17395          *value* which the artificial local variable always has during its
17396          lifetime.  We currently have no way to represent such quasi-constant
17397          values in Dwarf, so for now we just punt and generate nothing.  */
17398       return false;
17399
17400     case HIGH:
17401     case CONST_FIXED:
17402       return false;
17403
17404     case MEM:
17405       if (GET_CODE (XEXP (rtl, 0)) == CONST_STRING
17406           && MEM_READONLY_P (rtl)
17407           && GET_MODE (rtl) == BLKmode)
17408         {
17409           add_AT_string (die, DW_AT_const_value, XSTR (XEXP (rtl, 0), 0));
17410           return true;
17411         }
17412       return false;
17413
17414     default:
17415       /* No other kinds of rtx should be possible here.  */
17416       gcc_unreachable ();
17417     }
17418   return false;
17419 }
17420
17421 /* Determine whether the evaluation of EXPR references any variables
17422    or functions which aren't otherwise used (and therefore may not be
17423    output).  */
17424 static tree
17425 reference_to_unused (tree * tp, int * walk_subtrees,
17426                      void * data ATTRIBUTE_UNUSED)
17427 {
17428   if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
17429     *walk_subtrees = 0;
17430
17431   if (DECL_P (*tp) && ! TREE_PUBLIC (*tp) && ! TREE_USED (*tp)
17432       && ! TREE_ASM_WRITTEN (*tp))
17433     return *tp;
17434   /* ???  The C++ FE emits debug information for using decls, so
17435      putting gcc_unreachable here falls over.  See PR31899.  For now
17436      be conservative.  */
17437   else if (!cgraph_global_info_ready
17438            && (TREE_CODE (*tp) == VAR_DECL || TREE_CODE (*tp) == FUNCTION_DECL))
17439     return *tp;
17440   else if (TREE_CODE (*tp) == VAR_DECL)
17441     {
17442       struct varpool_node *node = varpool_get_node (*tp);
17443       if (!node || !node->needed)
17444         return *tp;
17445     }
17446   else if (TREE_CODE (*tp) == FUNCTION_DECL
17447            && (!DECL_EXTERNAL (*tp) || DECL_DECLARED_INLINE_P (*tp)))
17448     {
17449       /* The call graph machinery must have finished analyzing,
17450          optimizing and gimplifying the CU by now.
17451          So if *TP has no call graph node associated
17452          to it, it means *TP will not be emitted.  */
17453       if (!cgraph_get_node (*tp))
17454         return *tp;
17455     }
17456   else if (TREE_CODE (*tp) == STRING_CST && !TREE_ASM_WRITTEN (*tp))
17457     return *tp;
17458
17459   return NULL_TREE;
17460 }
17461
17462 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
17463    for use in a later add_const_value_attribute call.  */
17464
17465 static rtx
17466 rtl_for_decl_init (tree init, tree type)
17467 {
17468   rtx rtl = NULL_RTX;
17469
17470   STRIP_NOPS (init);
17471
17472   /* If a variable is initialized with a string constant without embedded
17473      zeros, build CONST_STRING.  */
17474   if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
17475     {
17476       tree enttype = TREE_TYPE (type);
17477       tree domain = TYPE_DOMAIN (type);
17478       enum machine_mode mode = TYPE_MODE (enttype);
17479
17480       if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_SIZE (mode) == 1
17481           && domain
17482           && integer_zerop (TYPE_MIN_VALUE (domain))
17483           && compare_tree_int (TYPE_MAX_VALUE (domain),
17484                                TREE_STRING_LENGTH (init) - 1) == 0
17485           && ((size_t) TREE_STRING_LENGTH (init)
17486               == strlen (TREE_STRING_POINTER (init)) + 1))
17487         {
17488           rtl = gen_rtx_CONST_STRING (VOIDmode,
17489                                       ggc_strdup (TREE_STRING_POINTER (init)));
17490           rtl = gen_rtx_MEM (BLKmode, rtl);
17491           MEM_READONLY_P (rtl) = 1;
17492         }
17493     }
17494   /* Other aggregates, and complex values, could be represented using
17495      CONCAT: FIXME!  */
17496   else if (AGGREGATE_TYPE_P (type)
17497            || (TREE_CODE (init) == VIEW_CONVERT_EXPR
17498                && AGGREGATE_TYPE_P (TREE_TYPE (TREE_OPERAND (init, 0))))
17499            || TREE_CODE (type) == COMPLEX_TYPE)
17500     ;
17501   /* Vectors only work if their mode is supported by the target.
17502      FIXME: generic vectors ought to work too.  */
17503   else if (TREE_CODE (type) == VECTOR_TYPE
17504            && !VECTOR_MODE_P (TYPE_MODE (type)))
17505     ;
17506   /* If the initializer is something that we know will expand into an
17507      immediate RTL constant, expand it now.  We must be careful not to
17508      reference variables which won't be output.  */
17509   else if (initializer_constant_valid_p (init, type)
17510            && ! walk_tree (&init, reference_to_unused, NULL, NULL))
17511     {
17512       /* Convert vector CONSTRUCTOR initializers to VECTOR_CST if
17513          possible.  */
17514       if (TREE_CODE (type) == VECTOR_TYPE)
17515         switch (TREE_CODE (init))
17516           {
17517           case VECTOR_CST:
17518             break;
17519           case CONSTRUCTOR:
17520             if (TREE_CONSTANT (init))
17521               {
17522                 VEC(constructor_elt,gc) *elts = CONSTRUCTOR_ELTS (init);
17523                 bool constant_p = true;
17524                 tree value;
17525                 unsigned HOST_WIDE_INT ix;
17526
17527                 /* Even when ctor is constant, it might contain non-*_CST
17528                    elements (e.g. { 1.0/0.0 - 1.0/0.0, 0.0 }) and those don't
17529                    belong into VECTOR_CST nodes.  */
17530                 FOR_EACH_CONSTRUCTOR_VALUE (elts, ix, value)
17531                   if (!CONSTANT_CLASS_P (value))
17532                     {
17533                       constant_p = false;
17534                       break;
17535                     }
17536
17537                 if (constant_p)
17538                   {
17539                     init = build_vector_from_ctor (type, elts);
17540                     break;
17541                   }
17542               }
17543             /* FALLTHRU */
17544
17545           default:
17546             return NULL;
17547           }
17548
17549       rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
17550
17551       /* If expand_expr returns a MEM, it wasn't immediate.  */
17552       gcc_assert (!rtl || !MEM_P (rtl));
17553     }
17554
17555   return rtl;
17556 }
17557
17558 /* Generate RTL for the variable DECL to represent its location.  */
17559
17560 static rtx
17561 rtl_for_decl_location (tree decl)
17562 {
17563   rtx rtl;
17564
17565   /* Here we have to decide where we are going to say the parameter "lives"
17566      (as far as the debugger is concerned).  We only have a couple of
17567      choices.  GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
17568
17569      DECL_RTL normally indicates where the parameter lives during most of the
17570      activation of the function.  If optimization is enabled however, this
17571      could be either NULL or else a pseudo-reg.  Both of those cases indicate
17572      that the parameter doesn't really live anywhere (as far as the code
17573      generation parts of GCC are concerned) during most of the function's
17574      activation.  That will happen (for example) if the parameter is never
17575      referenced within the function.
17576
17577      We could just generate a location descriptor here for all non-NULL
17578      non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
17579      a little nicer than that if we also consider DECL_INCOMING_RTL in cases
17580      where DECL_RTL is NULL or is a pseudo-reg.
17581
17582      Note however that we can only get away with using DECL_INCOMING_RTL as
17583      a backup substitute for DECL_RTL in certain limited cases.  In cases
17584      where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
17585      we can be sure that the parameter was passed using the same type as it is
17586      declared to have within the function, and that its DECL_INCOMING_RTL
17587      points us to a place where a value of that type is passed.
17588
17589      In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
17590      we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
17591      because in these cases DECL_INCOMING_RTL points us to a value of some
17592      type which is *different* from the type of the parameter itself.  Thus,
17593      if we tried to use DECL_INCOMING_RTL to generate a location attribute in
17594      such cases, the debugger would end up (for example) trying to fetch a
17595      `float' from a place which actually contains the first part of a
17596      `double'.  That would lead to really incorrect and confusing
17597      output at debug-time.
17598
17599      So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
17600      in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl).  There
17601      are a couple of exceptions however.  On little-endian machines we can
17602      get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
17603      not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
17604      an integral type that is smaller than TREE_TYPE (decl). These cases arise
17605      when (on a little-endian machine) a non-prototyped function has a
17606      parameter declared to be of type `short' or `char'.  In such cases,
17607      TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
17608      be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
17609      passed `int' value.  If the debugger then uses that address to fetch
17610      a `short' or a `char' (on a little-endian machine) the result will be
17611      the correct data, so we allow for such exceptional cases below.
17612
17613      Note that our goal here is to describe the place where the given formal
17614      parameter lives during most of the function's activation (i.e. between the
17615      end of the prologue and the start of the epilogue).  We'll do that as best
17616      as we can. Note however that if the given formal parameter is modified
17617      sometime during the execution of the function, then a stack backtrace (at
17618      debug-time) will show the function as having been called with the *new*
17619      value rather than the value which was originally passed in.  This happens
17620      rarely enough that it is not a major problem, but it *is* a problem, and
17621      I'd like to fix it.
17622
17623      A future version of dwarf2out.c may generate two additional attributes for
17624      any given DW_TAG_formal_parameter DIE which will describe the "passed
17625      type" and the "passed location" for the given formal parameter in addition
17626      to the attributes we now generate to indicate the "declared type" and the
17627      "active location" for each parameter.  This additional set of attributes
17628      could be used by debuggers for stack backtraces. Separately, note that
17629      sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
17630      This happens (for example) for inlined-instances of inline function formal
17631      parameters which are never referenced.  This really shouldn't be
17632      happening.  All PARM_DECL nodes should get valid non-NULL
17633      DECL_INCOMING_RTL values.  FIXME.  */
17634
17635   /* Use DECL_RTL as the "location" unless we find something better.  */
17636   rtl = DECL_RTL_IF_SET (decl);
17637
17638   /* When generating abstract instances, ignore everything except
17639      constants, symbols living in memory, and symbols living in
17640      fixed registers.  */
17641   if (! reload_completed)
17642     {
17643       if (rtl
17644           && (CONSTANT_P (rtl)
17645               || (MEM_P (rtl)
17646                   && CONSTANT_P (XEXP (rtl, 0)))
17647               || (REG_P (rtl)
17648                   && TREE_CODE (decl) == VAR_DECL
17649                   && TREE_STATIC (decl))))
17650         {
17651           rtl = targetm.delegitimize_address (rtl);
17652           return rtl;
17653         }
17654       rtl = NULL_RTX;
17655     }
17656   else if (TREE_CODE (decl) == PARM_DECL)
17657     {
17658       if (rtl == NULL_RTX
17659           || is_pseudo_reg (rtl)
17660           || (MEM_P (rtl)
17661               && is_pseudo_reg (XEXP (rtl, 0))
17662               && DECL_INCOMING_RTL (decl)
17663               && MEM_P (DECL_INCOMING_RTL (decl))
17664               && GET_MODE (rtl) == GET_MODE (DECL_INCOMING_RTL (decl))))
17665         {
17666           tree declared_type = TREE_TYPE (decl);
17667           tree passed_type = DECL_ARG_TYPE (decl);
17668           enum machine_mode dmode = TYPE_MODE (declared_type);
17669           enum machine_mode pmode = TYPE_MODE (passed_type);
17670
17671           /* This decl represents a formal parameter which was optimized out.
17672              Note that DECL_INCOMING_RTL may be NULL in here, but we handle
17673              all cases where (rtl == NULL_RTX) just below.  */
17674           if (dmode == pmode)
17675             rtl = DECL_INCOMING_RTL (decl);
17676           else if ((rtl == NULL_RTX || is_pseudo_reg (rtl))
17677                    && SCALAR_INT_MODE_P (dmode)
17678                    && GET_MODE_SIZE (dmode) <= GET_MODE_SIZE (pmode)
17679                    && DECL_INCOMING_RTL (decl))
17680             {
17681               rtx inc = DECL_INCOMING_RTL (decl);
17682               if (REG_P (inc))
17683                 rtl = inc;
17684               else if (MEM_P (inc))
17685                 {
17686                   if (BYTES_BIG_ENDIAN)
17687                     rtl = adjust_address_nv (inc, dmode,
17688                                              GET_MODE_SIZE (pmode)
17689                                              - GET_MODE_SIZE (dmode));
17690                   else
17691                     rtl = inc;
17692                 }
17693             }
17694         }
17695
17696       /* If the parm was passed in registers, but lives on the stack, then
17697          make a big endian correction if the mode of the type of the
17698          parameter is not the same as the mode of the rtl.  */
17699       /* ??? This is the same series of checks that are made in dbxout.c before
17700          we reach the big endian correction code there.  It isn't clear if all
17701          of these checks are necessary here, but keeping them all is the safe
17702          thing to do.  */
17703       else if (MEM_P (rtl)
17704                && XEXP (rtl, 0) != const0_rtx
17705                && ! CONSTANT_P (XEXP (rtl, 0))
17706                /* Not passed in memory.  */
17707                && !MEM_P (DECL_INCOMING_RTL (decl))
17708                /* Not passed by invisible reference.  */
17709                && (!REG_P (XEXP (rtl, 0))
17710                    || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
17711                    || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
17712 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
17713                    || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
17714 #endif
17715                      )
17716                /* Big endian correction check.  */
17717                && BYTES_BIG_ENDIAN
17718                && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
17719                && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
17720                    < UNITS_PER_WORD))
17721         {
17722           int offset = (UNITS_PER_WORD
17723                         - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
17724
17725           rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
17726                              plus_constant (XEXP (rtl, 0), offset));
17727         }
17728     }
17729   else if (TREE_CODE (decl) == VAR_DECL
17730            && rtl
17731            && MEM_P (rtl)
17732            && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl))
17733            && BYTES_BIG_ENDIAN)
17734     {
17735       int rsize = GET_MODE_SIZE (GET_MODE (rtl));
17736       int dsize = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)));
17737
17738       /* If a variable is declared "register" yet is smaller than
17739          a register, then if we store the variable to memory, it
17740          looks like we're storing a register-sized value, when in
17741          fact we are not.  We need to adjust the offset of the
17742          storage location to reflect the actual value's bytes,
17743          else gdb will not be able to display it.  */
17744       if (rsize > dsize)
17745         rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
17746                            plus_constant (XEXP (rtl, 0), rsize-dsize));
17747     }
17748
17749   /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
17750      and will have been substituted directly into all expressions that use it.
17751      C does not have such a concept, but C++ and other languages do.  */
17752   if (!rtl && TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
17753     rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
17754
17755   if (rtl)
17756     rtl = targetm.delegitimize_address (rtl);
17757
17758   /* If we don't look past the constant pool, we risk emitting a
17759      reference to a constant pool entry that isn't referenced from
17760      code, and thus is not emitted.  */
17761   if (rtl)
17762     rtl = avoid_constant_pool_reference (rtl);
17763
17764   /* Try harder to get a rtl.  If this symbol ends up not being emitted
17765      in the current CU, resolve_addr will remove the expression referencing
17766      it.  */
17767   if (rtl == NULL_RTX
17768       && TREE_CODE (decl) == VAR_DECL
17769       && !DECL_EXTERNAL (decl)
17770       && TREE_STATIC (decl)
17771       && DECL_NAME (decl)
17772       && !DECL_HARD_REGISTER (decl)
17773       && DECL_MODE (decl) != VOIDmode)
17774     {
17775       rtl = make_decl_rtl_for_debug (decl);
17776       if (!MEM_P (rtl)
17777           || GET_CODE (XEXP (rtl, 0)) != SYMBOL_REF
17778           || SYMBOL_REF_DECL (XEXP (rtl, 0)) != decl)
17779         rtl = NULL_RTX;
17780     }
17781
17782   return rtl;
17783 }
17784
17785 /* Check whether decl is a Fortran COMMON symbol.  If not, NULL_TREE is
17786    returned.  If so, the decl for the COMMON block is returned, and the
17787    value is the offset into the common block for the symbol.  */
17788
17789 static tree
17790 fortran_common (tree decl, HOST_WIDE_INT *value)
17791 {
17792   tree val_expr, cvar;
17793   enum machine_mode mode;
17794   HOST_WIDE_INT bitsize, bitpos;
17795   tree offset;
17796   int volatilep = 0, unsignedp = 0;
17797
17798   /* If the decl isn't a VAR_DECL, or if it isn't static, or if
17799      it does not have a value (the offset into the common area), or if it
17800      is thread local (as opposed to global) then it isn't common, and shouldn't
17801      be handled as such.  */
17802   if (TREE_CODE (decl) != VAR_DECL
17803       || !TREE_STATIC (decl)
17804       || !DECL_HAS_VALUE_EXPR_P (decl)
17805       || !is_fortran ())
17806     return NULL_TREE;
17807
17808   val_expr = DECL_VALUE_EXPR (decl);
17809   if (TREE_CODE (val_expr) != COMPONENT_REF)
17810     return NULL_TREE;
17811
17812   cvar = get_inner_reference (val_expr, &bitsize, &bitpos, &offset,
17813                               &mode, &unsignedp, &volatilep, true);
17814
17815   if (cvar == NULL_TREE
17816       || TREE_CODE (cvar) != VAR_DECL
17817       || DECL_ARTIFICIAL (cvar)
17818       || !TREE_PUBLIC (cvar))
17819     return NULL_TREE;
17820
17821   *value = 0;
17822   if (offset != NULL)
17823     {
17824       if (!host_integerp (offset, 0))
17825         return NULL_TREE;
17826       *value = tree_low_cst (offset, 0);
17827     }
17828   if (bitpos != 0)
17829     *value += bitpos / BITS_PER_UNIT;
17830
17831   return cvar;
17832 }
17833
17834 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
17835    data attribute for a variable or a parameter.  We generate the
17836    DW_AT_const_value attribute only in those cases where the given variable
17837    or parameter does not have a true "location" either in memory or in a
17838    register.  This can happen (for example) when a constant is passed as an
17839    actual argument in a call to an inline function.  (It's possible that
17840    these things can crop up in other ways also.)  Note that one type of
17841    constant value which can be passed into an inlined function is a constant
17842    pointer.  This can happen for example if an actual argument in an inlined
17843    function call evaluates to a compile-time constant address.
17844
17845    CACHE_P is true if it is worth caching the location list for DECL,
17846    so that future calls can reuse it rather than regenerate it from scratch.
17847    This is true for BLOCK_NONLOCALIZED_VARS in inlined subroutines,
17848    since we will need to refer to them each time the function is inlined.  */
17849
17850 static bool
17851 add_location_or_const_value_attribute (dw_die_ref die, tree decl, bool cache_p,
17852                                        enum dwarf_attribute attr)
17853 {
17854   rtx rtl;
17855   dw_loc_list_ref list;
17856   var_loc_list *loc_list;
17857   cached_dw_loc_list *cache;
17858   void **slot;
17859
17860   if (TREE_CODE (decl) == ERROR_MARK)
17861     return false;
17862
17863   gcc_assert (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
17864               || TREE_CODE (decl) == RESULT_DECL);
17865
17866   /* Try to get some constant RTL for this decl, and use that as the value of
17867      the location.  */
17868
17869   rtl = rtl_for_decl_location (decl);
17870   if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
17871       && add_const_value_attribute (die, rtl))
17872     return true;
17873
17874   /* See if we have single element location list that is equivalent to
17875      a constant value.  That way we are better to use add_const_value_attribute
17876      rather than expanding constant value equivalent.  */
17877   loc_list = lookup_decl_loc (decl);
17878   if (loc_list
17879       && loc_list->first
17880       && loc_list->first->next == NULL
17881       && NOTE_P (loc_list->first->loc)
17882       && NOTE_VAR_LOCATION (loc_list->first->loc)
17883       && NOTE_VAR_LOCATION_LOC (loc_list->first->loc))
17884     {
17885       struct var_loc_node *node;
17886
17887       node = loc_list->first;
17888       rtl = NOTE_VAR_LOCATION_LOC (node->loc);
17889       if (GET_CODE (rtl) == EXPR_LIST)
17890         rtl = XEXP (rtl, 0);
17891       if ((CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING)
17892           && add_const_value_attribute (die, rtl))
17893          return true;
17894     }
17895   /* If this decl is from BLOCK_NONLOCALIZED_VARS, we might need its
17896      list several times.  See if we've already cached the contents.  */
17897   list = NULL;
17898   if (loc_list == NULL || cached_dw_loc_list_table == NULL)
17899     cache_p = false;
17900   if (cache_p)
17901     {
17902       cache = (cached_dw_loc_list *)
17903         htab_find_with_hash (cached_dw_loc_list_table, decl, DECL_UID (decl));
17904       if (cache)
17905         list = cache->loc_list;
17906     }
17907   if (list == NULL)
17908     {
17909       list = loc_list_from_tree (decl, decl_by_reference_p (decl) ? 0 : 2);
17910       /* It is usually worth caching this result if the decl is from
17911          BLOCK_NONLOCALIZED_VARS and if the list has at least two elements.  */
17912       if (cache_p && list && list->dw_loc_next)
17913         {
17914           slot = htab_find_slot_with_hash (cached_dw_loc_list_table, decl,
17915                                            DECL_UID (decl), INSERT);
17916           cache = ggc_alloc_cleared_cached_dw_loc_list ();
17917           cache->decl_id = DECL_UID (decl);
17918           cache->loc_list = list;
17919           *slot = cache;
17920         }
17921     }
17922   if (list)
17923     {
17924       add_AT_location_description (die, attr, list);
17925       return true;
17926     }
17927   /* None of that worked, so it must not really have a location;
17928      try adding a constant value attribute from the DECL_INITIAL.  */
17929   return tree_add_const_value_attribute_for_decl (die, decl);
17930 }
17931
17932 /* Add VARIABLE and DIE into deferred locations list.  */
17933
17934 static void
17935 defer_location (tree variable, dw_die_ref die)
17936 {
17937   deferred_locations entry;
17938   entry.variable = variable;
17939   entry.die = die;
17940   VEC_safe_push (deferred_locations, gc, deferred_locations_list, &entry);
17941 }
17942
17943 /* Helper function for tree_add_const_value_attribute.  Natively encode
17944    initializer INIT into an array.  Return true if successful.  */
17945
17946 static bool
17947 native_encode_initializer (tree init, unsigned char *array, int size)
17948 {
17949   tree type;
17950
17951   if (init == NULL_TREE)
17952     return false;
17953
17954   STRIP_NOPS (init);
17955   switch (TREE_CODE (init))
17956     {
17957     case STRING_CST:
17958       type = TREE_TYPE (init);
17959       if (TREE_CODE (type) == ARRAY_TYPE)
17960         {
17961           tree enttype = TREE_TYPE (type);
17962           enum machine_mode mode = TYPE_MODE (enttype);
17963
17964           if (GET_MODE_CLASS (mode) != MODE_INT || GET_MODE_SIZE (mode) != 1)
17965             return false;
17966           if (int_size_in_bytes (type) != size)
17967             return false;
17968           if (size > TREE_STRING_LENGTH (init))
17969             {
17970               memcpy (array, TREE_STRING_POINTER (init),
17971                       TREE_STRING_LENGTH (init));
17972               memset (array + TREE_STRING_LENGTH (init),
17973                       '\0', size - TREE_STRING_LENGTH (init));
17974             }
17975           else
17976             memcpy (array, TREE_STRING_POINTER (init), size);
17977           return true;
17978         }
17979       return false;
17980     case CONSTRUCTOR:
17981       type = TREE_TYPE (init);
17982       if (int_size_in_bytes (type) != size)
17983         return false;
17984       if (TREE_CODE (type) == ARRAY_TYPE)
17985         {
17986           HOST_WIDE_INT min_index;
17987           unsigned HOST_WIDE_INT cnt;
17988           int curpos = 0, fieldsize;
17989           constructor_elt *ce;
17990
17991           if (TYPE_DOMAIN (type) == NULL_TREE
17992               || !host_integerp (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0))
17993             return false;
17994
17995           fieldsize = int_size_in_bytes (TREE_TYPE (type));
17996           if (fieldsize <= 0)
17997             return false;
17998
17999           min_index = tree_low_cst (TYPE_MIN_VALUE (TYPE_DOMAIN (type)), 0);
18000           memset (array, '\0', size);
18001           FOR_EACH_VEC_ELT (constructor_elt, CONSTRUCTOR_ELTS (init), cnt, ce)
18002             {
18003               tree val = ce->value;
18004               tree index = ce->index;
18005               int pos = curpos;
18006               if (index && TREE_CODE (index) == RANGE_EXPR)
18007                 pos = (tree_low_cst (TREE_OPERAND (index, 0), 0) - min_index)
18008                       * fieldsize;
18009               else if (index)
18010                 pos = (tree_low_cst (index, 0) - min_index) * fieldsize;
18011
18012               if (val)
18013                 {
18014                   STRIP_NOPS (val);
18015                   if (!native_encode_initializer (val, array + pos, fieldsize))
18016                     return false;
18017                 }
18018               curpos = pos + fieldsize;
18019               if (index && TREE_CODE (index) == RANGE_EXPR)
18020                 {
18021                   int count = tree_low_cst (TREE_OPERAND (index, 1), 0)
18022                               - tree_low_cst (TREE_OPERAND (index, 0), 0);
18023                   while (count > 0)
18024                     {
18025                       if (val)
18026                         memcpy (array + curpos, array + pos, fieldsize);
18027                       curpos += fieldsize;
18028                     }
18029                 }
18030               gcc_assert (curpos <= size);
18031             }
18032           return true;
18033         }
18034       else if (TREE_CODE (type) == RECORD_TYPE
18035                || TREE_CODE (type) == UNION_TYPE)
18036         {
18037           tree field = NULL_TREE;
18038           unsigned HOST_WIDE_INT cnt;
18039           constructor_elt *ce;
18040
18041           if (int_size_in_bytes (type) != size)
18042             return false;
18043
18044           if (TREE_CODE (type) == RECORD_TYPE)
18045             field = TYPE_FIELDS (type);
18046
18047           FOR_EACH_VEC_ELT (constructor_elt, CONSTRUCTOR_ELTS (init), cnt, ce)
18048             {
18049               tree val = ce->value;
18050               int pos, fieldsize;
18051
18052               if (ce->index != 0)
18053                 field = ce->index;
18054
18055               if (val)
18056                 STRIP_NOPS (val);
18057
18058               if (field == NULL_TREE || DECL_BIT_FIELD (field))
18059                 return false;
18060
18061               if (TREE_CODE (TREE_TYPE (field)) == ARRAY_TYPE
18062                   && TYPE_DOMAIN (TREE_TYPE (field))
18063                   && ! TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (field))))
18064                 return false;
18065               else if (DECL_SIZE_UNIT (field) == NULL_TREE
18066                        || !host_integerp (DECL_SIZE_UNIT (field), 0))
18067                 return false;
18068               fieldsize = tree_low_cst (DECL_SIZE_UNIT (field), 0);
18069               pos = int_byte_position (field);
18070               gcc_assert (pos + fieldsize <= size);
18071               if (val
18072                   && !native_encode_initializer (val, array + pos, fieldsize))
18073                 return false;
18074             }
18075           return true;
18076         }
18077       return false;
18078     case VIEW_CONVERT_EXPR:
18079     case NON_LVALUE_EXPR:
18080       return native_encode_initializer (TREE_OPERAND (init, 0), array, size);
18081     default:
18082       return native_encode_expr (init, array, size) == size;
18083     }
18084 }
18085
18086 /* Attach a DW_AT_const_value attribute to DIE. The value of the
18087    attribute is the const value T.  */
18088
18089 static bool
18090 tree_add_const_value_attribute (dw_die_ref die, tree t)
18091 {
18092   tree init;
18093   tree type = TREE_TYPE (t);
18094   rtx rtl;
18095
18096   if (!t || !TREE_TYPE (t) || TREE_TYPE (t) == error_mark_node)
18097     return false;
18098
18099   init = t;
18100   gcc_assert (!DECL_P (init));
18101
18102   rtl = rtl_for_decl_init (init, type);
18103   if (rtl)
18104     return add_const_value_attribute (die, rtl);
18105   /* If the host and target are sane, try harder.  */
18106   else if (CHAR_BIT == 8 && BITS_PER_UNIT == 8
18107            && initializer_constant_valid_p (init, type))
18108     {
18109       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (init));
18110       if (size > 0 && (int) size == size)
18111         {
18112           unsigned char *array = (unsigned char *)
18113             ggc_alloc_cleared_atomic (size);
18114
18115           if (native_encode_initializer (init, array, size))
18116             {
18117               add_AT_vec (die, DW_AT_const_value, size, 1, array);
18118               return true;
18119             }
18120         }
18121     }
18122   return false;
18123 }
18124
18125 /* Attach a DW_AT_const_value attribute to VAR_DIE. The value of the
18126    attribute is the const value of T, where T is an integral constant
18127    variable with static storage duration
18128    (so it can't be a PARM_DECL or a RESULT_DECL).  */
18129
18130 static bool
18131 tree_add_const_value_attribute_for_decl (dw_die_ref var_die, tree decl)
18132 {
18133
18134   if (!decl
18135       || (TREE_CODE (decl) != VAR_DECL
18136           && TREE_CODE (decl) != CONST_DECL)
18137       || (TREE_CODE (decl) == VAR_DECL
18138           && !TREE_STATIC (decl)))
18139     return false;
18140
18141     if (TREE_READONLY (decl)
18142         && ! TREE_THIS_VOLATILE (decl)
18143         && DECL_INITIAL (decl))
18144       /* OK */;
18145     else
18146       return false;
18147
18148   /* Don't add DW_AT_const_value if abstract origin already has one.  */
18149   if (get_AT (var_die, DW_AT_const_value))
18150     return false;
18151
18152   return tree_add_const_value_attribute (var_die, DECL_INITIAL (decl));
18153 }
18154
18155 /* Convert the CFI instructions for the current function into a
18156    location list.  This is used for DW_AT_frame_base when we targeting
18157    a dwarf2 consumer that does not support the dwarf3
18158    DW_OP_call_frame_cfa.  OFFSET is a constant to be added to all CFA
18159    expressions.  */
18160
18161 static dw_loc_list_ref
18162 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
18163 {
18164   int ix;
18165   dw_fde_ref fde;
18166   dw_loc_list_ref list, *list_tail;
18167   dw_cfi_ref cfi;
18168   dw_cfa_location last_cfa, next_cfa;
18169   const char *start_label, *last_label, *section;
18170   dw_cfa_location remember;
18171
18172   fde = current_fde ();
18173   gcc_assert (fde != NULL);
18174
18175   section = secname_for_decl (current_function_decl);
18176   list_tail = &list;
18177   list = NULL;
18178
18179   memset (&next_cfa, 0, sizeof (next_cfa));
18180   next_cfa.reg = INVALID_REGNUM;
18181   remember = next_cfa;
18182
18183   start_label = fde->dw_fde_begin;
18184
18185   /* ??? Bald assumption that the CIE opcode list does not contain
18186      advance opcodes.  */
18187   FOR_EACH_VEC_ELT (dw_cfi_ref, cie_cfi_vec, ix, cfi)
18188     lookup_cfa_1 (cfi, &next_cfa, &remember);
18189
18190   last_cfa = next_cfa;
18191   last_label = start_label;
18192
18193   if (fde->dw_fde_second_begin && fde->dw_fde_switch_cfi_index == 0)
18194     {
18195       /* If the first partition contained no CFI adjustments, the
18196          CIE opcodes apply to the whole first partition.  */
18197       *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
18198                                  fde->dw_fde_begin, fde->dw_fde_end, section);
18199       list_tail =&(*list_tail)->dw_loc_next;
18200       start_label = last_label = fde->dw_fde_second_begin;
18201     }
18202
18203   FOR_EACH_VEC_ELT (dw_cfi_ref, fde->dw_fde_cfi, ix, cfi)
18204     {
18205       switch (cfi->dw_cfi_opc)
18206         {
18207         case DW_CFA_set_loc:
18208         case DW_CFA_advance_loc1:
18209         case DW_CFA_advance_loc2:
18210         case DW_CFA_advance_loc4:
18211           if (!cfa_equal_p (&last_cfa, &next_cfa))
18212             {
18213               *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
18214                                          start_label, last_label, section);
18215
18216               list_tail = &(*list_tail)->dw_loc_next;
18217               last_cfa = next_cfa;
18218               start_label = last_label;
18219             }
18220           last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
18221           break;
18222
18223         case DW_CFA_advance_loc:
18224           /* The encoding is complex enough that we should never emit this.  */
18225           gcc_unreachable ();
18226
18227         default:
18228           lookup_cfa_1 (cfi, &next_cfa, &remember);
18229           break;
18230         }
18231       if (ix + 1 == fde->dw_fde_switch_cfi_index)
18232         {
18233           if (!cfa_equal_p (&last_cfa, &next_cfa))
18234             {
18235               *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
18236                                          start_label, last_label, section);
18237
18238               list_tail = &(*list_tail)->dw_loc_next;
18239               last_cfa = next_cfa;
18240               start_label = last_label;
18241             }
18242           *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
18243                                      start_label, fde->dw_fde_end, section);
18244           list_tail = &(*list_tail)->dw_loc_next;
18245           start_label = last_label = fde->dw_fde_second_begin;
18246         }
18247     }
18248
18249   if (!cfa_equal_p (&last_cfa, &next_cfa))
18250     {
18251       *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
18252                                  start_label, last_label, section);
18253       list_tail = &(*list_tail)->dw_loc_next;
18254       start_label = last_label;
18255     }
18256
18257   *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
18258                              start_label,
18259                              fde->dw_fde_second_begin
18260                              ? fde->dw_fde_second_end : fde->dw_fde_end,
18261                              section);
18262
18263   if (list && list->dw_loc_next)
18264     gen_llsym (list);
18265
18266   return list;
18267 }
18268
18269 /* Compute a displacement from the "steady-state frame pointer" to the
18270    frame base (often the same as the CFA), and store it in
18271    frame_pointer_fb_offset.  OFFSET is added to the displacement
18272    before the latter is negated.  */
18273
18274 static void
18275 compute_frame_pointer_to_fb_displacement (HOST_WIDE_INT offset)
18276 {
18277   rtx reg, elim;
18278
18279 #ifdef FRAME_POINTER_CFA_OFFSET
18280   reg = frame_pointer_rtx;
18281   offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
18282 #else
18283   reg = arg_pointer_rtx;
18284   offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
18285 #endif
18286
18287   elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
18288   if (GET_CODE (elim) == PLUS)
18289     {
18290       offset += INTVAL (XEXP (elim, 1));
18291       elim = XEXP (elim, 0);
18292     }
18293
18294   gcc_assert ((SUPPORTS_STACK_ALIGNMENT
18295                && (elim == hard_frame_pointer_rtx
18296                    || elim == stack_pointer_rtx))
18297               || elim == (frame_pointer_needed
18298                           ? hard_frame_pointer_rtx
18299                           : stack_pointer_rtx));
18300
18301   frame_pointer_fb_offset = -offset;
18302 }
18303
18304 /* Generate a DW_AT_name attribute given some string value to be included as
18305    the value of the attribute.  */
18306
18307 static void
18308 add_name_attribute (dw_die_ref die, const char *name_string)
18309 {
18310   if (name_string != NULL && *name_string != 0)
18311     {
18312       if (demangle_name_func)
18313         name_string = (*demangle_name_func) (name_string);
18314
18315       add_AT_string (die, DW_AT_name, name_string);
18316     }
18317 }
18318
18319 /* Retrieve the descriptive type of TYPE, if any, make sure it has a
18320    DIE and attach a DW_AT_GNAT_descriptive_type attribute to the DIE
18321    of TYPE accordingly.
18322
18323    ??? This is a temporary measure until after we're able to generate
18324    regular DWARF for the complex Ada type system.  */
18325
18326 static void 
18327 add_gnat_descriptive_type_attribute (dw_die_ref die, tree type,
18328                                      dw_die_ref context_die)
18329 {
18330   tree dtype;
18331   dw_die_ref dtype_die;
18332
18333   if (!lang_hooks.types.descriptive_type)
18334     return;
18335
18336   dtype = lang_hooks.types.descriptive_type (type);
18337   if (!dtype)
18338     return;
18339
18340   dtype_die = lookup_type_die (dtype);
18341   if (!dtype_die)
18342     {
18343       gen_type_die (dtype, context_die);
18344       dtype_die = lookup_type_die (dtype);
18345       gcc_assert (dtype_die);
18346     }
18347
18348   add_AT_die_ref (die, DW_AT_GNAT_descriptive_type, dtype_die);
18349 }
18350
18351 /* Generate a DW_AT_comp_dir attribute for DIE.  */
18352
18353 static void
18354 add_comp_dir_attribute (dw_die_ref die)
18355 {
18356   const char *wd = get_src_pwd ();
18357   char *wd1;
18358
18359   if (wd == NULL)
18360     return;
18361
18362   if (DWARF2_DIR_SHOULD_END_WITH_SEPARATOR)
18363     {
18364       int wdlen;
18365
18366       wdlen = strlen (wd);
18367       wd1 = (char *) ggc_alloc_atomic (wdlen + 2);
18368       strcpy (wd1, wd);
18369       wd1 [wdlen] = DIR_SEPARATOR;
18370       wd1 [wdlen + 1] = 0;
18371       wd = wd1;
18372     }
18373
18374     add_AT_string (die, DW_AT_comp_dir, remap_debug_filename (wd));
18375 }
18376
18377 /* Return the default for DW_AT_lower_bound, or -1 if there is not any
18378    default.  */
18379
18380 static int
18381 lower_bound_default (void)
18382 {
18383   switch (get_AT_unsigned (comp_unit_die (), DW_AT_language))
18384     {
18385     case DW_LANG_C:
18386     case DW_LANG_C89:
18387     case DW_LANG_C99:
18388     case DW_LANG_C_plus_plus:
18389     case DW_LANG_ObjC:
18390     case DW_LANG_ObjC_plus_plus:
18391     case DW_LANG_Java:
18392       return 0;
18393     case DW_LANG_Fortran77:
18394     case DW_LANG_Fortran90:
18395     case DW_LANG_Fortran95:
18396       return 1;
18397     case DW_LANG_UPC:
18398     case DW_LANG_D:
18399     case DW_LANG_Python:
18400       return dwarf_version >= 4 ? 0 : -1;
18401     case DW_LANG_Ada95:
18402     case DW_LANG_Ada83:
18403     case DW_LANG_Cobol74:
18404     case DW_LANG_Cobol85:
18405     case DW_LANG_Pascal83:
18406     case DW_LANG_Modula2:
18407     case DW_LANG_PLI:
18408       return dwarf_version >= 4 ? 1 : -1;
18409     default:
18410       return -1;
18411     }
18412 }
18413
18414 /* Given a tree node describing an array bound (either lower or upper) output
18415    a representation for that bound.  */
18416
18417 static void
18418 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree bound)
18419 {
18420   switch (TREE_CODE (bound))
18421     {
18422     case ERROR_MARK:
18423       return;
18424
18425     /* All fixed-bounds are represented by INTEGER_CST nodes.  */
18426     case INTEGER_CST:
18427       {
18428         unsigned int prec = simple_type_size_in_bits (TREE_TYPE (bound));
18429         int dflt;
18430
18431         /* Use the default if possible.  */
18432         if (bound_attr == DW_AT_lower_bound
18433             && host_integerp (bound, 0)
18434             && (dflt = lower_bound_default ()) != -1
18435             && tree_low_cst (bound, 0) == dflt)
18436           ;
18437
18438         /* Otherwise represent the bound as an unsigned value with the
18439            precision of its type.  The precision and signedness of the
18440            type will be necessary to re-interpret it unambiguously.  */
18441         else if (prec < HOST_BITS_PER_WIDE_INT)
18442           {
18443             unsigned HOST_WIDE_INT mask
18444               = ((unsigned HOST_WIDE_INT) 1 << prec) - 1;
18445             add_AT_unsigned (subrange_die, bound_attr,
18446                              TREE_INT_CST_LOW (bound) & mask);
18447           }
18448         else if (prec == HOST_BITS_PER_WIDE_INT
18449                  || TREE_INT_CST_HIGH (bound) == 0)
18450           add_AT_unsigned (subrange_die, bound_attr,
18451                            TREE_INT_CST_LOW (bound));
18452         else
18453           add_AT_double (subrange_die, bound_attr, TREE_INT_CST_HIGH (bound),
18454                          TREE_INT_CST_LOW (bound));
18455       }
18456       break;
18457
18458     CASE_CONVERT:
18459     case VIEW_CONVERT_EXPR:
18460       add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
18461       break;
18462
18463     case SAVE_EXPR:
18464       break;
18465
18466     case VAR_DECL:
18467     case PARM_DECL:
18468     case RESULT_DECL:
18469       {
18470         dw_die_ref decl_die = lookup_decl_die (bound);
18471
18472         /* ??? Can this happen, or should the variable have been bound
18473            first?  Probably it can, since I imagine that we try to create
18474            the types of parameters in the order in which they exist in
18475            the list, and won't have created a forward reference to a
18476            later parameter.  */
18477         if (decl_die != NULL)
18478           {
18479             add_AT_die_ref (subrange_die, bound_attr, decl_die);
18480             break;
18481           }
18482       }
18483       /* FALLTHRU */
18484
18485     default:
18486       {
18487         /* Otherwise try to create a stack operation procedure to
18488            evaluate the value of the array bound.  */
18489
18490         dw_die_ref ctx, decl_die;
18491         dw_loc_list_ref list;
18492
18493         list = loc_list_from_tree (bound, 2);
18494         if (list == NULL || single_element_loc_list_p (list))
18495           {
18496             /* If DW_AT_*bound is not a reference nor constant, it is
18497                a DWARF expression rather than location description.
18498                For that loc_list_from_tree (bound, 0) is needed.
18499                If that fails to give a single element list,
18500                fall back to outputting this as a reference anyway.  */
18501             dw_loc_list_ref list2 = loc_list_from_tree (bound, 0);
18502             if (list2 && single_element_loc_list_p (list2))
18503               {
18504                 add_AT_loc (subrange_die, bound_attr, list2->expr);
18505                 break;
18506               }
18507           }
18508         if (list == NULL)
18509           break;
18510
18511         if (current_function_decl == 0)
18512           ctx = comp_unit_die ();
18513         else
18514           ctx = lookup_decl_die (current_function_decl);
18515
18516         decl_die = new_die (DW_TAG_variable, ctx, bound);
18517         add_AT_flag (decl_die, DW_AT_artificial, 1);
18518         add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
18519         add_AT_location_description (decl_die, DW_AT_location, list);
18520         add_AT_die_ref (subrange_die, bound_attr, decl_die);
18521         break;
18522       }
18523     }
18524 }
18525
18526 /* Add subscript info to TYPE_DIE, describing an array TYPE, collapsing
18527    possibly nested array subscripts in a flat sequence if COLLAPSE_P is true.
18528    Note that the block of subscript information for an array type also
18529    includes information about the element type of the given array type.  */
18530
18531 static void
18532 add_subscript_info (dw_die_ref type_die, tree type, bool collapse_p)
18533 {
18534   unsigned dimension_number;
18535   tree lower, upper;
18536   dw_die_ref subrange_die;
18537
18538   for (dimension_number = 0;
18539        TREE_CODE (type) == ARRAY_TYPE && (dimension_number == 0 || collapse_p);
18540        type = TREE_TYPE (type), dimension_number++)
18541     {
18542       tree domain = TYPE_DOMAIN (type);
18543
18544       if (TYPE_STRING_FLAG (type) && is_fortran () && dimension_number > 0)
18545         break;
18546
18547       /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
18548          and (in GNU C only) variable bounds.  Handle all three forms
18549          here.  */
18550       subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
18551       if (domain)
18552         {
18553           /* We have an array type with specified bounds.  */
18554           lower = TYPE_MIN_VALUE (domain);
18555           upper = TYPE_MAX_VALUE (domain);
18556
18557           /* Define the index type.  */
18558           if (TREE_TYPE (domain))
18559             {
18560               /* ??? This is probably an Ada unnamed subrange type.  Ignore the
18561                  TREE_TYPE field.  We can't emit debug info for this
18562                  because it is an unnamed integral type.  */
18563               if (TREE_CODE (domain) == INTEGER_TYPE
18564                   && TYPE_NAME (domain) == NULL_TREE
18565                   && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
18566                   && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
18567                 ;
18568               else
18569                 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
18570                                     type_die);
18571             }
18572
18573           /* ??? If upper is NULL, the array has unspecified length,
18574              but it does have a lower bound.  This happens with Fortran
18575                dimension arr(N:*)
18576              Since the debugger is definitely going to need to know N
18577              to produce useful results, go ahead and output the lower
18578              bound solo, and hope the debugger can cope.  */
18579
18580           add_bound_info (subrange_die, DW_AT_lower_bound, lower);
18581           if (upper)
18582             add_bound_info (subrange_die, DW_AT_upper_bound, upper);
18583         }
18584
18585       /* Otherwise we have an array type with an unspecified length.  The
18586          DWARF-2 spec does not say how to handle this; let's just leave out the
18587          bounds.  */
18588     }
18589 }
18590
18591 static void
18592 add_byte_size_attribute (dw_die_ref die, tree tree_node)
18593 {
18594   unsigned size;
18595
18596   switch (TREE_CODE (tree_node))
18597     {
18598     case ERROR_MARK:
18599       size = 0;
18600       break;
18601     case ENUMERAL_TYPE:
18602     case RECORD_TYPE:
18603     case UNION_TYPE:
18604     case QUAL_UNION_TYPE:
18605       size = int_size_in_bytes (tree_node);
18606       break;
18607     case FIELD_DECL:
18608       /* For a data member of a struct or union, the DW_AT_byte_size is
18609          generally given as the number of bytes normally allocated for an
18610          object of the *declared* type of the member itself.  This is true
18611          even for bit-fields.  */
18612       size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
18613       break;
18614     default:
18615       gcc_unreachable ();
18616     }
18617
18618   /* Note that `size' might be -1 when we get to this point.  If it is, that
18619      indicates that the byte size of the entity in question is variable.  We
18620      have no good way of expressing this fact in Dwarf at the present time,
18621      so just let the -1 pass on through.  */
18622   add_AT_unsigned (die, DW_AT_byte_size, size);
18623 }
18624
18625 /* For a FIELD_DECL node which represents a bit-field, output an attribute
18626    which specifies the distance in bits from the highest order bit of the
18627    "containing object" for the bit-field to the highest order bit of the
18628    bit-field itself.
18629
18630    For any given bit-field, the "containing object" is a hypothetical object
18631    (of some integral or enum type) within which the given bit-field lives.  The
18632    type of this hypothetical "containing object" is always the same as the
18633    declared type of the individual bit-field itself.  The determination of the
18634    exact location of the "containing object" for a bit-field is rather
18635    complicated.  It's handled by the `field_byte_offset' function (above).
18636
18637    Note that it is the size (in bytes) of the hypothetical "containing object"
18638    which will be given in the DW_AT_byte_size attribute for this bit-field.
18639    (See `byte_size_attribute' above).  */
18640
18641 static inline void
18642 add_bit_offset_attribute (dw_die_ref die, tree decl)
18643 {
18644   HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
18645   tree type = DECL_BIT_FIELD_TYPE (decl);
18646   HOST_WIDE_INT bitpos_int;
18647   HOST_WIDE_INT highest_order_object_bit_offset;
18648   HOST_WIDE_INT highest_order_field_bit_offset;
18649   HOST_WIDE_INT bit_offset;
18650
18651   /* Must be a field and a bit field.  */
18652   gcc_assert (type && TREE_CODE (decl) == FIELD_DECL);
18653
18654   /* We can't yet handle bit-fields whose offsets are variable, so if we
18655      encounter such things, just return without generating any attribute
18656      whatsoever.  Likewise for variable or too large size.  */
18657   if (! host_integerp (bit_position (decl), 0)
18658       || ! host_integerp (DECL_SIZE (decl), 1))
18659     return;
18660
18661   bitpos_int = int_bit_position (decl);
18662
18663   /* Note that the bit offset is always the distance (in bits) from the
18664      highest-order bit of the "containing object" to the highest-order bit of
18665      the bit-field itself.  Since the "high-order end" of any object or field
18666      is different on big-endian and little-endian machines, the computation
18667      below must take account of these differences.  */
18668   highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
18669   highest_order_field_bit_offset = bitpos_int;
18670
18671   if (! BYTES_BIG_ENDIAN)
18672     {
18673       highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
18674       highest_order_object_bit_offset += simple_type_size_in_bits (type);
18675     }
18676
18677   bit_offset
18678     = (! BYTES_BIG_ENDIAN
18679        ? highest_order_object_bit_offset - highest_order_field_bit_offset
18680        : highest_order_field_bit_offset - highest_order_object_bit_offset);
18681
18682   if (bit_offset < 0)
18683     add_AT_int (die, DW_AT_bit_offset, bit_offset);
18684   else
18685     add_AT_unsigned (die, DW_AT_bit_offset, (unsigned HOST_WIDE_INT) bit_offset);
18686 }
18687
18688 /* For a FIELD_DECL node which represents a bit field, output an attribute
18689    which specifies the length in bits of the given field.  */
18690
18691 static inline void
18692 add_bit_size_attribute (dw_die_ref die, tree decl)
18693 {
18694   /* Must be a field and a bit field.  */
18695   gcc_assert (TREE_CODE (decl) == FIELD_DECL
18696               && DECL_BIT_FIELD_TYPE (decl));
18697
18698   if (host_integerp (DECL_SIZE (decl), 1))
18699     add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
18700 }
18701
18702 /* If the compiled language is ANSI C, then add a 'prototyped'
18703    attribute, if arg types are given for the parameters of a function.  */
18704
18705 static inline void
18706 add_prototyped_attribute (dw_die_ref die, tree func_type)
18707 {
18708   if (get_AT_unsigned (comp_unit_die (), DW_AT_language) == DW_LANG_C89
18709       && prototype_p (func_type))
18710     add_AT_flag (die, DW_AT_prototyped, 1);
18711 }
18712
18713 /* Add an 'abstract_origin' attribute below a given DIE.  The DIE is found
18714    by looking in either the type declaration or object declaration
18715    equate table.  */
18716
18717 static inline dw_die_ref
18718 add_abstract_origin_attribute (dw_die_ref die, tree origin)
18719 {
18720   dw_die_ref origin_die = NULL;
18721
18722   if (TREE_CODE (origin) != FUNCTION_DECL)
18723     {
18724       /* We may have gotten separated from the block for the inlined
18725          function, if we're in an exception handler or some such; make
18726          sure that the abstract function has been written out.
18727
18728          Doing this for nested functions is wrong, however; functions are
18729          distinct units, and our context might not even be inline.  */
18730       tree fn = origin;
18731
18732       if (TYPE_P (fn))
18733         fn = TYPE_STUB_DECL (fn);
18734
18735       fn = decl_function_context (fn);
18736       if (fn)
18737         dwarf2out_abstract_function (fn);
18738     }
18739
18740   if (DECL_P (origin))
18741     origin_die = lookup_decl_die (origin);
18742   else if (TYPE_P (origin))
18743     origin_die = lookup_type_die (origin);
18744
18745   /* XXX: Functions that are never lowered don't always have correct block
18746      trees (in the case of java, they simply have no block tree, in some other
18747      languages).  For these functions, there is nothing we can really do to
18748      output correct debug info for inlined functions in all cases.  Rather
18749      than die, we'll just produce deficient debug info now, in that we will
18750      have variables without a proper abstract origin.  In the future, when all
18751      functions are lowered, we should re-add a gcc_assert (origin_die)
18752      here.  */
18753
18754   if (origin_die)
18755     add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
18756   return origin_die;
18757 }
18758
18759 /* We do not currently support the pure_virtual attribute.  */
18760
18761 static inline void
18762 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
18763 {
18764   if (DECL_VINDEX (func_decl))
18765     {
18766       add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
18767
18768       if (host_integerp (DECL_VINDEX (func_decl), 0))
18769         add_AT_loc (die, DW_AT_vtable_elem_location,
18770                     new_loc_descr (DW_OP_constu,
18771                                    tree_low_cst (DECL_VINDEX (func_decl), 0),
18772                                    0));
18773
18774       /* GNU extension: Record what type this method came from originally.  */
18775       if (debug_info_level > DINFO_LEVEL_TERSE
18776           && DECL_CONTEXT (func_decl))
18777         add_AT_die_ref (die, DW_AT_containing_type,
18778                         lookup_type_die (DECL_CONTEXT (func_decl)));
18779     }
18780 }
18781 \f
18782 /* Add a DW_AT_linkage_name or DW_AT_MIPS_linkage_name attribute for the
18783    given decl.  This used to be a vendor extension until after DWARF 4
18784    standardized it.  */
18785
18786 static void
18787 add_linkage_attr (dw_die_ref die, tree decl)
18788 {
18789   const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl));
18790
18791   /* Mimic what assemble_name_raw does with a leading '*'.  */
18792   if (name[0] == '*')
18793     name = &name[1];
18794
18795   if (dwarf_version >= 4)
18796     add_AT_string (die, DW_AT_linkage_name, name);
18797   else
18798     add_AT_string (die, DW_AT_MIPS_linkage_name, name);
18799 }
18800
18801 /* Add source coordinate attributes for the given decl.  */
18802
18803 static void
18804 add_src_coords_attributes (dw_die_ref die, tree decl)
18805 {
18806   expanded_location s;
18807
18808   if (DECL_SOURCE_LOCATION (decl) == UNKNOWN_LOCATION)
18809     return;
18810   s = expand_location (DECL_SOURCE_LOCATION (decl));
18811   add_AT_file (die, DW_AT_decl_file, lookup_filename (s.file));
18812   add_AT_unsigned (die, DW_AT_decl_line, s.line);
18813 }
18814
18815 /* Add DW_AT_{,MIPS_}linkage_name attribute for the given decl.  */
18816
18817 static void
18818 add_linkage_name (dw_die_ref die, tree decl)
18819 {
18820   if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
18821        && TREE_PUBLIC (decl)
18822        && !DECL_ABSTRACT (decl)
18823        && !(TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl))
18824        && die->die_tag != DW_TAG_member)
18825     {
18826       /* Defer until we have an assembler name set.  */
18827       if (!DECL_ASSEMBLER_NAME_SET_P (decl))
18828         {
18829           limbo_die_node *asm_name;
18830
18831           asm_name = ggc_alloc_cleared_limbo_die_node ();
18832           asm_name->die = die;
18833           asm_name->created_for = decl;
18834           asm_name->next = deferred_asm_name;
18835           deferred_asm_name = asm_name;
18836         }
18837       else if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
18838         add_linkage_attr (die, decl);
18839     }
18840 }
18841
18842 /* Add a DW_AT_name attribute and source coordinate attribute for the
18843    given decl, but only if it actually has a name.  */
18844
18845 static void
18846 add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
18847 {
18848   tree decl_name;
18849
18850   decl_name = DECL_NAME (decl);
18851   if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
18852     {
18853       const char *name = dwarf2_name (decl, 0);
18854       if (name)
18855         add_name_attribute (die, name);
18856       if (! DECL_ARTIFICIAL (decl))
18857         add_src_coords_attributes (die, decl);
18858
18859       add_linkage_name (die, decl);
18860     }
18861
18862 #ifdef VMS_DEBUGGING_INFO
18863   /* Get the function's name, as described by its RTL.  This may be different
18864      from the DECL_NAME name used in the source file.  */
18865   if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
18866     {
18867       add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
18868                    XEXP (DECL_RTL (decl), 0));
18869       VEC_safe_push (rtx, gc, used_rtx_array, XEXP (DECL_RTL (decl), 0));
18870     }
18871 #endif /* VMS_DEBUGGING_INFO */
18872 }
18873
18874 #ifdef VMS_DEBUGGING_INFO
18875 /* Output the debug main pointer die for VMS */
18876
18877 void
18878 dwarf2out_vms_debug_main_pointer (void)
18879 {
18880   char label[MAX_ARTIFICIAL_LABEL_BYTES];
18881   dw_die_ref die;
18882
18883   /* Allocate the VMS debug main subprogram die.  */
18884   die = ggc_alloc_cleared_die_node ();
18885   die->die_tag = DW_TAG_subprogram;
18886   add_name_attribute (die, VMS_DEBUG_MAIN_POINTER);
18887   ASM_GENERATE_INTERNAL_LABEL (label, PROLOGUE_END_LABEL,
18888                                current_function_funcdef_no);
18889   add_AT_lbl_id (die, DW_AT_entry_pc, label);
18890
18891   /* Make it the first child of comp_unit_die ().  */
18892   die->die_parent = comp_unit_die ();
18893   if (comp_unit_die ()->die_child)
18894     {
18895       die->die_sib = comp_unit_die ()->die_child->die_sib;
18896       comp_unit_die ()->die_child->die_sib = die;
18897     }
18898   else
18899     {
18900       die->die_sib = die;
18901       comp_unit_die ()->die_child = die;
18902     }
18903 }
18904 #endif /* VMS_DEBUGGING_INFO */
18905
18906 /* Push a new declaration scope.  */
18907
18908 static void
18909 push_decl_scope (tree scope)
18910 {
18911   VEC_safe_push (tree, gc, decl_scope_table, scope);
18912 }
18913
18914 /* Pop a declaration scope.  */
18915
18916 static inline void
18917 pop_decl_scope (void)
18918 {
18919   VEC_pop (tree, decl_scope_table);
18920 }
18921
18922 /* Return the DIE for the scope that immediately contains this type.
18923    Non-named types get global scope.  Named types nested in other
18924    types get their containing scope if it's open, or global scope
18925    otherwise.  All other types (i.e. function-local named types) get
18926    the current active scope.  */
18927
18928 static dw_die_ref
18929 scope_die_for (tree t, dw_die_ref context_die)
18930 {
18931   dw_die_ref scope_die = NULL;
18932   tree containing_scope;
18933   int i;
18934
18935   /* Non-types always go in the current scope.  */
18936   gcc_assert (TYPE_P (t));
18937
18938   containing_scope = TYPE_CONTEXT (t);
18939
18940   /* Use the containing namespace if it was passed in (for a declaration).  */
18941   if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
18942     {
18943       if (context_die == lookup_decl_die (containing_scope))
18944         /* OK */;
18945       else
18946         containing_scope = NULL_TREE;
18947     }
18948
18949   /* Ignore function type "scopes" from the C frontend.  They mean that
18950      a tagged type is local to a parmlist of a function declarator, but
18951      that isn't useful to DWARF.  */
18952   if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
18953     containing_scope = NULL_TREE;
18954
18955   if (SCOPE_FILE_SCOPE_P (containing_scope))
18956     scope_die = comp_unit_die ();
18957   else if (TYPE_P (containing_scope))
18958     {
18959       /* For types, we can just look up the appropriate DIE.  But
18960          first we check to see if we're in the middle of emitting it
18961          so we know where the new DIE should go.  */
18962       for (i = VEC_length (tree, decl_scope_table) - 1; i >= 0; --i)
18963         if (VEC_index (tree, decl_scope_table, i) == containing_scope)
18964           break;
18965
18966       if (i < 0)
18967         {
18968           gcc_assert (debug_info_level <= DINFO_LEVEL_TERSE
18969                       || TREE_ASM_WRITTEN (containing_scope));
18970           /*We are not in the middle of emitting the type
18971             CONTAINING_SCOPE. Let's see if it's emitted already.  */
18972           scope_die = lookup_type_die (containing_scope);
18973
18974           /* If none of the current dies are suitable, we get file scope.  */
18975           if (scope_die == NULL)
18976             scope_die = comp_unit_die ();
18977         }
18978       else
18979         scope_die = lookup_type_die_strip_naming_typedef (containing_scope);
18980     }
18981   else
18982     scope_die = context_die;
18983
18984   return scope_die;
18985 }
18986
18987 /* Returns nonzero if CONTEXT_DIE is internal to a function.  */
18988
18989 static inline int
18990 local_scope_p (dw_die_ref context_die)
18991 {
18992   for (; context_die; context_die = context_die->die_parent)
18993     if (context_die->die_tag == DW_TAG_inlined_subroutine
18994         || context_die->die_tag == DW_TAG_subprogram)
18995       return 1;
18996
18997   return 0;
18998 }
18999
19000 /* Returns nonzero if CONTEXT_DIE is a class.  */
19001
19002 static inline int
19003 class_scope_p (dw_die_ref context_die)
19004 {
19005   return (context_die
19006           && (context_die->die_tag == DW_TAG_structure_type
19007               || context_die->die_tag == DW_TAG_class_type
19008               || context_die->die_tag == DW_TAG_interface_type
19009               || context_die->die_tag == DW_TAG_union_type));
19010 }
19011
19012 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
19013    whether or not to treat a DIE in this context as a declaration.  */
19014
19015 static inline int
19016 class_or_namespace_scope_p (dw_die_ref context_die)
19017 {
19018   return (class_scope_p (context_die)
19019           || (context_die && context_die->die_tag == DW_TAG_namespace));
19020 }
19021
19022 /* Many forms of DIEs require a "type description" attribute.  This
19023    routine locates the proper "type descriptor" die for the type given
19024    by 'type', and adds a DW_AT_type attribute below the given die.  */
19025
19026 static void
19027 add_type_attribute (dw_die_ref object_die, tree type, int decl_const,
19028                     int decl_volatile, dw_die_ref context_die)
19029 {
19030   enum tree_code code  = TREE_CODE (type);
19031   dw_die_ref type_die  = NULL;
19032
19033   /* ??? If this type is an unnamed subrange type of an integral, floating-point
19034      or fixed-point type, use the inner type.  This is because we have no
19035      support for unnamed types in base_type_die.  This can happen if this is
19036      an Ada subrange type.  Correct solution is emit a subrange type die.  */
19037   if ((code == INTEGER_TYPE || code == REAL_TYPE || code == FIXED_POINT_TYPE)
19038       && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
19039     type = TREE_TYPE (type), code = TREE_CODE (type);
19040
19041   if (code == ERROR_MARK
19042       /* Handle a special case.  For functions whose return type is void, we
19043          generate *no* type attribute.  (Note that no object may have type
19044          `void', so this only applies to function return types).  */
19045       || code == VOID_TYPE)
19046     return;
19047
19048   type_die = modified_type_die (type,
19049                                 decl_const || TYPE_READONLY (type),
19050                                 decl_volatile || TYPE_VOLATILE (type),
19051                                 context_die);
19052
19053   if (type_die != NULL)
19054     add_AT_die_ref (object_die, DW_AT_type, type_die);
19055 }
19056
19057 /* Given an object die, add the calling convention attribute for the
19058    function call type.  */
19059 static void
19060 add_calling_convention_attribute (dw_die_ref subr_die, tree decl)
19061 {
19062   enum dwarf_calling_convention value = DW_CC_normal;
19063
19064   value = ((enum dwarf_calling_convention)
19065            targetm.dwarf_calling_convention (TREE_TYPE (decl)));
19066
19067   if (is_fortran ()
19068       && !strcmp (IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)), "MAIN__"))
19069     {
19070       /* DWARF 2 doesn't provide a way to identify a program's source-level
19071         entry point.  DW_AT_calling_convention attributes are only meant
19072         to describe functions' calling conventions.  However, lacking a
19073         better way to signal the Fortran main program, we used this for 
19074         a long time, following existing custom.  Now, DWARF 4 has 
19075         DW_AT_main_subprogram, which we add below, but some tools still
19076         rely on the old way, which we thus keep.  */
19077       value = DW_CC_program;
19078
19079       if (dwarf_version >= 4 || !dwarf_strict)
19080         add_AT_flag (subr_die, DW_AT_main_subprogram, 1);
19081     }
19082
19083   /* Only add the attribute if the backend requests it, and
19084      is not DW_CC_normal.  */
19085   if (value && (value != DW_CC_normal))
19086     add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
19087 }
19088
19089 /* Given a tree pointer to a struct, class, union, or enum type node, return
19090    a pointer to the (string) tag name for the given type, or zero if the type
19091    was declared without a tag.  */
19092
19093 static const char *
19094 type_tag (const_tree type)
19095 {
19096   const char *name = 0;
19097
19098   if (TYPE_NAME (type) != 0)
19099     {
19100       tree t = 0;
19101
19102       /* Find the IDENTIFIER_NODE for the type name.  */
19103       if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
19104           && !TYPE_NAMELESS (type))
19105         t = TYPE_NAME (type);
19106
19107       /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
19108          a TYPE_DECL node, regardless of whether or not a `typedef' was
19109          involved.  */
19110       else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
19111                && ! DECL_IGNORED_P (TYPE_NAME (type)))
19112         {
19113           /* We want to be extra verbose.  Don't call dwarf_name if
19114              DECL_NAME isn't set.  The default hook for decl_printable_name
19115              doesn't like that, and in this context it's correct to return
19116              0, instead of "<anonymous>" or the like.  */
19117           if (DECL_NAME (TYPE_NAME (type))
19118               && !DECL_NAMELESS (TYPE_NAME (type)))
19119             name = lang_hooks.dwarf_name (TYPE_NAME (type), 2);
19120         }
19121
19122       /* Now get the name as a string, or invent one.  */
19123       if (!name && t != 0)
19124         name = IDENTIFIER_POINTER (t);
19125     }
19126
19127   return (name == 0 || *name == '\0') ? 0 : name;
19128 }
19129
19130 /* Return the type associated with a data member, make a special check
19131    for bit field types.  */
19132
19133 static inline tree
19134 member_declared_type (const_tree member)
19135 {
19136   return (DECL_BIT_FIELD_TYPE (member)
19137           ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
19138 }
19139
19140 /* Get the decl's label, as described by its RTL. This may be different
19141    from the DECL_NAME name used in the source file.  */
19142
19143 #if 0
19144 static const char *
19145 decl_start_label (tree decl)
19146 {
19147   rtx x;
19148   const char *fnname;
19149
19150   x = DECL_RTL (decl);
19151   gcc_assert (MEM_P (x));
19152
19153   x = XEXP (x, 0);
19154   gcc_assert (GET_CODE (x) == SYMBOL_REF);
19155
19156   fnname = XSTR (x, 0);
19157   return fnname;
19158 }
19159 #endif
19160 \f
19161 /* These routines generate the internal representation of the DIE's for
19162    the compilation unit.  Debugging information is collected by walking
19163    the declaration trees passed in from dwarf2out_decl().  */
19164
19165 static void
19166 gen_array_type_die (tree type, dw_die_ref context_die)
19167 {
19168   dw_die_ref scope_die = scope_die_for (type, context_die);
19169   dw_die_ref array_die;
19170
19171   /* GNU compilers represent multidimensional array types as sequences of one
19172      dimensional array types whose element types are themselves array types.
19173      We sometimes squish that down to a single array_type DIE with multiple
19174      subscripts in the Dwarf debugging info.  The draft Dwarf specification
19175      say that we are allowed to do this kind of compression in C, because
19176      there is no difference between an array of arrays and a multidimensional
19177      array.  We don't do this for Ada to remain as close as possible to the
19178      actual representation, which is especially important against the language
19179      flexibilty wrt arrays of variable size.  */
19180
19181   bool collapse_nested_arrays = !is_ada ();
19182   tree element_type;
19183
19184   /* Emit DW_TAG_string_type for Fortran character types (with kind 1 only, as
19185      DW_TAG_string_type doesn't have DW_AT_type attribute).  */
19186   if (TYPE_STRING_FLAG (type)
19187       && TREE_CODE (type) == ARRAY_TYPE
19188       && is_fortran ()
19189       && TYPE_MODE (TREE_TYPE (type)) == TYPE_MODE (char_type_node))
19190     {
19191       HOST_WIDE_INT size;
19192
19193       array_die = new_die (DW_TAG_string_type, scope_die, type);
19194       add_name_attribute (array_die, type_tag (type));
19195       equate_type_number_to_die (type, array_die);
19196       size = int_size_in_bytes (type);
19197       if (size >= 0)
19198         add_AT_unsigned (array_die, DW_AT_byte_size, size);
19199       else if (TYPE_DOMAIN (type) != NULL_TREE
19200                && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != NULL_TREE
19201                && DECL_P (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
19202         {
19203           tree szdecl = TYPE_MAX_VALUE (TYPE_DOMAIN (type));
19204           dw_loc_list_ref loc = loc_list_from_tree (szdecl, 2);
19205
19206           size = int_size_in_bytes (TREE_TYPE (szdecl));
19207           if (loc && size > 0)
19208             {
19209               add_AT_location_description (array_die, DW_AT_string_length, loc);
19210               if (size != DWARF2_ADDR_SIZE)
19211                 add_AT_unsigned (array_die, DW_AT_byte_size, size);
19212             }
19213         }
19214       return;
19215     }
19216
19217   /* ??? The SGI dwarf reader fails for array of array of enum types
19218      (e.g. const enum machine_mode insn_operand_mode[2][10]) unless the inner
19219      array type comes before the outer array type.  We thus call gen_type_die
19220      before we new_die and must prevent nested array types collapsing for this
19221      target.  */
19222
19223 #ifdef MIPS_DEBUGGING_INFO
19224   gen_type_die (TREE_TYPE (type), context_die);
19225   collapse_nested_arrays = false;
19226 #endif
19227
19228   array_die = new_die (DW_TAG_array_type, scope_die, type);
19229   add_name_attribute (array_die, type_tag (type));
19230   add_gnat_descriptive_type_attribute (array_die, type, context_die);
19231   equate_type_number_to_die (type, array_die);
19232
19233   if (TREE_CODE (type) == VECTOR_TYPE)
19234     add_AT_flag (array_die, DW_AT_GNU_vector, 1);
19235
19236   /* For Fortran multidimensional arrays use DW_ORD_col_major ordering.  */
19237   if (is_fortran ()
19238       && TREE_CODE (type) == ARRAY_TYPE
19239       && TREE_CODE (TREE_TYPE (type)) == ARRAY_TYPE
19240       && !TYPE_STRING_FLAG (TREE_TYPE (type)))
19241     add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
19242
19243 #if 0
19244   /* We default the array ordering.  SDB will probably do
19245      the right things even if DW_AT_ordering is not present.  It's not even
19246      an issue until we start to get into multidimensional arrays anyway.  If
19247      SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
19248      then we'll have to put the DW_AT_ordering attribute back in.  (But if
19249      and when we find out that we need to put these in, we will only do so
19250      for multidimensional arrays.  */
19251   add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
19252 #endif
19253
19254 #ifdef MIPS_DEBUGGING_INFO
19255   /* The SGI compilers handle arrays of unknown bound by setting
19256      AT_declaration and not emitting any subrange DIEs.  */
19257   if (TREE_CODE (type) == ARRAY_TYPE
19258       && ! TYPE_DOMAIN (type))
19259     add_AT_flag (array_die, DW_AT_declaration, 1);
19260   else
19261 #endif
19262   if (TREE_CODE (type) == VECTOR_TYPE)
19263     {
19264       /* For VECTOR_TYPEs we use an array die with appropriate bounds.  */
19265       dw_die_ref subrange_die = new_die (DW_TAG_subrange_type, array_die, NULL);
19266       add_bound_info (subrange_die, DW_AT_lower_bound, size_zero_node);
19267       add_bound_info (subrange_die, DW_AT_upper_bound,
19268                       size_int (TYPE_VECTOR_SUBPARTS (type) - 1));
19269     }
19270   else
19271     add_subscript_info (array_die, type, collapse_nested_arrays);
19272
19273   /* Add representation of the type of the elements of this array type and
19274      emit the corresponding DIE if we haven't done it already.  */
19275   element_type = TREE_TYPE (type);
19276   if (collapse_nested_arrays)
19277     while (TREE_CODE (element_type) == ARRAY_TYPE)
19278       {
19279         if (TYPE_STRING_FLAG (element_type) && is_fortran ())
19280           break;
19281         element_type = TREE_TYPE (element_type);
19282       }
19283
19284 #ifndef MIPS_DEBUGGING_INFO
19285   gen_type_die (element_type, context_die);
19286 #endif
19287
19288   add_type_attribute (array_die, element_type, 0, 0, context_die);
19289
19290   if (get_AT (array_die, DW_AT_name))
19291     add_pubtype (type, array_die);
19292 }
19293
19294 static dw_loc_descr_ref
19295 descr_info_loc (tree val, tree base_decl)
19296 {
19297   HOST_WIDE_INT size;
19298   dw_loc_descr_ref loc, loc2;
19299   enum dwarf_location_atom op;
19300
19301   if (val == base_decl)
19302     return new_loc_descr (DW_OP_push_object_address, 0, 0);
19303
19304   switch (TREE_CODE (val))
19305     {
19306     CASE_CONVERT:
19307       return descr_info_loc (TREE_OPERAND (val, 0), base_decl);
19308     case VAR_DECL:
19309       return loc_descriptor_from_tree (val, 0);
19310     case INTEGER_CST:
19311       if (host_integerp (val, 0))
19312         return int_loc_descriptor (tree_low_cst (val, 0));
19313       break;
19314     case INDIRECT_REF:
19315       size = int_size_in_bytes (TREE_TYPE (val));
19316       if (size < 0)
19317         break;
19318       loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
19319       if (!loc)
19320         break;
19321       if (size == DWARF2_ADDR_SIZE)
19322         add_loc_descr (&loc, new_loc_descr (DW_OP_deref, 0, 0));
19323       else
19324         add_loc_descr (&loc, new_loc_descr (DW_OP_deref_size, size, 0));
19325       return loc;
19326     case POINTER_PLUS_EXPR:
19327     case PLUS_EXPR:
19328       if (host_integerp (TREE_OPERAND (val, 1), 1)
19329           && (unsigned HOST_WIDE_INT) tree_low_cst (TREE_OPERAND (val, 1), 1)
19330              < 16384)
19331         {
19332           loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
19333           if (!loc)
19334             break;
19335           loc_descr_plus_const (&loc, tree_low_cst (TREE_OPERAND (val, 1), 0));
19336         }
19337       else
19338         {
19339           op = DW_OP_plus;
19340         do_binop:
19341           loc = descr_info_loc (TREE_OPERAND (val, 0), base_decl);
19342           if (!loc)
19343             break;
19344           loc2 = descr_info_loc (TREE_OPERAND (val, 1), base_decl);
19345           if (!loc2)
19346             break;
19347           add_loc_descr (&loc, loc2);
19348           add_loc_descr (&loc2, new_loc_descr (op, 0, 0));
19349         }
19350       return loc;
19351     case MINUS_EXPR:
19352       op = DW_OP_minus;
19353       goto do_binop;
19354     case MULT_EXPR:
19355       op = DW_OP_mul;
19356       goto do_binop;
19357     case EQ_EXPR:
19358       op = DW_OP_eq;
19359       goto do_binop;
19360     case NE_EXPR:
19361       op = DW_OP_ne;
19362       goto do_binop;
19363     default:
19364       break;
19365     }
19366   return NULL;
19367 }
19368
19369 static void
19370 add_descr_info_field (dw_die_ref die, enum dwarf_attribute attr,
19371                       tree val, tree base_decl)
19372 {
19373   dw_loc_descr_ref loc;
19374
19375   if (host_integerp (val, 0))
19376     {
19377       add_AT_unsigned (die, attr, tree_low_cst (val, 0));
19378       return;
19379     }
19380
19381   loc = descr_info_loc (val, base_decl);
19382   if (!loc)
19383     return;
19384
19385   add_AT_loc (die, attr, loc);
19386 }
19387
19388 /* This routine generates DIE for array with hidden descriptor, details
19389    are filled into *info by a langhook.  */
19390
19391 static void
19392 gen_descr_array_type_die (tree type, struct array_descr_info *info,
19393                           dw_die_ref context_die)
19394 {
19395   dw_die_ref scope_die = scope_die_for (type, context_die);
19396   dw_die_ref array_die;
19397   int dim;
19398
19399   array_die = new_die (DW_TAG_array_type, scope_die, type);
19400   add_name_attribute (array_die, type_tag (type));
19401   equate_type_number_to_die (type, array_die);
19402
19403   /* For Fortran multidimensional arrays use DW_ORD_col_major ordering.  */
19404   if (is_fortran ()
19405       && info->ndimensions >= 2)
19406     add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_col_major);
19407
19408   if (info->data_location)
19409     add_descr_info_field (array_die, DW_AT_data_location, info->data_location,
19410                           info->base_decl);
19411   if (info->associated)
19412     add_descr_info_field (array_die, DW_AT_associated, info->associated,
19413                           info->base_decl);
19414   if (info->allocated)
19415     add_descr_info_field (array_die, DW_AT_allocated, info->allocated,
19416                           info->base_decl);
19417
19418   for (dim = 0; dim < info->ndimensions; dim++)
19419     {
19420       dw_die_ref subrange_die
19421         = new_die (DW_TAG_subrange_type, array_die, NULL);
19422
19423       if (info->dimen[dim].lower_bound)
19424         {
19425           /* If it is the default value, omit it.  */
19426           int dflt;
19427
19428           if (host_integerp (info->dimen[dim].lower_bound, 0)
19429               && (dflt = lower_bound_default ()) != -1
19430               && tree_low_cst (info->dimen[dim].lower_bound, 0) == dflt)
19431             ;
19432           else
19433             add_descr_info_field (subrange_die, DW_AT_lower_bound,
19434                                   info->dimen[dim].lower_bound,
19435                                   info->base_decl);
19436         }
19437       if (info->dimen[dim].upper_bound)
19438         add_descr_info_field (subrange_die, DW_AT_upper_bound,
19439                               info->dimen[dim].upper_bound,
19440                               info->base_decl);
19441       if (info->dimen[dim].stride)
19442         add_descr_info_field (subrange_die, DW_AT_byte_stride,
19443                               info->dimen[dim].stride,
19444                               info->base_decl);
19445     }
19446
19447   gen_type_die (info->element_type, context_die);
19448   add_type_attribute (array_die, info->element_type, 0, 0, context_die);
19449
19450   if (get_AT (array_die, DW_AT_name))
19451     add_pubtype (type, array_die);
19452 }
19453
19454 #if 0
19455 static void
19456 gen_entry_point_die (tree decl, dw_die_ref context_die)
19457 {
19458   tree origin = decl_ultimate_origin (decl);
19459   dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
19460
19461   if (origin != NULL)
19462     add_abstract_origin_attribute (decl_die, origin);
19463   else
19464     {
19465       add_name_and_src_coords_attributes (decl_die, decl);
19466       add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
19467                           0, 0, context_die);
19468     }
19469
19470   if (DECL_ABSTRACT (decl))
19471     equate_decl_number_to_die (decl, decl_die);
19472   else
19473     add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
19474 }
19475 #endif
19476
19477 /* Walk through the list of incomplete types again, trying once more to
19478    emit full debugging info for them.  */
19479
19480 static void
19481 retry_incomplete_types (void)
19482 {
19483   int i;
19484
19485   for (i = VEC_length (tree, incomplete_types) - 1; i >= 0; i--)
19486     if (should_emit_struct_debug (VEC_index (tree, incomplete_types, i),
19487                                   DINFO_USAGE_DIR_USE))
19488       gen_type_die (VEC_index (tree, incomplete_types, i), comp_unit_die ());
19489 }
19490
19491 /* Determine what tag to use for a record type.  */
19492
19493 static enum dwarf_tag
19494 record_type_tag (tree type)
19495 {
19496   if (! lang_hooks.types.classify_record)
19497     return DW_TAG_structure_type;
19498
19499   switch (lang_hooks.types.classify_record (type))
19500     {
19501     case RECORD_IS_STRUCT:
19502       return DW_TAG_structure_type;
19503
19504     case RECORD_IS_CLASS:
19505       return DW_TAG_class_type;
19506
19507     case RECORD_IS_INTERFACE:
19508       if (dwarf_version >= 3 || !dwarf_strict)
19509         return DW_TAG_interface_type;
19510       return DW_TAG_structure_type;
19511
19512     default:
19513       gcc_unreachable ();
19514     }
19515 }
19516
19517 /* Generate a DIE to represent an enumeration type.  Note that these DIEs
19518    include all of the information about the enumeration values also. Each
19519    enumerated type name/value is listed as a child of the enumerated type
19520    DIE.  */
19521
19522 static dw_die_ref
19523 gen_enumeration_type_die (tree type, dw_die_ref context_die)
19524 {
19525   dw_die_ref type_die = lookup_type_die (type);
19526
19527   if (type_die == NULL)
19528     {
19529       type_die = new_die (DW_TAG_enumeration_type,
19530                           scope_die_for (type, context_die), type);
19531       equate_type_number_to_die (type, type_die);
19532       add_name_attribute (type_die, type_tag (type));
19533       add_gnat_descriptive_type_attribute (type_die, type, context_die);
19534       if (dwarf_version >= 4 || !dwarf_strict)
19535         {
19536           if (ENUM_IS_SCOPED (type))
19537             add_AT_flag (type_die, DW_AT_enum_class, 1);
19538           if (ENUM_IS_OPAQUE (type))
19539             add_AT_flag (type_die, DW_AT_declaration, 1);
19540         }
19541     }
19542   else if (! TYPE_SIZE (type))
19543     return type_die;
19544   else
19545     remove_AT (type_die, DW_AT_declaration);
19546
19547   /* Handle a GNU C/C++ extension, i.e. incomplete enum types.  If the
19548      given enum type is incomplete, do not generate the DW_AT_byte_size
19549      attribute or the DW_AT_element_list attribute.  */
19550   if (TYPE_SIZE (type))
19551     {
19552       tree link;
19553
19554       TREE_ASM_WRITTEN (type) = 1;
19555       add_byte_size_attribute (type_die, type);
19556       if (TYPE_STUB_DECL (type) != NULL_TREE)
19557         {
19558           add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
19559           add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
19560         }
19561
19562       /* If the first reference to this type was as the return type of an
19563          inline function, then it may not have a parent.  Fix this now.  */
19564       if (type_die->die_parent == NULL)
19565         add_child_die (scope_die_for (type, context_die), type_die);
19566
19567       for (link = TYPE_VALUES (type);
19568            link != NULL; link = TREE_CHAIN (link))
19569         {
19570           dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
19571           tree value = TREE_VALUE (link);
19572
19573           add_name_attribute (enum_die,
19574                               IDENTIFIER_POINTER (TREE_PURPOSE (link)));
19575
19576           if (TREE_CODE (value) == CONST_DECL)
19577             value = DECL_INITIAL (value);
19578
19579           if (host_integerp (value, TYPE_UNSIGNED (TREE_TYPE (value))))
19580             /* DWARF2 does not provide a way of indicating whether or
19581                not enumeration constants are signed or unsigned.  GDB
19582                always assumes the values are signed, so we output all
19583                values as if they were signed.  That means that
19584                enumeration constants with very large unsigned values
19585                will appear to have negative values in the debugger.  */
19586             add_AT_int (enum_die, DW_AT_const_value,
19587                         tree_low_cst (value, tree_int_cst_sgn (value) > 0));
19588         }
19589     }
19590   else
19591     add_AT_flag (type_die, DW_AT_declaration, 1);
19592
19593   if (get_AT (type_die, DW_AT_name))
19594     add_pubtype (type, type_die);
19595
19596   return type_die;
19597 }
19598
19599 /* Generate a DIE to represent either a real live formal parameter decl or to
19600    represent just the type of some formal parameter position in some function
19601    type.
19602
19603    Note that this routine is a bit unusual because its argument may be a
19604    ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
19605    represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
19606    node.  If it's the former then this function is being called to output a
19607    DIE to represent a formal parameter object (or some inlining thereof).  If
19608    it's the latter, then this function is only being called to output a
19609    DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
19610    argument type of some subprogram type.
19611    If EMIT_NAME_P is true, name and source coordinate attributes
19612    are emitted.  */
19613
19614 static dw_die_ref
19615 gen_formal_parameter_die (tree node, tree origin, bool emit_name_p,
19616                           dw_die_ref context_die)
19617 {
19618   tree node_or_origin = node ? node : origin;
19619   tree ultimate_origin;
19620   dw_die_ref parm_die
19621     = new_die (DW_TAG_formal_parameter, context_die, node);
19622
19623   switch (TREE_CODE_CLASS (TREE_CODE (node_or_origin)))
19624     {
19625     case tcc_declaration:
19626       ultimate_origin = decl_ultimate_origin (node_or_origin);
19627       if (node || ultimate_origin)
19628         origin = ultimate_origin;
19629       if (origin != NULL)
19630         add_abstract_origin_attribute (parm_die, origin);
19631       else if (emit_name_p)
19632         add_name_and_src_coords_attributes (parm_die, node);
19633       if (origin == NULL
19634           || (! DECL_ABSTRACT (node_or_origin)
19635               && variably_modified_type_p (TREE_TYPE (node_or_origin),
19636                                            decl_function_context
19637                                                             (node_or_origin))))
19638         {
19639           tree type = TREE_TYPE (node_or_origin);
19640           if (decl_by_reference_p (node_or_origin))
19641             add_type_attribute (parm_die, TREE_TYPE (type), 0, 0,
19642                                 context_die);
19643           else
19644             add_type_attribute (parm_die, type,
19645                                 TREE_READONLY (node_or_origin),
19646                                 TREE_THIS_VOLATILE (node_or_origin),
19647                                 context_die);
19648         }
19649       if (origin == NULL && DECL_ARTIFICIAL (node))
19650         add_AT_flag (parm_die, DW_AT_artificial, 1);
19651
19652       if (node && node != origin)
19653         equate_decl_number_to_die (node, parm_die);
19654       if (! DECL_ABSTRACT (node_or_origin))
19655         add_location_or_const_value_attribute (parm_die, node_or_origin,
19656                                                node == NULL, DW_AT_location);
19657
19658       break;
19659
19660     case tcc_type:
19661       /* We were called with some kind of a ..._TYPE node.  */
19662       add_type_attribute (parm_die, node_or_origin, 0, 0, context_die);
19663       break;
19664
19665     default:
19666       gcc_unreachable ();
19667     }
19668
19669   return parm_die;
19670 }
19671
19672 /* Generate and return a DW_TAG_GNU_formal_parameter_pack. Also generate
19673    children DW_TAG_formal_parameter DIEs representing the arguments of the
19674    parameter pack.
19675
19676    PARM_PACK must be a function parameter pack.
19677    PACK_ARG is the first argument of the parameter pack. Its TREE_CHAIN
19678    must point to the subsequent arguments of the function PACK_ARG belongs to.
19679    SUBR_DIE is the DIE of the function PACK_ARG belongs to.
19680    If NEXT_ARG is non NULL, *NEXT_ARG is set to the function argument
19681    following the last one for which a DIE was generated.  */
19682
19683 static dw_die_ref
19684 gen_formal_parameter_pack_die  (tree parm_pack,
19685                                 tree pack_arg,
19686                                 dw_die_ref subr_die,
19687                                 tree *next_arg)
19688 {
19689   tree arg;
19690   dw_die_ref parm_pack_die;
19691
19692   gcc_assert (parm_pack
19693               && lang_hooks.function_parameter_pack_p (parm_pack)
19694               && subr_die);
19695
19696   parm_pack_die = new_die (DW_TAG_GNU_formal_parameter_pack, subr_die, parm_pack);
19697   add_src_coords_attributes (parm_pack_die, parm_pack);
19698
19699   for (arg = pack_arg; arg; arg = DECL_CHAIN (arg))
19700     {
19701       if (! lang_hooks.decls.function_parm_expanded_from_pack_p (arg,
19702                                                                  parm_pack))
19703         break;
19704       gen_formal_parameter_die (arg, NULL,
19705                                 false /* Don't emit name attribute.  */,
19706                                 parm_pack_die);
19707     }
19708   if (next_arg)
19709     *next_arg = arg;
19710   return parm_pack_die;
19711 }
19712
19713 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
19714    at the end of an (ANSI prototyped) formal parameters list.  */
19715
19716 static void
19717 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
19718 {
19719   new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
19720 }
19721
19722 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
19723    DW_TAG_unspecified_parameters DIE) to represent the types of the formal
19724    parameters as specified in some function type specification (except for
19725    those which appear as part of a function *definition*).  */
19726
19727 static void
19728 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
19729 {
19730   tree link;
19731   tree formal_type = NULL;
19732   tree first_parm_type;
19733   tree arg;
19734
19735   if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
19736     {
19737       arg = DECL_ARGUMENTS (function_or_method_type);
19738       function_or_method_type = TREE_TYPE (function_or_method_type);
19739     }
19740   else
19741     arg = NULL_TREE;
19742
19743   first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
19744
19745   /* Make our first pass over the list of formal parameter types and output a
19746      DW_TAG_formal_parameter DIE for each one.  */
19747   for (link = first_parm_type; link; )
19748     {
19749       dw_die_ref parm_die;
19750
19751       formal_type = TREE_VALUE (link);
19752       if (formal_type == void_type_node)
19753         break;
19754
19755       /* Output a (nameless) DIE to represent the formal parameter itself.  */
19756       parm_die = gen_formal_parameter_die (formal_type, NULL,
19757                                            true /* Emit name attribute.  */,
19758                                            context_die);
19759       if (TREE_CODE (function_or_method_type) == METHOD_TYPE
19760           && link == first_parm_type)
19761         {
19762           add_AT_flag (parm_die, DW_AT_artificial, 1);
19763           if (dwarf_version >= 3 || !dwarf_strict)
19764             add_AT_die_ref (context_die, DW_AT_object_pointer, parm_die);
19765         }
19766       else if (arg && DECL_ARTIFICIAL (arg))
19767         add_AT_flag (parm_die, DW_AT_artificial, 1);
19768
19769       link = TREE_CHAIN (link);
19770       if (arg)
19771         arg = DECL_CHAIN (arg);
19772     }
19773
19774   /* If this function type has an ellipsis, add a
19775      DW_TAG_unspecified_parameters DIE to the end of the parameter list.  */
19776   if (formal_type != void_type_node)
19777     gen_unspecified_parameters_die (function_or_method_type, context_die);
19778
19779   /* Make our second (and final) pass over the list of formal parameter types
19780      and output DIEs to represent those types (as necessary).  */
19781   for (link = TYPE_ARG_TYPES (function_or_method_type);
19782        link && TREE_VALUE (link);
19783        link = TREE_CHAIN (link))
19784     gen_type_die (TREE_VALUE (link), context_die);
19785 }
19786
19787 /* We want to generate the DIE for TYPE so that we can generate the
19788    die for MEMBER, which has been defined; we will need to refer back
19789    to the member declaration nested within TYPE.  If we're trying to
19790    generate minimal debug info for TYPE, processing TYPE won't do the
19791    trick; we need to attach the member declaration by hand.  */
19792
19793 static void
19794 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
19795 {
19796   gen_type_die (type, context_die);
19797
19798   /* If we're trying to avoid duplicate debug info, we may not have
19799      emitted the member decl for this function.  Emit it now.  */
19800   if (TYPE_STUB_DECL (type)
19801       && TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
19802       && ! lookup_decl_die (member))
19803     {
19804       dw_die_ref type_die;
19805       gcc_assert (!decl_ultimate_origin (member));
19806
19807       push_decl_scope (type);
19808       type_die = lookup_type_die_strip_naming_typedef (type);
19809       if (TREE_CODE (member) == FUNCTION_DECL)
19810         gen_subprogram_die (member, type_die);
19811       else if (TREE_CODE (member) == FIELD_DECL)
19812         {
19813           /* Ignore the nameless fields that are used to skip bits but handle
19814              C++ anonymous unions and structs.  */
19815           if (DECL_NAME (member) != NULL_TREE
19816               || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
19817               || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
19818             {
19819               gen_type_die (member_declared_type (member), type_die);
19820               gen_field_die (member, type_die);
19821             }
19822         }
19823       else
19824         gen_variable_die (member, NULL_TREE, type_die);
19825
19826       pop_decl_scope ();
19827     }
19828 }
19829
19830 /* Generate the DWARF2 info for the "abstract" instance of a function which we
19831    may later generate inlined and/or out-of-line instances of.  */
19832
19833 static void
19834 dwarf2out_abstract_function (tree decl)
19835 {
19836   dw_die_ref old_die;
19837   tree save_fn;
19838   tree context;
19839   int was_abstract;
19840   htab_t old_decl_loc_table;
19841   htab_t old_cached_dw_loc_list_table;
19842   int old_call_site_count, old_tail_call_site_count;
19843   struct call_arg_loc_node *old_call_arg_locations;
19844
19845   /* Make sure we have the actual abstract inline, not a clone.  */
19846   decl = DECL_ORIGIN (decl);
19847
19848   old_die = lookup_decl_die (decl);
19849   if (old_die && get_AT (old_die, DW_AT_inline))
19850     /* We've already generated the abstract instance.  */
19851     return;
19852
19853   /* We can be called while recursively when seeing block defining inlined subroutine
19854      DIE.  Be sure to not clobber the outer location table nor use it or we would
19855      get locations in abstract instantces.  */
19856   old_decl_loc_table = decl_loc_table;
19857   decl_loc_table = NULL;
19858   old_cached_dw_loc_list_table = cached_dw_loc_list_table;
19859   cached_dw_loc_list_table = NULL;
19860   old_call_arg_locations = call_arg_locations;
19861   call_arg_locations = NULL;
19862   old_call_site_count = call_site_count;
19863   call_site_count = -1;
19864   old_tail_call_site_count = tail_call_site_count;
19865   tail_call_site_count = -1;
19866
19867   /* Be sure we've emitted the in-class declaration DIE (if any) first, so
19868      we don't get confused by DECL_ABSTRACT.  */
19869   if (debug_info_level > DINFO_LEVEL_TERSE)
19870     {
19871       context = decl_class_context (decl);
19872       if (context)
19873         gen_type_die_for_member
19874           (context, decl, decl_function_context (decl) ? NULL : comp_unit_die ());
19875     }
19876
19877   /* Pretend we've just finished compiling this function.  */
19878   save_fn = current_function_decl;
19879   current_function_decl = decl;
19880   push_cfun (DECL_STRUCT_FUNCTION (decl));
19881
19882   was_abstract = DECL_ABSTRACT (decl);
19883   set_decl_abstract_flags (decl, 1);
19884   dwarf2out_decl (decl);
19885   if (! was_abstract)
19886     set_decl_abstract_flags (decl, 0);
19887
19888   current_function_decl = save_fn;
19889   decl_loc_table = old_decl_loc_table;
19890   cached_dw_loc_list_table = old_cached_dw_loc_list_table;
19891   call_arg_locations = old_call_arg_locations;
19892   call_site_count = old_call_site_count;
19893   tail_call_site_count = old_tail_call_site_count;
19894   pop_cfun ();
19895 }
19896
19897 /* Helper function of premark_used_types() which gets called through
19898    htab_traverse.
19899
19900    Marks the DIE of a given type in *SLOT as perennial, so it never gets
19901    marked as unused by prune_unused_types.  */
19902
19903 static int
19904 premark_used_types_helper (void **slot, void *data ATTRIBUTE_UNUSED)
19905 {
19906   tree type;
19907   dw_die_ref die;
19908
19909   type = (tree) *slot;
19910   die = lookup_type_die (type);
19911   if (die != NULL)
19912     die->die_perennial_p = 1;
19913   return 1;
19914 }
19915
19916 /* Helper function of premark_types_used_by_global_vars which gets called
19917    through htab_traverse.
19918
19919    Marks the DIE of a given type in *SLOT as perennial, so it never gets
19920    marked as unused by prune_unused_types. The DIE of the type is marked
19921    only if the global variable using the type will actually be emitted.  */
19922
19923 static int
19924 premark_types_used_by_global_vars_helper (void **slot,
19925                                           void *data ATTRIBUTE_UNUSED)
19926 {
19927   struct types_used_by_vars_entry *entry;
19928   dw_die_ref die;
19929
19930   entry = (struct types_used_by_vars_entry *) *slot;
19931   gcc_assert (entry->type != NULL
19932               && entry->var_decl != NULL);
19933   die = lookup_type_die (entry->type);
19934   if (die)
19935     {
19936       /* Ask cgraph if the global variable really is to be emitted.
19937          If yes, then we'll keep the DIE of ENTRY->TYPE.  */
19938       struct varpool_node *node = varpool_get_node (entry->var_decl);
19939       if (node && node->needed)
19940         {
19941           die->die_perennial_p = 1;
19942           /* Keep the parent DIEs as well.  */
19943           while ((die = die->die_parent) && die->die_perennial_p == 0)
19944             die->die_perennial_p = 1;
19945         }
19946     }
19947   return 1;
19948 }
19949
19950 /* Mark all members of used_types_hash as perennial.  */
19951
19952 static void
19953 premark_used_types (void)
19954 {
19955   if (cfun && cfun->used_types_hash)
19956     htab_traverse (cfun->used_types_hash, premark_used_types_helper, NULL);
19957 }
19958
19959 /* Mark all members of types_used_by_vars_entry as perennial.  */
19960
19961 static void
19962 premark_types_used_by_global_vars (void)
19963 {
19964   if (types_used_by_vars_hash)
19965     htab_traverse (types_used_by_vars_hash,
19966                    premark_types_used_by_global_vars_helper, NULL);
19967 }
19968
19969 /* Generate a DW_TAG_GNU_call_site DIE in function DECL under SUBR_DIE
19970    for CA_LOC call arg loc node.  */
19971
19972 static dw_die_ref
19973 gen_call_site_die (tree decl, dw_die_ref subr_die,
19974                    struct call_arg_loc_node *ca_loc)
19975 {
19976   dw_die_ref stmt_die = NULL, die;
19977   tree block = ca_loc->block;
19978
19979   while (block
19980          && block != DECL_INITIAL (decl)
19981          && TREE_CODE (block) == BLOCK)
19982     {
19983       if (VEC_length (dw_die_ref, block_map) > BLOCK_NUMBER (block))
19984         stmt_die = VEC_index (dw_die_ref, block_map, BLOCK_NUMBER (block));
19985       if (stmt_die)
19986         break;
19987       block = BLOCK_SUPERCONTEXT (block);
19988     }
19989   if (stmt_die == NULL)
19990     stmt_die = subr_die;
19991   die = new_die (DW_TAG_GNU_call_site, stmt_die, NULL_TREE);
19992   add_AT_lbl_id (die, DW_AT_low_pc, ca_loc->label);
19993   if (ca_loc->tail_call_p)
19994     add_AT_flag (die, DW_AT_GNU_tail_call, 1);
19995   if (ca_loc->symbol_ref)
19996     {
19997       dw_die_ref tdie = lookup_decl_die (SYMBOL_REF_DECL (ca_loc->symbol_ref));
19998       if (tdie)
19999         add_AT_die_ref (die, DW_AT_abstract_origin, tdie);
20000       else
20001         add_AT_addr (die, DW_AT_abstract_origin, ca_loc->symbol_ref);
20002     }
20003   return die;
20004 }
20005
20006 /* Generate a DIE to represent a declared function (either file-scope or
20007    block-local).  */
20008
20009 static void
20010 gen_subprogram_die (tree decl, dw_die_ref context_die)
20011 {
20012   tree origin = decl_ultimate_origin (decl);
20013   dw_die_ref subr_die;
20014   tree outer_scope;
20015   dw_die_ref old_die = lookup_decl_die (decl);
20016   int declaration = (current_function_decl != decl
20017                      || class_or_namespace_scope_p (context_die));
20018
20019   premark_used_types ();
20020
20021   /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
20022      started to generate the abstract instance of an inline, decided to output
20023      its containing class, and proceeded to emit the declaration of the inline
20024      from the member list for the class.  If so, DECLARATION takes priority;
20025      we'll get back to the abstract instance when done with the class.  */
20026
20027   /* The class-scope declaration DIE must be the primary DIE.  */
20028   if (origin && declaration && class_or_namespace_scope_p (context_die))
20029     {
20030       origin = NULL;
20031       gcc_assert (!old_die);
20032     }
20033
20034   /* Now that the C++ front end lazily declares artificial member fns, we
20035      might need to retrofit the declaration into its class.  */
20036   if (!declaration && !origin && !old_die
20037       && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
20038       && !class_or_namespace_scope_p (context_die)
20039       && debug_info_level > DINFO_LEVEL_TERSE)
20040     old_die = force_decl_die (decl);
20041
20042   if (origin != NULL)
20043     {
20044       gcc_assert (!declaration || local_scope_p (context_die));
20045
20046       /* Fixup die_parent for the abstract instance of a nested
20047          inline function.  */
20048       if (old_die && old_die->die_parent == NULL)
20049         add_child_die (context_die, old_die);
20050
20051       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
20052       add_abstract_origin_attribute (subr_die, origin);
20053       /*  This is where the actual code for a cloned function is.
20054           Let's emit linkage name attribute for it.  This helps
20055           debuggers to e.g, set breakpoints into
20056           constructors/destructors when the user asks "break
20057           K::K".  */
20058       add_linkage_name (subr_die, decl);
20059     }
20060   else if (old_die)
20061     {
20062       expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
20063       struct dwarf_file_data * file_index = lookup_filename (s.file);
20064
20065       if (!get_AT_flag (old_die, DW_AT_declaration)
20066           /* We can have a normal definition following an inline one in the
20067              case of redefinition of GNU C extern inlines.
20068              It seems reasonable to use AT_specification in this case.  */
20069           && !get_AT (old_die, DW_AT_inline))
20070         {
20071           /* Detect and ignore this case, where we are trying to output
20072              something we have already output.  */
20073           return;
20074         }
20075
20076       /* If the definition comes from the same place as the declaration,
20077          maybe use the old DIE.  We always want the DIE for this function
20078          that has the *_pc attributes to be under comp_unit_die so the
20079          debugger can find it.  We also need to do this for abstract
20080          instances of inlines, since the spec requires the out-of-line copy
20081          to have the same parent.  For local class methods, this doesn't
20082          apply; we just use the old DIE.  */
20083       if ((is_cu_die (old_die->die_parent) || context_die == NULL)
20084           && (DECL_ARTIFICIAL (decl)
20085               || (get_AT_file (old_die, DW_AT_decl_file) == file_index
20086                   && (get_AT_unsigned (old_die, DW_AT_decl_line)
20087                       == (unsigned) s.line))))
20088         {
20089           subr_die = old_die;
20090
20091           /* Clear out the declaration attribute and the formal parameters.
20092              Do not remove all children, because it is possible that this
20093              declaration die was forced using force_decl_die(). In such
20094              cases die that forced declaration die (e.g. TAG_imported_module)
20095              is one of the children that we do not want to remove.  */
20096           remove_AT (subr_die, DW_AT_declaration);
20097           remove_AT (subr_die, DW_AT_object_pointer);
20098           remove_child_TAG (subr_die, DW_TAG_formal_parameter);
20099         }
20100       else
20101         {
20102           subr_die = new_die (DW_TAG_subprogram, context_die, decl);
20103           add_AT_specification (subr_die, old_die);
20104           if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
20105             add_AT_file (subr_die, DW_AT_decl_file, file_index);
20106           if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
20107             add_AT_unsigned (subr_die, DW_AT_decl_line, s.line);
20108         }
20109     }
20110   else
20111     {
20112       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
20113
20114       if (TREE_PUBLIC (decl))
20115         add_AT_flag (subr_die, DW_AT_external, 1);
20116
20117       add_name_and_src_coords_attributes (subr_die, decl);
20118       if (debug_info_level > DINFO_LEVEL_TERSE)
20119         {
20120           add_prototyped_attribute (subr_die, TREE_TYPE (decl));
20121           add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
20122                               0, 0, context_die);
20123         }
20124
20125       add_pure_or_virtual_attribute (subr_die, decl);
20126       if (DECL_ARTIFICIAL (decl))
20127         add_AT_flag (subr_die, DW_AT_artificial, 1);
20128
20129       add_accessibility_attribute (subr_die, decl);
20130     }
20131
20132   if (declaration)
20133     {
20134       if (!old_die || !get_AT (old_die, DW_AT_inline))
20135         {
20136           add_AT_flag (subr_die, DW_AT_declaration, 1);
20137
20138           /* If this is an explicit function declaration then generate
20139              a DW_AT_explicit attribute.  */
20140           if (lang_hooks.decls.function_decl_explicit_p (decl)
20141               && (dwarf_version >= 3 || !dwarf_strict))
20142             add_AT_flag (subr_die, DW_AT_explicit, 1);
20143
20144           /* The first time we see a member function, it is in the context of
20145              the class to which it belongs.  We make sure of this by emitting
20146              the class first.  The next time is the definition, which is
20147              handled above.  The two may come from the same source text.
20148
20149              Note that force_decl_die() forces function declaration die. It is
20150              later reused to represent definition.  */
20151           equate_decl_number_to_die (decl, subr_die);
20152         }
20153     }
20154   else if (DECL_ABSTRACT (decl))
20155     {
20156       if (DECL_DECLARED_INLINE_P (decl))
20157         {
20158           if (cgraph_function_possibly_inlined_p (decl))
20159             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
20160           else
20161             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
20162         }
20163       else
20164         {
20165           if (cgraph_function_possibly_inlined_p (decl))
20166             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
20167           else
20168             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_not_inlined);
20169         }
20170
20171       if (DECL_DECLARED_INLINE_P (decl)
20172           && lookup_attribute ("artificial", DECL_ATTRIBUTES (decl)))
20173         add_AT_flag (subr_die, DW_AT_artificial, 1);
20174
20175       equate_decl_number_to_die (decl, subr_die);
20176     }
20177   else if (!DECL_EXTERNAL (decl))
20178     {
20179       HOST_WIDE_INT cfa_fb_offset;
20180
20181       if (!old_die || !get_AT (old_die, DW_AT_inline))
20182         equate_decl_number_to_die (decl, subr_die);
20183
20184       if (!flag_reorder_blocks_and_partition)
20185         {
20186           dw_fde_ref fde = &fde_table[current_funcdef_fde];
20187           if (fde->dw_fde_begin)
20188             {
20189               /* We have already generated the labels.  */
20190               add_AT_lbl_id (subr_die, DW_AT_low_pc, fde->dw_fde_begin);
20191               add_AT_lbl_id (subr_die, DW_AT_high_pc, fde->dw_fde_end);
20192             }
20193           else
20194             {
20195               /* Create start/end labels and add the range.  */
20196               char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
20197               ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
20198                                            current_function_funcdef_no);
20199               add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
20200               ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
20201                                            current_function_funcdef_no);
20202               add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
20203             }
20204
20205 #if VMS_DEBUGGING_INFO
20206       /* HP OpenVMS Industry Standard 64: DWARF Extensions
20207          Section 2.3 Prologue and Epilogue Attributes:
20208          When a breakpoint is set on entry to a function, it is generally
20209          desirable for execution to be suspended, not on the very first
20210          instruction of the function, but rather at a point after the
20211          function's frame has been set up, after any language defined local
20212          declaration processing has been completed, and before execution of
20213          the first statement of the function begins. Debuggers generally
20214          cannot properly determine where this point is.  Similarly for a
20215          breakpoint set on exit from a function. The prologue and epilogue
20216          attributes allow a compiler to communicate the location(s) to use.  */
20217
20218       {
20219         if (fde->dw_fde_vms_end_prologue)
20220           add_AT_vms_delta (subr_die, DW_AT_HP_prologue,
20221             fde->dw_fde_begin, fde->dw_fde_vms_end_prologue);
20222
20223         if (fde->dw_fde_vms_begin_epilogue)
20224           add_AT_vms_delta (subr_die, DW_AT_HP_epilogue,
20225             fde->dw_fde_begin, fde->dw_fde_vms_begin_epilogue);
20226       }
20227 #endif
20228
20229           add_pubname (decl, subr_die);
20230         }
20231       else
20232         {  /* Generate pubnames entries for the split function code
20233               ranges.  */
20234           dw_fde_ref fde = &fde_table[current_funcdef_fde];
20235
20236           if (fde->dw_fde_second_begin)
20237             {
20238               if (dwarf_version >= 3 || !dwarf_strict)
20239                 {
20240                   /* We should use ranges for non-contiguous code section 
20241                      addresses.  Use the actual code range for the initial
20242                      section, since the HOT/COLD labels might precede an 
20243                      alignment offset.  */
20244                   bool range_list_added = false;
20245                   add_ranges_by_labels (subr_die, fde->dw_fde_begin,
20246                                         fde->dw_fde_end, &range_list_added);
20247                   add_ranges_by_labels (subr_die, fde->dw_fde_second_begin,
20248                                         fde->dw_fde_second_end,
20249                                         &range_list_added);
20250                   add_pubname (decl, subr_die);
20251                   if (range_list_added)
20252                     add_ranges (NULL);
20253                 }
20254               else
20255                 {
20256                   /* There is no real support in DW2 for this .. so we make
20257                      a work-around.  First, emit the pub name for the segment
20258                      containing the function label.  Then make and emit a
20259                      simplified subprogram DIE for the second segment with the
20260                      name pre-fixed by __hot/cold_sect_of_.  We use the same
20261                      linkage name for the second die so that gdb will find both
20262                      sections when given "b foo".  */
20263                   const char *name = NULL;
20264                   tree decl_name = DECL_NAME (decl);
20265                   dw_die_ref seg_die;
20266
20267                   /* Do the 'primary' section.   */
20268                   add_AT_lbl_id (subr_die, DW_AT_low_pc,
20269                                  fde->dw_fde_begin);
20270                   add_AT_lbl_id (subr_die, DW_AT_high_pc,
20271                                  fde->dw_fde_end);
20272                   /* Add it.   */
20273                   add_pubname (decl, subr_die);
20274
20275                   /* Build a minimal DIE for the secondary section.  */
20276                   seg_die = new_die (DW_TAG_subprogram,
20277                                      subr_die->die_parent, decl);
20278
20279                   if (TREE_PUBLIC (decl))
20280                     add_AT_flag (seg_die, DW_AT_external, 1);
20281
20282                   if (decl_name != NULL 
20283                       && IDENTIFIER_POINTER (decl_name) != NULL)
20284                     {
20285                       name = dwarf2_name (decl, 1);
20286                       if (! DECL_ARTIFICIAL (decl))
20287                         add_src_coords_attributes (seg_die, decl);
20288
20289                       add_linkage_name (seg_die, decl);
20290                     }
20291                   gcc_assert (name != NULL);
20292                   add_pure_or_virtual_attribute (seg_die, decl);
20293                   if (DECL_ARTIFICIAL (decl))
20294                     add_AT_flag (seg_die, DW_AT_artificial, 1);
20295
20296                   name = concat ("__second_sect_of_", name, NULL); 
20297                   add_AT_lbl_id (seg_die, DW_AT_low_pc,
20298                                  fde->dw_fde_second_begin);
20299                   add_AT_lbl_id (seg_die, DW_AT_high_pc,
20300                                  fde->dw_fde_second_end);
20301                   add_name_attribute (seg_die, name);
20302                   add_pubname_string (name, seg_die);
20303                 }
20304             }
20305           else
20306             {
20307               add_AT_lbl_id (subr_die, DW_AT_low_pc, fde->dw_fde_begin);
20308               add_AT_lbl_id (subr_die, DW_AT_high_pc, fde->dw_fde_end);
20309               add_pubname (decl, subr_die);
20310             }
20311         }
20312
20313 #ifdef MIPS_DEBUGGING_INFO
20314       /* Add a reference to the FDE for this routine.  */
20315       add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
20316 #endif
20317
20318       cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
20319
20320       /* We define the "frame base" as the function's CFA.  This is more
20321          convenient for several reasons: (1) It's stable across the prologue
20322          and epilogue, which makes it better than just a frame pointer,
20323          (2) With dwarf3, there exists a one-byte encoding that allows us
20324          to reference the .debug_frame data by proxy, but failing that,
20325          (3) We can at least reuse the code inspection and interpretation
20326          code that determines the CFA position at various points in the
20327          function.  */
20328       if (dwarf_version >= 3)
20329         {
20330           dw_loc_descr_ref op = new_loc_descr (DW_OP_call_frame_cfa, 0, 0);
20331           add_AT_loc (subr_die, DW_AT_frame_base, op);
20332         }
20333       else
20334         {
20335           dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
20336           if (list->dw_loc_next)
20337             add_AT_loc_list (subr_die, DW_AT_frame_base, list);
20338           else
20339             add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
20340         }
20341
20342       /* Compute a displacement from the "steady-state frame pointer" to
20343          the CFA.  The former is what all stack slots and argument slots
20344          will reference in the rtl; the later is what we've told the
20345          debugger about.  We'll need to adjust all frame_base references
20346          by this displacement.  */
20347       compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
20348
20349       if (cfun->static_chain_decl)
20350         add_AT_location_description (subr_die, DW_AT_static_link,
20351                  loc_list_from_tree (cfun->static_chain_decl, 2));
20352     }
20353
20354   /* Generate child dies for template paramaters.  */
20355   if (debug_info_level > DINFO_LEVEL_TERSE)
20356     gen_generic_params_dies (decl);
20357
20358   /* Now output descriptions of the arguments for this function. This gets
20359      (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
20360      for a FUNCTION_DECL doesn't indicate cases where there was a trailing
20361      `...' at the end of the formal parameter list.  In order to find out if
20362      there was a trailing ellipsis or not, we must instead look at the type
20363      associated with the FUNCTION_DECL.  This will be a node of type
20364      FUNCTION_TYPE. If the chain of type nodes hanging off of this
20365      FUNCTION_TYPE node ends with a void_type_node then there should *not* be
20366      an ellipsis at the end.  */
20367
20368   /* In the case where we are describing a mere function declaration, all we
20369      need to do here (and all we *can* do here) is to describe the *types* of
20370      its formal parameters.  */
20371   if (debug_info_level <= DINFO_LEVEL_TERSE)
20372     ;
20373   else if (declaration)
20374     gen_formal_types_die (decl, subr_die);
20375   else
20376     {
20377       /* Generate DIEs to represent all known formal parameters.  */
20378       tree parm = DECL_ARGUMENTS (decl);
20379       tree generic_decl = lang_hooks.decls.get_generic_function_decl (decl);
20380       tree generic_decl_parm = generic_decl
20381                                 ? DECL_ARGUMENTS (generic_decl)
20382                                 : NULL;
20383
20384       /* Now we want to walk the list of parameters of the function and
20385          emit their relevant DIEs.
20386
20387          We consider the case of DECL being an instance of a generic function
20388          as well as it being a normal function.
20389
20390          If DECL is an instance of a generic function we walk the
20391          parameters of the generic function declaration _and_ the parameters of
20392          DECL itself. This is useful because we want to emit specific DIEs for
20393          function parameter packs and those are declared as part of the
20394          generic function declaration. In that particular case,
20395          the parameter pack yields a DW_TAG_GNU_formal_parameter_pack DIE.
20396          That DIE has children DIEs representing the set of arguments
20397          of the pack. Note that the set of pack arguments can be empty.
20398          In that case, the DW_TAG_GNU_formal_parameter_pack DIE will not have any
20399          children DIE.
20400
20401          Otherwise, we just consider the parameters of DECL.  */
20402       while (generic_decl_parm || parm)
20403         {
20404           if (generic_decl_parm
20405               && lang_hooks.function_parameter_pack_p (generic_decl_parm))
20406             gen_formal_parameter_pack_die (generic_decl_parm,
20407                                            parm, subr_die,
20408                                            &parm);
20409           else if (parm)
20410             {
20411               dw_die_ref parm_die = gen_decl_die (parm, NULL, subr_die);
20412
20413               if (parm == DECL_ARGUMENTS (decl)
20414                   && TREE_CODE (TREE_TYPE (decl)) == METHOD_TYPE
20415                   && parm_die
20416                   && (dwarf_version >= 3 || !dwarf_strict))
20417                 add_AT_die_ref (subr_die, DW_AT_object_pointer, parm_die);
20418
20419               parm = DECL_CHAIN (parm);
20420             }
20421
20422           if (generic_decl_parm)
20423             generic_decl_parm = DECL_CHAIN (generic_decl_parm);
20424         }
20425
20426       /* Decide whether we need an unspecified_parameters DIE at the end.
20427          There are 2 more cases to do this for: 1) the ansi ... declaration -
20428          this is detectable when the end of the arg list is not a
20429          void_type_node 2) an unprototyped function declaration (not a
20430          definition).  This just means that we have no info about the
20431          parameters at all.  */
20432       if (prototype_p (TREE_TYPE (decl)))
20433         {
20434           /* This is the prototyped case, check for....  */
20435           if (stdarg_p (TREE_TYPE (decl)))
20436             gen_unspecified_parameters_die (decl, subr_die);
20437         }
20438       else if (DECL_INITIAL (decl) == NULL_TREE)
20439         gen_unspecified_parameters_die (decl, subr_die);
20440     }
20441
20442   /* Output Dwarf info for all of the stuff within the body of the function
20443      (if it has one - it may be just a declaration).  */
20444   outer_scope = DECL_INITIAL (decl);
20445
20446   /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
20447      a function.  This BLOCK actually represents the outermost binding contour
20448      for the function, i.e. the contour in which the function's formal
20449      parameters and labels get declared. Curiously, it appears that the front
20450      end doesn't actually put the PARM_DECL nodes for the current function onto
20451      the BLOCK_VARS list for this outer scope, but are strung off of the
20452      DECL_ARGUMENTS list for the function instead.
20453
20454      The BLOCK_VARS list for the `outer_scope' does provide us with a list of
20455      the LABEL_DECL nodes for the function however, and we output DWARF info
20456      for those in decls_for_scope.  Just within the `outer_scope' there will be
20457      a BLOCK node representing the function's outermost pair of curly braces,
20458      and any blocks used for the base and member initializers of a C++
20459      constructor function.  */
20460   if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
20461     {
20462       int call_site_note_count = 0;
20463       int tail_call_site_note_count = 0;
20464
20465       /* Emit a DW_TAG_variable DIE for a named return value.  */
20466       if (DECL_NAME (DECL_RESULT (decl)))
20467         gen_decl_die (DECL_RESULT (decl), NULL, subr_die);
20468
20469       current_function_has_inlines = 0;
20470       decls_for_scope (outer_scope, subr_die, 0);
20471
20472       if (call_arg_locations && !dwarf_strict)
20473         {
20474           struct call_arg_loc_node *ca_loc;
20475           for (ca_loc = call_arg_locations; ca_loc; ca_loc = ca_loc->next)
20476             {
20477               dw_die_ref die = NULL;
20478               rtx tloc = NULL_RTX, tlocc = NULL_RTX;
20479               rtx arg, next_arg;
20480
20481               for (arg = NOTE_VAR_LOCATION (ca_loc->call_arg_loc_note);
20482                    arg; arg = next_arg)
20483                 {
20484                   dw_loc_descr_ref reg, val;
20485                   enum machine_mode mode = GET_MODE (XEXP (XEXP (arg, 0), 1));
20486                   dw_die_ref cdie;
20487
20488                   next_arg = XEXP (arg, 1);
20489                   if (REG_P (XEXP (XEXP (arg, 0), 0))
20490                       && next_arg
20491                       && MEM_P (XEXP (XEXP (next_arg, 0), 0))
20492                       && REG_P (XEXP (XEXP (XEXP (next_arg, 0), 0), 0))
20493                       && REGNO (XEXP (XEXP (arg, 0), 0))
20494                          == REGNO (XEXP (XEXP (XEXP (next_arg, 0), 0), 0)))
20495                     next_arg = XEXP (next_arg, 1);
20496                   if (mode == VOIDmode)
20497                     {
20498                       mode = GET_MODE (XEXP (XEXP (arg, 0), 0));
20499                       if (mode == VOIDmode)
20500                         mode = GET_MODE (XEXP (arg, 0));
20501                     }
20502                   if (mode == VOIDmode || mode == BLKmode)
20503                     continue;
20504                   if (XEXP (XEXP (arg, 0), 0) == pc_rtx)
20505                     {
20506                       gcc_assert (ca_loc->symbol_ref == NULL_RTX);
20507                       tloc = XEXP (XEXP (arg, 0), 1);
20508                       continue;
20509                     }
20510                   else if (GET_CODE (XEXP (XEXP (arg, 0), 0)) == CLOBBER
20511                            && XEXP (XEXP (XEXP (arg, 0), 0), 0) == pc_rtx)
20512                     {
20513                       gcc_assert (ca_loc->symbol_ref == NULL_RTX);
20514                       tlocc = XEXP (XEXP (arg, 0), 1);
20515                       continue;
20516                     }
20517                   if (REG_P (XEXP (XEXP (arg, 0), 0)))
20518                     reg = reg_loc_descriptor (XEXP (XEXP (arg, 0), 0),
20519                                               VAR_INIT_STATUS_INITIALIZED);
20520                   else if (MEM_P (XEXP (XEXP (arg, 0), 0)))
20521                     {
20522                       rtx mem = XEXP (XEXP (arg, 0), 0);
20523                       reg = mem_loc_descriptor (XEXP (mem, 0),
20524                                                 get_address_mode (mem),
20525                                                 GET_MODE (mem),
20526                                                 VAR_INIT_STATUS_INITIALIZED);
20527                     }
20528                   else
20529                     continue;
20530                   if (reg == NULL)
20531                     continue;
20532                   val = mem_loc_descriptor (XEXP (XEXP (arg, 0), 1), mode,
20533                                             VOIDmode,
20534                                             VAR_INIT_STATUS_INITIALIZED);
20535                   if (val == NULL)
20536                     continue;
20537                   if (die == NULL)
20538                     die = gen_call_site_die (decl, subr_die, ca_loc);
20539                   cdie = new_die (DW_TAG_GNU_call_site_parameter, die,
20540                                   NULL_TREE);           
20541                   add_AT_loc (cdie, DW_AT_location, reg);
20542                   add_AT_loc (cdie, DW_AT_GNU_call_site_value, val);
20543                   if (next_arg != XEXP (arg, 1))
20544                     {
20545                       mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 1));
20546                       if (mode == VOIDmode)
20547                         mode = GET_MODE (XEXP (XEXP (XEXP (arg, 1), 0), 0));
20548                       val = mem_loc_descriptor (XEXP (XEXP (XEXP (arg, 1),
20549                                                             0), 1),
20550                                                 mode, VOIDmode,
20551                                                 VAR_INIT_STATUS_INITIALIZED);
20552                       if (val != NULL)
20553                         add_AT_loc (cdie, DW_AT_GNU_call_site_data_value, val);
20554                     }
20555                 }
20556               if (die == NULL
20557                   && (ca_loc->symbol_ref || tloc))
20558                 die = gen_call_site_die (decl, subr_die, ca_loc);
20559               if (die != NULL && (tloc != NULL_RTX || tlocc != NULL_RTX))
20560                 {
20561                   dw_loc_descr_ref tval = NULL;
20562
20563                   if (tloc != NULL_RTX)
20564                     tval = mem_loc_descriptor (tloc,
20565                                                GET_MODE (tloc) == VOIDmode
20566                                                ? Pmode : GET_MODE (tloc),
20567                                                VOIDmode,
20568                                                VAR_INIT_STATUS_INITIALIZED);
20569                   if (tval)
20570                     add_AT_loc (die, DW_AT_GNU_call_site_target, tval);
20571                   else if (tlocc != NULL_RTX)
20572                     {
20573                       tval = mem_loc_descriptor (tlocc,
20574                                                  GET_MODE (tlocc) == VOIDmode
20575                                                  ? Pmode : GET_MODE (tlocc),
20576                                                  VOIDmode,
20577                                                  VAR_INIT_STATUS_INITIALIZED);
20578                       if (tval)
20579                         add_AT_loc (die, DW_AT_GNU_call_site_target_clobbered,
20580                                     tval);
20581                     }
20582                 }
20583               if (die != NULL)
20584                 {
20585                   call_site_note_count++;
20586                   if (ca_loc->tail_call_p)
20587                     tail_call_site_note_count++;
20588                 }
20589             }
20590         }
20591       call_arg_locations = NULL;
20592       call_arg_loc_last = NULL;
20593       if (tail_call_site_count >= 0
20594           && tail_call_site_count == tail_call_site_note_count
20595           && !dwarf_strict)
20596         {
20597           if (call_site_count >= 0
20598               && call_site_count == call_site_note_count)
20599             add_AT_flag (subr_die, DW_AT_GNU_all_call_sites, 1);
20600           else
20601             add_AT_flag (subr_die, DW_AT_GNU_all_tail_call_sites, 1);
20602         }
20603       call_site_count = -1;
20604       tail_call_site_count = -1;
20605     }
20606   /* Add the calling convention attribute if requested.  */
20607   add_calling_convention_attribute (subr_die, decl);
20608
20609 }
20610
20611 /* Returns a hash value for X (which really is a die_struct).  */
20612
20613 static hashval_t
20614 common_block_die_table_hash (const void *x)
20615 {
20616   const_dw_die_ref d = (const_dw_die_ref) x;
20617   return (hashval_t) d->decl_id ^ htab_hash_pointer (d->die_parent);
20618 }
20619
20620 /* Return nonzero if decl_id and die_parent of die_struct X is the same
20621    as decl_id and die_parent of die_struct Y.  */
20622
20623 static int
20624 common_block_die_table_eq (const void *x, const void *y)
20625 {
20626   const_dw_die_ref d = (const_dw_die_ref) x;
20627   const_dw_die_ref e = (const_dw_die_ref) y;
20628   return d->decl_id == e->decl_id && d->die_parent == e->die_parent;
20629 }
20630
20631 /* Generate a DIE to represent a declared data object.
20632    Either DECL or ORIGIN must be non-null.  */
20633
20634 static void
20635 gen_variable_die (tree decl, tree origin, dw_die_ref context_die)
20636 {
20637   HOST_WIDE_INT off;
20638   tree com_decl;
20639   tree decl_or_origin = decl ? decl : origin;
20640   tree ultimate_origin;
20641   dw_die_ref var_die;
20642   dw_die_ref old_die = decl ? lookup_decl_die (decl) : NULL;
20643   dw_die_ref origin_die;
20644   bool declaration = (DECL_EXTERNAL (decl_or_origin)
20645                       || class_or_namespace_scope_p (context_die));
20646   bool specialization_p = false;
20647
20648   ultimate_origin = decl_ultimate_origin (decl_or_origin);
20649   if (decl || ultimate_origin)
20650     origin = ultimate_origin;
20651   com_decl = fortran_common (decl_or_origin, &off);
20652
20653   /* Symbol in common gets emitted as a child of the common block, in the form
20654      of a data member.  */
20655   if (com_decl)
20656     {
20657       dw_die_ref com_die;
20658       dw_loc_list_ref loc;
20659       die_node com_die_arg;
20660
20661       var_die = lookup_decl_die (decl_or_origin);
20662       if (var_die)
20663         {
20664           if (get_AT (var_die, DW_AT_location) == NULL)
20665             {
20666               loc = loc_list_from_tree (com_decl, off ? 1 : 2);
20667               if (loc)
20668                 {
20669                   if (off)
20670                     {
20671                       /* Optimize the common case.  */
20672                       if (single_element_loc_list_p (loc)
20673                           && loc->expr->dw_loc_opc == DW_OP_addr
20674                           && loc->expr->dw_loc_next == NULL
20675                           && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr)
20676                              == SYMBOL_REF)
20677                         loc->expr->dw_loc_oprnd1.v.val_addr
20678                           = plus_constant (loc->expr->dw_loc_oprnd1.v.val_addr, off);
20679                         else
20680                           loc_list_plus_const (loc, off);
20681                     }
20682                   add_AT_location_description (var_die, DW_AT_location, loc);
20683                   remove_AT (var_die, DW_AT_declaration);
20684                 }
20685             }
20686           return;
20687         }
20688
20689       if (common_block_die_table == NULL)
20690         common_block_die_table
20691           = htab_create_ggc (10, common_block_die_table_hash,
20692                              common_block_die_table_eq, NULL);
20693
20694       com_die_arg.decl_id = DECL_UID (com_decl);
20695       com_die_arg.die_parent = context_die;
20696       com_die = (dw_die_ref) htab_find (common_block_die_table, &com_die_arg);
20697       loc = loc_list_from_tree (com_decl, 2);
20698       if (com_die == NULL)
20699         {
20700           const char *cnam
20701             = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (com_decl));
20702           void **slot;
20703
20704           com_die = new_die (DW_TAG_common_block, context_die, decl);
20705           add_name_and_src_coords_attributes (com_die, com_decl);
20706           if (loc)
20707             {
20708               add_AT_location_description (com_die, DW_AT_location, loc);
20709               /* Avoid sharing the same loc descriptor between
20710                  DW_TAG_common_block and DW_TAG_variable.  */
20711               loc = loc_list_from_tree (com_decl, 2);
20712             }
20713           else if (DECL_EXTERNAL (decl))
20714             add_AT_flag (com_die, DW_AT_declaration, 1);
20715           add_pubname_string (cnam, com_die); /* ??? needed? */
20716           com_die->decl_id = DECL_UID (com_decl);
20717           slot = htab_find_slot (common_block_die_table, com_die, INSERT);
20718           *slot = (void *) com_die;
20719         }
20720       else if (get_AT (com_die, DW_AT_location) == NULL && loc)
20721         {
20722           add_AT_location_description (com_die, DW_AT_location, loc);
20723           loc = loc_list_from_tree (com_decl, 2);
20724           remove_AT (com_die, DW_AT_declaration);
20725         }
20726       var_die = new_die (DW_TAG_variable, com_die, decl);
20727       add_name_and_src_coords_attributes (var_die, decl);
20728       add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
20729                           TREE_THIS_VOLATILE (decl), context_die);
20730       add_AT_flag (var_die, DW_AT_external, 1);
20731       if (loc)
20732         {
20733           if (off)
20734             {
20735               /* Optimize the common case.  */
20736               if (single_element_loc_list_p (loc)
20737                   && loc->expr->dw_loc_opc == DW_OP_addr
20738                   && loc->expr->dw_loc_next == NULL
20739                   && GET_CODE (loc->expr->dw_loc_oprnd1.v.val_addr) == SYMBOL_REF)
20740                 loc->expr->dw_loc_oprnd1.v.val_addr
20741                   = plus_constant (loc->expr->dw_loc_oprnd1.v.val_addr, off);
20742               else
20743                 loc_list_plus_const (loc, off);
20744             }
20745           add_AT_location_description (var_die, DW_AT_location, loc);
20746         }
20747       else if (DECL_EXTERNAL (decl))
20748         add_AT_flag (var_die, DW_AT_declaration, 1);
20749       equate_decl_number_to_die (decl, var_die);
20750       return;
20751     }
20752
20753   /* If the compiler emitted a definition for the DECL declaration
20754      and if we already emitted a DIE for it, don't emit a second
20755      DIE for it again. Allow re-declarations of DECLs that are
20756      inside functions, though.  */
20757   if (old_die && declaration && !local_scope_p (context_die))
20758     return;
20759
20760   /* For static data members, the declaration in the class is supposed
20761      to have DW_TAG_member tag; the specification should still be
20762      DW_TAG_variable referencing the DW_TAG_member DIE.  */
20763   if (declaration && class_scope_p (context_die))
20764     var_die = new_die (DW_TAG_member, context_die, decl);
20765   else
20766     var_die = new_die (DW_TAG_variable, context_die, decl);
20767
20768   origin_die = NULL;
20769   if (origin != NULL)
20770     origin_die = add_abstract_origin_attribute (var_die, origin);
20771
20772   /* Loop unrolling can create multiple blocks that refer to the same
20773      static variable, so we must test for the DW_AT_declaration flag.
20774
20775      ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
20776      copy decls and set the DECL_ABSTRACT flag on them instead of
20777      sharing them.
20778
20779      ??? Duplicated blocks have been rewritten to use .debug_ranges.
20780
20781      ??? The declare_in_namespace support causes us to get two DIEs for one
20782      variable, both of which are declarations.  We want to avoid considering
20783      one to be a specification, so we must test that this DIE is not a
20784      declaration.  */
20785   else if (old_die && TREE_STATIC (decl) && ! declaration
20786            && get_AT_flag (old_die, DW_AT_declaration) == 1)
20787     {
20788       /* This is a definition of a C++ class level static.  */
20789       add_AT_specification (var_die, old_die);
20790       specialization_p = true;
20791       if (DECL_NAME (decl))
20792         {
20793           expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
20794           struct dwarf_file_data * file_index = lookup_filename (s.file);
20795
20796           if (get_AT_file (old_die, DW_AT_decl_file) != file_index)
20797             add_AT_file (var_die, DW_AT_decl_file, file_index);
20798
20799           if (get_AT_unsigned (old_die, DW_AT_decl_line) != (unsigned) s.line)
20800             add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
20801
20802           if (old_die->die_tag == DW_TAG_member)
20803             add_linkage_name (var_die, decl);
20804         }
20805     }
20806   else
20807     add_name_and_src_coords_attributes (var_die, decl);
20808
20809   if ((origin == NULL && !specialization_p)
20810       || (origin != NULL
20811           && !DECL_ABSTRACT (decl_or_origin)
20812           && variably_modified_type_p (TREE_TYPE (decl_or_origin),
20813                                        decl_function_context
20814                                                         (decl_or_origin))))
20815     {
20816       tree type = TREE_TYPE (decl_or_origin);
20817
20818       if (decl_by_reference_p (decl_or_origin))
20819         add_type_attribute (var_die, TREE_TYPE (type), 0, 0, context_die);
20820       else
20821         add_type_attribute (var_die, type, TREE_READONLY (decl_or_origin),
20822                             TREE_THIS_VOLATILE (decl_or_origin), context_die);
20823     }
20824
20825   if (origin == NULL && !specialization_p)
20826     {
20827       if (TREE_PUBLIC (decl))
20828         add_AT_flag (var_die, DW_AT_external, 1);
20829
20830       if (DECL_ARTIFICIAL (decl))
20831         add_AT_flag (var_die, DW_AT_artificial, 1);
20832
20833       add_accessibility_attribute (var_die, decl);
20834     }
20835
20836   if (declaration)
20837     add_AT_flag (var_die, DW_AT_declaration, 1);
20838
20839   if (decl && (DECL_ABSTRACT (decl) || declaration || old_die == NULL))
20840     equate_decl_number_to_die (decl, var_die);
20841
20842   if (! declaration
20843       && (! DECL_ABSTRACT (decl_or_origin)
20844           /* Local static vars are shared between all clones/inlines,
20845              so emit DW_AT_location on the abstract DIE if DECL_RTL is
20846              already set.  */
20847           || (TREE_CODE (decl_or_origin) == VAR_DECL
20848               && TREE_STATIC (decl_or_origin)
20849               && DECL_RTL_SET_P (decl_or_origin)))
20850       /* When abstract origin already has DW_AT_location attribute, no need
20851          to add it again.  */
20852       && (origin_die == NULL || get_AT (origin_die, DW_AT_location) == NULL))
20853     {
20854       if (TREE_CODE (decl_or_origin) == VAR_DECL && TREE_STATIC (decl_or_origin)
20855           && !TREE_SYMBOL_REFERENCED (DECL_ASSEMBLER_NAME (decl_or_origin)))
20856         defer_location (decl_or_origin, var_die);
20857       else
20858         add_location_or_const_value_attribute (var_die, decl_or_origin,
20859                                                decl == NULL, DW_AT_location);
20860       add_pubname (decl_or_origin, var_die);
20861     }
20862   else
20863     tree_add_const_value_attribute_for_decl (var_die, decl_or_origin);
20864 }
20865
20866 /* Generate a DIE to represent a named constant.  */
20867
20868 static void
20869 gen_const_die (tree decl, dw_die_ref context_die)
20870 {
20871   dw_die_ref const_die;
20872   tree type = TREE_TYPE (decl);
20873
20874   const_die = new_die (DW_TAG_constant, context_die, decl);
20875   add_name_and_src_coords_attributes (const_die, decl);
20876   add_type_attribute (const_die, type, 1, 0, context_die);
20877   if (TREE_PUBLIC (decl))
20878     add_AT_flag (const_die, DW_AT_external, 1);
20879   if (DECL_ARTIFICIAL (decl))
20880     add_AT_flag (const_die, DW_AT_artificial, 1);
20881   tree_add_const_value_attribute_for_decl (const_die, decl);
20882 }
20883
20884 /* Generate a DIE to represent a label identifier.  */
20885
20886 static void
20887 gen_label_die (tree decl, dw_die_ref context_die)
20888 {
20889   tree origin = decl_ultimate_origin (decl);
20890   dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
20891   rtx insn;
20892   char label[MAX_ARTIFICIAL_LABEL_BYTES];
20893
20894   if (origin != NULL)
20895     add_abstract_origin_attribute (lbl_die, origin);
20896   else
20897     add_name_and_src_coords_attributes (lbl_die, decl);
20898
20899   if (DECL_ABSTRACT (decl))
20900     equate_decl_number_to_die (decl, lbl_die);
20901   else
20902     {
20903       insn = DECL_RTL_IF_SET (decl);
20904
20905       /* Deleted labels are programmer specified labels which have been
20906          eliminated because of various optimizations.  We still emit them
20907          here so that it is possible to put breakpoints on them.  */
20908       if (insn
20909           && (LABEL_P (insn)
20910               || ((NOTE_P (insn)
20911                    && NOTE_KIND (insn) == NOTE_INSN_DELETED_LABEL))))
20912         {
20913           /* When optimization is enabled (via -O) some parts of the compiler
20914              (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
20915              represent source-level labels which were explicitly declared by
20916              the user.  This really shouldn't be happening though, so catch
20917              it if it ever does happen.  */
20918           gcc_assert (!INSN_DELETED_P (insn));
20919
20920           ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
20921           add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
20922         }
20923     }
20924 }
20925
20926 /* A helper function for gen_inlined_subroutine_die.  Add source coordinate
20927    attributes to the DIE for a block STMT, to describe where the inlined
20928    function was called from.  This is similar to add_src_coords_attributes.  */
20929
20930 static inline void
20931 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
20932 {
20933   expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (stmt));
20934
20935   if (dwarf_version >= 3 || !dwarf_strict)
20936     {
20937       add_AT_file (die, DW_AT_call_file, lookup_filename (s.file));
20938       add_AT_unsigned (die, DW_AT_call_line, s.line);
20939     }
20940 }
20941
20942
20943 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
20944    Add low_pc and high_pc attributes to the DIE for a block STMT.  */
20945
20946 static inline void
20947 add_high_low_attributes (tree stmt, dw_die_ref die)
20948 {
20949   char label[MAX_ARTIFICIAL_LABEL_BYTES];
20950
20951   if (BLOCK_FRAGMENT_CHAIN (stmt)
20952       && (dwarf_version >= 3 || !dwarf_strict))
20953     {
20954       tree chain;
20955
20956       if (inlined_function_outer_scope_p (stmt))
20957         {
20958           ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
20959                                        BLOCK_NUMBER (stmt));
20960           add_AT_lbl_id (die, DW_AT_entry_pc, label);
20961         }
20962
20963       add_AT_range_list (die, DW_AT_ranges, add_ranges (stmt));
20964
20965       chain = BLOCK_FRAGMENT_CHAIN (stmt);
20966       do
20967         {
20968           add_ranges (chain);
20969           chain = BLOCK_FRAGMENT_CHAIN (chain);
20970         }
20971       while (chain);
20972       add_ranges (NULL);
20973     }
20974   else
20975     {
20976       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
20977                                    BLOCK_NUMBER (stmt));
20978       add_AT_lbl_id (die, DW_AT_low_pc, label);
20979       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
20980                                    BLOCK_NUMBER (stmt));
20981       add_AT_lbl_id (die, DW_AT_high_pc, label);
20982     }
20983 }
20984
20985 /* Generate a DIE for a lexical block.  */
20986
20987 static void
20988 gen_lexical_block_die (tree stmt, dw_die_ref context_die, int depth)
20989 {
20990   dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
20991
20992   if (call_arg_locations)
20993     {
20994       if (VEC_length (dw_die_ref, block_map) <= BLOCK_NUMBER (stmt))
20995         VEC_safe_grow_cleared (dw_die_ref, heap, block_map,
20996                                BLOCK_NUMBER (stmt) + 1);
20997       VEC_replace (dw_die_ref, block_map, BLOCK_NUMBER (stmt), stmt_die);
20998     }
20999
21000   if (! BLOCK_ABSTRACT (stmt) && TREE_ASM_WRITTEN (stmt))
21001     add_high_low_attributes (stmt, stmt_die);
21002
21003   decls_for_scope (stmt, stmt_die, depth);
21004 }
21005
21006 /* Generate a DIE for an inlined subprogram.  */
21007
21008 static void
21009 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die, int depth)
21010 {
21011   tree decl;
21012
21013   /* The instance of function that is effectively being inlined shall not
21014      be abstract.  */
21015   gcc_assert (! BLOCK_ABSTRACT (stmt));
21016
21017   decl = block_ultimate_origin (stmt);
21018
21019   /* Emit info for the abstract instance first, if we haven't yet.  We
21020      must emit this even if the block is abstract, otherwise when we
21021      emit the block below (or elsewhere), we may end up trying to emit
21022      a die whose origin die hasn't been emitted, and crashing.  */
21023   dwarf2out_abstract_function (decl);
21024
21025   if (! BLOCK_ABSTRACT (stmt))
21026     {
21027       dw_die_ref subr_die
21028         = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
21029
21030       if (call_arg_locations)
21031         {
21032           if (VEC_length (dw_die_ref, block_map) <= BLOCK_NUMBER (stmt))
21033             VEC_safe_grow_cleared (dw_die_ref, heap, block_map,
21034                                    BLOCK_NUMBER (stmt) + 1);
21035           VEC_replace (dw_die_ref, block_map, BLOCK_NUMBER (stmt), subr_die);
21036         }
21037       add_abstract_origin_attribute (subr_die, decl);
21038       if (TREE_ASM_WRITTEN (stmt))
21039         add_high_low_attributes (stmt, subr_die);
21040       add_call_src_coords_attributes (stmt, subr_die);
21041
21042       decls_for_scope (stmt, subr_die, depth);
21043       current_function_has_inlines = 1;
21044     }
21045 }
21046
21047 /* Generate a DIE for a field in a record, or structure.  */
21048
21049 static void
21050 gen_field_die (tree decl, dw_die_ref context_die)
21051 {
21052   dw_die_ref decl_die;
21053
21054   if (TREE_TYPE (decl) == error_mark_node)
21055     return;
21056
21057   decl_die = new_die (DW_TAG_member, context_die, decl);
21058   add_name_and_src_coords_attributes (decl_die, decl);
21059   add_type_attribute (decl_die, member_declared_type (decl),
21060                       TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
21061                       context_die);
21062
21063   if (DECL_BIT_FIELD_TYPE (decl))
21064     {
21065       add_byte_size_attribute (decl_die, decl);
21066       add_bit_size_attribute (decl_die, decl);
21067       add_bit_offset_attribute (decl_die, decl);
21068     }
21069
21070   if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
21071     add_data_member_location_attribute (decl_die, decl);
21072
21073   if (DECL_ARTIFICIAL (decl))
21074     add_AT_flag (decl_die, DW_AT_artificial, 1);
21075
21076   add_accessibility_attribute (decl_die, decl);
21077
21078   /* Equate decl number to die, so that we can look up this decl later on.  */
21079   equate_decl_number_to_die (decl, decl_die);
21080 }
21081
21082 #if 0
21083 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
21084    Use modified_type_die instead.
21085    We keep this code here just in case these types of DIEs may be needed to
21086    represent certain things in other languages (e.g. Pascal) someday.  */
21087
21088 static void
21089 gen_pointer_type_die (tree type, dw_die_ref context_die)
21090 {
21091   dw_die_ref ptr_die
21092     = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
21093
21094   equate_type_number_to_die (type, ptr_die);
21095   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
21096   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
21097 }
21098
21099 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
21100    Use modified_type_die instead.
21101    We keep this code here just in case these types of DIEs may be needed to
21102    represent certain things in other languages (e.g. Pascal) someday.  */
21103
21104 static void
21105 gen_reference_type_die (tree type, dw_die_ref context_die)
21106 {
21107   dw_die_ref ref_die, scope_die = scope_die_for (type, context_die);
21108
21109   if (TYPE_REF_IS_RVALUE (type) && dwarf_version >= 4)
21110     ref_die = new_die (DW_TAG_rvalue_reference_type, scope_die, type);
21111   else
21112     ref_die = new_die (DW_TAG_reference_type, scope_die, type);
21113
21114   equate_type_number_to_die (type, ref_die);
21115   add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
21116   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
21117 }
21118 #endif
21119
21120 /* Generate a DIE for a pointer to a member type.  */
21121
21122 static void
21123 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
21124 {
21125   dw_die_ref ptr_die
21126     = new_die (DW_TAG_ptr_to_member_type,
21127                scope_die_for (type, context_die), type);
21128
21129   equate_type_number_to_die (type, ptr_die);
21130   add_AT_die_ref (ptr_die, DW_AT_containing_type,
21131                   lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
21132   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
21133 }
21134
21135 /* Generate the DIE for the compilation unit.  */
21136
21137 static dw_die_ref
21138 gen_compile_unit_die (const char *filename)
21139 {
21140   dw_die_ref die;
21141   char producer[250];
21142   const char *language_string = lang_hooks.name;
21143   int language;
21144
21145   die = new_die (DW_TAG_compile_unit, NULL, NULL);
21146
21147   if (filename)
21148     {
21149       add_name_attribute (die, filename);
21150       /* Don't add cwd for <built-in>.  */
21151       if (!IS_ABSOLUTE_PATH (filename) && filename[0] != '<')
21152         add_comp_dir_attribute (die);
21153     }
21154
21155   sprintf (producer, "%s %s", language_string, version_string);
21156
21157 #ifdef MIPS_DEBUGGING_INFO
21158   /* The MIPS/SGI compilers place the 'cc' command line options in the producer
21159      string.  The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
21160      not appear in the producer string, the debugger reaches the conclusion
21161      that the object file is stripped and has no debugging information.
21162      To get the MIPS/SGI debugger to believe that there is debugging
21163      information in the object file, we add a -g to the producer string.  */
21164   if (debug_info_level > DINFO_LEVEL_TERSE)
21165     strcat (producer, " -g");
21166 #endif
21167
21168   add_AT_string (die, DW_AT_producer, producer);
21169
21170   /* If our producer is LTO try to figure out a common language to use
21171      from the global list of translation units.  */
21172   if (strcmp (language_string, "GNU GIMPLE") == 0)
21173     {
21174       unsigned i;
21175       tree t;
21176       const char *common_lang = NULL;
21177
21178       FOR_EACH_VEC_ELT (tree, all_translation_units, i, t)
21179         {
21180           if (!TRANSLATION_UNIT_LANGUAGE (t))
21181             continue;
21182           if (!common_lang)
21183             common_lang = TRANSLATION_UNIT_LANGUAGE (t);
21184           else if (strcmp (common_lang, TRANSLATION_UNIT_LANGUAGE (t)) == 0)
21185             ;
21186           else if (strncmp (common_lang, "GNU C", 5) == 0
21187                    && strncmp (TRANSLATION_UNIT_LANGUAGE (t), "GNU C", 5) == 0)
21188             /* Mixing C and C++ is ok, use C++ in that case.  */
21189             common_lang = "GNU C++";
21190           else
21191             {
21192               /* Fall back to C.  */
21193               common_lang = NULL;
21194               break;
21195             }
21196         }
21197
21198       if (common_lang)
21199         language_string = common_lang;
21200     }
21201
21202   language = DW_LANG_C89;
21203   if (strcmp (language_string, "GNU C++") == 0)
21204     language = DW_LANG_C_plus_plus;
21205   else if (strcmp (language_string, "GNU F77") == 0)
21206     language = DW_LANG_Fortran77;
21207   else if (strcmp (language_string, "GNU Pascal") == 0)
21208     language = DW_LANG_Pascal83;
21209   else if (dwarf_version >= 3 || !dwarf_strict)
21210     {
21211       if (strcmp (language_string, "GNU Ada") == 0)
21212         language = DW_LANG_Ada95;
21213       else if (strcmp (language_string, "GNU Fortran") == 0)
21214         language = DW_LANG_Fortran95;
21215       else if (strcmp (language_string, "GNU Java") == 0)
21216         language = DW_LANG_Java;
21217       else if (strcmp (language_string, "GNU Objective-C") == 0)
21218         language = DW_LANG_ObjC;
21219       else if (strcmp (language_string, "GNU Objective-C++") == 0)
21220         language = DW_LANG_ObjC_plus_plus;
21221     }
21222
21223   add_AT_unsigned (die, DW_AT_language, language);
21224
21225   switch (language)
21226     {
21227     case DW_LANG_Fortran77:
21228     case DW_LANG_Fortran90:
21229     case DW_LANG_Fortran95:
21230       /* Fortran has case insensitive identifiers and the front-end
21231          lowercases everything.  */
21232       add_AT_unsigned (die, DW_AT_identifier_case, DW_ID_down_case);
21233       break;
21234     default:
21235       /* The default DW_ID_case_sensitive doesn't need to be specified.  */
21236       break;
21237     }
21238   return die;
21239 }
21240
21241 /* Generate the DIE for a base class.  */
21242
21243 static void
21244 gen_inheritance_die (tree binfo, tree access, dw_die_ref context_die)
21245 {
21246   dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
21247
21248   add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
21249   add_data_member_location_attribute (die, binfo);
21250
21251   if (BINFO_VIRTUAL_P (binfo))
21252     add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
21253
21254   /* In DWARF3+ the default is DW_ACCESS_private only in DW_TAG_class_type
21255      children, otherwise the default is DW_ACCESS_public.  In DWARF2
21256      the default has always been DW_ACCESS_private.  */
21257   if (access == access_public_node)
21258     {
21259       if (dwarf_version == 2
21260           || context_die->die_tag == DW_TAG_class_type)
21261       add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
21262     }
21263   else if (access == access_protected_node)
21264     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
21265   else if (dwarf_version > 2
21266            && context_die->die_tag != DW_TAG_class_type)
21267     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_private);
21268 }
21269
21270 /* Generate a DIE for a class member.  */
21271
21272 static void
21273 gen_member_die (tree type, dw_die_ref context_die)
21274 {
21275   tree member;
21276   tree binfo = TYPE_BINFO (type);
21277   dw_die_ref child;
21278
21279   /* If this is not an incomplete type, output descriptions of each of its
21280      members. Note that as we output the DIEs necessary to represent the
21281      members of this record or union type, we will also be trying to output
21282      DIEs to represent the *types* of those members. However the `type'
21283      function (above) will specifically avoid generating type DIEs for member
21284      types *within* the list of member DIEs for this (containing) type except
21285      for those types (of members) which are explicitly marked as also being
21286      members of this (containing) type themselves.  The g++ front- end can
21287      force any given type to be treated as a member of some other (containing)
21288      type by setting the TYPE_CONTEXT of the given (member) type to point to
21289      the TREE node representing the appropriate (containing) type.  */
21290
21291   /* First output info about the base classes.  */
21292   if (binfo)
21293     {
21294       VEC(tree,gc) *accesses = BINFO_BASE_ACCESSES (binfo);
21295       int i;
21296       tree base;
21297
21298       for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
21299         gen_inheritance_die (base,
21300                              (accesses ? VEC_index (tree, accesses, i)
21301                               : access_public_node), context_die);
21302     }
21303
21304   /* Now output info about the data members and type members.  */
21305   for (member = TYPE_FIELDS (type); member; member = DECL_CHAIN (member))
21306     {
21307       /* If we thought we were generating minimal debug info for TYPE
21308          and then changed our minds, some of the member declarations
21309          may have already been defined.  Don't define them again, but
21310          do put them in the right order.  */
21311
21312       child = lookup_decl_die (member);
21313       if (child)
21314         splice_child_die (context_die, child);
21315       else
21316         gen_decl_die (member, NULL, context_die);
21317     }
21318
21319   /* Now output info about the function members (if any).  */
21320   for (member = TYPE_METHODS (type); member; member = DECL_CHAIN (member))
21321     {
21322       /* Don't include clones in the member list.  */
21323       if (DECL_ABSTRACT_ORIGIN (member))
21324         continue;
21325
21326       child = lookup_decl_die (member);
21327       if (child)
21328         splice_child_die (context_die, child);
21329       else
21330         gen_decl_die (member, NULL, context_die);
21331     }
21332 }
21333
21334 /* Generate a DIE for a structure or union type.  If TYPE_DECL_SUPPRESS_DEBUG
21335    is set, we pretend that the type was never defined, so we only get the
21336    member DIEs needed by later specification DIEs.  */
21337
21338 static void
21339 gen_struct_or_union_type_die (tree type, dw_die_ref context_die,
21340                                 enum debug_info_usage usage)
21341 {
21342   dw_die_ref type_die = lookup_type_die (type);
21343   dw_die_ref scope_die = 0;
21344   int nested = 0;
21345   int complete = (TYPE_SIZE (type)
21346                   && (! TYPE_STUB_DECL (type)
21347                       || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
21348   int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
21349   complete = complete && should_emit_struct_debug (type, usage);
21350
21351   if (type_die && ! complete)
21352     return;
21353
21354   if (TYPE_CONTEXT (type) != NULL_TREE
21355       && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
21356           || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
21357     nested = 1;
21358
21359   scope_die = scope_die_for (type, context_die);
21360
21361   if (! type_die || (nested && is_cu_die (scope_die)))
21362     /* First occurrence of type or toplevel definition of nested class.  */
21363     {
21364       dw_die_ref old_die = type_die;
21365
21366       type_die = new_die (TREE_CODE (type) == RECORD_TYPE
21367                           ? record_type_tag (type) : DW_TAG_union_type,
21368                           scope_die, type);
21369       equate_type_number_to_die (type, type_die);
21370       if (old_die)
21371         add_AT_specification (type_die, old_die);
21372       else
21373         {
21374           add_name_attribute (type_die, type_tag (type));
21375           add_gnat_descriptive_type_attribute (type_die, type, context_die);
21376         }
21377     }
21378   else
21379     remove_AT (type_die, DW_AT_declaration);
21380
21381   /* Generate child dies for template paramaters.  */
21382   if (debug_info_level > DINFO_LEVEL_TERSE
21383       && COMPLETE_TYPE_P (type))
21384     schedule_generic_params_dies_gen (type);
21385
21386   /* If this type has been completed, then give it a byte_size attribute and
21387      then give a list of members.  */
21388   if (complete && !ns_decl)
21389     {
21390       /* Prevent infinite recursion in cases where the type of some member of
21391          this type is expressed in terms of this type itself.  */
21392       TREE_ASM_WRITTEN (type) = 1;
21393       add_byte_size_attribute (type_die, type);
21394       if (TYPE_STUB_DECL (type) != NULL_TREE)
21395         {
21396           add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
21397           add_accessibility_attribute (type_die, TYPE_STUB_DECL (type));
21398         }
21399
21400       /* If the first reference to this type was as the return type of an
21401          inline function, then it may not have a parent.  Fix this now.  */
21402       if (type_die->die_parent == NULL)
21403         add_child_die (scope_die, type_die);
21404
21405       push_decl_scope (type);
21406       gen_member_die (type, type_die);
21407       pop_decl_scope ();
21408
21409       /* GNU extension: Record what type our vtable lives in.  */
21410       if (TYPE_VFIELD (type))
21411         {
21412           tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
21413
21414           gen_type_die (vtype, context_die);
21415           add_AT_die_ref (type_die, DW_AT_containing_type,
21416                           lookup_type_die (vtype));
21417         }
21418     }
21419   else
21420     {
21421       add_AT_flag (type_die, DW_AT_declaration, 1);
21422
21423       /* We don't need to do this for function-local types.  */
21424       if (TYPE_STUB_DECL (type)
21425           && ! decl_function_context (TYPE_STUB_DECL (type)))
21426         VEC_safe_push (tree, gc, incomplete_types, type);
21427     }
21428
21429   if (get_AT (type_die, DW_AT_name))
21430     add_pubtype (type, type_die);
21431 }
21432
21433 /* Generate a DIE for a subroutine _type_.  */
21434
21435 static void
21436 gen_subroutine_type_die (tree type, dw_die_ref context_die)
21437 {
21438   tree return_type = TREE_TYPE (type);
21439   dw_die_ref subr_die
21440     = new_die (DW_TAG_subroutine_type,
21441                scope_die_for (type, context_die), type);
21442
21443   equate_type_number_to_die (type, subr_die);
21444   add_prototyped_attribute (subr_die, type);
21445   add_type_attribute (subr_die, return_type, 0, 0, context_die);
21446   gen_formal_types_die (type, subr_die);
21447
21448   if (get_AT (subr_die, DW_AT_name))
21449     add_pubtype (type, subr_die);
21450 }
21451
21452 /* Generate a DIE for a type definition.  */
21453
21454 static void
21455 gen_typedef_die (tree decl, dw_die_ref context_die)
21456 {
21457   dw_die_ref type_die;
21458   tree origin;
21459
21460   if (TREE_ASM_WRITTEN (decl))
21461     return;
21462
21463   TREE_ASM_WRITTEN (decl) = 1;
21464   type_die = new_die (DW_TAG_typedef, context_die, decl);
21465   origin = decl_ultimate_origin (decl);
21466   if (origin != NULL)
21467     add_abstract_origin_attribute (type_die, origin);
21468   else
21469     {
21470       tree type;
21471
21472       add_name_and_src_coords_attributes (type_die, decl);
21473       if (DECL_ORIGINAL_TYPE (decl))
21474         {
21475           type = DECL_ORIGINAL_TYPE (decl);
21476
21477           gcc_assert (type != TREE_TYPE (decl));
21478           equate_type_number_to_die (TREE_TYPE (decl), type_die);
21479         }
21480       else
21481         {
21482           type = TREE_TYPE (decl);
21483
21484           if (is_naming_typedef_decl (TYPE_NAME (type)))
21485             {
21486               /* Here, we are in the case of decl being a typedef naming
21487                  an anonymous type, e.g:
21488                      typedef struct {...} foo;
21489                  In that case TREE_TYPE (decl) is not a typedef variant
21490                  type and TYPE_NAME of the anonymous type is set to the
21491                  TYPE_DECL of the typedef. This construct is emitted by
21492                  the C++ FE.
21493
21494                  TYPE is the anonymous struct named by the typedef
21495                  DECL. As we need the DW_AT_type attribute of the
21496                  DW_TAG_typedef to point to the DIE of TYPE, let's
21497                  generate that DIE right away. add_type_attribute
21498                  called below will then pick (via lookup_type_die) that
21499                  anonymous struct DIE.  */
21500               if (!TREE_ASM_WRITTEN (type))
21501                 gen_tagged_type_die (type, context_die, DINFO_USAGE_DIR_USE);
21502
21503               /* This is a GNU Extension.  We are adding a
21504                  DW_AT_linkage_name attribute to the DIE of the
21505                  anonymous struct TYPE.  The value of that attribute
21506                  is the name of the typedef decl naming the anonymous
21507                  struct.  This greatly eases the work of consumers of
21508                  this debug info.  */
21509               add_linkage_attr (lookup_type_die (type), decl);
21510             }
21511         }
21512
21513       add_type_attribute (type_die, type, TREE_READONLY (decl),
21514                           TREE_THIS_VOLATILE (decl), context_die);
21515
21516       if (is_naming_typedef_decl (decl))
21517         /* We want that all subsequent calls to lookup_type_die with
21518            TYPE in argument yield the DW_TAG_typedef we have just
21519            created.  */
21520         equate_type_number_to_die (type, type_die);
21521
21522       add_accessibility_attribute (type_die, decl);
21523     }
21524
21525   if (DECL_ABSTRACT (decl))
21526     equate_decl_number_to_die (decl, type_die);
21527
21528   if (get_AT (type_die, DW_AT_name))
21529     add_pubtype (decl, type_die);
21530 }
21531
21532 /* Generate a DIE for a struct, class, enum or union type.  */
21533
21534 static void
21535 gen_tagged_type_die (tree type,
21536                      dw_die_ref context_die,
21537                      enum debug_info_usage usage)
21538 {
21539   int need_pop;
21540
21541   if (type == NULL_TREE
21542       || !is_tagged_type (type))
21543     return;
21544
21545   /* If this is a nested type whose containing class hasn't been written
21546      out yet, writing it out will cover this one, too.  This does not apply
21547      to instantiations of member class templates; they need to be added to
21548      the containing class as they are generated.  FIXME: This hurts the
21549      idea of combining type decls from multiple TUs, since we can't predict
21550      what set of template instantiations we'll get.  */
21551   if (TYPE_CONTEXT (type)
21552       && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
21553       && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
21554     {
21555       gen_type_die_with_usage (TYPE_CONTEXT (type), context_die, usage);
21556
21557       if (TREE_ASM_WRITTEN (type))
21558         return;
21559
21560       /* If that failed, attach ourselves to the stub.  */
21561       push_decl_scope (TYPE_CONTEXT (type));
21562       context_die = lookup_type_die (TYPE_CONTEXT (type));
21563       need_pop = 1;
21564     }
21565   else if (TYPE_CONTEXT (type) != NULL_TREE
21566            && (TREE_CODE (TYPE_CONTEXT (type)) == FUNCTION_DECL))
21567     {
21568       /* If this type is local to a function that hasn't been written
21569          out yet, use a NULL context for now; it will be fixed up in
21570          decls_for_scope.  */
21571       context_die = lookup_decl_die (TYPE_CONTEXT (type));
21572       /* A declaration DIE doesn't count; nested types need to go in the
21573          specification.  */
21574       if (context_die && is_declaration_die (context_die))
21575         context_die = NULL;
21576       need_pop = 0;
21577     }
21578   else
21579     {
21580       context_die = declare_in_namespace (type, context_die);
21581       need_pop = 0;
21582     }
21583
21584   if (TREE_CODE (type) == ENUMERAL_TYPE)
21585     {
21586       /* This might have been written out by the call to
21587          declare_in_namespace.  */
21588       if (!TREE_ASM_WRITTEN (type))
21589         gen_enumeration_type_die (type, context_die);
21590     }
21591   else
21592     gen_struct_or_union_type_die (type, context_die, usage);
21593
21594   if (need_pop)
21595     pop_decl_scope ();
21596
21597   /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
21598      it up if it is ever completed.  gen_*_type_die will set it for us
21599      when appropriate.  */
21600 }
21601
21602 /* Generate a type description DIE.  */
21603
21604 static void
21605 gen_type_die_with_usage (tree type, dw_die_ref context_die,
21606                          enum debug_info_usage usage)
21607 {
21608   struct array_descr_info info;
21609
21610   if (type == NULL_TREE || type == error_mark_node)
21611     return;
21612
21613   if (TYPE_NAME (type) != NULL_TREE
21614       && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
21615       && is_redundant_typedef (TYPE_NAME (type))
21616       && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
21617     /* The DECL of this type is a typedef we don't want to emit debug
21618        info for but we want debug info for its underlying typedef.
21619        This can happen for e.g, the injected-class-name of a C++
21620        type.  */
21621     type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
21622
21623   /* If TYPE is a typedef type variant, let's generate debug info
21624      for the parent typedef which TYPE is a type of.  */
21625   if (typedef_variant_p (type))
21626     {
21627       if (TREE_ASM_WRITTEN (type))
21628         return;
21629
21630       /* Prevent broken recursion; we can't hand off to the same type.  */
21631       gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type)) != type);
21632
21633       /* Use the DIE of the containing namespace as the parent DIE of
21634          the type description DIE we want to generate.  */
21635       if (DECL_CONTEXT (TYPE_NAME (type))
21636           && TREE_CODE (DECL_CONTEXT (TYPE_NAME (type))) == NAMESPACE_DECL)
21637         context_die = get_context_die (DECL_CONTEXT (TYPE_NAME (type)));
21638
21639       TREE_ASM_WRITTEN (type) = 1;
21640
21641       gen_decl_die (TYPE_NAME (type), NULL, context_die);
21642       return;
21643     }
21644
21645   /* If type is an anonymous tagged type named by a typedef, let's
21646      generate debug info for the typedef.  */
21647   if (is_naming_typedef_decl (TYPE_NAME (type)))
21648     {
21649       /* Use the DIE of the containing namespace as the parent DIE of
21650          the type description DIE we want to generate.  */
21651       if (DECL_CONTEXT (TYPE_NAME (type))
21652           && TREE_CODE (DECL_CONTEXT (TYPE_NAME (type))) == NAMESPACE_DECL)
21653         context_die = get_context_die (DECL_CONTEXT (TYPE_NAME (type)));
21654       
21655       gen_decl_die (TYPE_NAME (type), NULL, context_die);
21656       return;
21657     }
21658
21659   /* If this is an array type with hidden descriptor, handle it first.  */
21660   if (!TREE_ASM_WRITTEN (type)
21661       && lang_hooks.types.get_array_descr_info
21662       && lang_hooks.types.get_array_descr_info (type, &info)
21663       && (dwarf_version >= 3 || !dwarf_strict))
21664     {
21665       gen_descr_array_type_die (type, &info, context_die);
21666       TREE_ASM_WRITTEN (type) = 1;
21667       return;
21668     }
21669
21670   /* We are going to output a DIE to represent the unqualified version
21671      of this type (i.e. without any const or volatile qualifiers) so
21672      get the main variant (i.e. the unqualified version) of this type
21673      now.  (Vectors are special because the debugging info is in the
21674      cloned type itself).  */
21675   if (TREE_CODE (type) != VECTOR_TYPE)
21676     type = type_main_variant (type);
21677
21678   if (TREE_ASM_WRITTEN (type))
21679     return;
21680
21681   switch (TREE_CODE (type))
21682     {
21683     case ERROR_MARK:
21684       break;
21685
21686     case POINTER_TYPE:
21687     case REFERENCE_TYPE:
21688       /* We must set TREE_ASM_WRITTEN in case this is a recursive type.  This
21689          ensures that the gen_type_die recursion will terminate even if the
21690          type is recursive.  Recursive types are possible in Ada.  */
21691       /* ??? We could perhaps do this for all types before the switch
21692          statement.  */
21693       TREE_ASM_WRITTEN (type) = 1;
21694
21695       /* For these types, all that is required is that we output a DIE (or a
21696          set of DIEs) to represent the "basis" type.  */
21697       gen_type_die_with_usage (TREE_TYPE (type), context_die,
21698                                 DINFO_USAGE_IND_USE);
21699       break;
21700
21701     case OFFSET_TYPE:
21702       /* This code is used for C++ pointer-to-data-member types.
21703          Output a description of the relevant class type.  */
21704       gen_type_die_with_usage (TYPE_OFFSET_BASETYPE (type), context_die,
21705                                         DINFO_USAGE_IND_USE);
21706
21707       /* Output a description of the type of the object pointed to.  */
21708       gen_type_die_with_usage (TREE_TYPE (type), context_die,
21709                                         DINFO_USAGE_IND_USE);
21710
21711       /* Now output a DIE to represent this pointer-to-data-member type
21712          itself.  */
21713       gen_ptr_to_mbr_type_die (type, context_die);
21714       break;
21715
21716     case FUNCTION_TYPE:
21717       /* Force out return type (in case it wasn't forced out already).  */
21718       gen_type_die_with_usage (TREE_TYPE (type), context_die,
21719                                         DINFO_USAGE_DIR_USE);
21720       gen_subroutine_type_die (type, context_die);
21721       break;
21722
21723     case METHOD_TYPE:
21724       /* Force out return type (in case it wasn't forced out already).  */
21725       gen_type_die_with_usage (TREE_TYPE (type), context_die,
21726                                         DINFO_USAGE_DIR_USE);
21727       gen_subroutine_type_die (type, context_die);
21728       break;
21729
21730     case ARRAY_TYPE:
21731       gen_array_type_die (type, context_die);
21732       break;
21733
21734     case VECTOR_TYPE:
21735       gen_array_type_die (type, context_die);
21736       break;
21737
21738     case ENUMERAL_TYPE:
21739     case RECORD_TYPE:
21740     case UNION_TYPE:
21741     case QUAL_UNION_TYPE:
21742       gen_tagged_type_die (type, context_die, usage);
21743       return;
21744
21745     case VOID_TYPE:
21746     case INTEGER_TYPE:
21747     case REAL_TYPE:
21748     case FIXED_POINT_TYPE:
21749     case COMPLEX_TYPE:
21750     case BOOLEAN_TYPE:
21751       /* No DIEs needed for fundamental types.  */
21752       break;
21753
21754     case NULLPTR_TYPE:
21755     case LANG_TYPE:
21756       /* Just use DW_TAG_unspecified_type.  */
21757       {
21758         dw_die_ref type_die = lookup_type_die (type);
21759         if (type_die == NULL)
21760           {
21761             tree name = TYPE_NAME (type);
21762             if (TREE_CODE (name) == TYPE_DECL)
21763               name = DECL_NAME (name);
21764             type_die = new_die (DW_TAG_unspecified_type, comp_unit_die (), type);
21765             add_name_attribute (type_die, IDENTIFIER_POINTER (name));
21766             equate_type_number_to_die (type, type_die);
21767           }
21768       }
21769       break;
21770
21771     default:
21772       gcc_unreachable ();
21773     }
21774
21775   TREE_ASM_WRITTEN (type) = 1;
21776 }
21777
21778 static void
21779 gen_type_die (tree type, dw_die_ref context_die)
21780 {
21781   gen_type_die_with_usage (type, context_die, DINFO_USAGE_DIR_USE);
21782 }
21783
21784 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
21785    things which are local to the given block.  */
21786
21787 static void
21788 gen_block_die (tree stmt, dw_die_ref context_die, int depth)
21789 {
21790   int must_output_die = 0;
21791   bool inlined_func;
21792
21793   /* Ignore blocks that are NULL.  */
21794   if (stmt == NULL_TREE)
21795     return;
21796
21797   inlined_func = inlined_function_outer_scope_p (stmt);
21798
21799   /* If the block is one fragment of a non-contiguous block, do not
21800      process the variables, since they will have been done by the
21801      origin block.  Do process subblocks.  */
21802   if (BLOCK_FRAGMENT_ORIGIN (stmt))
21803     {
21804       tree sub;
21805
21806       for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
21807         gen_block_die (sub, context_die, depth + 1);
21808
21809       return;
21810     }
21811
21812   /* Determine if we need to output any Dwarf DIEs at all to represent this
21813      block.  */
21814   if (inlined_func)
21815     /* The outer scopes for inlinings *must* always be represented.  We
21816        generate DW_TAG_inlined_subroutine DIEs for them.  (See below.) */
21817     must_output_die = 1;
21818   else
21819     {
21820       /* Determine if this block directly contains any "significant"
21821          local declarations which we will need to output DIEs for.  */
21822       if (debug_info_level > DINFO_LEVEL_TERSE)
21823         /* We are not in terse mode so *any* local declaration counts
21824            as being a "significant" one.  */
21825         must_output_die = ((BLOCK_VARS (stmt) != NULL
21826                             || BLOCK_NUM_NONLOCALIZED_VARS (stmt))
21827                            && (TREE_USED (stmt)
21828                                || TREE_ASM_WRITTEN (stmt)
21829                                || BLOCK_ABSTRACT (stmt)));
21830       else if ((TREE_USED (stmt)
21831                 || TREE_ASM_WRITTEN (stmt)
21832                 || BLOCK_ABSTRACT (stmt))
21833                && !dwarf2out_ignore_block (stmt))
21834         must_output_die = 1;
21835     }
21836
21837   /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
21838      DIE for any block which contains no significant local declarations at
21839      all.  Rather, in such cases we just call `decls_for_scope' so that any
21840      needed Dwarf info for any sub-blocks will get properly generated. Note
21841      that in terse mode, our definition of what constitutes a "significant"
21842      local declaration gets restricted to include only inlined function
21843      instances and local (nested) function definitions.  */
21844   if (must_output_die)
21845     {
21846       if (inlined_func)
21847         {
21848           /* If STMT block is abstract, that means we have been called
21849              indirectly from dwarf2out_abstract_function.
21850              That function rightfully marks the descendent blocks (of
21851              the abstract function it is dealing with) as being abstract,
21852              precisely to prevent us from emitting any
21853              DW_TAG_inlined_subroutine DIE as a descendent
21854              of an abstract function instance. So in that case, we should
21855              not call gen_inlined_subroutine_die.
21856
21857              Later though, when cgraph asks dwarf2out to emit info
21858              for the concrete instance of the function decl into which
21859              the concrete instance of STMT got inlined, the later will lead
21860              to the generation of a DW_TAG_inlined_subroutine DIE.  */
21861           if (! BLOCK_ABSTRACT (stmt))
21862             gen_inlined_subroutine_die (stmt, context_die, depth);
21863         }
21864       else
21865         gen_lexical_block_die (stmt, context_die, depth);
21866     }
21867   else
21868     decls_for_scope (stmt, context_die, depth);
21869 }
21870
21871 /* Process variable DECL (or variable with origin ORIGIN) within
21872    block STMT and add it to CONTEXT_DIE.  */
21873 static void
21874 process_scope_var (tree stmt, tree decl, tree origin, dw_die_ref context_die)
21875 {
21876   dw_die_ref die;
21877   tree decl_or_origin = decl ? decl : origin;
21878
21879   if (TREE_CODE (decl_or_origin) == FUNCTION_DECL)
21880     die = lookup_decl_die (decl_or_origin);
21881   else if (TREE_CODE (decl_or_origin) == TYPE_DECL
21882            && TYPE_DECL_IS_STUB (decl_or_origin))
21883     die = lookup_type_die (TREE_TYPE (decl_or_origin));
21884   else
21885     die = NULL;
21886
21887   if (die != NULL && die->die_parent == NULL)
21888     add_child_die (context_die, die);
21889   else if (TREE_CODE (decl_or_origin) == IMPORTED_DECL)
21890     dwarf2out_imported_module_or_decl_1 (decl_or_origin, DECL_NAME (decl_or_origin),
21891                                          stmt, context_die);
21892   else
21893     gen_decl_die (decl, origin, context_die);
21894 }
21895
21896 /* Generate all of the decls declared within a given scope and (recursively)
21897    all of its sub-blocks.  */
21898
21899 static void
21900 decls_for_scope (tree stmt, dw_die_ref context_die, int depth)
21901 {
21902   tree decl;
21903   unsigned int i;
21904   tree subblocks;
21905
21906   /* Ignore NULL blocks.  */
21907   if (stmt == NULL_TREE)
21908     return;
21909
21910   /* Output the DIEs to represent all of the data objects and typedefs
21911      declared directly within this block but not within any nested
21912      sub-blocks.  Also, nested function and tag DIEs have been
21913      generated with a parent of NULL; fix that up now.  */
21914   for (decl = BLOCK_VARS (stmt); decl != NULL; decl = DECL_CHAIN (decl))
21915     process_scope_var (stmt, decl, NULL_TREE, context_die);
21916   for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (stmt); i++)
21917     process_scope_var (stmt, NULL, BLOCK_NONLOCALIZED_VAR (stmt, i),
21918                        context_die);
21919
21920   /* If we're at -g1, we're not interested in subblocks.  */
21921   if (debug_info_level <= DINFO_LEVEL_TERSE)
21922     return;
21923
21924   /* Output the DIEs to represent all sub-blocks (and the items declared
21925      therein) of this block.  */
21926   for (subblocks = BLOCK_SUBBLOCKS (stmt);
21927        subblocks != NULL;
21928        subblocks = BLOCK_CHAIN (subblocks))
21929     gen_block_die (subblocks, context_die, depth + 1);
21930 }
21931
21932 /* Is this a typedef we can avoid emitting?  */
21933
21934 static inline int
21935 is_redundant_typedef (const_tree decl)
21936 {
21937   if (TYPE_DECL_IS_STUB (decl))
21938     return 1;
21939
21940   if (DECL_ARTIFICIAL (decl)
21941       && DECL_CONTEXT (decl)
21942       && is_tagged_type (DECL_CONTEXT (decl))
21943       && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
21944       && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
21945     /* Also ignore the artificial member typedef for the class name.  */
21946     return 1;
21947
21948   return 0;
21949 }
21950
21951 /* Return TRUE if TYPE is a typedef that names a type for linkage
21952    purposes. This kind of typedefs is produced by the C++ FE for
21953    constructs like:
21954
21955    typedef struct {...} foo;
21956
21957    In that case, there is no typedef variant type produced for foo.
21958    Rather, the TREE_TYPE of the TYPE_DECL of foo is the anonymous
21959    struct type.  */
21960
21961 static bool
21962 is_naming_typedef_decl (const_tree decl)
21963 {
21964   if (decl == NULL_TREE
21965       || TREE_CODE (decl) != TYPE_DECL
21966       || !is_tagged_type (TREE_TYPE (decl))
21967       || DECL_IS_BUILTIN (decl)
21968       || is_redundant_typedef (decl)
21969       /* It looks like Ada produces TYPE_DECLs that are very similar
21970          to C++ naming typedefs but that have different
21971          semantics. Let's be specific to c++ for now.  */
21972       || !is_cxx ())
21973     return FALSE;
21974
21975   return (DECL_ORIGINAL_TYPE (decl) == NULL_TREE
21976           && TYPE_NAME (TREE_TYPE (decl)) == decl
21977           && (TYPE_STUB_DECL (TREE_TYPE (decl))
21978               != TYPE_NAME (TREE_TYPE (decl))));
21979 }
21980
21981 /* Returns the DIE for a context.  */
21982
21983 static inline dw_die_ref
21984 get_context_die (tree context)
21985 {
21986   if (context)
21987     {
21988       /* Find die that represents this context.  */
21989       if (TYPE_P (context))
21990         {
21991           context = TYPE_MAIN_VARIANT (context);
21992           return strip_naming_typedef (context, force_type_die (context));
21993         }
21994       else
21995         return force_decl_die (context);
21996     }
21997   return comp_unit_die ();
21998 }
21999
22000 /* Returns the DIE for decl.  A DIE will always be returned.  */
22001
22002 static dw_die_ref
22003 force_decl_die (tree decl)
22004 {
22005   dw_die_ref decl_die;
22006   unsigned saved_external_flag;
22007   tree save_fn = NULL_TREE;
22008   decl_die = lookup_decl_die (decl);
22009   if (!decl_die)
22010     {
22011       dw_die_ref context_die = get_context_die (DECL_CONTEXT (decl));
22012
22013       decl_die = lookup_decl_die (decl);
22014       if (decl_die)
22015         return decl_die;
22016
22017       switch (TREE_CODE (decl))
22018         {
22019         case FUNCTION_DECL:
22020           /* Clear current_function_decl, so that gen_subprogram_die thinks
22021              that this is a declaration. At this point, we just want to force
22022              declaration die.  */
22023           save_fn = current_function_decl;
22024           current_function_decl = NULL_TREE;
22025           gen_subprogram_die (decl, context_die);
22026           current_function_decl = save_fn;
22027           break;
22028
22029         case VAR_DECL:
22030           /* Set external flag to force declaration die. Restore it after
22031            gen_decl_die() call.  */
22032           saved_external_flag = DECL_EXTERNAL (decl);
22033           DECL_EXTERNAL (decl) = 1;
22034           gen_decl_die (decl, NULL, context_die);
22035           DECL_EXTERNAL (decl) = saved_external_flag;
22036           break;
22037
22038         case NAMESPACE_DECL:
22039           if (dwarf_version >= 3 || !dwarf_strict)
22040             dwarf2out_decl (decl);
22041           else
22042             /* DWARF2 has neither DW_TAG_module, nor DW_TAG_namespace.  */
22043             decl_die = comp_unit_die ();
22044           break;
22045
22046         case TRANSLATION_UNIT_DECL:
22047           decl_die = comp_unit_die ();
22048           break;
22049
22050         default:
22051           gcc_unreachable ();
22052         }
22053
22054       /* We should be able to find the DIE now.  */
22055       if (!decl_die)
22056         decl_die = lookup_decl_die (decl);
22057       gcc_assert (decl_die);
22058     }
22059
22060   return decl_die;
22061 }
22062
22063 /* Returns the DIE for TYPE, that must not be a base type.  A DIE is
22064    always returned.  */
22065
22066 static dw_die_ref
22067 force_type_die (tree type)
22068 {
22069   dw_die_ref type_die;
22070
22071   type_die = lookup_type_die (type);
22072   if (!type_die)
22073     {
22074       dw_die_ref context_die = get_context_die (TYPE_CONTEXT (type));
22075
22076       type_die = modified_type_die (type, TYPE_READONLY (type),
22077                                     TYPE_VOLATILE (type), context_die);
22078       gcc_assert (type_die);
22079     }
22080   return type_die;
22081 }
22082
22083 /* Force out any required namespaces to be able to output DECL,
22084    and return the new context_die for it, if it's changed.  */
22085
22086 static dw_die_ref
22087 setup_namespace_context (tree thing, dw_die_ref context_die)
22088 {
22089   tree context = (DECL_P (thing)
22090                   ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
22091   if (context && TREE_CODE (context) == NAMESPACE_DECL)
22092     /* Force out the namespace.  */
22093     context_die = force_decl_die (context);
22094
22095   return context_die;
22096 }
22097
22098 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
22099    type) within its namespace, if appropriate.
22100
22101    For compatibility with older debuggers, namespace DIEs only contain
22102    declarations; all definitions are emitted at CU scope.  */
22103
22104 static dw_die_ref
22105 declare_in_namespace (tree thing, dw_die_ref context_die)
22106 {
22107   dw_die_ref ns_context;
22108
22109   if (debug_info_level <= DINFO_LEVEL_TERSE)
22110     return context_die;
22111
22112   /* If this decl is from an inlined function, then don't try to emit it in its
22113      namespace, as we will get confused.  It would have already been emitted
22114      when the abstract instance of the inline function was emitted anyways.  */
22115   if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
22116     return context_die;
22117
22118   ns_context = setup_namespace_context (thing, context_die);
22119
22120   if (ns_context != context_die)
22121     {
22122       if (is_fortran ())
22123         return ns_context;
22124       if (DECL_P (thing))
22125         gen_decl_die (thing, NULL, ns_context);
22126       else
22127         gen_type_die (thing, ns_context);
22128     }
22129   return context_die;
22130 }
22131
22132 /* Generate a DIE for a namespace or namespace alias.  */
22133
22134 static void
22135 gen_namespace_die (tree decl, dw_die_ref context_die)
22136 {
22137   dw_die_ref namespace_die;
22138
22139   /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
22140      they are an alias of.  */
22141   if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
22142     {
22143       /* Output a real namespace or module.  */
22144       context_die = setup_namespace_context (decl, comp_unit_die ());
22145       namespace_die = new_die (is_fortran ()
22146                                ? DW_TAG_module : DW_TAG_namespace,
22147                                context_die, decl);
22148       /* For Fortran modules defined in different CU don't add src coords.  */
22149       if (namespace_die->die_tag == DW_TAG_module && DECL_EXTERNAL (decl))
22150         {
22151           const char *name = dwarf2_name (decl, 0);
22152           if (name)
22153             add_name_attribute (namespace_die, name);
22154         }
22155       else
22156         add_name_and_src_coords_attributes (namespace_die, decl);
22157       if (DECL_EXTERNAL (decl))
22158         add_AT_flag (namespace_die, DW_AT_declaration, 1);
22159       equate_decl_number_to_die (decl, namespace_die);
22160     }
22161   else
22162     {
22163       /* Output a namespace alias.  */
22164
22165       /* Force out the namespace we are an alias of, if necessary.  */
22166       dw_die_ref origin_die
22167         = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
22168
22169       if (DECL_FILE_SCOPE_P (decl)
22170           || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
22171         context_die = setup_namespace_context (decl, comp_unit_die ());
22172       /* Now create the namespace alias DIE.  */
22173       namespace_die = new_die (DW_TAG_imported_declaration, context_die, decl);
22174       add_name_and_src_coords_attributes (namespace_die, decl);
22175       add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
22176       equate_decl_number_to_die (decl, namespace_die);
22177     }
22178 }
22179
22180 /* Generate Dwarf debug information for a decl described by DECL.
22181    The return value is currently only meaningful for PARM_DECLs,
22182    for all other decls it returns NULL.  */
22183
22184 static dw_die_ref
22185 gen_decl_die (tree decl, tree origin, dw_die_ref context_die)
22186 {
22187   tree decl_or_origin = decl ? decl : origin;
22188   tree class_origin = NULL, ultimate_origin;
22189
22190   if (DECL_P (decl_or_origin) && DECL_IGNORED_P (decl_or_origin))
22191     return NULL;
22192
22193   switch (TREE_CODE (decl_or_origin))
22194     {
22195     case ERROR_MARK:
22196       break;
22197
22198     case CONST_DECL:
22199       if (!is_fortran () && !is_ada ())
22200         {
22201           /* The individual enumerators of an enum type get output when we output
22202              the Dwarf representation of the relevant enum type itself.  */
22203           break;
22204         }
22205
22206       /* Emit its type.  */
22207       gen_type_die (TREE_TYPE (decl), context_die);
22208
22209       /* And its containing namespace.  */
22210       context_die = declare_in_namespace (decl, context_die);
22211
22212       gen_const_die (decl, context_die);
22213       break;
22214
22215     case FUNCTION_DECL:
22216       /* Don't output any DIEs to represent mere function declarations,
22217          unless they are class members or explicit block externs.  */
22218       if (DECL_INITIAL (decl_or_origin) == NULL_TREE
22219           && DECL_FILE_SCOPE_P (decl_or_origin)
22220           && (current_function_decl == NULL_TREE
22221               || DECL_ARTIFICIAL (decl_or_origin)))
22222         break;
22223
22224 #if 0
22225       /* FIXME */
22226       /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
22227          on local redeclarations of global functions.  That seems broken.  */
22228       if (current_function_decl != decl)
22229         /* This is only a declaration.  */;
22230 #endif
22231
22232       /* If we're emitting a clone, emit info for the abstract instance.  */
22233       if (origin || DECL_ORIGIN (decl) != decl)
22234         dwarf2out_abstract_function (origin
22235                                      ? DECL_ORIGIN (origin)
22236                                      : DECL_ABSTRACT_ORIGIN (decl));
22237
22238       /* If we're emitting an out-of-line copy of an inline function,
22239          emit info for the abstract instance and set up to refer to it.  */
22240       else if (cgraph_function_possibly_inlined_p (decl)
22241                && ! DECL_ABSTRACT (decl)
22242                && ! class_or_namespace_scope_p (context_die)
22243                /* dwarf2out_abstract_function won't emit a die if this is just
22244                   a declaration.  We must avoid setting DECL_ABSTRACT_ORIGIN in
22245                   that case, because that works only if we have a die.  */
22246                && DECL_INITIAL (decl) != NULL_TREE)
22247         {
22248           dwarf2out_abstract_function (decl);
22249           set_decl_origin_self (decl);
22250         }
22251
22252       /* Otherwise we're emitting the primary DIE for this decl.  */
22253       else if (debug_info_level > DINFO_LEVEL_TERSE)
22254         {
22255           /* Before we describe the FUNCTION_DECL itself, make sure that we
22256              have its containing type.  */
22257           if (!origin)
22258             origin = decl_class_context (decl);
22259           if (origin != NULL_TREE)
22260             gen_type_die (origin, context_die);
22261
22262           /* And its return type.  */
22263           gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
22264
22265           /* And its virtual context.  */
22266           if (DECL_VINDEX (decl) != NULL_TREE)
22267             gen_type_die (DECL_CONTEXT (decl), context_die);
22268
22269           /* Make sure we have a member DIE for decl.  */
22270           if (origin != NULL_TREE)
22271             gen_type_die_for_member (origin, decl, context_die);
22272
22273           /* And its containing namespace.  */
22274           context_die = declare_in_namespace (decl, context_die);
22275         }
22276
22277       /* Now output a DIE to represent the function itself.  */
22278       if (decl)
22279         gen_subprogram_die (decl, context_die);
22280       break;
22281
22282     case TYPE_DECL:
22283       /* If we are in terse mode, don't generate any DIEs to represent any
22284          actual typedefs.  */
22285       if (debug_info_level <= DINFO_LEVEL_TERSE)
22286         break;
22287
22288       /* In the special case of a TYPE_DECL node representing the declaration
22289          of some type tag, if the given TYPE_DECL is marked as having been
22290          instantiated from some other (original) TYPE_DECL node (e.g. one which
22291          was generated within the original definition of an inline function) we
22292          used to generate a special (abbreviated) DW_TAG_structure_type,
22293          DW_TAG_union_type, or DW_TAG_enumeration_type DIE here.  But nothing
22294          should be actually referencing those DIEs, as variable DIEs with that
22295          type would be emitted already in the abstract origin, so it was always
22296          removed during unused type prunning.  Don't add anything in this
22297          case.  */
22298       if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
22299         break;
22300
22301       if (is_redundant_typedef (decl))
22302         gen_type_die (TREE_TYPE (decl), context_die);
22303       else
22304         /* Output a DIE to represent the typedef itself.  */
22305         gen_typedef_die (decl, context_die);
22306       break;
22307
22308     case LABEL_DECL:
22309       if (debug_info_level >= DINFO_LEVEL_NORMAL)
22310         gen_label_die (decl, context_die);
22311       break;
22312
22313     case VAR_DECL:
22314     case RESULT_DECL:
22315       /* If we are in terse mode, don't generate any DIEs to represent any
22316          variable declarations or definitions.  */
22317       if (debug_info_level <= DINFO_LEVEL_TERSE)
22318         break;
22319
22320       /* Output any DIEs that are needed to specify the type of this data
22321          object.  */
22322       if (decl_by_reference_p (decl_or_origin))
22323         gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
22324       else
22325         gen_type_die (TREE_TYPE (decl_or_origin), context_die);
22326
22327       /* And its containing type.  */
22328       class_origin = decl_class_context (decl_or_origin);
22329       if (class_origin != NULL_TREE)
22330         gen_type_die_for_member (class_origin, decl_or_origin, context_die);
22331
22332       /* And its containing namespace.  */
22333       context_die = declare_in_namespace (decl_or_origin, context_die);
22334
22335       /* Now output the DIE to represent the data object itself.  This gets
22336          complicated because of the possibility that the VAR_DECL really
22337          represents an inlined instance of a formal parameter for an inline
22338          function.  */
22339       ultimate_origin = decl_ultimate_origin (decl_or_origin);
22340       if (ultimate_origin != NULL_TREE
22341           && TREE_CODE (ultimate_origin) == PARM_DECL)
22342         gen_formal_parameter_die (decl, origin,
22343                                   true /* Emit name attribute.  */,
22344                                   context_die);
22345       else
22346         gen_variable_die (decl, origin, context_die);
22347       break;
22348
22349     case FIELD_DECL:
22350       /* Ignore the nameless fields that are used to skip bits but handle C++
22351          anonymous unions and structs.  */
22352       if (DECL_NAME (decl) != NULL_TREE
22353           || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
22354           || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
22355         {
22356           gen_type_die (member_declared_type (decl), context_die);
22357           gen_field_die (decl, context_die);
22358         }
22359       break;
22360
22361     case PARM_DECL:
22362       if (DECL_BY_REFERENCE (decl_or_origin))
22363         gen_type_die (TREE_TYPE (TREE_TYPE (decl_or_origin)), context_die);
22364       else
22365         gen_type_die (TREE_TYPE (decl_or_origin), context_die);
22366       return gen_formal_parameter_die (decl, origin,
22367                                        true /* Emit name attribute.  */,
22368                                        context_die);
22369
22370     case NAMESPACE_DECL:
22371     case IMPORTED_DECL:
22372       if (dwarf_version >= 3 || !dwarf_strict)
22373         gen_namespace_die (decl, context_die);
22374       break;
22375
22376     default:
22377       /* Probably some frontend-internal decl.  Assume we don't care.  */
22378       gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
22379       break;
22380     }
22381
22382   return NULL;
22383 }
22384 \f
22385 /* Output debug information for global decl DECL.  Called from toplev.c after
22386    compilation proper has finished.  */
22387
22388 static void
22389 dwarf2out_global_decl (tree decl)
22390 {
22391   /* Output DWARF2 information for file-scope tentative data object
22392      declarations, file-scope (extern) function declarations (which
22393      had no corresponding body) and file-scope tagged type declarations
22394      and definitions which have not yet been forced out.  */
22395   if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
22396     dwarf2out_decl (decl);
22397 }
22398
22399 /* Output debug information for type decl DECL.  Called from toplev.c
22400    and from language front ends (to record built-in types).  */
22401 static void
22402 dwarf2out_type_decl (tree decl, int local)
22403 {
22404   if (!local)
22405     dwarf2out_decl (decl);
22406 }
22407
22408 /* Output debug information for imported module or decl DECL.
22409    NAME is non-NULL name in the lexical block if the decl has been renamed.
22410    LEXICAL_BLOCK is the lexical block (which TREE_CODE is a BLOCK)
22411    that DECL belongs to.
22412    LEXICAL_BLOCK_DIE is the DIE of LEXICAL_BLOCK.  */
22413 static void
22414 dwarf2out_imported_module_or_decl_1 (tree decl,
22415                                      tree name,
22416                                      tree lexical_block,
22417                                      dw_die_ref lexical_block_die)
22418 {
22419   expanded_location xloc;
22420   dw_die_ref imported_die = NULL;
22421   dw_die_ref at_import_die;
22422
22423   if (TREE_CODE (decl) == IMPORTED_DECL)
22424     {
22425       xloc = expand_location (DECL_SOURCE_LOCATION (decl));
22426       decl = IMPORTED_DECL_ASSOCIATED_DECL (decl);
22427       gcc_assert (decl);
22428     }
22429   else
22430     xloc = expand_location (input_location);
22431
22432   if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
22433     {
22434       at_import_die = force_type_die (TREE_TYPE (decl));
22435       /* For namespace N { typedef void T; } using N::T; base_type_die
22436          returns NULL, but DW_TAG_imported_declaration requires
22437          the DW_AT_import tag.  Force creation of DW_TAG_typedef.  */
22438       if (!at_import_die)
22439         {
22440           gcc_assert (TREE_CODE (decl) == TYPE_DECL);
22441           gen_typedef_die (decl, get_context_die (DECL_CONTEXT (decl)));
22442           at_import_die = lookup_type_die (TREE_TYPE (decl));
22443           gcc_assert (at_import_die);
22444         }
22445     }
22446   else
22447     {
22448       at_import_die = lookup_decl_die (decl);
22449       if (!at_import_die)
22450         {
22451           /* If we're trying to avoid duplicate debug info, we may not have
22452              emitted the member decl for this field.  Emit it now.  */
22453           if (TREE_CODE (decl) == FIELD_DECL)
22454             {
22455               tree type = DECL_CONTEXT (decl);
22456
22457               if (TYPE_CONTEXT (type)
22458                   && TYPE_P (TYPE_CONTEXT (type))
22459                   && !should_emit_struct_debug (TYPE_CONTEXT (type),
22460                                                 DINFO_USAGE_DIR_USE))
22461                 return;
22462               gen_type_die_for_member (type, decl,
22463                                        get_context_die (TYPE_CONTEXT (type)));
22464             }
22465           at_import_die = force_decl_die (decl);
22466         }
22467     }
22468
22469   if (TREE_CODE (decl) == NAMESPACE_DECL)
22470     {
22471       if (dwarf_version >= 3 || !dwarf_strict)
22472         imported_die = new_die (DW_TAG_imported_module,
22473                                 lexical_block_die,
22474                                 lexical_block);
22475       else
22476         return;
22477     }
22478   else
22479     imported_die = new_die (DW_TAG_imported_declaration,
22480                             lexical_block_die,
22481                             lexical_block);
22482
22483   add_AT_file (imported_die, DW_AT_decl_file, lookup_filename (xloc.file));
22484   add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
22485   if (name)
22486     add_AT_string (imported_die, DW_AT_name,
22487                    IDENTIFIER_POINTER (name));
22488   add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
22489 }
22490
22491 /* Output debug information for imported module or decl DECL.
22492    NAME is non-NULL name in context if the decl has been renamed.
22493    CHILD is true if decl is one of the renamed decls as part of
22494    importing whole module.  */
22495
22496 static void
22497 dwarf2out_imported_module_or_decl (tree decl, tree name, tree context,
22498                                    bool child)
22499 {
22500   /* dw_die_ref at_import_die;  */
22501   dw_die_ref scope_die;
22502
22503   if (debug_info_level <= DINFO_LEVEL_TERSE)
22504     return;
22505
22506   gcc_assert (decl);
22507
22508   /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
22509      We need decl DIE for reference and scope die. First, get DIE for the decl
22510      itself.  */
22511
22512   /* Get the scope die for decl context. Use comp_unit_die for global module
22513      or decl. If die is not found for non globals, force new die.  */
22514   if (context
22515       && TYPE_P (context)
22516       && !should_emit_struct_debug (context, DINFO_USAGE_DIR_USE))
22517     return;
22518
22519   if (!(dwarf_version >= 3 || !dwarf_strict))
22520     return;
22521
22522   scope_die = get_context_die (context);
22523
22524   if (child)
22525     {
22526       gcc_assert (scope_die->die_child);
22527       gcc_assert (scope_die->die_child->die_tag == DW_TAG_imported_module);
22528       gcc_assert (TREE_CODE (decl) != NAMESPACE_DECL);
22529       scope_die = scope_die->die_child;
22530     }
22531
22532   /* OK, now we have DIEs for decl as well as scope. Emit imported die.  */
22533   dwarf2out_imported_module_or_decl_1 (decl, name, context, scope_die);
22534
22535 }
22536
22537 /* Write the debugging output for DECL.  */
22538
22539 void
22540 dwarf2out_decl (tree decl)
22541 {
22542   dw_die_ref context_die = comp_unit_die ();
22543
22544   switch (TREE_CODE (decl))
22545     {
22546     case ERROR_MARK:
22547       return;
22548
22549     case FUNCTION_DECL:
22550       /* What we would really like to do here is to filter out all mere
22551          file-scope declarations of file-scope functions which are never
22552          referenced later within this translation unit (and keep all of ones
22553          that *are* referenced later on) but we aren't clairvoyant, so we have
22554          no idea which functions will be referenced in the future (i.e. later
22555          on within the current translation unit). So here we just ignore all
22556          file-scope function declarations which are not also definitions.  If
22557          and when the debugger needs to know something about these functions,
22558          it will have to hunt around and find the DWARF information associated
22559          with the definition of the function.
22560
22561          We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
22562          nodes represent definitions and which ones represent mere
22563          declarations.  We have to check DECL_INITIAL instead. That's because
22564          the C front-end supports some weird semantics for "extern inline"
22565          function definitions.  These can get inlined within the current
22566          translation unit (and thus, we need to generate Dwarf info for their
22567          abstract instances so that the Dwarf info for the concrete inlined
22568          instances can have something to refer to) but the compiler never
22569          generates any out-of-lines instances of such things (despite the fact
22570          that they *are* definitions).
22571
22572          The important point is that the C front-end marks these "extern
22573          inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
22574          them anyway. Note that the C++ front-end also plays some similar games
22575          for inline function definitions appearing within include files which
22576          also contain `#pragma interface' pragmas.  */
22577       if (DECL_INITIAL (decl) == NULL_TREE)
22578         return;
22579
22580       /* If we're a nested function, initially use a parent of NULL; if we're
22581          a plain function, this will be fixed up in decls_for_scope.  If
22582          we're a method, it will be ignored, since we already have a DIE.  */
22583       if (decl_function_context (decl)
22584           /* But if we're in terse mode, we don't care about scope.  */
22585           && debug_info_level > DINFO_LEVEL_TERSE)
22586         context_die = NULL;
22587       break;
22588
22589     case VAR_DECL:
22590       /* Ignore this VAR_DECL if it refers to a file-scope extern data object
22591          declaration and if the declaration was never even referenced from
22592          within this entire compilation unit.  We suppress these DIEs in
22593          order to save space in the .debug section (by eliminating entries
22594          which are probably useless).  Note that we must not suppress
22595          block-local extern declarations (whether used or not) because that
22596          would screw-up the debugger's name lookup mechanism and cause it to
22597          miss things which really ought to be in scope at a given point.  */
22598       if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
22599         return;
22600
22601       /* For local statics lookup proper context die.  */
22602       if (TREE_STATIC (decl) && decl_function_context (decl))
22603         context_die = lookup_decl_die (DECL_CONTEXT (decl));
22604
22605       /* If we are in terse mode, don't generate any DIEs to represent any
22606          variable declarations or definitions.  */
22607       if (debug_info_level <= DINFO_LEVEL_TERSE)
22608         return;
22609       break;
22610
22611     case CONST_DECL:
22612       if (debug_info_level <= DINFO_LEVEL_TERSE)
22613         return;
22614       if (!is_fortran () && !is_ada ())
22615         return;
22616       if (TREE_STATIC (decl) && decl_function_context (decl))
22617         context_die = lookup_decl_die (DECL_CONTEXT (decl));
22618       break;
22619
22620     case NAMESPACE_DECL:
22621     case IMPORTED_DECL:
22622       if (debug_info_level <= DINFO_LEVEL_TERSE)
22623         return;
22624       if (lookup_decl_die (decl) != NULL)
22625         return;
22626       break;
22627
22628     case TYPE_DECL:
22629       /* Don't emit stubs for types unless they are needed by other DIEs.  */
22630       if (TYPE_DECL_SUPPRESS_DEBUG (decl))
22631         return;
22632
22633       /* Don't bother trying to generate any DIEs to represent any of the
22634          normal built-in types for the language we are compiling.  */
22635       if (DECL_IS_BUILTIN (decl))
22636         return;
22637
22638       /* If we are in terse mode, don't generate any DIEs for types.  */
22639       if (debug_info_level <= DINFO_LEVEL_TERSE)
22640         return;
22641
22642       /* If we're a function-scope tag, initially use a parent of NULL;
22643          this will be fixed up in decls_for_scope.  */
22644       if (decl_function_context (decl))
22645         context_die = NULL;
22646
22647       break;
22648
22649     default:
22650       return;
22651     }
22652
22653   gen_decl_die (decl, NULL, context_die);
22654 }
22655
22656 /* Write the debugging output for DECL.  */
22657
22658 static void
22659 dwarf2out_function_decl (tree decl)
22660 {
22661   dwarf2out_decl (decl);
22662   call_arg_locations = NULL;
22663   call_arg_loc_last = NULL;
22664   call_site_count = -1;
22665   tail_call_site_count = -1;
22666   VEC_free (dw_die_ref, heap, block_map);
22667   htab_empty (decl_loc_table);
22668   htab_empty (cached_dw_loc_list_table);
22669 }
22670
22671 /* Output a marker (i.e. a label) for the beginning of the generated code for
22672    a lexical block.  */
22673
22674 static void
22675 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
22676                        unsigned int blocknum)
22677 {
22678   switch_to_section (current_function_section ());
22679   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
22680 }
22681
22682 /* Output a marker (i.e. a label) for the end of the generated code for a
22683    lexical block.  */
22684
22685 static void
22686 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
22687 {
22688   switch_to_section (current_function_section ());
22689   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
22690 }
22691
22692 /* Returns nonzero if it is appropriate not to emit any debugging
22693    information for BLOCK, because it doesn't contain any instructions.
22694
22695    Don't allow this for blocks with nested functions or local classes
22696    as we would end up with orphans, and in the presence of scheduling
22697    we may end up calling them anyway.  */
22698
22699 static bool
22700 dwarf2out_ignore_block (const_tree block)
22701 {
22702   tree decl;
22703   unsigned int i;
22704
22705   for (decl = BLOCK_VARS (block); decl; decl = DECL_CHAIN (decl))
22706     if (TREE_CODE (decl) == FUNCTION_DECL
22707         || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
22708       return 0;
22709   for (i = 0; i < BLOCK_NUM_NONLOCALIZED_VARS (block); i++)
22710     {
22711       decl = BLOCK_NONLOCALIZED_VAR (block, i);
22712       if (TREE_CODE (decl) == FUNCTION_DECL
22713           || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
22714       return 0;
22715     }
22716
22717   return 1;
22718 }
22719
22720 /* Hash table routines for file_hash.  */
22721
22722 static int
22723 file_table_eq (const void *p1_p, const void *p2_p)
22724 {
22725   const struct dwarf_file_data *const p1 =
22726     (const struct dwarf_file_data *) p1_p;
22727   const char *const p2 = (const char *) p2_p;
22728   return filename_cmp (p1->filename, p2) == 0;
22729 }
22730
22731 static hashval_t
22732 file_table_hash (const void *p_p)
22733 {
22734   const struct dwarf_file_data *const p = (const struct dwarf_file_data *) p_p;
22735   return htab_hash_string (p->filename);
22736 }
22737
22738 /* Lookup FILE_NAME (in the list of filenames that we know about here in
22739    dwarf2out.c) and return its "index".  The index of each (known) filename is
22740    just a unique number which is associated with only that one filename.  We
22741    need such numbers for the sake of generating labels (in the .debug_sfnames
22742    section) and references to those files numbers (in the .debug_srcinfo
22743    and.debug_macinfo sections).  If the filename given as an argument is not
22744    found in our current list, add it to the list and assign it the next
22745    available unique index number.  In order to speed up searches, we remember
22746    the index of the filename was looked up last.  This handles the majority of
22747    all searches.  */
22748
22749 static struct dwarf_file_data *
22750 lookup_filename (const char *file_name)
22751 {
22752   void ** slot;
22753   struct dwarf_file_data * created;
22754
22755   /* Check to see if the file name that was searched on the previous
22756      call matches this file name.  If so, return the index.  */
22757   if (file_table_last_lookup
22758       && (file_name == file_table_last_lookup->filename
22759           || filename_cmp (file_table_last_lookup->filename, file_name) == 0))
22760     return file_table_last_lookup;
22761
22762   /* Didn't match the previous lookup, search the table.  */
22763   slot = htab_find_slot_with_hash (file_table, file_name,
22764                                    htab_hash_string (file_name), INSERT);
22765   if (*slot)
22766     return (struct dwarf_file_data *) *slot;
22767
22768   created = ggc_alloc_dwarf_file_data ();
22769   created->filename = file_name;
22770   created->emitted_number = 0;
22771   *slot = created;
22772   return created;
22773 }
22774
22775 /* If the assembler will construct the file table, then translate the compiler
22776    internal file table number into the assembler file table number, and emit
22777    a .file directive if we haven't already emitted one yet.  The file table
22778    numbers are different because we prune debug info for unused variables and
22779    types, which may include filenames.  */
22780
22781 static int
22782 maybe_emit_file (struct dwarf_file_data * fd)
22783 {
22784   if (! fd->emitted_number)
22785     {
22786       if (last_emitted_file)
22787         fd->emitted_number = last_emitted_file->emitted_number + 1;
22788       else
22789         fd->emitted_number = 1;
22790       last_emitted_file = fd;
22791
22792       if (DWARF2_ASM_LINE_DEBUG_INFO)
22793         {
22794           fprintf (asm_out_file, "\t.file %u ", fd->emitted_number);
22795           output_quoted_string (asm_out_file,
22796                                 remap_debug_filename (fd->filename));
22797           fputc ('\n', asm_out_file);
22798         }
22799     }
22800
22801   return fd->emitted_number;
22802 }
22803
22804 /* Schedule generation of a DW_AT_const_value attribute to DIE.
22805    That generation should happen after function debug info has been
22806    generated. The value of the attribute is the constant value of ARG.  */
22807
22808 static void
22809 append_entry_to_tmpl_value_parm_die_table (dw_die_ref die, tree arg)
22810 {
22811   die_arg_entry entry;
22812
22813   if (!die || !arg)
22814     return;
22815
22816   if (!tmpl_value_parm_die_table)
22817     tmpl_value_parm_die_table
22818       = VEC_alloc (die_arg_entry, gc, 32);
22819
22820   entry.die = die;
22821   entry.arg = arg;
22822   VEC_safe_push (die_arg_entry, gc,
22823                  tmpl_value_parm_die_table,
22824                  &entry);
22825 }
22826
22827 /* Return TRUE if T is an instance of generic type, FALSE
22828    otherwise.  */
22829
22830 static bool
22831 generic_type_p (tree t)
22832 {
22833   if (t == NULL_TREE || !TYPE_P (t))
22834     return false;
22835   return lang_hooks.get_innermost_generic_parms (t) != NULL_TREE;
22836 }
22837
22838 /* Schedule the generation of the generic parameter dies for the
22839   instance of generic type T. The proper generation itself is later
22840   done by gen_scheduled_generic_parms_dies. */
22841
22842 static void
22843 schedule_generic_params_dies_gen (tree t)
22844 {
22845   if (!generic_type_p (t))
22846     return;
22847
22848   if (generic_type_instances == NULL)
22849     generic_type_instances = VEC_alloc (tree, gc, 256);
22850
22851   VEC_safe_push (tree, gc, generic_type_instances, t);
22852 }
22853
22854 /* Add a DW_AT_const_value attribute to DIEs that were scheduled
22855    by append_entry_to_tmpl_value_parm_die_table. This function must
22856    be called after function DIEs have been generated.  */
22857
22858 static void
22859 gen_remaining_tmpl_value_param_die_attribute (void)
22860 {
22861   if (tmpl_value_parm_die_table)
22862     {
22863       unsigned i;
22864       die_arg_entry *e;
22865
22866       FOR_EACH_VEC_ELT (die_arg_entry, tmpl_value_parm_die_table, i, e)
22867         tree_add_const_value_attribute (e->die, e->arg);
22868     }
22869 }
22870
22871 /* Generate generic parameters DIEs for instances of generic types
22872    that have been previously scheduled by
22873    schedule_generic_params_dies_gen. This function must be called
22874    after all the types of the CU have been laid out.  */
22875
22876 static void
22877 gen_scheduled_generic_parms_dies (void)
22878 {
22879   unsigned i;
22880   tree t;
22881
22882   if (generic_type_instances == NULL)
22883     return;
22884   
22885   FOR_EACH_VEC_ELT (tree, generic_type_instances, i, t)
22886     gen_generic_params_dies (t);
22887 }
22888
22889
22890 /* Replace DW_AT_name for the decl with name.  */
22891
22892 static void
22893 dwarf2out_set_name (tree decl, tree name)
22894 {
22895   dw_die_ref die;
22896   dw_attr_ref attr;
22897   const char *dname;
22898
22899   die = TYPE_SYMTAB_DIE (decl);
22900   if (!die)
22901     return;
22902
22903   dname = dwarf2_name (name, 0);
22904   if (!dname)
22905     return;
22906
22907   attr = get_AT (die, DW_AT_name);
22908   if (attr)
22909     {
22910       struct indirect_string_node *node;
22911
22912       node = find_AT_string (dname);
22913       /* replace the string.  */
22914       attr->dw_attr_val.v.val_str = node;
22915     }
22916
22917   else
22918     add_name_attribute (die, dname);
22919 }
22920
22921 /* Called by the final INSN scan whenever we see a var location.  We
22922    use it to drop labels in the right places, and throw the location in
22923    our lookup table.  */
22924
22925 static void
22926 dwarf2out_var_location (rtx loc_note)
22927 {
22928   char loclabel[MAX_ARTIFICIAL_LABEL_BYTES + 2];
22929   struct var_loc_node *newloc;
22930   rtx next_real;
22931   static const char *last_label;
22932   static const char *last_postcall_label;
22933   static bool last_in_cold_section_p;
22934   tree decl;
22935   bool var_loc_p;
22936
22937   if (!NOTE_P (loc_note))
22938     {
22939       if (CALL_P (loc_note))
22940         {
22941           call_site_count++;
22942           if (SIBLING_CALL_P (loc_note))
22943             tail_call_site_count++;
22944         }
22945       return;
22946     }
22947
22948   var_loc_p = NOTE_KIND (loc_note) == NOTE_INSN_VAR_LOCATION;
22949   if (var_loc_p && !DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
22950     return;
22951
22952   next_real = next_real_insn (loc_note);
22953
22954   /* If there are no instructions which would be affected by this note,
22955      don't do anything.  */
22956   if (var_loc_p
22957       && next_real == NULL_RTX
22958       && !NOTE_DURING_CALL_P (loc_note))
22959     return;
22960
22961   if (next_real == NULL_RTX)
22962     next_real = get_last_insn ();
22963
22964   /* If there were any real insns between note we processed last time
22965      and this note (or if it is the first note), clear
22966      last_{,postcall_}label so that they are not reused this time.  */
22967   if (last_var_location_insn == NULL_RTX
22968       || last_var_location_insn != next_real
22969       || last_in_cold_section_p != in_cold_section_p)
22970     {
22971       last_label = NULL;
22972       last_postcall_label = NULL;
22973     }
22974
22975   if (var_loc_p)
22976     {
22977       decl = NOTE_VAR_LOCATION_DECL (loc_note);
22978       newloc = add_var_loc_to_decl (decl, loc_note,
22979                                     NOTE_DURING_CALL_P (loc_note)
22980                                     ? last_postcall_label : last_label);
22981       if (newloc == NULL)
22982         return;
22983     }
22984   else
22985     {
22986       decl = NULL_TREE;
22987       newloc = NULL;
22988     }
22989
22990   /* If there were no real insns between note we processed last time
22991      and this note, use the label we emitted last time.  Otherwise
22992      create a new label and emit it.  */
22993   if (last_label == NULL)
22994     {
22995       ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
22996       ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
22997       loclabel_num++;
22998       last_label = ggc_strdup (loclabel);
22999     }
23000
23001   if (!var_loc_p)
23002     {
23003       struct call_arg_loc_node *ca_loc
23004         = ggc_alloc_cleared_call_arg_loc_node ();
23005       rtx prev = prev_real_insn (loc_note), x;
23006       ca_loc->call_arg_loc_note = loc_note;
23007       ca_loc->next = NULL;
23008       ca_loc->label = last_label;
23009       gcc_assert (prev
23010                   && (CALL_P (prev)
23011                       || (NONJUMP_INSN_P (prev)
23012                           && GET_CODE (PATTERN (prev)) == SEQUENCE
23013                           && CALL_P (XVECEXP (PATTERN (prev), 0, 0)))));
23014       if (!CALL_P (prev))
23015         prev = XVECEXP (PATTERN (prev), 0, 0);
23016       ca_loc->tail_call_p = SIBLING_CALL_P (prev);
23017       x = PATTERN (prev);
23018       if (GET_CODE (x) == PARALLEL)
23019         x = XVECEXP (x, 0, 0);
23020       if (GET_CODE (x) == SET)
23021         x = SET_SRC (x);
23022       if (GET_CODE (x) == CALL && MEM_P (XEXP (x, 0)))
23023         {
23024           x = XEXP (XEXP (x, 0), 0);
23025           if (GET_CODE (x) == SYMBOL_REF
23026               && SYMBOL_REF_DECL (x)
23027               && TREE_CODE (SYMBOL_REF_DECL (x)) == FUNCTION_DECL)
23028             ca_loc->symbol_ref = x;
23029         }
23030       ca_loc->block = insn_scope (prev);
23031       if (call_arg_locations)
23032         call_arg_loc_last->next = ca_loc;
23033       else
23034         call_arg_locations = ca_loc;
23035       call_arg_loc_last = ca_loc;
23036     }
23037   else if (!NOTE_DURING_CALL_P (loc_note))
23038     newloc->label = last_label;
23039   else
23040     {
23041       if (!last_postcall_label)
23042         {
23043           sprintf (loclabel, "%s-1", last_label);
23044           last_postcall_label = ggc_strdup (loclabel);
23045         }
23046       newloc->label = last_postcall_label;
23047     }
23048
23049   last_var_location_insn = next_real;
23050   last_in_cold_section_p = in_cold_section_p;
23051 }
23052
23053 /* Note in one location list that text section has changed.  */
23054
23055 static int
23056 var_location_switch_text_section_1 (void **slot, void *data ATTRIBUTE_UNUSED)
23057 {
23058   var_loc_list *list = (var_loc_list *) *slot;
23059   if (list->first)
23060     list->last_before_switch
23061       = list->last->next ? list->last->next : list->last;
23062   return 1;
23063 }
23064
23065 /* Note in all location lists that text section has changed.  */
23066
23067 static void
23068 var_location_switch_text_section (void)
23069 {
23070   if (decl_loc_table == NULL)
23071     return;
23072
23073   htab_traverse (decl_loc_table, var_location_switch_text_section_1, NULL);
23074 }
23075
23076 /* Create a new line number table.  */
23077
23078 static dw_line_info_table *
23079 new_line_info_table (void)
23080 {
23081   dw_line_info_table *table;
23082
23083   table = ggc_alloc_cleared_dw_line_info_table_struct ();
23084   table->file_num = 1;
23085   table->line_num = 1;
23086   table->is_stmt = DWARF_LINE_DEFAULT_IS_STMT_START;
23087
23088   return table;
23089 }
23090
23091 /* Lookup the "current" table into which we emit line info, so
23092    that we don't have to do it for every source line.  */
23093
23094 static void
23095 set_cur_line_info_table (section *sec)
23096 {
23097   dw_line_info_table *table;
23098
23099   if (sec == text_section)
23100     table = text_section_line_info;
23101   else if (sec == cold_text_section)
23102     {
23103       table = cold_text_section_line_info;
23104       if (!table)
23105         {
23106           cold_text_section_line_info = table = new_line_info_table ();
23107           table->end_label = cold_end_label;
23108         }
23109     }
23110   else
23111     {
23112       const char *end_label;
23113
23114       if (flag_reorder_blocks_and_partition)
23115         {
23116           if (in_cold_section_p)
23117             end_label = crtl->subsections.cold_section_end_label;
23118           else
23119             end_label = crtl->subsections.hot_section_end_label;
23120         }
23121       else
23122         {
23123           char label[MAX_ARTIFICIAL_LABEL_BYTES];
23124           ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
23125                                        current_function_funcdef_no);
23126           end_label = ggc_strdup (label);
23127         }
23128
23129       table = new_line_info_table ();
23130       table->end_label = end_label;
23131
23132       VEC_safe_push (dw_line_info_table_p, gc, separate_line_info, table);
23133     }
23134
23135   cur_line_info_table = table;
23136 }
23137
23138
23139 /* We need to reset the locations at the beginning of each
23140    function. We can't do this in the end_function hook, because the
23141    declarations that use the locations won't have been output when
23142    that hook is called.  Also compute have_multiple_function_sections here.  */
23143
23144 static void
23145 dwarf2out_begin_function (tree fun)
23146 {
23147   section *sec = function_section (fun);
23148
23149   if (sec != text_section)
23150     have_multiple_function_sections = true;
23151
23152   if (flag_reorder_blocks_and_partition && !cold_text_section)
23153     {
23154       gcc_assert (current_function_decl == fun);
23155       cold_text_section = unlikely_text_section ();
23156       switch_to_section (cold_text_section);
23157       ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
23158       switch_to_section (sec);
23159     }
23160
23161   dwarf2out_note_section_used ();
23162   call_site_count = 0;
23163   tail_call_site_count = 0;
23164
23165   set_cur_line_info_table (sec);
23166 }
23167
23168 /* Add OPCODE+VAL as an entry at the end of the opcode array in TABLE.  */
23169
23170 static void
23171 push_dw_line_info_entry (dw_line_info_table *table,
23172                          enum dw_line_info_opcode opcode, unsigned int val)
23173 {
23174   dw_line_info_entry e;
23175   e.opcode = opcode;
23176   e.val = val;
23177   VEC_safe_push (dw_line_info_entry, gc, table->entries, &e);
23178 }
23179
23180 /* Output a label to mark the beginning of a source code line entry
23181    and record information relating to this source line, in
23182    'line_info_table' for later output of the .debug_line section.  */
23183 /* ??? The discriminator parameter ought to be unsigned.  */
23184
23185 static void
23186 dwarf2out_source_line (unsigned int line, const char *filename,
23187                        int discriminator, bool is_stmt)
23188 {
23189   unsigned int file_num;
23190   dw_line_info_table *table;
23191
23192   if (debug_info_level < DINFO_LEVEL_NORMAL || line == 0)
23193     return;
23194
23195   /* The discriminator column was added in dwarf4.  Simplify the below
23196      by simply removing it if we're not supposed to output it.  */
23197   if (dwarf_version < 4 && dwarf_strict)
23198     discriminator = 0;
23199
23200   table = cur_line_info_table;
23201   file_num = maybe_emit_file (lookup_filename (filename));
23202
23203   /* ??? TODO: Elide duplicate line number entries.  Traditionally,
23204      the debugger has used the second (possibly duplicate) line number
23205      at the beginning of the function to mark the end of the prologue.
23206      We could eliminate any other duplicates within the function.  For
23207      Dwarf3, we ought to include the DW_LNS_set_prologue_end mark in
23208      that second line number entry.  */
23209   /* Recall that this end-of-prologue indication is *not* the same thing
23210      as the end_prologue debug hook.  The NOTE_INSN_PROLOGUE_END note,
23211      to which the hook corresponds, follows the last insn that was 
23212      emitted by gen_prologue.  What we need is to preceed the first insn
23213      that had been emitted after NOTE_INSN_FUNCTION_BEG, i.e. the first
23214      insn that corresponds to something the user wrote.  These may be
23215      very different locations once scheduling is enabled.  */
23216
23217   if (0 && file_num == table->file_num
23218       && line == table->line_num
23219       && discriminator == table->discrim_num
23220       && is_stmt == table->is_stmt)
23221     return;
23222
23223   switch_to_section (current_function_section ());
23224
23225   /* If requested, emit something human-readable.  */
23226   if (flag_debug_asm)
23227     fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START, filename, line);
23228
23229   if (DWARF2_ASM_LINE_DEBUG_INFO)
23230     {
23231       /* Emit the .loc directive understood by GNU as.  */
23232       fprintf (asm_out_file, "\t.loc %d %d 0", file_num, line);
23233       if (is_stmt != table->is_stmt)
23234         fprintf (asm_out_file, " is_stmt %d", is_stmt ? 1 : 0);
23235       if (SUPPORTS_DISCRIMINATOR && discriminator != 0)
23236         fprintf (asm_out_file, " discriminator %d", discriminator);
23237       fputc ('\n', asm_out_file);
23238     }
23239   else
23240     {
23241       unsigned int label_num = ++line_info_label_num;
23242
23243       targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL, label_num);
23244
23245       push_dw_line_info_entry (table, LI_set_address, label_num);
23246       if (file_num != table->file_num)
23247         push_dw_line_info_entry (table, LI_set_file, file_num);
23248       if (discriminator != table->discrim_num)
23249         push_dw_line_info_entry (table, LI_set_discriminator, discriminator);
23250       if (is_stmt != table->is_stmt)
23251         push_dw_line_info_entry (table, LI_negate_stmt, 0);
23252       push_dw_line_info_entry (table, LI_set_line, line);
23253     }
23254
23255   table->file_num = file_num;
23256   table->line_num = line;
23257   table->discrim_num = discriminator;
23258   table->is_stmt = is_stmt;
23259   table->in_use = true;
23260 }
23261
23262 /* Record the beginning of a new source file.  */
23263
23264 static void
23265 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
23266 {
23267   if (flag_eliminate_dwarf2_dups && ! use_debug_types)
23268     {
23269       /* Record the beginning of the file for break_out_includes.  */
23270       dw_die_ref bincl_die;
23271
23272       bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die (), NULL);
23273       add_AT_string (bincl_die, DW_AT_name, remap_debug_filename (filename));
23274     }
23275
23276   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
23277     {
23278       macinfo_entry e;
23279       e.code = DW_MACINFO_start_file;
23280       e.lineno = lineno;
23281       e.info = xstrdup (filename);
23282       VEC_safe_push (macinfo_entry, gc, macinfo_table, &e);
23283     }
23284 }
23285
23286 /* Record the end of a source file.  */
23287
23288 static void
23289 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
23290 {
23291   if (flag_eliminate_dwarf2_dups && ! use_debug_types)
23292     /* Record the end of the file for break_out_includes.  */
23293     new_die (DW_TAG_GNU_EINCL, comp_unit_die (), NULL);
23294
23295   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
23296     {
23297       macinfo_entry e;
23298       e.code = DW_MACINFO_end_file;
23299       e.lineno = lineno;
23300       e.info = NULL;
23301       VEC_safe_push (macinfo_entry, gc, macinfo_table, &e);
23302     }
23303 }
23304
23305 /* Called from debug_define in toplev.c.  The `buffer' parameter contains
23306    the tail part of the directive line, i.e. the part which is past the
23307    initial whitespace, #, whitespace, directive-name, whitespace part.  */
23308
23309 static void
23310 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
23311                   const char *buffer ATTRIBUTE_UNUSED)
23312 {
23313   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
23314     {
23315       macinfo_entry e;
23316       e.code = DW_MACINFO_define;
23317       e.lineno = lineno;
23318       e.info = xstrdup (buffer);;
23319       VEC_safe_push (macinfo_entry, gc, macinfo_table, &e);
23320     }
23321 }
23322
23323 /* Called from debug_undef in toplev.c.  The `buffer' parameter contains
23324    the tail part of the directive line, i.e. the part which is past the
23325    initial whitespace, #, whitespace, directive-name, whitespace part.  */
23326
23327 static void
23328 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
23329                  const char *buffer ATTRIBUTE_UNUSED)
23330 {
23331   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
23332     {
23333       macinfo_entry e;
23334       e.code = DW_MACINFO_undef;
23335       e.lineno = lineno;
23336       e.info = xstrdup (buffer);;
23337       VEC_safe_push (macinfo_entry, gc, macinfo_table, &e);
23338     }
23339 }
23340
23341 static void
23342 output_macinfo (void)
23343 {
23344   unsigned i;
23345   unsigned long length = VEC_length (macinfo_entry, macinfo_table);
23346   macinfo_entry *ref;
23347
23348   if (! length)
23349     return;
23350
23351   for (i = 0; VEC_iterate (macinfo_entry, macinfo_table, i, ref); i++)
23352     {
23353       switch (ref->code)
23354         {
23355           case DW_MACINFO_start_file:
23356             {
23357               int file_num = maybe_emit_file (lookup_filename (ref->info));
23358               dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
23359               dw2_asm_output_data_uleb128 
23360                         (ref->lineno, "Included from line number %lu", 
23361                                                 (unsigned long)ref->lineno);
23362               dw2_asm_output_data_uleb128 (file_num, "file %s", ref->info);
23363             }
23364             break;
23365           case DW_MACINFO_end_file:
23366             dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
23367             break;
23368           case DW_MACINFO_define:
23369             dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
23370             dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu", 
23371                                                 (unsigned long)ref->lineno);
23372             dw2_asm_output_nstring (ref->info, -1, "The macro");
23373             break;
23374           case DW_MACINFO_undef:
23375             dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
23376             dw2_asm_output_data_uleb128 (ref->lineno, "At line number %lu",
23377                                                 (unsigned long)ref->lineno);
23378             dw2_asm_output_nstring (ref->info, -1, "The macro");
23379             break;
23380           default:
23381            fprintf (asm_out_file, "%s unrecognized macinfo code %lu\n",
23382              ASM_COMMENT_START, (unsigned long)ref->code);
23383           break;
23384         }
23385     }
23386 }
23387
23388 /* Set up for Dwarf output at the start of compilation.  */
23389
23390 static void
23391 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
23392 {
23393   /* Allocate the file_table.  */
23394   file_table = htab_create_ggc (50, file_table_hash,
23395                                 file_table_eq, NULL);
23396
23397   /* Allocate the decl_die_table.  */
23398   decl_die_table = htab_create_ggc (10, decl_die_table_hash,
23399                                     decl_die_table_eq, NULL);
23400
23401   /* Allocate the decl_loc_table.  */
23402   decl_loc_table = htab_create_ggc (10, decl_loc_table_hash,
23403                                     decl_loc_table_eq, NULL);
23404
23405   /* Allocate the cached_dw_loc_list_table.  */
23406   cached_dw_loc_list_table
23407     = htab_create_ggc (10, cached_dw_loc_list_table_hash,
23408                        cached_dw_loc_list_table_eq, NULL);
23409
23410   /* Allocate the initial hunk of the decl_scope_table.  */
23411   decl_scope_table = VEC_alloc (tree, gc, 256);
23412
23413   /* Allocate the initial hunk of the abbrev_die_table.  */
23414   abbrev_die_table = ggc_alloc_cleared_vec_dw_die_ref
23415     (ABBREV_DIE_TABLE_INCREMENT);
23416   abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
23417   /* Zero-th entry is allocated, but unused.  */
23418   abbrev_die_table_in_use = 1;
23419
23420   /* Allocate the pubtypes and pubnames vectors.  */
23421   pubname_table = VEC_alloc (pubname_entry, gc, 32);
23422   pubtype_table = VEC_alloc (pubname_entry, gc, 32);
23423
23424   incomplete_types = VEC_alloc (tree, gc, 64);
23425
23426   used_rtx_array = VEC_alloc (rtx, gc, 32);
23427
23428   debug_info_section = get_section (DEBUG_INFO_SECTION,
23429                                     SECTION_DEBUG, NULL);
23430   debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
23431                                       SECTION_DEBUG, NULL);
23432   debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
23433                                        SECTION_DEBUG, NULL);
23434   debug_macinfo_section = get_section (DEBUG_MACINFO_SECTION,
23435                                        SECTION_DEBUG, NULL);
23436   debug_line_section = get_section (DEBUG_LINE_SECTION,
23437                                     SECTION_DEBUG, NULL);
23438   debug_loc_section = get_section (DEBUG_LOC_SECTION,
23439                                    SECTION_DEBUG, NULL);
23440   debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
23441                                         SECTION_DEBUG, NULL);
23442   debug_pubtypes_section = get_section (DEBUG_PUBTYPES_SECTION,
23443                                         SECTION_DEBUG, NULL);
23444   debug_str_section = get_section (DEBUG_STR_SECTION,
23445                                    DEBUG_STR_SECTION_FLAGS, NULL);
23446   debug_ranges_section = get_section (DEBUG_RANGES_SECTION,
23447                                       SECTION_DEBUG, NULL);
23448   debug_frame_section = get_section (DEBUG_FRAME_SECTION,
23449                                      SECTION_DEBUG, NULL);
23450
23451   ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
23452   ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
23453                                DEBUG_ABBREV_SECTION_LABEL, 0);
23454   ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
23455   ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label,
23456                                COLD_TEXT_SECTION_LABEL, 0);
23457   ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
23458
23459   ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
23460                                DEBUG_INFO_SECTION_LABEL, 0);
23461   ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
23462                                DEBUG_LINE_SECTION_LABEL, 0);
23463   ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
23464                                DEBUG_RANGES_SECTION_LABEL, 0);
23465   ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
23466                                DEBUG_MACINFO_SECTION_LABEL, 0);
23467
23468   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
23469     macinfo_table = VEC_alloc (macinfo_entry, gc, 64);
23470
23471   switch_to_section (text_section);
23472   ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
23473
23474   /* Make sure the line number table for .text always exists.  */
23475   text_section_line_info = new_line_info_table ();
23476   text_section_line_info->end_label = text_end_label;
23477 }
23478
23479 /* Called before cgraph_optimize starts outputtting functions, variables
23480    and toplevel asms into assembly.  */
23481
23482 static void
23483 dwarf2out_assembly_start (void)
23484 {
23485   if (HAVE_GAS_CFI_SECTIONS_DIRECTIVE
23486       && dwarf2out_do_cfi_asm ()
23487       && (!(flag_unwind_tables || flag_exceptions)
23488           || targetm.except_unwind_info (&global_options) != UI_DWARF2))
23489     fprintf (asm_out_file, "\t.cfi_sections\t.debug_frame\n");
23490 }
23491
23492 /* A helper function for dwarf2out_finish called through
23493    htab_traverse.  Emit one queued .debug_str string.  */
23494
23495 static int
23496 output_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
23497 {
23498   struct indirect_string_node *node = (struct indirect_string_node *) *h;
23499
23500   if (node->form == DW_FORM_strp)
23501     {
23502       switch_to_section (debug_str_section);
23503       ASM_OUTPUT_LABEL (asm_out_file, node->label);
23504       assemble_string (node->str, strlen (node->str) + 1);
23505     }
23506
23507   return 1;
23508 }
23509
23510 #if ENABLE_ASSERT_CHECKING
23511 /* Verify that all marks are clear.  */
23512
23513 static void
23514 verify_marks_clear (dw_die_ref die)
23515 {
23516   dw_die_ref c;
23517
23518   gcc_assert (! die->die_mark);
23519   FOR_EACH_CHILD (die, c, verify_marks_clear (c));
23520 }
23521 #endif /* ENABLE_ASSERT_CHECKING */
23522
23523 /* Clear the marks for a die and its children.
23524    Be cool if the mark isn't set.  */
23525
23526 static void
23527 prune_unmark_dies (dw_die_ref die)
23528 {
23529   dw_die_ref c;
23530
23531   if (die->die_mark)
23532     die->die_mark = 0;
23533   FOR_EACH_CHILD (die, c, prune_unmark_dies (c));
23534 }
23535
23536 /* Given DIE that we're marking as used, find any other dies
23537    it references as attributes and mark them as used.  */
23538
23539 static void
23540 prune_unused_types_walk_attribs (dw_die_ref die)
23541 {
23542   dw_attr_ref a;
23543   unsigned ix;
23544
23545   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
23546     {
23547       if (a->dw_attr_val.val_class == dw_val_class_die_ref)
23548         {
23549           /* A reference to another DIE.
23550              Make sure that it will get emitted.
23551              If it was broken out into a comdat group, don't follow it.  */
23552           if (! use_debug_types
23553               || a->dw_attr == DW_AT_specification
23554               || a->dw_attr_val.v.val_die_ref.die->die_id.die_type_node == NULL)
23555             prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
23556         }
23557       /* Set the string's refcount to 0 so that prune_unused_types_mark
23558          accounts properly for it.  */
23559       if (AT_class (a) == dw_val_class_str)
23560         a->dw_attr_val.v.val_str->refcount = 0;
23561     }
23562 }
23563
23564 /* Mark the generic parameters and arguments children DIEs of DIE.  */
23565
23566 static void
23567 prune_unused_types_mark_generic_parms_dies (dw_die_ref die)
23568 {
23569   dw_die_ref c;
23570
23571   if (die == NULL || die->die_child == NULL)
23572     return;
23573   c = die->die_child;
23574   do
23575     {
23576       switch (c->die_tag)
23577         {
23578         case DW_TAG_template_type_param:
23579         case DW_TAG_template_value_param:
23580         case DW_TAG_GNU_template_template_param:
23581         case DW_TAG_GNU_template_parameter_pack:
23582           prune_unused_types_mark (c, 1);
23583           break;
23584         default:
23585           break;
23586         }
23587       c = c->die_sib;
23588     } while (c && c != die->die_child);
23589 }
23590
23591 /* Mark DIE as being used.  If DOKIDS is true, then walk down
23592    to DIE's children.  */
23593
23594 static void
23595 prune_unused_types_mark (dw_die_ref die, int dokids)
23596 {
23597   dw_die_ref c;
23598
23599   if (die->die_mark == 0)
23600     {
23601       /* We haven't done this node yet.  Mark it as used.  */
23602       die->die_mark = 1;
23603       /* If this is the DIE of a generic type instantiation,
23604          mark the children DIEs that describe its generic parms and
23605          args.  */
23606       prune_unused_types_mark_generic_parms_dies (die);
23607
23608       /* We also have to mark its parents as used.
23609          (But we don't want to mark our parents' kids due to this.)  */
23610       if (die->die_parent)
23611         prune_unused_types_mark (die->die_parent, 0);
23612
23613       /* Mark any referenced nodes.  */
23614       prune_unused_types_walk_attribs (die);
23615
23616       /* If this node is a specification,
23617          also mark the definition, if it exists.  */
23618       if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
23619         prune_unused_types_mark (die->die_definition, 1);
23620     }
23621
23622   if (dokids && die->die_mark != 2)
23623     {
23624       /* We need to walk the children, but haven't done so yet.
23625          Remember that we've walked the kids.  */
23626       die->die_mark = 2;
23627
23628       /* If this is an array type, we need to make sure our
23629          kids get marked, even if they're types.  If we're
23630          breaking out types into comdat sections, do this
23631          for all type definitions.  */
23632       if (die->die_tag == DW_TAG_array_type
23633           || (use_debug_types
23634               && is_type_die (die) && ! is_declaration_die (die)))
23635         FOR_EACH_CHILD (die, c, prune_unused_types_mark (c, 1));
23636       else
23637         FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
23638     }
23639 }
23640
23641 /* For local classes, look if any static member functions were emitted
23642    and if so, mark them.  */
23643
23644 static void
23645 prune_unused_types_walk_local_classes (dw_die_ref die)
23646 {
23647   dw_die_ref c;
23648
23649   if (die->die_mark == 2)
23650     return;
23651
23652   switch (die->die_tag)
23653     {
23654     case DW_TAG_structure_type:
23655     case DW_TAG_union_type:
23656     case DW_TAG_class_type:
23657       break;
23658
23659     case DW_TAG_subprogram:
23660       if (!get_AT_flag (die, DW_AT_declaration)
23661           || die->die_definition != NULL)
23662         prune_unused_types_mark (die, 1);
23663       return;
23664
23665     default:
23666       return;
23667     }
23668
23669   /* Mark children.  */
23670   FOR_EACH_CHILD (die, c, prune_unused_types_walk_local_classes (c));
23671 }
23672
23673 /* Walk the tree DIE and mark types that we actually use.  */
23674
23675 static void
23676 prune_unused_types_walk (dw_die_ref die)
23677 {
23678   dw_die_ref c;
23679
23680   /* Don't do anything if this node is already marked and
23681      children have been marked as well.  */
23682   if (die->die_mark == 2)
23683     return;
23684
23685   switch (die->die_tag)
23686     {
23687     case DW_TAG_structure_type:
23688     case DW_TAG_union_type:
23689     case DW_TAG_class_type:
23690       if (die->die_perennial_p)
23691         break;
23692
23693       for (c = die->die_parent; c; c = c->die_parent)
23694         if (c->die_tag == DW_TAG_subprogram)
23695           break;
23696
23697       /* Finding used static member functions inside of classes
23698          is needed just for local classes, because for other classes
23699          static member function DIEs with DW_AT_specification
23700          are emitted outside of the DW_TAG_*_type.  If we ever change
23701          it, we'd need to call this even for non-local classes.  */
23702       if (c)
23703         prune_unused_types_walk_local_classes (die);
23704
23705       /* It's a type node --- don't mark it.  */
23706       return;
23707
23708     case DW_TAG_const_type:
23709     case DW_TAG_packed_type:
23710     case DW_TAG_pointer_type:
23711     case DW_TAG_reference_type:
23712     case DW_TAG_rvalue_reference_type:
23713     case DW_TAG_volatile_type:
23714     case DW_TAG_typedef:
23715     case DW_TAG_array_type:
23716     case DW_TAG_interface_type:
23717     case DW_TAG_friend:
23718     case DW_TAG_variant_part:
23719     case DW_TAG_enumeration_type:
23720     case DW_TAG_subroutine_type:
23721     case DW_TAG_string_type:
23722     case DW_TAG_set_type:
23723     case DW_TAG_subrange_type:
23724     case DW_TAG_ptr_to_member_type:
23725     case DW_TAG_file_type:
23726       if (die->die_perennial_p)
23727         break;
23728
23729       /* It's a type node --- don't mark it.  */
23730       return;
23731
23732     default:
23733       /* Mark everything else.  */
23734       break;
23735   }
23736
23737   if (die->die_mark == 0)
23738     {
23739       die->die_mark = 1;
23740
23741       /* Now, mark any dies referenced from here.  */
23742       prune_unused_types_walk_attribs (die);
23743     }
23744
23745   die->die_mark = 2;
23746
23747   /* Mark children.  */
23748   FOR_EACH_CHILD (die, c, prune_unused_types_walk (c));
23749 }
23750
23751 /* Increment the string counts on strings referred to from DIE's
23752    attributes.  */
23753
23754 static void
23755 prune_unused_types_update_strings (dw_die_ref die)
23756 {
23757   dw_attr_ref a;
23758   unsigned ix;
23759
23760   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
23761     if (AT_class (a) == dw_val_class_str)
23762       {
23763         struct indirect_string_node *s = a->dw_attr_val.v.val_str;
23764         s->refcount++;
23765         /* Avoid unnecessarily putting strings that are used less than
23766            twice in the hash table.  */
23767         if (s->refcount
23768             == ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) ? 1 : 2))
23769           {
23770             void ** slot;
23771             slot = htab_find_slot_with_hash (debug_str_hash, s->str,
23772                                              htab_hash_string (s->str),
23773                                              INSERT);
23774             gcc_assert (*slot == NULL);
23775             *slot = s;
23776           }
23777       }
23778 }
23779
23780 /* Remove from the tree DIE any dies that aren't marked.  */
23781
23782 static void
23783 prune_unused_types_prune (dw_die_ref die)
23784 {
23785   dw_die_ref c;
23786
23787   gcc_assert (die->die_mark);
23788   prune_unused_types_update_strings (die);
23789
23790   if (! die->die_child)
23791     return;
23792
23793   c = die->die_child;
23794   do {
23795     dw_die_ref prev = c;
23796     for (c = c->die_sib; ! c->die_mark; c = c->die_sib)
23797       if (c == die->die_child)
23798         {
23799           /* No marked children between 'prev' and the end of the list.  */
23800           if (prev == c)
23801             /* No marked children at all.  */
23802             die->die_child = NULL;
23803           else
23804             {
23805               prev->die_sib = c->die_sib;
23806               die->die_child = prev;
23807             }
23808           return;
23809         }
23810
23811     if (c != prev->die_sib)
23812       prev->die_sib = c;
23813     prune_unused_types_prune (c);
23814   } while (c != die->die_child);
23815 }
23816
23817 /* Remove dies representing declarations that we never use.  */
23818
23819 static void
23820 prune_unused_types (void)
23821 {
23822   unsigned int i;
23823   limbo_die_node *node;
23824   comdat_type_node *ctnode;
23825   pubname_ref pub;
23826   dw_die_ref base_type;
23827
23828 #if ENABLE_ASSERT_CHECKING
23829   /* All the marks should already be clear.  */
23830   verify_marks_clear (comp_unit_die ());
23831   for (node = limbo_die_list; node; node = node->next)
23832     verify_marks_clear (node->die);
23833   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
23834     verify_marks_clear (ctnode->root_die);
23835 #endif /* ENABLE_ASSERT_CHECKING */
23836
23837   /* Mark types that are used in global variables.  */
23838   premark_types_used_by_global_vars ();
23839
23840   /* Set the mark on nodes that are actually used.  */
23841   prune_unused_types_walk (comp_unit_die ());
23842   for (node = limbo_die_list; node; node = node->next)
23843     prune_unused_types_walk (node->die);
23844   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
23845     {
23846       prune_unused_types_walk (ctnode->root_die);
23847       prune_unused_types_mark (ctnode->type_die, 1);
23848     }
23849
23850   /* Also set the mark on nodes referenced from the
23851      pubname_table.  */
23852   FOR_EACH_VEC_ELT (pubname_entry, pubname_table, i, pub)
23853     prune_unused_types_mark (pub->die, 1);
23854   for (i = 0; VEC_iterate (dw_die_ref, base_types, i, base_type); i++)
23855     prune_unused_types_mark (base_type, 1);
23856
23857   if (debug_str_hash)
23858     htab_empty (debug_str_hash);
23859   prune_unused_types_prune (comp_unit_die ());
23860   for (node = limbo_die_list; node; node = node->next)
23861     prune_unused_types_prune (node->die);
23862   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
23863     prune_unused_types_prune (ctnode->root_die);
23864
23865   /* Leave the marks clear.  */
23866   prune_unmark_dies (comp_unit_die ());
23867   for (node = limbo_die_list; node; node = node->next)
23868     prune_unmark_dies (node->die);
23869   for (ctnode = comdat_type_list; ctnode; ctnode = ctnode->next)
23870     prune_unmark_dies (ctnode->root_die);
23871 }
23872
23873 /* Set the parameter to true if there are any relative pathnames in
23874    the file table.  */
23875 static int
23876 file_table_relative_p (void ** slot, void *param)
23877 {
23878   bool *p = (bool *) param;
23879   struct dwarf_file_data *d = (struct dwarf_file_data *) *slot;
23880   if (!IS_ABSOLUTE_PATH (d->filename))
23881     {
23882       *p = true;
23883       return 0;
23884     }
23885   return 1;
23886 }
23887
23888 /* Routines to manipulate hash table of comdat type units.  */
23889
23890 static hashval_t
23891 htab_ct_hash (const void *of)
23892 {
23893   hashval_t h;
23894   const comdat_type_node *const type_node = (const comdat_type_node *) of;
23895
23896   memcpy (&h, type_node->signature, sizeof (h));
23897   return h;
23898 }
23899
23900 static int
23901 htab_ct_eq (const void *of1, const void *of2)
23902 {
23903   const comdat_type_node *const type_node_1 = (const comdat_type_node *) of1;
23904   const comdat_type_node *const type_node_2 = (const comdat_type_node *) of2;
23905
23906   return (! memcmp (type_node_1->signature, type_node_2->signature,
23907                     DWARF_TYPE_SIGNATURE_SIZE));
23908 }
23909
23910 /* Move a DW_AT_{,MIPS_}linkage_name attribute just added to dw_die_ref
23911    to the location it would have been added, should we know its
23912    DECL_ASSEMBLER_NAME when we added other attributes.  This will
23913    probably improve compactness of debug info, removing equivalent
23914    abbrevs, and hide any differences caused by deferring the
23915    computation of the assembler name, triggered by e.g. PCH.  */
23916
23917 static inline void
23918 move_linkage_attr (dw_die_ref die)
23919 {
23920   unsigned ix = VEC_length (dw_attr_node, die->die_attr);
23921   dw_attr_node linkage = *VEC_index (dw_attr_node, die->die_attr, ix - 1);
23922
23923   gcc_assert (linkage.dw_attr == DW_AT_linkage_name
23924               || linkage.dw_attr == DW_AT_MIPS_linkage_name);
23925
23926   while (--ix > 0)
23927     {
23928       dw_attr_node *prev = VEC_index (dw_attr_node, die->die_attr, ix - 1);
23929
23930       if (prev->dw_attr == DW_AT_decl_line || prev->dw_attr == DW_AT_name)
23931         break;
23932     }
23933
23934   if (ix != VEC_length (dw_attr_node, die->die_attr) - 1)
23935     {
23936       VEC_pop (dw_attr_node, die->die_attr);
23937       VEC_quick_insert (dw_attr_node, die->die_attr, ix, &linkage);
23938     }
23939 }
23940
23941 /* Helper function for resolve_addr, mark DW_TAG_base_type nodes
23942    referenced from typed stack ops and count how often they are used.  */
23943
23944 static void
23945 mark_base_types (dw_loc_descr_ref loc)
23946 {
23947   dw_die_ref base_type = NULL;
23948
23949   for (; loc; loc = loc->dw_loc_next)
23950     {
23951       switch (loc->dw_loc_opc)
23952         {
23953         case DW_OP_GNU_regval_type:
23954         case DW_OP_GNU_deref_type:
23955           base_type = loc->dw_loc_oprnd2.v.val_die_ref.die;
23956           break;
23957         case DW_OP_GNU_const_type:
23958         case DW_OP_GNU_convert:
23959         case DW_OP_GNU_reinterpret:
23960           base_type = loc->dw_loc_oprnd1.v.val_die_ref.die;
23961           break;
23962         case DW_OP_GNU_entry_value:
23963           mark_base_types (loc->dw_loc_oprnd1.v.val_loc);
23964           continue;
23965         default:
23966           continue;
23967         }
23968       gcc_assert (base_type->die_parent == comp_unit_die ());
23969       if (base_type->die_mark)
23970         base_type->die_mark++;
23971       else
23972         {
23973           VEC_safe_push (dw_die_ref, heap, base_types, base_type);
23974           base_type->die_mark = 1;
23975         }
23976     }
23977 }
23978
23979 /* Comparison function for sorting marked base types.  */
23980
23981 static int
23982 base_type_cmp (const void *x, const void *y)
23983 {
23984   dw_die_ref dx = *(const dw_die_ref *) x;
23985   dw_die_ref dy = *(const dw_die_ref *) y;
23986   unsigned int byte_size1, byte_size2;
23987   unsigned int encoding1, encoding2;
23988   if (dx->die_mark > dy->die_mark)
23989     return -1;
23990   if (dx->die_mark < dy->die_mark)
23991     return 1;
23992   byte_size1 = get_AT_unsigned (dx, DW_AT_byte_size);
23993   byte_size2 = get_AT_unsigned (dy, DW_AT_byte_size);
23994   if (byte_size1 < byte_size2)
23995     return 1;
23996   if (byte_size1 > byte_size2)
23997     return -1;
23998   encoding1 = get_AT_unsigned (dx, DW_AT_encoding);
23999   encoding2 = get_AT_unsigned (dy, DW_AT_encoding);
24000   if (encoding1 < encoding2)
24001     return 1;
24002   if (encoding1 > encoding2)
24003     return -1;
24004   return 0;
24005 }
24006
24007 /* Move base types marked by mark_base_types as early as possible
24008    in the CU, sorted by decreasing usage count both to make the
24009    uleb128 references as small as possible and to make sure they
24010    will have die_offset already computed by calc_die_sizes when
24011    sizes of typed stack loc ops is computed.  */
24012
24013 static void
24014 move_marked_base_types (void)
24015 {
24016   unsigned int i;
24017   dw_die_ref base_type, die, c;
24018
24019   if (VEC_empty (dw_die_ref, base_types))
24020     return;
24021
24022   /* Sort by decreasing usage count, they will be added again in that
24023      order later on.  */
24024   VEC_qsort (dw_die_ref, base_types, base_type_cmp);
24025   die = comp_unit_die ();
24026   c = die->die_child;
24027   do
24028     {
24029       dw_die_ref prev = c;
24030       c = c->die_sib;
24031       while (c->die_mark)
24032         {
24033           remove_child_with_prev (c, prev);
24034           /* As base types got marked, there must be at least
24035              one node other than DW_TAG_base_type.  */
24036           gcc_assert (c != c->die_sib);
24037           c = c->die_sib;
24038         }
24039     }
24040   while (c != die->die_child);
24041   gcc_assert (die->die_child);
24042   c = die->die_child;
24043   for (i = 0; VEC_iterate (dw_die_ref, base_types, i, base_type); i++)
24044     {
24045       base_type->die_mark = 0;
24046       base_type->die_sib = c->die_sib;
24047       c->die_sib = base_type;
24048       c = base_type;
24049     }
24050 }
24051
24052 /* Helper function for resolve_addr, attempt to resolve
24053    one CONST_STRING, return non-zero if not successful.  Similarly verify that
24054    SYMBOL_REFs refer to variables emitted in the current CU.  */
24055
24056 static int
24057 resolve_one_addr (rtx *addr, void *data ATTRIBUTE_UNUSED)
24058 {
24059   rtx rtl = *addr;
24060
24061   if (GET_CODE (rtl) == CONST_STRING)
24062     {
24063       size_t len = strlen (XSTR (rtl, 0)) + 1;
24064       tree t = build_string (len, XSTR (rtl, 0));
24065       tree tlen = size_int (len - 1);
24066       TREE_TYPE (t)
24067         = build_array_type (char_type_node, build_index_type (tlen));
24068       rtl = lookup_constant_def (t);
24069       if (!rtl || !MEM_P (rtl))
24070         return 1;
24071       rtl = XEXP (rtl, 0);
24072       VEC_safe_push (rtx, gc, used_rtx_array, rtl);
24073       *addr = rtl;
24074       return 0;
24075     }
24076
24077   if (GET_CODE (rtl) == SYMBOL_REF
24078       && SYMBOL_REF_DECL (rtl))
24079     {
24080       if (TREE_CONSTANT_POOL_ADDRESS_P (rtl))
24081         {
24082           if (!TREE_ASM_WRITTEN (DECL_INITIAL (SYMBOL_REF_DECL (rtl))))
24083             return 1;
24084         }
24085       else if (!TREE_ASM_WRITTEN (SYMBOL_REF_DECL (rtl)))
24086         return 1;
24087     }
24088
24089   if (GET_CODE (rtl) == CONST
24090       && for_each_rtx (&XEXP (rtl, 0), resolve_one_addr, NULL))
24091     return 1;
24092
24093   return 0;
24094 }
24095
24096 /* Helper function for resolve_addr, handle one location
24097    expression, return false if at least one CONST_STRING or SYMBOL_REF in
24098    the location list couldn't be resolved.  */
24099
24100 static bool
24101 resolve_addr_in_expr (dw_loc_descr_ref loc)
24102 {
24103   for (; loc; loc = loc->dw_loc_next)
24104     if (((loc->dw_loc_opc == DW_OP_addr || loc->dtprel)
24105          && resolve_one_addr (&loc->dw_loc_oprnd1.v.val_addr, NULL))
24106         || (loc->dw_loc_opc == DW_OP_implicit_value
24107             && loc->dw_loc_oprnd2.val_class == dw_val_class_addr
24108             && resolve_one_addr (&loc->dw_loc_oprnd2.v.val_addr, NULL)))
24109       return false;
24110     else if (loc->dw_loc_opc == DW_OP_GNU_implicit_pointer
24111              && loc->dw_loc_oprnd1.val_class == dw_val_class_decl_ref)
24112       {
24113         dw_die_ref ref
24114           = lookup_decl_die (loc->dw_loc_oprnd1.v.val_decl_ref);
24115         if (ref == NULL)
24116           return false;
24117         loc->dw_loc_oprnd1.val_class = dw_val_class_die_ref;
24118         loc->dw_loc_oprnd1.v.val_die_ref.die = ref;
24119         loc->dw_loc_oprnd1.v.val_die_ref.external = 0;
24120       }
24121   return true;
24122 }
24123
24124 /* Resolve DW_OP_addr and DW_AT_const_value CONST_STRING arguments to
24125    an address in .rodata section if the string literal is emitted there,
24126    or remove the containing location list or replace DW_AT_const_value
24127    with DW_AT_location and empty location expression, if it isn't found
24128    in .rodata.  Similarly for SYMBOL_REFs, keep only those that refer
24129    to something that has been emitted in the current CU.  */
24130
24131 static void
24132 resolve_addr (dw_die_ref die)
24133 {
24134   dw_die_ref c;
24135   dw_attr_ref a;
24136   dw_loc_list_ref *curr, *start, loc;
24137   unsigned ix;
24138
24139   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
24140     switch (AT_class (a))
24141       {
24142       case dw_val_class_loc_list:
24143         start = curr = AT_loc_list_ptr (a);
24144         loc = *curr;
24145         gcc_assert (loc);
24146         /* The same list can be referenced more than once.  See if we have
24147            already recorded the result from a previous pass.  */
24148         if (loc->replaced)
24149           *curr = loc->dw_loc_next;
24150         else if (!loc->resolved_addr)
24151           {
24152             /* As things stand, we do not expect or allow one die to
24153                reference a suffix of another die's location list chain.
24154                References must be identical or completely separate.
24155                There is therefore no need to cache the result of this
24156                pass on any list other than the first; doing so
24157                would lead to unnecessary writes.  */
24158             while (*curr)
24159               {
24160                 gcc_assert (!(*curr)->replaced && !(*curr)->resolved_addr);
24161                 if (!resolve_addr_in_expr ((*curr)->expr))
24162                   {
24163                     dw_loc_list_ref next = (*curr)->dw_loc_next;
24164                     if (next && (*curr)->ll_symbol)
24165                       {
24166                         gcc_assert (!next->ll_symbol);
24167                         next->ll_symbol = (*curr)->ll_symbol;
24168                       }
24169                     *curr = next;
24170                   }
24171                 else
24172                   {
24173                     mark_base_types ((*curr)->expr);
24174                     curr = &(*curr)->dw_loc_next;
24175                   }
24176               }
24177             if (loc == *start)
24178               loc->resolved_addr = 1;
24179             else
24180               {
24181                 loc->replaced = 1;
24182                 loc->dw_loc_next = *start;
24183               }
24184           }
24185         if (!*start)
24186           {
24187             remove_AT (die, a->dw_attr);
24188             ix--;
24189           }
24190         break;
24191       case dw_val_class_loc:
24192         if (!resolve_addr_in_expr (AT_loc (a)))
24193           {
24194             remove_AT (die, a->dw_attr);
24195             ix--;
24196           }
24197         else
24198           mark_base_types (AT_loc (a));
24199         break;
24200       case dw_val_class_addr:
24201         if (a->dw_attr == DW_AT_const_value
24202             && resolve_one_addr (&a->dw_attr_val.v.val_addr, NULL))
24203           {
24204             remove_AT (die, a->dw_attr);
24205             ix--;
24206           }
24207         if (die->die_tag == DW_TAG_GNU_call_site
24208             && a->dw_attr == DW_AT_abstract_origin)
24209           {
24210             tree tdecl = SYMBOL_REF_DECL (a->dw_attr_val.v.val_addr);
24211             dw_die_ref tdie = lookup_decl_die (tdecl);
24212             if (tdie == NULL
24213                 && DECL_EXTERNAL (tdecl)
24214                 && DECL_ABSTRACT_ORIGIN (tdecl) == NULL_TREE)
24215               {
24216                 force_decl_die (tdecl);
24217                 tdie = lookup_decl_die (tdecl);
24218               }
24219             if (tdie)
24220               {
24221                 a->dw_attr_val.val_class = dw_val_class_die_ref;
24222                 a->dw_attr_val.v.val_die_ref.die = tdie;
24223                 a->dw_attr_val.v.val_die_ref.external = 0;
24224               }
24225             else
24226               {
24227                 remove_AT (die, a->dw_attr);
24228                 ix--;
24229               }
24230           }
24231         break;
24232       default:
24233         break;
24234       }
24235
24236   FOR_EACH_CHILD (die, c, resolve_addr (c));
24237 }
24238 \f
24239 /* Helper routines for optimize_location_lists.
24240    This pass tries to share identical local lists in .debug_loc
24241    section.  */
24242
24243 /* Iteratively hash operands of LOC opcode.  */
24244
24245 static inline hashval_t
24246 hash_loc_operands (dw_loc_descr_ref loc, hashval_t hash)
24247 {
24248   dw_val_ref val1 = &loc->dw_loc_oprnd1;
24249   dw_val_ref val2 = &loc->dw_loc_oprnd2;
24250
24251   switch (loc->dw_loc_opc)
24252     {
24253     case DW_OP_const4u:
24254     case DW_OP_const8u:
24255       if (loc->dtprel)
24256         goto hash_addr;
24257       /* FALLTHRU */
24258     case DW_OP_const1u:
24259     case DW_OP_const1s:
24260     case DW_OP_const2u:
24261     case DW_OP_const2s:
24262     case DW_OP_const4s:
24263     case DW_OP_const8s:
24264     case DW_OP_constu:
24265     case DW_OP_consts:
24266     case DW_OP_pick:
24267     case DW_OP_plus_uconst:
24268     case DW_OP_breg0:
24269     case DW_OP_breg1:
24270     case DW_OP_breg2:
24271     case DW_OP_breg3:
24272     case DW_OP_breg4:
24273     case DW_OP_breg5:
24274     case DW_OP_breg6:
24275     case DW_OP_breg7:
24276     case DW_OP_breg8:
24277     case DW_OP_breg9:
24278     case DW_OP_breg10:
24279     case DW_OP_breg11:
24280     case DW_OP_breg12:
24281     case DW_OP_breg13:
24282     case DW_OP_breg14:
24283     case DW_OP_breg15:
24284     case DW_OP_breg16:
24285     case DW_OP_breg17:
24286     case DW_OP_breg18:
24287     case DW_OP_breg19:
24288     case DW_OP_breg20:
24289     case DW_OP_breg21:
24290     case DW_OP_breg22:
24291     case DW_OP_breg23:
24292     case DW_OP_breg24:
24293     case DW_OP_breg25:
24294     case DW_OP_breg26:
24295     case DW_OP_breg27:
24296     case DW_OP_breg28:
24297     case DW_OP_breg29:
24298     case DW_OP_breg30:
24299     case DW_OP_breg31:
24300     case DW_OP_regx:
24301     case DW_OP_fbreg:
24302     case DW_OP_piece:
24303     case DW_OP_deref_size:
24304     case DW_OP_xderef_size:
24305       hash = iterative_hash_object (val1->v.val_int, hash);
24306       break;
24307     case DW_OP_skip:
24308     case DW_OP_bra:
24309       {
24310         int offset;
24311
24312         gcc_assert (val1->val_class == dw_val_class_loc);
24313         offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
24314         hash = iterative_hash_object (offset, hash);
24315       }
24316       break;
24317     case DW_OP_implicit_value:
24318       hash = iterative_hash_object (val1->v.val_unsigned, hash);
24319       switch (val2->val_class)
24320         {
24321         case dw_val_class_const:
24322           hash = iterative_hash_object (val2->v.val_int, hash);
24323           break;
24324         case dw_val_class_vec:
24325           {
24326             unsigned int elt_size = val2->v.val_vec.elt_size;
24327             unsigned int len = val2->v.val_vec.length;
24328
24329             hash = iterative_hash_object (elt_size, hash);
24330             hash = iterative_hash_object (len, hash);
24331             hash = iterative_hash (val2->v.val_vec.array,
24332                                    len * elt_size, hash);
24333           }
24334           break;
24335         case dw_val_class_const_double:
24336           hash = iterative_hash_object (val2->v.val_double.low, hash);
24337           hash = iterative_hash_object (val2->v.val_double.high, hash);
24338           break;
24339         case dw_val_class_addr:
24340           hash = iterative_hash_rtx (val2->v.val_addr, hash);
24341           break;
24342         default:
24343           gcc_unreachable ();
24344         }
24345       break;
24346     case DW_OP_bregx:
24347     case DW_OP_bit_piece:
24348       hash = iterative_hash_object (val1->v.val_int, hash);
24349       hash = iterative_hash_object (val2->v.val_int, hash);
24350       break;
24351     case DW_OP_addr:
24352     hash_addr:
24353       if (loc->dtprel)
24354         {
24355           unsigned char dtprel = 0xd1;
24356           hash = iterative_hash_object (dtprel, hash);
24357         }
24358       hash = iterative_hash_rtx (val1->v.val_addr, hash);
24359       break;
24360     case DW_OP_GNU_implicit_pointer:
24361       hash = iterative_hash_object (val2->v.val_int, hash);
24362       break;
24363     case DW_OP_GNU_entry_value:
24364       hash = hash_loc_operands (val1->v.val_loc, hash);
24365       break;
24366     case DW_OP_GNU_regval_type:
24367     case DW_OP_GNU_deref_type:
24368       {
24369         unsigned int byte_size
24370           = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_byte_size);
24371         unsigned int encoding
24372           = get_AT_unsigned (val2->v.val_die_ref.die, DW_AT_encoding);
24373         hash = iterative_hash_object (val1->v.val_int, hash);
24374         hash = iterative_hash_object (byte_size, hash);
24375         hash = iterative_hash_object (encoding, hash);
24376       }
24377       break;
24378     case DW_OP_GNU_convert:
24379     case DW_OP_GNU_reinterpret:
24380     case DW_OP_GNU_const_type:
24381       {
24382         unsigned int byte_size
24383           = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_byte_size);
24384         unsigned int encoding
24385           = get_AT_unsigned (val1->v.val_die_ref.die, DW_AT_encoding);
24386         hash = iterative_hash_object (byte_size, hash);
24387         hash = iterative_hash_object (encoding, hash);
24388         if (loc->dw_loc_opc != DW_OP_GNU_const_type)
24389           break;
24390         hash = iterative_hash_object (val2->val_class, hash);
24391         switch (val2->val_class)
24392           {
24393           case dw_val_class_const:
24394             hash = iterative_hash_object (val2->v.val_int, hash);
24395             break;
24396           case dw_val_class_vec:
24397             {
24398               unsigned int elt_size = val2->v.val_vec.elt_size;
24399               unsigned int len = val2->v.val_vec.length;
24400
24401               hash = iterative_hash_object (elt_size, hash);
24402               hash = iterative_hash_object (len, hash);
24403               hash = iterative_hash (val2->v.val_vec.array,
24404                                      len * elt_size, hash);
24405             }
24406             break;
24407           case dw_val_class_const_double:
24408             hash = iterative_hash_object (val2->v.val_double.low, hash);
24409             hash = iterative_hash_object (val2->v.val_double.high, hash);
24410             break;
24411           default:
24412             gcc_unreachable ();
24413           }
24414       }
24415       break;
24416
24417     default:
24418       /* Other codes have no operands.  */
24419       break;
24420     }
24421   return hash;
24422 }
24423
24424 /* Iteratively hash the whole DWARF location expression LOC.  */
24425
24426 static inline hashval_t
24427 hash_locs (dw_loc_descr_ref loc, hashval_t hash)
24428 {
24429   dw_loc_descr_ref l;
24430   bool sizes_computed = false;
24431   /* Compute sizes, so that DW_OP_skip/DW_OP_bra can be checksummed.  */
24432   size_of_locs (loc);
24433
24434   for (l = loc; l != NULL; l = l->dw_loc_next)
24435     {
24436       enum dwarf_location_atom opc = l->dw_loc_opc;
24437       hash = iterative_hash_object (opc, hash);
24438       if ((opc == DW_OP_skip || opc == DW_OP_bra) && !sizes_computed)
24439         {
24440           size_of_locs (loc);
24441           sizes_computed = true;
24442         }
24443       hash = hash_loc_operands (l, hash);
24444     }
24445   return hash;
24446 }
24447
24448 /* Compute hash of the whole location list LIST_HEAD.  */
24449
24450 static inline void
24451 hash_loc_list (dw_loc_list_ref list_head)
24452 {
24453   dw_loc_list_ref curr = list_head;
24454   hashval_t hash = 0;
24455
24456   for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
24457     {
24458       hash = iterative_hash (curr->begin, strlen (curr->begin) + 1, hash);
24459       hash = iterative_hash (curr->end, strlen (curr->end) + 1, hash);
24460       if (curr->section)
24461         hash = iterative_hash (curr->section, strlen (curr->section) + 1,
24462                                hash);
24463       hash = hash_locs (curr->expr, hash);
24464     }
24465   list_head->hash = hash;
24466 }
24467
24468 /* Return true if X and Y opcodes have the same operands.  */
24469
24470 static inline bool
24471 compare_loc_operands (dw_loc_descr_ref x, dw_loc_descr_ref y)
24472 {
24473   dw_val_ref valx1 = &x->dw_loc_oprnd1;
24474   dw_val_ref valx2 = &x->dw_loc_oprnd2;
24475   dw_val_ref valy1 = &y->dw_loc_oprnd1;
24476   dw_val_ref valy2 = &y->dw_loc_oprnd2;
24477
24478   switch (x->dw_loc_opc)
24479     {
24480     case DW_OP_const4u:
24481     case DW_OP_const8u:
24482       if (x->dtprel)
24483         goto hash_addr;
24484       /* FALLTHRU */
24485     case DW_OP_const1u:
24486     case DW_OP_const1s:
24487     case DW_OP_const2u:
24488     case DW_OP_const2s:
24489     case DW_OP_const4s:
24490     case DW_OP_const8s:
24491     case DW_OP_constu:
24492     case DW_OP_consts:
24493     case DW_OP_pick:
24494     case DW_OP_plus_uconst:
24495     case DW_OP_breg0:
24496     case DW_OP_breg1:
24497     case DW_OP_breg2:
24498     case DW_OP_breg3:
24499     case DW_OP_breg4:
24500     case DW_OP_breg5:
24501     case DW_OP_breg6:
24502     case DW_OP_breg7:
24503     case DW_OP_breg8:
24504     case DW_OP_breg9:
24505     case DW_OP_breg10:
24506     case DW_OP_breg11:
24507     case DW_OP_breg12:
24508     case DW_OP_breg13:
24509     case DW_OP_breg14:
24510     case DW_OP_breg15:
24511     case DW_OP_breg16:
24512     case DW_OP_breg17:
24513     case DW_OP_breg18:
24514     case DW_OP_breg19:
24515     case DW_OP_breg20:
24516     case DW_OP_breg21:
24517     case DW_OP_breg22:
24518     case DW_OP_breg23:
24519     case DW_OP_breg24:
24520     case DW_OP_breg25:
24521     case DW_OP_breg26:
24522     case DW_OP_breg27:
24523     case DW_OP_breg28:
24524     case DW_OP_breg29:
24525     case DW_OP_breg30:
24526     case DW_OP_breg31:
24527     case DW_OP_regx:
24528     case DW_OP_fbreg:
24529     case DW_OP_piece:
24530     case DW_OP_deref_size:
24531     case DW_OP_xderef_size:
24532       return valx1->v.val_int == valy1->v.val_int;
24533     case DW_OP_skip:
24534     case DW_OP_bra:
24535       gcc_assert (valx1->val_class == dw_val_class_loc
24536                   && valy1->val_class == dw_val_class_loc
24537                   && x->dw_loc_addr == y->dw_loc_addr);
24538       return valx1->v.val_loc->dw_loc_addr == valy1->v.val_loc->dw_loc_addr;
24539     case DW_OP_implicit_value:
24540       if (valx1->v.val_unsigned != valy1->v.val_unsigned
24541           || valx2->val_class != valy2->val_class)
24542         return false;
24543       switch (valx2->val_class)
24544         {
24545         case dw_val_class_const:
24546           return valx2->v.val_int == valy2->v.val_int;
24547         case dw_val_class_vec:
24548           return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
24549                  && valx2->v.val_vec.length == valy2->v.val_vec.length
24550                  && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
24551                             valx2->v.val_vec.elt_size
24552                             * valx2->v.val_vec.length) == 0;
24553         case dw_val_class_const_double:
24554           return valx2->v.val_double.low == valy2->v.val_double.low
24555                  && valx2->v.val_double.high == valy2->v.val_double.high;
24556         case dw_val_class_addr:
24557           return rtx_equal_p (valx2->v.val_addr, valy2->v.val_addr);
24558         default:
24559           gcc_unreachable ();
24560         }
24561     case DW_OP_bregx:
24562     case DW_OP_bit_piece:
24563       return valx1->v.val_int == valy1->v.val_int
24564              && valx2->v.val_int == valy2->v.val_int;
24565     case DW_OP_addr:
24566     hash_addr:
24567       return rtx_equal_p (valx1->v.val_addr, valy1->v.val_addr);
24568     case DW_OP_GNU_implicit_pointer:
24569       return valx1->val_class == dw_val_class_die_ref
24570              && valx1->val_class == valy1->val_class
24571              && valx1->v.val_die_ref.die == valy1->v.val_die_ref.die
24572              && valx2->v.val_int == valy2->v.val_int;
24573     case DW_OP_GNU_entry_value:
24574       return compare_loc_operands (valx1->v.val_loc, valy1->v.val_loc);
24575     case DW_OP_GNU_const_type:
24576       if (valx1->v.val_die_ref.die != valy1->v.val_die_ref.die
24577           || valx2->val_class != valy2->val_class)
24578         return false;
24579       switch (valx2->val_class)
24580         {
24581         case dw_val_class_const:
24582           return valx2->v.val_int == valy2->v.val_int;
24583         case dw_val_class_vec:
24584           return valx2->v.val_vec.elt_size == valy2->v.val_vec.elt_size
24585                  && valx2->v.val_vec.length == valy2->v.val_vec.length
24586                  && memcmp (valx2->v.val_vec.array, valy2->v.val_vec.array,
24587                             valx2->v.val_vec.elt_size
24588                             * valx2->v.val_vec.length) == 0;
24589         case dw_val_class_const_double:
24590           return valx2->v.val_double.low == valy2->v.val_double.low
24591                  && valx2->v.val_double.high == valy2->v.val_double.high;
24592         default:
24593           gcc_unreachable ();
24594         }
24595     case DW_OP_GNU_regval_type:
24596     case DW_OP_GNU_deref_type:
24597       return valx1->v.val_int == valy1->v.val_int
24598              && valx2->v.val_die_ref.die == valy2->v.val_die_ref.die;
24599     case DW_OP_GNU_convert:
24600     case DW_OP_GNU_reinterpret:
24601       return valx1->v.val_die_ref.die == valy1->v.val_die_ref.die;
24602     default:
24603       /* Other codes have no operands.  */
24604       return true;
24605     }
24606 }
24607
24608 /* Return true if DWARF location expressions X and Y are the same.  */
24609
24610 static inline bool
24611 compare_locs (dw_loc_descr_ref x, dw_loc_descr_ref y)
24612 {
24613   for (; x != NULL && y != NULL; x = x->dw_loc_next, y = y->dw_loc_next)
24614     if (x->dw_loc_opc != y->dw_loc_opc
24615         || x->dtprel != y->dtprel
24616         || !compare_loc_operands (x, y))
24617       break;
24618   return x == NULL && y == NULL;
24619 }
24620
24621 /* Return precomputed hash of location list X.  */
24622
24623 static hashval_t
24624 loc_list_hash (const void *x)
24625 {
24626   return ((const struct dw_loc_list_struct *) x)->hash;
24627 }
24628
24629 /* Return 1 if location lists X and Y are the same.  */
24630
24631 static int
24632 loc_list_eq (const void *x, const void *y)
24633 {
24634   const struct dw_loc_list_struct *a = (const struct dw_loc_list_struct *) x;
24635   const struct dw_loc_list_struct *b = (const struct dw_loc_list_struct *) y;
24636   if (a == b)
24637     return 1;
24638   if (a->hash != b->hash)
24639     return 0;
24640   for (; a != NULL && b != NULL; a = a->dw_loc_next, b = b->dw_loc_next)
24641     if (strcmp (a->begin, b->begin) != 0
24642         || strcmp (a->end, b->end) != 0
24643         || (a->section == NULL) != (b->section == NULL)
24644         || (a->section && strcmp (a->section, b->section) != 0)
24645         || !compare_locs (a->expr, b->expr))
24646       break;
24647   return a == NULL && b == NULL;
24648 }
24649
24650 /* Recursively optimize location lists referenced from DIE
24651    children and share them whenever possible.  */
24652
24653 static void
24654 optimize_location_lists_1 (dw_die_ref die, htab_t htab)
24655 {
24656   dw_die_ref c;
24657   dw_attr_ref a;
24658   unsigned ix;
24659   void **slot;
24660
24661   FOR_EACH_VEC_ELT (dw_attr_node, die->die_attr, ix, a)
24662     if (AT_class (a) == dw_val_class_loc_list)
24663       {
24664         dw_loc_list_ref list = AT_loc_list (a);
24665         /* TODO: perform some optimizations here, before hashing
24666            it and storing into the hash table.  */
24667         hash_loc_list (list);
24668         slot = htab_find_slot_with_hash (htab, list, list->hash,
24669                                          INSERT);
24670         if (*slot == NULL)
24671           *slot = (void *) list;
24672         else
24673           a->dw_attr_val.v.val_loc_list = (dw_loc_list_ref) *slot;
24674       }
24675
24676   FOR_EACH_CHILD (die, c, optimize_location_lists_1 (c, htab));
24677 }
24678
24679 /* Optimize location lists referenced from DIE
24680    children and share them whenever possible.  */
24681
24682 static void
24683 optimize_location_lists (dw_die_ref die)
24684 {
24685   htab_t htab = htab_create (500, loc_list_hash, loc_list_eq, NULL);
24686   optimize_location_lists_1 (die, htab);
24687   htab_delete (htab);
24688 }
24689 \f
24690 /* Output stuff that dwarf requires at the end of every file,
24691    and generate the DWARF-2 debugging info.  */
24692
24693 static void
24694 dwarf2out_finish (const char *filename)
24695 {
24696   limbo_die_node *node, *next_node;
24697   comdat_type_node *ctnode;
24698   htab_t comdat_type_table;
24699   unsigned int i;
24700
24701   gen_scheduled_generic_parms_dies ();
24702   gen_remaining_tmpl_value_param_die_attribute ();
24703
24704   /* Add the name for the main input file now.  We delayed this from
24705      dwarf2out_init to avoid complications with PCH.  */
24706   add_name_attribute (comp_unit_die (), remap_debug_filename (filename));
24707   if (!IS_ABSOLUTE_PATH (filename))
24708     add_comp_dir_attribute (comp_unit_die ());
24709   else if (get_AT (comp_unit_die (), DW_AT_comp_dir) == NULL)
24710     {
24711       bool p = false;
24712       htab_traverse (file_table, file_table_relative_p, &p);
24713       if (p)
24714         add_comp_dir_attribute (comp_unit_die ());
24715     }
24716
24717   for (i = 0; i < VEC_length (deferred_locations, deferred_locations_list); i++)
24718     {
24719       add_location_or_const_value_attribute (
24720         VEC_index (deferred_locations, deferred_locations_list, i)->die,
24721         VEC_index (deferred_locations, deferred_locations_list, i)->variable,
24722         false,
24723         DW_AT_location);
24724     }
24725
24726   /* Traverse the limbo die list, and add parent/child links.  The only
24727      dies without parents that should be here are concrete instances of
24728      inline functions, and the comp_unit_die.  We can ignore the comp_unit_die.
24729      For concrete instances, we can get the parent die from the abstract
24730      instance.  */
24731   for (node = limbo_die_list; node; node = next_node)
24732     {
24733       dw_die_ref die = node->die;
24734       next_node = node->next;
24735
24736       if (die->die_parent == NULL)
24737         {
24738           dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
24739
24740           if (origin)
24741             add_child_die (origin->die_parent, die);
24742           else if (is_cu_die (die))
24743             ;
24744           else if (seen_error ())
24745             /* It's OK to be confused by errors in the input.  */
24746             add_child_die (comp_unit_die (), die);
24747           else
24748             {
24749               /* In certain situations, the lexical block containing a
24750                  nested function can be optimized away, which results
24751                  in the nested function die being orphaned.  Likewise
24752                  with the return type of that nested function.  Force
24753                  this to be a child of the containing function.
24754
24755                  It may happen that even the containing function got fully
24756                  inlined and optimized out.  In that case we are lost and
24757                  assign the empty child.  This should not be big issue as
24758                  the function is likely unreachable too.  */
24759               tree context = NULL_TREE;
24760
24761               gcc_assert (node->created_for);
24762
24763               if (DECL_P (node->created_for))
24764                 context = DECL_CONTEXT (node->created_for);
24765               else if (TYPE_P (node->created_for))
24766                 context = TYPE_CONTEXT (node->created_for);
24767
24768               gcc_assert (context
24769                           && (TREE_CODE (context) == FUNCTION_DECL
24770                               || TREE_CODE (context) == NAMESPACE_DECL));
24771
24772               origin = lookup_decl_die (context);
24773               if (origin)
24774                 add_child_die (origin, die);
24775               else
24776                 add_child_die (comp_unit_die (), die);
24777             }
24778         }
24779     }
24780
24781   limbo_die_list = NULL;
24782
24783 #if ENABLE_ASSERT_CHECKING
24784   {
24785     dw_die_ref die = comp_unit_die (), c;
24786     FOR_EACH_CHILD (die, c, gcc_assert (! c->die_mark));
24787   }
24788 #endif
24789   resolve_addr (comp_unit_die ());
24790   move_marked_base_types ();
24791
24792   for (node = deferred_asm_name; node; node = node->next)
24793     {
24794       tree decl = node->created_for;
24795       if (DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl))
24796         {
24797           add_linkage_attr (node->die, decl);
24798           move_linkage_attr (node->die);
24799         }
24800     }
24801
24802   deferred_asm_name = NULL;
24803
24804   /* Walk through the list of incomplete types again, trying once more to
24805      emit full debugging info for them.  */
24806   retry_incomplete_types ();
24807
24808   if (flag_eliminate_unused_debug_types)
24809     prune_unused_types ();
24810
24811   /* Generate separate CUs for each of the include files we've seen.
24812      They will go into limbo_die_list.  */
24813   if (flag_eliminate_dwarf2_dups && ! use_debug_types)
24814     break_out_includes (comp_unit_die ());
24815
24816   /* Generate separate COMDAT sections for type DIEs. */
24817   if (use_debug_types)
24818     {
24819       break_out_comdat_types (comp_unit_die ());
24820
24821       /* Each new type_unit DIE was added to the limbo die list when created.
24822          Since these have all been added to comdat_type_list, clear the
24823          limbo die list.  */
24824       limbo_die_list = NULL;
24825
24826       /* For each new comdat type unit, copy declarations for incomplete
24827          types to make the new unit self-contained (i.e., no direct
24828          references to the main compile unit).  */
24829       for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
24830         copy_decls_for_unworthy_types (ctnode->root_die);
24831       copy_decls_for_unworthy_types (comp_unit_die ());
24832
24833       /* In the process of copying declarations from one unit to another,
24834          we may have left some declarations behind that are no longer
24835          referenced.  Prune them.  */
24836       prune_unused_types ();
24837     }
24838
24839   /* Traverse the DIE's and add add sibling attributes to those DIE's
24840      that have children.  */
24841   add_sibling_attributes (comp_unit_die ());
24842   for (node = limbo_die_list; node; node = node->next)
24843     add_sibling_attributes (node->die);
24844   for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
24845     add_sibling_attributes (ctnode->root_die);
24846
24847   /* Output a terminator label for the .text section.  */
24848   switch_to_section (text_section);
24849   targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
24850   if (cold_text_section)
24851     {
24852       switch_to_section (cold_text_section);
24853       targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
24854     }
24855
24856   /* We can only use the low/high_pc attributes if all of the code was
24857      in .text.  */
24858   if (!have_multiple_function_sections 
24859       || (dwarf_version < 3 && dwarf_strict))
24860     {
24861       /* Don't add if the CU has no associated code.  */
24862       if (text_section_used)
24863         {
24864           add_AT_lbl_id (comp_unit_die (), DW_AT_low_pc, text_section_label);
24865           add_AT_lbl_id (comp_unit_die (), DW_AT_high_pc, text_end_label);
24866         }
24867     }
24868   else
24869     {
24870       unsigned fde_idx = 0;
24871       bool range_list_added = false;
24872
24873       if (text_section_used)
24874         add_ranges_by_labels (comp_unit_die (), text_section_label,
24875                               text_end_label, &range_list_added);
24876       if (cold_text_section_used)
24877         add_ranges_by_labels (comp_unit_die (), cold_text_section_label,
24878                               cold_end_label, &range_list_added);
24879
24880       for (fde_idx = 0; fde_idx < fde_table_in_use; fde_idx++)
24881         {
24882           dw_fde_ref fde = &fde_table[fde_idx];
24883
24884           if (!fde->in_std_section)
24885             add_ranges_by_labels (comp_unit_die (), fde->dw_fde_begin,
24886                                   fde->dw_fde_end, &range_list_added);
24887           if (fde->dw_fde_second_begin && !fde->second_in_std_section)
24888             add_ranges_by_labels (comp_unit_die (), fde->dw_fde_second_begin,
24889                                   fde->dw_fde_second_end, &range_list_added);
24890         }
24891
24892       if (range_list_added)
24893         {
24894           /* We need to give .debug_loc and .debug_ranges an appropriate
24895              "base address".  Use zero so that these addresses become
24896              absolute.  Historically, we've emitted the unexpected
24897              DW_AT_entry_pc instead of DW_AT_low_pc for this purpose.
24898              Emit both to give time for other tools to adapt.  */
24899           add_AT_addr (comp_unit_die (), DW_AT_low_pc, const0_rtx);
24900           if (! dwarf_strict && dwarf_version < 4)
24901             add_AT_addr (comp_unit_die (), DW_AT_entry_pc, const0_rtx);
24902
24903           add_ranges (NULL);
24904         }
24905     }
24906
24907   if (debug_info_level >= DINFO_LEVEL_NORMAL)
24908     add_AT_lineptr (comp_unit_die (), DW_AT_stmt_list,
24909                     debug_line_section_label);
24910
24911   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
24912     add_AT_macptr (comp_unit_die (), DW_AT_macro_info, macinfo_section_label);
24913
24914   if (have_location_lists)
24915     optimize_location_lists (comp_unit_die ());
24916
24917   /* Output all of the compilation units.  We put the main one last so that
24918      the offsets are available to output_pubnames.  */
24919   for (node = limbo_die_list; node; node = node->next)
24920     output_comp_unit (node->die, 0);
24921
24922   comdat_type_table = htab_create (100, htab_ct_hash, htab_ct_eq, NULL);
24923   for (ctnode = comdat_type_list; ctnode != NULL; ctnode = ctnode->next)
24924     {
24925       void **slot = htab_find_slot (comdat_type_table, ctnode, INSERT);
24926
24927       /* Don't output duplicate types.  */
24928       if (*slot != HTAB_EMPTY_ENTRY)
24929         continue;
24930
24931       /* Add a pointer to the line table for the main compilation unit
24932          so that the debugger can make sense of DW_AT_decl_file
24933          attributes.  */
24934       if (debug_info_level >= DINFO_LEVEL_NORMAL)
24935         add_AT_lineptr (ctnode->root_die, DW_AT_stmt_list,
24936                         debug_line_section_label);
24937
24938       output_comdat_type_unit (ctnode);
24939       *slot = ctnode;
24940     }
24941   htab_delete (comdat_type_table);
24942
24943   /* Output the main compilation unit if non-empty or if .debug_macinfo
24944      will be emitted.  */
24945   output_comp_unit (comp_unit_die (), debug_info_level >= DINFO_LEVEL_VERBOSE);
24946
24947   /* Output the abbreviation table.  */
24948   switch_to_section (debug_abbrev_section);
24949   ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
24950   output_abbrev_section ();
24951
24952   /* Output location list section if necessary.  */
24953   if (have_location_lists)
24954     {
24955       /* Output the location lists info.  */
24956       switch_to_section (debug_loc_section);
24957       ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
24958                                    DEBUG_LOC_SECTION_LABEL, 0);
24959       ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
24960       output_location_lists (comp_unit_die ());
24961     }
24962
24963   /* Output public names table if necessary.  */
24964   if (!VEC_empty (pubname_entry, pubname_table))
24965     {
24966       gcc_assert (info_section_emitted);
24967       switch_to_section (debug_pubnames_section);
24968       output_pubnames (pubname_table);
24969     }
24970
24971   /* Output public types table if necessary.  */
24972   /* ??? Only defined by DWARF3, but emitted by Darwin for DWARF2.
24973      It shouldn't hurt to emit it always, since pure DWARF2 consumers
24974      simply won't look for the section.  */
24975   if (!VEC_empty (pubname_entry, pubtype_table))
24976     {
24977       bool empty = false;
24978       
24979       if (flag_eliminate_unused_debug_types)
24980         {
24981           /* The pubtypes table might be emptied by pruning unused items.  */
24982           unsigned i;
24983           pubname_ref p;
24984           empty = true;
24985           FOR_EACH_VEC_ELT (pubname_entry, pubtype_table, i, p)
24986             if (p->die->die_offset != 0)
24987               {
24988                 empty = false;
24989                 break;
24990               }
24991         }
24992       if (!empty)
24993         {
24994           gcc_assert (info_section_emitted);
24995           switch_to_section (debug_pubtypes_section);
24996           output_pubnames (pubtype_table);
24997         }
24998     }
24999
25000   /* Output the address range information if a CU (.debug_info section)
25001      was emitted.  We output an empty table even if we had no functions
25002      to put in it.  This because the consumer has no way to tell the
25003      difference between an empty table that we omitted and failure to
25004      generate a table that would have contained data.  */
25005   if (info_section_emitted)
25006     {
25007       unsigned long aranges_length = size_of_aranges ();
25008
25009       switch_to_section (debug_aranges_section);
25010       output_aranges (aranges_length);
25011     }
25012
25013   /* Output ranges section if necessary.  */
25014   if (ranges_table_in_use)
25015     {
25016       switch_to_section (debug_ranges_section);
25017       ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
25018       output_ranges ();
25019     }
25020
25021   /* Output the source line correspondence table.  We must do this
25022      even if there is no line information.  Otherwise, on an empty
25023      translation unit, we will generate a present, but empty,
25024      .debug_info section.  IRIX 6.5 `nm' will then complain when
25025      examining the file.  This is done late so that any filenames
25026      used by the debug_info section are marked as 'used'.  */
25027   switch_to_section (debug_line_section);
25028   ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
25029   if (! DWARF2_ASM_LINE_DEBUG_INFO)
25030     output_line_info ();
25031
25032   /* Have to end the macro section.  */
25033   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
25034     {
25035       switch_to_section (debug_macinfo_section);
25036       ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
25037       if (!VEC_empty (macinfo_entry, macinfo_table))
25038         output_macinfo ();
25039       dw2_asm_output_data (1, 0, "End compilation unit");
25040     }
25041
25042   /* If we emitted any DW_FORM_strp form attribute, output the string
25043      table too.  */
25044   if (debug_str_hash)
25045     htab_traverse (debug_str_hash, output_indirect_string, NULL);
25046 }
25047
25048 #include "gt-dwarf2out.h"