OSDN Git Service

PR fortran/26769
[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 Free Software Foundation, Inc.
4    Contributed by Gary Funck (gary@intrepid.com).
5    Derived from DWARF 1 implementation of Ron Guilmette (rfg@monkeys.com).
6    Extensively modified by Jason Merrill (jason@cygnus.com).
7
8 This file is part of GCC.
9
10 GCC is free software; you can redistribute it and/or modify it under
11 the terms of the GNU General Public License as published by the Free
12 Software Foundation; either version 2, or (at your option) any later
13 version.
14
15 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or
17 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
18 for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with GCC; see the file COPYING.  If not, write to the Free
22 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
23 02110-1301, USA.  */
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 #include "config.h"
38 #include "system.h"
39 #include "coretypes.h"
40 #include "tm.h"
41 #include "tree.h"
42 #include "version.h"
43 #include "flags.h"
44 #include "real.h"
45 #include "rtl.h"
46 #include "hard-reg-set.h"
47 #include "regs.h"
48 #include "insn-config.h"
49 #include "reload.h"
50 #include "function.h"
51 #include "output.h"
52 #include "expr.h"
53 #include "libfuncs.h"
54 #include "except.h"
55 #include "dwarf2.h"
56 #include "dwarf2out.h"
57 #include "dwarf2asm.h"
58 #include "toplev.h"
59 #include "varray.h"
60 #include "ggc.h"
61 #include "md5.h"
62 #include "tm_p.h"
63 #include "diagnostic.h"
64 #include "debug.h"
65 #include "target.h"
66 #include "langhooks.h"
67 #include "hashtab.h"
68 #include "cgraph.h"
69 #include "input.h"
70
71 #ifdef DWARF2_DEBUGGING_INFO
72 static void dwarf2out_source_line (unsigned int, const char *);
73 #endif
74
75 /* DWARF2 Abbreviation Glossary:
76    CFA = Canonical Frame Address
77            a fixed address on the stack which identifies a call frame.
78            We define it to be the value of SP just before the call insn.
79            The CFA register and offset, which may change during the course
80            of the function, are used to calculate its value at runtime.
81    CFI = Call Frame Instruction
82            an instruction for the DWARF2 abstract machine
83    CIE = Common Information Entry
84            information describing information common to one or more FDEs
85    DIE = Debugging Information Entry
86    FDE = Frame Description Entry
87            information describing the stack call frame, in particular,
88            how to restore registers
89
90    DW_CFA_... = DWARF2 CFA call frame instruction
91    DW_TAG_... = DWARF2 DIE tag */
92
93 #ifndef DWARF2_FRAME_INFO
94 # ifdef DWARF2_DEBUGGING_INFO
95 #  define DWARF2_FRAME_INFO \
96   (write_symbols == DWARF2_DEBUG || write_symbols == VMS_AND_DWARF2_DEBUG)
97 # else
98 #  define DWARF2_FRAME_INFO 0
99 # endif
100 #endif
101
102 /* Map register numbers held in the call frame info that gcc has
103    collected using DWARF_FRAME_REGNUM to those that should be output in
104    .debug_frame and .eh_frame.  */
105 #ifndef DWARF2_FRAME_REG_OUT
106 #define DWARF2_FRAME_REG_OUT(REGNO, FOR_EH) (REGNO)
107 #endif
108
109 /* Decide whether we want to emit frame unwind information for the current
110    translation unit.  */
111
112 int
113 dwarf2out_do_frame (void)
114 {
115   /* We want to emit correct CFA location expressions or lists, so we
116      have to return true if we're going to output debug info, even if
117      we're not going to output frame or unwind info.  */
118   return (write_symbols == DWARF2_DEBUG
119           || write_symbols == VMS_AND_DWARF2_DEBUG
120           || DWARF2_FRAME_INFO
121 #ifdef DWARF2_UNWIND_INFO
122           || (DWARF2_UNWIND_INFO
123               && (flag_unwind_tables
124                   || (flag_exceptions && ! USING_SJLJ_EXCEPTIONS)))
125 #endif
126           );
127 }
128
129 /* The size of the target's pointer type.  */
130 #ifndef PTR_SIZE
131 #define PTR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
132 #endif
133
134 /* Array of RTXes referenced by the debugging information, which therefore
135    must be kept around forever.  */
136 static GTY(()) VEC(rtx,gc) *used_rtx_array;
137
138 /* A pointer to the base of a list of incomplete types which might be
139    completed at some later time.  incomplete_types_list needs to be a
140    VEC(tree,gc) because we want to tell the garbage collector about
141    it.  */
142 static GTY(()) VEC(tree,gc) *incomplete_types;
143
144 /* A pointer to the base of a table of references to declaration
145    scopes.  This table is a display which tracks the nesting
146    of declaration scopes at the current scope and containing
147    scopes.  This table is used to find the proper place to
148    define type declaration DIE's.  */
149 static GTY(()) VEC(tree,gc) *decl_scope_table;
150
151 /* Pointers to various DWARF2 sections.  */
152 static GTY(()) section *debug_info_section;
153 static GTY(()) section *debug_abbrev_section;
154 static GTY(()) section *debug_aranges_section;
155 static GTY(()) section *debug_macinfo_section;
156 static GTY(()) section *debug_line_section;
157 static GTY(()) section *debug_loc_section;
158 static GTY(()) section *debug_pubnames_section;
159 static GTY(()) section *debug_str_section;
160 static GTY(()) section *debug_ranges_section;
161 static GTY(()) section *debug_frame_section;
162
163 /* How to start an assembler comment.  */
164 #ifndef ASM_COMMENT_START
165 #define ASM_COMMENT_START ";#"
166 #endif
167
168 typedef struct dw_cfi_struct *dw_cfi_ref;
169 typedef struct dw_fde_struct *dw_fde_ref;
170 typedef union  dw_cfi_oprnd_struct *dw_cfi_oprnd_ref;
171
172 /* Call frames are described using a sequence of Call Frame
173    Information instructions.  The register number, offset
174    and address fields are provided as possible operands;
175    their use is selected by the opcode field.  */
176
177 enum dw_cfi_oprnd_type {
178   dw_cfi_oprnd_unused,
179   dw_cfi_oprnd_reg_num,
180   dw_cfi_oprnd_offset,
181   dw_cfi_oprnd_addr,
182   dw_cfi_oprnd_loc
183 };
184
185 typedef union dw_cfi_oprnd_struct GTY(())
186 {
187   unsigned int GTY ((tag ("dw_cfi_oprnd_reg_num"))) dw_cfi_reg_num;
188   HOST_WIDE_INT GTY ((tag ("dw_cfi_oprnd_offset"))) dw_cfi_offset;
189   const char * GTY ((tag ("dw_cfi_oprnd_addr"))) dw_cfi_addr;
190   struct dw_loc_descr_struct * GTY ((tag ("dw_cfi_oprnd_loc"))) dw_cfi_loc;
191 }
192 dw_cfi_oprnd;
193
194 typedef struct dw_cfi_struct GTY(())
195 {
196   dw_cfi_ref dw_cfi_next;
197   enum dwarf_call_frame_info dw_cfi_opc;
198   dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd1_desc (%1.dw_cfi_opc)")))
199     dw_cfi_oprnd1;
200   dw_cfi_oprnd GTY ((desc ("dw_cfi_oprnd2_desc (%1.dw_cfi_opc)")))
201     dw_cfi_oprnd2;
202 }
203 dw_cfi_node;
204
205 /* This is how we define the location of the CFA. We use to handle it
206    as REG + OFFSET all the time,  but now it can be more complex.
207    It can now be either REG + CFA_OFFSET or *(REG + BASE_OFFSET) + CFA_OFFSET.
208    Instead of passing around REG and OFFSET, we pass a copy
209    of this structure.  */
210 typedef struct cfa_loc GTY(())
211 {
212   HOST_WIDE_INT offset;
213   HOST_WIDE_INT base_offset;
214   unsigned int reg;
215   int indirect;            /* 1 if CFA is accessed via a dereference.  */
216 } dw_cfa_location;
217
218 /* All call frame descriptions (FDE's) in the GCC generated DWARF
219    refer to a single Common Information Entry (CIE), defined at
220    the beginning of the .debug_frame section.  This use of a single
221    CIE obviates the need to keep track of multiple CIE's
222    in the DWARF generation routines below.  */
223
224 typedef struct dw_fde_struct GTY(())
225 {
226   tree decl;
227   const char *dw_fde_begin;
228   const char *dw_fde_current_label;
229   const char *dw_fde_end;
230   const char *dw_fde_hot_section_label;
231   const char *dw_fde_hot_section_end_label;
232   const char *dw_fde_unlikely_section_label;
233   const char *dw_fde_unlikely_section_end_label;
234   bool dw_fde_switched_sections;
235   dw_cfi_ref dw_fde_cfi;
236   unsigned funcdef_number;
237   unsigned all_throwers_are_sibcalls : 1;
238   unsigned nothrow : 1;
239   unsigned uses_eh_lsda : 1;
240 }
241 dw_fde_node;
242
243 /* Maximum size (in bytes) of an artificially generated label.  */
244 #define MAX_ARTIFICIAL_LABEL_BYTES      30
245
246 /* The size of addresses as they appear in the Dwarf 2 data.
247    Some architectures use word addresses to refer to code locations,
248    but Dwarf 2 info always uses byte addresses.  On such machines,
249    Dwarf 2 addresses need to be larger than the architecture's
250    pointers.  */
251 #ifndef DWARF2_ADDR_SIZE
252 #define DWARF2_ADDR_SIZE (POINTER_SIZE / BITS_PER_UNIT)
253 #endif
254
255 /* The size in bytes of a DWARF field indicating an offset or length
256    relative to a debug info section, specified to be 4 bytes in the
257    DWARF-2 specification.  The SGI/MIPS ABI defines it to be the same
258    as PTR_SIZE.  */
259
260 #ifndef DWARF_OFFSET_SIZE
261 #define DWARF_OFFSET_SIZE 4
262 #endif
263
264 /* According to the (draft) DWARF 3 specification, the initial length
265    should either be 4 or 12 bytes.  When it's 12 bytes, the first 4
266    bytes are 0xffffffff, followed by the length stored in the next 8
267    bytes.
268
269    However, the SGI/MIPS ABI uses an initial length which is equal to
270    DWARF_OFFSET_SIZE.  It is defined (elsewhere) accordingly.  */
271
272 #ifndef DWARF_INITIAL_LENGTH_SIZE
273 #define DWARF_INITIAL_LENGTH_SIZE (DWARF_OFFSET_SIZE == 4 ? 4 : 12)
274 #endif
275
276 #define DWARF_VERSION 2
277
278 /* Round SIZE up to the nearest BOUNDARY.  */
279 #define DWARF_ROUND(SIZE,BOUNDARY) \
280   ((((SIZE) + (BOUNDARY) - 1) / (BOUNDARY)) * (BOUNDARY))
281
282 /* Offsets recorded in opcodes are a multiple of this alignment factor.  */
283 #ifndef DWARF_CIE_DATA_ALIGNMENT
284 #ifdef STACK_GROWS_DOWNWARD
285 #define DWARF_CIE_DATA_ALIGNMENT (-((int) UNITS_PER_WORD))
286 #else
287 #define DWARF_CIE_DATA_ALIGNMENT ((int) UNITS_PER_WORD)
288 #endif
289 #endif
290
291 /* CIE identifier.  */
292 #if HOST_BITS_PER_WIDE_INT >= 64
293 #define DWARF_CIE_ID \
294   (unsigned HOST_WIDE_INT) (DWARF_OFFSET_SIZE == 4 ? DW_CIE_ID : DW64_CIE_ID)
295 #else
296 #define DWARF_CIE_ID DW_CIE_ID
297 #endif
298
299 /* A pointer to the base of a table that contains frame description
300    information for each routine.  */
301 static GTY((length ("fde_table_allocated"))) dw_fde_ref fde_table;
302
303 /* Number of elements currently allocated for fde_table.  */
304 static GTY(()) unsigned fde_table_allocated;
305
306 /* Number of elements in fde_table currently in use.  */
307 static GTY(()) unsigned fde_table_in_use;
308
309 /* Size (in elements) of increments by which we may expand the
310    fde_table.  */
311 #define FDE_TABLE_INCREMENT 256
312
313 /* A list of call frame insns for the CIE.  */
314 static GTY(()) dw_cfi_ref cie_cfi_head;
315
316 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
317 /* Some DWARF extensions (e.g., MIPS/SGI) implement a subprogram
318    attribute that accelerates the lookup of the FDE associated
319    with the subprogram.  This variable holds the table index of the FDE
320    associated with the current function (body) definition.  */
321 static unsigned current_funcdef_fde;
322 #endif
323
324 struct indirect_string_node GTY(())
325 {
326   const char *str;
327   unsigned int refcount;
328   unsigned int form;
329   char *label;
330 };
331
332 static GTY ((param_is (struct indirect_string_node))) htab_t debug_str_hash;
333
334 static GTY(()) int dw2_string_counter;
335 static GTY(()) unsigned long dwarf2out_cfi_label_num;
336
337 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
338
339 /* Forward declarations for functions defined in this file.  */
340
341 static char *stripattributes (const char *);
342 static const char *dwarf_cfi_name (unsigned);
343 static dw_cfi_ref new_cfi (void);
344 static void add_cfi (dw_cfi_ref *, dw_cfi_ref);
345 static void add_fde_cfi (const char *, dw_cfi_ref);
346 static void lookup_cfa_1 (dw_cfi_ref, dw_cfa_location *);
347 static void lookup_cfa (dw_cfa_location *);
348 static void reg_save (const char *, unsigned, unsigned, HOST_WIDE_INT);
349 static void initial_return_save (rtx);
350 static HOST_WIDE_INT stack_adjust_offset (rtx);
351 static void output_cfi (dw_cfi_ref, dw_fde_ref, int);
352 static void output_call_frame_info (int);
353 static void dwarf2out_stack_adjust (rtx, bool);
354 static void flush_queued_reg_saves (void);
355 static bool clobbers_queued_reg_save (rtx);
356 static void dwarf2out_frame_debug_expr (rtx, const char *);
357
358 /* Support for complex CFA locations.  */
359 static void output_cfa_loc (dw_cfi_ref);
360 static void get_cfa_from_loc_descr (dw_cfa_location *,
361                                     struct dw_loc_descr_struct *);
362 static struct dw_loc_descr_struct *build_cfa_loc
363   (dw_cfa_location *, HOST_WIDE_INT);
364 static void def_cfa_1 (const char *, dw_cfa_location *);
365
366 /* How to start an assembler comment.  */
367 #ifndef ASM_COMMENT_START
368 #define ASM_COMMENT_START ";#"
369 #endif
370
371 /* Data and reference forms for relocatable data.  */
372 #define DW_FORM_data (DWARF_OFFSET_SIZE == 8 ? DW_FORM_data8 : DW_FORM_data4)
373 #define DW_FORM_ref (DWARF_OFFSET_SIZE == 8 ? DW_FORM_ref8 : DW_FORM_ref4)
374
375 #ifndef DEBUG_FRAME_SECTION
376 #define DEBUG_FRAME_SECTION     ".debug_frame"
377 #endif
378
379 #ifndef FUNC_BEGIN_LABEL
380 #define FUNC_BEGIN_LABEL        "LFB"
381 #endif
382
383 #ifndef FUNC_END_LABEL
384 #define FUNC_END_LABEL          "LFE"
385 #endif
386
387 #ifndef FRAME_BEGIN_LABEL
388 #define FRAME_BEGIN_LABEL       "Lframe"
389 #endif
390 #define CIE_AFTER_SIZE_LABEL    "LSCIE"
391 #define CIE_END_LABEL           "LECIE"
392 #define FDE_LABEL               "LSFDE"
393 #define FDE_AFTER_SIZE_LABEL    "LASFDE"
394 #define FDE_END_LABEL           "LEFDE"
395 #define LINE_NUMBER_BEGIN_LABEL "LSLT"
396 #define LINE_NUMBER_END_LABEL   "LELT"
397 #define LN_PROLOG_AS_LABEL      "LASLTP"
398 #define LN_PROLOG_END_LABEL     "LELTP"
399 #define DIE_LABEL_PREFIX        "DW"
400
401 /* The DWARF 2 CFA column which tracks the return address.  Normally this
402    is the column for PC, or the first column after all of the hard
403    registers.  */
404 #ifndef DWARF_FRAME_RETURN_COLUMN
405 #ifdef PC_REGNUM
406 #define DWARF_FRAME_RETURN_COLUMN       DWARF_FRAME_REGNUM (PC_REGNUM)
407 #else
408 #define DWARF_FRAME_RETURN_COLUMN       DWARF_FRAME_REGISTERS
409 #endif
410 #endif
411
412 /* The mapping from gcc register number to DWARF 2 CFA column number.  By
413    default, we just provide columns for all registers.  */
414 #ifndef DWARF_FRAME_REGNUM
415 #define DWARF_FRAME_REGNUM(REG) DBX_REGISTER_NUMBER (REG)
416 #endif
417 \f
418 /* Hook used by __throw.  */
419
420 rtx
421 expand_builtin_dwarf_sp_column (void)
422 {
423   unsigned int dwarf_regnum = DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM);
424   return GEN_INT (DWARF2_FRAME_REG_OUT (dwarf_regnum, 1));
425 }
426
427 /* Return a pointer to a copy of the section string name S with all
428    attributes stripped off, and an asterisk prepended (for assemble_name).  */
429
430 static inline char *
431 stripattributes (const char *s)
432 {
433   char *stripped = XNEWVEC (char, strlen (s) + 2);
434   char *p = stripped;
435
436   *p++ = '*';
437
438   while (*s && *s != ',')
439     *p++ = *s++;
440
441   *p = '\0';
442   return stripped;
443 }
444
445 /* Generate code to initialize the register size table.  */
446
447 void
448 expand_builtin_init_dwarf_reg_sizes (tree address)
449 {
450   unsigned int i;
451   enum machine_mode mode = TYPE_MODE (char_type_node);
452   rtx addr = expand_normal (address);
453   rtx mem = gen_rtx_MEM (BLKmode, addr);
454   bool wrote_return_column = false;
455
456   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
457     {
458       int rnum = DWARF2_FRAME_REG_OUT (DWARF_FRAME_REGNUM (i), 1);
459       
460       if (rnum < DWARF_FRAME_REGISTERS)
461         {
462           HOST_WIDE_INT offset = rnum * GET_MODE_SIZE (mode);
463           enum machine_mode save_mode = reg_raw_mode[i];
464           HOST_WIDE_INT size;
465           
466           if (HARD_REGNO_CALL_PART_CLOBBERED (i, save_mode))
467             save_mode = choose_hard_reg_mode (i, 1, true);
468           if (DWARF_FRAME_REGNUM (i) == DWARF_FRAME_RETURN_COLUMN)
469             {
470               if (save_mode == VOIDmode)
471                 continue;
472               wrote_return_column = true;
473             }
474           size = GET_MODE_SIZE (save_mode);
475           if (offset < 0)
476             continue;
477           
478           emit_move_insn (adjust_address (mem, mode, offset),
479                           gen_int_mode (size, mode));
480         }
481     }
482
483 #ifdef DWARF_ALT_FRAME_RETURN_COLUMN
484   gcc_assert (wrote_return_column);
485   i = DWARF_ALT_FRAME_RETURN_COLUMN;
486   wrote_return_column = false;
487 #else
488   i = DWARF_FRAME_RETURN_COLUMN;
489 #endif
490
491   if (! wrote_return_column)
492     {
493       enum machine_mode save_mode = Pmode;
494       HOST_WIDE_INT offset = i * GET_MODE_SIZE (mode);
495       HOST_WIDE_INT size = GET_MODE_SIZE (save_mode);
496       emit_move_insn (adjust_address (mem, mode, offset), GEN_INT (size));
497     }
498 }
499
500 /* Convert a DWARF call frame info. operation to its string name */
501
502 static const char *
503 dwarf_cfi_name (unsigned int cfi_opc)
504 {
505   switch (cfi_opc)
506     {
507     case DW_CFA_advance_loc:
508       return "DW_CFA_advance_loc";
509     case DW_CFA_offset:
510       return "DW_CFA_offset";
511     case DW_CFA_restore:
512       return "DW_CFA_restore";
513     case DW_CFA_nop:
514       return "DW_CFA_nop";
515     case DW_CFA_set_loc:
516       return "DW_CFA_set_loc";
517     case DW_CFA_advance_loc1:
518       return "DW_CFA_advance_loc1";
519     case DW_CFA_advance_loc2:
520       return "DW_CFA_advance_loc2";
521     case DW_CFA_advance_loc4:
522       return "DW_CFA_advance_loc4";
523     case DW_CFA_offset_extended:
524       return "DW_CFA_offset_extended";
525     case DW_CFA_restore_extended:
526       return "DW_CFA_restore_extended";
527     case DW_CFA_undefined:
528       return "DW_CFA_undefined";
529     case DW_CFA_same_value:
530       return "DW_CFA_same_value";
531     case DW_CFA_register:
532       return "DW_CFA_register";
533     case DW_CFA_remember_state:
534       return "DW_CFA_remember_state";
535     case DW_CFA_restore_state:
536       return "DW_CFA_restore_state";
537     case DW_CFA_def_cfa:
538       return "DW_CFA_def_cfa";
539     case DW_CFA_def_cfa_register:
540       return "DW_CFA_def_cfa_register";
541     case DW_CFA_def_cfa_offset:
542       return "DW_CFA_def_cfa_offset";
543
544     /* DWARF 3 */
545     case DW_CFA_def_cfa_expression:
546       return "DW_CFA_def_cfa_expression";
547     case DW_CFA_expression:
548       return "DW_CFA_expression";
549     case DW_CFA_offset_extended_sf:
550       return "DW_CFA_offset_extended_sf";
551     case DW_CFA_def_cfa_sf:
552       return "DW_CFA_def_cfa_sf";
553     case DW_CFA_def_cfa_offset_sf:
554       return "DW_CFA_def_cfa_offset_sf";
555
556     /* SGI/MIPS specific */
557     case DW_CFA_MIPS_advance_loc8:
558       return "DW_CFA_MIPS_advance_loc8";
559
560     /* GNU extensions */
561     case DW_CFA_GNU_window_save:
562       return "DW_CFA_GNU_window_save";
563     case DW_CFA_GNU_args_size:
564       return "DW_CFA_GNU_args_size";
565     case DW_CFA_GNU_negative_offset_extended:
566       return "DW_CFA_GNU_negative_offset_extended";
567
568     default:
569       return "DW_CFA_<unknown>";
570     }
571 }
572
573 /* Return a pointer to a newly allocated Call Frame Instruction.  */
574
575 static inline dw_cfi_ref
576 new_cfi (void)
577 {
578   dw_cfi_ref cfi = ggc_alloc (sizeof (dw_cfi_node));
579
580   cfi->dw_cfi_next = NULL;
581   cfi->dw_cfi_oprnd1.dw_cfi_reg_num = 0;
582   cfi->dw_cfi_oprnd2.dw_cfi_reg_num = 0;
583
584   return cfi;
585 }
586
587 /* Add a Call Frame Instruction to list of instructions.  */
588
589 static inline void
590 add_cfi (dw_cfi_ref *list_head, dw_cfi_ref cfi)
591 {
592   dw_cfi_ref *p;
593
594   /* Find the end of the chain.  */
595   for (p = list_head; (*p) != NULL; p = &(*p)->dw_cfi_next)
596     ;
597
598   *p = cfi;
599 }
600
601 /* Generate a new label for the CFI info to refer to.  */
602
603 char *
604 dwarf2out_cfi_label (void)
605 {
606   static char label[20];
607
608   ASM_GENERATE_INTERNAL_LABEL (label, "LCFI", dwarf2out_cfi_label_num++);
609   ASM_OUTPUT_LABEL (asm_out_file, label);
610   return label;
611 }
612
613 /* Add CFI to the current fde at the PC value indicated by LABEL if specified,
614    or to the CIE if LABEL is NULL.  */
615
616 static void
617 add_fde_cfi (const char *label, dw_cfi_ref cfi)
618 {
619   if (label)
620     {
621       dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
622
623       if (*label == 0)
624         label = dwarf2out_cfi_label ();
625
626       if (fde->dw_fde_current_label == NULL
627           || strcmp (label, fde->dw_fde_current_label) != 0)
628         {
629           dw_cfi_ref xcfi;
630
631           fde->dw_fde_current_label = label = xstrdup (label);
632
633           /* Set the location counter to the new label.  */
634           xcfi = new_cfi ();
635           xcfi->dw_cfi_opc = DW_CFA_advance_loc4;
636           xcfi->dw_cfi_oprnd1.dw_cfi_addr = label;
637           add_cfi (&fde->dw_fde_cfi, xcfi);
638         }
639
640       add_cfi (&fde->dw_fde_cfi, cfi);
641     }
642
643   else
644     add_cfi (&cie_cfi_head, cfi);
645 }
646
647 /* Subroutine of lookup_cfa.  */
648
649 static void
650 lookup_cfa_1 (dw_cfi_ref cfi, dw_cfa_location *loc)
651 {
652   switch (cfi->dw_cfi_opc)
653     {
654     case DW_CFA_def_cfa_offset:
655       loc->offset = cfi->dw_cfi_oprnd1.dw_cfi_offset;
656       break;
657     case DW_CFA_def_cfa_offset_sf:
658       loc->offset
659         = cfi->dw_cfi_oprnd1.dw_cfi_offset * DWARF_CIE_DATA_ALIGNMENT;
660       break;
661     case DW_CFA_def_cfa_register:
662       loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
663       break;
664     case DW_CFA_def_cfa:
665       loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
666       loc->offset = cfi->dw_cfi_oprnd2.dw_cfi_offset;
667       break;
668     case DW_CFA_def_cfa_sf:
669       loc->reg = cfi->dw_cfi_oprnd1.dw_cfi_reg_num;
670       loc->offset
671         = cfi->dw_cfi_oprnd2.dw_cfi_offset * DWARF_CIE_DATA_ALIGNMENT;
672       break;
673     case DW_CFA_def_cfa_expression:
674       get_cfa_from_loc_descr (loc, cfi->dw_cfi_oprnd1.dw_cfi_loc);
675       break;
676     default:
677       break;
678     }
679 }
680
681 /* Find the previous value for the CFA.  */
682
683 static void
684 lookup_cfa (dw_cfa_location *loc)
685 {
686   dw_cfi_ref cfi;
687
688   loc->reg = INVALID_REGNUM;
689   loc->offset = 0;
690   loc->indirect = 0;
691   loc->base_offset = 0;
692
693   for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
694     lookup_cfa_1 (cfi, loc);
695
696   if (fde_table_in_use)
697     {
698       dw_fde_ref fde = &fde_table[fde_table_in_use - 1];
699       for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
700         lookup_cfa_1 (cfi, loc);
701     }
702 }
703
704 /* The current rule for calculating the DWARF2 canonical frame address.  */
705 static dw_cfa_location cfa;
706
707 /* The register used for saving registers to the stack, and its offset
708    from the CFA.  */
709 static dw_cfa_location cfa_store;
710
711 /* The running total of the size of arguments pushed onto the stack.  */
712 static HOST_WIDE_INT args_size;
713
714 /* The last args_size we actually output.  */
715 static HOST_WIDE_INT old_args_size;
716
717 /* Entry point to update the canonical frame address (CFA).
718    LABEL is passed to add_fde_cfi.  The value of CFA is now to be
719    calculated from REG+OFFSET.  */
720
721 void
722 dwarf2out_def_cfa (const char *label, unsigned int reg, HOST_WIDE_INT offset)
723 {
724   dw_cfa_location loc;
725   loc.indirect = 0;
726   loc.base_offset = 0;
727   loc.reg = reg;
728   loc.offset = offset;
729   def_cfa_1 (label, &loc);
730 }
731
732 /* Determine if two dw_cfa_location structures define the same data.  */
733
734 static bool
735 cfa_equal_p (const dw_cfa_location *loc1, const dw_cfa_location *loc2)
736 {
737   return (loc1->reg == loc2->reg
738           && loc1->offset == loc2->offset
739           && loc1->indirect == loc2->indirect
740           && (loc1->indirect == 0
741               || loc1->base_offset == loc2->base_offset));
742 }
743
744 /* This routine does the actual work.  The CFA is now calculated from
745    the dw_cfa_location structure.  */
746
747 static void
748 def_cfa_1 (const char *label, dw_cfa_location *loc_p)
749 {
750   dw_cfi_ref cfi;
751   dw_cfa_location old_cfa, loc;
752
753   cfa = *loc_p;
754   loc = *loc_p;
755
756   if (cfa_store.reg == loc.reg && loc.indirect == 0)
757     cfa_store.offset = loc.offset;
758
759   loc.reg = DWARF_FRAME_REGNUM (loc.reg);
760   lookup_cfa (&old_cfa);
761
762   /* If nothing changed, no need to issue any call frame instructions.  */
763   if (cfa_equal_p (&loc, &old_cfa))
764     return;
765
766   cfi = new_cfi ();
767
768   if (loc.reg == old_cfa.reg && !loc.indirect)
769     {
770       /* Construct a "DW_CFA_def_cfa_offset <offset>" instruction, indicating
771          the CFA register did not change but the offset did.  */
772       if (loc.offset < 0)
773         {
774           HOST_WIDE_INT f_offset = loc.offset / DWARF_CIE_DATA_ALIGNMENT;
775           gcc_assert (f_offset * DWARF_CIE_DATA_ALIGNMENT == loc.offset);
776
777           cfi->dw_cfi_opc = DW_CFA_def_cfa_offset_sf;
778           cfi->dw_cfi_oprnd1.dw_cfi_offset = f_offset;
779         }
780       else
781         {
782           cfi->dw_cfi_opc = DW_CFA_def_cfa_offset;
783           cfi->dw_cfi_oprnd1.dw_cfi_offset = loc.offset;
784         }
785     }
786
787 #ifndef MIPS_DEBUGGING_INFO  /* SGI dbx thinks this means no offset.  */
788   else if (loc.offset == old_cfa.offset
789            && old_cfa.reg != INVALID_REGNUM
790            && !loc.indirect)
791     {
792       /* Construct a "DW_CFA_def_cfa_register <register>" instruction,
793          indicating the CFA register has changed to <register> but the
794          offset has not changed.  */
795       cfi->dw_cfi_opc = DW_CFA_def_cfa_register;
796       cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
797     }
798 #endif
799
800   else if (loc.indirect == 0)
801     {
802       /* Construct a "DW_CFA_def_cfa <register> <offset>" instruction,
803          indicating the CFA register has changed to <register> with
804          the specified offset.  */
805       if (loc.offset < 0)
806         {
807           HOST_WIDE_INT f_offset = loc.offset / DWARF_CIE_DATA_ALIGNMENT;
808           gcc_assert (f_offset * DWARF_CIE_DATA_ALIGNMENT == loc.offset);
809
810           cfi->dw_cfi_opc = DW_CFA_def_cfa_sf;
811           cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
812           cfi->dw_cfi_oprnd2.dw_cfi_offset = f_offset;
813         }
814       else
815         {
816           cfi->dw_cfi_opc = DW_CFA_def_cfa;
817           cfi->dw_cfi_oprnd1.dw_cfi_reg_num = loc.reg;
818           cfi->dw_cfi_oprnd2.dw_cfi_offset = loc.offset;
819         }
820     }
821   else
822     {
823       /* Construct a DW_CFA_def_cfa_expression instruction to
824          calculate the CFA using a full location expression since no
825          register-offset pair is available.  */
826       struct dw_loc_descr_struct *loc_list;
827
828       cfi->dw_cfi_opc = DW_CFA_def_cfa_expression;
829       loc_list = build_cfa_loc (&loc, 0);
830       cfi->dw_cfi_oprnd1.dw_cfi_loc = loc_list;
831     }
832
833   add_fde_cfi (label, cfi);
834 }
835
836 /* Add the CFI for saving a register.  REG is the CFA column number.
837    LABEL is passed to add_fde_cfi.
838    If SREG is -1, the register is saved at OFFSET from the CFA;
839    otherwise it is saved in SREG.  */
840
841 static void
842 reg_save (const char *label, unsigned int reg, unsigned int sreg, HOST_WIDE_INT offset)
843 {
844   dw_cfi_ref cfi = new_cfi ();
845
846   cfi->dw_cfi_oprnd1.dw_cfi_reg_num = reg;
847
848   if (sreg == INVALID_REGNUM)
849     {
850       if (reg & ~0x3f)
851         /* The register number won't fit in 6 bits, so we have to use
852            the long form.  */
853         cfi->dw_cfi_opc = DW_CFA_offset_extended;
854       else
855         cfi->dw_cfi_opc = DW_CFA_offset;
856
857 #ifdef ENABLE_CHECKING
858       {
859         /* If we get an offset that is not a multiple of
860            DWARF_CIE_DATA_ALIGNMENT, there is either a bug in the
861            definition of DWARF_CIE_DATA_ALIGNMENT, or a bug in the machine
862            description.  */
863         HOST_WIDE_INT check_offset = offset / DWARF_CIE_DATA_ALIGNMENT;
864
865         gcc_assert (check_offset * DWARF_CIE_DATA_ALIGNMENT == offset);
866       }
867 #endif
868       offset /= DWARF_CIE_DATA_ALIGNMENT;
869       if (offset < 0)
870         cfi->dw_cfi_opc = DW_CFA_offset_extended_sf;
871
872       cfi->dw_cfi_oprnd2.dw_cfi_offset = offset;
873     }
874   else if (sreg == reg)
875     cfi->dw_cfi_opc = DW_CFA_same_value;
876   else
877     {
878       cfi->dw_cfi_opc = DW_CFA_register;
879       cfi->dw_cfi_oprnd2.dw_cfi_reg_num = sreg;
880     }
881
882   add_fde_cfi (label, cfi);
883 }
884
885 /* Add the CFI for saving a register window.  LABEL is passed to reg_save.
886    This CFI tells the unwinder that it needs to restore the window registers
887    from the previous frame's window save area.
888
889    ??? Perhaps we should note in the CIE where windows are saved (instead of
890    assuming 0(cfa)) and what registers are in the window.  */
891
892 void
893 dwarf2out_window_save (const char *label)
894 {
895   dw_cfi_ref cfi = new_cfi ();
896
897   cfi->dw_cfi_opc = DW_CFA_GNU_window_save;
898   add_fde_cfi (label, cfi);
899 }
900
901 /* Add a CFI to update the running total of the size of arguments
902    pushed onto the stack.  */
903
904 void
905 dwarf2out_args_size (const char *label, HOST_WIDE_INT size)
906 {
907   dw_cfi_ref cfi;
908
909   if (size == old_args_size)
910     return;
911
912   old_args_size = size;
913
914   cfi = new_cfi ();
915   cfi->dw_cfi_opc = DW_CFA_GNU_args_size;
916   cfi->dw_cfi_oprnd1.dw_cfi_offset = size;
917   add_fde_cfi (label, cfi);
918 }
919
920 /* Entry point for saving a register to the stack.  REG is the GCC register
921    number.  LABEL and OFFSET are passed to reg_save.  */
922
923 void
924 dwarf2out_reg_save (const char *label, unsigned int reg, HOST_WIDE_INT offset)
925 {
926   reg_save (label, DWARF_FRAME_REGNUM (reg), INVALID_REGNUM, offset);
927 }
928
929 /* Entry point for saving the return address in the stack.
930    LABEL and OFFSET are passed to reg_save.  */
931
932 void
933 dwarf2out_return_save (const char *label, HOST_WIDE_INT offset)
934 {
935   reg_save (label, DWARF_FRAME_RETURN_COLUMN, INVALID_REGNUM, offset);
936 }
937
938 /* Entry point for saving the return address in a register.
939    LABEL and SREG are passed to reg_save.  */
940
941 void
942 dwarf2out_return_reg (const char *label, unsigned int sreg)
943 {
944   reg_save (label, DWARF_FRAME_RETURN_COLUMN, DWARF_FRAME_REGNUM (sreg), 0);
945 }
946
947 /* Record the initial position of the return address.  RTL is
948    INCOMING_RETURN_ADDR_RTX.  */
949
950 static void
951 initial_return_save (rtx rtl)
952 {
953   unsigned int reg = INVALID_REGNUM;
954   HOST_WIDE_INT offset = 0;
955
956   switch (GET_CODE (rtl))
957     {
958     case REG:
959       /* RA is in a register.  */
960       reg = DWARF_FRAME_REGNUM (REGNO (rtl));
961       break;
962
963     case MEM:
964       /* RA is on the stack.  */
965       rtl = XEXP (rtl, 0);
966       switch (GET_CODE (rtl))
967         {
968         case REG:
969           gcc_assert (REGNO (rtl) == STACK_POINTER_REGNUM);
970           offset = 0;
971           break;
972
973         case PLUS:
974           gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
975           offset = INTVAL (XEXP (rtl, 1));
976           break;
977
978         case MINUS:
979           gcc_assert (REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM);
980           offset = -INTVAL (XEXP (rtl, 1));
981           break;
982
983         default:
984           gcc_unreachable ();
985         }
986
987       break;
988
989     case PLUS:
990       /* The return address is at some offset from any value we can
991          actually load.  For instance, on the SPARC it is in %i7+8. Just
992          ignore the offset for now; it doesn't matter for unwinding frames.  */
993       gcc_assert (GET_CODE (XEXP (rtl, 1)) == CONST_INT);
994       initial_return_save (XEXP (rtl, 0));
995       return;
996
997     default:
998       gcc_unreachable ();
999     }
1000
1001   if (reg != DWARF_FRAME_RETURN_COLUMN)
1002     reg_save (NULL, DWARF_FRAME_RETURN_COLUMN, reg, offset - cfa.offset);
1003 }
1004
1005 /* Given a SET, calculate the amount of stack adjustment it
1006    contains.  */
1007
1008 static HOST_WIDE_INT
1009 stack_adjust_offset (rtx pattern)
1010 {
1011   rtx src = SET_SRC (pattern);
1012   rtx dest = SET_DEST (pattern);
1013   HOST_WIDE_INT offset = 0;
1014   enum rtx_code code;
1015
1016   if (dest == stack_pointer_rtx)
1017     {
1018       /* (set (reg sp) (plus (reg sp) (const_int))) */
1019       code = GET_CODE (src);
1020       if (! (code == PLUS || code == MINUS)
1021           || XEXP (src, 0) != stack_pointer_rtx
1022           || GET_CODE (XEXP (src, 1)) != CONST_INT)
1023         return 0;
1024
1025       offset = INTVAL (XEXP (src, 1));
1026       if (code == PLUS)
1027         offset = -offset;
1028     }
1029   else if (MEM_P (dest))
1030     {
1031       /* (set (mem (pre_dec (reg sp))) (foo)) */
1032       src = XEXP (dest, 0);
1033       code = GET_CODE (src);
1034
1035       switch (code)
1036         {
1037         case PRE_MODIFY:
1038         case POST_MODIFY:
1039           if (XEXP (src, 0) == stack_pointer_rtx)
1040             {
1041               rtx val = XEXP (XEXP (src, 1), 1);
1042               /* We handle only adjustments by constant amount.  */
1043               gcc_assert (GET_CODE (XEXP (src, 1)) == PLUS
1044                           && GET_CODE (val) == CONST_INT);
1045               offset = -INTVAL (val);
1046               break;
1047             }
1048           return 0;
1049
1050         case PRE_DEC:
1051         case POST_DEC:
1052           if (XEXP (src, 0) == stack_pointer_rtx)
1053             {
1054               offset = GET_MODE_SIZE (GET_MODE (dest));
1055               break;
1056             }
1057           return 0;
1058
1059         case PRE_INC:
1060         case POST_INC:
1061           if (XEXP (src, 0) == stack_pointer_rtx)
1062             {
1063               offset = -GET_MODE_SIZE (GET_MODE (dest));
1064               break;
1065             }
1066           return 0;
1067
1068         default:
1069           return 0;
1070         }
1071     }
1072   else
1073     return 0;
1074
1075   return offset;
1076 }
1077
1078 /* Check INSN to see if it looks like a push or a stack adjustment, and
1079    make a note of it if it does.  EH uses this information to find out how
1080    much extra space it needs to pop off the stack.  */
1081
1082 static void
1083 dwarf2out_stack_adjust (rtx insn, bool after_p ATTRIBUTE_UNUSED)
1084 {
1085   HOST_WIDE_INT offset;
1086   const char *label;
1087   int i;
1088
1089   /* Don't handle epilogues at all.  Certainly it would be wrong to do so
1090      with this function.  Proper support would require all frame-related
1091      insns to be marked, and to be able to handle saving state around
1092      epilogues textually in the middle of the function.  */
1093   if (prologue_epilogue_contains (insn) || sibcall_epilogue_contains (insn))
1094     return;
1095
1096   if (BARRIER_P (insn))
1097     {
1098       /* When we see a BARRIER, we know to reset args_size to 0.  Usually
1099          the compiler will have already emitted a stack adjustment, but
1100          doesn't bother for calls to noreturn functions.  */
1101 #ifdef STACK_GROWS_DOWNWARD
1102       offset = -args_size;
1103 #else
1104       offset = args_size;
1105 #endif
1106     }
1107   else if (GET_CODE (PATTERN (insn)) == SET)
1108     offset = stack_adjust_offset (PATTERN (insn));
1109   else if (GET_CODE (PATTERN (insn)) == PARALLEL
1110            || GET_CODE (PATTERN (insn)) == SEQUENCE)
1111     {
1112       /* There may be stack adjustments inside compound insns.  Search
1113          for them.  */
1114       for (offset = 0, i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1115         if (GET_CODE (XVECEXP (PATTERN (insn), 0, i)) == SET)
1116           offset += stack_adjust_offset (XVECEXP (PATTERN (insn), 0, i));
1117     }
1118   else if (GET_CODE (insn) == CALL_INSN)
1119     offset = 0;
1120   else
1121     return;
1122
1123   /* We handle this separately because we want stack adjustments in a
1124      CALL_INSN to be handled.  */;
1125   if (GET_CODE (insn) == CALL_INSN)
1126     {
1127       /* If only calls can throw, adjust args_size only at call sites.  */
1128       if (!flag_asynchronous_unwind_tables)
1129         dwarf2out_args_size ("", args_size);
1130     }
1131
1132   if (offset == 0)
1133     return;
1134
1135   if (cfa.reg == STACK_POINTER_REGNUM)
1136     cfa.offset += offset;
1137
1138 #ifndef STACK_GROWS_DOWNWARD
1139   offset = -offset;
1140 #endif
1141
1142   args_size += offset;
1143   if (args_size < 0)
1144     args_size = 0;
1145
1146   /* If only calls can throw and we have a frame pointer, we'll save
1147      up adjustments until we see the CALL_INSN.  We used to return
1148      early and derive args_size from NARGS in the CALL_INSN itself,
1149      but that doesn't compute the right value if we have nested call
1150      expansions, e.g., stack adjustments for a call have already been
1151      emitted, and then we issue another call to compute an argument
1152      for the enclosing call (i.e., bar (foo ())).  */
1153   if (!flag_asynchronous_unwind_tables && cfa.reg != STACK_POINTER_REGNUM)
1154     return;
1155
1156   label = dwarf2out_cfi_label ();
1157   def_cfa_1 (label, &cfa);
1158   if (flag_asynchronous_unwind_tables)
1159     dwarf2out_args_size (label, args_size);
1160 }
1161
1162 #endif
1163
1164 /* We delay emitting a register save until either (a) we reach the end
1165    of the prologue or (b) the register is clobbered.  This clusters
1166    register saves so that there are fewer pc advances.  */
1167
1168 struct queued_reg_save GTY(())
1169 {
1170   struct queued_reg_save *next;
1171   rtx reg;
1172   HOST_WIDE_INT cfa_offset;
1173   rtx saved_reg;
1174 };
1175
1176 static GTY(()) struct queued_reg_save *queued_reg_saves;
1177
1178 /* The caller's ORIG_REG is saved in SAVED_IN_REG.  */
1179 struct reg_saved_in_data GTY(()) {
1180   rtx orig_reg;
1181   rtx saved_in_reg;
1182 };
1183
1184 /* A list of registers saved in other registers.
1185    The list intentionally has a small maximum capacity of 4; if your
1186    port needs more than that, you might consider implementing a
1187    more efficient data structure.  */
1188 static GTY(()) struct reg_saved_in_data regs_saved_in_regs[4];
1189 static GTY(()) size_t num_regs_saved_in_regs;
1190
1191 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1192 static const char *last_reg_save_label;
1193
1194 /* Add an entry to QUEUED_REG_SAVES saying that REG is now saved at
1195    SREG, or if SREG is NULL then it is saved at OFFSET to the CFA.  */
1196
1197 static void
1198 queue_reg_save (const char *label, rtx reg, rtx sreg, HOST_WIDE_INT offset)
1199 {
1200   struct queued_reg_save *q;
1201
1202   /* Duplicates waste space, but it's also necessary to remove them
1203      for correctness, since the queue gets output in reverse
1204      order.  */
1205   for (q = queued_reg_saves; q != NULL; q = q->next)
1206     if (REGNO (q->reg) == REGNO (reg))
1207       break;
1208
1209   if (q == NULL)
1210     {
1211       q = ggc_alloc (sizeof (*q));
1212       q->next = queued_reg_saves;
1213       queued_reg_saves = q;
1214     }
1215
1216   q->reg = reg;
1217   q->cfa_offset = offset;
1218   q->saved_reg = sreg;
1219
1220   last_reg_save_label = label;
1221 }
1222
1223 /* Output all the entries in QUEUED_REG_SAVES.  */
1224
1225 static void
1226 flush_queued_reg_saves (void)
1227 {
1228   struct queued_reg_save *q;
1229
1230   for (q = queued_reg_saves; q; q = q->next)
1231     {
1232       size_t i;
1233       unsigned int reg, sreg;
1234
1235       for (i = 0; i < num_regs_saved_in_regs; i++)
1236         if (REGNO (regs_saved_in_regs[i].orig_reg) == REGNO (q->reg))
1237           break;
1238       if (q->saved_reg && i == num_regs_saved_in_regs)
1239         {
1240           gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1241           num_regs_saved_in_regs++;
1242         }
1243       if (i != num_regs_saved_in_regs)
1244         {
1245           regs_saved_in_regs[i].orig_reg = q->reg;
1246           regs_saved_in_regs[i].saved_in_reg = q->saved_reg;
1247         }
1248
1249       reg = DWARF_FRAME_REGNUM (REGNO (q->reg));
1250       if (q->saved_reg)
1251         sreg = DWARF_FRAME_REGNUM (REGNO (q->saved_reg));
1252       else
1253         sreg = INVALID_REGNUM;
1254       reg_save (last_reg_save_label, reg, sreg, q->cfa_offset);
1255     }
1256
1257   queued_reg_saves = NULL;
1258   last_reg_save_label = NULL;
1259 }
1260
1261 /* Does INSN clobber any register which QUEUED_REG_SAVES lists a saved
1262    location for?  Or, does it clobber a register which we've previously
1263    said that some other register is saved in, and for which we now
1264    have a new location for?  */
1265
1266 static bool
1267 clobbers_queued_reg_save (rtx insn)
1268 {
1269   struct queued_reg_save *q;
1270
1271   for (q = queued_reg_saves; q; q = q->next)
1272     {
1273       size_t i;
1274       if (modified_in_p (q->reg, insn))
1275         return true;
1276       for (i = 0; i < num_regs_saved_in_regs; i++)
1277         if (REGNO (q->reg) == REGNO (regs_saved_in_regs[i].orig_reg)
1278             && modified_in_p (regs_saved_in_regs[i].saved_in_reg, insn))
1279           return true;
1280     }
1281
1282   return false;
1283 }
1284
1285 /* Entry point for saving the first register into the second.  */
1286
1287 void
1288 dwarf2out_reg_save_reg (const char *label, rtx reg, rtx sreg)
1289 {
1290   size_t i;
1291   unsigned int regno, sregno;
1292
1293   for (i = 0; i < num_regs_saved_in_regs; i++)
1294     if (REGNO (regs_saved_in_regs[i].orig_reg) == REGNO (reg))
1295       break;
1296   if (i == num_regs_saved_in_regs)
1297     {
1298       gcc_assert (i != ARRAY_SIZE (regs_saved_in_regs));
1299       num_regs_saved_in_regs++;
1300     }
1301   regs_saved_in_regs[i].orig_reg = reg;
1302   regs_saved_in_regs[i].saved_in_reg = sreg;
1303
1304   regno = DWARF_FRAME_REGNUM (REGNO (reg));
1305   sregno = DWARF_FRAME_REGNUM (REGNO (sreg));
1306   reg_save (label, regno, sregno, 0);
1307 }
1308
1309 /* What register, if any, is currently saved in REG?  */
1310
1311 static rtx
1312 reg_saved_in (rtx reg)
1313 {
1314   unsigned int regn = REGNO (reg);
1315   size_t i;
1316   struct queued_reg_save *q;
1317
1318   for (q = queued_reg_saves; q; q = q->next)
1319     if (q->saved_reg && regn == REGNO (q->saved_reg))
1320       return q->reg;
1321
1322   for (i = 0; i < num_regs_saved_in_regs; i++)
1323     if (regs_saved_in_regs[i].saved_in_reg
1324         && regn == REGNO (regs_saved_in_regs[i].saved_in_reg))
1325       return regs_saved_in_regs[i].orig_reg;
1326
1327   return NULL_RTX;
1328 }
1329
1330
1331 /* A temporary register holding an integral value used in adjusting SP
1332    or setting up the store_reg.  The "offset" field holds the integer
1333    value, not an offset.  */
1334 static dw_cfa_location cfa_temp;
1335
1336 /* Record call frame debugging information for an expression EXPR,
1337    which either sets SP or FP (adjusting how we calculate the frame
1338    address) or saves a register to the stack or another register.
1339    LABEL indicates the address of EXPR.
1340
1341    This function encodes a state machine mapping rtxes to actions on
1342    cfa, cfa_store, and cfa_temp.reg.  We describe these rules so
1343    users need not read the source code.
1344
1345   The High-Level Picture
1346
1347   Changes in the register we use to calculate the CFA: Currently we
1348   assume that if you copy the CFA register into another register, we
1349   should take the other one as the new CFA register; this seems to
1350   work pretty well.  If it's wrong for some target, it's simple
1351   enough not to set RTX_FRAME_RELATED_P on the insn in question.
1352
1353   Changes in the register we use for saving registers to the stack:
1354   This is usually SP, but not always.  Again, we deduce that if you
1355   copy SP into another register (and SP is not the CFA register),
1356   then the new register is the one we will be using for register
1357   saves.  This also seems to work.
1358
1359   Register saves: There's not much guesswork about this one; if
1360   RTX_FRAME_RELATED_P is set on an insn which modifies memory, it's a
1361   register save, and the register used to calculate the destination
1362   had better be the one we think we're using for this purpose.
1363   It's also assumed that a copy from a call-saved register to another
1364   register is saving that register if RTX_FRAME_RELATED_P is set on
1365   that instruction.  If the copy is from a call-saved register to
1366   the *same* register, that means that the register is now the same
1367   value as in the caller.
1368
1369   Except: If the register being saved is the CFA register, and the
1370   offset is nonzero, we are saving the CFA, so we assume we have to
1371   use DW_CFA_def_cfa_expression.  If the offset is 0, we assume that
1372   the intent is to save the value of SP from the previous frame.
1373
1374   In addition, if a register has previously been saved to a different
1375   register,
1376
1377   Invariants / Summaries of Rules
1378
1379   cfa          current rule for calculating the CFA.  It usually
1380                consists of a register and an offset.
1381   cfa_store    register used by prologue code to save things to the stack
1382                cfa_store.offset is the offset from the value of
1383                cfa_store.reg to the actual CFA
1384   cfa_temp     register holding an integral value.  cfa_temp.offset
1385                stores the value, which will be used to adjust the
1386                stack pointer.  cfa_temp is also used like cfa_store,
1387                to track stores to the stack via fp or a temp reg.
1388
1389   Rules  1- 4: Setting a register's value to cfa.reg or an expression
1390                with cfa.reg as the first operand changes the cfa.reg and its
1391                cfa.offset.  Rule 1 and 4 also set cfa_temp.reg and
1392                cfa_temp.offset.
1393
1394   Rules  6- 9: Set a non-cfa.reg register value to a constant or an
1395                expression yielding a constant.  This sets cfa_temp.reg
1396                and cfa_temp.offset.
1397
1398   Rule 5:      Create a new register cfa_store used to save items to the
1399                stack.
1400
1401   Rules 10-14: Save a register to the stack.  Define offset as the
1402                difference of the original location and cfa_store's
1403                location (or cfa_temp's location if cfa_temp is used).
1404
1405   The Rules
1406
1407   "{a,b}" indicates a choice of a xor b.
1408   "<reg>:cfa.reg" indicates that <reg> must equal cfa.reg.
1409
1410   Rule 1:
1411   (set <reg1> <reg2>:cfa.reg)
1412   effects: cfa.reg = <reg1>
1413            cfa.offset unchanged
1414            cfa_temp.reg = <reg1>
1415            cfa_temp.offset = cfa.offset
1416
1417   Rule 2:
1418   (set sp ({minus,plus,losum} {sp,fp}:cfa.reg
1419                               {<const_int>,<reg>:cfa_temp.reg}))
1420   effects: cfa.reg = sp if fp used
1421            cfa.offset += {+/- <const_int>, cfa_temp.offset} if cfa.reg==sp
1422            cfa_store.offset += {+/- <const_int>, cfa_temp.offset}
1423              if cfa_store.reg==sp
1424
1425   Rule 3:
1426   (set fp ({minus,plus,losum} <reg>:cfa.reg <const_int>))
1427   effects: cfa.reg = fp
1428            cfa_offset += +/- <const_int>
1429
1430   Rule 4:
1431   (set <reg1> ({plus,losum} <reg2>:cfa.reg <const_int>))
1432   constraints: <reg1> != fp
1433                <reg1> != sp
1434   effects: cfa.reg = <reg1>
1435            cfa_temp.reg = <reg1>
1436            cfa_temp.offset = cfa.offset
1437
1438   Rule 5:
1439   (set <reg1> (plus <reg2>:cfa_temp.reg sp:cfa.reg))
1440   constraints: <reg1> != fp
1441                <reg1> != sp
1442   effects: cfa_store.reg = <reg1>
1443            cfa_store.offset = cfa.offset - cfa_temp.offset
1444
1445   Rule 6:
1446   (set <reg> <const_int>)
1447   effects: cfa_temp.reg = <reg>
1448            cfa_temp.offset = <const_int>
1449
1450   Rule 7:
1451   (set <reg1>:cfa_temp.reg (ior <reg2>:cfa_temp.reg <const_int>))
1452   effects: cfa_temp.reg = <reg1>
1453            cfa_temp.offset |= <const_int>
1454
1455   Rule 8:
1456   (set <reg> (high <exp>))
1457   effects: none
1458
1459   Rule 9:
1460   (set <reg> (lo_sum <exp> <const_int>))
1461   effects: cfa_temp.reg = <reg>
1462            cfa_temp.offset = <const_int>
1463
1464   Rule 10:
1465   (set (mem (pre_modify sp:cfa_store (???? <reg1> <const_int>))) <reg2>)
1466   effects: cfa_store.offset -= <const_int>
1467            cfa.offset = cfa_store.offset if cfa.reg == sp
1468            cfa.reg = sp
1469            cfa.base_offset = -cfa_store.offset
1470
1471   Rule 11:
1472   (set (mem ({pre_inc,pre_dec} sp:cfa_store.reg)) <reg>)
1473   effects: cfa_store.offset += -/+ mode_size(mem)
1474            cfa.offset = cfa_store.offset if cfa.reg == sp
1475            cfa.reg = sp
1476            cfa.base_offset = -cfa_store.offset
1477
1478   Rule 12:
1479   (set (mem ({minus,plus,losum} <reg1>:{cfa_store,cfa_temp} <const_int>))
1480
1481        <reg2>)
1482   effects: cfa.reg = <reg1>
1483            cfa.base_offset = -/+ <const_int> - {cfa_store,cfa_temp}.offset
1484
1485   Rule 13:
1486   (set (mem <reg1>:{cfa_store,cfa_temp}) <reg2>)
1487   effects: cfa.reg = <reg1>
1488            cfa.base_offset = -{cfa_store,cfa_temp}.offset
1489
1490   Rule 14:
1491   (set (mem (postinc <reg1>:cfa_temp <const_int>)) <reg2>)
1492   effects: cfa.reg = <reg1>
1493            cfa.base_offset = -cfa_temp.offset
1494            cfa_temp.offset -= mode_size(mem)
1495
1496   Rule 15:
1497   (set <reg> {unspec, unspec_volatile})
1498   effects: target-dependent  */
1499
1500 static void
1501 dwarf2out_frame_debug_expr (rtx expr, const char *label)
1502 {
1503   rtx src, dest;
1504   HOST_WIDE_INT offset;
1505
1506   /* If RTX_FRAME_RELATED_P is set on a PARALLEL, process each member of
1507      the PARALLEL independently. The first element is always processed if
1508      it is a SET. This is for backward compatibility.   Other elements
1509      are processed only if they are SETs and the RTX_FRAME_RELATED_P
1510      flag is set in them.  */
1511   if (GET_CODE (expr) == PARALLEL || GET_CODE (expr) == SEQUENCE)
1512     {
1513       int par_index;
1514       int limit = XVECLEN (expr, 0);
1515
1516       for (par_index = 0; par_index < limit; par_index++)
1517         if (GET_CODE (XVECEXP (expr, 0, par_index)) == SET
1518             && (RTX_FRAME_RELATED_P (XVECEXP (expr, 0, par_index))
1519                 || par_index == 0))
1520           dwarf2out_frame_debug_expr (XVECEXP (expr, 0, par_index), label);
1521
1522       return;
1523     }
1524
1525   gcc_assert (GET_CODE (expr) == SET);
1526
1527   src = SET_SRC (expr);
1528   dest = SET_DEST (expr);
1529
1530   if (REG_P (src))
1531     {
1532       rtx rsi = reg_saved_in (src);
1533       if (rsi)
1534         src = rsi;
1535     }
1536
1537   switch (GET_CODE (dest))
1538     {
1539     case REG:
1540       switch (GET_CODE (src))
1541         {
1542           /* Setting FP from SP.  */
1543         case REG:
1544           if (cfa.reg == (unsigned) REGNO (src))
1545             {
1546               /* Rule 1 */
1547               /* Update the CFA rule wrt SP or FP.  Make sure src is
1548                  relative to the current CFA register.
1549
1550                  We used to require that dest be either SP or FP, but the
1551                  ARM copies SP to a temporary register, and from there to
1552                  FP.  So we just rely on the backends to only set
1553                  RTX_FRAME_RELATED_P on appropriate insns.  */
1554               cfa.reg = REGNO (dest);
1555               cfa_temp.reg = cfa.reg;
1556               cfa_temp.offset = cfa.offset;
1557             }
1558           else
1559             {
1560               /* Saving a register in a register.  */
1561               gcc_assert (!fixed_regs [REGNO (dest)]
1562                           /* For the SPARC and its register window.  */
1563                           || (DWARF_FRAME_REGNUM (REGNO (src))
1564                               == DWARF_FRAME_RETURN_COLUMN));
1565               queue_reg_save (label, src, dest, 0);
1566             }
1567           break;
1568
1569         case PLUS:
1570         case MINUS:
1571         case LO_SUM:
1572           if (dest == stack_pointer_rtx)
1573             {
1574               /* Rule 2 */
1575               /* Adjusting SP.  */
1576               switch (GET_CODE (XEXP (src, 1)))
1577                 {
1578                 case CONST_INT:
1579                   offset = INTVAL (XEXP (src, 1));
1580                   break;
1581                 case REG:
1582                   gcc_assert ((unsigned) REGNO (XEXP (src, 1))
1583                               == cfa_temp.reg);
1584                   offset = cfa_temp.offset;
1585                   break;
1586                 default:
1587                   gcc_unreachable ();
1588                 }
1589
1590               if (XEXP (src, 0) == hard_frame_pointer_rtx)
1591                 {
1592                   /* Restoring SP from FP in the epilogue.  */
1593                   gcc_assert (cfa.reg == (unsigned) HARD_FRAME_POINTER_REGNUM);
1594                   cfa.reg = STACK_POINTER_REGNUM;
1595                 }
1596               else if (GET_CODE (src) == LO_SUM)
1597                 /* Assume we've set the source reg of the LO_SUM from sp.  */
1598                 ;
1599               else
1600                 gcc_assert (XEXP (src, 0) == stack_pointer_rtx);
1601
1602               if (GET_CODE (src) != MINUS)
1603                 offset = -offset;
1604               if (cfa.reg == STACK_POINTER_REGNUM)
1605                 cfa.offset += offset;
1606               if (cfa_store.reg == STACK_POINTER_REGNUM)
1607                 cfa_store.offset += offset;
1608             }
1609           else if (dest == hard_frame_pointer_rtx)
1610             {
1611               /* Rule 3 */
1612               /* Either setting the FP from an offset of the SP,
1613                  or adjusting the FP */
1614               gcc_assert (frame_pointer_needed);
1615
1616               gcc_assert (REG_P (XEXP (src, 0))
1617                           && (unsigned) REGNO (XEXP (src, 0)) == cfa.reg
1618                           && GET_CODE (XEXP (src, 1)) == CONST_INT);
1619               offset = INTVAL (XEXP (src, 1));
1620               if (GET_CODE (src) != MINUS)
1621                 offset = -offset;
1622               cfa.offset += offset;
1623               cfa.reg = HARD_FRAME_POINTER_REGNUM;
1624             }
1625           else
1626             {
1627               gcc_assert (GET_CODE (src) != MINUS);
1628
1629               /* Rule 4 */
1630               if (REG_P (XEXP (src, 0))
1631                   && REGNO (XEXP (src, 0)) == cfa.reg
1632                   && GET_CODE (XEXP (src, 1)) == CONST_INT)
1633                 {
1634                   /* Setting a temporary CFA register that will be copied
1635                      into the FP later on.  */
1636                   offset = - INTVAL (XEXP (src, 1));
1637                   cfa.offset += offset;
1638                   cfa.reg = REGNO (dest);
1639                   /* Or used to save regs to the stack.  */
1640                   cfa_temp.reg = cfa.reg;
1641                   cfa_temp.offset = cfa.offset;
1642                 }
1643
1644               /* Rule 5 */
1645               else if (REG_P (XEXP (src, 0))
1646                        && REGNO (XEXP (src, 0)) == cfa_temp.reg
1647                        && XEXP (src, 1) == stack_pointer_rtx)
1648                 {
1649                   /* Setting a scratch register that we will use instead
1650                      of SP for saving registers to the stack.  */
1651                   gcc_assert (cfa.reg == STACK_POINTER_REGNUM);
1652                   cfa_store.reg = REGNO (dest);
1653                   cfa_store.offset = cfa.offset - cfa_temp.offset;
1654                 }
1655
1656               /* Rule 9 */
1657               else if (GET_CODE (src) == LO_SUM
1658                        && GET_CODE (XEXP (src, 1)) == CONST_INT)
1659                 {
1660                   cfa_temp.reg = REGNO (dest);
1661                   cfa_temp.offset = INTVAL (XEXP (src, 1));
1662                 }
1663               else
1664                 gcc_unreachable ();
1665             }
1666           break;
1667
1668           /* Rule 6 */
1669         case CONST_INT:
1670           cfa_temp.reg = REGNO (dest);
1671           cfa_temp.offset = INTVAL (src);
1672           break;
1673
1674           /* Rule 7 */
1675         case IOR:
1676           gcc_assert (REG_P (XEXP (src, 0))
1677                       && (unsigned) REGNO (XEXP (src, 0)) == cfa_temp.reg
1678                       && GET_CODE (XEXP (src, 1)) == CONST_INT);
1679
1680           if ((unsigned) REGNO (dest) != cfa_temp.reg)
1681             cfa_temp.reg = REGNO (dest);
1682           cfa_temp.offset |= INTVAL (XEXP (src, 1));
1683           break;
1684
1685           /* Skip over HIGH, assuming it will be followed by a LO_SUM,
1686              which will fill in all of the bits.  */
1687           /* Rule 8 */
1688         case HIGH:
1689           break;
1690
1691           /* Rule 15 */
1692         case UNSPEC:
1693         case UNSPEC_VOLATILE:
1694           gcc_assert (targetm.dwarf_handle_frame_unspec);
1695           targetm.dwarf_handle_frame_unspec (label, expr, XINT (src, 1));
1696           return;
1697
1698         default:
1699           gcc_unreachable ();
1700         }
1701
1702       def_cfa_1 (label, &cfa);
1703       break;
1704
1705     case MEM:
1706       gcc_assert (REG_P (src));
1707
1708       /* Saving a register to the stack.  Make sure dest is relative to the
1709          CFA register.  */
1710       switch (GET_CODE (XEXP (dest, 0)))
1711         {
1712           /* Rule 10 */
1713           /* With a push.  */
1714         case PRE_MODIFY:
1715           /* We can't handle variable size modifications.  */
1716           gcc_assert (GET_CODE (XEXP (XEXP (XEXP (dest, 0), 1), 1))
1717                       == CONST_INT);
1718           offset = -INTVAL (XEXP (XEXP (XEXP (dest, 0), 1), 1));
1719
1720           gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
1721                       && cfa_store.reg == STACK_POINTER_REGNUM);
1722
1723           cfa_store.offset += offset;
1724           if (cfa.reg == STACK_POINTER_REGNUM)
1725             cfa.offset = cfa_store.offset;
1726
1727           offset = -cfa_store.offset;
1728           break;
1729
1730           /* Rule 11 */
1731         case PRE_INC:
1732         case PRE_DEC:
1733           offset = GET_MODE_SIZE (GET_MODE (dest));
1734           if (GET_CODE (XEXP (dest, 0)) == PRE_INC)
1735             offset = -offset;
1736
1737           gcc_assert (REGNO (XEXP (XEXP (dest, 0), 0)) == STACK_POINTER_REGNUM
1738                       && cfa_store.reg == STACK_POINTER_REGNUM);
1739
1740           cfa_store.offset += offset;
1741           if (cfa.reg == STACK_POINTER_REGNUM)
1742             cfa.offset = cfa_store.offset;
1743
1744           offset = -cfa_store.offset;
1745           break;
1746
1747           /* Rule 12 */
1748           /* With an offset.  */
1749         case PLUS:
1750         case MINUS:
1751         case LO_SUM:
1752           {
1753             int regno;
1754
1755             gcc_assert (GET_CODE (XEXP (XEXP (dest, 0), 1)) == CONST_INT
1756                         && REG_P (XEXP (XEXP (dest, 0), 0)));
1757             offset = INTVAL (XEXP (XEXP (dest, 0), 1));
1758             if (GET_CODE (XEXP (dest, 0)) == MINUS)
1759               offset = -offset;
1760
1761             regno = REGNO (XEXP (XEXP (dest, 0), 0));
1762
1763             if (cfa_store.reg == (unsigned) regno)
1764               offset -= cfa_store.offset;
1765             else
1766               {
1767                 gcc_assert (cfa_temp.reg == (unsigned) regno);
1768                 offset -= cfa_temp.offset;
1769               }
1770           }
1771           break;
1772
1773           /* Rule 13 */
1774           /* Without an offset.  */
1775         case REG:
1776           {
1777             int regno = REGNO (XEXP (dest, 0));
1778
1779             if (cfa_store.reg == (unsigned) regno)
1780               offset = -cfa_store.offset;
1781             else
1782               {
1783                 gcc_assert (cfa_temp.reg == (unsigned) regno);
1784                 offset = -cfa_temp.offset;
1785               }
1786           }
1787           break;
1788
1789           /* Rule 14 */
1790         case POST_INC:
1791           gcc_assert (cfa_temp.reg
1792                       == (unsigned) REGNO (XEXP (XEXP (dest, 0), 0)));
1793           offset = -cfa_temp.offset;
1794           cfa_temp.offset -= GET_MODE_SIZE (GET_MODE (dest));
1795           break;
1796
1797         default:
1798           gcc_unreachable ();
1799         }
1800
1801       if (REGNO (src) != STACK_POINTER_REGNUM
1802           && REGNO (src) != HARD_FRAME_POINTER_REGNUM
1803           && (unsigned) REGNO (src) == cfa.reg)
1804         {
1805           /* We're storing the current CFA reg into the stack.  */
1806
1807           if (cfa.offset == 0)
1808             {
1809               /* If the source register is exactly the CFA, assume
1810                  we're saving SP like any other register; this happens
1811                  on the ARM.  */
1812               def_cfa_1 (label, &cfa);
1813               queue_reg_save (label, stack_pointer_rtx, NULL_RTX, offset);
1814               break;
1815             }
1816           else
1817             {
1818               /* Otherwise, we'll need to look in the stack to
1819                  calculate the CFA.  */
1820               rtx x = XEXP (dest, 0);
1821
1822               if (!REG_P (x))
1823                 x = XEXP (x, 0);
1824               gcc_assert (REG_P (x));
1825
1826               cfa.reg = REGNO (x);
1827               cfa.base_offset = offset;
1828               cfa.indirect = 1;
1829               def_cfa_1 (label, &cfa);
1830               break;
1831             }
1832         }
1833
1834       def_cfa_1 (label, &cfa);
1835       queue_reg_save (label, src, NULL_RTX, offset);
1836       break;
1837
1838     default:
1839       gcc_unreachable ();
1840     }
1841 }
1842
1843 /* Record call frame debugging information for INSN, which either
1844    sets SP or FP (adjusting how we calculate the frame address) or saves a
1845    register to the stack.  If INSN is NULL_RTX, initialize our state.
1846
1847    If AFTER_P is false, we're being called before the insn is emitted,
1848    otherwise after.  Call instructions get invoked twice.  */
1849
1850 void
1851 dwarf2out_frame_debug (rtx insn, bool after_p)
1852 {
1853   const char *label;
1854   rtx src;
1855
1856   if (insn == NULL_RTX)
1857     {
1858       size_t i;
1859
1860       /* Flush any queued register saves.  */
1861       flush_queued_reg_saves ();
1862
1863       /* Set up state for generating call frame debug info.  */
1864       lookup_cfa (&cfa);
1865       gcc_assert (cfa.reg
1866                   == (unsigned long)DWARF_FRAME_REGNUM (STACK_POINTER_REGNUM));
1867
1868       cfa.reg = STACK_POINTER_REGNUM;
1869       cfa_store = cfa;
1870       cfa_temp.reg = -1;
1871       cfa_temp.offset = 0;
1872
1873       for (i = 0; i < num_regs_saved_in_regs; i++)
1874         {
1875           regs_saved_in_regs[i].orig_reg = NULL_RTX;
1876           regs_saved_in_regs[i].saved_in_reg = NULL_RTX;
1877         }
1878       num_regs_saved_in_regs = 0;
1879       return;
1880     }
1881
1882   if (!NONJUMP_INSN_P (insn) || clobbers_queued_reg_save (insn))
1883     flush_queued_reg_saves ();
1884
1885   if (! RTX_FRAME_RELATED_P (insn))
1886     {
1887       if (!ACCUMULATE_OUTGOING_ARGS)
1888         dwarf2out_stack_adjust (insn, after_p);
1889       return;
1890     }
1891
1892   label = dwarf2out_cfi_label ();
1893   src = find_reg_note (insn, REG_FRAME_RELATED_EXPR, NULL_RTX);
1894   if (src)
1895     insn = XEXP (src, 0);
1896   else
1897     insn = PATTERN (insn);
1898
1899   dwarf2out_frame_debug_expr (insn, label);
1900 }
1901
1902 #endif
1903
1904 /* Describe for the GTY machinery what parts of dw_cfi_oprnd1 are used.  */
1905 static enum dw_cfi_oprnd_type dw_cfi_oprnd1_desc
1906  (enum dwarf_call_frame_info cfi);
1907
1908 static enum dw_cfi_oprnd_type
1909 dw_cfi_oprnd1_desc (enum dwarf_call_frame_info cfi)
1910 {
1911   switch (cfi)
1912     {
1913     case DW_CFA_nop:
1914     case DW_CFA_GNU_window_save:
1915       return dw_cfi_oprnd_unused;
1916
1917     case DW_CFA_set_loc:
1918     case DW_CFA_advance_loc1:
1919     case DW_CFA_advance_loc2:
1920     case DW_CFA_advance_loc4:
1921     case DW_CFA_MIPS_advance_loc8:
1922       return dw_cfi_oprnd_addr;
1923
1924     case DW_CFA_offset:
1925     case DW_CFA_offset_extended:
1926     case DW_CFA_def_cfa:
1927     case DW_CFA_offset_extended_sf:
1928     case DW_CFA_def_cfa_sf:
1929     case DW_CFA_restore_extended:
1930     case DW_CFA_undefined:
1931     case DW_CFA_same_value:
1932     case DW_CFA_def_cfa_register:
1933     case DW_CFA_register:
1934       return dw_cfi_oprnd_reg_num;
1935
1936     case DW_CFA_def_cfa_offset:
1937     case DW_CFA_GNU_args_size:
1938     case DW_CFA_def_cfa_offset_sf:
1939       return dw_cfi_oprnd_offset;
1940
1941     case DW_CFA_def_cfa_expression:
1942     case DW_CFA_expression:
1943       return dw_cfi_oprnd_loc;
1944
1945     default:
1946       gcc_unreachable ();
1947     }
1948 }
1949
1950 /* Describe for the GTY machinery what parts of dw_cfi_oprnd2 are used.  */
1951 static enum dw_cfi_oprnd_type dw_cfi_oprnd2_desc
1952  (enum dwarf_call_frame_info cfi);
1953
1954 static enum dw_cfi_oprnd_type
1955 dw_cfi_oprnd2_desc (enum dwarf_call_frame_info cfi)
1956 {
1957   switch (cfi)
1958     {
1959     case DW_CFA_def_cfa:
1960     case DW_CFA_def_cfa_sf:
1961     case DW_CFA_offset:
1962     case DW_CFA_offset_extended_sf:
1963     case DW_CFA_offset_extended:
1964       return dw_cfi_oprnd_offset;
1965
1966     case DW_CFA_register:
1967       return dw_cfi_oprnd_reg_num;
1968
1969     default:
1970       return dw_cfi_oprnd_unused;
1971     }
1972 }
1973
1974 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
1975
1976 /* Switch to eh_frame_section.  If we don't have an eh_frame_section,
1977    switch to the data section instead, and write out a synthetic label
1978    for collect2.  */
1979
1980 static void
1981 switch_to_eh_frame_section (void)
1982 {
1983   tree label;
1984
1985 #ifdef EH_FRAME_SECTION_NAME
1986   if (eh_frame_section == 0)
1987     {
1988       int flags;
1989
1990       if (EH_TABLES_CAN_BE_READ_ONLY)
1991         {
1992           int fde_encoding;
1993           int per_encoding;
1994           int lsda_encoding;
1995
1996           fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1,
1997                                                        /*global=*/0);
1998           per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2,
1999                                                        /*global=*/1);
2000           lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0,
2001                                                         /*global=*/0);
2002           flags = ((! flag_pic
2003                     || ((fde_encoding & 0x70) != DW_EH_PE_absptr
2004                         && (fde_encoding & 0x70) != DW_EH_PE_aligned
2005                         && (per_encoding & 0x70) != DW_EH_PE_absptr
2006                         && (per_encoding & 0x70) != DW_EH_PE_aligned
2007                         && (lsda_encoding & 0x70) != DW_EH_PE_absptr
2008                         && (lsda_encoding & 0x70) != DW_EH_PE_aligned))
2009                    ? 0 : SECTION_WRITE);
2010         }
2011       else
2012         flags = SECTION_WRITE;
2013       eh_frame_section = get_section (EH_FRAME_SECTION_NAME, flags, NULL);
2014     }
2015 #endif
2016
2017   if (eh_frame_section)
2018     switch_to_section (eh_frame_section);
2019   else
2020     {
2021       /* We have no special eh_frame section.  Put the information in
2022          the data section and emit special labels to guide collect2.  */
2023       switch_to_section (data_section);
2024       label = get_file_function_name ('F');
2025       ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
2026       targetm.asm_out.globalize_label (asm_out_file,
2027                                        IDENTIFIER_POINTER (label));
2028       ASM_OUTPUT_LABEL (asm_out_file, IDENTIFIER_POINTER (label));
2029     }
2030 }
2031
2032 /* Output a Call Frame Information opcode and its operand(s).  */
2033
2034 static void
2035 output_cfi (dw_cfi_ref cfi, dw_fde_ref fde, int for_eh)
2036 {
2037   unsigned long r;
2038   if (cfi->dw_cfi_opc == DW_CFA_advance_loc)
2039     dw2_asm_output_data (1, (cfi->dw_cfi_opc
2040                              | (cfi->dw_cfi_oprnd1.dw_cfi_offset & 0x3f)),
2041                          "DW_CFA_advance_loc " HOST_WIDE_INT_PRINT_HEX,
2042                          cfi->dw_cfi_oprnd1.dw_cfi_offset);
2043   else if (cfi->dw_cfi_opc == DW_CFA_offset)
2044     {
2045       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2046       dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
2047                            "DW_CFA_offset, column 0x%lx", r);
2048       dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
2049     }
2050   else if (cfi->dw_cfi_opc == DW_CFA_restore)
2051     {
2052       r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2053       dw2_asm_output_data (1, (cfi->dw_cfi_opc | (r & 0x3f)),
2054                            "DW_CFA_restore, column 0x%lx", r);
2055     }
2056   else
2057     {
2058       dw2_asm_output_data (1, cfi->dw_cfi_opc,
2059                            "%s", dwarf_cfi_name (cfi->dw_cfi_opc));
2060
2061       switch (cfi->dw_cfi_opc)
2062         {
2063         case DW_CFA_set_loc:
2064           if (for_eh)
2065             dw2_asm_output_encoded_addr_rtx (
2066                 ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0),
2067                 gen_rtx_SYMBOL_REF (Pmode, cfi->dw_cfi_oprnd1.dw_cfi_addr),
2068                 false, NULL);
2069           else
2070             dw2_asm_output_addr (DWARF2_ADDR_SIZE,
2071                                  cfi->dw_cfi_oprnd1.dw_cfi_addr, NULL);
2072           break;
2073
2074         case DW_CFA_advance_loc1:
2075           dw2_asm_output_delta (1, cfi->dw_cfi_oprnd1.dw_cfi_addr,
2076                                 fde->dw_fde_current_label, NULL);
2077           fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
2078           break;
2079
2080         case DW_CFA_advance_loc2:
2081           dw2_asm_output_delta (2, cfi->dw_cfi_oprnd1.dw_cfi_addr,
2082                                 fde->dw_fde_current_label, NULL);
2083           fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
2084           break;
2085
2086         case DW_CFA_advance_loc4:
2087           dw2_asm_output_delta (4, cfi->dw_cfi_oprnd1.dw_cfi_addr,
2088                                 fde->dw_fde_current_label, NULL);
2089           fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
2090           break;
2091
2092         case DW_CFA_MIPS_advance_loc8:
2093           dw2_asm_output_delta (8, cfi->dw_cfi_oprnd1.dw_cfi_addr,
2094                                 fde->dw_fde_current_label, NULL);
2095           fde->dw_fde_current_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
2096           break;
2097
2098         case DW_CFA_offset_extended:
2099         case DW_CFA_def_cfa:
2100           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2101           dw2_asm_output_data_uleb128 (r, NULL);
2102           dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
2103           break;
2104
2105         case DW_CFA_offset_extended_sf:
2106         case DW_CFA_def_cfa_sf:
2107           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2108           dw2_asm_output_data_uleb128 (r, NULL);
2109           dw2_asm_output_data_sleb128 (cfi->dw_cfi_oprnd2.dw_cfi_offset, NULL);
2110           break;
2111
2112         case DW_CFA_restore_extended:
2113         case DW_CFA_undefined:
2114         case DW_CFA_same_value:
2115         case DW_CFA_def_cfa_register:
2116           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2117           dw2_asm_output_data_uleb128 (r, NULL);
2118           break;
2119
2120         case DW_CFA_register:
2121           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd1.dw_cfi_reg_num, for_eh);
2122           dw2_asm_output_data_uleb128 (r, NULL);
2123           r = DWARF2_FRAME_REG_OUT (cfi->dw_cfi_oprnd2.dw_cfi_reg_num, for_eh);
2124           dw2_asm_output_data_uleb128 (r, NULL);
2125           break;
2126
2127         case DW_CFA_def_cfa_offset:
2128         case DW_CFA_GNU_args_size:
2129           dw2_asm_output_data_uleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
2130           break;
2131
2132         case DW_CFA_def_cfa_offset_sf:
2133           dw2_asm_output_data_sleb128 (cfi->dw_cfi_oprnd1.dw_cfi_offset, NULL);
2134           break;
2135
2136         case DW_CFA_GNU_window_save:
2137           break;
2138
2139         case DW_CFA_def_cfa_expression:
2140         case DW_CFA_expression:
2141           output_cfa_loc (cfi);
2142           break;
2143
2144         case DW_CFA_GNU_negative_offset_extended:
2145           /* Obsoleted by DW_CFA_offset_extended_sf.  */
2146           gcc_unreachable ();
2147
2148         default:
2149           break;
2150         }
2151     }
2152 }
2153
2154 /* Output the call frame information used to record information
2155    that relates to calculating the frame pointer, and records the
2156    location of saved registers.  */
2157
2158 static void
2159 output_call_frame_info (int for_eh)
2160 {
2161   unsigned int i;
2162   dw_fde_ref fde;
2163   dw_cfi_ref cfi;
2164   char l1[20], l2[20], section_start_label[20];
2165   bool any_lsda_needed = false;
2166   char augmentation[6];
2167   int augmentation_size;
2168   int fde_encoding = DW_EH_PE_absptr;
2169   int per_encoding = DW_EH_PE_absptr;
2170   int lsda_encoding = DW_EH_PE_absptr;
2171   int return_reg;
2172
2173   /* Don't emit a CIE if there won't be any FDEs.  */
2174   if (fde_table_in_use == 0)
2175     return;
2176
2177   /* If we make FDEs linkonce, we may have to emit an empty label for
2178      an FDE that wouldn't otherwise be emitted.  We want to avoid
2179      having an FDE kept around when the function it refers to is
2180      discarded.  Example where this matters: a primary function
2181      template in C++ requires EH information, but an explicit
2182      specialization doesn't.  */
2183   if (TARGET_USES_WEAK_UNWIND_INFO
2184       && ! flag_asynchronous_unwind_tables
2185       && for_eh)
2186     for (i = 0; i < fde_table_in_use; i++)
2187       if ((fde_table[i].nothrow || fde_table[i].all_throwers_are_sibcalls)
2188           && !fde_table[i].uses_eh_lsda
2189           && ! DECL_WEAK (fde_table[i].decl))
2190         targetm.asm_out.unwind_label (asm_out_file, fde_table[i].decl,
2191                                       for_eh, /* empty */ 1);
2192
2193   /* If we don't have any functions we'll want to unwind out of, don't
2194      emit any EH unwind information.  Note that if exceptions aren't
2195      enabled, we won't have collected nothrow information, and if we
2196      asked for asynchronous tables, we always want this info.  */
2197   if (for_eh)
2198     {
2199       bool any_eh_needed = !flag_exceptions || flag_asynchronous_unwind_tables;
2200
2201       for (i = 0; i < fde_table_in_use; i++)
2202         if (fde_table[i].uses_eh_lsda)
2203           any_eh_needed = any_lsda_needed = true;
2204         else if (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde_table[i].decl))
2205           any_eh_needed = true;
2206         else if (! fde_table[i].nothrow
2207                  && ! fde_table[i].all_throwers_are_sibcalls)
2208           any_eh_needed = true;
2209
2210       if (! any_eh_needed)
2211         return;
2212     }
2213
2214   /* We're going to be generating comments, so turn on app.  */
2215   if (flag_debug_asm)
2216     app_enable ();
2217
2218   if (for_eh)
2219     switch_to_eh_frame_section ();
2220   else
2221     {
2222       if (!debug_frame_section)
2223         debug_frame_section = get_section (DEBUG_FRAME_SECTION,
2224                                            SECTION_DEBUG, NULL);
2225       switch_to_section (debug_frame_section);
2226     }
2227
2228   ASM_GENERATE_INTERNAL_LABEL (section_start_label, FRAME_BEGIN_LABEL, for_eh);
2229   ASM_OUTPUT_LABEL (asm_out_file, section_start_label);
2230
2231   /* Output the CIE.  */
2232   ASM_GENERATE_INTERNAL_LABEL (l1, CIE_AFTER_SIZE_LABEL, for_eh);
2233   ASM_GENERATE_INTERNAL_LABEL (l2, CIE_END_LABEL, for_eh);
2234   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4 && !for_eh)
2235     dw2_asm_output_data (4, 0xffffffff,
2236       "Initial length escape value indicating 64-bit DWARF extension");
2237   dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
2238                         "Length of Common Information Entry");
2239   ASM_OUTPUT_LABEL (asm_out_file, l1);
2240
2241   /* Now that the CIE pointer is PC-relative for EH,
2242      use 0 to identify the CIE.  */
2243   dw2_asm_output_data ((for_eh ? 4 : DWARF_OFFSET_SIZE),
2244                        (for_eh ? 0 : DWARF_CIE_ID),
2245                        "CIE Identifier Tag");
2246
2247   dw2_asm_output_data (1, DW_CIE_VERSION, "CIE Version");
2248
2249   augmentation[0] = 0;
2250   augmentation_size = 0;
2251   if (for_eh)
2252     {
2253       char *p;
2254
2255       /* Augmentation:
2256          z      Indicates that a uleb128 is present to size the
2257                 augmentation section.
2258          L      Indicates the encoding (and thus presence) of
2259                 an LSDA pointer in the FDE augmentation.
2260          R      Indicates a non-default pointer encoding for
2261                 FDE code pointers.
2262          P      Indicates the presence of an encoding + language
2263                 personality routine in the CIE augmentation.  */
2264
2265       fde_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/1, /*global=*/0);
2266       per_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/2, /*global=*/1);
2267       lsda_encoding = ASM_PREFERRED_EH_DATA_FORMAT (/*code=*/0, /*global=*/0);
2268
2269       p = augmentation + 1;
2270       if (eh_personality_libfunc)
2271         {
2272           *p++ = 'P';
2273           augmentation_size += 1 + size_of_encoded_value (per_encoding);
2274         }
2275       if (any_lsda_needed)
2276         {
2277           *p++ = 'L';
2278           augmentation_size += 1;
2279         }
2280       if (fde_encoding != DW_EH_PE_absptr)
2281         {
2282           *p++ = 'R';
2283           augmentation_size += 1;
2284         }
2285       if (p > augmentation + 1)
2286         {
2287           augmentation[0] = 'z';
2288           *p = '\0';
2289         }
2290
2291       /* Ug.  Some platforms can't do unaligned dynamic relocations at all.  */
2292       if (eh_personality_libfunc && per_encoding == DW_EH_PE_aligned)
2293         {
2294           int offset = (  4             /* Length */
2295                         + 4             /* CIE Id */
2296                         + 1             /* CIE version */
2297                         + strlen (augmentation) + 1     /* Augmentation */
2298                         + size_of_uleb128 (1)           /* Code alignment */
2299                         + size_of_sleb128 (DWARF_CIE_DATA_ALIGNMENT)
2300                         + 1             /* RA column */
2301                         + 1             /* Augmentation size */
2302                         + 1             /* Personality encoding */ );
2303           int pad = -offset & (PTR_SIZE - 1);
2304
2305           augmentation_size += pad;
2306
2307           /* Augmentations should be small, so there's scarce need to
2308              iterate for a solution.  Die if we exceed one uleb128 byte.  */
2309           gcc_assert (size_of_uleb128 (augmentation_size) == 1);
2310         }
2311     }
2312
2313   dw2_asm_output_nstring (augmentation, -1, "CIE Augmentation");
2314   dw2_asm_output_data_uleb128 (1, "CIE Code Alignment Factor");
2315   dw2_asm_output_data_sleb128 (DWARF_CIE_DATA_ALIGNMENT,
2316                                "CIE Data Alignment Factor");
2317
2318   return_reg = DWARF2_FRAME_REG_OUT (DWARF_FRAME_RETURN_COLUMN, for_eh);
2319   if (DW_CIE_VERSION == 1)
2320     dw2_asm_output_data (1, return_reg, "CIE RA Column");
2321   else
2322     dw2_asm_output_data_uleb128 (return_reg, "CIE RA Column");
2323
2324   if (augmentation[0])
2325     {
2326       dw2_asm_output_data_uleb128 (augmentation_size, "Augmentation size");
2327       if (eh_personality_libfunc)
2328         {
2329           dw2_asm_output_data (1, per_encoding, "Personality (%s)",
2330                                eh_data_format_name (per_encoding));
2331           dw2_asm_output_encoded_addr_rtx (per_encoding,
2332                                            eh_personality_libfunc,
2333                                            true, NULL);
2334         }
2335
2336       if (any_lsda_needed)
2337         dw2_asm_output_data (1, lsda_encoding, "LSDA Encoding (%s)",
2338                              eh_data_format_name (lsda_encoding));
2339
2340       if (fde_encoding != DW_EH_PE_absptr)
2341         dw2_asm_output_data (1, fde_encoding, "FDE Encoding (%s)",
2342                              eh_data_format_name (fde_encoding));
2343     }
2344
2345   for (cfi = cie_cfi_head; cfi != NULL; cfi = cfi->dw_cfi_next)
2346     output_cfi (cfi, NULL, for_eh);
2347
2348   /* Pad the CIE out to an address sized boundary.  */
2349   ASM_OUTPUT_ALIGN (asm_out_file,
2350                     floor_log2 (for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE));
2351   ASM_OUTPUT_LABEL (asm_out_file, l2);
2352
2353   /* Loop through all of the FDE's.  */
2354   for (i = 0; i < fde_table_in_use; i++)
2355     {
2356       fde = &fde_table[i];
2357
2358       /* Don't emit EH unwind info for leaf functions that don't need it.  */
2359       if (for_eh && !flag_asynchronous_unwind_tables && flag_exceptions
2360           && (fde->nothrow || fde->all_throwers_are_sibcalls)
2361           && ! (TARGET_USES_WEAK_UNWIND_INFO && DECL_WEAK (fde_table[i].decl))
2362           && !fde->uses_eh_lsda)
2363         continue;
2364
2365       targetm.asm_out.unwind_label (asm_out_file, fde->decl, for_eh, /* empty */ 0);
2366       targetm.asm_out.internal_label (asm_out_file, FDE_LABEL, for_eh + i * 2);
2367       ASM_GENERATE_INTERNAL_LABEL (l1, FDE_AFTER_SIZE_LABEL, for_eh + i * 2);
2368       ASM_GENERATE_INTERNAL_LABEL (l2, FDE_END_LABEL, for_eh + i * 2);
2369       if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4 && !for_eh)
2370         dw2_asm_output_data (4, 0xffffffff,
2371                              "Initial length escape value indicating 64-bit DWARF extension");
2372       dw2_asm_output_delta (for_eh ? 4 : DWARF_OFFSET_SIZE, l2, l1,
2373                             "FDE Length");
2374       ASM_OUTPUT_LABEL (asm_out_file, l1);
2375
2376       if (for_eh)
2377         dw2_asm_output_delta (4, l1, section_start_label, "FDE CIE offset");
2378       else
2379         dw2_asm_output_offset (DWARF_OFFSET_SIZE, section_start_label,
2380                                debug_frame_section, "FDE CIE offset");
2381
2382       if (for_eh)
2383         {
2384           rtx sym_ref = gen_rtx_SYMBOL_REF (Pmode, fde->dw_fde_begin);
2385           SYMBOL_REF_FLAGS (sym_ref) |= SYMBOL_FLAG_LOCAL;
2386           dw2_asm_output_encoded_addr_rtx (fde_encoding,
2387                                            sym_ref,
2388                                            false,
2389                                            "FDE initial location");
2390           if (fde->dw_fde_switched_sections)
2391             {
2392               rtx sym_ref2 = gen_rtx_SYMBOL_REF (Pmode, 
2393                                       fde->dw_fde_unlikely_section_label);
2394               rtx sym_ref3= gen_rtx_SYMBOL_REF (Pmode, 
2395                                       fde->dw_fde_hot_section_label);
2396               SYMBOL_REF_FLAGS (sym_ref2) |= SYMBOL_FLAG_LOCAL;
2397               SYMBOL_REF_FLAGS (sym_ref3) |= SYMBOL_FLAG_LOCAL;
2398               dw2_asm_output_encoded_addr_rtx (fde_encoding, sym_ref3, false,
2399                                                "FDE initial location");
2400               dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
2401                                     fde->dw_fde_hot_section_end_label,
2402                                     fde->dw_fde_hot_section_label,
2403                                     "FDE address range");
2404               dw2_asm_output_encoded_addr_rtx (fde_encoding, sym_ref2, false,
2405                                                "FDE initial location");
2406               dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
2407                                     fde->dw_fde_unlikely_section_end_label,
2408                                     fde->dw_fde_unlikely_section_label,
2409                                     "FDE address range");
2410             }
2411           else
2412             dw2_asm_output_delta (size_of_encoded_value (fde_encoding),
2413                                   fde->dw_fde_end, fde->dw_fde_begin,
2414                                   "FDE address range");
2415         }
2416       else
2417         {
2418           dw2_asm_output_addr (DWARF2_ADDR_SIZE, fde->dw_fde_begin,
2419                                "FDE initial location");
2420           if (fde->dw_fde_switched_sections)
2421             {
2422               dw2_asm_output_addr (DWARF2_ADDR_SIZE,
2423                                    fde->dw_fde_hot_section_label,
2424                                    "FDE initial location");
2425               dw2_asm_output_delta (DWARF2_ADDR_SIZE,
2426                                     fde->dw_fde_hot_section_end_label,
2427                                     fde->dw_fde_hot_section_label,
2428                                     "FDE address range");
2429               dw2_asm_output_addr (DWARF2_ADDR_SIZE,
2430                                    fde->dw_fde_unlikely_section_label,
2431                                    "FDE initial location");
2432               dw2_asm_output_delta (DWARF2_ADDR_SIZE, 
2433                                     fde->dw_fde_unlikely_section_end_label,
2434                                     fde->dw_fde_unlikely_section_label,
2435                                     "FDE address range");
2436             }
2437           else
2438             dw2_asm_output_delta (DWARF2_ADDR_SIZE,
2439                                   fde->dw_fde_end, fde->dw_fde_begin,
2440                                   "FDE address range");
2441         }
2442
2443       if (augmentation[0])
2444         {
2445           if (any_lsda_needed)
2446             {
2447               int size = size_of_encoded_value (lsda_encoding);
2448
2449               if (lsda_encoding == DW_EH_PE_aligned)
2450                 {
2451                   int offset = (  4             /* Length */
2452                                 + 4             /* CIE offset */
2453                                 + 2 * size_of_encoded_value (fde_encoding)
2454                                 + 1             /* Augmentation size */ );
2455                   int pad = -offset & (PTR_SIZE - 1);
2456
2457                   size += pad;
2458                   gcc_assert (size_of_uleb128 (size) == 1);
2459                 }
2460
2461               dw2_asm_output_data_uleb128 (size, "Augmentation size");
2462
2463               if (fde->uses_eh_lsda)
2464                 {
2465                   ASM_GENERATE_INTERNAL_LABEL (l1, "LLSDA",
2466                                                fde->funcdef_number);
2467                   dw2_asm_output_encoded_addr_rtx (
2468                         lsda_encoding, gen_rtx_SYMBOL_REF (Pmode, l1),
2469                         false, "Language Specific Data Area");
2470                 }
2471               else
2472                 {
2473                   if (lsda_encoding == DW_EH_PE_aligned)
2474                     ASM_OUTPUT_ALIGN (asm_out_file, floor_log2 (PTR_SIZE));
2475                   dw2_asm_output_data
2476                     (size_of_encoded_value (lsda_encoding), 0,
2477                      "Language Specific Data Area (none)");
2478                 }
2479             }
2480           else
2481             dw2_asm_output_data_uleb128 (0, "Augmentation size");
2482         }
2483
2484       /* Loop through the Call Frame Instructions associated with
2485          this FDE.  */
2486       fde->dw_fde_current_label = fde->dw_fde_begin;
2487       for (cfi = fde->dw_fde_cfi; cfi != NULL; cfi = cfi->dw_cfi_next)
2488         output_cfi (cfi, fde, for_eh);
2489
2490       /* Pad the FDE out to an address sized boundary.  */
2491       ASM_OUTPUT_ALIGN (asm_out_file,
2492                         floor_log2 ((for_eh ? PTR_SIZE : DWARF2_ADDR_SIZE)));
2493       ASM_OUTPUT_LABEL (asm_out_file, l2);
2494     }
2495
2496   if (for_eh && targetm.terminate_dw2_eh_frame_info)
2497     dw2_asm_output_data (4, 0, "End of Table");
2498 #ifdef MIPS_DEBUGGING_INFO
2499   /* Work around Irix 6 assembler bug whereby labels at the end of a section
2500      get a value of 0.  Putting .align 0 after the label fixes it.  */
2501   ASM_OUTPUT_ALIGN (asm_out_file, 0);
2502 #endif
2503
2504   /* Turn off app to make assembly quicker.  */
2505   if (flag_debug_asm)
2506     app_disable ();
2507 }
2508
2509 /* Output a marker (i.e. a label) for the beginning of a function, before
2510    the prologue.  */
2511
2512 void
2513 dwarf2out_begin_prologue (unsigned int line ATTRIBUTE_UNUSED,
2514                           const char *file ATTRIBUTE_UNUSED)
2515 {
2516   char label[MAX_ARTIFICIAL_LABEL_BYTES];
2517   char * dup_label;
2518   dw_fde_ref fde;
2519
2520   current_function_func_begin_label = NULL;
2521
2522 #ifdef TARGET_UNWIND_INFO
2523   /* ??? current_function_func_begin_label is also used by except.c
2524      for call-site information.  We must emit this label if it might
2525      be used.  */
2526   if ((! flag_exceptions || USING_SJLJ_EXCEPTIONS)
2527       && ! dwarf2out_do_frame ())
2528     return;
2529 #else
2530   if (! dwarf2out_do_frame ())
2531     return;
2532 #endif
2533
2534   switch_to_section (function_section (current_function_decl));
2535   ASM_GENERATE_INTERNAL_LABEL (label, FUNC_BEGIN_LABEL,
2536                                current_function_funcdef_no);
2537   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, FUNC_BEGIN_LABEL,
2538                           current_function_funcdef_no);
2539   dup_label = xstrdup (label);
2540   current_function_func_begin_label = dup_label;
2541
2542 #ifdef TARGET_UNWIND_INFO
2543   /* We can elide the fde allocation if we're not emitting debug info.  */
2544   if (! dwarf2out_do_frame ())
2545     return;
2546 #endif
2547
2548   /* Expand the fde table if necessary.  */
2549   if (fde_table_in_use == fde_table_allocated)
2550     {
2551       fde_table_allocated += FDE_TABLE_INCREMENT;
2552       fde_table = ggc_realloc (fde_table,
2553                                fde_table_allocated * sizeof (dw_fde_node));
2554       memset (fde_table + fde_table_in_use, 0,
2555               FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
2556     }
2557
2558   /* Record the FDE associated with this function.  */
2559   current_funcdef_fde = fde_table_in_use;
2560
2561   /* Add the new FDE at the end of the fde_table.  */
2562   fde = &fde_table[fde_table_in_use++];
2563   fde->decl = current_function_decl;
2564   fde->dw_fde_begin = dup_label;
2565   fde->dw_fde_current_label = NULL;
2566   fde->dw_fde_hot_section_label = NULL;
2567   fde->dw_fde_hot_section_end_label = NULL;
2568   fde->dw_fde_unlikely_section_label = NULL;
2569   fde->dw_fde_unlikely_section_end_label = NULL;
2570   fde->dw_fde_switched_sections = false;
2571   fde->dw_fde_end = NULL;
2572   fde->dw_fde_cfi = NULL;
2573   fde->funcdef_number = current_function_funcdef_no;
2574   fde->nothrow = TREE_NOTHROW (current_function_decl);
2575   fde->uses_eh_lsda = cfun->uses_eh_lsda;
2576   fde->all_throwers_are_sibcalls = cfun->all_throwers_are_sibcalls;
2577
2578   args_size = old_args_size = 0;
2579
2580   /* We only want to output line number information for the genuine dwarf2
2581      prologue case, not the eh frame case.  */
2582 #ifdef DWARF2_DEBUGGING_INFO
2583   if (file)
2584     dwarf2out_source_line (line, file);
2585 #endif
2586 }
2587
2588 /* Output a marker (i.e. a label) for the absolute end of the generated code
2589    for a function definition.  This gets called *after* the epilogue code has
2590    been generated.  */
2591
2592 void
2593 dwarf2out_end_epilogue (unsigned int line ATTRIBUTE_UNUSED,
2594                         const char *file ATTRIBUTE_UNUSED)
2595 {
2596   dw_fde_ref fde;
2597   char label[MAX_ARTIFICIAL_LABEL_BYTES];
2598
2599   /* Output a label to mark the endpoint of the code generated for this
2600      function.  */
2601   ASM_GENERATE_INTERNAL_LABEL (label, FUNC_END_LABEL,
2602                                current_function_funcdef_no);
2603   ASM_OUTPUT_LABEL (asm_out_file, label);
2604   fde = &fde_table[fde_table_in_use - 1];
2605   fde->dw_fde_end = xstrdup (label);
2606 }
2607
2608 void
2609 dwarf2out_frame_init (void)
2610 {
2611   /* Allocate the initial hunk of the fde_table.  */
2612   fde_table = ggc_alloc_cleared (FDE_TABLE_INCREMENT * sizeof (dw_fde_node));
2613   fde_table_allocated = FDE_TABLE_INCREMENT;
2614   fde_table_in_use = 0;
2615
2616   /* Generate the CFA instructions common to all FDE's.  Do it now for the
2617      sake of lookup_cfa.  */
2618
2619   /* On entry, the Canonical Frame Address is at SP.  */
2620   dwarf2out_def_cfa (NULL, STACK_POINTER_REGNUM, INCOMING_FRAME_SP_OFFSET);
2621
2622 #ifdef DWARF2_UNWIND_INFO
2623   if (DWARF2_UNWIND_INFO)
2624     initial_return_save (INCOMING_RETURN_ADDR_RTX);
2625 #endif
2626 }
2627
2628 void
2629 dwarf2out_frame_finish (void)
2630 {
2631   /* Output call frame information.  */
2632   if (DWARF2_FRAME_INFO)
2633     output_call_frame_info (0);
2634
2635 #ifndef TARGET_UNWIND_INFO
2636   /* Output another copy for the unwinder.  */
2637   if (! USING_SJLJ_EXCEPTIONS && (flag_unwind_tables || flag_exceptions))
2638     output_call_frame_info (1);
2639 #endif
2640 }
2641 #endif
2642 \f
2643 /* And now, the subset of the debugging information support code necessary
2644    for emitting location expressions.  */
2645
2646 /* We need some way to distinguish DW_OP_addr with a direct symbol
2647    relocation from DW_OP_addr with a dtp-relative symbol relocation.  */
2648 #define INTERNAL_DW_OP_tls_addr         (0x100 + DW_OP_addr)
2649
2650
2651 typedef struct dw_val_struct *dw_val_ref;
2652 typedef struct die_struct *dw_die_ref;
2653 typedef struct dw_loc_descr_struct *dw_loc_descr_ref;
2654 typedef struct dw_loc_list_struct *dw_loc_list_ref;
2655
2656 /* Each DIE may have a series of attribute/value pairs.  Values
2657    can take on several forms.  The forms that are used in this
2658    implementation are listed below.  */
2659
2660 enum dw_val_class
2661 {
2662   dw_val_class_addr,
2663   dw_val_class_offset,
2664   dw_val_class_loc,
2665   dw_val_class_loc_list,
2666   dw_val_class_range_list,
2667   dw_val_class_const,
2668   dw_val_class_unsigned_const,
2669   dw_val_class_long_long,
2670   dw_val_class_vec,
2671   dw_val_class_flag,
2672   dw_val_class_die_ref,
2673   dw_val_class_fde_ref,
2674   dw_val_class_lbl_id,
2675   dw_val_class_lineptr,
2676   dw_val_class_str,
2677   dw_val_class_macptr
2678 };
2679
2680 /* Describe a double word constant value.  */
2681 /* ??? Every instance of long_long in the code really means CONST_DOUBLE.  */
2682
2683 typedef struct dw_long_long_struct GTY(())
2684 {
2685   unsigned long hi;
2686   unsigned long low;
2687 }
2688 dw_long_long_const;
2689
2690 /* Describe a floating point constant value, or a vector constant value.  */
2691
2692 typedef struct dw_vec_struct GTY(())
2693 {
2694   unsigned char * GTY((length ("%h.length"))) array;
2695   unsigned length;
2696   unsigned elt_size;
2697 }
2698 dw_vec_const;
2699
2700 /* The dw_val_node describes an attribute's value, as it is
2701    represented internally.  */
2702
2703 typedef struct dw_val_struct GTY(())
2704 {
2705   enum dw_val_class val_class;
2706   union dw_val_struct_union
2707     {
2708       rtx GTY ((tag ("dw_val_class_addr"))) val_addr;
2709       unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_offset"))) val_offset;
2710       dw_loc_list_ref GTY ((tag ("dw_val_class_loc_list"))) val_loc_list;
2711       dw_loc_descr_ref GTY ((tag ("dw_val_class_loc"))) val_loc;
2712       HOST_WIDE_INT GTY ((default)) val_int;
2713       unsigned HOST_WIDE_INT GTY ((tag ("dw_val_class_unsigned_const"))) val_unsigned;
2714       dw_long_long_const GTY ((tag ("dw_val_class_long_long"))) val_long_long;
2715       dw_vec_const GTY ((tag ("dw_val_class_vec"))) val_vec;
2716       struct dw_val_die_union
2717         {
2718           dw_die_ref die;
2719           int external;
2720         } GTY ((tag ("dw_val_class_die_ref"))) val_die_ref;
2721       unsigned GTY ((tag ("dw_val_class_fde_ref"))) val_fde_index;
2722       struct indirect_string_node * GTY ((tag ("dw_val_class_str"))) val_str;
2723       char * GTY ((tag ("dw_val_class_lbl_id"))) val_lbl_id;
2724       unsigned char GTY ((tag ("dw_val_class_flag"))) val_flag;
2725     }
2726   GTY ((desc ("%1.val_class"))) v;
2727 }
2728 dw_val_node;
2729
2730 /* Locations in memory are described using a sequence of stack machine
2731    operations.  */
2732
2733 typedef struct dw_loc_descr_struct GTY(())
2734 {
2735   dw_loc_descr_ref dw_loc_next;
2736   enum dwarf_location_atom dw_loc_opc;
2737   dw_val_node dw_loc_oprnd1;
2738   dw_val_node dw_loc_oprnd2;
2739   int dw_loc_addr;
2740 }
2741 dw_loc_descr_node;
2742
2743 /* Location lists are ranges + location descriptions for that range,
2744    so you can track variables that are in different places over
2745    their entire life.  */
2746 typedef struct dw_loc_list_struct GTY(())
2747 {
2748   dw_loc_list_ref dw_loc_next;
2749   const char *begin; /* Label for begin address of range */
2750   const char *end;  /* Label for end address of range */
2751   char *ll_symbol; /* Label for beginning of location list.
2752                       Only on head of list */
2753   const char *section; /* Section this loclist is relative to */
2754   dw_loc_descr_ref expr;
2755 } dw_loc_list_node;
2756
2757 #if defined (DWARF2_DEBUGGING_INFO) || defined (DWARF2_UNWIND_INFO)
2758
2759 static const char *dwarf_stack_op_name (unsigned);
2760 static dw_loc_descr_ref new_loc_descr (enum dwarf_location_atom,
2761                                        unsigned HOST_WIDE_INT, unsigned HOST_WIDE_INT);
2762 static void add_loc_descr (dw_loc_descr_ref *, dw_loc_descr_ref);
2763 static unsigned long size_of_loc_descr (dw_loc_descr_ref);
2764 static unsigned long size_of_locs (dw_loc_descr_ref);
2765 static void output_loc_operands (dw_loc_descr_ref);
2766 static void output_loc_sequence (dw_loc_descr_ref);
2767
2768 /* Convert a DWARF stack opcode into its string name.  */
2769
2770 static const char *
2771 dwarf_stack_op_name (unsigned int op)
2772 {
2773   switch (op)
2774     {
2775     case DW_OP_addr:
2776     case INTERNAL_DW_OP_tls_addr:
2777       return "DW_OP_addr";
2778     case DW_OP_deref:
2779       return "DW_OP_deref";
2780     case DW_OP_const1u:
2781       return "DW_OP_const1u";
2782     case DW_OP_const1s:
2783       return "DW_OP_const1s";
2784     case DW_OP_const2u:
2785       return "DW_OP_const2u";
2786     case DW_OP_const2s:
2787       return "DW_OP_const2s";
2788     case DW_OP_const4u:
2789       return "DW_OP_const4u";
2790     case DW_OP_const4s:
2791       return "DW_OP_const4s";
2792     case DW_OP_const8u:
2793       return "DW_OP_const8u";
2794     case DW_OP_const8s:
2795       return "DW_OP_const8s";
2796     case DW_OP_constu:
2797       return "DW_OP_constu";
2798     case DW_OP_consts:
2799       return "DW_OP_consts";
2800     case DW_OP_dup:
2801       return "DW_OP_dup";
2802     case DW_OP_drop:
2803       return "DW_OP_drop";
2804     case DW_OP_over:
2805       return "DW_OP_over";
2806     case DW_OP_pick:
2807       return "DW_OP_pick";
2808     case DW_OP_swap:
2809       return "DW_OP_swap";
2810     case DW_OP_rot:
2811       return "DW_OP_rot";
2812     case DW_OP_xderef:
2813       return "DW_OP_xderef";
2814     case DW_OP_abs:
2815       return "DW_OP_abs";
2816     case DW_OP_and:
2817       return "DW_OP_and";
2818     case DW_OP_div:
2819       return "DW_OP_div";
2820     case DW_OP_minus:
2821       return "DW_OP_minus";
2822     case DW_OP_mod:
2823       return "DW_OP_mod";
2824     case DW_OP_mul:
2825       return "DW_OP_mul";
2826     case DW_OP_neg:
2827       return "DW_OP_neg";
2828     case DW_OP_not:
2829       return "DW_OP_not";
2830     case DW_OP_or:
2831       return "DW_OP_or";
2832     case DW_OP_plus:
2833       return "DW_OP_plus";
2834     case DW_OP_plus_uconst:
2835       return "DW_OP_plus_uconst";
2836     case DW_OP_shl:
2837       return "DW_OP_shl";
2838     case DW_OP_shr:
2839       return "DW_OP_shr";
2840     case DW_OP_shra:
2841       return "DW_OP_shra";
2842     case DW_OP_xor:
2843       return "DW_OP_xor";
2844     case DW_OP_bra:
2845       return "DW_OP_bra";
2846     case DW_OP_eq:
2847       return "DW_OP_eq";
2848     case DW_OP_ge:
2849       return "DW_OP_ge";
2850     case DW_OP_gt:
2851       return "DW_OP_gt";
2852     case DW_OP_le:
2853       return "DW_OP_le";
2854     case DW_OP_lt:
2855       return "DW_OP_lt";
2856     case DW_OP_ne:
2857       return "DW_OP_ne";
2858     case DW_OP_skip:
2859       return "DW_OP_skip";
2860     case DW_OP_lit0:
2861       return "DW_OP_lit0";
2862     case DW_OP_lit1:
2863       return "DW_OP_lit1";
2864     case DW_OP_lit2:
2865       return "DW_OP_lit2";
2866     case DW_OP_lit3:
2867       return "DW_OP_lit3";
2868     case DW_OP_lit4:
2869       return "DW_OP_lit4";
2870     case DW_OP_lit5:
2871       return "DW_OP_lit5";
2872     case DW_OP_lit6:
2873       return "DW_OP_lit6";
2874     case DW_OP_lit7:
2875       return "DW_OP_lit7";
2876     case DW_OP_lit8:
2877       return "DW_OP_lit8";
2878     case DW_OP_lit9:
2879       return "DW_OP_lit9";
2880     case DW_OP_lit10:
2881       return "DW_OP_lit10";
2882     case DW_OP_lit11:
2883       return "DW_OP_lit11";
2884     case DW_OP_lit12:
2885       return "DW_OP_lit12";
2886     case DW_OP_lit13:
2887       return "DW_OP_lit13";
2888     case DW_OP_lit14:
2889       return "DW_OP_lit14";
2890     case DW_OP_lit15:
2891       return "DW_OP_lit15";
2892     case DW_OP_lit16:
2893       return "DW_OP_lit16";
2894     case DW_OP_lit17:
2895       return "DW_OP_lit17";
2896     case DW_OP_lit18:
2897       return "DW_OP_lit18";
2898     case DW_OP_lit19:
2899       return "DW_OP_lit19";
2900     case DW_OP_lit20:
2901       return "DW_OP_lit20";
2902     case DW_OP_lit21:
2903       return "DW_OP_lit21";
2904     case DW_OP_lit22:
2905       return "DW_OP_lit22";
2906     case DW_OP_lit23:
2907       return "DW_OP_lit23";
2908     case DW_OP_lit24:
2909       return "DW_OP_lit24";
2910     case DW_OP_lit25:
2911       return "DW_OP_lit25";
2912     case DW_OP_lit26:
2913       return "DW_OP_lit26";
2914     case DW_OP_lit27:
2915       return "DW_OP_lit27";
2916     case DW_OP_lit28:
2917       return "DW_OP_lit28";
2918     case DW_OP_lit29:
2919       return "DW_OP_lit29";
2920     case DW_OP_lit30:
2921       return "DW_OP_lit30";
2922     case DW_OP_lit31:
2923       return "DW_OP_lit31";
2924     case DW_OP_reg0:
2925       return "DW_OP_reg0";
2926     case DW_OP_reg1:
2927       return "DW_OP_reg1";
2928     case DW_OP_reg2:
2929       return "DW_OP_reg2";
2930     case DW_OP_reg3:
2931       return "DW_OP_reg3";
2932     case DW_OP_reg4:
2933       return "DW_OP_reg4";
2934     case DW_OP_reg5:
2935       return "DW_OP_reg5";
2936     case DW_OP_reg6:
2937       return "DW_OP_reg6";
2938     case DW_OP_reg7:
2939       return "DW_OP_reg7";
2940     case DW_OP_reg8:
2941       return "DW_OP_reg8";
2942     case DW_OP_reg9:
2943       return "DW_OP_reg9";
2944     case DW_OP_reg10:
2945       return "DW_OP_reg10";
2946     case DW_OP_reg11:
2947       return "DW_OP_reg11";
2948     case DW_OP_reg12:
2949       return "DW_OP_reg12";
2950     case DW_OP_reg13:
2951       return "DW_OP_reg13";
2952     case DW_OP_reg14:
2953       return "DW_OP_reg14";
2954     case DW_OP_reg15:
2955       return "DW_OP_reg15";
2956     case DW_OP_reg16:
2957       return "DW_OP_reg16";
2958     case DW_OP_reg17:
2959       return "DW_OP_reg17";
2960     case DW_OP_reg18:
2961       return "DW_OP_reg18";
2962     case DW_OP_reg19:
2963       return "DW_OP_reg19";
2964     case DW_OP_reg20:
2965       return "DW_OP_reg20";
2966     case DW_OP_reg21:
2967       return "DW_OP_reg21";
2968     case DW_OP_reg22:
2969       return "DW_OP_reg22";
2970     case DW_OP_reg23:
2971       return "DW_OP_reg23";
2972     case DW_OP_reg24:
2973       return "DW_OP_reg24";
2974     case DW_OP_reg25:
2975       return "DW_OP_reg25";
2976     case DW_OP_reg26:
2977       return "DW_OP_reg26";
2978     case DW_OP_reg27:
2979       return "DW_OP_reg27";
2980     case DW_OP_reg28:
2981       return "DW_OP_reg28";
2982     case DW_OP_reg29:
2983       return "DW_OP_reg29";
2984     case DW_OP_reg30:
2985       return "DW_OP_reg30";
2986     case DW_OP_reg31:
2987       return "DW_OP_reg31";
2988     case DW_OP_breg0:
2989       return "DW_OP_breg0";
2990     case DW_OP_breg1:
2991       return "DW_OP_breg1";
2992     case DW_OP_breg2:
2993       return "DW_OP_breg2";
2994     case DW_OP_breg3:
2995       return "DW_OP_breg3";
2996     case DW_OP_breg4:
2997       return "DW_OP_breg4";
2998     case DW_OP_breg5:
2999       return "DW_OP_breg5";
3000     case DW_OP_breg6:
3001       return "DW_OP_breg6";
3002     case DW_OP_breg7:
3003       return "DW_OP_breg7";
3004     case DW_OP_breg8:
3005       return "DW_OP_breg8";
3006     case DW_OP_breg9:
3007       return "DW_OP_breg9";
3008     case DW_OP_breg10:
3009       return "DW_OP_breg10";
3010     case DW_OP_breg11:
3011       return "DW_OP_breg11";
3012     case DW_OP_breg12:
3013       return "DW_OP_breg12";
3014     case DW_OP_breg13:
3015       return "DW_OP_breg13";
3016     case DW_OP_breg14:
3017       return "DW_OP_breg14";
3018     case DW_OP_breg15:
3019       return "DW_OP_breg15";
3020     case DW_OP_breg16:
3021       return "DW_OP_breg16";
3022     case DW_OP_breg17:
3023       return "DW_OP_breg17";
3024     case DW_OP_breg18:
3025       return "DW_OP_breg18";
3026     case DW_OP_breg19:
3027       return "DW_OP_breg19";
3028     case DW_OP_breg20:
3029       return "DW_OP_breg20";
3030     case DW_OP_breg21:
3031       return "DW_OP_breg21";
3032     case DW_OP_breg22:
3033       return "DW_OP_breg22";
3034     case DW_OP_breg23:
3035       return "DW_OP_breg23";
3036     case DW_OP_breg24:
3037       return "DW_OP_breg24";
3038     case DW_OP_breg25:
3039       return "DW_OP_breg25";
3040     case DW_OP_breg26:
3041       return "DW_OP_breg26";
3042     case DW_OP_breg27:
3043       return "DW_OP_breg27";
3044     case DW_OP_breg28:
3045       return "DW_OP_breg28";
3046     case DW_OP_breg29:
3047       return "DW_OP_breg29";
3048     case DW_OP_breg30:
3049       return "DW_OP_breg30";
3050     case DW_OP_breg31:
3051       return "DW_OP_breg31";
3052     case DW_OP_regx:
3053       return "DW_OP_regx";
3054     case DW_OP_fbreg:
3055       return "DW_OP_fbreg";
3056     case DW_OP_bregx:
3057       return "DW_OP_bregx";
3058     case DW_OP_piece:
3059       return "DW_OP_piece";
3060     case DW_OP_deref_size:
3061       return "DW_OP_deref_size";
3062     case DW_OP_xderef_size:
3063       return "DW_OP_xderef_size";
3064     case DW_OP_nop:
3065       return "DW_OP_nop";
3066     case DW_OP_push_object_address:
3067       return "DW_OP_push_object_address";
3068     case DW_OP_call2:
3069       return "DW_OP_call2";
3070     case DW_OP_call4:
3071       return "DW_OP_call4";
3072     case DW_OP_call_ref:
3073       return "DW_OP_call_ref";
3074     case DW_OP_GNU_push_tls_address:
3075       return "DW_OP_GNU_push_tls_address";
3076     default:
3077       return "OP_<unknown>";
3078     }
3079 }
3080
3081 /* Return a pointer to a newly allocated location description.  Location
3082    descriptions are simple expression terms that can be strung
3083    together to form more complicated location (address) descriptions.  */
3084
3085 static inline dw_loc_descr_ref
3086 new_loc_descr (enum dwarf_location_atom op, unsigned HOST_WIDE_INT oprnd1,
3087                unsigned HOST_WIDE_INT oprnd2)
3088 {
3089   dw_loc_descr_ref descr = ggc_alloc_cleared (sizeof (dw_loc_descr_node));
3090
3091   descr->dw_loc_opc = op;
3092   descr->dw_loc_oprnd1.val_class = dw_val_class_unsigned_const;
3093   descr->dw_loc_oprnd1.v.val_unsigned = oprnd1;
3094   descr->dw_loc_oprnd2.val_class = dw_val_class_unsigned_const;
3095   descr->dw_loc_oprnd2.v.val_unsigned = oprnd2;
3096
3097   return descr;
3098 }
3099
3100 /* Add a location description term to a location description expression.  */
3101
3102 static inline void
3103 add_loc_descr (dw_loc_descr_ref *list_head, dw_loc_descr_ref descr)
3104 {
3105   dw_loc_descr_ref *d;
3106
3107   /* Find the end of the chain.  */
3108   for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
3109     ;
3110
3111   *d = descr;
3112 }
3113
3114 /* Return the size of a location descriptor.  */
3115
3116 static unsigned long
3117 size_of_loc_descr (dw_loc_descr_ref loc)
3118 {
3119   unsigned long size = 1;
3120
3121   switch (loc->dw_loc_opc)
3122     {
3123     case DW_OP_addr:
3124     case INTERNAL_DW_OP_tls_addr:
3125       size += DWARF2_ADDR_SIZE;
3126       break;
3127     case DW_OP_const1u:
3128     case DW_OP_const1s:
3129       size += 1;
3130       break;
3131     case DW_OP_const2u:
3132     case DW_OP_const2s:
3133       size += 2;
3134       break;
3135     case DW_OP_const4u:
3136     case DW_OP_const4s:
3137       size += 4;
3138       break;
3139     case DW_OP_const8u:
3140     case DW_OP_const8s:
3141       size += 8;
3142       break;
3143     case DW_OP_constu:
3144       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3145       break;
3146     case DW_OP_consts:
3147       size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
3148       break;
3149     case DW_OP_pick:
3150       size += 1;
3151       break;
3152     case DW_OP_plus_uconst:
3153       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3154       break;
3155     case DW_OP_skip:
3156     case DW_OP_bra:
3157       size += 2;
3158       break;
3159     case DW_OP_breg0:
3160     case DW_OP_breg1:
3161     case DW_OP_breg2:
3162     case DW_OP_breg3:
3163     case DW_OP_breg4:
3164     case DW_OP_breg5:
3165     case DW_OP_breg6:
3166     case DW_OP_breg7:
3167     case DW_OP_breg8:
3168     case DW_OP_breg9:
3169     case DW_OP_breg10:
3170     case DW_OP_breg11:
3171     case DW_OP_breg12:
3172     case DW_OP_breg13:
3173     case DW_OP_breg14:
3174     case DW_OP_breg15:
3175     case DW_OP_breg16:
3176     case DW_OP_breg17:
3177     case DW_OP_breg18:
3178     case DW_OP_breg19:
3179     case DW_OP_breg20:
3180     case DW_OP_breg21:
3181     case DW_OP_breg22:
3182     case DW_OP_breg23:
3183     case DW_OP_breg24:
3184     case DW_OP_breg25:
3185     case DW_OP_breg26:
3186     case DW_OP_breg27:
3187     case DW_OP_breg28:
3188     case DW_OP_breg29:
3189     case DW_OP_breg30:
3190     case DW_OP_breg31:
3191       size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
3192       break;
3193     case DW_OP_regx:
3194       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3195       break;
3196     case DW_OP_fbreg:
3197       size += size_of_sleb128 (loc->dw_loc_oprnd1.v.val_int);
3198       break;
3199     case DW_OP_bregx:
3200       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3201       size += size_of_sleb128 (loc->dw_loc_oprnd2.v.val_int);
3202       break;
3203     case DW_OP_piece:
3204       size += size_of_uleb128 (loc->dw_loc_oprnd1.v.val_unsigned);
3205       break;
3206     case DW_OP_deref_size:
3207     case DW_OP_xderef_size:
3208       size += 1;
3209       break;
3210     case DW_OP_call2:
3211       size += 2;
3212       break;
3213     case DW_OP_call4:
3214       size += 4;
3215       break;
3216     case DW_OP_call_ref:
3217       size += DWARF2_ADDR_SIZE;
3218       break;
3219     default:
3220       break;
3221     }
3222
3223   return size;
3224 }
3225
3226 /* Return the size of a series of location descriptors.  */
3227
3228 static unsigned long
3229 size_of_locs (dw_loc_descr_ref loc)
3230 {
3231   unsigned long size;
3232
3233   for (size = 0; loc != NULL; loc = loc->dw_loc_next)
3234     {
3235       loc->dw_loc_addr = size;
3236       size += size_of_loc_descr (loc);
3237     }
3238
3239   return size;
3240 }
3241
3242 /* Output location description stack opcode's operands (if any).  */
3243
3244 static void
3245 output_loc_operands (dw_loc_descr_ref loc)
3246 {
3247   dw_val_ref val1 = &loc->dw_loc_oprnd1;
3248   dw_val_ref val2 = &loc->dw_loc_oprnd2;
3249
3250   switch (loc->dw_loc_opc)
3251     {
3252 #ifdef DWARF2_DEBUGGING_INFO
3253     case DW_OP_addr:
3254       dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, val1->v.val_addr, NULL);
3255       break;
3256     case DW_OP_const2u:
3257     case DW_OP_const2s:
3258       dw2_asm_output_data (2, val1->v.val_int, NULL);
3259       break;
3260     case DW_OP_const4u:
3261     case DW_OP_const4s:
3262       dw2_asm_output_data (4, val1->v.val_int, NULL);
3263       break;
3264     case DW_OP_const8u:
3265     case DW_OP_const8s:
3266       gcc_assert (HOST_BITS_PER_LONG >= 64);
3267       dw2_asm_output_data (8, val1->v.val_int, NULL);
3268       break;
3269     case DW_OP_skip:
3270     case DW_OP_bra:
3271       {
3272         int offset;
3273
3274         gcc_assert (val1->val_class == dw_val_class_loc);
3275         offset = val1->v.val_loc->dw_loc_addr - (loc->dw_loc_addr + 3);
3276
3277         dw2_asm_output_data (2, offset, NULL);
3278       }
3279       break;
3280 #else
3281     case DW_OP_addr:
3282     case DW_OP_const2u:
3283     case DW_OP_const2s:
3284     case DW_OP_const4u:
3285     case DW_OP_const4s:
3286     case DW_OP_const8u:
3287     case DW_OP_const8s:
3288     case DW_OP_skip:
3289     case DW_OP_bra:
3290       /* We currently don't make any attempt to make sure these are
3291          aligned properly like we do for the main unwind info, so
3292          don't support emitting things larger than a byte if we're
3293          only doing unwinding.  */
3294       gcc_unreachable ();
3295 #endif
3296     case DW_OP_const1u:
3297     case DW_OP_const1s:
3298       dw2_asm_output_data (1, val1->v.val_int, NULL);
3299       break;
3300     case DW_OP_constu:
3301       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3302       break;
3303     case DW_OP_consts:
3304       dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3305       break;
3306     case DW_OP_pick:
3307       dw2_asm_output_data (1, val1->v.val_int, NULL);
3308       break;
3309     case DW_OP_plus_uconst:
3310       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3311       break;
3312     case DW_OP_breg0:
3313     case DW_OP_breg1:
3314     case DW_OP_breg2:
3315     case DW_OP_breg3:
3316     case DW_OP_breg4:
3317     case DW_OP_breg5:
3318     case DW_OP_breg6:
3319     case DW_OP_breg7:
3320     case DW_OP_breg8:
3321     case DW_OP_breg9:
3322     case DW_OP_breg10:
3323     case DW_OP_breg11:
3324     case DW_OP_breg12:
3325     case DW_OP_breg13:
3326     case DW_OP_breg14:
3327     case DW_OP_breg15:
3328     case DW_OP_breg16:
3329     case DW_OP_breg17:
3330     case DW_OP_breg18:
3331     case DW_OP_breg19:
3332     case DW_OP_breg20:
3333     case DW_OP_breg21:
3334     case DW_OP_breg22:
3335     case DW_OP_breg23:
3336     case DW_OP_breg24:
3337     case DW_OP_breg25:
3338     case DW_OP_breg26:
3339     case DW_OP_breg27:
3340     case DW_OP_breg28:
3341     case DW_OP_breg29:
3342     case DW_OP_breg30:
3343     case DW_OP_breg31:
3344       dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3345       break;
3346     case DW_OP_regx:
3347       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3348       break;
3349     case DW_OP_fbreg:
3350       dw2_asm_output_data_sleb128 (val1->v.val_int, NULL);
3351       break;
3352     case DW_OP_bregx:
3353       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3354       dw2_asm_output_data_sleb128 (val2->v.val_int, NULL);
3355       break;
3356     case DW_OP_piece:
3357       dw2_asm_output_data_uleb128 (val1->v.val_unsigned, NULL);
3358       break;
3359     case DW_OP_deref_size:
3360     case DW_OP_xderef_size:
3361       dw2_asm_output_data (1, val1->v.val_int, NULL);
3362       break;
3363
3364     case INTERNAL_DW_OP_tls_addr:
3365       if (targetm.asm_out.output_dwarf_dtprel)
3366         {
3367           targetm.asm_out.output_dwarf_dtprel (asm_out_file,
3368                                                DWARF2_ADDR_SIZE,
3369                                                val1->v.val_addr);
3370           fputc ('\n', asm_out_file);
3371         }
3372       else
3373         gcc_unreachable ();
3374       break;
3375
3376     default:
3377       /* Other codes have no operands.  */
3378       break;
3379     }
3380 }
3381
3382 /* Output a sequence of location operations.  */
3383
3384 static void
3385 output_loc_sequence (dw_loc_descr_ref loc)
3386 {
3387   for (; loc != NULL; loc = loc->dw_loc_next)
3388     {
3389       /* Output the opcode.  */
3390       dw2_asm_output_data (1, loc->dw_loc_opc,
3391                            "%s", dwarf_stack_op_name (loc->dw_loc_opc));
3392
3393       /* Output the operand(s) (if any).  */
3394       output_loc_operands (loc);
3395     }
3396 }
3397
3398 /* This routine will generate the correct assembly data for a location
3399    description based on a cfi entry with a complex address.  */
3400
3401 static void
3402 output_cfa_loc (dw_cfi_ref cfi)
3403 {
3404   dw_loc_descr_ref loc;
3405   unsigned long size;
3406
3407   /* Output the size of the block.  */
3408   loc = cfi->dw_cfi_oprnd1.dw_cfi_loc;
3409   size = size_of_locs (loc);
3410   dw2_asm_output_data_uleb128 (size, NULL);
3411
3412   /* Now output the operations themselves.  */
3413   output_loc_sequence (loc);
3414 }
3415
3416 /* This function builds a dwarf location descriptor sequence from a
3417    dw_cfa_location, adding the given OFFSET to the result of the
3418    expression.  */
3419
3420 static struct dw_loc_descr_struct *
3421 build_cfa_loc (dw_cfa_location *cfa, HOST_WIDE_INT offset)
3422 {
3423   struct dw_loc_descr_struct *head, *tmp;
3424
3425   offset += cfa->offset;
3426
3427   if (cfa->indirect)
3428     {
3429       if (cfa->base_offset)
3430         {
3431           if (cfa->reg <= 31)
3432             head = new_loc_descr (DW_OP_breg0 + cfa->reg, cfa->base_offset, 0);
3433           else
3434             head = new_loc_descr (DW_OP_bregx, cfa->reg, cfa->base_offset);
3435         }
3436       else if (cfa->reg <= 31)
3437         head = new_loc_descr (DW_OP_reg0 + cfa->reg, 0, 0);
3438       else
3439         head = new_loc_descr (DW_OP_regx, cfa->reg, 0);
3440
3441       head->dw_loc_oprnd1.val_class = dw_val_class_const;
3442       tmp = new_loc_descr (DW_OP_deref, 0, 0);
3443       add_loc_descr (&head, tmp);
3444       if (offset != 0)
3445         {
3446           tmp = new_loc_descr (DW_OP_plus_uconst, offset, 0);
3447           add_loc_descr (&head, tmp);
3448         }
3449     }
3450   else
3451     {
3452       if (offset == 0)
3453         if (cfa->reg <= 31)
3454           head = new_loc_descr (DW_OP_reg0 + cfa->reg, 0, 0);
3455         else
3456           head = new_loc_descr (DW_OP_regx, cfa->reg, 0);
3457       else if (cfa->reg <= 31)
3458         head = new_loc_descr (DW_OP_breg0 + cfa->reg, offset, 0);
3459       else
3460         head = new_loc_descr (DW_OP_bregx, cfa->reg, offset);
3461     }
3462
3463   return head;
3464 }
3465
3466 /* This function fills in aa dw_cfa_location structure from a dwarf location
3467    descriptor sequence.  */
3468
3469 static void
3470 get_cfa_from_loc_descr (dw_cfa_location *cfa, struct dw_loc_descr_struct *loc)
3471 {
3472   struct dw_loc_descr_struct *ptr;
3473   cfa->offset = 0;
3474   cfa->base_offset = 0;
3475   cfa->indirect = 0;
3476   cfa->reg = -1;
3477
3478   for (ptr = loc; ptr != NULL; ptr = ptr->dw_loc_next)
3479     {
3480       enum dwarf_location_atom op = ptr->dw_loc_opc;
3481
3482       switch (op)
3483         {
3484         case DW_OP_reg0:
3485         case DW_OP_reg1:
3486         case DW_OP_reg2:
3487         case DW_OP_reg3:
3488         case DW_OP_reg4:
3489         case DW_OP_reg5:
3490         case DW_OP_reg6:
3491         case DW_OP_reg7:
3492         case DW_OP_reg8:
3493         case DW_OP_reg9:
3494         case DW_OP_reg10:
3495         case DW_OP_reg11:
3496         case DW_OP_reg12:
3497         case DW_OP_reg13:
3498         case DW_OP_reg14:
3499         case DW_OP_reg15:
3500         case DW_OP_reg16:
3501         case DW_OP_reg17:
3502         case DW_OP_reg18:
3503         case DW_OP_reg19:
3504         case DW_OP_reg20:
3505         case DW_OP_reg21:
3506         case DW_OP_reg22:
3507         case DW_OP_reg23:
3508         case DW_OP_reg24:
3509         case DW_OP_reg25:
3510         case DW_OP_reg26:
3511         case DW_OP_reg27:
3512         case DW_OP_reg28:
3513         case DW_OP_reg29:
3514         case DW_OP_reg30:
3515         case DW_OP_reg31:
3516           cfa->reg = op - DW_OP_reg0;
3517           break;
3518         case DW_OP_regx:
3519           cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3520           break;
3521         case DW_OP_breg0:
3522         case DW_OP_breg1:
3523         case DW_OP_breg2:
3524         case DW_OP_breg3:
3525         case DW_OP_breg4:
3526         case DW_OP_breg5:
3527         case DW_OP_breg6:
3528         case DW_OP_breg7:
3529         case DW_OP_breg8:
3530         case DW_OP_breg9:
3531         case DW_OP_breg10:
3532         case DW_OP_breg11:
3533         case DW_OP_breg12:
3534         case DW_OP_breg13:
3535         case DW_OP_breg14:
3536         case DW_OP_breg15:
3537         case DW_OP_breg16:
3538         case DW_OP_breg17:
3539         case DW_OP_breg18:
3540         case DW_OP_breg19:
3541         case DW_OP_breg20:
3542         case DW_OP_breg21:
3543         case DW_OP_breg22:
3544         case DW_OP_breg23:
3545         case DW_OP_breg24:
3546         case DW_OP_breg25:
3547         case DW_OP_breg26:
3548         case DW_OP_breg27:
3549         case DW_OP_breg28:
3550         case DW_OP_breg29:
3551         case DW_OP_breg30:
3552         case DW_OP_breg31:
3553           cfa->reg = op - DW_OP_breg0;
3554           cfa->base_offset = ptr->dw_loc_oprnd1.v.val_int;
3555           break;
3556         case DW_OP_bregx:
3557           cfa->reg = ptr->dw_loc_oprnd1.v.val_int;
3558           cfa->base_offset = ptr->dw_loc_oprnd2.v.val_int;
3559           break;
3560         case DW_OP_deref:
3561           cfa->indirect = 1;
3562           break;
3563         case DW_OP_plus_uconst:
3564           cfa->offset = ptr->dw_loc_oprnd1.v.val_unsigned;
3565           break;
3566         default:
3567           internal_error ("DW_LOC_OP %s not implemented",
3568                           dwarf_stack_op_name (ptr->dw_loc_opc));
3569         }
3570     }
3571 }
3572 #endif /* .debug_frame support */
3573 \f
3574 /* And now, the support for symbolic debugging information.  */
3575 #ifdef DWARF2_DEBUGGING_INFO
3576
3577 /* .debug_str support.  */
3578 static int output_indirect_string (void **, void *);
3579
3580 static void dwarf2out_init (const char *);
3581 static void dwarf2out_finish (const char *);
3582 static void dwarf2out_define (unsigned int, const char *);
3583 static void dwarf2out_undef (unsigned int, const char *);
3584 static void dwarf2out_start_source_file (unsigned, const char *);
3585 static void dwarf2out_end_source_file (unsigned);
3586 static void dwarf2out_begin_block (unsigned, unsigned);
3587 static void dwarf2out_end_block (unsigned, unsigned);
3588 static bool dwarf2out_ignore_block (tree);
3589 static void dwarf2out_global_decl (tree);
3590 static void dwarf2out_type_decl (tree, int);
3591 static void dwarf2out_imported_module_or_decl (tree, tree);
3592 static void dwarf2out_abstract_function (tree);
3593 static void dwarf2out_var_location (rtx);
3594 static void dwarf2out_begin_function (tree);
3595 static void dwarf2out_switch_text_section (void);
3596
3597 /* The debug hooks structure.  */
3598
3599 const struct gcc_debug_hooks dwarf2_debug_hooks =
3600 {
3601   dwarf2out_init,
3602   dwarf2out_finish,
3603   dwarf2out_define,
3604   dwarf2out_undef,
3605   dwarf2out_start_source_file,
3606   dwarf2out_end_source_file,
3607   dwarf2out_begin_block,
3608   dwarf2out_end_block,
3609   dwarf2out_ignore_block,
3610   dwarf2out_source_line,
3611   dwarf2out_begin_prologue,
3612   debug_nothing_int_charstar,   /* end_prologue */
3613   dwarf2out_end_epilogue,
3614   dwarf2out_begin_function,
3615   debug_nothing_int,            /* end_function */
3616   dwarf2out_decl,               /* function_decl */
3617   dwarf2out_global_decl,
3618   dwarf2out_type_decl,          /* type_decl */
3619   dwarf2out_imported_module_or_decl,
3620   debug_nothing_tree,           /* deferred_inline_function */
3621   /* The DWARF 2 backend tries to reduce debugging bloat by not
3622      emitting the abstract description of inline functions until
3623      something tries to reference them.  */
3624   dwarf2out_abstract_function,  /* outlining_inline_function */
3625   debug_nothing_rtx,            /* label */
3626   debug_nothing_int,            /* handle_pch */
3627   dwarf2out_var_location,
3628   dwarf2out_switch_text_section,
3629   1                             /* start_end_main_source_file */
3630 };
3631 #endif
3632 \f
3633 /* NOTE: In the comments in this file, many references are made to
3634    "Debugging Information Entries".  This term is abbreviated as `DIE'
3635    throughout the remainder of this file.  */
3636
3637 /* An internal representation of the DWARF output is built, and then
3638    walked to generate the DWARF debugging info.  The walk of the internal
3639    representation is done after the entire program has been compiled.
3640    The types below are used to describe the internal representation.  */
3641
3642 /* Various DIE's use offsets relative to the beginning of the
3643    .debug_info section to refer to each other.  */
3644
3645 typedef long int dw_offset;
3646
3647 /* Define typedefs here to avoid circular dependencies.  */
3648
3649 typedef struct dw_attr_struct *dw_attr_ref;
3650 typedef struct dw_line_info_struct *dw_line_info_ref;
3651 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
3652 typedef struct pubname_struct *pubname_ref;
3653 typedef struct dw_ranges_struct *dw_ranges_ref;
3654
3655 /* Each entry in the line_info_table maintains the file and
3656    line number associated with the label generated for that
3657    entry.  The label gives the PC value associated with
3658    the line number entry.  */
3659
3660 typedef struct dw_line_info_struct GTY(())
3661 {
3662   unsigned long dw_file_num;
3663   unsigned long dw_line_num;
3664 }
3665 dw_line_info_entry;
3666
3667 /* Line information for functions in separate sections; each one gets its
3668    own sequence.  */
3669 typedef struct dw_separate_line_info_struct GTY(())
3670 {
3671   unsigned long dw_file_num;
3672   unsigned long dw_line_num;
3673   unsigned long function;
3674 }
3675 dw_separate_line_info_entry;
3676
3677 /* Each DIE attribute has a field specifying the attribute kind,
3678    a link to the next attribute in the chain, and an attribute value.
3679    Attributes are typically linked below the DIE they modify.  */
3680
3681 typedef struct dw_attr_struct GTY(())
3682 {
3683   enum dwarf_attribute dw_attr;
3684   dw_val_node dw_attr_val;
3685 }
3686 dw_attr_node;
3687
3688 DEF_VEC_O(dw_attr_node);
3689 DEF_VEC_ALLOC_O(dw_attr_node,gc);
3690
3691 /* The Debugging Information Entry (DIE) structure */
3692
3693 typedef struct die_struct GTY(())
3694 {
3695   enum dwarf_tag die_tag;
3696   char *die_symbol;
3697   VEC(dw_attr_node,gc) * die_attr;
3698   dw_die_ref die_parent;
3699   dw_die_ref die_child;
3700   dw_die_ref die_sib;
3701   dw_die_ref die_definition; /* ref from a specification to its definition */
3702   dw_offset die_offset;
3703   unsigned long die_abbrev;
3704   int die_mark;
3705   /* Die is used and must not be pruned as unused.  */
3706   int die_perennial_p;
3707   unsigned int decl_id;
3708 }
3709 die_node;
3710
3711 /* The pubname structure */
3712
3713 typedef struct pubname_struct GTY(())
3714 {
3715   dw_die_ref die;
3716   char *name;
3717 }
3718 pubname_entry;
3719
3720 struct dw_ranges_struct GTY(())
3721 {
3722   int block_num;
3723 };
3724
3725 /* The limbo die list structure.  */
3726 typedef struct limbo_die_struct GTY(())
3727 {
3728   dw_die_ref die;
3729   tree created_for;
3730   struct limbo_die_struct *next;
3731 }
3732 limbo_die_node;
3733
3734 /* How to start an assembler comment.  */
3735 #ifndef ASM_COMMENT_START
3736 #define ASM_COMMENT_START ";#"
3737 #endif
3738
3739 /* Define a macro which returns nonzero for a TYPE_DECL which was
3740    implicitly generated for a tagged type.
3741
3742    Note that unlike the gcc front end (which generates a NULL named
3743    TYPE_DECL node for each complete tagged type, each array type, and
3744    each function type node created) the g++ front end generates a
3745    _named_ TYPE_DECL node for each tagged type node created.
3746    These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3747    generate a DW_TAG_typedef DIE for them.  */
3748
3749 #define TYPE_DECL_IS_STUB(decl)                         \
3750   (DECL_NAME (decl) == NULL_TREE                        \
3751    || (DECL_ARTIFICIAL (decl)                           \
3752        && is_tagged_type (TREE_TYPE (decl))             \
3753        && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl)))  \
3754            /* This is necessary for stub decls that     \
3755               appear in nested inline functions.  */    \
3756            || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3757                && (decl_ultimate_origin (decl)          \
3758                    == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3759
3760 /* Information concerning the compilation unit's programming
3761    language, and compiler version.  */
3762
3763 /* Fixed size portion of the DWARF compilation unit header.  */
3764 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3765   (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
3766
3767 /* Fixed size portion of public names info.  */
3768 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3769
3770 /* Fixed size portion of the address range info.  */
3771 #define DWARF_ARANGES_HEADER_SIZE                                       \
3772   (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4,      \
3773                 DWARF2_ADDR_SIZE * 2)                                   \
3774    - DWARF_INITIAL_LENGTH_SIZE)
3775
3776 /* Size of padding portion in the address range info.  It must be
3777    aligned to twice the pointer size.  */
3778 #define DWARF_ARANGES_PAD_SIZE \
3779   (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3780                 DWARF2_ADDR_SIZE * 2) \
3781    - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
3782
3783 /* Use assembler line directives if available.  */
3784 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3785 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3786 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3787 #else
3788 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3789 #endif
3790 #endif
3791
3792 /* Minimum line offset in a special line info. opcode.
3793    This value was chosen to give a reasonable range of values.  */
3794 #define DWARF_LINE_BASE  -10
3795
3796 /* First special line opcode - leave room for the standard opcodes.  */
3797 #define DWARF_LINE_OPCODE_BASE  10
3798
3799 /* Range of line offsets in a special line info. opcode.  */
3800 #define DWARF_LINE_RANGE  (254-DWARF_LINE_OPCODE_BASE+1)
3801
3802 /* Flag that indicates the initial value of the is_stmt_start flag.
3803    In the present implementation, we do not mark any lines as
3804    the beginning of a source statement, because that information
3805    is not made available by the GCC front-end.  */
3806 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3807
3808 #ifdef DWARF2_DEBUGGING_INFO
3809 /* This location is used by calc_die_sizes() to keep track
3810    the offset of each DIE within the .debug_info section.  */
3811 static unsigned long next_die_offset;
3812 #endif
3813
3814 /* Record the root of the DIE's built for the current compilation unit.  */
3815 static GTY(()) dw_die_ref comp_unit_die;
3816
3817 /* A list of DIEs with a NULL parent waiting to be relocated.  */
3818 static GTY(()) limbo_die_node *limbo_die_list;
3819
3820 /* Filenames referenced by this compilation unit.  */
3821 static GTY(()) varray_type file_table;
3822 static GTY(()) varray_type file_table_emitted;
3823 static GTY(()) size_t file_table_last_lookup_index;
3824
3825 /* A hash table of references to DIE's that describe declarations.
3826    The key is a DECL_UID() which is a unique number identifying each decl.  */
3827 static GTY ((param_is (struct die_struct))) htab_t decl_die_table;
3828
3829 /* Node of the variable location list.  */
3830 struct var_loc_node GTY ((chain_next ("%h.next")))
3831 {
3832   rtx GTY (()) var_loc_note;
3833   const char * GTY (()) label;
3834   const char * GTY (()) section_label;
3835   struct var_loc_node * GTY (()) next;
3836 };
3837
3838 /* Variable location list.  */
3839 struct var_loc_list_def GTY (())
3840 {
3841   struct var_loc_node * GTY (()) first;
3842
3843   /* Do not mark the last element of the chained list because
3844      it is marked through the chain.  */
3845   struct var_loc_node * GTY ((skip ("%h"))) last;
3846
3847   /* DECL_UID of the variable decl.  */
3848   unsigned int decl_id;
3849 };
3850 typedef struct var_loc_list_def var_loc_list;
3851
3852
3853 /* Table of decl location linked lists.  */
3854 static GTY ((param_is (var_loc_list))) htab_t decl_loc_table;
3855
3856 /* A pointer to the base of a list of references to DIE's that
3857    are uniquely identified by their tag, presence/absence of
3858    children DIE's, and list of attribute/value pairs.  */
3859 static GTY((length ("abbrev_die_table_allocated")))
3860   dw_die_ref *abbrev_die_table;
3861
3862 /* Number of elements currently allocated for abbrev_die_table.  */
3863 static GTY(()) unsigned abbrev_die_table_allocated;
3864
3865 /* Number of elements in type_die_table currently in use.  */
3866 static GTY(()) unsigned abbrev_die_table_in_use;
3867
3868 /* Size (in elements) of increments by which we may expand the
3869    abbrev_die_table.  */
3870 #define ABBREV_DIE_TABLE_INCREMENT 256
3871
3872 /* A pointer to the base of a table that contains line information
3873    for each source code line in .text in the compilation unit.  */
3874 static GTY((length ("line_info_table_allocated")))
3875      dw_line_info_ref line_info_table;
3876
3877 /* Number of elements currently allocated for line_info_table.  */
3878 static GTY(()) unsigned line_info_table_allocated;
3879
3880 /* Number of elements in line_info_table currently in use.  */
3881 static GTY(()) unsigned line_info_table_in_use;
3882
3883 /* True if the compilation unit places functions in more than one section.  */
3884 static GTY(()) bool have_multiple_function_sections = false;
3885
3886 /* A pointer to the base of a table that contains line information
3887    for each source code line outside of .text in the compilation unit.  */
3888 static GTY ((length ("separate_line_info_table_allocated")))
3889      dw_separate_line_info_ref separate_line_info_table;
3890
3891 /* Number of elements currently allocated for separate_line_info_table.  */
3892 static GTY(()) unsigned separate_line_info_table_allocated;
3893
3894 /* Number of elements in separate_line_info_table currently in use.  */
3895 static GTY(()) unsigned separate_line_info_table_in_use;
3896
3897 /* Size (in elements) of increments by which we may expand the
3898    line_info_table.  */
3899 #define LINE_INFO_TABLE_INCREMENT 1024
3900
3901 /* A pointer to the base of a table that contains a list of publicly
3902    accessible names.  */
3903 static GTY ((length ("pubname_table_allocated"))) pubname_ref pubname_table;
3904
3905 /* Number of elements currently allocated for pubname_table.  */
3906 static GTY(()) unsigned pubname_table_allocated;
3907
3908 /* Number of elements in pubname_table currently in use.  */
3909 static GTY(()) unsigned pubname_table_in_use;
3910
3911 /* Size (in elements) of increments by which we may expand the
3912    pubname_table.  */
3913 #define PUBNAME_TABLE_INCREMENT 64
3914
3915 /* Array of dies for which we should generate .debug_arange info.  */
3916 static GTY((length ("arange_table_allocated"))) dw_die_ref *arange_table;
3917
3918 /* Number of elements currently allocated for arange_table.  */
3919 static GTY(()) unsigned arange_table_allocated;
3920
3921 /* Number of elements in arange_table currently in use.  */
3922 static GTY(()) unsigned arange_table_in_use;
3923
3924 /* Size (in elements) of increments by which we may expand the
3925    arange_table.  */
3926 #define ARANGE_TABLE_INCREMENT 64
3927
3928 /* Array of dies for which we should generate .debug_ranges info.  */
3929 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table;
3930
3931 /* Number of elements currently allocated for ranges_table.  */
3932 static GTY(()) unsigned ranges_table_allocated;
3933
3934 /* Number of elements in ranges_table currently in use.  */
3935 static GTY(()) unsigned ranges_table_in_use;
3936
3937 /* Size (in elements) of increments by which we may expand the
3938    ranges_table.  */
3939 #define RANGES_TABLE_INCREMENT 64
3940
3941 /* Whether we have location lists that need outputting */
3942 static GTY(()) bool have_location_lists;
3943
3944 /* Unique label counter.  */
3945 static GTY(()) unsigned int loclabel_num;
3946
3947 #ifdef DWARF2_DEBUGGING_INFO
3948 /* Record whether the function being analyzed contains inlined functions.  */
3949 static int current_function_has_inlines;
3950 #endif
3951 #if 0 && defined (MIPS_DEBUGGING_INFO)
3952 static int comp_unit_has_inlines;
3953 #endif
3954
3955 /* Number of file tables emitted in maybe_emit_file().  */
3956 static GTY(()) int emitcount = 0;
3957
3958 /* Number of internal labels generated by gen_internal_sym().  */
3959 static GTY(()) int label_num;
3960
3961 #ifdef DWARF2_DEBUGGING_INFO
3962
3963 /* Offset from the "steady-state frame pointer" to the frame base,
3964    within the current function.  */
3965 static HOST_WIDE_INT frame_pointer_fb_offset;
3966
3967 /* Forward declarations for functions defined in this file.  */
3968
3969 static int is_pseudo_reg (rtx);
3970 static tree type_main_variant (tree);
3971 static int is_tagged_type (tree);
3972 static const char *dwarf_tag_name (unsigned);
3973 static const char *dwarf_attr_name (unsigned);
3974 static const char *dwarf_form_name (unsigned);
3975 static tree decl_ultimate_origin (tree);
3976 static tree block_ultimate_origin (tree);
3977 static tree decl_class_context (tree);
3978 static void add_dwarf_attr (dw_die_ref, dw_attr_ref);
3979 static inline enum dw_val_class AT_class (dw_attr_ref);
3980 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
3981 static inline unsigned AT_flag (dw_attr_ref);
3982 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
3983 static inline HOST_WIDE_INT AT_int (dw_attr_ref);
3984 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
3985 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_ref);
3986 static void add_AT_long_long (dw_die_ref, enum dwarf_attribute, unsigned long,
3987                               unsigned long);
3988 static inline void add_AT_vec (dw_die_ref, enum dwarf_attribute, unsigned int,
3989                                unsigned int, unsigned char *);
3990 static hashval_t debug_str_do_hash (const void *);
3991 static int debug_str_eq (const void *, const void *);
3992 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
3993 static inline const char *AT_string (dw_attr_ref);
3994 static int AT_string_form (dw_attr_ref);
3995 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
3996 static void add_AT_specification (dw_die_ref, dw_die_ref);
3997 static inline dw_die_ref AT_ref (dw_attr_ref);
3998 static inline int AT_ref_external (dw_attr_ref);
3999 static inline void set_AT_ref_external (dw_attr_ref, int);
4000 static void add_AT_fde_ref (dw_die_ref, enum dwarf_attribute, unsigned);
4001 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
4002 static inline dw_loc_descr_ref AT_loc (dw_attr_ref);
4003 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
4004                              dw_loc_list_ref);
4005 static inline dw_loc_list_ref AT_loc_list (dw_attr_ref);
4006 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx);
4007 static inline rtx AT_addr (dw_attr_ref);
4008 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
4009 static void add_AT_lineptr (dw_die_ref, enum dwarf_attribute, const char *);
4010 static void add_AT_macptr (dw_die_ref, enum dwarf_attribute, const char *);
4011 static void add_AT_offset (dw_die_ref, enum dwarf_attribute,
4012                            unsigned HOST_WIDE_INT);
4013 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
4014                                unsigned long);
4015 static inline const char *AT_lbl (dw_attr_ref);
4016 static dw_attr_ref get_AT (dw_die_ref, enum dwarf_attribute);
4017 static const char *get_AT_low_pc (dw_die_ref);
4018 static const char *get_AT_hi_pc (dw_die_ref);
4019 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
4020 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
4021 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
4022 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
4023 static bool is_c_family (void);
4024 static bool is_cxx (void);
4025 static bool is_java (void);
4026 static bool is_fortran (void);
4027 static bool is_ada (void);
4028 static void remove_AT (dw_die_ref, enum dwarf_attribute);
4029 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
4030 static void add_child_die (dw_die_ref, dw_die_ref);
4031 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
4032 static dw_die_ref lookup_type_die (tree);
4033 static void equate_type_number_to_die (tree, dw_die_ref);
4034 static hashval_t decl_die_table_hash (const void *);
4035 static int decl_die_table_eq (const void *, const void *);
4036 static dw_die_ref lookup_decl_die (tree);
4037 static hashval_t decl_loc_table_hash (const void *);
4038 static int decl_loc_table_eq (const void *, const void *);
4039 static var_loc_list *lookup_decl_loc (tree);
4040 static void equate_decl_number_to_die (tree, dw_die_ref);
4041 static void add_var_loc_to_decl (tree, struct var_loc_node *);
4042 static void print_spaces (FILE *);
4043 static void print_die (dw_die_ref, FILE *);
4044 static void print_dwarf_line_table (FILE *);
4045 static void reverse_die_lists (dw_die_ref);
4046 static void reverse_all_dies (dw_die_ref);
4047 static dw_die_ref push_new_compile_unit (dw_die_ref, dw_die_ref);
4048 static dw_die_ref pop_compile_unit (dw_die_ref);
4049 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
4050 static void attr_checksum (dw_attr_ref, struct md5_ctx *, int *);
4051 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
4052 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
4053 static int same_dw_val_p (dw_val_node *, dw_val_node *, int *);
4054 static int same_attr_p (dw_attr_ref, dw_attr_ref, int *);
4055 static int same_die_p (dw_die_ref, dw_die_ref, int *);
4056 static int same_die_p_wrap (dw_die_ref, dw_die_ref);
4057 static void compute_section_prefix (dw_die_ref);
4058 static int is_type_die (dw_die_ref);
4059 static int is_comdat_die (dw_die_ref);
4060 static int is_symbol_die (dw_die_ref);
4061 static void assign_symbol_names (dw_die_ref);
4062 static void break_out_includes (dw_die_ref);
4063 static hashval_t htab_cu_hash (const void *);
4064 static int htab_cu_eq (const void *, const void *);
4065 static void htab_cu_del (void *);
4066 static int check_duplicate_cu (dw_die_ref, htab_t, unsigned *);
4067 static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
4068 static void add_sibling_attributes (dw_die_ref);
4069 static void build_abbrev_table (dw_die_ref);
4070 static void output_location_lists (dw_die_ref);
4071 static int constant_size (long unsigned);
4072 static unsigned long size_of_die (dw_die_ref);
4073 static void calc_die_sizes (dw_die_ref);
4074 static void mark_dies (dw_die_ref);
4075 static void unmark_dies (dw_die_ref);
4076 static void unmark_all_dies (dw_die_ref);
4077 static unsigned long size_of_pubnames (void);
4078 static unsigned long size_of_aranges (void);
4079 static enum dwarf_form value_format (dw_attr_ref);
4080 static void output_value_format (dw_attr_ref);
4081 static void output_abbrev_section (void);
4082 static void output_die_symbol (dw_die_ref);
4083 static void output_die (dw_die_ref);
4084 static void output_compilation_unit_header (void);
4085 static void output_comp_unit (dw_die_ref, int);
4086 static const char *dwarf2_name (tree, int);
4087 static void add_pubname (tree, dw_die_ref);
4088 static void output_pubnames (void);
4089 static void add_arange (tree, dw_die_ref);
4090 static void output_aranges (void);
4091 static unsigned int add_ranges (tree);
4092 static void output_ranges (void);
4093 static void output_line_info (void);
4094 static void output_file_names (void);
4095 static dw_die_ref base_type_die (tree);
4096 static tree root_type (tree);
4097 static int is_base_type (tree);
4098 static bool is_subrange_type (tree);
4099 static dw_die_ref subrange_type_die (tree, dw_die_ref);
4100 static dw_die_ref modified_type_die (tree, int, int, dw_die_ref);
4101 static int type_is_enum (tree);
4102 static unsigned int dbx_reg_number (rtx);
4103 static void add_loc_descr_op_piece (dw_loc_descr_ref *, int);
4104 static dw_loc_descr_ref reg_loc_descriptor (rtx);
4105 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int);
4106 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx);
4107 static dw_loc_descr_ref int_loc_descriptor (HOST_WIDE_INT);
4108 static dw_loc_descr_ref based_loc_descr (rtx, HOST_WIDE_INT);
4109 static int is_based_loc (rtx);
4110 static dw_loc_descr_ref mem_loc_descriptor (rtx, enum machine_mode mode);
4111 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx);
4112 static dw_loc_descr_ref loc_descriptor (rtx);
4113 static dw_loc_descr_ref loc_descriptor_from_tree_1 (tree, int);
4114 static dw_loc_descr_ref loc_descriptor_from_tree (tree);
4115 static HOST_WIDE_INT ceiling (HOST_WIDE_INT, unsigned int);
4116 static tree field_type (tree);
4117 static unsigned int simple_type_align_in_bits (tree);
4118 static unsigned int simple_decl_align_in_bits (tree);
4119 static unsigned HOST_WIDE_INT simple_type_size_in_bits (tree);
4120 static HOST_WIDE_INT field_byte_offset (tree);
4121 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
4122                                          dw_loc_descr_ref);
4123 static void add_data_member_location_attribute (dw_die_ref, tree);
4124 static void add_const_value_attribute (dw_die_ref, rtx);
4125 static void insert_int (HOST_WIDE_INT, unsigned, unsigned char *);
4126 static HOST_WIDE_INT extract_int (const unsigned char *, unsigned);
4127 static void insert_float (rtx, unsigned char *);
4128 static rtx rtl_for_decl_location (tree);
4129 static void add_location_or_const_value_attribute (dw_die_ref, tree,
4130                                                    enum dwarf_attribute);
4131 static void tree_add_const_value_attribute (dw_die_ref, tree);
4132 static void add_name_attribute (dw_die_ref, const char *);
4133 static void add_comp_dir_attribute (dw_die_ref);
4134 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree);
4135 static void add_subscript_info (dw_die_ref, tree);
4136 static void add_byte_size_attribute (dw_die_ref, tree);
4137 static void add_bit_offset_attribute (dw_die_ref, tree);
4138 static void add_bit_size_attribute (dw_die_ref, tree);
4139 static void add_prototyped_attribute (dw_die_ref, tree);
4140 static void add_abstract_origin_attribute (dw_die_ref, tree);
4141 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
4142 static void add_src_coords_attributes (dw_die_ref, tree);
4143 static void add_name_and_src_coords_attributes (dw_die_ref, tree);
4144 static void push_decl_scope (tree);
4145 static void pop_decl_scope (void);
4146 static dw_die_ref scope_die_for (tree, dw_die_ref);
4147 static inline int local_scope_p (dw_die_ref);
4148 static inline int class_or_namespace_scope_p (dw_die_ref);
4149 static void add_type_attribute (dw_die_ref, tree, int, int, dw_die_ref);
4150 static void add_calling_convention_attribute (dw_die_ref, tree);
4151 static const char *type_tag (tree);
4152 static tree member_declared_type (tree);
4153 #if 0
4154 static const char *decl_start_label (tree);
4155 #endif
4156 static void gen_array_type_die (tree, dw_die_ref);
4157 #if 0
4158 static void gen_entry_point_die (tree, dw_die_ref);
4159 #endif
4160 static void gen_inlined_enumeration_type_die (tree, dw_die_ref);
4161 static void gen_inlined_structure_type_die (tree, dw_die_ref);
4162 static void gen_inlined_union_type_die (tree, dw_die_ref);
4163 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
4164 static dw_die_ref gen_formal_parameter_die (tree, dw_die_ref);
4165 static void gen_unspecified_parameters_die (tree, dw_die_ref);
4166 static void gen_formal_types_die (tree, dw_die_ref);
4167 static void gen_subprogram_die (tree, dw_die_ref);
4168 static void gen_variable_die (tree, dw_die_ref);
4169 static void gen_label_die (tree, dw_die_ref);
4170 static void gen_lexical_block_die (tree, dw_die_ref, int);
4171 static void gen_inlined_subroutine_die (tree, dw_die_ref, int);
4172 static void gen_field_die (tree, dw_die_ref);
4173 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
4174 static dw_die_ref gen_compile_unit_die (const char *);
4175 static void gen_inheritance_die (tree, tree, dw_die_ref);
4176 static void gen_member_die (tree, dw_die_ref);
4177 static void gen_struct_or_union_type_die (tree, dw_die_ref);
4178 static void gen_subroutine_type_die (tree, dw_die_ref);
4179 static void gen_typedef_die (tree, dw_die_ref);
4180 static void gen_type_die (tree, dw_die_ref);
4181 static void gen_tagged_type_instantiation_die (tree, dw_die_ref);
4182 static void gen_block_die (tree, dw_die_ref, int);
4183 static void decls_for_scope (tree, dw_die_ref, int);
4184 static int is_redundant_typedef (tree);
4185 static void gen_namespace_die (tree);
4186 static void gen_decl_die (tree, dw_die_ref);
4187 static dw_die_ref force_decl_die (tree);
4188 static dw_die_ref force_type_die (tree);
4189 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
4190 static void declare_in_namespace (tree, dw_die_ref);
4191 static unsigned lookup_filename (const char *);
4192 static void init_file_table (void);
4193 static void retry_incomplete_types (void);
4194 static void gen_type_die_for_member (tree, tree, dw_die_ref);
4195 static void splice_child_die (dw_die_ref, dw_die_ref);
4196 static int file_info_cmp (const void *, const void *);
4197 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *,
4198                                      const char *, const char *, unsigned);
4199 static void add_loc_descr_to_loc_list (dw_loc_list_ref *, dw_loc_descr_ref,
4200                                        const char *, const char *,
4201                                        const char *);
4202 static void output_loc_list (dw_loc_list_ref);
4203 static char *gen_internal_sym (const char *);
4204
4205 static void prune_unmark_dies (dw_die_ref);
4206 static void prune_unused_types_mark (dw_die_ref, int);
4207 static void prune_unused_types_walk (dw_die_ref);
4208 static void prune_unused_types_walk_attribs (dw_die_ref);
4209 static void prune_unused_types_prune (dw_die_ref);
4210 static void prune_unused_types (void);
4211 static int maybe_emit_file (int);
4212
4213 /* Section names used to hold DWARF debugging information.  */
4214 #ifndef DEBUG_INFO_SECTION
4215 #define DEBUG_INFO_SECTION      ".debug_info"
4216 #endif
4217 #ifndef DEBUG_ABBREV_SECTION
4218 #define DEBUG_ABBREV_SECTION    ".debug_abbrev"
4219 #endif
4220 #ifndef DEBUG_ARANGES_SECTION
4221 #define DEBUG_ARANGES_SECTION   ".debug_aranges"
4222 #endif
4223 #ifndef DEBUG_MACINFO_SECTION
4224 #define DEBUG_MACINFO_SECTION   ".debug_macinfo"
4225 #endif
4226 #ifndef DEBUG_LINE_SECTION
4227 #define DEBUG_LINE_SECTION      ".debug_line"
4228 #endif
4229 #ifndef DEBUG_LOC_SECTION
4230 #define DEBUG_LOC_SECTION       ".debug_loc"
4231 #endif
4232 #ifndef DEBUG_PUBNAMES_SECTION
4233 #define DEBUG_PUBNAMES_SECTION  ".debug_pubnames"
4234 #endif
4235 #ifndef DEBUG_STR_SECTION
4236 #define DEBUG_STR_SECTION       ".debug_str"
4237 #endif
4238 #ifndef DEBUG_RANGES_SECTION
4239 #define DEBUG_RANGES_SECTION    ".debug_ranges"
4240 #endif
4241
4242 /* Standard ELF section names for compiled code and data.  */
4243 #ifndef TEXT_SECTION_NAME
4244 #define TEXT_SECTION_NAME       ".text"
4245 #endif
4246
4247 /* Section flags for .debug_str section.  */
4248 #define DEBUG_STR_SECTION_FLAGS \
4249   (HAVE_GAS_SHF_MERGE && flag_merge_constants                   \
4250    ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1        \
4251    : SECTION_DEBUG)
4252
4253 /* Labels we insert at beginning sections we can reference instead of
4254    the section names themselves.  */
4255
4256 #ifndef TEXT_SECTION_LABEL
4257 #define TEXT_SECTION_LABEL              "Ltext"
4258 #endif
4259 #ifndef COLD_TEXT_SECTION_LABEL
4260 #define COLD_TEXT_SECTION_LABEL         "Ltext_cold"
4261 #endif
4262 #ifndef DEBUG_LINE_SECTION_LABEL
4263 #define DEBUG_LINE_SECTION_LABEL        "Ldebug_line"
4264 #endif
4265 #ifndef DEBUG_INFO_SECTION_LABEL
4266 #define DEBUG_INFO_SECTION_LABEL        "Ldebug_info"
4267 #endif
4268 #ifndef DEBUG_ABBREV_SECTION_LABEL
4269 #define DEBUG_ABBREV_SECTION_LABEL      "Ldebug_abbrev"
4270 #endif
4271 #ifndef DEBUG_LOC_SECTION_LABEL
4272 #define DEBUG_LOC_SECTION_LABEL         "Ldebug_loc"
4273 #endif
4274 #ifndef DEBUG_RANGES_SECTION_LABEL
4275 #define DEBUG_RANGES_SECTION_LABEL      "Ldebug_ranges"
4276 #endif
4277 #ifndef DEBUG_MACINFO_SECTION_LABEL
4278 #define DEBUG_MACINFO_SECTION_LABEL     "Ldebug_macinfo"
4279 #endif
4280
4281 /* Definitions of defaults for formats and names of various special
4282    (artificial) labels which may be generated within this file (when the -g
4283    options is used and DWARF2_DEBUGGING_INFO is in effect.
4284    If necessary, these may be overridden from within the tm.h file, but
4285    typically, overriding these defaults is unnecessary.  */
4286
4287 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
4288 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4289 static char cold_text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4290 static char cold_end_label[MAX_ARTIFICIAL_LABEL_BYTES]; 
4291 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4292 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4293 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4294 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4295 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
4296 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
4297
4298 #ifndef TEXT_END_LABEL
4299 #define TEXT_END_LABEL          "Letext"
4300 #endif
4301 #ifndef COLD_END_LABEL
4302 #define COLD_END_LABEL          "Letext_cold"
4303 #endif
4304 #ifndef BLOCK_BEGIN_LABEL
4305 #define BLOCK_BEGIN_LABEL       "LBB"
4306 #endif
4307 #ifndef BLOCK_END_LABEL
4308 #define BLOCK_END_LABEL         "LBE"
4309 #endif
4310 #ifndef LINE_CODE_LABEL
4311 #define LINE_CODE_LABEL         "LM"
4312 #endif
4313 #ifndef SEPARATE_LINE_CODE_LABEL
4314 #define SEPARATE_LINE_CODE_LABEL        "LSM"
4315 #endif
4316 \f
4317 /* We allow a language front-end to designate a function that is to be
4318    called to "demangle" any name before it is put into a DIE.  */
4319
4320 static const char *(*demangle_name_func) (const char *);
4321
4322 void
4323 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
4324 {
4325   demangle_name_func = func;
4326 }
4327
4328 /* Test if rtl node points to a pseudo register.  */
4329
4330 static inline int
4331 is_pseudo_reg (rtx rtl)
4332 {
4333   return ((REG_P (rtl) && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
4334           || (GET_CODE (rtl) == SUBREG
4335               && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
4336 }
4337
4338 /* Return a reference to a type, with its const and volatile qualifiers
4339    removed.  */
4340
4341 static inline tree
4342 type_main_variant (tree type)
4343 {
4344   type = TYPE_MAIN_VARIANT (type);
4345
4346   /* ??? There really should be only one main variant among any group of
4347      variants of a given type (and all of the MAIN_VARIANT values for all
4348      members of the group should point to that one type) but sometimes the C
4349      front-end messes this up for array types, so we work around that bug
4350      here.  */
4351   if (TREE_CODE (type) == ARRAY_TYPE)
4352     while (type != TYPE_MAIN_VARIANT (type))
4353       type = TYPE_MAIN_VARIANT (type);
4354
4355   return type;
4356 }
4357
4358 /* Return nonzero if the given type node represents a tagged type.  */
4359
4360 static inline int
4361 is_tagged_type (tree type)
4362 {
4363   enum tree_code code = TREE_CODE (type);
4364
4365   return (code == RECORD_TYPE || code == UNION_TYPE
4366           || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
4367 }
4368
4369 /* Convert a DIE tag into its string name.  */
4370
4371 static const char *
4372 dwarf_tag_name (unsigned int tag)
4373 {
4374   switch (tag)
4375     {
4376     case DW_TAG_padding:
4377       return "DW_TAG_padding";
4378     case DW_TAG_array_type:
4379       return "DW_TAG_array_type";
4380     case DW_TAG_class_type:
4381       return "DW_TAG_class_type";
4382     case DW_TAG_entry_point:
4383       return "DW_TAG_entry_point";
4384     case DW_TAG_enumeration_type:
4385       return "DW_TAG_enumeration_type";
4386     case DW_TAG_formal_parameter:
4387       return "DW_TAG_formal_parameter";
4388     case DW_TAG_imported_declaration:
4389       return "DW_TAG_imported_declaration";
4390     case DW_TAG_label:
4391       return "DW_TAG_label";
4392     case DW_TAG_lexical_block:
4393       return "DW_TAG_lexical_block";
4394     case DW_TAG_member:
4395       return "DW_TAG_member";
4396     case DW_TAG_pointer_type:
4397       return "DW_TAG_pointer_type";
4398     case DW_TAG_reference_type:
4399       return "DW_TAG_reference_type";
4400     case DW_TAG_compile_unit:
4401       return "DW_TAG_compile_unit";
4402     case DW_TAG_string_type:
4403       return "DW_TAG_string_type";
4404     case DW_TAG_structure_type:
4405       return "DW_TAG_structure_type";
4406     case DW_TAG_subroutine_type:
4407       return "DW_TAG_subroutine_type";
4408     case DW_TAG_typedef:
4409       return "DW_TAG_typedef";
4410     case DW_TAG_union_type:
4411       return "DW_TAG_union_type";
4412     case DW_TAG_unspecified_parameters:
4413       return "DW_TAG_unspecified_parameters";
4414     case DW_TAG_variant:
4415       return "DW_TAG_variant";
4416     case DW_TAG_common_block:
4417       return "DW_TAG_common_block";
4418     case DW_TAG_common_inclusion:
4419       return "DW_TAG_common_inclusion";
4420     case DW_TAG_inheritance:
4421       return "DW_TAG_inheritance";
4422     case DW_TAG_inlined_subroutine:
4423       return "DW_TAG_inlined_subroutine";
4424     case DW_TAG_module:
4425       return "DW_TAG_module";
4426     case DW_TAG_ptr_to_member_type:
4427       return "DW_TAG_ptr_to_member_type";
4428     case DW_TAG_set_type:
4429       return "DW_TAG_set_type";
4430     case DW_TAG_subrange_type:
4431       return "DW_TAG_subrange_type";
4432     case DW_TAG_with_stmt:
4433       return "DW_TAG_with_stmt";
4434     case DW_TAG_access_declaration:
4435       return "DW_TAG_access_declaration";
4436     case DW_TAG_base_type:
4437       return "DW_TAG_base_type";
4438     case DW_TAG_catch_block:
4439       return "DW_TAG_catch_block";
4440     case DW_TAG_const_type:
4441       return "DW_TAG_const_type";
4442     case DW_TAG_constant:
4443       return "DW_TAG_constant";
4444     case DW_TAG_enumerator:
4445       return "DW_TAG_enumerator";
4446     case DW_TAG_file_type:
4447       return "DW_TAG_file_type";
4448     case DW_TAG_friend:
4449       return "DW_TAG_friend";
4450     case DW_TAG_namelist:
4451       return "DW_TAG_namelist";
4452     case DW_TAG_namelist_item:
4453       return "DW_TAG_namelist_item";
4454     case DW_TAG_namespace:
4455       return "DW_TAG_namespace";
4456     case DW_TAG_packed_type:
4457       return "DW_TAG_packed_type";
4458     case DW_TAG_subprogram:
4459       return "DW_TAG_subprogram";
4460     case DW_TAG_template_type_param:
4461       return "DW_TAG_template_type_param";
4462     case DW_TAG_template_value_param:
4463       return "DW_TAG_template_value_param";
4464     case DW_TAG_thrown_type:
4465       return "DW_TAG_thrown_type";
4466     case DW_TAG_try_block:
4467       return "DW_TAG_try_block";
4468     case DW_TAG_variant_part:
4469       return "DW_TAG_variant_part";
4470     case DW_TAG_variable:
4471       return "DW_TAG_variable";
4472     case DW_TAG_volatile_type:
4473       return "DW_TAG_volatile_type";
4474     case DW_TAG_imported_module:
4475       return "DW_TAG_imported_module";
4476     case DW_TAG_MIPS_loop:
4477       return "DW_TAG_MIPS_loop";
4478     case DW_TAG_format_label:
4479       return "DW_TAG_format_label";
4480     case DW_TAG_function_template:
4481       return "DW_TAG_function_template";
4482     case DW_TAG_class_template:
4483       return "DW_TAG_class_template";
4484     case DW_TAG_GNU_BINCL:
4485       return "DW_TAG_GNU_BINCL";
4486     case DW_TAG_GNU_EINCL:
4487       return "DW_TAG_GNU_EINCL";
4488     default:
4489       return "DW_TAG_<unknown>";
4490     }
4491 }
4492
4493 /* Convert a DWARF attribute code into its string name.  */
4494
4495 static const char *
4496 dwarf_attr_name (unsigned int attr)
4497 {
4498   switch (attr)
4499     {
4500     case DW_AT_sibling:
4501       return "DW_AT_sibling";
4502     case DW_AT_location:
4503       return "DW_AT_location";
4504     case DW_AT_name:
4505       return "DW_AT_name";
4506     case DW_AT_ordering:
4507       return "DW_AT_ordering";
4508     case DW_AT_subscr_data:
4509       return "DW_AT_subscr_data";
4510     case DW_AT_byte_size:
4511       return "DW_AT_byte_size";
4512     case DW_AT_bit_offset:
4513       return "DW_AT_bit_offset";
4514     case DW_AT_bit_size:
4515       return "DW_AT_bit_size";
4516     case DW_AT_element_list:
4517       return "DW_AT_element_list";
4518     case DW_AT_stmt_list:
4519       return "DW_AT_stmt_list";
4520     case DW_AT_low_pc:
4521       return "DW_AT_low_pc";
4522     case DW_AT_high_pc:
4523       return "DW_AT_high_pc";
4524     case DW_AT_language:
4525       return "DW_AT_language";
4526     case DW_AT_member:
4527       return "DW_AT_member";
4528     case DW_AT_discr:
4529       return "DW_AT_discr";
4530     case DW_AT_discr_value:
4531       return "DW_AT_discr_value";
4532     case DW_AT_visibility:
4533       return "DW_AT_visibility";
4534     case DW_AT_import:
4535       return "DW_AT_import";
4536     case DW_AT_string_length:
4537       return "DW_AT_string_length";
4538     case DW_AT_common_reference:
4539       return "DW_AT_common_reference";
4540     case DW_AT_comp_dir:
4541       return "DW_AT_comp_dir";
4542     case DW_AT_const_value:
4543       return "DW_AT_const_value";
4544     case DW_AT_containing_type:
4545       return "DW_AT_containing_type";
4546     case DW_AT_default_value:
4547       return "DW_AT_default_value";
4548     case DW_AT_inline:
4549       return "DW_AT_inline";
4550     case DW_AT_is_optional:
4551       return "DW_AT_is_optional";
4552     case DW_AT_lower_bound:
4553       return "DW_AT_lower_bound";
4554     case DW_AT_producer:
4555       return "DW_AT_producer";
4556     case DW_AT_prototyped:
4557       return "DW_AT_prototyped";
4558     case DW_AT_return_addr:
4559       return "DW_AT_return_addr";
4560     case DW_AT_start_scope:
4561       return "DW_AT_start_scope";
4562     case DW_AT_stride_size:
4563       return "DW_AT_stride_size";
4564     case DW_AT_upper_bound:
4565       return "DW_AT_upper_bound";
4566     case DW_AT_abstract_origin:
4567       return "DW_AT_abstract_origin";
4568     case DW_AT_accessibility:
4569       return "DW_AT_accessibility";
4570     case DW_AT_address_class:
4571       return "DW_AT_address_class";
4572     case DW_AT_artificial:
4573       return "DW_AT_artificial";
4574     case DW_AT_base_types:
4575       return "DW_AT_base_types";
4576     case DW_AT_calling_convention:
4577       return "DW_AT_calling_convention";
4578     case DW_AT_count:
4579       return "DW_AT_count";
4580     case DW_AT_data_member_location:
4581       return "DW_AT_data_member_location";
4582     case DW_AT_decl_column:
4583       return "DW_AT_decl_column";
4584     case DW_AT_decl_file:
4585       return "DW_AT_decl_file";
4586     case DW_AT_decl_line:
4587       return "DW_AT_decl_line";
4588     case DW_AT_declaration:
4589       return "DW_AT_declaration";
4590     case DW_AT_discr_list:
4591       return "DW_AT_discr_list";
4592     case DW_AT_encoding:
4593       return "DW_AT_encoding";
4594     case DW_AT_external:
4595       return "DW_AT_external";
4596     case DW_AT_frame_base:
4597       return "DW_AT_frame_base";
4598     case DW_AT_friend:
4599       return "DW_AT_friend";
4600     case DW_AT_identifier_case:
4601       return "DW_AT_identifier_case";
4602     case DW_AT_macro_info:
4603       return "DW_AT_macro_info";
4604     case DW_AT_namelist_items:
4605       return "DW_AT_namelist_items";
4606     case DW_AT_priority:
4607       return "DW_AT_priority";
4608     case DW_AT_segment:
4609       return "DW_AT_segment";
4610     case DW_AT_specification:
4611       return "DW_AT_specification";
4612     case DW_AT_static_link:
4613       return "DW_AT_static_link";
4614     case DW_AT_type:
4615       return "DW_AT_type";
4616     case DW_AT_use_location:
4617       return "DW_AT_use_location";
4618     case DW_AT_variable_parameter:
4619       return "DW_AT_variable_parameter";
4620     case DW_AT_virtuality:
4621       return "DW_AT_virtuality";
4622     case DW_AT_vtable_elem_location:
4623       return "DW_AT_vtable_elem_location";
4624
4625     case DW_AT_allocated:
4626       return "DW_AT_allocated";
4627     case DW_AT_associated:
4628       return "DW_AT_associated";
4629     case DW_AT_data_location:
4630       return "DW_AT_data_location";
4631     case DW_AT_stride:
4632       return "DW_AT_stride";
4633     case DW_AT_entry_pc:
4634       return "DW_AT_entry_pc";
4635     case DW_AT_use_UTF8:
4636       return "DW_AT_use_UTF8";
4637     case DW_AT_extension:
4638       return "DW_AT_extension";
4639     case DW_AT_ranges:
4640       return "DW_AT_ranges";
4641     case DW_AT_trampoline:
4642       return "DW_AT_trampoline";
4643     case DW_AT_call_column:
4644       return "DW_AT_call_column";
4645     case DW_AT_call_file:
4646       return "DW_AT_call_file";
4647     case DW_AT_call_line:
4648       return "DW_AT_call_line";
4649
4650     case DW_AT_MIPS_fde:
4651       return "DW_AT_MIPS_fde";
4652     case DW_AT_MIPS_loop_begin:
4653       return "DW_AT_MIPS_loop_begin";
4654     case DW_AT_MIPS_tail_loop_begin:
4655       return "DW_AT_MIPS_tail_loop_begin";
4656     case DW_AT_MIPS_epilog_begin:
4657       return "DW_AT_MIPS_epilog_begin";
4658     case DW_AT_MIPS_loop_unroll_factor:
4659       return "DW_AT_MIPS_loop_unroll_factor";
4660     case DW_AT_MIPS_software_pipeline_depth:
4661       return "DW_AT_MIPS_software_pipeline_depth";
4662     case DW_AT_MIPS_linkage_name:
4663       return "DW_AT_MIPS_linkage_name";
4664     case DW_AT_MIPS_stride:
4665       return "DW_AT_MIPS_stride";
4666     case DW_AT_MIPS_abstract_name:
4667       return "DW_AT_MIPS_abstract_name";
4668     case DW_AT_MIPS_clone_origin:
4669       return "DW_AT_MIPS_clone_origin";
4670     case DW_AT_MIPS_has_inlines:
4671       return "DW_AT_MIPS_has_inlines";
4672
4673     case DW_AT_sf_names:
4674       return "DW_AT_sf_names";
4675     case DW_AT_src_info:
4676       return "DW_AT_src_info";
4677     case DW_AT_mac_info:
4678       return "DW_AT_mac_info";
4679     case DW_AT_src_coords:
4680       return "DW_AT_src_coords";
4681     case DW_AT_body_begin:
4682       return "DW_AT_body_begin";
4683     case DW_AT_body_end:
4684       return "DW_AT_body_end";
4685     case DW_AT_GNU_vector:
4686       return "DW_AT_GNU_vector";
4687
4688     case DW_AT_VMS_rtnbeg_pd_address:
4689       return "DW_AT_VMS_rtnbeg_pd_address";
4690
4691     default:
4692       return "DW_AT_<unknown>";
4693     }
4694 }
4695
4696 /* Convert a DWARF value form code into its string name.  */
4697
4698 static const char *
4699 dwarf_form_name (unsigned int form)
4700 {
4701   switch (form)
4702     {
4703     case DW_FORM_addr:
4704       return "DW_FORM_addr";
4705     case DW_FORM_block2:
4706       return "DW_FORM_block2";
4707     case DW_FORM_block4:
4708       return "DW_FORM_block4";
4709     case DW_FORM_data2:
4710       return "DW_FORM_data2";
4711     case DW_FORM_data4:
4712       return "DW_FORM_data4";
4713     case DW_FORM_data8:
4714       return "DW_FORM_data8";
4715     case DW_FORM_string:
4716       return "DW_FORM_string";
4717     case DW_FORM_block:
4718       return "DW_FORM_block";
4719     case DW_FORM_block1:
4720       return "DW_FORM_block1";
4721     case DW_FORM_data1:
4722       return "DW_FORM_data1";
4723     case DW_FORM_flag:
4724       return "DW_FORM_flag";
4725     case DW_FORM_sdata:
4726       return "DW_FORM_sdata";
4727     case DW_FORM_strp:
4728       return "DW_FORM_strp";
4729     case DW_FORM_udata:
4730       return "DW_FORM_udata";
4731     case DW_FORM_ref_addr:
4732       return "DW_FORM_ref_addr";
4733     case DW_FORM_ref1:
4734       return "DW_FORM_ref1";
4735     case DW_FORM_ref2:
4736       return "DW_FORM_ref2";
4737     case DW_FORM_ref4:
4738       return "DW_FORM_ref4";
4739     case DW_FORM_ref8:
4740       return "DW_FORM_ref8";
4741     case DW_FORM_ref_udata:
4742       return "DW_FORM_ref_udata";
4743     case DW_FORM_indirect:
4744       return "DW_FORM_indirect";
4745     default:
4746       return "DW_FORM_<unknown>";
4747     }
4748 }
4749 \f
4750 /* Determine the "ultimate origin" of a decl.  The decl may be an inlined
4751    instance of an inlined instance of a decl which is local to an inline
4752    function, so we have to trace all of the way back through the origin chain
4753    to find out what sort of node actually served as the original seed for the
4754    given block.  */
4755
4756 static tree
4757 decl_ultimate_origin (tree decl)
4758 {
4759   if (!CODE_CONTAINS_STRUCT (TREE_CODE (decl), TS_DECL_COMMON))
4760     return NULL_TREE;
4761
4762   /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
4763      nodes in the function to point to themselves; ignore that if
4764      we're trying to output the abstract instance of this function.  */
4765   if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4766     return NULL_TREE;
4767
4768   /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4769      most distant ancestor, this should never happen.  */
4770   gcc_assert (!DECL_FROM_INLINE (DECL_ORIGIN (decl)));
4771
4772   return DECL_ABSTRACT_ORIGIN (decl);
4773 }
4774
4775 /* Determine the "ultimate origin" of a block.  The block may be an inlined
4776    instance of an inlined instance of a block which is local to an inline
4777    function, so we have to trace all of the way back through the origin chain
4778    to find out what sort of node actually served as the original seed for the
4779    given block.  */
4780
4781 static tree
4782 block_ultimate_origin (tree block)
4783 {
4784   tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
4785
4786   /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
4787      nodes in the function to point to themselves; ignore that if
4788      we're trying to output the abstract instance of this function.  */
4789   if (BLOCK_ABSTRACT (block) && immediate_origin == block)
4790     return NULL_TREE;
4791
4792   if (immediate_origin == NULL_TREE)
4793     return NULL_TREE;
4794   else
4795     {
4796       tree ret_val;
4797       tree lookahead = immediate_origin;
4798
4799       do
4800         {
4801           ret_val = lookahead;
4802           lookahead = (TREE_CODE (ret_val) == BLOCK
4803                        ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
4804         }
4805       while (lookahead != NULL && lookahead != ret_val);
4806       
4807       /* The block's abstract origin chain may not be the *ultimate* origin of
4808          the block. It could lead to a DECL that has an abstract origin set.
4809          If so, we want that DECL's abstract origin (which is what DECL_ORIGIN
4810          will give us if it has one).  Note that DECL's abstract origins are
4811          supposed to be the most distant ancestor (or so decl_ultimate_origin
4812          claims), so we don't need to loop following the DECL origins.  */
4813       if (DECL_P (ret_val))
4814         return DECL_ORIGIN (ret_val);
4815
4816       return ret_val;
4817     }
4818 }
4819
4820 /* Get the class to which DECL belongs, if any.  In g++, the DECL_CONTEXT
4821    of a virtual function may refer to a base class, so we check the 'this'
4822    parameter.  */
4823
4824 static tree
4825 decl_class_context (tree decl)
4826 {
4827   tree context = NULL_TREE;
4828
4829   if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4830     context = DECL_CONTEXT (decl);
4831   else
4832     context = TYPE_MAIN_VARIANT
4833       (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4834
4835   if (context && !TYPE_P (context))
4836     context = NULL_TREE;
4837
4838   return context;
4839 }
4840 \f
4841 /* Add an attribute/value pair to a DIE.  We build the lists up in reverse
4842    addition order, and correct that in reverse_all_dies.  */
4843
4844 static inline void
4845 add_dwarf_attr (dw_die_ref die, dw_attr_ref attr)
4846 {
4847   /* Maybe this should be an assert?  */
4848   if (die == NULL)
4849     return;
4850   
4851   if (die->die_attr == NULL)
4852     die->die_attr = VEC_alloc (dw_attr_node, gc, 1);
4853   VEC_safe_push (dw_attr_node, gc, die->die_attr, attr);
4854 }
4855
4856 static inline enum dw_val_class
4857 AT_class (dw_attr_ref a)
4858 {
4859   return a->dw_attr_val.val_class;
4860 }
4861
4862 /* Add a flag value attribute to a DIE.  */
4863
4864 static inline void
4865 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
4866 {
4867   dw_attr_node attr;
4868
4869   attr.dw_attr = attr_kind;
4870   attr.dw_attr_val.val_class = dw_val_class_flag;
4871   attr.dw_attr_val.v.val_flag = flag;
4872   add_dwarf_attr (die, &attr);
4873 }
4874
4875 static inline unsigned
4876 AT_flag (dw_attr_ref a)
4877 {
4878   gcc_assert (a && AT_class (a) == dw_val_class_flag);
4879   return a->dw_attr_val.v.val_flag;
4880 }
4881
4882 /* Add a signed integer attribute value to a DIE.  */
4883
4884 static inline void
4885 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
4886 {
4887   dw_attr_node attr;
4888
4889   attr.dw_attr = attr_kind;
4890   attr.dw_attr_val.val_class = dw_val_class_const;
4891   attr.dw_attr_val.v.val_int = int_val;
4892   add_dwarf_attr (die, &attr);
4893 }
4894
4895 static inline HOST_WIDE_INT
4896 AT_int (dw_attr_ref a)
4897 {
4898   gcc_assert (a && AT_class (a) == dw_val_class_const);
4899   return a->dw_attr_val.v.val_int;
4900 }
4901
4902 /* Add an unsigned integer attribute value to a DIE.  */
4903
4904 static inline void
4905 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
4906                  unsigned HOST_WIDE_INT unsigned_val)
4907 {
4908   dw_attr_node attr;
4909
4910   attr.dw_attr = attr_kind;
4911   attr.dw_attr_val.val_class = dw_val_class_unsigned_const;
4912   attr.dw_attr_val.v.val_unsigned = unsigned_val;
4913   add_dwarf_attr (die, &attr);
4914 }
4915
4916 static inline unsigned HOST_WIDE_INT
4917 AT_unsigned (dw_attr_ref a)
4918 {
4919   gcc_assert (a && AT_class (a) == dw_val_class_unsigned_const);
4920   return a->dw_attr_val.v.val_unsigned;
4921 }
4922
4923 /* Add an unsigned double integer attribute value to a DIE.  */
4924
4925 static inline void
4926 add_AT_long_long (dw_die_ref die, enum dwarf_attribute attr_kind,
4927                   long unsigned int val_hi, long unsigned int val_low)
4928 {
4929   dw_attr_node attr;
4930
4931   attr.dw_attr = attr_kind;
4932   attr.dw_attr_val.val_class = dw_val_class_long_long;
4933   attr.dw_attr_val.v.val_long_long.hi = val_hi;
4934   attr.dw_attr_val.v.val_long_long.low = val_low;
4935   add_dwarf_attr (die, &attr);
4936 }
4937
4938 /* Add a floating point attribute value to a DIE and return it.  */
4939
4940 static inline void
4941 add_AT_vec (dw_die_ref die, enum dwarf_attribute attr_kind,
4942             unsigned int length, unsigned int elt_size, unsigned char *array)
4943 {
4944   dw_attr_node attr;
4945
4946   attr.dw_attr = attr_kind;
4947   attr.dw_attr_val.val_class = dw_val_class_vec;
4948   attr.dw_attr_val.v.val_vec.length = length;
4949   attr.dw_attr_val.v.val_vec.elt_size = elt_size;
4950   attr.dw_attr_val.v.val_vec.array = array;
4951   add_dwarf_attr (die, &attr);
4952 }
4953
4954 /* Hash and equality functions for debug_str_hash.  */
4955
4956 static hashval_t
4957 debug_str_do_hash (const void *x)
4958 {
4959   return htab_hash_string (((const struct indirect_string_node *)x)->str);
4960 }
4961
4962 static int
4963 debug_str_eq (const void *x1, const void *x2)
4964 {
4965   return strcmp ((((const struct indirect_string_node *)x1)->str),
4966                  (const char *)x2) == 0;
4967 }
4968
4969 /* Add a string attribute value to a DIE.  */
4970
4971 static inline void
4972 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
4973 {
4974   dw_attr_node attr;
4975   struct indirect_string_node *node;
4976   void **slot;
4977
4978   if (! debug_str_hash)
4979     debug_str_hash = htab_create_ggc (10, debug_str_do_hash,
4980                                       debug_str_eq, NULL);
4981
4982   slot = htab_find_slot_with_hash (debug_str_hash, str,
4983                                    htab_hash_string (str), INSERT);
4984   if (*slot == NULL)
4985     *slot = ggc_alloc_cleared (sizeof (struct indirect_string_node));
4986   node = (struct indirect_string_node *) *slot;
4987   node->str = ggc_strdup (str);
4988   node->refcount++;
4989
4990   attr.dw_attr = attr_kind;
4991   attr.dw_attr_val.val_class = dw_val_class_str;
4992   attr.dw_attr_val.v.val_str = node;
4993   add_dwarf_attr (die, &attr);
4994 }
4995
4996 static inline const char *
4997 AT_string (dw_attr_ref a)
4998 {
4999   gcc_assert (a && AT_class (a) == dw_val_class_str);
5000   return a->dw_attr_val.v.val_str->str;
5001 }
5002
5003 /* Find out whether a string should be output inline in DIE
5004    or out-of-line in .debug_str section.  */
5005
5006 static int
5007 AT_string_form (dw_attr_ref a)
5008 {
5009   struct indirect_string_node *node;
5010   unsigned int len;
5011   char label[32];
5012
5013   gcc_assert (a && AT_class (a) == dw_val_class_str);
5014
5015   node = a->dw_attr_val.v.val_str;
5016   if (node->form)
5017     return node->form;
5018
5019   len = strlen (node->str) + 1;
5020
5021   /* If the string is shorter or equal to the size of the reference, it is
5022      always better to put it inline.  */
5023   if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
5024     return node->form = DW_FORM_string;
5025
5026   /* If we cannot expect the linker to merge strings in .debug_str
5027      section, only put it into .debug_str if it is worth even in this
5028      single module.  */
5029   if ((debug_str_section->common.flags & SECTION_MERGE) == 0
5030       && (len - DWARF_OFFSET_SIZE) * node->refcount <= len)
5031     return node->form = DW_FORM_string;
5032
5033   ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
5034   ++dw2_string_counter;
5035   node->label = xstrdup (label);
5036
5037   return node->form = DW_FORM_strp;
5038 }
5039
5040 /* Add a DIE reference attribute value to a DIE.  */
5041
5042 static inline void
5043 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
5044 {
5045   dw_attr_node attr;
5046
5047   attr.dw_attr = attr_kind;
5048   attr.dw_attr_val.val_class = dw_val_class_die_ref;
5049   attr.dw_attr_val.v.val_die_ref.die = targ_die;
5050   attr.dw_attr_val.v.val_die_ref.external = 0;
5051   add_dwarf_attr (die, &attr);
5052 }
5053
5054 /* Add an AT_specification attribute to a DIE, and also make the back
5055    pointer from the specification to the definition.  */
5056
5057 static inline void
5058 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
5059 {
5060   add_AT_die_ref (die, DW_AT_specification, targ_die);
5061   gcc_assert (!targ_die->die_definition);
5062   targ_die->die_definition = die;
5063 }
5064
5065 static inline dw_die_ref
5066 AT_ref (dw_attr_ref a)
5067 {
5068   gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
5069   return a->dw_attr_val.v.val_die_ref.die;
5070 }
5071
5072 static inline int
5073 AT_ref_external (dw_attr_ref a)
5074 {
5075   if (a && AT_class (a) == dw_val_class_die_ref)
5076     return a->dw_attr_val.v.val_die_ref.external;
5077
5078   return 0;
5079 }
5080
5081 static inline void
5082 set_AT_ref_external (dw_attr_ref a, int i)
5083 {
5084   gcc_assert (a && AT_class (a) == dw_val_class_die_ref);
5085   a->dw_attr_val.v.val_die_ref.external = i;
5086 }
5087
5088 /* Add an FDE reference attribute value to a DIE.  */
5089
5090 static inline void
5091 add_AT_fde_ref (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int targ_fde)
5092 {
5093   dw_attr_node attr;
5094
5095   attr.dw_attr = attr_kind;
5096   attr.dw_attr_val.val_class = dw_val_class_fde_ref;
5097   attr.dw_attr_val.v.val_fde_index = targ_fde;
5098   add_dwarf_attr (die, &attr);
5099 }
5100
5101 /* Add a location description attribute value to a DIE.  */
5102
5103 static inline void
5104 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
5105 {
5106   dw_attr_node attr;
5107
5108   attr.dw_attr = attr_kind;
5109   attr.dw_attr_val.val_class = dw_val_class_loc;
5110   attr.dw_attr_val.v.val_loc = loc;
5111   add_dwarf_attr (die, &attr);
5112 }
5113
5114 static inline dw_loc_descr_ref
5115 AT_loc (dw_attr_ref a)
5116 {
5117   gcc_assert (a && AT_class (a) == dw_val_class_loc);
5118   return a->dw_attr_val.v.val_loc;
5119 }
5120
5121 static inline void
5122 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
5123 {
5124   dw_attr_node attr;
5125
5126   attr.dw_attr = attr_kind;
5127   attr.dw_attr_val.val_class = dw_val_class_loc_list;
5128   attr.dw_attr_val.v.val_loc_list = loc_list;
5129   add_dwarf_attr (die, &attr);
5130   have_location_lists = true;
5131 }
5132
5133 static inline dw_loc_list_ref
5134 AT_loc_list (dw_attr_ref a)
5135 {
5136   gcc_assert (a && AT_class (a) == dw_val_class_loc_list);
5137   return a->dw_attr_val.v.val_loc_list;
5138 }
5139
5140 /* Add an address constant attribute value to a DIE.  */
5141
5142 static inline void
5143 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr)
5144 {
5145   dw_attr_node attr;
5146
5147   attr.dw_attr = attr_kind;
5148   attr.dw_attr_val.val_class = dw_val_class_addr;
5149   attr.dw_attr_val.v.val_addr = addr;
5150   add_dwarf_attr (die, &attr);
5151 }
5152
5153 static inline rtx
5154 AT_addr (dw_attr_ref a)
5155 {
5156   gcc_assert (a && AT_class (a) == dw_val_class_addr);
5157   return a->dw_attr_val.v.val_addr;
5158 }
5159
5160 /* Add a label identifier attribute value to a DIE.  */
5161
5162 static inline void
5163 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind, const char *lbl_id)
5164 {
5165   dw_attr_node attr;
5166
5167   attr.dw_attr = attr_kind;
5168   attr.dw_attr_val.val_class = dw_val_class_lbl_id;
5169   attr.dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
5170   add_dwarf_attr (die, &attr);
5171 }
5172
5173 /* Add a section offset attribute value to a DIE, an offset into the
5174    debug_line section.  */
5175
5176 static inline void
5177 add_AT_lineptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5178                 const char *label)
5179 {
5180   dw_attr_node attr;
5181
5182   attr.dw_attr = attr_kind;
5183   attr.dw_attr_val.val_class = dw_val_class_lineptr;
5184   attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
5185   add_dwarf_attr (die, &attr);
5186 }
5187
5188 /* Add a section offset attribute value to a DIE, an offset into the
5189    debug_macinfo section.  */
5190
5191 static inline void
5192 add_AT_macptr (dw_die_ref die, enum dwarf_attribute attr_kind,
5193                const char *label)
5194 {
5195   dw_attr_node attr;
5196
5197   attr.dw_attr = attr_kind;
5198   attr.dw_attr_val.val_class = dw_val_class_macptr;
5199   attr.dw_attr_val.v.val_lbl_id = xstrdup (label);
5200   add_dwarf_attr (die, &attr);
5201 }
5202
5203 /* Add an offset attribute value to a DIE.  */
5204
5205 static inline void
5206 add_AT_offset (dw_die_ref die, enum dwarf_attribute attr_kind,
5207                unsigned HOST_WIDE_INT offset)
5208 {
5209   dw_attr_node attr;
5210
5211   attr.dw_attr = attr_kind;
5212   attr.dw_attr_val.val_class = dw_val_class_offset;
5213   attr.dw_attr_val.v.val_offset = offset;
5214   add_dwarf_attr (die, &attr);
5215 }
5216
5217 /* Add an range_list attribute value to a DIE.  */
5218
5219 static void
5220 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
5221                    long unsigned int offset)
5222 {
5223   dw_attr_node attr;
5224
5225   attr.dw_attr = attr_kind;
5226   attr.dw_attr_val.val_class = dw_val_class_range_list;
5227   attr.dw_attr_val.v.val_offset = offset;
5228   add_dwarf_attr (die, &attr);
5229 }
5230
5231 static inline const char *
5232 AT_lbl (dw_attr_ref a)
5233 {
5234   gcc_assert (a && (AT_class (a) == dw_val_class_lbl_id
5235                     || AT_class (a) == dw_val_class_lineptr
5236                     || AT_class (a) == dw_val_class_macptr));
5237   return a->dw_attr_val.v.val_lbl_id;
5238 }
5239
5240 /* Get the attribute of type attr_kind.  */
5241
5242 static dw_attr_ref
5243 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5244 {
5245   dw_attr_ref a;
5246   unsigned ix;
5247   dw_die_ref spec = NULL;
5248
5249   if (! die)
5250     return NULL;
5251
5252   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
5253     if (a->dw_attr == attr_kind)
5254       return a;
5255     else if (a->dw_attr == DW_AT_specification
5256              || a->dw_attr == DW_AT_abstract_origin)
5257       spec = AT_ref (a);
5258   
5259   if (spec)
5260     return get_AT (spec, attr_kind);
5261
5262   return NULL;
5263 }
5264
5265 /* Return the "low pc" attribute value, typically associated with a subprogram
5266    DIE.  Return null if the "low pc" attribute is either not present, or if it
5267    cannot be represented as an assembler label identifier.  */
5268
5269 static inline const char *
5270 get_AT_low_pc (dw_die_ref die)
5271 {
5272   dw_attr_ref a = get_AT (die, DW_AT_low_pc);
5273
5274   return a ? AT_lbl (a) : NULL;
5275 }
5276
5277 /* Return the "high pc" attribute value, typically associated with a subprogram
5278    DIE.  Return null if the "high pc" attribute is either not present, or if it
5279    cannot be represented as an assembler label identifier.  */
5280
5281 static inline const char *
5282 get_AT_hi_pc (dw_die_ref die)
5283 {
5284   dw_attr_ref a = get_AT (die, DW_AT_high_pc);
5285
5286   return a ? AT_lbl (a) : NULL;
5287 }
5288
5289 /* Return the value of the string attribute designated by ATTR_KIND, or
5290    NULL if it is not present.  */
5291
5292 static inline const char *
5293 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
5294 {
5295   dw_attr_ref a = get_AT (die, attr_kind);
5296
5297   return a ? AT_string (a) : NULL;
5298 }
5299
5300 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
5301    if it is not present.  */
5302
5303 static inline int
5304 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
5305 {
5306   dw_attr_ref a = get_AT (die, attr_kind);
5307
5308   return a ? AT_flag (a) : 0;
5309 }
5310
5311 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
5312    if it is not present.  */
5313
5314 static inline unsigned
5315 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
5316 {
5317   dw_attr_ref a = get_AT (die, attr_kind);
5318
5319   return a ? AT_unsigned (a) : 0;
5320 }
5321
5322 static inline dw_die_ref
5323 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
5324 {
5325   dw_attr_ref a = get_AT (die, attr_kind);
5326
5327   return a ? AT_ref (a) : NULL;
5328 }
5329
5330 /* Return TRUE if the language is C or C++.  */
5331
5332 static inline bool
5333 is_c_family (void)
5334 {
5335   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5336
5337   return (lang == DW_LANG_C || lang == DW_LANG_C89 || lang == DW_LANG_ObjC
5338           || lang == DW_LANG_C99
5339           || lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus);
5340 }
5341
5342 /* Return TRUE if the language is C++.  */
5343
5344 static inline bool
5345 is_cxx (void)
5346 {
5347   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5348   
5349   return lang == DW_LANG_C_plus_plus || lang == DW_LANG_ObjC_plus_plus;
5350 }
5351
5352 /* Return TRUE if the language is Fortran.  */
5353
5354 static inline bool
5355 is_fortran (void)
5356 {
5357   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5358
5359   return (lang == DW_LANG_Fortran77
5360           || lang == DW_LANG_Fortran90
5361           || lang == DW_LANG_Fortran95);
5362 }
5363
5364 /* Return TRUE if the language is Java.  */
5365
5366 static inline bool
5367 is_java (void)
5368 {
5369   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5370
5371   return lang == DW_LANG_Java;
5372 }
5373
5374 /* Return TRUE if the language is Ada.  */
5375
5376 static inline bool
5377 is_ada (void)
5378 {
5379   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5380
5381   return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
5382 }
5383
5384 /* Remove the specified attribute if present.  */
5385
5386 static void
5387 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5388 {
5389   dw_attr_ref a;
5390   unsigned ix;
5391
5392   if (! die)
5393     return;
5394
5395   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
5396     if (a->dw_attr == attr_kind)
5397       {
5398         if (AT_class (a) == dw_val_class_str)
5399           if (a->dw_attr_val.v.val_str->refcount)
5400             a->dw_attr_val.v.val_str->refcount--;
5401
5402         /* VEC_ordered_remove should help reduce the number of abbrevs
5403            that are needed.  */
5404         VEC_ordered_remove (dw_attr_node, die->die_attr, ix);
5405         return;
5406       }
5407 }
5408
5409 /* Remove child die whose die_tag is specified tag.  */
5410
5411 static void
5412 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
5413 {
5414   dw_die_ref current, prev, next;
5415   current = die->die_child;
5416   prev = NULL;
5417   while (current != NULL)
5418     {
5419       if (current->die_tag == tag)
5420         {
5421           next = current->die_sib;
5422           if (prev == NULL)
5423             die->die_child = next;
5424           else
5425             prev->die_sib = next;
5426           current = next;
5427         }
5428       else
5429         {
5430           prev = current;
5431           current = current->die_sib;
5432         }
5433     }
5434 }
5435
5436 /* Add a child DIE below its parent.  We build the lists up in reverse
5437    addition order, and correct that in reverse_all_dies.  */
5438
5439 static inline void
5440 add_child_die (dw_die_ref die, dw_die_ref child_die)
5441 {
5442   if (die != NULL && child_die != NULL)
5443     {
5444       gcc_assert (die != child_die);
5445
5446       child_die->die_parent = die;
5447       child_die->die_sib = die->die_child;
5448       die->die_child = child_die;
5449     }
5450 }
5451
5452 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5453    is the specification, to the front of PARENT's list of children.  */
5454
5455 static void
5456 splice_child_die (dw_die_ref parent, dw_die_ref child)
5457 {
5458   dw_die_ref *p;
5459
5460   /* We want the declaration DIE from inside the class, not the
5461      specification DIE at toplevel.  */
5462   if (child->die_parent != parent)
5463     {
5464       dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
5465
5466       if (tmp)
5467         child = tmp;
5468     }
5469
5470   gcc_assert (child->die_parent == parent
5471               || (child->die_parent
5472                   == get_AT_ref (parent, DW_AT_specification)));
5473
5474   for (p = &(child->die_parent->die_child); *p; p = &((*p)->die_sib))
5475     if (*p == child)
5476       {
5477         *p = child->die_sib;
5478         break;
5479       }
5480
5481   child->die_parent = parent;
5482   child->die_sib = parent->die_child;
5483   parent->die_child = child;
5484 }
5485
5486 /* Return a pointer to a newly created DIE node.  */
5487
5488 static inline dw_die_ref
5489 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
5490 {
5491   dw_die_ref die = ggc_alloc_cleared (sizeof (die_node));
5492
5493   die->die_tag = tag_value;
5494
5495   if (parent_die != NULL)
5496     add_child_die (parent_die, die);
5497   else
5498     {
5499       limbo_die_node *limbo_node;
5500
5501       limbo_node = ggc_alloc_cleared (sizeof (limbo_die_node));
5502       limbo_node->die = die;
5503       limbo_node->created_for = t;
5504       limbo_node->next = limbo_die_list;
5505       limbo_die_list = limbo_node;
5506     }
5507
5508   return die;
5509 }
5510
5511 /* Return the DIE associated with the given type specifier.  */
5512
5513 static inline dw_die_ref
5514 lookup_type_die (tree type)
5515 {
5516   return TYPE_SYMTAB_DIE (type);
5517 }
5518
5519 /* Equate a DIE to a given type specifier.  */
5520
5521 static inline void
5522 equate_type_number_to_die (tree type, dw_die_ref type_die)
5523 {
5524   TYPE_SYMTAB_DIE (type) = type_die;
5525 }
5526
5527 /* Returns a hash value for X (which really is a die_struct).  */
5528
5529 static hashval_t
5530 decl_die_table_hash (const void *x)
5531 {
5532   return (hashval_t) ((const dw_die_ref) x)->decl_id;
5533 }
5534
5535 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y.  */
5536
5537 static int
5538 decl_die_table_eq (const void *x, const void *y)
5539 {
5540   return (((const dw_die_ref) x)->decl_id == DECL_UID ((const tree) y));
5541 }
5542
5543 /* Return the DIE associated with a given declaration.  */
5544
5545 static inline dw_die_ref
5546 lookup_decl_die (tree decl)
5547 {
5548   return htab_find_with_hash (decl_die_table, decl, DECL_UID (decl));
5549 }
5550
5551 /* Returns a hash value for X (which really is a var_loc_list).  */
5552
5553 static hashval_t
5554 decl_loc_table_hash (const void *x)
5555 {
5556   return (hashval_t) ((const var_loc_list *) x)->decl_id;
5557 }
5558
5559 /* Return nonzero if decl_id of var_loc_list X is the same as
5560    UID of decl *Y.  */
5561
5562 static int
5563 decl_loc_table_eq (const void *x, const void *y)
5564 {
5565   return (((const var_loc_list *) x)->decl_id == DECL_UID ((const tree) y));
5566 }
5567
5568 /* Return the var_loc list associated with a given declaration.  */
5569
5570 static inline var_loc_list *
5571 lookup_decl_loc (tree decl)
5572 {
5573   return htab_find_with_hash (decl_loc_table, decl, DECL_UID (decl));
5574 }
5575
5576 /* Equate a DIE to a particular declaration.  */
5577
5578 static void
5579 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
5580 {
5581   unsigned int decl_id = DECL_UID (decl);
5582   void **slot;
5583
5584   slot = htab_find_slot_with_hash (decl_die_table, decl, decl_id, INSERT);
5585   *slot = decl_die;
5586   decl_die->decl_id = decl_id;
5587 }
5588
5589 /* Add a variable location node to the linked list for DECL.  */
5590
5591 static void
5592 add_var_loc_to_decl (tree decl, struct var_loc_node *loc)
5593 {
5594   unsigned int decl_id = DECL_UID (decl);
5595   var_loc_list *temp;
5596   void **slot;
5597
5598   slot = htab_find_slot_with_hash (decl_loc_table, decl, decl_id, INSERT);
5599   if (*slot == NULL)
5600     {
5601       temp = ggc_alloc_cleared (sizeof (var_loc_list));
5602       temp->decl_id = decl_id;
5603       *slot = temp;
5604     }
5605   else
5606     temp = *slot;
5607
5608   if (temp->last)
5609     {
5610       /* If the current location is the same as the end of the list,
5611          we have nothing to do.  */
5612       if (!rtx_equal_p (NOTE_VAR_LOCATION_LOC (temp->last->var_loc_note),
5613                         NOTE_VAR_LOCATION_LOC (loc->var_loc_note)))
5614         {
5615           /* Add LOC to the end of list and update LAST.  */
5616           temp->last->next = loc;
5617           temp->last = loc;
5618         }
5619     }
5620   /* Do not add empty location to the beginning of the list.  */
5621   else if (NOTE_VAR_LOCATION_LOC (loc->var_loc_note) != NULL_RTX)
5622     {
5623       temp->first = loc;
5624       temp->last = loc;
5625     }
5626 }
5627 \f
5628 /* Keep track of the number of spaces used to indent the
5629    output of the debugging routines that print the structure of
5630    the DIE internal representation.  */
5631 static int print_indent;
5632
5633 /* Indent the line the number of spaces given by print_indent.  */
5634
5635 static inline void
5636 print_spaces (FILE *outfile)
5637 {
5638   fprintf (outfile, "%*s", print_indent, "");
5639 }
5640
5641 /* Print the information associated with a given DIE, and its children.
5642    This routine is a debugging aid only.  */
5643
5644 static void
5645 print_die (dw_die_ref die, FILE *outfile)
5646 {
5647   dw_attr_ref a;
5648   dw_die_ref c;
5649   unsigned ix;
5650
5651   print_spaces (outfile);
5652   fprintf (outfile, "DIE %4lu: %s\n",
5653            die->die_offset, dwarf_tag_name (die->die_tag));
5654   print_spaces (outfile);
5655   fprintf (outfile, "  abbrev id: %lu", die->die_abbrev);
5656   fprintf (outfile, " offset: %lu\n", die->die_offset);
5657
5658   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
5659     {
5660       print_spaces (outfile);
5661       fprintf (outfile, "  %s: ", dwarf_attr_name (a->dw_attr));
5662
5663       switch (AT_class (a))
5664         {
5665         case dw_val_class_addr:
5666           fprintf (outfile, "address");
5667           break;
5668         case dw_val_class_offset:
5669           fprintf (outfile, "offset");
5670           break;
5671         case dw_val_class_loc:
5672           fprintf (outfile, "location descriptor");
5673           break;
5674         case dw_val_class_loc_list:
5675           fprintf (outfile, "location list -> label:%s",
5676                    AT_loc_list (a)->ll_symbol);
5677           break;
5678         case dw_val_class_range_list:
5679           fprintf (outfile, "range list");
5680           break;
5681         case dw_val_class_const:
5682           fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, AT_int (a));
5683           break;
5684         case dw_val_class_unsigned_const:
5685           fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, AT_unsigned (a));
5686           break;
5687         case dw_val_class_long_long:
5688           fprintf (outfile, "constant (%lu,%lu)",
5689                    a->dw_attr_val.v.val_long_long.hi,
5690                    a->dw_attr_val.v.val_long_long.low);
5691           break;
5692         case dw_val_class_vec:
5693           fprintf (outfile, "floating-point or vector constant");
5694           break;
5695         case dw_val_class_flag:
5696           fprintf (outfile, "%u", AT_flag (a));
5697           break;
5698         case dw_val_class_die_ref:
5699           if (AT_ref (a) != NULL)
5700             {
5701               if (AT_ref (a)->die_symbol)
5702                 fprintf (outfile, "die -> label: %s", AT_ref (a)->die_symbol);
5703               else
5704                 fprintf (outfile, "die -> %lu", AT_ref (a)->die_offset);
5705             }
5706           else
5707             fprintf (outfile, "die -> <null>");
5708           break;
5709         case dw_val_class_lbl_id:
5710         case dw_val_class_lineptr:
5711         case dw_val_class_macptr:
5712           fprintf (outfile, "label: %s", AT_lbl (a));
5713           break;
5714         case dw_val_class_str:
5715           if (AT_string (a) != NULL)
5716             fprintf (outfile, "\"%s\"", AT_string (a));
5717           else
5718             fprintf (outfile, "<null>");
5719           break;
5720         default:
5721           break;
5722         }
5723
5724       fprintf (outfile, "\n");
5725     }
5726
5727   if (die->die_child != NULL)
5728     {
5729       print_indent += 4;
5730       for (c = die->die_child; c != NULL; c = c->die_sib)
5731         print_die (c, outfile);
5732
5733       print_indent -= 4;
5734     }
5735   if (print_indent == 0)
5736     fprintf (outfile, "\n");
5737 }
5738
5739 /* Print the contents of the source code line number correspondence table.
5740    This routine is a debugging aid only.  */
5741
5742 static void
5743 print_dwarf_line_table (FILE *outfile)
5744 {
5745   unsigned i;
5746   dw_line_info_ref line_info;
5747
5748   fprintf (outfile, "\n\nDWARF source line information\n");
5749   for (i = 1; i < line_info_table_in_use; i++)
5750     {
5751       line_info = &line_info_table[i];
5752       fprintf (outfile, "%5d: ", i);
5753       fprintf (outfile, "%-20s",
5754                VARRAY_CHAR_PTR (file_table, line_info->dw_file_num));
5755       fprintf (outfile, "%6ld", line_info->dw_line_num);
5756       fprintf (outfile, "\n");
5757     }
5758
5759   fprintf (outfile, "\n\n");
5760 }
5761
5762 /* Print the information collected for a given DIE.  */
5763
5764 void
5765 debug_dwarf_die (dw_die_ref die)
5766 {
5767   print_die (die, stderr);
5768 }
5769
5770 /* Print all DWARF information collected for the compilation unit.
5771    This routine is a debugging aid only.  */
5772
5773 void
5774 debug_dwarf (void)
5775 {
5776   print_indent = 0;
5777   print_die (comp_unit_die, stderr);
5778   if (! DWARF2_ASM_LINE_DEBUG_INFO)
5779     print_dwarf_line_table (stderr);
5780 }
5781 \f
5782 /* We build up the lists of children and attributes by pushing new ones
5783    onto the beginning of the list.  Reverse the lists for DIE so that
5784    they are in order of addition.  */
5785
5786 static void
5787 reverse_die_lists (dw_die_ref die)
5788 {
5789   dw_die_ref c, cp, cn;
5790
5791   for (c = die->die_child, cp = 0; c; c = cn)
5792     {
5793       cn = c->die_sib;
5794       c->die_sib = cp;
5795       cp = c;
5796     }
5797
5798   die->die_child = cp;
5799 }
5800
5801 /* reverse_die_lists only reverses the single die you pass it. Since we used to
5802    reverse all dies in add_sibling_attributes, which runs through all the dies,
5803    it would reverse all the dies.  Now, however, since we don't call
5804    reverse_die_lists in add_sibling_attributes, we need a routine to
5805    recursively reverse all the dies. This is that routine.  */
5806
5807 static void
5808 reverse_all_dies (dw_die_ref die)
5809 {
5810   dw_die_ref c;
5811
5812   reverse_die_lists (die);
5813
5814   for (c = die->die_child; c; c = c->die_sib)
5815     reverse_all_dies (c);
5816 }
5817
5818 /* Start a new compilation unit DIE for an include file.  OLD_UNIT is the CU
5819    for the enclosing include file, if any.  BINCL_DIE is the DW_TAG_GNU_BINCL
5820    DIE that marks the start of the DIEs for this include file.  */
5821
5822 static dw_die_ref
5823 push_new_compile_unit (dw_die_ref old_unit, dw_die_ref bincl_die)
5824 {
5825   const char *filename = get_AT_string (bincl_die, DW_AT_name);
5826   dw_die_ref new_unit = gen_compile_unit_die (filename);
5827
5828   new_unit->die_sib = old_unit;
5829   return new_unit;
5830 }
5831
5832 /* Close an include-file CU and reopen the enclosing one.  */
5833
5834 static dw_die_ref
5835 pop_compile_unit (dw_die_ref old_unit)
5836 {
5837   dw_die_ref new_unit = old_unit->die_sib;
5838
5839   old_unit->die_sib = NULL;
5840   return new_unit;
5841 }
5842
5843 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5844 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5845
5846 /* Calculate the checksum of a location expression.  */
5847
5848 static inline void
5849 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
5850 {
5851   CHECKSUM (loc->dw_loc_opc);
5852   CHECKSUM (loc->dw_loc_oprnd1);
5853   CHECKSUM (loc->dw_loc_oprnd2);
5854 }
5855
5856 /* Calculate the checksum of an attribute.  */
5857
5858 static void
5859 attr_checksum (dw_attr_ref at, struct md5_ctx *ctx, int *mark)
5860 {
5861   dw_loc_descr_ref loc;
5862   rtx r;
5863
5864   CHECKSUM (at->dw_attr);
5865
5866   /* We don't care about differences in file numbering.  */
5867   if (at->dw_attr == DW_AT_decl_file
5868       /* Or that this was compiled with a different compiler snapshot; if
5869          the output is the same, that's what matters.  */
5870       || at->dw_attr == DW_AT_producer)
5871     return;
5872
5873   switch (AT_class (at))
5874     {
5875     case dw_val_class_const:
5876       CHECKSUM (at->dw_attr_val.v.val_int);
5877       break;
5878     case dw_val_class_unsigned_const:
5879       CHECKSUM (at->dw_attr_val.v.val_unsigned);
5880       break;
5881     case dw_val_class_long_long:
5882       CHECKSUM (at->dw_attr_val.v.val_long_long);
5883       break;
5884     case dw_val_class_vec:
5885       CHECKSUM (at->dw_attr_val.v.val_vec);
5886       break;
5887     case dw_val_class_flag:
5888       CHECKSUM (at->dw_attr_val.v.val_flag);
5889       break;
5890     case dw_val_class_str:
5891       CHECKSUM_STRING (AT_string (at));
5892       break;
5893
5894     case dw_val_class_addr:
5895       r = AT_addr (at);
5896       gcc_assert (GET_CODE (r) == SYMBOL_REF);
5897       CHECKSUM_STRING (XSTR (r, 0));
5898       break;
5899
5900     case dw_val_class_offset:
5901       CHECKSUM (at->dw_attr_val.v.val_offset);
5902       break;
5903
5904     case dw_val_class_loc:
5905       for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
5906         loc_checksum (loc, ctx);
5907       break;
5908
5909     case dw_val_class_die_ref:
5910       die_checksum (AT_ref (at), ctx, mark);
5911       break;
5912
5913     case dw_val_class_fde_ref:
5914     case dw_val_class_lbl_id:
5915     case dw_val_class_lineptr:
5916     case dw_val_class_macptr:
5917       break;
5918
5919     default:
5920       break;
5921     }
5922 }
5923
5924 /* Calculate the checksum of a DIE.  */
5925
5926 static void
5927 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
5928 {
5929   dw_die_ref c;
5930   dw_attr_ref a;
5931   unsigned ix;
5932
5933   /* To avoid infinite recursion.  */
5934   if (die->die_mark)
5935     {
5936       CHECKSUM (die->die_mark);
5937       return;
5938     }
5939   die->die_mark = ++(*mark);
5940
5941   CHECKSUM (die->die_tag);
5942
5943   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
5944     attr_checksum (a, ctx, mark);
5945
5946   for (c = die->die_child; c; c = c->die_sib)
5947     die_checksum (c, ctx, mark);
5948 }
5949
5950 #undef CHECKSUM
5951 #undef CHECKSUM_STRING
5952
5953 /* Do the location expressions look same?  */
5954 static inline int
5955 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
5956 {
5957   return loc1->dw_loc_opc == loc2->dw_loc_opc
5958          && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
5959          && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
5960 }
5961
5962 /* Do the values look the same?  */
5963 static int
5964 same_dw_val_p (dw_val_node *v1, dw_val_node *v2, int *mark)
5965 {
5966   dw_loc_descr_ref loc1, loc2;
5967   rtx r1, r2;
5968
5969   if (v1->val_class != v2->val_class)
5970     return 0;
5971
5972   switch (v1->val_class)
5973     {
5974     case dw_val_class_const:
5975       return v1->v.val_int == v2->v.val_int;
5976     case dw_val_class_unsigned_const:
5977       return v1->v.val_unsigned == v2->v.val_unsigned;
5978     case dw_val_class_long_long:
5979       return v1->v.val_long_long.hi == v2->v.val_long_long.hi
5980              && v1->v.val_long_long.low == v2->v.val_long_long.low;
5981     case dw_val_class_vec:
5982       if (v1->v.val_vec.length != v2->v.val_vec.length
5983           || v1->v.val_vec.elt_size != v2->v.val_vec.elt_size)
5984         return 0;
5985       if (memcmp (v1->v.val_vec.array, v2->v.val_vec.array,
5986                   v1->v.val_vec.length * v1->v.val_vec.elt_size))
5987         return 0;
5988       return 1;
5989     case dw_val_class_flag:
5990       return v1->v.val_flag == v2->v.val_flag;
5991     case dw_val_class_str:
5992       return !strcmp(v1->v.val_str->str, v2->v.val_str->str);
5993
5994     case dw_val_class_addr:
5995       r1 = v1->v.val_addr;
5996       r2 = v2->v.val_addr;
5997       if (GET_CODE (r1) != GET_CODE (r2))
5998         return 0;
5999       gcc_assert (GET_CODE (r1) == SYMBOL_REF);
6000       return !strcmp (XSTR (r1, 0), XSTR (r2, 0));
6001
6002     case dw_val_class_offset:
6003       return v1->v.val_offset == v2->v.val_offset;
6004
6005     case dw_val_class_loc:
6006       for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
6007            loc1 && loc2;
6008            loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
6009         if (!same_loc_p (loc1, loc2, mark))
6010           return 0;
6011       return !loc1 && !loc2;
6012
6013     case dw_val_class_die_ref:
6014       return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
6015
6016     case dw_val_class_fde_ref:
6017     case dw_val_class_lbl_id:
6018     case dw_val_class_lineptr:
6019     case dw_val_class_macptr:
6020       return 1;
6021
6022     default:
6023       return 1;
6024     }
6025 }
6026
6027 /* Do the attributes look the same?  */
6028
6029 static int
6030 same_attr_p (dw_attr_ref at1, dw_attr_ref at2, int *mark)
6031 {
6032   if (at1->dw_attr != at2->dw_attr)
6033     return 0;
6034
6035   /* We don't care about differences in file numbering.  */
6036   if (at1->dw_attr == DW_AT_decl_file
6037       /* Or that this was compiled with a different compiler snapshot; if
6038          the output is the same, that's what matters.  */
6039       || at1->dw_attr == DW_AT_producer)
6040     return 1;
6041
6042   return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
6043 }
6044
6045 /* Do the dies look the same?  */
6046
6047 static int
6048 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
6049 {
6050   dw_die_ref c1, c2;
6051   dw_attr_ref a1;
6052   unsigned ix;
6053
6054   /* To avoid infinite recursion.  */
6055   if (die1->die_mark)
6056     return die1->die_mark == die2->die_mark;
6057   die1->die_mark = die2->die_mark = ++(*mark);
6058
6059   if (die1->die_tag != die2->die_tag)
6060     return 0;
6061
6062   if (VEC_length (dw_attr_node, die1->die_attr)
6063       != VEC_length (dw_attr_node, die2->die_attr))
6064     return 0;
6065   
6066   for (ix = 0; VEC_iterate (dw_attr_node, die1->die_attr, ix, a1); ix++)
6067     if (!same_attr_p (a1, VEC_index (dw_attr_node, die2->die_attr, ix), mark))
6068       return 0;
6069
6070   for (c1 = die1->die_child, c2 = die2->die_child;
6071        c1 && c2;
6072        c1 = c1->die_sib, c2 = c2->die_sib)
6073     if (!same_die_p (c1, c2, mark))
6074       return 0;
6075   if (c1 || c2)
6076     return 0;
6077
6078   return 1;
6079 }
6080
6081 /* Do the dies look the same?  Wrapper around same_die_p.  */
6082
6083 static int
6084 same_die_p_wrap (dw_die_ref die1, dw_die_ref die2)
6085 {
6086   int mark = 0;
6087   int ret = same_die_p (die1, die2, &mark);
6088
6089   unmark_all_dies (die1);
6090   unmark_all_dies (die2);
6091
6092   return ret;
6093 }
6094
6095 /* The prefix to attach to symbols on DIEs in the current comdat debug
6096    info section.  */
6097 static char *comdat_symbol_id;
6098
6099 /* The index of the current symbol within the current comdat CU.  */
6100 static unsigned int comdat_symbol_number;
6101
6102 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
6103    children, and set comdat_symbol_id accordingly.  */
6104
6105 static void
6106 compute_section_prefix (dw_die_ref unit_die)
6107 {
6108   const char *die_name = get_AT_string (unit_die, DW_AT_name);
6109   const char *base = die_name ? lbasename (die_name) : "anonymous";
6110   char *name = alloca (strlen (base) + 64);
6111   char *p;
6112   int i, mark;
6113   unsigned char checksum[16];
6114   struct md5_ctx ctx;
6115
6116   /* Compute the checksum of the DIE, then append part of it as hex digits to
6117      the name filename of the unit.  */
6118
6119   md5_init_ctx (&ctx);
6120   mark = 0;
6121   die_checksum (unit_die, &ctx, &mark);
6122   unmark_all_dies (unit_die);
6123   md5_finish_ctx (&ctx, checksum);
6124
6125   sprintf (name, "%s.", base);
6126   clean_symbol_name (name);
6127
6128   p = name + strlen (name);
6129   for (i = 0; i < 4; i++)
6130     {
6131       sprintf (p, "%.2x", checksum[i]);
6132       p += 2;
6133     }
6134
6135   comdat_symbol_id = unit_die->die_symbol = xstrdup (name);
6136   comdat_symbol_number = 0;
6137 }
6138
6139 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P.  */
6140
6141 static int
6142 is_type_die (dw_die_ref die)
6143 {
6144   switch (die->die_tag)
6145     {
6146     case DW_TAG_array_type:
6147     case DW_TAG_class_type:
6148     case DW_TAG_enumeration_type:
6149     case DW_TAG_pointer_type:
6150     case DW_TAG_reference_type:
6151     case DW_TAG_string_type:
6152     case DW_TAG_structure_type:
6153     case DW_TAG_subroutine_type:
6154     case DW_TAG_union_type:
6155     case DW_TAG_ptr_to_member_type:
6156     case DW_TAG_set_type:
6157     case DW_TAG_subrange_type:
6158     case DW_TAG_base_type:
6159     case DW_TAG_const_type:
6160     case DW_TAG_file_type:
6161     case DW_TAG_packed_type:
6162     case DW_TAG_volatile_type:
6163     case DW_TAG_typedef:
6164       return 1;
6165     default:
6166       return 0;
6167     }
6168 }
6169
6170 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
6171    Basically, we want to choose the bits that are likely to be shared between
6172    compilations (types) and leave out the bits that are specific to individual
6173    compilations (functions).  */
6174
6175 static int
6176 is_comdat_die (dw_die_ref c)
6177 {
6178   /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
6179      we do for stabs.  The advantage is a greater likelihood of sharing between
6180      objects that don't include headers in the same order (and therefore would
6181      put the base types in a different comdat).  jason 8/28/00 */
6182
6183   if (c->die_tag == DW_TAG_base_type)
6184     return 0;
6185
6186   if (c->die_tag == DW_TAG_pointer_type
6187       || c->die_tag == DW_TAG_reference_type
6188       || c->die_tag == DW_TAG_const_type
6189       || c->die_tag == DW_TAG_volatile_type)
6190     {
6191       dw_die_ref t = get_AT_ref (c, DW_AT_type);
6192
6193       return t ? is_comdat_die (t) : 0;
6194     }
6195
6196   return is_type_die (c);
6197 }
6198
6199 /* Returns 1 iff C is the sort of DIE that might be referred to from another
6200    compilation unit.  */
6201
6202 static int
6203 is_symbol_die (dw_die_ref c)
6204 {
6205   return (is_type_die (c)
6206           || (get_AT (c, DW_AT_declaration)
6207               && !get_AT (c, DW_AT_specification))
6208           || c->die_tag == DW_TAG_namespace);
6209 }
6210
6211 static char *
6212 gen_internal_sym (const char *prefix)
6213 {
6214   char buf[256];
6215
6216   ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
6217   return xstrdup (buf);
6218 }
6219
6220 /* Assign symbols to all worthy DIEs under DIE.  */
6221
6222 static void
6223 assign_symbol_names (dw_die_ref die)
6224 {
6225   dw_die_ref c;
6226
6227   if (is_symbol_die (die))
6228     {
6229       if (comdat_symbol_id)
6230         {
6231           char *p = alloca (strlen (comdat_symbol_id) + 64);
6232
6233           sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
6234                    comdat_symbol_id, comdat_symbol_number++);
6235           die->die_symbol = xstrdup (p);
6236         }
6237       else
6238         die->die_symbol = gen_internal_sym ("LDIE");
6239     }
6240
6241   for (c = die->die_child; c != NULL; c = c->die_sib)
6242     assign_symbol_names (c);
6243 }
6244
6245 struct cu_hash_table_entry
6246 {
6247   dw_die_ref cu;
6248   unsigned min_comdat_num, max_comdat_num;
6249   struct cu_hash_table_entry *next;
6250 };
6251
6252 /* Routines to manipulate hash table of CUs.  */
6253 static hashval_t
6254 htab_cu_hash (const void *of)
6255 {
6256   const struct cu_hash_table_entry *entry = of;
6257
6258   return htab_hash_string (entry->cu->die_symbol);
6259 }
6260
6261 static int
6262 htab_cu_eq (const void *of1, const void *of2)
6263 {
6264   const struct cu_hash_table_entry *entry1 = of1;
6265   const struct die_struct *entry2 = of2;
6266
6267   return !strcmp (entry1->cu->die_symbol, entry2->die_symbol);
6268 }
6269
6270 static void
6271 htab_cu_del (void *what)
6272 {
6273   struct cu_hash_table_entry *next, *entry = what;
6274
6275   while (entry)
6276     {
6277       next = entry->next;
6278       free (entry);
6279       entry = next;
6280     }
6281 }
6282
6283 /* Check whether we have already seen this CU and set up SYM_NUM
6284    accordingly.  */
6285 static int
6286 check_duplicate_cu (dw_die_ref cu, htab_t htable, unsigned int *sym_num)
6287 {
6288   struct cu_hash_table_entry dummy;
6289   struct cu_hash_table_entry **slot, *entry, *last = &dummy;
6290
6291   dummy.max_comdat_num = 0;
6292
6293   slot = (struct cu_hash_table_entry **)
6294     htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
6295         INSERT);
6296   entry = *slot;
6297
6298   for (; entry; last = entry, entry = entry->next)
6299     {
6300       if (same_die_p_wrap (cu, entry->cu))
6301         break;
6302     }
6303
6304   if (entry)
6305     {
6306       *sym_num = entry->min_comdat_num;
6307       return 1;
6308     }
6309
6310   entry = XCNEW (struct cu_hash_table_entry);
6311   entry->cu = cu;
6312   entry->min_comdat_num = *sym_num = last->max_comdat_num;
6313   entry->next = *slot;
6314   *slot = entry;
6315
6316   return 0;
6317 }
6318
6319 /* Record SYM_NUM to record of CU in HTABLE.  */
6320 static void
6321 record_comdat_symbol_number (dw_die_ref cu, htab_t htable, unsigned int sym_num)
6322 {
6323   struct cu_hash_table_entry **slot, *entry;
6324
6325   slot = (struct cu_hash_table_entry **)
6326     htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
6327         NO_INSERT);
6328   entry = *slot;
6329
6330   entry->max_comdat_num = sym_num;
6331 }
6332
6333 /* Traverse the DIE (which is always comp_unit_die), and set up
6334    additional compilation units for each of the include files we see
6335    bracketed by BINCL/EINCL.  */
6336
6337 static void
6338 break_out_includes (dw_die_ref die)
6339 {
6340   dw_die_ref *ptr;
6341   dw_die_ref unit = NULL;
6342   limbo_die_node *node, **pnode;
6343   htab_t cu_hash_table;
6344
6345   for (ptr = &(die->die_child); *ptr;)
6346     {
6347       dw_die_ref c = *ptr;
6348
6349       if (c->die_tag == DW_TAG_GNU_BINCL || c->die_tag == DW_TAG_GNU_EINCL
6350           || (unit && is_comdat_die (c)))
6351         {
6352           /* This DIE is for a secondary CU; remove it from the main one.  */
6353           *ptr = c->die_sib;
6354
6355           if (c->die_tag == DW_TAG_GNU_BINCL)
6356             unit = push_new_compile_unit (unit, c);
6357           else if (c->die_tag == DW_TAG_GNU_EINCL)
6358             unit = pop_compile_unit (unit);
6359           else
6360             add_child_die (unit, c);
6361         }
6362       else
6363         {
6364           /* Leave this DIE in the main CU.  */
6365           ptr = &(c->die_sib);
6366           continue;
6367         }
6368     }
6369
6370 #if 0
6371   /* We can only use this in debugging, since the frontend doesn't check
6372      to make sure that we leave every include file we enter.  */
6373   gcc_assert (!unit);
6374 #endif
6375
6376   assign_symbol_names (die);
6377   cu_hash_table = htab_create (10, htab_cu_hash, htab_cu_eq, htab_cu_del);
6378   for (node = limbo_die_list, pnode = &limbo_die_list;
6379        node;
6380        node = node->next)
6381     {
6382       int is_dupl;
6383
6384       compute_section_prefix (node->die);
6385       is_dupl = check_duplicate_cu (node->die, cu_hash_table,
6386                         &comdat_symbol_number);
6387       assign_symbol_names (node->die);
6388       if (is_dupl)
6389         *pnode = node->next;
6390       else
6391         {
6392           pnode = &node->next;
6393           record_comdat_symbol_number (node->die, cu_hash_table,
6394                 comdat_symbol_number);
6395         }
6396     }
6397   htab_delete (cu_hash_table);
6398 }
6399
6400 /* Traverse the DIE and add a sibling attribute if it may have the
6401    effect of speeding up access to siblings.  To save some space,
6402    avoid generating sibling attributes for DIE's without children.  */
6403
6404 static void
6405 add_sibling_attributes (dw_die_ref die)
6406 {
6407   dw_die_ref c;
6408
6409   if (die->die_tag != DW_TAG_compile_unit
6410       && die->die_sib && die->die_child != NULL)
6411     /* Add the sibling link to the front of the attribute list.  */
6412     add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
6413
6414   for (c = die->die_child; c != NULL; c = c->die_sib)
6415     add_sibling_attributes (c);
6416 }
6417
6418 /* Output all location lists for the DIE and its children.  */
6419
6420 static void
6421 output_location_lists (dw_die_ref die)
6422 {
6423   dw_die_ref c;
6424   dw_attr_ref a;
6425   unsigned ix;
6426
6427   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
6428     if (AT_class (a) == dw_val_class_loc_list)
6429       output_loc_list (AT_loc_list (a));
6430
6431   for (c = die->die_child; c != NULL; c = c->die_sib)
6432     output_location_lists (c);
6433
6434 }
6435
6436 /* The format of each DIE (and its attribute value pairs) is encoded in an
6437    abbreviation table.  This routine builds the abbreviation table and assigns
6438    a unique abbreviation id for each abbreviation entry.  The children of each
6439    die are visited recursively.  */
6440
6441 static void
6442 build_abbrev_table (dw_die_ref die)
6443 {
6444   unsigned long abbrev_id;
6445   unsigned int n_alloc;
6446   dw_die_ref c;
6447   dw_attr_ref a;
6448   unsigned ix;
6449
6450   /* Scan the DIE references, and mark as external any that refer to
6451      DIEs from other CUs (i.e. those which are not marked).  */
6452   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
6453     if (AT_class (a) == dw_val_class_die_ref
6454         && AT_ref (a)->die_mark == 0)
6455       {
6456         gcc_assert (AT_ref (a)->die_symbol);
6457
6458         set_AT_ref_external (a, 1);
6459       }
6460
6461   for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6462     {
6463       dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6464       dw_attr_ref die_a, abbrev_a;
6465       unsigned ix;
6466       bool ok = true;
6467       
6468       if (abbrev->die_tag != die->die_tag)
6469         continue;
6470       if ((abbrev->die_child != NULL) != (die->die_child != NULL))
6471         continue;
6472       
6473       if (VEC_length (dw_attr_node, abbrev->die_attr)
6474           != VEC_length (dw_attr_node, die->die_attr))
6475         continue;
6476   
6477       for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, die_a); ix++)
6478         {
6479           abbrev_a = VEC_index (dw_attr_node, abbrev->die_attr, ix);
6480           if ((abbrev_a->dw_attr != die_a->dw_attr)
6481               || (value_format (abbrev_a) != value_format (die_a)))
6482             {
6483               ok = false;
6484               break;
6485             }
6486         }
6487       if (ok)
6488         break;
6489     }
6490
6491   if (abbrev_id >= abbrev_die_table_in_use)
6492     {
6493       if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
6494         {
6495           n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
6496           abbrev_die_table = ggc_realloc (abbrev_die_table,
6497                                           sizeof (dw_die_ref) * n_alloc);
6498
6499           memset (&abbrev_die_table[abbrev_die_table_allocated], 0,
6500                  (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
6501           abbrev_die_table_allocated = n_alloc;
6502         }
6503
6504       ++abbrev_die_table_in_use;
6505       abbrev_die_table[abbrev_id] = die;
6506     }
6507
6508   die->die_abbrev = abbrev_id;
6509   for (c = die->die_child; c != NULL; c = c->die_sib)
6510     build_abbrev_table (c);
6511 }
6512 \f
6513 /* Return the power-of-two number of bytes necessary to represent VALUE.  */
6514
6515 static int
6516 constant_size (long unsigned int value)
6517 {
6518   int log;
6519
6520   if (value == 0)
6521     log = 0;
6522   else
6523     log = floor_log2 (value);
6524
6525   log = log / 8;
6526   log = 1 << (floor_log2 (log) + 1);
6527
6528   return log;
6529 }
6530
6531 /* Return the size of a DIE as it is represented in the
6532    .debug_info section.  */
6533
6534 static unsigned long
6535 size_of_die (dw_die_ref die)
6536 {
6537   unsigned long size = 0;
6538   dw_attr_ref a;
6539   unsigned ix;
6540
6541   size += size_of_uleb128 (die->die_abbrev);
6542   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
6543     {
6544       switch (AT_class (a))
6545         {
6546         case dw_val_class_addr:
6547           size += DWARF2_ADDR_SIZE;
6548           break;
6549         case dw_val_class_offset:
6550           size += DWARF_OFFSET_SIZE;
6551           break;
6552         case dw_val_class_loc:
6553           {
6554             unsigned long lsize = size_of_locs (AT_loc (a));
6555
6556             /* Block length.  */
6557             size += constant_size (lsize);
6558             size += lsize;
6559           }
6560           break;
6561         case dw_val_class_loc_list:
6562           size += DWARF_OFFSET_SIZE;
6563           break;
6564         case dw_val_class_range_list:
6565           size += DWARF_OFFSET_SIZE;
6566           break;
6567         case dw_val_class_const:
6568           size += size_of_sleb128 (AT_int (a));
6569           break;
6570         case dw_val_class_unsigned_const:
6571           size += constant_size (AT_unsigned (a));
6572           break;
6573         case dw_val_class_long_long:
6574           size += 1 + 2*HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR; /* block */
6575           break;
6576         case dw_val_class_vec:
6577           size += 1 + (a->dw_attr_val.v.val_vec.length
6578                        * a->dw_attr_val.v.val_vec.elt_size); /* block */
6579           break;
6580         case dw_val_class_flag:
6581           size += 1;
6582           break;
6583         case dw_val_class_die_ref:
6584           if (AT_ref_external (a))
6585             size += DWARF2_ADDR_SIZE;
6586           else
6587             size += DWARF_OFFSET_SIZE;
6588           break;
6589         case dw_val_class_fde_ref:
6590           size += DWARF_OFFSET_SIZE;
6591           break;
6592         case dw_val_class_lbl_id:
6593           size += DWARF2_ADDR_SIZE;
6594           break;
6595         case dw_val_class_lineptr:
6596         case dw_val_class_macptr:
6597           size += DWARF_OFFSET_SIZE;
6598           break;
6599         case dw_val_class_str:
6600           if (AT_string_form (a) == DW_FORM_strp)
6601             size += DWARF_OFFSET_SIZE;
6602           else
6603             size += strlen (a->dw_attr_val.v.val_str->str) + 1;
6604           break;
6605         default:
6606           gcc_unreachable ();
6607         }
6608     }
6609
6610   return size;
6611 }
6612
6613 /* Size the debugging information associated with a given DIE.  Visits the
6614    DIE's children recursively.  Updates the global variable next_die_offset, on
6615    each time through.  Uses the current value of next_die_offset to update the
6616    die_offset field in each DIE.  */
6617
6618 static void
6619 calc_die_sizes (dw_die_ref die)
6620 {
6621   dw_die_ref c;
6622
6623   die->die_offset = next_die_offset;
6624   next_die_offset += size_of_die (die);
6625
6626   for (c = die->die_child; c != NULL; c = c->die_sib)
6627     calc_die_sizes (c);
6628
6629   if (die->die_child != NULL)
6630     /* Count the null byte used to terminate sibling lists.  */
6631     next_die_offset += 1;
6632 }
6633
6634 /* Set the marks for a die and its children.  We do this so
6635    that we know whether or not a reference needs to use FORM_ref_addr; only
6636    DIEs in the same CU will be marked.  We used to clear out the offset
6637    and use that as the flag, but ran into ordering problems.  */
6638
6639 static void
6640 mark_dies (dw_die_ref die)
6641 {
6642   dw_die_ref c;
6643
6644   gcc_assert (!die->die_mark);
6645
6646   die->die_mark = 1;
6647   for (c = die->die_child; c; c = c->die_sib)
6648     mark_dies (c);
6649 }
6650
6651 /* Clear the marks for a die and its children.  */
6652
6653 static void
6654 unmark_dies (dw_die_ref die)
6655 {
6656   dw_die_ref c;
6657
6658   gcc_assert (die->die_mark);
6659
6660   die->die_mark = 0;
6661   for (c = die->die_child; c; c = c->die_sib)
6662     unmark_dies (c);
6663 }
6664
6665 /* Clear the marks for a die, its children and referred dies.  */
6666
6667 static void
6668 unmark_all_dies (dw_die_ref die)
6669 {
6670   dw_die_ref c;
6671   dw_attr_ref a;
6672   unsigned ix;
6673
6674   if (!die->die_mark)
6675     return;
6676   die->die_mark = 0;
6677
6678   for (c = die->die_child; c; c = c->die_sib)
6679     unmark_all_dies (c);
6680
6681   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
6682     if (AT_class (a) == dw_val_class_die_ref)
6683       unmark_all_dies (AT_ref (a));
6684 }
6685
6686 /* Return the size of the .debug_pubnames table  generated for the
6687    compilation unit.  */
6688
6689 static unsigned long
6690 size_of_pubnames (void)
6691 {
6692   unsigned long size;
6693   unsigned i;
6694
6695   size = DWARF_PUBNAMES_HEADER_SIZE;
6696   for (i = 0; i < pubname_table_in_use; i++)
6697     {
6698       pubname_ref p = &pubname_table[i];
6699       size += DWARF_OFFSET_SIZE + strlen (p->name) + 1;
6700     }
6701
6702   size += DWARF_OFFSET_SIZE;
6703   return size;
6704 }
6705
6706 /* Return the size of the information in the .debug_aranges section.  */
6707
6708 static unsigned long
6709 size_of_aranges (void)
6710 {
6711   unsigned long size;
6712
6713   size = DWARF_ARANGES_HEADER_SIZE;
6714
6715   /* Count the address/length pair for this compilation unit.  */
6716   size += 2 * DWARF2_ADDR_SIZE;
6717   size += 2 * DWARF2_ADDR_SIZE * arange_table_in_use;
6718
6719   /* Count the two zero words used to terminated the address range table.  */
6720   size += 2 * DWARF2_ADDR_SIZE;
6721   return size;
6722 }
6723 \f
6724 /* Select the encoding of an attribute value.  */
6725
6726 static enum dwarf_form
6727 value_format (dw_attr_ref a)
6728 {
6729   switch (a->dw_attr_val.val_class)
6730     {
6731     case dw_val_class_addr:
6732       return DW_FORM_addr;
6733     case dw_val_class_range_list:
6734     case dw_val_class_offset:
6735     case dw_val_class_loc_list:
6736       switch (DWARF_OFFSET_SIZE)
6737         {
6738         case 4:
6739           return DW_FORM_data4;
6740         case 8:
6741           return DW_FORM_data8;
6742         default:
6743           gcc_unreachable ();
6744         }
6745     case dw_val_class_loc:
6746       switch (constant_size (size_of_locs (AT_loc (a))))
6747         {
6748         case 1:
6749           return DW_FORM_block1;
6750         case 2:
6751           return DW_FORM_block2;
6752         default:
6753           gcc_unreachable ();
6754         }
6755     case dw_val_class_const:
6756       return DW_FORM_sdata;
6757     case dw_val_class_unsigned_const:
6758       switch (constant_size (AT_unsigned (a)))
6759         {
6760         case 1:
6761           return DW_FORM_data1;
6762         case 2:
6763           return DW_FORM_data2;
6764         case 4:
6765           return DW_FORM_data4;
6766         case 8:
6767           return DW_FORM_data8;
6768         default:
6769           gcc_unreachable ();
6770         }
6771     case dw_val_class_long_long:
6772       return DW_FORM_block1;
6773     case dw_val_class_vec:
6774       return DW_FORM_block1;
6775     case dw_val_class_flag:
6776       return DW_FORM_flag;
6777     case dw_val_class_die_ref:
6778       if (AT_ref_external (a))
6779         return DW_FORM_ref_addr;
6780       else
6781         return DW_FORM_ref;
6782     case dw_val_class_fde_ref:
6783       return DW_FORM_data;
6784     case dw_val_class_lbl_id:
6785       return DW_FORM_addr;
6786     case dw_val_class_lineptr:
6787     case dw_val_class_macptr:
6788       return DW_FORM_data;
6789     case dw_val_class_str:
6790       return AT_string_form (a);
6791
6792     default:
6793       gcc_unreachable ();
6794     }
6795 }
6796
6797 /* Output the encoding of an attribute value.  */
6798
6799 static void
6800 output_value_format (dw_attr_ref a)
6801 {
6802   enum dwarf_form form = value_format (a);
6803
6804   dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
6805 }
6806
6807 /* Output the .debug_abbrev section which defines the DIE abbreviation
6808    table.  */
6809
6810 static void
6811 output_abbrev_section (void)
6812 {
6813   unsigned long abbrev_id;
6814
6815   for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6816     {
6817       dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6818       unsigned ix;
6819       dw_attr_ref a_attr;
6820
6821       dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
6822       dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
6823                                    dwarf_tag_name (abbrev->die_tag));
6824
6825       if (abbrev->die_child != NULL)
6826         dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
6827       else
6828         dw2_asm_output_data (1, DW_children_no, "DW_children_no");
6829
6830       for (ix = 0; VEC_iterate (dw_attr_node, abbrev->die_attr, ix, a_attr);
6831            ix++)
6832         {
6833           dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
6834                                        dwarf_attr_name (a_attr->dw_attr));
6835           output_value_format (a_attr);
6836         }
6837
6838       dw2_asm_output_data (1, 0, NULL);
6839       dw2_asm_output_data (1, 0, NULL);
6840     }
6841
6842   /* Terminate the table.  */
6843   dw2_asm_output_data (1, 0, NULL);
6844 }
6845
6846 /* Output a symbol we can use to refer to this DIE from another CU.  */
6847
6848 static inline void
6849 output_die_symbol (dw_die_ref die)
6850 {
6851   char *sym = die->die_symbol;
6852
6853   if (sym == 0)
6854     return;
6855
6856   if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
6857     /* We make these global, not weak; if the target doesn't support
6858        .linkonce, it doesn't support combining the sections, so debugging
6859        will break.  */
6860     targetm.asm_out.globalize_label (asm_out_file, sym);
6861
6862   ASM_OUTPUT_LABEL (asm_out_file, sym);
6863 }
6864
6865 /* Return a new location list, given the begin and end range, and the
6866    expression. gensym tells us whether to generate a new internal symbol for
6867    this location list node, which is done for the head of the list only.  */
6868
6869 static inline dw_loc_list_ref
6870 new_loc_list (dw_loc_descr_ref expr, const char *begin, const char *end,
6871               const char *section, unsigned int gensym)
6872 {
6873   dw_loc_list_ref retlist = ggc_alloc_cleared (sizeof (dw_loc_list_node));
6874
6875   retlist->begin = begin;
6876   retlist->end = end;
6877   retlist->expr = expr;
6878   retlist->section = section;
6879   if (gensym)
6880     retlist->ll_symbol = gen_internal_sym ("LLST");
6881
6882   return retlist;
6883 }
6884
6885 /* Add a location description expression to a location list.  */
6886
6887 static inline void
6888 add_loc_descr_to_loc_list (dw_loc_list_ref *list_head, dw_loc_descr_ref descr,
6889                            const char *begin, const char *end,
6890                            const char *section)
6891 {
6892   dw_loc_list_ref *d;
6893
6894   /* Find the end of the chain.  */
6895   for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
6896     ;
6897
6898   /* Add a new location list node to the list.  */
6899   *d = new_loc_list (descr, begin, end, section, 0);
6900 }
6901
6902 static void
6903 dwarf2out_switch_text_section (void)
6904 {
6905   dw_fde_ref fde;
6906
6907   gcc_assert (cfun);
6908
6909   fde = &fde_table[fde_table_in_use - 1];
6910   fde->dw_fde_switched_sections = true;
6911   fde->dw_fde_hot_section_label = cfun->hot_section_label;
6912   fde->dw_fde_hot_section_end_label = cfun->hot_section_end_label;
6913   fde->dw_fde_unlikely_section_label = cfun->cold_section_label;
6914   fde->dw_fde_unlikely_section_end_label = cfun->cold_section_end_label;
6915   have_multiple_function_sections = true;
6916 }
6917
6918 /* Output the location list given to us.  */
6919
6920 static void
6921 output_loc_list (dw_loc_list_ref list_head)
6922 {
6923   dw_loc_list_ref curr = list_head;
6924
6925   ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
6926
6927   /* Walk the location list, and output each range + expression.  */
6928   for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
6929     {
6930       unsigned long size;
6931       if (!have_multiple_function_sections)
6932         {
6933           dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
6934                                 "Location list begin address (%s)",
6935                                 list_head->ll_symbol);
6936           dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
6937                                 "Location list end address (%s)",
6938                                 list_head->ll_symbol);
6939         }
6940       else
6941         {
6942           dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->begin,
6943                                "Location list begin address (%s)",
6944                                list_head->ll_symbol);
6945           dw2_asm_output_addr (DWARF2_ADDR_SIZE, curr->end,
6946                                "Location list end address (%s)",
6947                                list_head->ll_symbol);
6948         }
6949       size = size_of_locs (curr->expr);
6950
6951       /* Output the block length for this list of location operations.  */
6952       gcc_assert (size <= 0xffff);
6953       dw2_asm_output_data (2, size, "%s", "Location expression size");
6954
6955       output_loc_sequence (curr->expr);
6956     }
6957
6958   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
6959                        "Location list terminator begin (%s)",
6960                        list_head->ll_symbol);
6961   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0,
6962                        "Location list terminator end (%s)",
6963                        list_head->ll_symbol);
6964 }
6965
6966 /* Output the DIE and its attributes.  Called recursively to generate
6967    the definitions of each child DIE.  */
6968
6969 static void
6970 output_die (dw_die_ref die)
6971 {
6972   dw_attr_ref a;
6973   dw_die_ref c;
6974   unsigned long size;
6975   unsigned ix;
6976
6977   /* If someone in another CU might refer to us, set up a symbol for
6978      them to point to.  */
6979   if (die->die_symbol)
6980     output_die_symbol (die);
6981
6982   dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (0x%lx) %s)",
6983                                die->die_offset, dwarf_tag_name (die->die_tag));
6984
6985   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
6986     {
6987       const char *name = dwarf_attr_name (a->dw_attr);
6988
6989       switch (AT_class (a))
6990         {
6991         case dw_val_class_addr:
6992           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
6993           break;
6994
6995         case dw_val_class_offset:
6996           dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
6997                                "%s", name);
6998           break;
6999
7000         case dw_val_class_range_list:
7001           {
7002             char *p = strchr (ranges_section_label, '\0');
7003
7004             sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
7005                      a->dw_attr_val.v.val_offset);
7006             dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
7007                                    debug_ranges_section, "%s", name);
7008             *p = '\0';
7009           }
7010           break;
7011
7012         case dw_val_class_loc:
7013           size = size_of_locs (AT_loc (a));
7014
7015           /* Output the block length for this list of location operations.  */
7016           dw2_asm_output_data (constant_size (size), size, "%s", name);
7017
7018           output_loc_sequence (AT_loc (a));
7019           break;
7020
7021         case dw_val_class_const:
7022           /* ??? It would be slightly more efficient to use a scheme like is
7023              used for unsigned constants below, but gdb 4.x does not sign
7024              extend.  Gdb 5.x does sign extend.  */
7025           dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
7026           break;
7027
7028         case dw_val_class_unsigned_const:
7029           dw2_asm_output_data (constant_size (AT_unsigned (a)),
7030                                AT_unsigned (a), "%s", name);
7031           break;
7032
7033         case dw_val_class_long_long:
7034           {
7035             unsigned HOST_WIDE_INT first, second;
7036
7037             dw2_asm_output_data (1,
7038                                  2 * HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
7039                                  "%s", name);
7040
7041             if (WORDS_BIG_ENDIAN)
7042               {
7043                 first = a->dw_attr_val.v.val_long_long.hi;
7044                 second = a->dw_attr_val.v.val_long_long.low;
7045               }
7046             else
7047               {
7048                 first = a->dw_attr_val.v.val_long_long.low;
7049                 second = a->dw_attr_val.v.val_long_long.hi;
7050               }
7051
7052             dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
7053                                  first, "long long constant");
7054             dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
7055                                  second, NULL);
7056           }
7057           break;
7058
7059         case dw_val_class_vec:
7060           {
7061             unsigned int elt_size = a->dw_attr_val.v.val_vec.elt_size;
7062             unsigned int len = a->dw_attr_val.v.val_vec.length;
7063             unsigned int i;
7064             unsigned char *p;
7065
7066             dw2_asm_output_data (1, len * elt_size, "%s", name);
7067             if (elt_size > sizeof (HOST_WIDE_INT))
7068               {
7069                 elt_size /= 2;
7070                 len *= 2;
7071               }
7072             for (i = 0, p = a->dw_attr_val.v.val_vec.array;
7073                  i < len;
7074                  i++, p += elt_size)
7075               dw2_asm_output_data (elt_size, extract_int (p, elt_size),
7076                                    "fp or vector constant word %u", i);
7077             break;
7078           }
7079
7080         case dw_val_class_flag:
7081           dw2_asm_output_data (1, AT_flag (a), "%s", name);
7082           break;
7083
7084         case dw_val_class_loc_list:
7085           {
7086             char *sym = AT_loc_list (a)->ll_symbol;
7087
7088             gcc_assert (sym);
7089             dw2_asm_output_offset (DWARF_OFFSET_SIZE, sym, debug_loc_section,
7090                                    "%s", name);
7091           }
7092           break;
7093
7094         case dw_val_class_die_ref:
7095           if (AT_ref_external (a))
7096             {
7097               char *sym = AT_ref (a)->die_symbol;
7098
7099               gcc_assert (sym);
7100               dw2_asm_output_offset (DWARF2_ADDR_SIZE, sym, debug_info_section,
7101                                      "%s", name);
7102             }
7103           else
7104             {
7105               gcc_assert (AT_ref (a)->die_offset);
7106               dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
7107                                    "%s", name);
7108             }
7109           break;
7110
7111         case dw_val_class_fde_ref:
7112           {
7113             char l1[20];
7114
7115             ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
7116                                          a->dw_attr_val.v.val_fde_index * 2);
7117             dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, debug_frame_section,
7118                                    "%s", name);
7119           }
7120           break;
7121
7122         case dw_val_class_lbl_id:
7123           dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
7124           break;
7125
7126         case dw_val_class_lineptr:
7127           dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
7128                                  debug_line_section, "%s", name);
7129           break;
7130
7131         case dw_val_class_macptr:
7132           dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a),
7133                                  debug_macinfo_section, "%s", name);
7134           break;
7135
7136         case dw_val_class_str:
7137           if (AT_string_form (a) == DW_FORM_strp)
7138             dw2_asm_output_offset (DWARF_OFFSET_SIZE,
7139                                    a->dw_attr_val.v.val_str->label,
7140                                    debug_str_section,
7141                                    "%s: \"%s\"", name, AT_string (a));
7142           else
7143             dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
7144           break;
7145
7146         default:
7147           gcc_unreachable ();
7148         }
7149     }
7150
7151   for (c = die->die_child; c != NULL; c = c->die_sib)
7152     output_die (c);
7153
7154   /* Add null byte to terminate sibling list.  */
7155   if (die->die_child != NULL)
7156     dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
7157                          die->die_offset);
7158 }
7159
7160 /* Output the compilation unit that appears at the beginning of the
7161    .debug_info section, and precedes the DIE descriptions.  */
7162
7163 static void
7164 output_compilation_unit_header (void)
7165 {
7166   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7167     dw2_asm_output_data (4, 0xffffffff,
7168       "Initial length escape value indicating 64-bit DWARF extension");
7169   dw2_asm_output_data (DWARF_OFFSET_SIZE,
7170                        next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
7171                        "Length of Compilation Unit Info");
7172   dw2_asm_output_data (2, DWARF_VERSION, "DWARF version number");
7173   dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
7174                          debug_abbrev_section,
7175                          "Offset Into Abbrev. Section");
7176   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
7177 }
7178
7179 /* Output the compilation unit DIE and its children.  */
7180
7181 static void
7182 output_comp_unit (dw_die_ref die, int output_if_empty)
7183 {
7184   const char *secname;
7185   char *oldsym, *tmp;
7186
7187   /* Unless we are outputting main CU, we may throw away empty ones.  */
7188   if (!output_if_empty && die->die_child == NULL)
7189     return;
7190
7191   /* Even if there are no children of this DIE, we must output the information
7192      about the compilation unit.  Otherwise, on an empty translation unit, we
7193      will generate a present, but empty, .debug_info section.  IRIX 6.5 `nm'
7194      will then complain when examining the file.  First mark all the DIEs in
7195      this CU so we know which get local refs.  */
7196   mark_dies (die);
7197
7198   build_abbrev_table (die);
7199
7200   /* Initialize the beginning DIE offset - and calculate sizes/offsets.  */
7201   next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
7202   calc_die_sizes (die);
7203
7204   oldsym = die->die_symbol;
7205   if (oldsym)
7206     {
7207       tmp = alloca (strlen (oldsym) + 24);
7208
7209       sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
7210       secname = tmp;
7211       die->die_symbol = NULL;
7212       switch_to_section (get_section (secname, SECTION_DEBUG, NULL));
7213     }
7214   else
7215     switch_to_section (debug_info_section);
7216
7217   /* Output debugging information.  */
7218   output_compilation_unit_header ();
7219   output_die (die);
7220
7221   /* Leave the marks on the main CU, so we can check them in
7222      output_pubnames.  */
7223   if (oldsym)
7224     {
7225       unmark_dies (die);
7226       die->die_symbol = oldsym;
7227     }
7228 }
7229
7230 /* The DWARF2 pubname for a nested thingy looks like "A::f".  The
7231    output of lang_hooks.decl_printable_name for C++ looks like
7232    "A::f(int)".  Let's drop the argument list, and maybe the scope.  */
7233
7234 static const char *
7235 dwarf2_name (tree decl, int scope)
7236 {
7237   return lang_hooks.decl_printable_name (decl, scope ? 1 : 0);
7238 }
7239
7240 /* Add a new entry to .debug_pubnames if appropriate.  */
7241
7242 static void
7243 add_pubname (tree decl, dw_die_ref die)
7244 {
7245   pubname_ref p;
7246
7247   if (! TREE_PUBLIC (decl))
7248     return;
7249
7250   if (pubname_table_in_use == pubname_table_allocated)
7251     {
7252       pubname_table_allocated += PUBNAME_TABLE_INCREMENT;
7253       pubname_table
7254         = ggc_realloc (pubname_table,
7255                        (pubname_table_allocated * sizeof (pubname_entry)));
7256       memset (pubname_table + pubname_table_in_use, 0,
7257               PUBNAME_TABLE_INCREMENT * sizeof (pubname_entry));
7258     }
7259
7260   p = &pubname_table[pubname_table_in_use++];
7261   p->die = die;
7262   p->name = xstrdup (dwarf2_name (decl, 1));
7263 }
7264
7265 /* Output the public names table used to speed up access to externally
7266    visible names.  For now, only generate entries for externally
7267    visible procedures.  */
7268
7269 static void
7270 output_pubnames (void)
7271 {
7272   unsigned i;
7273   unsigned long pubnames_length = size_of_pubnames ();
7274
7275   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7276     dw2_asm_output_data (4, 0xffffffff,
7277       "Initial length escape value indicating 64-bit DWARF extension");
7278   dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
7279                        "Length of Public Names Info");
7280   dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7281   dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
7282                          debug_info_section,
7283                          "Offset of Compilation Unit Info");
7284   dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
7285                        "Compilation Unit Length");
7286
7287   for (i = 0; i < pubname_table_in_use; i++)
7288     {
7289       pubname_ref pub = &pubname_table[i];
7290
7291       /* We shouldn't see pubnames for DIEs outside of the main CU.  */
7292       gcc_assert (pub->die->die_mark);
7293
7294       dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
7295                            "DIE offset");
7296
7297       dw2_asm_output_nstring (pub->name, -1, "external name");
7298     }
7299
7300   dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
7301 }
7302
7303 /* Add a new entry to .debug_aranges if appropriate.  */
7304
7305 static void
7306 add_arange (tree decl, dw_die_ref die)
7307 {
7308   if (! DECL_SECTION_NAME (decl))
7309     return;
7310
7311   if (arange_table_in_use == arange_table_allocated)
7312     {
7313       arange_table_allocated += ARANGE_TABLE_INCREMENT;
7314       arange_table = ggc_realloc (arange_table,
7315                                   (arange_table_allocated
7316                                    * sizeof (dw_die_ref)));
7317       memset (arange_table + arange_table_in_use, 0,
7318               ARANGE_TABLE_INCREMENT * sizeof (dw_die_ref));
7319     }
7320
7321   arange_table[arange_table_in_use++] = die;
7322 }
7323
7324 /* Output the information that goes into the .debug_aranges table.
7325    Namely, define the beginning and ending address range of the
7326    text section generated for this compilation unit.  */
7327
7328 static void
7329 output_aranges (void)
7330 {
7331   unsigned i;
7332   unsigned long aranges_length = size_of_aranges ();
7333
7334   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7335     dw2_asm_output_data (4, 0xffffffff,
7336       "Initial length escape value indicating 64-bit DWARF extension");
7337   dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
7338                        "Length of Address Ranges Info");
7339   dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7340   dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
7341                          debug_info_section,
7342                          "Offset of Compilation Unit Info");
7343   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
7344   dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
7345
7346   /* We need to align to twice the pointer size here.  */
7347   if (DWARF_ARANGES_PAD_SIZE)
7348     {
7349       /* Pad using a 2 byte words so that padding is correct for any
7350          pointer size.  */
7351       dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
7352                            2 * DWARF2_ADDR_SIZE);
7353       for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
7354         dw2_asm_output_data (2, 0, NULL);
7355     }
7356
7357   dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
7358   dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
7359                         text_section_label, "Length");
7360   if (flag_reorder_blocks_and_partition)
7361     {
7362       dw2_asm_output_addr (DWARF2_ADDR_SIZE, cold_text_section_label, 
7363                            "Address");
7364       dw2_asm_output_delta (DWARF2_ADDR_SIZE, cold_end_label,
7365                             cold_text_section_label, "Length");
7366     }
7367
7368   for (i = 0; i < arange_table_in_use; i++)
7369     {
7370       dw_die_ref die = arange_table[i];
7371
7372       /* We shouldn't see aranges for DIEs outside of the main CU.  */
7373       gcc_assert (die->die_mark);
7374
7375       if (die->die_tag == DW_TAG_subprogram)
7376         {
7377           dw2_asm_output_addr (DWARF2_ADDR_SIZE, get_AT_low_pc (die),
7378                                "Address");
7379           dw2_asm_output_delta (DWARF2_ADDR_SIZE, get_AT_hi_pc (die),
7380                                 get_AT_low_pc (die), "Length");
7381         }
7382       else
7383         {
7384           /* A static variable; extract the symbol from DW_AT_location.
7385              Note that this code isn't currently hit, as we only emit
7386              aranges for functions (jason 9/23/99).  */
7387           dw_attr_ref a = get_AT (die, DW_AT_location);
7388           dw_loc_descr_ref loc;
7389
7390           gcc_assert (a && AT_class (a) == dw_val_class_loc);
7391
7392           loc = AT_loc (a);
7393           gcc_assert (loc->dw_loc_opc == DW_OP_addr);
7394
7395           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE,
7396                                    loc->dw_loc_oprnd1.v.val_addr, "Address");
7397           dw2_asm_output_data (DWARF2_ADDR_SIZE,
7398                                get_AT_unsigned (die, DW_AT_byte_size),
7399                                "Length");
7400         }
7401     }
7402
7403   /* Output the terminator words.  */
7404   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7405   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7406 }
7407
7408 /* Add a new entry to .debug_ranges.  Return the offset at which it
7409    was placed.  */
7410
7411 static unsigned int
7412 add_ranges (tree block)
7413 {
7414   unsigned int in_use = ranges_table_in_use;
7415
7416   if (in_use == ranges_table_allocated)
7417     {
7418       ranges_table_allocated += RANGES_TABLE_INCREMENT;
7419       ranges_table
7420         = ggc_realloc (ranges_table, (ranges_table_allocated
7421                                       * sizeof (struct dw_ranges_struct)));
7422       memset (ranges_table + ranges_table_in_use, 0,
7423               RANGES_TABLE_INCREMENT * sizeof (struct dw_ranges_struct));
7424     }
7425
7426   ranges_table[in_use].block_num = (block ? BLOCK_NUMBER (block) : 0);
7427   ranges_table_in_use = in_use + 1;
7428
7429   return in_use * 2 * DWARF2_ADDR_SIZE;
7430 }
7431
7432 static void
7433 output_ranges (void)
7434 {
7435   unsigned i;
7436   static const char *const start_fmt = "Offset 0x%x";
7437   const char *fmt = start_fmt;
7438
7439   for (i = 0; i < ranges_table_in_use; i++)
7440     {
7441       int block_num = ranges_table[i].block_num;
7442
7443       if (block_num)
7444         {
7445           char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
7446           char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
7447
7448           ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
7449           ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
7450
7451           /* If all code is in the text section, then the compilation
7452              unit base address defaults to DW_AT_low_pc, which is the
7453              base of the text section.  */
7454           if (!have_multiple_function_sections)
7455             {
7456               dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
7457                                     text_section_label,
7458                                     fmt, i * 2 * DWARF2_ADDR_SIZE);
7459               dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
7460                                     text_section_label, NULL);
7461             }
7462
7463           /* Otherwise, we add a DW_AT_entry_pc attribute to force the
7464              compilation unit base address to zero, which allows us to
7465              use absolute addresses, and not worry about whether the
7466              target supports cross-section arithmetic.  */
7467           else
7468             {
7469               dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
7470                                    fmt, i * 2 * DWARF2_ADDR_SIZE);
7471               dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
7472             }
7473
7474           fmt = NULL;
7475         }
7476       else
7477         {
7478           dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7479           dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7480           fmt = start_fmt;
7481         }
7482     }
7483 }
7484
7485 /* Data structure containing information about input files.  */
7486 struct file_info
7487 {
7488   char *path;           /* Complete file name.  */
7489   char *fname;          /* File name part.  */
7490   int length;           /* Length of entire string.  */
7491   int file_idx;         /* Index in input file table.  */
7492   int dir_idx;          /* Index in directory table.  */
7493 };
7494
7495 /* Data structure containing information about directories with source
7496    files.  */
7497 struct dir_info
7498 {
7499   char *path;           /* Path including directory name.  */
7500   int length;           /* Path length.  */
7501   int prefix;           /* Index of directory entry which is a prefix.  */
7502   int count;            /* Number of files in this directory.  */
7503   int dir_idx;          /* Index of directory used as base.  */
7504   int used;             /* Used in the end?  */
7505 };
7506
7507 /* Callback function for file_info comparison.  We sort by looking at
7508    the directories in the path.  */
7509
7510 static int
7511 file_info_cmp (const void *p1, const void *p2)
7512 {
7513   const struct file_info *s1 = p1;
7514   const struct file_info *s2 = p2;
7515   unsigned char *cp1;
7516   unsigned char *cp2;
7517
7518   /* Take care of file names without directories.  We need to make sure that
7519      we return consistent values to qsort since some will get confused if
7520      we return the same value when identical operands are passed in opposite
7521      orders.  So if neither has a directory, return 0 and otherwise return
7522      1 or -1 depending on which one has the directory.  */
7523   if ((s1->path == s1->fname || s2->path == s2->fname))
7524     return (s2->path == s2->fname) - (s1->path == s1->fname);
7525
7526   cp1 = (unsigned char *) s1->path;
7527   cp2 = (unsigned char *) s2->path;
7528
7529   while (1)
7530     {
7531       ++cp1;
7532       ++cp2;
7533       /* Reached the end of the first path?  If so, handle like above.  */
7534       if ((cp1 == (unsigned char *) s1->fname)
7535           || (cp2 == (unsigned char *) s2->fname))
7536         return ((cp2 == (unsigned char *) s2->fname)
7537                 - (cp1 == (unsigned char *) s1->fname));
7538
7539       /* Character of current path component the same?  */
7540       else if (*cp1 != *cp2)
7541         return *cp1 - *cp2;
7542     }
7543 }
7544
7545 /* Output the directory table and the file name table.  We try to minimize
7546    the total amount of memory needed.  A heuristic is used to avoid large
7547    slowdowns with many input files.  */
7548
7549 static void
7550 output_file_names (void)
7551 {
7552   struct file_info *files;
7553   struct dir_info *dirs;
7554   int *saved;
7555   int *savehere;
7556   int *backmap;
7557   size_t ndirs;
7558   int idx_offset;
7559   size_t i;
7560   int idx;
7561
7562   /* Handle the case where file_table is empty.  */
7563   if (VARRAY_ACTIVE_SIZE (file_table) <= 1)
7564     {
7565       dw2_asm_output_data (1, 0, "End directory table");
7566       dw2_asm_output_data (1, 0, "End file name table");
7567       return;
7568     }
7569
7570   /* Allocate the various arrays we need.  */
7571   files = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct file_info));
7572   dirs = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct dir_info));
7573
7574   /* Sort the file names.  */
7575   for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7576     {
7577       char *f;
7578
7579       /* Skip all leading "./".  */
7580       f = VARRAY_CHAR_PTR (file_table, i);
7581       while (f[0] == '.' && f[1] == '/')
7582         f += 2;
7583
7584       /* Create a new array entry.  */
7585       files[i].path = f;
7586       files[i].length = strlen (f);
7587       files[i].file_idx = i;
7588
7589       /* Search for the file name part.  */
7590       f = strrchr (f, '/');
7591       files[i].fname = f == NULL ? files[i].path : f + 1;
7592     }
7593
7594   qsort (files + 1, VARRAY_ACTIVE_SIZE (file_table) - 1,
7595          sizeof (files[0]), file_info_cmp);
7596
7597   /* Find all the different directories used.  */
7598   dirs[0].path = files[1].path;
7599   dirs[0].length = files[1].fname - files[1].path;
7600   dirs[0].prefix = -1;
7601   dirs[0].count = 1;
7602   dirs[0].dir_idx = 0;
7603   dirs[0].used = 0;
7604   files[1].dir_idx = 0;
7605   ndirs = 1;
7606
7607   for (i = 2; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7608     if (files[i].fname - files[i].path == dirs[ndirs - 1].length
7609         && memcmp (dirs[ndirs - 1].path, files[i].path,
7610                    dirs[ndirs - 1].length) == 0)
7611       {
7612         /* Same directory as last entry.  */
7613         files[i].dir_idx = ndirs - 1;
7614         ++dirs[ndirs - 1].count;
7615       }
7616     else
7617       {
7618         size_t j;
7619
7620         /* This is a new directory.  */
7621         dirs[ndirs].path = files[i].path;
7622         dirs[ndirs].length = files[i].fname - files[i].path;
7623         dirs[ndirs].count = 1;
7624         dirs[ndirs].dir_idx = ndirs;
7625         dirs[ndirs].used = 0;
7626         files[i].dir_idx = ndirs;
7627
7628         /* Search for a prefix.  */
7629         dirs[ndirs].prefix = -1;
7630         for (j = 0; j < ndirs; j++)
7631           if (dirs[j].length < dirs[ndirs].length
7632               && dirs[j].length > 1
7633               && (dirs[ndirs].prefix == -1
7634                   || dirs[j].length > dirs[dirs[ndirs].prefix].length)
7635               && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
7636             dirs[ndirs].prefix = j;
7637
7638         ++ndirs;
7639       }
7640
7641   /* Now to the actual work.  We have to find a subset of the directories which
7642      allow expressing the file name using references to the directory table
7643      with the least amount of characters.  We do not do an exhaustive search
7644      where we would have to check out every combination of every single
7645      possible prefix.  Instead we use a heuristic which provides nearly optimal
7646      results in most cases and never is much off.  */
7647   saved = alloca (ndirs * sizeof (int));
7648   savehere = alloca (ndirs * sizeof (int));
7649
7650   memset (saved, '\0', ndirs * sizeof (saved[0]));
7651   for (i = 0; i < ndirs; i++)
7652     {
7653       size_t j;
7654       int total;
7655
7656       /* We can always save some space for the current directory.  But this
7657          does not mean it will be enough to justify adding the directory.  */
7658       savehere[i] = dirs[i].length;
7659       total = (savehere[i] - saved[i]) * dirs[i].count;
7660
7661       for (j = i + 1; j < ndirs; j++)
7662         {
7663           savehere[j] = 0;
7664           if (saved[j] < dirs[i].length)
7665             {
7666               /* Determine whether the dirs[i] path is a prefix of the
7667                  dirs[j] path.  */
7668               int k;
7669
7670               k = dirs[j].prefix;
7671               while (k != -1 && k != (int) i)
7672                 k = dirs[k].prefix;
7673
7674               if (k == (int) i)
7675                 {
7676                   /* Yes it is.  We can possibly safe some memory but
7677                      writing the filenames in dirs[j] relative to
7678                      dirs[i].  */
7679                   savehere[j] = dirs[i].length;
7680                   total += (savehere[j] - saved[j]) * dirs[j].count;
7681                 }
7682             }
7683         }
7684
7685       /* Check whether we can safe enough to justify adding the dirs[i]
7686          directory.  */
7687       if (total > dirs[i].length + 1)
7688         {
7689           /* It's worthwhile adding.  */
7690           for (j = i; j < ndirs; j++)
7691             if (savehere[j] > 0)
7692               {
7693                 /* Remember how much we saved for this directory so far.  */
7694                 saved[j] = savehere[j];
7695
7696                 /* Remember the prefix directory.  */
7697                 dirs[j].dir_idx = i;
7698               }
7699         }
7700     }
7701
7702   /* We have to emit them in the order they appear in the file_table array
7703      since the index is used in the debug info generation.  To do this
7704      efficiently we generate a back-mapping of the indices first.  */
7705   backmap = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (int));
7706   for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7707     {
7708       backmap[files[i].file_idx] = i;
7709
7710       /* Mark this directory as used.  */
7711       dirs[dirs[files[i].dir_idx].dir_idx].used = 1;
7712     }
7713
7714   /* That was it.  We are ready to emit the information.  First emit the
7715      directory name table.  We have to make sure the first actually emitted
7716      directory name has index one; zero is reserved for the current working
7717      directory.  Make sure we do not confuse these indices with the one for the
7718      constructed table (even though most of the time they are identical).  */
7719   idx = 1;
7720   idx_offset = dirs[0].length > 0 ? 1 : 0;
7721   for (i = 1 - idx_offset; i < ndirs; i++)
7722     if (dirs[i].used != 0)
7723       {
7724         dirs[i].used = idx++;
7725         dw2_asm_output_nstring (dirs[i].path, dirs[i].length - 1,
7726                                 "Directory Entry: 0x%x", dirs[i].used);
7727       }
7728
7729   dw2_asm_output_data (1, 0, "End directory table");
7730
7731   /* Correct the index for the current working directory entry if it
7732      exists.  */
7733   if (idx_offset == 0)
7734     dirs[0].used = 0;
7735
7736   /* Now write all the file names.  */
7737   for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7738     {
7739       int file_idx = backmap[i];
7740       int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
7741
7742       dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
7743                               "File Entry: 0x%lx", (unsigned long) i);
7744
7745       /* Include directory index.  */
7746       dw2_asm_output_data_uleb128 (dirs[dir_idx].used, NULL);
7747
7748       /* Modification time.  */
7749       dw2_asm_output_data_uleb128 (0, NULL);
7750
7751       /* File length in bytes.  */
7752       dw2_asm_output_data_uleb128 (0, NULL);
7753     }
7754
7755   dw2_asm_output_data (1, 0, "End file name table");
7756 }
7757
7758
7759 /* Output the source line number correspondence information.  This
7760    information goes into the .debug_line section.  */
7761
7762 static void
7763 output_line_info (void)
7764 {
7765   char l1[20], l2[20], p1[20], p2[20];
7766   char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7767   char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7768   unsigned opc;
7769   unsigned n_op_args;
7770   unsigned long lt_index;
7771   unsigned long current_line;
7772   long line_offset;
7773   long line_delta;
7774   unsigned long current_file;
7775   unsigned long function;
7776
7777   ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
7778   ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
7779   ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
7780   ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
7781
7782   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7783     dw2_asm_output_data (4, 0xffffffff,
7784       "Initial length escape value indicating 64-bit DWARF extension");
7785   dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
7786                         "Length of Source Line Info");
7787   ASM_OUTPUT_LABEL (asm_out_file, l1);
7788
7789   dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7790   dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
7791   ASM_OUTPUT_LABEL (asm_out_file, p1);
7792
7793   /* Define the architecture-dependent minimum instruction length (in
7794    bytes).  In this implementation of DWARF, this field is used for
7795    information purposes only.  Since GCC generates assembly language,
7796    we have no a priori knowledge of how many instruction bytes are
7797    generated for each source line, and therefore can use only the
7798    DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
7799    commands.  Accordingly, we fix this as `1', which is "correct
7800    enough" for all architectures, and don't let the target override.  */
7801   dw2_asm_output_data (1, 1,
7802                        "Minimum Instruction Length");
7803
7804   dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
7805                        "Default is_stmt_start flag");
7806   dw2_asm_output_data (1, DWARF_LINE_BASE,
7807                        "Line Base Value (Special Opcodes)");
7808   dw2_asm_output_data (1, DWARF_LINE_RANGE,
7809                        "Line Range Value (Special Opcodes)");
7810   dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
7811                        "Special Opcode Base");
7812
7813   for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
7814     {
7815       switch (opc)
7816         {
7817         case DW_LNS_advance_pc:
7818         case DW_LNS_advance_line:
7819         case DW_LNS_set_file:
7820         case DW_LNS_set_column:
7821         case DW_LNS_fixed_advance_pc:
7822           n_op_args = 1;
7823           break;
7824         default:
7825           n_op_args = 0;
7826           break;
7827         }
7828
7829       dw2_asm_output_data (1, n_op_args, "opcode: 0x%x has %d args",
7830                            opc, n_op_args);
7831     }
7832
7833   /* Write out the information about the files we use.  */
7834   output_file_names ();
7835   ASM_OUTPUT_LABEL (asm_out_file, p2);
7836
7837   /* We used to set the address register to the first location in the text
7838      section here, but that didn't accomplish anything since we already
7839      have a line note for the opening brace of the first function.  */
7840
7841   /* Generate the line number to PC correspondence table, encoded as
7842      a series of state machine operations.  */
7843   current_file = 1;
7844   current_line = 1;
7845
7846   if (cfun && in_cold_section_p)
7847     strcpy (prev_line_label, cfun->cold_section_label);
7848   else
7849     strcpy (prev_line_label, text_section_label);
7850   for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
7851     {
7852       dw_line_info_ref line_info = &line_info_table[lt_index];
7853
7854 #if 0
7855       /* Disable this optimization for now; GDB wants to see two line notes
7856          at the beginning of a function so it can find the end of the
7857          prologue.  */
7858
7859       /* Don't emit anything for redundant notes.  Just updating the
7860          address doesn't accomplish anything, because we already assume
7861          that anything after the last address is this line.  */
7862       if (line_info->dw_line_num == current_line
7863           && line_info->dw_file_num == current_file)
7864         continue;
7865 #endif
7866
7867       /* Emit debug info for the address of the current line.
7868
7869          Unfortunately, we have little choice here currently, and must always
7870          use the most general form.  GCC does not know the address delta
7871          itself, so we can't use DW_LNS_advance_pc.  Many ports do have length
7872          attributes which will give an upper bound on the address range.  We
7873          could perhaps use length attributes to determine when it is safe to
7874          use DW_LNS_fixed_advance_pc.  */
7875
7876       ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
7877       if (0)
7878         {
7879           /* This can handle deltas up to 0xffff.  This takes 3 bytes.  */
7880           dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7881                                "DW_LNS_fixed_advance_pc");
7882           dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7883         }
7884       else
7885         {
7886           /* This can handle any delta.  This takes
7887              4+DWARF2_ADDR_SIZE bytes.  */
7888           dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7889           dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7890           dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7891           dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7892         }
7893
7894       strcpy (prev_line_label, line_label);
7895
7896       /* Emit debug info for the source file of the current line, if
7897          different from the previous line.  */
7898       if (line_info->dw_file_num != current_file)
7899         {
7900           current_file = line_info->dw_file_num;
7901           dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7902           dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7903                                        VARRAY_CHAR_PTR (file_table,
7904                                                         current_file));
7905         }
7906
7907       /* Emit debug info for the current line number, choosing the encoding
7908          that uses the least amount of space.  */
7909       if (line_info->dw_line_num != current_line)
7910         {
7911           line_offset = line_info->dw_line_num - current_line;
7912           line_delta = line_offset - DWARF_LINE_BASE;
7913           current_line = line_info->dw_line_num;
7914           if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7915             /* This can handle deltas from -10 to 234, using the current
7916                definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE.  This
7917                takes 1 byte.  */
7918             dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7919                                  "line %lu", current_line);
7920           else
7921             {
7922               /* This can handle any delta.  This takes at least 4 bytes,
7923                  depending on the value being encoded.  */
7924               dw2_asm_output_data (1, DW_LNS_advance_line,
7925                                    "advance to line %lu", current_line);
7926               dw2_asm_output_data_sleb128 (line_offset, NULL);
7927               dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7928             }
7929         }
7930       else
7931         /* We still need to start a new row, so output a copy insn.  */
7932         dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7933     }
7934
7935   /* Emit debug info for the address of the end of the function.  */
7936   if (0)
7937     {
7938       dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7939                            "DW_LNS_fixed_advance_pc");
7940       dw2_asm_output_delta (2, text_end_label, prev_line_label, NULL);
7941     }
7942   else
7943     {
7944       dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7945       dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7946       dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7947       dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_end_label, NULL);
7948     }
7949
7950   dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7951   dw2_asm_output_data_uleb128 (1, NULL);
7952   dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7953
7954   function = 0;
7955   current_file = 1;
7956   current_line = 1;
7957   for (lt_index = 0; lt_index < separate_line_info_table_in_use;)
7958     {
7959       dw_separate_line_info_ref line_info
7960         = &separate_line_info_table[lt_index];
7961
7962 #if 0
7963       /* Don't emit anything for redundant notes.  */
7964       if (line_info->dw_line_num == current_line
7965           && line_info->dw_file_num == current_file
7966           && line_info->function == function)
7967         goto cont;
7968 #endif
7969
7970       /* Emit debug info for the address of the current line.  If this is
7971          a new function, or the first line of a function, then we need
7972          to handle it differently.  */
7973       ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
7974                                    lt_index);
7975       if (function != line_info->function)
7976         {
7977           function = line_info->function;
7978
7979           /* Set the address register to the first line in the function.  */
7980           dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7981           dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7982           dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7983           dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7984         }
7985       else
7986         {
7987           /* ??? See the DW_LNS_advance_pc comment above.  */
7988           if (0)
7989             {
7990               dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7991                                    "DW_LNS_fixed_advance_pc");
7992               dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7993             }
7994           else
7995             {
7996               dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7997               dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7998               dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7999               dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
8000             }
8001         }
8002
8003       strcpy (prev_line_label, line_label);
8004
8005       /* Emit debug info for the source file of the current line, if
8006          different from the previous line.  */
8007       if (line_info->dw_file_num != current_file)
8008         {
8009           current_file = line_info->dw_file_num;
8010           dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
8011           dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
8012                                        VARRAY_CHAR_PTR (file_table,
8013                                                         current_file));
8014         }
8015
8016       /* Emit debug info for the current line number, choosing the encoding
8017          that uses the least amount of space.  */
8018       if (line_info->dw_line_num != current_line)
8019         {
8020           line_offset = line_info->dw_line_num - current_line;
8021           line_delta = line_offset - DWARF_LINE_BASE;
8022           current_line = line_info->dw_line_num;
8023           if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
8024             dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
8025                                  "line %lu", current_line);
8026           else
8027             {
8028               dw2_asm_output_data (1, DW_LNS_advance_line,
8029                                    "advance to line %lu", current_line);
8030               dw2_asm_output_data_sleb128 (line_offset, NULL);
8031               dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
8032             }
8033         }
8034       else
8035         dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
8036
8037 #if 0
8038     cont:
8039 #endif
8040
8041       lt_index++;
8042
8043       /* If we're done with a function, end its sequence.  */
8044       if (lt_index == separate_line_info_table_in_use
8045           || separate_line_info_table[lt_index].function != function)
8046         {
8047           current_file = 1;
8048           current_line = 1;
8049
8050           /* Emit debug info for the address of the end of the function.  */
8051           ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
8052           if (0)
8053             {
8054               dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
8055                                    "DW_LNS_fixed_advance_pc");
8056               dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
8057             }
8058           else
8059             {
8060               dw2_asm_output_data (1, 0, "DW_LNE_set_address");
8061               dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
8062               dw2_asm_output_data (1, DW_LNE_set_address, NULL);
8063               dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
8064             }
8065
8066           /* Output the marker for the end of this sequence.  */
8067           dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
8068           dw2_asm_output_data_uleb128 (1, NULL);
8069           dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
8070         }
8071     }
8072
8073   /* Output the marker for the end of the line number info.  */
8074   ASM_OUTPUT_LABEL (asm_out_file, l2);
8075 }
8076 \f
8077 /* Given a pointer to a tree node for some base type, return a pointer to
8078    a DIE that describes the given type.
8079
8080    This routine must only be called for GCC type nodes that correspond to
8081    Dwarf base (fundamental) types.  */
8082
8083 static dw_die_ref
8084 base_type_die (tree type)
8085 {
8086   dw_die_ref base_type_result;
8087   enum dwarf_type encoding;
8088
8089   if (TREE_CODE (type) == ERROR_MARK || TREE_CODE (type) == VOID_TYPE)
8090     return 0;
8091
8092   switch (TREE_CODE (type))
8093     {
8094     case INTEGER_TYPE:
8095       if (TYPE_STRING_FLAG (type))
8096         {
8097           if (TYPE_UNSIGNED (type))
8098             encoding = DW_ATE_unsigned_char;
8099           else
8100             encoding = DW_ATE_signed_char;
8101         }
8102       else if (TYPE_UNSIGNED (type))
8103         encoding = DW_ATE_unsigned;
8104       else
8105         encoding = DW_ATE_signed;
8106       break;
8107
8108     case REAL_TYPE:
8109       if (DECIMAL_FLOAT_MODE_P (TYPE_MODE (type)))
8110         encoding = DW_ATE_decimal_float;
8111       else
8112         encoding = DW_ATE_float;
8113       break;
8114
8115       /* Dwarf2 doesn't know anything about complex ints, so use
8116          a user defined type for it.  */
8117     case COMPLEX_TYPE:
8118       if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
8119         encoding = DW_ATE_complex_float;
8120       else
8121         encoding = DW_ATE_lo_user;
8122       break;
8123
8124     case BOOLEAN_TYPE:
8125       /* GNU FORTRAN/Ada/C++ BOOLEAN type.  */
8126       encoding = DW_ATE_boolean;
8127       break;
8128
8129     default:
8130       /* No other TREE_CODEs are Dwarf fundamental types.  */
8131       gcc_unreachable ();
8132     }
8133
8134   base_type_result = new_die (DW_TAG_base_type, comp_unit_die, type);
8135
8136   /* This probably indicates a bug.  */
8137   if (! TYPE_NAME (type))
8138     add_name_attribute (base_type_result, "__unknown__");
8139
8140   add_AT_unsigned (base_type_result, DW_AT_byte_size,
8141                    int_size_in_bytes (type));
8142   add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
8143
8144   return base_type_result;
8145 }
8146
8147 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
8148    the Dwarf "root" type for the given input type.  The Dwarf "root" type of
8149    a given type is generally the same as the given type, except that if the
8150    given type is a pointer or reference type, then the root type of the given
8151    type is the root type of the "basis" type for the pointer or reference
8152    type.  (This definition of the "root" type is recursive.) Also, the root
8153    type of a `const' qualified type or a `volatile' qualified type is the
8154    root type of the given type without the qualifiers.  */
8155
8156 static tree
8157 root_type (tree type)
8158 {
8159   if (TREE_CODE (type) == ERROR_MARK)
8160     return error_mark_node;
8161
8162   switch (TREE_CODE (type))
8163     {
8164     case ERROR_MARK:
8165       return error_mark_node;
8166
8167     case POINTER_TYPE:
8168     case REFERENCE_TYPE:
8169       return type_main_variant (root_type (TREE_TYPE (type)));
8170
8171     default:
8172       return type_main_variant (type);
8173     }
8174 }
8175
8176 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
8177    given input type is a Dwarf "fundamental" type.  Otherwise return null.  */
8178
8179 static inline int
8180 is_base_type (tree type)
8181 {
8182   switch (TREE_CODE (type))
8183     {
8184     case ERROR_MARK:
8185     case VOID_TYPE:
8186     case INTEGER_TYPE:
8187     case REAL_TYPE:
8188     case COMPLEX_TYPE:
8189     case BOOLEAN_TYPE:
8190       return 1;
8191
8192     case ARRAY_TYPE:
8193     case RECORD_TYPE:
8194     case UNION_TYPE:
8195     case QUAL_UNION_TYPE:
8196     case ENUMERAL_TYPE:
8197     case FUNCTION_TYPE:
8198     case METHOD_TYPE:
8199     case POINTER_TYPE:
8200     case REFERENCE_TYPE:
8201     case OFFSET_TYPE:
8202     case LANG_TYPE:
8203     case VECTOR_TYPE:
8204       return 0;
8205
8206     default:
8207       gcc_unreachable ();
8208     }
8209
8210   return 0;
8211 }
8212
8213 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
8214    node, return the size in bits for the type if it is a constant, or else
8215    return the alignment for the type if the type's size is not constant, or
8216    else return BITS_PER_WORD if the type actually turns out to be an
8217    ERROR_MARK node.  */
8218
8219 static inline unsigned HOST_WIDE_INT
8220 simple_type_size_in_bits (tree type)
8221 {
8222   if (TREE_CODE (type) == ERROR_MARK)
8223     return BITS_PER_WORD;
8224   else if (TYPE_SIZE (type) == NULL_TREE)
8225     return 0;
8226   else if (host_integerp (TYPE_SIZE (type), 1))
8227     return tree_low_cst (TYPE_SIZE (type), 1);
8228   else
8229     return TYPE_ALIGN (type);
8230 }
8231
8232 /* Return true if the debug information for the given type should be
8233    emitted as a subrange type.  */
8234
8235 static inline bool
8236 is_subrange_type (tree type)
8237 {
8238   tree subtype = TREE_TYPE (type);
8239
8240   /* Subrange types are identified by the fact that they are integer
8241      types, and that they have a subtype which is either an integer type
8242      or an enumeral type.  */
8243
8244   if (TREE_CODE (type) != INTEGER_TYPE
8245       || subtype == NULL_TREE)
8246     return false;
8247
8248   if (TREE_CODE (subtype) != INTEGER_TYPE
8249       && TREE_CODE (subtype) != ENUMERAL_TYPE)
8250     return false;
8251
8252   if (TREE_CODE (type) == TREE_CODE (subtype)
8253       && int_size_in_bytes (type) == int_size_in_bytes (subtype)
8254       && TYPE_MIN_VALUE (type) != NULL
8255       && TYPE_MIN_VALUE (subtype) != NULL
8256       && tree_int_cst_equal (TYPE_MIN_VALUE (type), TYPE_MIN_VALUE (subtype))
8257       && TYPE_MAX_VALUE (type) != NULL
8258       && TYPE_MAX_VALUE (subtype) != NULL
8259       && tree_int_cst_equal (TYPE_MAX_VALUE (type), TYPE_MAX_VALUE (subtype)))
8260     {
8261       /* The type and its subtype have the same representation.  If in
8262          addition the two types also have the same name, then the given
8263          type is not a subrange type, but rather a plain base type.  */
8264       /* FIXME: brobecker/2004-03-22:
8265          Sizetype INTEGER_CSTs nodes are canonicalized.  It should
8266          therefore be sufficient to check the TYPE_SIZE node pointers
8267          rather than checking the actual size.  Unfortunately, we have
8268          found some cases, such as in the Ada "integer" type, where
8269          this is not the case.  Until this problem is solved, we need to
8270          keep checking the actual size.  */
8271       tree type_name = TYPE_NAME (type);
8272       tree subtype_name = TYPE_NAME (subtype);
8273
8274       if (type_name != NULL && TREE_CODE (type_name) == TYPE_DECL)
8275         type_name = DECL_NAME (type_name);
8276
8277       if (subtype_name != NULL && TREE_CODE (subtype_name) == TYPE_DECL)
8278         subtype_name = DECL_NAME (subtype_name);
8279
8280       if (type_name == subtype_name)
8281         return false;
8282     }
8283
8284   return true;
8285 }
8286
8287 /*  Given a pointer to a tree node for a subrange type, return a pointer
8288     to a DIE that describes the given type.  */
8289
8290 static dw_die_ref
8291 subrange_type_die (tree type, dw_die_ref context_die)
8292 {
8293   dw_die_ref subrange_die;
8294   const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
8295
8296   if (context_die == NULL)
8297     context_die = comp_unit_die;
8298
8299   subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
8300
8301   if (int_size_in_bytes (TREE_TYPE (type)) != size_in_bytes)
8302     {
8303       /* The size of the subrange type and its base type do not match,
8304          so we need to generate a size attribute for the subrange type.  */
8305       add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
8306     }
8307
8308   if (TYPE_MIN_VALUE (type) != NULL)
8309     add_bound_info (subrange_die, DW_AT_lower_bound,
8310                     TYPE_MIN_VALUE (type));
8311   if (TYPE_MAX_VALUE (type) != NULL)
8312     add_bound_info (subrange_die, DW_AT_upper_bound,
8313                     TYPE_MAX_VALUE (type));
8314
8315   return subrange_die;
8316 }
8317
8318 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
8319    entry that chains various modifiers in front of the given type.  */
8320
8321 static dw_die_ref
8322 modified_type_die (tree type, int is_const_type, int is_volatile_type,
8323                    dw_die_ref context_die)
8324 {
8325   enum tree_code code = TREE_CODE (type);
8326   dw_die_ref mod_type_die;
8327   dw_die_ref sub_die = NULL;
8328   tree item_type = NULL;
8329   tree qualified_type;
8330   tree name;
8331
8332   if (code == ERROR_MARK)
8333     return NULL;
8334
8335   /* See if we already have the appropriately qualified variant of
8336      this type.  */
8337   qualified_type
8338     = get_qualified_type (type,
8339                           ((is_const_type ? TYPE_QUAL_CONST : 0)
8340                            | (is_volatile_type ? TYPE_QUAL_VOLATILE : 0)));
8341   
8342   /* If we do, then we can just use its DIE, if it exists.  */
8343   if (qualified_type)
8344     {
8345       mod_type_die = lookup_type_die (qualified_type);
8346       if (mod_type_die)
8347         return mod_type_die;
8348     }
8349   
8350   name = qualified_type ? TYPE_NAME (qualified_type) : NULL;
8351   
8352   /* Handle C typedef types.  */
8353   if (name && TREE_CODE (name) == TYPE_DECL && DECL_ORIGINAL_TYPE (name))
8354     {
8355       tree dtype = TREE_TYPE (name);
8356       
8357       if (qualified_type == dtype)
8358         {
8359           /* For a named type, use the typedef.  */
8360           gen_type_die (qualified_type, context_die);
8361           return lookup_type_die (qualified_type);
8362         }
8363       else if (DECL_ORIGINAL_TYPE (name)
8364                && (is_const_type < TYPE_READONLY (dtype)
8365                    || is_volatile_type < TYPE_VOLATILE (dtype)))
8366         /* cv-unqualified version of named type.  Just use the unnamed
8367            type to which it refers.  */
8368         return modified_type_die (DECL_ORIGINAL_TYPE (name),
8369                                   is_const_type, is_volatile_type,
8370                                   context_die);
8371       /* Else cv-qualified version of named type; fall through.  */
8372     }
8373   
8374   if (is_const_type)
8375     {
8376       mod_type_die = new_die (DW_TAG_const_type, comp_unit_die, type);
8377       sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
8378     }
8379   else if (is_volatile_type)
8380     {
8381       mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die, type);
8382       sub_die = modified_type_die (type, 0, 0, context_die);
8383     }
8384   else if (code == POINTER_TYPE)
8385     {
8386       mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die, type);
8387       add_AT_unsigned (mod_type_die, DW_AT_byte_size,
8388                        simple_type_size_in_bits (type) / BITS_PER_UNIT);
8389       item_type = TREE_TYPE (type);
8390     }
8391   else if (code == REFERENCE_TYPE)
8392     {
8393       mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die, type);
8394       add_AT_unsigned (mod_type_die, DW_AT_byte_size,
8395                        simple_type_size_in_bits (type) / BITS_PER_UNIT);
8396       item_type = TREE_TYPE (type);
8397     }
8398   else if (is_subrange_type (type))
8399     {
8400       mod_type_die = subrange_type_die (type, context_die);
8401       item_type = TREE_TYPE (type);
8402     }
8403   else if (is_base_type (type))
8404     mod_type_die = base_type_die (type);
8405   else
8406     {
8407       gen_type_die (type, context_die);
8408       
8409       /* We have to get the type_main_variant here (and pass that to the
8410          `lookup_type_die' routine) because the ..._TYPE node we have
8411          might simply be a *copy* of some original type node (where the
8412          copy was created to help us keep track of typedef names) and
8413          that copy might have a different TYPE_UID from the original
8414          ..._TYPE node.  */
8415       if (TREE_CODE (type) != VECTOR_TYPE)
8416         return lookup_type_die (type_main_variant (type));
8417       else
8418         /* Vectors have the debugging information in the type,
8419            not the main variant.  */
8420         return lookup_type_die (type);
8421     }
8422   
8423   /* Builtin types don't have a DECL_ORIGINAL_TYPE.  For those,
8424      don't output a DW_TAG_typedef, since there isn't one in the
8425      user's program; just attach a DW_AT_name to the type.  */
8426   if (name
8427       && (TREE_CODE (name) != TYPE_DECL || TREE_TYPE (name) == qualified_type))
8428     {
8429       if (TREE_CODE (name) == TYPE_DECL)
8430         /* Could just call add_name_and_src_coords_attributes here,
8431            but since this is a builtin type it doesn't have any
8432            useful source coordinates anyway.  */
8433         name = DECL_NAME (name);
8434       add_name_attribute (mod_type_die, IDENTIFIER_POINTER (name));
8435     }
8436   
8437   if (qualified_type)
8438     equate_type_number_to_die (qualified_type, mod_type_die);
8439
8440   if (item_type)
8441     /* We must do this after the equate_type_number_to_die call, in case
8442        this is a recursive type.  This ensures that the modified_type_die
8443        recursion will terminate even if the type is recursive.  Recursive
8444        types are possible in Ada.  */
8445     sub_die = modified_type_die (item_type,
8446                                  TYPE_READONLY (item_type),
8447                                  TYPE_VOLATILE (item_type),
8448                                  context_die);
8449
8450   if (sub_die != NULL)
8451     add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
8452
8453   return mod_type_die;
8454 }
8455
8456 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
8457    an enumerated type.  */
8458
8459 static inline int
8460 type_is_enum (tree type)
8461 {
8462   return TREE_CODE (type) == ENUMERAL_TYPE;
8463 }
8464
8465 /* Return the DBX register number described by a given RTL node.  */
8466
8467 static unsigned int
8468 dbx_reg_number (rtx rtl)
8469 {
8470   unsigned regno = REGNO (rtl);
8471
8472   gcc_assert (regno < FIRST_PSEUDO_REGISTER);
8473
8474 #ifdef LEAF_REG_REMAP
8475   regno = LEAF_REG_REMAP (regno);
8476 #endif
8477
8478   return DBX_REGISTER_NUMBER (regno);
8479 }
8480
8481 /* Optionally add a DW_OP_piece term to a location description expression.
8482    DW_OP_piece is only added if the location description expression already
8483    doesn't end with DW_OP_piece.  */
8484
8485 static void
8486 add_loc_descr_op_piece (dw_loc_descr_ref *list_head, int size)
8487 {
8488   dw_loc_descr_ref loc;
8489
8490   if (*list_head != NULL)
8491     {
8492       /* Find the end of the chain.  */
8493       for (loc = *list_head; loc->dw_loc_next != NULL; loc = loc->dw_loc_next)
8494         ;
8495
8496       if (loc->dw_loc_opc != DW_OP_piece)
8497         loc->dw_loc_next = new_loc_descr (DW_OP_piece, size, 0);
8498     }
8499 }
8500
8501 /* Return a location descriptor that designates a machine register or
8502    zero if there is none.  */
8503
8504 static dw_loc_descr_ref
8505 reg_loc_descriptor (rtx rtl)
8506 {
8507   rtx regs;
8508
8509   if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
8510     return 0;
8511
8512   regs = targetm.dwarf_register_span (rtl);
8513
8514   if (hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)] > 1 || regs)
8515     return multiple_reg_loc_descriptor (rtl, regs);
8516   else
8517     return one_reg_loc_descriptor (dbx_reg_number (rtl));
8518 }
8519
8520 /* Return a location descriptor that designates a machine register for
8521    a given hard register number.  */
8522
8523 static dw_loc_descr_ref
8524 one_reg_loc_descriptor (unsigned int regno)
8525 {
8526   if (regno <= 31)
8527     return new_loc_descr (DW_OP_reg0 + regno, 0, 0);
8528   else
8529     return new_loc_descr (DW_OP_regx, regno, 0);
8530 }
8531
8532 /* Given an RTL of a register, return a location descriptor that
8533    designates a value that spans more than one register.  */
8534
8535 static dw_loc_descr_ref
8536 multiple_reg_loc_descriptor (rtx rtl, rtx regs)
8537 {
8538   int nregs, size, i;
8539   unsigned reg;
8540   dw_loc_descr_ref loc_result = NULL;
8541
8542   reg = REGNO (rtl);
8543 #ifdef LEAF_REG_REMAP
8544   reg = LEAF_REG_REMAP (reg);
8545 #endif
8546   gcc_assert ((unsigned) DBX_REGISTER_NUMBER (reg) == dbx_reg_number (rtl));
8547   nregs = hard_regno_nregs[REGNO (rtl)][GET_MODE (rtl)];
8548
8549   /* Simple, contiguous registers.  */
8550   if (regs == NULL_RTX)
8551     {
8552       size = GET_MODE_SIZE (GET_MODE (rtl)) / nregs;
8553
8554       loc_result = NULL;
8555       while (nregs--)
8556         {
8557           dw_loc_descr_ref t;
8558
8559           t = one_reg_loc_descriptor (DBX_REGISTER_NUMBER (reg));
8560           add_loc_descr (&loc_result, t);
8561           add_loc_descr_op_piece (&loc_result, size);
8562           ++reg;
8563         }
8564       return loc_result;
8565     }
8566
8567   /* Now onto stupid register sets in non contiguous locations.  */
8568
8569   gcc_assert (GET_CODE (regs) == PARALLEL);
8570
8571   size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8572   loc_result = NULL;
8573
8574   for (i = 0; i < XVECLEN (regs, 0); ++i)
8575     {
8576       dw_loc_descr_ref t;
8577
8578       t = one_reg_loc_descriptor (REGNO (XVECEXP (regs, 0, i)));
8579       add_loc_descr (&loc_result, t);
8580       size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8581       add_loc_descr_op_piece (&loc_result, size);
8582     }
8583   return loc_result;
8584 }
8585
8586 /* Return a location descriptor that designates a constant.  */
8587
8588 static dw_loc_descr_ref
8589 int_loc_descriptor (HOST_WIDE_INT i)
8590 {
8591   enum dwarf_location_atom op;
8592
8593   /* Pick the smallest representation of a constant, rather than just
8594      defaulting to the LEB encoding.  */
8595   if (i >= 0)
8596     {
8597       if (i <= 31)
8598         op = DW_OP_lit0 + i;
8599       else if (i <= 0xff)
8600         op = DW_OP_const1u;
8601       else if (i <= 0xffff)
8602         op = DW_OP_const2u;
8603       else if (HOST_BITS_PER_WIDE_INT == 32
8604                || i <= 0xffffffff)
8605         op = DW_OP_const4u;
8606       else
8607         op = DW_OP_constu;
8608     }
8609   else
8610     {
8611       if (i >= -0x80)
8612         op = DW_OP_const1s;
8613       else if (i >= -0x8000)
8614         op = DW_OP_const2s;
8615       else if (HOST_BITS_PER_WIDE_INT == 32
8616                || i >= -0x80000000)
8617         op = DW_OP_const4s;
8618       else
8619         op = DW_OP_consts;
8620     }
8621
8622   return new_loc_descr (op, i, 0);
8623 }
8624
8625 /* Return a location descriptor that designates a base+offset location.  */
8626
8627 static dw_loc_descr_ref
8628 based_loc_descr (rtx reg, HOST_WIDE_INT offset)
8629 {
8630   unsigned int regno;
8631
8632   /* We only use "frame base" when we're sure we're talking about the
8633      post-prologue local stack frame.  We do this by *not* running
8634      register elimination until this point, and recognizing the special
8635      argument pointer and soft frame pointer rtx's.  */
8636   if (reg == arg_pointer_rtx || reg == frame_pointer_rtx)
8637     {
8638       rtx elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
8639
8640       if (elim != reg)
8641         {
8642           if (GET_CODE (elim) == PLUS)
8643             {
8644               offset += INTVAL (XEXP (elim, 1));
8645               elim = XEXP (elim, 0);
8646             }
8647           gcc_assert (elim == (frame_pointer_needed ? hard_frame_pointer_rtx
8648                       : stack_pointer_rtx));
8649           offset += frame_pointer_fb_offset;
8650
8651           return new_loc_descr (DW_OP_fbreg, offset, 0);
8652         }
8653     }
8654
8655   regno = dbx_reg_number (reg);
8656   if (regno <= 31)
8657     return new_loc_descr (DW_OP_breg0 + regno, offset, 0);
8658   else
8659     return new_loc_descr (DW_OP_bregx, regno, offset);
8660 }
8661
8662 /* Return true if this RTL expression describes a base+offset calculation.  */
8663
8664 static inline int
8665 is_based_loc (rtx rtl)
8666 {
8667   return (GET_CODE (rtl) == PLUS
8668           && ((REG_P (XEXP (rtl, 0))
8669                && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
8670                && GET_CODE (XEXP (rtl, 1)) == CONST_INT)));
8671 }
8672
8673 /* The following routine converts the RTL for a variable or parameter
8674    (resident in memory) into an equivalent Dwarf representation of a
8675    mechanism for getting the address of that same variable onto the top of a
8676    hypothetical "address evaluation" stack.
8677
8678    When creating memory location descriptors, we are effectively transforming
8679    the RTL for a memory-resident object into its Dwarf postfix expression
8680    equivalent.  This routine recursively descends an RTL tree, turning
8681    it into Dwarf postfix code as it goes.
8682
8683    MODE is the mode of the memory reference, needed to handle some
8684    autoincrement addressing modes.
8685
8686    CAN_USE_FBREG is a flag whether we can use DW_AT_frame_base in the
8687    location list for RTL.
8688
8689    Return 0 if we can't represent the location.  */
8690
8691 static dw_loc_descr_ref
8692 mem_loc_descriptor (rtx rtl, enum machine_mode mode)
8693 {
8694   dw_loc_descr_ref mem_loc_result = NULL;
8695   enum dwarf_location_atom op;
8696
8697   /* Note that for a dynamically sized array, the location we will generate a
8698      description of here will be the lowest numbered location which is
8699      actually within the array.  That's *not* necessarily the same as the
8700      zeroth element of the array.  */
8701
8702   rtl = targetm.delegitimize_address (rtl);
8703
8704   switch (GET_CODE (rtl))
8705     {
8706     case POST_INC:
8707     case POST_DEC:
8708     case POST_MODIFY:
8709       /* POST_INC and POST_DEC can be handled just like a SUBREG.  So we
8710          just fall into the SUBREG code.  */
8711
8712       /* ... fall through ...  */
8713
8714     case SUBREG:
8715       /* The case of a subreg may arise when we have a local (register)
8716          variable or a formal (register) parameter which doesn't quite fill
8717          up an entire register.  For now, just assume that it is
8718          legitimate to make the Dwarf info refer to the whole register which
8719          contains the given subreg.  */
8720       rtl = XEXP (rtl, 0);
8721
8722       /* ... fall through ...  */
8723
8724     case REG:
8725       /* Whenever a register number forms a part of the description of the
8726          method for calculating the (dynamic) address of a memory resident
8727          object, DWARF rules require the register number be referred to as
8728          a "base register".  This distinction is not based in any way upon
8729          what category of register the hardware believes the given register
8730          belongs to.  This is strictly DWARF terminology we're dealing with
8731          here. Note that in cases where the location of a memory-resident
8732          data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
8733          OP_CONST (0)) the actual DWARF location descriptor that we generate
8734          may just be OP_BASEREG (basereg).  This may look deceptively like
8735          the object in question was allocated to a register (rather than in
8736          memory) so DWARF consumers need to be aware of the subtle
8737          distinction between OP_REG and OP_BASEREG.  */
8738       if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
8739         mem_loc_result = based_loc_descr (rtl, 0);
8740       break;
8741
8742     case MEM:
8743       mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
8744       if (mem_loc_result != 0)
8745         add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
8746       break;
8747
8748     case LO_SUM:
8749          rtl = XEXP (rtl, 1);
8750
8751       /* ... fall through ...  */
8752
8753     case LABEL_REF:
8754       /* Some ports can transform a symbol ref into a label ref, because
8755          the symbol ref is too far away and has to be dumped into a constant
8756          pool.  */
8757     case CONST:
8758     case SYMBOL_REF:
8759       /* Alternatively, the symbol in the constant pool might be referenced
8760          by a different symbol.  */
8761       if (GET_CODE (rtl) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (rtl))
8762         {
8763           bool marked;
8764           rtx tmp = get_pool_constant_mark (rtl, &marked);
8765
8766           if (GET_CODE (tmp) == SYMBOL_REF)
8767             {
8768               rtl = tmp;
8769               if (CONSTANT_POOL_ADDRESS_P (tmp))
8770                 get_pool_constant_mark (tmp, &marked);
8771               else
8772                 marked = true;
8773             }
8774
8775           /* If all references to this pool constant were optimized away,
8776              it was not output and thus we can't represent it.
8777              FIXME: might try to use DW_OP_const_value here, though
8778              DW_OP_piece complicates it.  */
8779           if (!marked)
8780             return 0;
8781         }
8782
8783       mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
8784       mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
8785       mem_loc_result->dw_loc_oprnd1.v.val_addr = rtl;
8786       VEC_safe_push (rtx, gc, used_rtx_array, rtl);
8787       break;
8788
8789     case PRE_MODIFY:
8790       /* Extract the PLUS expression nested inside and fall into
8791          PLUS code below.  */
8792       rtl = XEXP (rtl, 1);
8793       goto plus;
8794
8795     case PRE_INC:
8796     case PRE_DEC:
8797       /* Turn these into a PLUS expression and fall into the PLUS code
8798          below.  */
8799       rtl = gen_rtx_PLUS (word_mode, XEXP (rtl, 0),
8800                           GEN_INT (GET_CODE (rtl) == PRE_INC
8801                                    ? GET_MODE_UNIT_SIZE (mode)
8802                                    : -GET_MODE_UNIT_SIZE (mode)));
8803
8804       /* ... fall through ...  */
8805
8806     case PLUS:
8807     plus:
8808       if (is_based_loc (rtl))
8809         mem_loc_result = based_loc_descr (XEXP (rtl, 0),
8810                                           INTVAL (XEXP (rtl, 1)));
8811       else
8812         {
8813           mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode);
8814           if (mem_loc_result == 0)
8815             break;
8816
8817           if (GET_CODE (XEXP (rtl, 1)) == CONST_INT
8818               && INTVAL (XEXP (rtl, 1)) >= 0)
8819             add_loc_descr (&mem_loc_result,
8820                            new_loc_descr (DW_OP_plus_uconst,
8821                                           INTVAL (XEXP (rtl, 1)), 0));
8822           else
8823             {
8824               add_loc_descr (&mem_loc_result,
8825                              mem_loc_descriptor (XEXP (rtl, 1), mode));
8826               add_loc_descr (&mem_loc_result,
8827                              new_loc_descr (DW_OP_plus, 0, 0));
8828             }
8829         }
8830       break;
8831
8832     /* If a pseudo-reg is optimized away, it is possible for it to
8833        be replaced with a MEM containing a multiply or shift.  */
8834     case MULT:
8835       op = DW_OP_mul;
8836       goto do_binop;
8837
8838     case ASHIFT:
8839       op = DW_OP_shl;
8840       goto do_binop;
8841
8842     case ASHIFTRT:
8843       op = DW_OP_shra;
8844       goto do_binop;
8845
8846     case LSHIFTRT:
8847       op = DW_OP_shr;
8848       goto do_binop;
8849
8850     do_binop:
8851       {
8852         dw_loc_descr_ref op0 = mem_loc_descriptor (XEXP (rtl, 0), mode);
8853         dw_loc_descr_ref op1 = mem_loc_descriptor (XEXP (rtl, 1), mode);
8854
8855         if (op0 == 0 || op1 == 0)
8856           break;
8857
8858         mem_loc_result = op0;
8859         add_loc_descr (&mem_loc_result, op1);
8860         add_loc_descr (&mem_loc_result, new_loc_descr (op, 0, 0));
8861         break;
8862       }
8863
8864     case CONST_INT:
8865       mem_loc_result = int_loc_descriptor (INTVAL (rtl));
8866       break;
8867
8868     default:
8869       gcc_unreachable ();
8870     }
8871
8872   return mem_loc_result;
8873 }
8874
8875 /* Return a descriptor that describes the concatenation of two locations.
8876    This is typically a complex variable.  */
8877
8878 static dw_loc_descr_ref
8879 concat_loc_descriptor (rtx x0, rtx x1)
8880 {
8881   dw_loc_descr_ref cc_loc_result = NULL;
8882   dw_loc_descr_ref x0_ref = loc_descriptor (x0);
8883   dw_loc_descr_ref x1_ref = loc_descriptor (x1);
8884
8885   if (x0_ref == 0 || x1_ref == 0)
8886     return 0;
8887
8888   cc_loc_result = x0_ref;
8889   add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x0)));
8890
8891   add_loc_descr (&cc_loc_result, x1_ref);
8892   add_loc_descr_op_piece (&cc_loc_result, GET_MODE_SIZE (GET_MODE (x1)));
8893
8894   return cc_loc_result;
8895 }
8896
8897 /* Output a proper Dwarf location descriptor for a variable or parameter
8898    which is either allocated in a register or in a memory location.  For a
8899    register, we just generate an OP_REG and the register number.  For a
8900    memory location we provide a Dwarf postfix expression describing how to
8901    generate the (dynamic) address of the object onto the address stack.
8902
8903    If we don't know how to describe it, return 0.  */
8904
8905 static dw_loc_descr_ref
8906 loc_descriptor (rtx rtl)
8907 {
8908   dw_loc_descr_ref loc_result = NULL;
8909
8910   switch (GET_CODE (rtl))
8911     {
8912     case SUBREG:
8913       /* The case of a subreg may arise when we have a local (register)
8914          variable or a formal (register) parameter which doesn't quite fill
8915          up an entire register.  For now, just assume that it is
8916          legitimate to make the Dwarf info refer to the whole register which
8917          contains the given subreg.  */
8918       rtl = SUBREG_REG (rtl);
8919
8920       /* ... fall through ...  */
8921
8922     case REG:
8923       loc_result = reg_loc_descriptor (rtl);
8924       break;
8925
8926     case MEM:
8927       loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
8928       break;
8929
8930     case CONCAT:
8931       loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1));
8932       break;
8933
8934     case VAR_LOCATION:
8935       /* Single part.  */
8936       if (GET_CODE (XEXP (rtl, 1)) != PARALLEL)
8937         {
8938           loc_result = loc_descriptor (XEXP (XEXP (rtl, 1), 0));
8939           break;
8940         }
8941
8942       rtl = XEXP (rtl, 1);
8943       /* FALLTHRU */
8944
8945     case PARALLEL:
8946       {
8947         rtvec par_elems = XVEC (rtl, 0);
8948         int num_elem = GET_NUM_ELEM (par_elems);
8949         enum machine_mode mode;
8950         int i;
8951
8952         /* Create the first one, so we have something to add to.  */
8953         loc_result = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0));
8954         mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
8955         add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
8956         for (i = 1; i < num_elem; i++)
8957           {
8958             dw_loc_descr_ref temp;
8959
8960             temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0));
8961             add_loc_descr (&loc_result, temp);
8962             mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
8963             add_loc_descr_op_piece (&loc_result, GET_MODE_SIZE (mode));
8964           }
8965       }
8966       break;
8967
8968     default:
8969       gcc_unreachable ();
8970     }
8971
8972   return loc_result;
8973 }
8974
8975 /* Similar, but generate the descriptor from trees instead of rtl.  This comes
8976    up particularly with variable length arrays.  WANT_ADDRESS is 2 if this is
8977    a top-level invocation of loc_descriptor_from_tree; is 1 if this is not a
8978    top-level invocation, and we require the address of LOC; is 0 if we require
8979    the value of LOC.  */
8980
8981 static dw_loc_descr_ref
8982 loc_descriptor_from_tree_1 (tree loc, int want_address)
8983 {
8984   dw_loc_descr_ref ret, ret1;
8985   int have_address = 0;
8986   enum dwarf_location_atom op;
8987
8988   /* ??? Most of the time we do not take proper care for sign/zero
8989      extending the values properly.  Hopefully this won't be a real
8990      problem...  */
8991
8992   switch (TREE_CODE (loc))
8993     {
8994     case ERROR_MARK:
8995       return 0;
8996
8997     case PLACEHOLDER_EXPR:
8998       /* This case involves extracting fields from an object to determine the
8999          position of other fields.  We don't try to encode this here.  The
9000          only user of this is Ada, which encodes the needed information using
9001          the names of types.  */
9002       return 0;
9003
9004     case CALL_EXPR:
9005       return 0;
9006
9007     case PREINCREMENT_EXPR:
9008     case PREDECREMENT_EXPR:
9009     case POSTINCREMENT_EXPR:
9010     case POSTDECREMENT_EXPR:
9011       /* There are no opcodes for these operations.  */
9012       return 0;
9013
9014     case ADDR_EXPR:
9015       /* If we already want an address, there's nothing we can do.  */
9016       if (want_address)
9017         return 0;
9018
9019       /* Otherwise, process the argument and look for the address.  */
9020       return loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 1);
9021
9022     case VAR_DECL:
9023       if (DECL_THREAD_LOCAL_P (loc))
9024         {
9025           rtx rtl;
9026
9027           /* If this is not defined, we have no way to emit the data.  */
9028           if (!targetm.asm_out.output_dwarf_dtprel)
9029             return 0;
9030
9031           /* The way DW_OP_GNU_push_tls_address is specified, we can only
9032              look up addresses of objects in the current module.  */
9033           if (DECL_EXTERNAL (loc))
9034             return 0;
9035
9036           rtl = rtl_for_decl_location (loc);
9037           if (rtl == NULL_RTX)
9038             return 0;
9039
9040           if (!MEM_P (rtl))
9041             return 0;
9042           rtl = XEXP (rtl, 0);
9043           if (! CONSTANT_P (rtl))
9044             return 0;
9045
9046           ret = new_loc_descr (INTERNAL_DW_OP_tls_addr, 0, 0);
9047           ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
9048           ret->dw_loc_oprnd1.v.val_addr = rtl;
9049
9050           ret1 = new_loc_descr (DW_OP_GNU_push_tls_address, 0, 0);
9051           add_loc_descr (&ret, ret1);
9052
9053           have_address = 1;
9054           break;
9055         }
9056       /* FALLTHRU */
9057
9058     case PARM_DECL:
9059       if (DECL_HAS_VALUE_EXPR_P (loc))
9060         return loc_descriptor_from_tree_1 (DECL_VALUE_EXPR (loc),
9061                                            want_address);
9062       /* FALLTHRU */
9063
9064     case RESULT_DECL:
9065       {
9066         rtx rtl = rtl_for_decl_location (loc);
9067
9068         if (rtl == NULL_RTX)
9069           return 0;
9070         else if (GET_CODE (rtl) == CONST_INT)
9071           {
9072             HOST_WIDE_INT val = INTVAL (rtl);
9073             if (TYPE_UNSIGNED (TREE_TYPE (loc)))
9074               val &= GET_MODE_MASK (DECL_MODE (loc));
9075             ret = int_loc_descriptor (val);
9076           }
9077         else if (GET_CODE (rtl) == CONST_STRING)
9078           return 0;
9079         else if (CONSTANT_P (rtl))
9080           {
9081             ret = new_loc_descr (DW_OP_addr, 0, 0);
9082             ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
9083             ret->dw_loc_oprnd1.v.val_addr = rtl;
9084           }
9085         else
9086           {
9087             enum machine_mode mode;
9088
9089             /* Certain constructs can only be represented at top-level.  */
9090             if (want_address == 2)
9091               return loc_descriptor (rtl);
9092
9093             mode = GET_MODE (rtl);
9094             if (MEM_P (rtl))
9095               {
9096                 rtl = XEXP (rtl, 0);
9097                 have_address = 1;
9098               }
9099             ret = mem_loc_descriptor (rtl, mode);
9100           }
9101       }
9102       break;
9103
9104     case INDIRECT_REF:
9105       ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9106       have_address = 1;
9107       break;
9108
9109     case COMPOUND_EXPR:
9110       return loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 1), want_address);
9111
9112     case NOP_EXPR:
9113     case CONVERT_EXPR:
9114     case NON_LVALUE_EXPR:
9115     case VIEW_CONVERT_EXPR:
9116     case SAVE_EXPR:
9117     case MODIFY_EXPR:
9118       return loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), want_address);
9119
9120     case COMPONENT_REF:
9121     case BIT_FIELD_REF:
9122     case ARRAY_REF:
9123     case ARRAY_RANGE_REF:
9124       {
9125         tree obj, offset;
9126         HOST_WIDE_INT bitsize, bitpos, bytepos;
9127         enum machine_mode mode;
9128         int volatilep;
9129         int unsignedp = TYPE_UNSIGNED (TREE_TYPE (loc));
9130
9131         obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
9132                                    &unsignedp, &volatilep, false);
9133
9134         if (obj == loc)
9135           return 0;
9136
9137         ret = loc_descriptor_from_tree_1 (obj, 1);
9138         if (ret == 0
9139             || bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
9140           return 0;
9141
9142         if (offset != NULL_TREE)
9143           {
9144             /* Variable offset.  */
9145             add_loc_descr (&ret, loc_descriptor_from_tree_1 (offset, 0));
9146             add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
9147           }
9148
9149         bytepos = bitpos / BITS_PER_UNIT;
9150         if (bytepos > 0)
9151           add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
9152         else if (bytepos < 0)
9153           {
9154             add_loc_descr (&ret, int_loc_descriptor (bytepos));
9155             add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
9156           }
9157
9158         have_address = 1;
9159         break;
9160       }
9161
9162     case INTEGER_CST:
9163       if (host_integerp (loc, 0))
9164         ret = int_loc_descriptor (tree_low_cst (loc, 0));
9165       else
9166         return 0;
9167       break;
9168
9169     case CONSTRUCTOR:
9170       {
9171         /* Get an RTL for this, if something has been emitted.  */
9172         rtx rtl = lookup_constant_def (loc);
9173         enum machine_mode mode;
9174
9175         if (!rtl || !MEM_P (rtl))
9176           return 0;
9177         mode = GET_MODE (rtl);
9178         rtl = XEXP (rtl, 0);
9179         ret = mem_loc_descriptor (rtl, mode);
9180         have_address = 1;
9181         break;
9182       }
9183
9184     case TRUTH_AND_EXPR:
9185     case TRUTH_ANDIF_EXPR:
9186     case BIT_AND_EXPR:
9187       op = DW_OP_and;
9188       goto do_binop;
9189
9190     case TRUTH_XOR_EXPR:
9191     case BIT_XOR_EXPR:
9192       op = DW_OP_xor;
9193       goto do_binop;
9194
9195     case TRUTH_OR_EXPR:
9196     case TRUTH_ORIF_EXPR:
9197     case BIT_IOR_EXPR:
9198       op = DW_OP_or;
9199       goto do_binop;
9200
9201     case FLOOR_DIV_EXPR:
9202     case CEIL_DIV_EXPR:
9203     case ROUND_DIV_EXPR:
9204     case TRUNC_DIV_EXPR:
9205       op = DW_OP_div;
9206       goto do_binop;
9207
9208     case MINUS_EXPR:
9209       op = DW_OP_minus;
9210       goto do_binop;
9211
9212     case FLOOR_MOD_EXPR:
9213     case CEIL_MOD_EXPR:
9214     case ROUND_MOD_EXPR:
9215     case TRUNC_MOD_EXPR:
9216       op = DW_OP_mod;
9217       goto do_binop;
9218
9219     case MULT_EXPR:
9220       op = DW_OP_mul;
9221       goto do_binop;
9222
9223     case LSHIFT_EXPR:
9224       op = DW_OP_shl;
9225       goto do_binop;
9226
9227     case RSHIFT_EXPR:
9228       op = (TYPE_UNSIGNED (TREE_TYPE (loc)) ? DW_OP_shr : DW_OP_shra);
9229       goto do_binop;
9230
9231     case PLUS_EXPR:
9232       if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
9233           && host_integerp (TREE_OPERAND (loc, 1), 0))
9234         {
9235           ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9236           if (ret == 0)
9237             return 0;
9238
9239           add_loc_descr (&ret,
9240                          new_loc_descr (DW_OP_plus_uconst,
9241                                         tree_low_cst (TREE_OPERAND (loc, 1),
9242                                                       0),
9243                                         0));
9244           break;
9245         }
9246
9247       op = DW_OP_plus;
9248       goto do_binop;
9249
9250     case LE_EXPR:
9251       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9252         return 0;
9253
9254       op = DW_OP_le;
9255       goto do_binop;
9256
9257     case GE_EXPR:
9258       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9259         return 0;
9260
9261       op = DW_OP_ge;
9262       goto do_binop;
9263
9264     case LT_EXPR:
9265       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9266         return 0;
9267
9268       op = DW_OP_lt;
9269       goto do_binop;
9270
9271     case GT_EXPR:
9272       if (TYPE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
9273         return 0;
9274
9275       op = DW_OP_gt;
9276       goto do_binop;
9277
9278     case EQ_EXPR:
9279       op = DW_OP_eq;
9280       goto do_binop;
9281
9282     case NE_EXPR:
9283       op = DW_OP_ne;
9284       goto do_binop;
9285
9286     do_binop:
9287       ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9288       ret1 = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 1), 0);
9289       if (ret == 0 || ret1 == 0)
9290         return 0;
9291
9292       add_loc_descr (&ret, ret1);
9293       add_loc_descr (&ret, new_loc_descr (op, 0, 0));
9294       break;
9295
9296     case TRUTH_NOT_EXPR:
9297     case BIT_NOT_EXPR:
9298       op = DW_OP_not;
9299       goto do_unop;
9300
9301     case ABS_EXPR:
9302       op = DW_OP_abs;
9303       goto do_unop;
9304
9305     case NEGATE_EXPR:
9306       op = DW_OP_neg;
9307       goto do_unop;
9308
9309     do_unop:
9310       ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9311       if (ret == 0)
9312         return 0;
9313
9314       add_loc_descr (&ret, new_loc_descr (op, 0, 0));
9315       break;
9316
9317     case MIN_EXPR:
9318     case MAX_EXPR:
9319       {
9320         const enum tree_code code =
9321           TREE_CODE (loc) == MIN_EXPR ? GT_EXPR : LT_EXPR;
9322
9323         loc = build3 (COND_EXPR, TREE_TYPE (loc),
9324                       build2 (code, integer_type_node,
9325                               TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
9326                       TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
9327       }
9328
9329       /* ... fall through ...  */
9330
9331     case COND_EXPR:
9332       {
9333         dw_loc_descr_ref lhs
9334           = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 1), 0);
9335         dw_loc_descr_ref rhs
9336           = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 2), 0);
9337         dw_loc_descr_ref bra_node, jump_node, tmp;
9338
9339         ret = loc_descriptor_from_tree_1 (TREE_OPERAND (loc, 0), 0);
9340         if (ret == 0 || lhs == 0 || rhs == 0)
9341           return 0;
9342
9343         bra_node = new_loc_descr (DW_OP_bra, 0, 0);
9344         add_loc_descr (&ret, bra_node);
9345
9346         add_loc_descr (&ret, rhs);
9347         jump_node = new_loc_descr (DW_OP_skip, 0, 0);
9348         add_loc_descr (&ret, jump_node);
9349
9350         add_loc_descr (&ret, lhs);
9351         bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
9352         bra_node->dw_loc_oprnd1.v.val_loc = lhs;
9353
9354         /* ??? Need a node to point the skip at.  Use a nop.  */
9355         tmp = new_loc_descr (DW_OP_nop, 0, 0);
9356         add_loc_descr (&ret, tmp);
9357         jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
9358         jump_node->dw_loc_oprnd1.v.val_loc = tmp;
9359       }
9360       break;
9361
9362     case FIX_TRUNC_EXPR:
9363     case FIX_CEIL_EXPR:
9364     case FIX_FLOOR_EXPR:
9365     case FIX_ROUND_EXPR:
9366       return 0;
9367
9368     default:
9369       /* Leave front-end specific codes as simply unknown.  This comes
9370          up, for instance, with the C STMT_EXPR.  */
9371       if ((unsigned int) TREE_CODE (loc)
9372           >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
9373         return 0;
9374
9375 #ifdef ENABLE_CHECKING
9376       /* Otherwise this is a generic code; we should just lists all of
9377          these explicitly.  We forgot one.  */
9378       gcc_unreachable ();
9379 #else
9380       /* In a release build, we want to degrade gracefully: better to
9381          generate incomplete debugging information than to crash.  */
9382       return NULL;
9383 #endif
9384     }
9385
9386   /* Show if we can't fill the request for an address.  */
9387   if (want_address && !have_address)
9388     return 0;
9389
9390   /* If we've got an address and don't want one, dereference.  */
9391   if (!want_address && have_address && ret)
9392     {
9393       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
9394
9395       if (size > DWARF2_ADDR_SIZE || size == -1)
9396         return 0;
9397       else if (size == DWARF2_ADDR_SIZE)
9398         op = DW_OP_deref;
9399       else
9400         op = DW_OP_deref_size;
9401
9402       add_loc_descr (&ret, new_loc_descr (op, size, 0));
9403     }
9404
9405   return ret;
9406 }
9407
9408 static inline dw_loc_descr_ref
9409 loc_descriptor_from_tree (tree loc)
9410 {
9411   return loc_descriptor_from_tree_1 (loc, 2);
9412 }
9413
9414 /* Given a value, round it up to the lowest multiple of `boundary'
9415    which is not less than the value itself.  */
9416
9417 static inline HOST_WIDE_INT
9418 ceiling (HOST_WIDE_INT value, unsigned int boundary)
9419 {
9420   return (((value + boundary - 1) / boundary) * boundary);
9421 }
9422
9423 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
9424    pointer to the declared type for the relevant field variable, or return
9425    `integer_type_node' if the given node turns out to be an
9426    ERROR_MARK node.  */
9427
9428 static inline tree
9429 field_type (tree decl)
9430 {
9431   tree type;
9432
9433   if (TREE_CODE (decl) == ERROR_MARK)
9434     return integer_type_node;
9435
9436   type = DECL_BIT_FIELD_TYPE (decl);
9437   if (type == NULL_TREE)
9438     type = TREE_TYPE (decl);
9439
9440   return type;
9441 }
9442
9443 /* Given a pointer to a tree node, return the alignment in bits for
9444    it, or else return BITS_PER_WORD if the node actually turns out to
9445    be an ERROR_MARK node.  */
9446
9447 static inline unsigned
9448 simple_type_align_in_bits (tree type)
9449 {
9450   return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
9451 }
9452
9453 static inline unsigned
9454 simple_decl_align_in_bits (tree decl)
9455 {
9456   return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
9457 }
9458
9459 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
9460    lowest addressed byte of the "containing object" for the given FIELD_DECL,
9461    or return 0 if we are unable to determine what that offset is, either
9462    because the argument turns out to be a pointer to an ERROR_MARK node, or
9463    because the offset is actually variable.  (We can't handle the latter case
9464    just yet).  */
9465
9466 static HOST_WIDE_INT
9467 field_byte_offset (tree decl)
9468 {
9469   unsigned int type_align_in_bits;
9470   unsigned int decl_align_in_bits;
9471   unsigned HOST_WIDE_INT type_size_in_bits;
9472   HOST_WIDE_INT object_offset_in_bits;
9473   tree type;
9474   tree field_size_tree;
9475   HOST_WIDE_INT bitpos_int;
9476   HOST_WIDE_INT deepest_bitpos;
9477   unsigned HOST_WIDE_INT field_size_in_bits;
9478
9479   if (TREE_CODE (decl) == ERROR_MARK)
9480     return 0;
9481
9482   gcc_assert (TREE_CODE (decl) == FIELD_DECL);
9483
9484   type = field_type (decl);
9485   field_size_tree = DECL_SIZE (decl);
9486
9487   /* The size could be unspecified if there was an error, or for
9488      a flexible array member.  */
9489   if (! field_size_tree)
9490     field_size_tree = bitsize_zero_node;
9491
9492   /* We cannot yet cope with fields whose positions are variable, so
9493      for now, when we see such things, we simply return 0.  Someday, we may
9494      be able to handle such cases, but it will be damn difficult.  */
9495   if (! host_integerp (bit_position (decl), 0))
9496     return 0;
9497
9498   bitpos_int = int_bit_position (decl);
9499
9500   /* If we don't know the size of the field, pretend it's a full word.  */
9501   if (host_integerp (field_size_tree, 1))
9502     field_size_in_bits = tree_low_cst (field_size_tree, 1);
9503   else
9504     field_size_in_bits = BITS_PER_WORD;
9505
9506   type_size_in_bits = simple_type_size_in_bits (type);
9507   type_align_in_bits = simple_type_align_in_bits (type);
9508   decl_align_in_bits = simple_decl_align_in_bits (decl);
9509
9510   /* The GCC front-end doesn't make any attempt to keep track of the starting
9511      bit offset (relative to the start of the containing structure type) of the
9512      hypothetical "containing object" for a bit-field.  Thus, when computing
9513      the byte offset value for the start of the "containing object" of a
9514      bit-field, we must deduce this information on our own. This can be rather
9515      tricky to do in some cases.  For example, handling the following structure
9516      type definition when compiling for an i386/i486 target (which only aligns
9517      long long's to 32-bit boundaries) can be very tricky:
9518
9519          struct S { int field1; long long field2:31; };
9520
9521      Fortunately, there is a simple rule-of-thumb which can be used in such
9522      cases.  When compiling for an i386/i486, GCC will allocate 8 bytes for the
9523      structure shown above.  It decides to do this based upon one simple rule
9524      for bit-field allocation.  GCC allocates each "containing object" for each
9525      bit-field at the first (i.e. lowest addressed) legitimate alignment
9526      boundary (based upon the required minimum alignment for the declared type
9527      of the field) which it can possibly use, subject to the condition that
9528      there is still enough available space remaining in the containing object
9529      (when allocated at the selected point) to fully accommodate all of the
9530      bits of the bit-field itself.
9531
9532      This simple rule makes it obvious why GCC allocates 8 bytes for each
9533      object of the structure type shown above.  When looking for a place to
9534      allocate the "containing object" for `field2', the compiler simply tries
9535      to allocate a 64-bit "containing object" at each successive 32-bit
9536      boundary (starting at zero) until it finds a place to allocate that 64-
9537      bit field such that at least 31 contiguous (and previously unallocated)
9538      bits remain within that selected 64 bit field.  (As it turns out, for the
9539      example above, the compiler finds it is OK to allocate the "containing
9540      object" 64-bit field at bit-offset zero within the structure type.)
9541
9542      Here we attempt to work backwards from the limited set of facts we're
9543      given, and we try to deduce from those facts, where GCC must have believed
9544      that the containing object started (within the structure type). The value
9545      we deduce is then used (by the callers of this routine) to generate
9546      DW_AT_location and DW_AT_bit_offset attributes for fields (both bit-fields
9547      and, in the case of DW_AT_location, regular fields as well).  */
9548
9549   /* Figure out the bit-distance from the start of the structure to the
9550      "deepest" bit of the bit-field.  */
9551   deepest_bitpos = bitpos_int + field_size_in_bits;
9552
9553   /* This is the tricky part.  Use some fancy footwork to deduce where the
9554      lowest addressed bit of the containing object must be.  */
9555   object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9556
9557   /* Round up to type_align by default.  This works best for bitfields.  */
9558   object_offset_in_bits += type_align_in_bits - 1;
9559   object_offset_in_bits /= type_align_in_bits;
9560   object_offset_in_bits *= type_align_in_bits;
9561
9562   if (object_offset_in_bits > bitpos_int)
9563     {
9564       /* Sigh, the decl must be packed.  */
9565       object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9566
9567       /* Round up to decl_align instead.  */
9568       object_offset_in_bits += decl_align_in_bits - 1;
9569       object_offset_in_bits /= decl_align_in_bits;
9570       object_offset_in_bits *= decl_align_in_bits;
9571     }
9572
9573   return object_offset_in_bits / BITS_PER_UNIT;
9574 }
9575 \f
9576 /* The following routines define various Dwarf attributes and any data
9577    associated with them.  */
9578
9579 /* Add a location description attribute value to a DIE.
9580
9581    This emits location attributes suitable for whole variables and
9582    whole parameters.  Note that the location attributes for struct fields are
9583    generated by the routine `data_member_location_attribute' below.  */
9584
9585 static inline void
9586 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
9587                              dw_loc_descr_ref descr)
9588 {
9589   if (descr != 0)
9590     add_AT_loc (die, attr_kind, descr);
9591 }
9592
9593 /* Attach the specialized form of location attribute used for data members of
9594    struct and union types.  In the special case of a FIELD_DECL node which
9595    represents a bit-field, the "offset" part of this special location
9596    descriptor must indicate the distance in bytes from the lowest-addressed
9597    byte of the containing struct or union type to the lowest-addressed byte of
9598    the "containing object" for the bit-field.  (See the `field_byte_offset'
9599    function above).
9600
9601    For any given bit-field, the "containing object" is a hypothetical object
9602    (of some integral or enum type) within which the given bit-field lives.  The
9603    type of this hypothetical "containing object" is always the same as the
9604    declared type of the individual bit-field itself (for GCC anyway... the
9605    DWARF spec doesn't actually mandate this).  Note that it is the size (in
9606    bytes) of the hypothetical "containing object" which will be given in the
9607    DW_AT_byte_size attribute for this bit-field.  (See the
9608    `byte_size_attribute' function below.)  It is also used when calculating the
9609    value of the DW_AT_bit_offset attribute.  (See the `bit_offset_attribute'
9610    function below.)  */
9611
9612 static void
9613 add_data_member_location_attribute (dw_die_ref die, tree decl)
9614 {
9615   HOST_WIDE_INT offset;
9616   dw_loc_descr_ref loc_descr = 0;
9617
9618   if (TREE_CODE (decl) == TREE_BINFO)
9619     {
9620       /* We're working on the TAG_inheritance for a base class.  */
9621       if (BINFO_VIRTUAL_P (decl) && is_cxx ())
9622         {
9623           /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
9624              aren't at a fixed offset from all (sub)objects of the same
9625              type.  We need to extract the appropriate offset from our
9626              vtable.  The following dwarf expression means
9627
9628                BaseAddr = ObAddr + *((*ObAddr) - Offset)
9629
9630              This is specific to the V3 ABI, of course.  */
9631
9632           dw_loc_descr_ref tmp;
9633
9634           /* Make a copy of the object address.  */
9635           tmp = new_loc_descr (DW_OP_dup, 0, 0);
9636           add_loc_descr (&loc_descr, tmp);
9637
9638           /* Extract the vtable address.  */
9639           tmp = new_loc_descr (DW_OP_deref, 0, 0);
9640           add_loc_descr (&loc_descr, tmp);
9641
9642           /* Calculate the address of the offset.  */
9643           offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
9644           gcc_assert (offset < 0);
9645
9646           tmp = int_loc_descriptor (-offset);
9647           add_loc_descr (&loc_descr, tmp);
9648           tmp = new_loc_descr (DW_OP_minus, 0, 0);
9649           add_loc_descr (&loc_descr, tmp);
9650
9651           /* Extract the offset.  */
9652           tmp = new_loc_descr (DW_OP_deref, 0, 0);
9653           add_loc_descr (&loc_descr, tmp);
9654
9655           /* Add it to the object address.  */
9656           tmp = new_loc_descr (DW_OP_plus, 0, 0);
9657           add_loc_descr (&loc_descr, tmp);
9658         }
9659       else
9660         offset = tree_low_cst (BINFO_OFFSET (decl), 0);
9661     }
9662   else
9663     offset = field_byte_offset (decl);
9664
9665   if (! loc_descr)
9666     {
9667       enum dwarf_location_atom op;
9668
9669       /* The DWARF2 standard says that we should assume that the structure
9670          address is already on the stack, so we can specify a structure field
9671          address by using DW_OP_plus_uconst.  */
9672
9673 #ifdef MIPS_DEBUGGING_INFO
9674       /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
9675          operator correctly.  It works only if we leave the offset on the
9676          stack.  */
9677       op = DW_OP_constu;
9678 #else
9679       op = DW_OP_plus_uconst;
9680 #endif
9681
9682       loc_descr = new_loc_descr (op, offset, 0);
9683     }
9684
9685   add_AT_loc (die, DW_AT_data_member_location, loc_descr);
9686 }
9687
9688 /* Writes integer values to dw_vec_const array.  */
9689
9690 static void
9691 insert_int (HOST_WIDE_INT val, unsigned int size, unsigned char *dest)
9692 {
9693   while (size != 0)
9694     {
9695       *dest++ = val & 0xff;
9696       val >>= 8;
9697       --size;
9698     }
9699 }
9700
9701 /* Reads integers from dw_vec_const array.  Inverse of insert_int.  */
9702
9703 static HOST_WIDE_INT
9704 extract_int (const unsigned char *src, unsigned int size)
9705 {
9706   HOST_WIDE_INT val = 0;
9707
9708   src += size;
9709   while (size != 0)
9710     {
9711       val <<= 8;
9712       val |= *--src & 0xff;
9713       --size;
9714     }
9715   return val;
9716 }
9717
9718 /* Writes floating point values to dw_vec_const array.  */
9719
9720 static void
9721 insert_float (rtx rtl, unsigned char *array)
9722 {
9723   REAL_VALUE_TYPE rv;
9724   long val[4];
9725   int i;
9726
9727   REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
9728   real_to_target (val, &rv, GET_MODE (rtl));
9729
9730   /* real_to_target puts 32-bit pieces in each long.  Pack them.  */
9731   for (i = 0; i < GET_MODE_SIZE (GET_MODE (rtl)) / 4; i++)
9732     {
9733       insert_int (val[i], 4, array);
9734       array += 4;
9735     }
9736 }
9737
9738 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
9739    does not have a "location" either in memory or in a register.  These
9740    things can arise in GNU C when a constant is passed as an actual parameter
9741    to an inlined function.  They can also arise in C++ where declared
9742    constants do not necessarily get memory "homes".  */
9743
9744 static void
9745 add_const_value_attribute (dw_die_ref die, rtx rtl)
9746 {
9747   switch (GET_CODE (rtl))
9748     {
9749     case CONST_INT:
9750       {
9751         HOST_WIDE_INT val = INTVAL (rtl);
9752
9753         if (val < 0)
9754           add_AT_int (die, DW_AT_const_value, val);
9755         else
9756           add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
9757       }
9758       break;
9759
9760     case CONST_DOUBLE:
9761       /* Note that a CONST_DOUBLE rtx could represent either an integer or a
9762          floating-point constant.  A CONST_DOUBLE is used whenever the
9763          constant requires more than one word in order to be adequately
9764          represented.  We output CONST_DOUBLEs as blocks.  */
9765       {
9766         enum machine_mode mode = GET_MODE (rtl);
9767
9768         if (SCALAR_FLOAT_MODE_P (mode))
9769           {
9770             unsigned int length = GET_MODE_SIZE (mode);
9771             unsigned char *array = ggc_alloc (length);
9772
9773             insert_float (rtl, array);
9774             add_AT_vec (die, DW_AT_const_value, length / 4, 4, array);
9775           }
9776         else
9777           {
9778             /* ??? We really should be using HOST_WIDE_INT throughout.  */
9779             gcc_assert (HOST_BITS_PER_LONG == HOST_BITS_PER_WIDE_INT);
9780
9781             add_AT_long_long (die, DW_AT_const_value,
9782                               CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
9783           }
9784       }
9785       break;
9786
9787     case CONST_VECTOR:
9788       {
9789         enum machine_mode mode = GET_MODE (rtl);
9790         unsigned int elt_size = GET_MODE_UNIT_SIZE (mode);
9791         unsigned int length = CONST_VECTOR_NUNITS (rtl);
9792         unsigned char *array = ggc_alloc (length * elt_size);
9793         unsigned int i;
9794         unsigned char *p;
9795
9796         switch (GET_MODE_CLASS (mode))
9797           {
9798           case MODE_VECTOR_INT:
9799             for (i = 0, p = array; i < length; i++, p += elt_size)
9800               {
9801                 rtx elt = CONST_VECTOR_ELT (rtl, i);
9802                 HOST_WIDE_INT lo, hi;
9803
9804                 switch (GET_CODE (elt))
9805                   {
9806                   case CONST_INT:
9807                     lo = INTVAL (elt);
9808                     hi = -(lo < 0);
9809                     break;
9810
9811                   case CONST_DOUBLE:
9812                     lo = CONST_DOUBLE_LOW (elt);
9813                     hi = CONST_DOUBLE_HIGH (elt);
9814                     break;
9815
9816                   default:
9817                     gcc_unreachable ();
9818                   }
9819
9820                 if (elt_size <= sizeof (HOST_WIDE_INT))
9821                   insert_int (lo, elt_size, p);
9822                 else
9823                   {
9824                     unsigned char *p0 = p;
9825                     unsigned char *p1 = p + sizeof (HOST_WIDE_INT);
9826
9827                     gcc_assert (elt_size == 2 * sizeof (HOST_WIDE_INT));
9828                     if (WORDS_BIG_ENDIAN)
9829                       {
9830                         p0 = p1;
9831                         p1 = p;
9832                       }
9833                     insert_int (lo, sizeof (HOST_WIDE_INT), p0);
9834                     insert_int (hi, sizeof (HOST_WIDE_INT), p1);
9835                   }
9836               }
9837             break;
9838
9839           case MODE_VECTOR_FLOAT:
9840             for (i = 0, p = array; i < length; i++, p += elt_size)
9841               {
9842                 rtx elt = CONST_VECTOR_ELT (rtl, i);
9843                 insert_float (elt, p);
9844               }
9845             break;
9846
9847           default:
9848             gcc_unreachable ();
9849           }
9850
9851         add_AT_vec (die, DW_AT_const_value, length, elt_size, array);
9852       }
9853       break;
9854
9855     case CONST_STRING:
9856       add_AT_string (die, DW_AT_const_value, XSTR (rtl, 0));
9857       break;
9858
9859     case SYMBOL_REF:
9860     case LABEL_REF:
9861     case CONST:
9862       add_AT_addr (die, DW_AT_const_value, rtl);
9863       VEC_safe_push (rtx, gc, used_rtx_array, rtl);
9864       break;
9865
9866     case PLUS:
9867       /* In cases where an inlined instance of an inline function is passed
9868          the address of an `auto' variable (which is local to the caller) we
9869          can get a situation where the DECL_RTL of the artificial local
9870          variable (for the inlining) which acts as a stand-in for the
9871          corresponding formal parameter (of the inline function) will look
9872          like (plus:SI (reg:SI FRAME_PTR) (const_int ...)).  This is not
9873          exactly a compile-time constant expression, but it isn't the address
9874          of the (artificial) local variable either.  Rather, it represents the
9875          *value* which the artificial local variable always has during its
9876          lifetime.  We currently have no way to represent such quasi-constant
9877          values in Dwarf, so for now we just punt and generate nothing.  */
9878       break;
9879
9880     default:
9881       /* No other kinds of rtx should be possible here.  */
9882       gcc_unreachable ();
9883     }
9884
9885 }
9886
9887 /* Determine whether the evaluation of EXPR references any variables
9888    or functions which aren't otherwise used (and therefore may not be
9889    output).  */
9890 static tree
9891 reference_to_unused (tree * tp, int * walk_subtrees,
9892                      void * data ATTRIBUTE_UNUSED)
9893 {
9894   if (! EXPR_P (*tp) && ! CONSTANT_CLASS_P (*tp))
9895     *walk_subtrees = 0;
9896   
9897   if (DECL_P (*tp) && ! TREE_PUBLIC (*tp) && ! TREE_USED (*tp)
9898       && ! TREE_ASM_WRITTEN (*tp))
9899     return *tp;
9900   else
9901     return NULL_TREE;
9902 }
9903
9904 /* Generate an RTL constant from a decl initializer INIT with decl type TYPE,
9905    for use in a later add_const_value_attribute call.  */
9906
9907 static rtx
9908 rtl_for_decl_init (tree init, tree type)
9909 {
9910   rtx rtl = NULL_RTX;
9911
9912   /* If a variable is initialized with a string constant without embedded
9913      zeros, build CONST_STRING.  */
9914   if (TREE_CODE (init) == STRING_CST && TREE_CODE (type) == ARRAY_TYPE)
9915     {
9916       tree enttype = TREE_TYPE (type);
9917       tree domain = TYPE_DOMAIN (type);
9918       enum machine_mode mode = TYPE_MODE (enttype);
9919
9920       if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_SIZE (mode) == 1
9921           && domain
9922           && integer_zerop (TYPE_MIN_VALUE (domain))
9923           && compare_tree_int (TYPE_MAX_VALUE (domain),
9924                                TREE_STRING_LENGTH (init) - 1) == 0
9925           && ((size_t) TREE_STRING_LENGTH (init)
9926               == strlen (TREE_STRING_POINTER (init)) + 1))
9927         rtl = gen_rtx_CONST_STRING (VOIDmode,
9928                                     ggc_strdup (TREE_STRING_POINTER (init)));
9929     }
9930   /* Although DWARF could easily handle other kinds of aggregates, we
9931      have no way to represent such values as RTL constants, so skip
9932      those.  */
9933   else if (AGGREGATE_TYPE_P (type))
9934     ;
9935   /* If the initializer is something that we know will expand into an
9936      immediate RTL constant, expand it now.  We must be careful not to
9937      reference variables which won't be output.  */
9938   else if (initializer_constant_valid_p (init, type)
9939            && ! walk_tree (&init, reference_to_unused, NULL, NULL))
9940     {
9941       rtl = expand_expr (init, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
9942
9943       /* If expand_expr returns a MEM, it wasn't immediate.  */
9944       gcc_assert (!rtl || !MEM_P (rtl));
9945     }
9946
9947   return rtl;
9948 }
9949
9950 /* Generate RTL for the variable DECL to represent its location.  */
9951
9952 static rtx
9953 rtl_for_decl_location (tree decl)
9954 {
9955   rtx rtl;
9956
9957   /* Here we have to decide where we are going to say the parameter "lives"
9958      (as far as the debugger is concerned).  We only have a couple of
9959      choices.  GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
9960
9961      DECL_RTL normally indicates where the parameter lives during most of the
9962      activation of the function.  If optimization is enabled however, this
9963      could be either NULL or else a pseudo-reg.  Both of those cases indicate
9964      that the parameter doesn't really live anywhere (as far as the code
9965      generation parts of GCC are concerned) during most of the function's
9966      activation.  That will happen (for example) if the parameter is never
9967      referenced within the function.
9968
9969      We could just generate a location descriptor here for all non-NULL
9970      non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
9971      a little nicer than that if we also consider DECL_INCOMING_RTL in cases
9972      where DECL_RTL is NULL or is a pseudo-reg.
9973
9974      Note however that we can only get away with using DECL_INCOMING_RTL as
9975      a backup substitute for DECL_RTL in certain limited cases.  In cases
9976      where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
9977      we can be sure that the parameter was passed using the same type as it is
9978      declared to have within the function, and that its DECL_INCOMING_RTL
9979      points us to a place where a value of that type is passed.
9980
9981      In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
9982      we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
9983      because in these cases DECL_INCOMING_RTL points us to a value of some
9984      type which is *different* from the type of the parameter itself.  Thus,
9985      if we tried to use DECL_INCOMING_RTL to generate a location attribute in
9986      such cases, the debugger would end up (for example) trying to fetch a
9987      `float' from a place which actually contains the first part of a
9988      `double'.  That would lead to really incorrect and confusing
9989      output at debug-time.
9990
9991      So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
9992      in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl).  There
9993      are a couple of exceptions however.  On little-endian machines we can
9994      get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
9995      not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
9996      an integral type that is smaller than TREE_TYPE (decl). These cases arise
9997      when (on a little-endian machine) a non-prototyped function has a
9998      parameter declared to be of type `short' or `char'.  In such cases,
9999      TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
10000      be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
10001      passed `int' value.  If the debugger then uses that address to fetch
10002      a `short' or a `char' (on a little-endian machine) the result will be
10003      the correct data, so we allow for such exceptional cases below.
10004
10005      Note that our goal here is to describe the place where the given formal
10006      parameter lives during most of the function's activation (i.e. between the
10007      end of the prologue and the start of the epilogue).  We'll do that as best
10008      as we can. Note however that if the given formal parameter is modified
10009      sometime during the execution of the function, then a stack backtrace (at
10010      debug-time) will show the function as having been called with the *new*
10011      value rather than the value which was originally passed in.  This happens
10012      rarely enough that it is not a major problem, but it *is* a problem, and
10013      I'd like to fix it.
10014
10015      A future version of dwarf2out.c may generate two additional attributes for
10016      any given DW_TAG_formal_parameter DIE which will describe the "passed
10017      type" and the "passed location" for the given formal parameter in addition
10018      to the attributes we now generate to indicate the "declared type" and the
10019      "active location" for each parameter.  This additional set of attributes
10020      could be used by debuggers for stack backtraces. Separately, note that
10021      sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
10022      This happens (for example) for inlined-instances of inline function formal
10023      parameters which are never referenced.  This really shouldn't be
10024      happening.  All PARM_DECL nodes should get valid non-NULL
10025      DECL_INCOMING_RTL values.  FIXME.  */
10026
10027   /* Use DECL_RTL as the "location" unless we find something better.  */
10028   rtl = DECL_RTL_IF_SET (decl);
10029
10030   /* When generating abstract instances, ignore everything except
10031      constants, symbols living in memory, and symbols living in
10032      fixed registers.  */
10033   if (! reload_completed)
10034     {
10035       if (rtl
10036           && (CONSTANT_P (rtl)
10037               || (MEM_P (rtl)
10038                   && CONSTANT_P (XEXP (rtl, 0)))
10039               || (REG_P (rtl)
10040                   && TREE_CODE (decl) == VAR_DECL
10041                   && TREE_STATIC (decl))))
10042         {
10043           rtl = targetm.delegitimize_address (rtl);
10044           return rtl;
10045         }
10046       rtl = NULL_RTX;
10047     }
10048   else if (TREE_CODE (decl) == PARM_DECL)
10049     {
10050       if (rtl == NULL_RTX || is_pseudo_reg (rtl))
10051         {
10052           tree declared_type = TREE_TYPE (decl);
10053           tree passed_type = DECL_ARG_TYPE (decl);
10054           enum machine_mode dmode = TYPE_MODE (declared_type);
10055           enum machine_mode pmode = TYPE_MODE (passed_type);
10056
10057           /* This decl represents a formal parameter which was optimized out.
10058              Note that DECL_INCOMING_RTL may be NULL in here, but we handle
10059              all cases where (rtl == NULL_RTX) just below.  */
10060           if (dmode == pmode)
10061             rtl = DECL_INCOMING_RTL (decl);
10062           else if (SCALAR_INT_MODE_P (dmode)
10063                    && GET_MODE_SIZE (dmode) <= GET_MODE_SIZE (pmode)
10064                    && DECL_INCOMING_RTL (decl))
10065             {
10066               rtx inc = DECL_INCOMING_RTL (decl);
10067               if (REG_P (inc))
10068                 rtl = inc;
10069               else if (MEM_P (inc))
10070                 {
10071                   if (BYTES_BIG_ENDIAN)
10072                     rtl = adjust_address_nv (inc, dmode,
10073                                              GET_MODE_SIZE (pmode)
10074                                              - GET_MODE_SIZE (dmode));
10075                   else
10076                     rtl = inc;
10077                 }
10078             }
10079         }
10080
10081       /* If the parm was passed in registers, but lives on the stack, then
10082          make a big endian correction if the mode of the type of the
10083          parameter is not the same as the mode of the rtl.  */
10084       /* ??? This is the same series of checks that are made in dbxout.c before
10085          we reach the big endian correction code there.  It isn't clear if all
10086          of these checks are necessary here, but keeping them all is the safe
10087          thing to do.  */
10088       else if (MEM_P (rtl)
10089                && XEXP (rtl, 0) != const0_rtx
10090                && ! CONSTANT_P (XEXP (rtl, 0))
10091                /* Not passed in memory.  */
10092                && !MEM_P (DECL_INCOMING_RTL (decl))
10093                /* Not passed by invisible reference.  */
10094                && (!REG_P (XEXP (rtl, 0))
10095                    || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
10096                    || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
10097 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
10098                    || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
10099 #endif
10100                      )
10101                /* Big endian correction check.  */
10102                && BYTES_BIG_ENDIAN
10103                && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
10104                && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
10105                    < UNITS_PER_WORD))
10106         {
10107           int offset = (UNITS_PER_WORD
10108                         - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
10109
10110           rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
10111                              plus_constant (XEXP (rtl, 0), offset));
10112         }
10113     }
10114   else if (TREE_CODE (decl) == VAR_DECL
10115            && rtl
10116            && MEM_P (rtl)
10117            && GET_MODE (rtl) != TYPE_MODE (TREE_TYPE (decl))
10118            && BYTES_BIG_ENDIAN)
10119     {
10120       int rsize = GET_MODE_SIZE (GET_MODE (rtl));
10121       int dsize = GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)));
10122
10123       /* If a variable is declared "register" yet is smaller than
10124          a register, then if we store the variable to memory, it
10125          looks like we're storing a register-sized value, when in
10126          fact we are not.  We need to adjust the offset of the
10127          storage location to reflect the actual value's bytes,
10128          else gdb will not be able to display it.  */
10129       if (rsize > dsize)
10130         rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
10131                            plus_constant (XEXP (rtl, 0), rsize-dsize));
10132     }
10133
10134   /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
10135      and will have been substituted directly into all expressions that use it.
10136      C does not have such a concept, but C++ and other languages do.  */
10137   if (!rtl && TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
10138     rtl = rtl_for_decl_init (DECL_INITIAL (decl), TREE_TYPE (decl));
10139
10140   if (rtl)
10141     rtl = targetm.delegitimize_address (rtl);
10142
10143   /* If we don't look past the constant pool, we risk emitting a
10144      reference to a constant pool entry that isn't referenced from
10145      code, and thus is not emitted.  */
10146   if (rtl)
10147     rtl = avoid_constant_pool_reference (rtl);
10148
10149   return rtl;
10150 }
10151
10152 /* We need to figure out what section we should use as the base for the
10153    address ranges where a given location is valid.
10154    1. If this particular DECL has a section associated with it, use that.
10155    2. If this function has a section associated with it, use that.
10156    3. Otherwise, use the text section.
10157    XXX: If you split a variable across multiple sections, we won't notice.  */
10158
10159 static const char *
10160 secname_for_decl (tree decl)
10161 {
10162   const char *secname;
10163
10164   if (VAR_OR_FUNCTION_DECL_P (decl) && DECL_SECTION_NAME (decl))
10165     {
10166       tree sectree = DECL_SECTION_NAME (decl);
10167       secname = TREE_STRING_POINTER (sectree);
10168     }
10169   else if (current_function_decl && DECL_SECTION_NAME (current_function_decl))
10170     {
10171       tree sectree = DECL_SECTION_NAME (current_function_decl);
10172       secname = TREE_STRING_POINTER (sectree);
10173     }
10174   else if (cfun && in_cold_section_p)
10175     secname = cfun->cold_section_label;
10176   else
10177     secname = text_section_label;
10178
10179   return secname;
10180 }
10181
10182 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
10183    data attribute for a variable or a parameter.  We generate the
10184    DW_AT_const_value attribute only in those cases where the given variable
10185    or parameter does not have a true "location" either in memory or in a
10186    register.  This can happen (for example) when a constant is passed as an
10187    actual argument in a call to an inline function.  (It's possible that
10188    these things can crop up in other ways also.)  Note that one type of
10189    constant value which can be passed into an inlined function is a constant
10190    pointer.  This can happen for example if an actual argument in an inlined
10191    function call evaluates to a compile-time constant address.  */
10192
10193 static void
10194 add_location_or_const_value_attribute (dw_die_ref die, tree decl,
10195                                        enum dwarf_attribute attr)
10196 {
10197   rtx rtl;
10198   dw_loc_descr_ref descr;
10199   var_loc_list *loc_list;
10200   struct var_loc_node *node;
10201   if (TREE_CODE (decl) == ERROR_MARK)
10202     return;
10203
10204   gcc_assert (TREE_CODE (decl) == VAR_DECL || TREE_CODE (decl) == PARM_DECL
10205               || TREE_CODE (decl) == RESULT_DECL);
10206              
10207   /* See if we possibly have multiple locations for this variable.  */
10208   loc_list = lookup_decl_loc (decl);
10209
10210   /* If it truly has multiple locations, the first and last node will
10211      differ.  */
10212   if (loc_list && loc_list->first != loc_list->last)
10213     {
10214       const char *endname, *secname;
10215       dw_loc_list_ref list;
10216       rtx varloc;
10217
10218       /* Now that we know what section we are using for a base,
10219          actually construct the list of locations.
10220          The first location information is what is passed to the
10221          function that creates the location list, and the remaining
10222          locations just get added on to that list.
10223          Note that we only know the start address for a location
10224          (IE location changes), so to build the range, we use
10225          the range [current location start, next location start].
10226          This means we have to special case the last node, and generate
10227          a range of [last location start, end of function label].  */
10228
10229       node = loc_list->first;
10230       varloc = NOTE_VAR_LOCATION (node->var_loc_note);
10231       secname = secname_for_decl (decl);
10232
10233       list = new_loc_list (loc_descriptor (varloc),
10234                            node->label, node->next->label, secname, 1);
10235       node = node->next;
10236
10237       for (; node->next; node = node->next)
10238         if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
10239           {
10240             /* The variable has a location between NODE->LABEL and
10241                NODE->NEXT->LABEL.  */
10242             varloc = NOTE_VAR_LOCATION (node->var_loc_note);
10243             add_loc_descr_to_loc_list (&list, loc_descriptor (varloc),
10244                                        node->label, node->next->label, secname);
10245           }
10246
10247       /* If the variable has a location at the last label
10248          it keeps its location until the end of function.  */
10249       if (NOTE_VAR_LOCATION_LOC (node->var_loc_note) != NULL_RTX)
10250         {
10251           char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
10252
10253           varloc = NOTE_VAR_LOCATION (node->var_loc_note);
10254           if (!current_function_decl)
10255             endname = text_end_label;
10256           else
10257             {
10258               ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
10259                                            current_function_funcdef_no);
10260               endname = ggc_strdup (label_id);
10261             }
10262           add_loc_descr_to_loc_list (&list, loc_descriptor (varloc),
10263                                      node->label, endname, secname);
10264         }
10265
10266       /* Finally, add the location list to the DIE, and we are done.  */
10267       add_AT_loc_list (die, attr, list);
10268       return;
10269     }
10270
10271   /* Try to get some constant RTL for this decl, and use that as the value of
10272      the location.  */
10273   
10274   rtl = rtl_for_decl_location (decl);
10275   if (rtl && (CONSTANT_P (rtl) || GET_CODE (rtl) == CONST_STRING))
10276     {
10277       add_const_value_attribute (die, rtl);
10278       return;
10279     }
10280   
10281   /* If we have tried to generate the location otherwise, and it
10282      didn't work out (we wouldn't be here if we did), and we have a one entry
10283      location list, try generating a location from that.  */
10284   if (loc_list && loc_list->first)
10285     {
10286       node = loc_list->first;
10287       descr = loc_descriptor (NOTE_VAR_LOCATION (node->var_loc_note));
10288       if (descr)
10289         {
10290           add_AT_location_description (die, attr, descr);
10291           return;
10292         }
10293     }
10294
10295   /* We couldn't get any rtl, so try directly generating the location
10296      description from the tree.  */
10297   descr = loc_descriptor_from_tree (decl);
10298   if (descr)
10299     {
10300       add_AT_location_description (die, attr, descr);
10301       return;
10302     }
10303   /* None of that worked, so it must not really have a location;
10304      try adding a constant value attribute from the DECL_INITIAL.  */
10305   tree_add_const_value_attribute (die, decl);
10306 }
10307
10308 /* If we don't have a copy of this variable in memory for some reason (such
10309    as a C++ member constant that doesn't have an out-of-line definition),
10310    we should tell the debugger about the constant value.  */
10311
10312 static void
10313 tree_add_const_value_attribute (dw_die_ref var_die, tree decl)
10314 {
10315   tree init = DECL_INITIAL (decl);
10316   tree type = TREE_TYPE (decl);
10317   rtx rtl;
10318
10319   if (TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl) && init)
10320     /* OK */;
10321   else
10322     return;
10323
10324   rtl = rtl_for_decl_init (init, type);
10325   if (rtl)
10326     add_const_value_attribute (var_die, rtl);
10327 }
10328
10329 /* Convert the CFI instructions for the current function into a
10330    location list.  This is used for DW_AT_frame_base when we targeting
10331    a dwarf2 consumer that does not support the dwarf3
10332    DW_OP_call_frame_cfa.  OFFSET is a constant to be added to all CFA
10333    expressions.  */
10334
10335 static dw_loc_list_ref
10336 convert_cfa_to_fb_loc_list (HOST_WIDE_INT offset)
10337 {
10338   dw_fde_ref fde;
10339   dw_loc_list_ref list, *list_tail;
10340   dw_cfi_ref cfi;
10341   dw_cfa_location last_cfa, next_cfa;
10342   const char *start_label, *last_label, *section;
10343
10344   fde = &fde_table[fde_table_in_use - 1];
10345
10346   section = secname_for_decl (current_function_decl);
10347   list_tail = &list;
10348   list = NULL;
10349
10350   next_cfa.reg = INVALID_REGNUM;
10351   next_cfa.offset = 0;
10352   next_cfa.indirect = 0;
10353   next_cfa.base_offset = 0;
10354
10355   start_label = fde->dw_fde_begin;
10356
10357   /* ??? Bald assumption that the CIE opcode list does not contain
10358      advance opcodes.  */
10359   for (cfi = cie_cfi_head; cfi; cfi = cfi->dw_cfi_next)
10360     lookup_cfa_1 (cfi, &next_cfa);
10361
10362   last_cfa = next_cfa;
10363   last_label = start_label;
10364
10365   for (cfi = fde->dw_fde_cfi; cfi; cfi = cfi->dw_cfi_next)
10366     switch (cfi->dw_cfi_opc)
10367       {
10368       case DW_CFA_advance_loc1:
10369       case DW_CFA_advance_loc2:
10370       case DW_CFA_advance_loc4:
10371         if (!cfa_equal_p (&last_cfa, &next_cfa))
10372           {
10373             *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
10374                                        start_label, last_label, section,
10375                                        list == NULL);
10376
10377             list_tail = &(*list_tail)->dw_loc_next;
10378             last_cfa = next_cfa;
10379             start_label = last_label;
10380           }
10381         last_label = cfi->dw_cfi_oprnd1.dw_cfi_addr;
10382         break;
10383
10384       case DW_CFA_advance_loc:
10385         /* The encoding is complex enough that we should never emit this.  */
10386       case DW_CFA_remember_state:
10387       case DW_CFA_restore_state:
10388         /* We don't handle these two in this function.  It would be possible
10389            if it were to be required.  */
10390         gcc_unreachable ();
10391
10392       default:
10393         lookup_cfa_1 (cfi, &next_cfa);
10394         break;
10395       }
10396
10397   if (!cfa_equal_p (&last_cfa, &next_cfa))
10398     {
10399       *list_tail = new_loc_list (build_cfa_loc (&last_cfa, offset),
10400                                  start_label, last_label, section,
10401                                  list == NULL);
10402       list_tail = &(*list_tail)->dw_loc_next;
10403       start_label = last_label;
10404     }
10405   *list_tail = new_loc_list (build_cfa_loc (&next_cfa, offset),
10406                              start_label, fde->dw_fde_end, section,
10407                              list == NULL);
10408
10409   return list;
10410 }
10411
10412 /* Compute a displacement from the "steady-state frame pointer" to the
10413    frame base (often the same as the CFA), and store it in
10414    frame_pointer_fb_offset.  OFFSET is added to the displacement
10415    before the latter is negated.  */
10416
10417 static void
10418 compute_frame_pointer_to_fb_displacement (HOST_WIDE_INT offset)
10419 {
10420   rtx reg, elim;
10421
10422 #ifdef FRAME_POINTER_CFA_OFFSET
10423   reg = frame_pointer_rtx;
10424   offset += FRAME_POINTER_CFA_OFFSET (current_function_decl);
10425 #else
10426   reg = arg_pointer_rtx;
10427   offset += ARG_POINTER_CFA_OFFSET (current_function_decl);
10428 #endif
10429
10430   elim = eliminate_regs (reg, VOIDmode, NULL_RTX);
10431   if (GET_CODE (elim) == PLUS)
10432     {
10433       offset += INTVAL (XEXP (elim, 1));
10434       elim = XEXP (elim, 0);
10435     }
10436   gcc_assert (elim == (frame_pointer_needed ? hard_frame_pointer_rtx
10437                        : stack_pointer_rtx));
10438
10439   frame_pointer_fb_offset = -offset;
10440 }
10441
10442 /* Generate a DW_AT_name attribute given some string value to be included as
10443    the value of the attribute.  */
10444
10445 static void
10446 add_name_attribute (dw_die_ref die, const char *name_string)
10447 {
10448   if (name_string != NULL && *name_string != 0)
10449     {
10450       if (demangle_name_func)
10451         name_string = (*demangle_name_func) (name_string);
10452
10453       add_AT_string (die, DW_AT_name, name_string);
10454     }
10455 }
10456
10457 /* Generate a DW_AT_comp_dir attribute for DIE.  */
10458
10459 static void
10460 add_comp_dir_attribute (dw_die_ref die)
10461 {
10462   const char *wd = get_src_pwd ();
10463   if (wd != NULL)
10464     add_AT_string (die, DW_AT_comp_dir, wd);
10465 }
10466
10467 /* Given a tree node describing an array bound (either lower or upper) output
10468    a representation for that bound.  */
10469
10470 static void
10471 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree bound)
10472 {
10473   switch (TREE_CODE (bound))
10474     {
10475     case ERROR_MARK:
10476       return;
10477
10478     /* All fixed-bounds are represented by INTEGER_CST nodes.  */
10479     case INTEGER_CST:
10480       if (! host_integerp (bound, 0)
10481           || (bound_attr == DW_AT_lower_bound
10482               && (((is_c_family () || is_java ()) &&  integer_zerop (bound))
10483                   || (is_fortran () && integer_onep (bound)))))
10484         /* Use the default.  */
10485         ;
10486       else
10487         add_AT_unsigned (subrange_die, bound_attr, tree_low_cst (bound, 0));
10488       break;
10489
10490     case CONVERT_EXPR:
10491     case NOP_EXPR:
10492     case NON_LVALUE_EXPR:
10493     case VIEW_CONVERT_EXPR:
10494       add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
10495       break;
10496
10497     case SAVE_EXPR:
10498       break;
10499
10500     case VAR_DECL:
10501     case PARM_DECL:
10502     case RESULT_DECL:
10503       {
10504         dw_die_ref decl_die = lookup_decl_die (bound);
10505
10506         /* ??? Can this happen, or should the variable have been bound
10507            first?  Probably it can, since I imagine that we try to create
10508            the types of parameters in the order in which they exist in
10509            the list, and won't have created a forward reference to a
10510            later parameter.  */
10511         if (decl_die != NULL)
10512           add_AT_die_ref (subrange_die, bound_attr, decl_die);
10513         break;
10514       }
10515
10516     default:
10517       {
10518         /* Otherwise try to create a stack operation procedure to
10519            evaluate the value of the array bound.  */
10520
10521         dw_die_ref ctx, decl_die;
10522         dw_loc_descr_ref loc;
10523
10524         loc = loc_descriptor_from_tree (bound);
10525         if (loc == NULL)
10526           break;
10527
10528         if (current_function_decl == 0)
10529           ctx = comp_unit_die;
10530         else
10531           ctx = lookup_decl_die (current_function_decl);
10532
10533         decl_die = new_die (DW_TAG_variable, ctx, bound);
10534         add_AT_flag (decl_die, DW_AT_artificial, 1);
10535         add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
10536         add_AT_loc (decl_die, DW_AT_location, loc);
10537
10538         add_AT_die_ref (subrange_die, bound_attr, decl_die);
10539         break;
10540       }
10541     }
10542 }
10543
10544 /* Note that the block of subscript information for an array type also
10545    includes information about the element type of type given array type.  */
10546
10547 static void
10548 add_subscript_info (dw_die_ref type_die, tree type)
10549 {
10550 #ifndef MIPS_DEBUGGING_INFO
10551   unsigned dimension_number;
10552 #endif
10553   tree lower, upper;
10554   dw_die_ref subrange_die;
10555
10556   /* The GNU compilers represent multidimensional array types as sequences of
10557      one dimensional array types whose element types are themselves array
10558      types.  Here we squish that down, so that each multidimensional array
10559      type gets only one array_type DIE in the Dwarf debugging info. The draft
10560      Dwarf specification say that we are allowed to do this kind of
10561      compression in C (because there is no difference between an array or
10562      arrays and a multidimensional array in C) but for other source languages
10563      (e.g. Ada) we probably shouldn't do this.  */
10564
10565   /* ??? The SGI dwarf reader fails for multidimensional arrays with a
10566      const enum type.  E.g. const enum machine_mode insn_operand_mode[2][10].
10567      We work around this by disabling this feature.  See also
10568      gen_array_type_die.  */
10569 #ifndef MIPS_DEBUGGING_INFO
10570   for (dimension_number = 0;
10571        TREE_CODE (type) == ARRAY_TYPE;
10572        type = TREE_TYPE (type), dimension_number++)
10573 #endif
10574     {
10575       tree domain = TYPE_DOMAIN (type);
10576
10577       /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
10578          and (in GNU C only) variable bounds.  Handle all three forms
10579          here.  */
10580       subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
10581       if (domain)
10582         {
10583           /* We have an array type with specified bounds.  */
10584           lower = TYPE_MIN_VALUE (domain);
10585           upper = TYPE_MAX_VALUE (domain);
10586
10587           /* Define the index type.  */
10588           if (TREE_TYPE (domain))
10589             {
10590               /* ??? This is probably an Ada unnamed subrange type.  Ignore the
10591                  TREE_TYPE field.  We can't emit debug info for this
10592                  because it is an unnamed integral type.  */
10593               if (TREE_CODE (domain) == INTEGER_TYPE
10594                   && TYPE_NAME (domain) == NULL_TREE
10595                   && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
10596                   && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
10597                 ;
10598               else
10599                 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
10600                                     type_die);
10601             }
10602
10603           /* ??? If upper is NULL, the array has unspecified length,
10604              but it does have a lower bound.  This happens with Fortran
10605                dimension arr(N:*)
10606              Since the debugger is definitely going to need to know N
10607              to produce useful results, go ahead and output the lower
10608              bound solo, and hope the debugger can cope.  */
10609
10610           add_bound_info (subrange_die, DW_AT_lower_bound, lower);
10611           if (upper)
10612             add_bound_info (subrange_die, DW_AT_upper_bound, upper);
10613         }
10614
10615       /* Otherwise we have an array type with an unspecified length.  The
10616          DWARF-2 spec does not say how to handle this; let's just leave out the
10617          bounds.  */
10618     }
10619 }
10620
10621 static void
10622 add_byte_size_attribute (dw_die_ref die, tree tree_node)
10623 {
10624   unsigned size;
10625
10626   switch (TREE_CODE (tree_node))
10627     {
10628     case ERROR_MARK:
10629       size = 0;
10630       break;
10631     case ENUMERAL_TYPE:
10632     case RECORD_TYPE:
10633     case UNION_TYPE:
10634     case QUAL_UNION_TYPE:
10635       size = int_size_in_bytes (tree_node);
10636       break;
10637     case FIELD_DECL:
10638       /* For a data member of a struct or union, the DW_AT_byte_size is
10639          generally given as the number of bytes normally allocated for an
10640          object of the *declared* type of the member itself.  This is true
10641          even for bit-fields.  */
10642       size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
10643       break;
10644     default:
10645       gcc_unreachable ();
10646     }
10647
10648   /* Note that `size' might be -1 when we get to this point.  If it is, that
10649      indicates that the byte size of the entity in question is variable.  We
10650      have no good way of expressing this fact in Dwarf at the present time,
10651      so just let the -1 pass on through.  */
10652   add_AT_unsigned (die, DW_AT_byte_size, size);
10653 }
10654
10655 /* For a FIELD_DECL node which represents a bit-field, output an attribute
10656    which specifies the distance in bits from the highest order bit of the
10657    "containing object" for the bit-field to the highest order bit of the
10658    bit-field itself.
10659
10660    For any given bit-field, the "containing object" is a hypothetical object
10661    (of some integral or enum type) within which the given bit-field lives.  The
10662    type of this hypothetical "containing object" is always the same as the
10663    declared type of the individual bit-field itself.  The determination of the
10664    exact location of the "containing object" for a bit-field is rather
10665    complicated.  It's handled by the `field_byte_offset' function (above).
10666
10667    Note that it is the size (in bytes) of the hypothetical "containing object"
10668    which will be given in the DW_AT_byte_size attribute for this bit-field.
10669    (See `byte_size_attribute' above).  */
10670
10671 static inline void
10672 add_bit_offset_attribute (dw_die_ref die, tree decl)
10673 {
10674   HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
10675   tree type = DECL_BIT_FIELD_TYPE (decl);
10676   HOST_WIDE_INT bitpos_int;
10677   HOST_WIDE_INT highest_order_object_bit_offset;
10678   HOST_WIDE_INT highest_order_field_bit_offset;
10679   HOST_WIDE_INT unsigned bit_offset;
10680
10681   /* Must be a field and a bit field.  */
10682   gcc_assert (type && TREE_CODE (decl) == FIELD_DECL);
10683
10684   /* We can't yet handle bit-fields whose offsets are variable, so if we
10685      encounter such things, just return without generating any attribute
10686      whatsoever.  Likewise for variable or too large size.  */
10687   if (! host_integerp (bit_position (decl), 0)
10688       || ! host_integerp (DECL_SIZE (decl), 1))
10689     return;
10690
10691   bitpos_int = int_bit_position (decl);
10692
10693   /* Note that the bit offset is always the distance (in bits) from the
10694      highest-order bit of the "containing object" to the highest-order bit of
10695      the bit-field itself.  Since the "high-order end" of any object or field
10696      is different on big-endian and little-endian machines, the computation
10697      below must take account of these differences.  */
10698   highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
10699   highest_order_field_bit_offset = bitpos_int;
10700
10701   if (! BYTES_BIG_ENDIAN)
10702     {
10703       highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
10704       highest_order_object_bit_offset += simple_type_size_in_bits (type);
10705     }
10706
10707   bit_offset
10708     = (! BYTES_BIG_ENDIAN
10709        ? highest_order_object_bit_offset - highest_order_field_bit_offset
10710        : highest_order_field_bit_offset - highest_order_object_bit_offset);
10711
10712   add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
10713 }
10714
10715 /* For a FIELD_DECL node which represents a bit field, output an attribute
10716    which specifies the length in bits of the given field.  */
10717
10718 static inline void
10719 add_bit_size_attribute (dw_die_ref die, tree decl)
10720 {
10721   /* Must be a field and a bit field.  */
10722   gcc_assert (TREE_CODE (decl) == FIELD_DECL
10723               && DECL_BIT_FIELD_TYPE (decl));
10724
10725   if (host_integerp (DECL_SIZE (decl), 1))
10726     add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
10727 }
10728
10729 /* If the compiled language is ANSI C, then add a 'prototyped'
10730    attribute, if arg types are given for the parameters of a function.  */
10731
10732 static inline void
10733 add_prototyped_attribute (dw_die_ref die, tree func_type)
10734 {
10735   if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
10736       && TYPE_ARG_TYPES (func_type) != NULL)
10737     add_AT_flag (die, DW_AT_prototyped, 1);
10738 }
10739
10740 /* Add an 'abstract_origin' attribute below a given DIE.  The DIE is found
10741    by looking in either the type declaration or object declaration
10742    equate table.  */
10743
10744 static inline void
10745 add_abstract_origin_attribute (dw_die_ref die, tree origin)
10746 {
10747   dw_die_ref origin_die = NULL;
10748
10749   if (TREE_CODE (origin) != FUNCTION_DECL)
10750     {
10751       /* We may have gotten separated from the block for the inlined
10752          function, if we're in an exception handler or some such; make
10753          sure that the abstract function has been written out.
10754
10755          Doing this for nested functions is wrong, however; functions are
10756          distinct units, and our context might not even be inline.  */
10757       tree fn = origin;
10758
10759       if (TYPE_P (fn))
10760         fn = TYPE_STUB_DECL (fn);
10761       
10762       fn = decl_function_context (fn);
10763       if (fn)
10764         dwarf2out_abstract_function (fn);
10765     }
10766
10767   if (DECL_P (origin))
10768     origin_die = lookup_decl_die (origin);
10769   else if (TYPE_P (origin))
10770     origin_die = lookup_type_die (origin);
10771
10772   /* XXX: Functions that are never lowered don't always have correct block
10773      trees (in the case of java, they simply have no block tree, in some other
10774      languages).  For these functions, there is nothing we can really do to
10775      output correct debug info for inlined functions in all cases.  Rather
10776      than die, we'll just produce deficient debug info now, in that we will
10777      have variables without a proper abstract origin.  In the future, when all
10778      functions are lowered, we should re-add a gcc_assert (origin_die)
10779      here.  */
10780
10781   if (origin_die)
10782       add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
10783 }
10784
10785 /* We do not currently support the pure_virtual attribute.  */
10786
10787 static inline void
10788 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
10789 {
10790   if (DECL_VINDEX (func_decl))
10791     {
10792       add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
10793
10794       if (host_integerp (DECL_VINDEX (func_decl), 0))
10795         add_AT_loc (die, DW_AT_vtable_elem_location,
10796                     new_loc_descr (DW_OP_constu,
10797                                    tree_low_cst (DECL_VINDEX (func_decl), 0),
10798                                    0));
10799
10800       /* GNU extension: Record what type this method came from originally.  */
10801       if (debug_info_level > DINFO_LEVEL_TERSE)
10802         add_AT_die_ref (die, DW_AT_containing_type,
10803                         lookup_type_die (DECL_CONTEXT (func_decl)));
10804     }
10805 }
10806 \f
10807 /* Add source coordinate attributes for the given decl.  */
10808
10809 static void
10810 add_src_coords_attributes (dw_die_ref die, tree decl)
10811 {
10812   expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
10813   unsigned file_index = lookup_filename (s.file);
10814
10815   add_AT_unsigned (die, DW_AT_decl_file, file_index);
10816   add_AT_unsigned (die, DW_AT_decl_line, s.line);
10817 }
10818
10819 /* Add a DW_AT_name attribute and source coordinate attribute for the
10820    given decl, but only if it actually has a name.  */
10821
10822 static void
10823 add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
10824 {
10825   tree decl_name;
10826
10827   decl_name = DECL_NAME (decl);
10828   if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
10829     {
10830       add_name_attribute (die, dwarf2_name (decl, 0));
10831       if (! DECL_ARTIFICIAL (decl))
10832         add_src_coords_attributes (die, decl);
10833
10834       if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
10835           && TREE_PUBLIC (decl)
10836           && DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
10837           && !DECL_ABSTRACT (decl)
10838           && !(TREE_CODE (decl) == VAR_DECL && DECL_REGISTER (decl)))
10839         add_AT_string (die, DW_AT_MIPS_linkage_name,
10840                        IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
10841     }
10842
10843 #ifdef VMS_DEBUGGING_INFO
10844   /* Get the function's name, as described by its RTL.  This may be different
10845      from the DECL_NAME name used in the source file.  */
10846   if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
10847     {
10848       add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
10849                    XEXP (DECL_RTL (decl), 0));
10850       VEC_safe_push (tree, gc, used_rtx_array, XEXP (DECL_RTL (decl), 0));
10851     }
10852 #endif
10853 }
10854
10855 /* Push a new declaration scope.  */
10856
10857 static void
10858 push_decl_scope (tree scope)
10859 {
10860   VEC_safe_push (tree, gc, decl_scope_table, scope);
10861 }
10862
10863 /* Pop a declaration scope.  */
10864
10865 static inline void
10866 pop_decl_scope (void)
10867 {
10868   VEC_pop (tree, decl_scope_table);
10869 }
10870
10871 /* Return the DIE for the scope that immediately contains this type.
10872    Non-named types get global scope.  Named types nested in other
10873    types get their containing scope if it's open, or global scope
10874    otherwise.  All other types (i.e. function-local named types) get
10875    the current active scope.  */
10876
10877 static dw_die_ref
10878 scope_die_for (tree t, dw_die_ref context_die)
10879 {
10880   dw_die_ref scope_die = NULL;
10881   tree containing_scope;
10882   int i;
10883
10884   /* Non-types always go in the current scope.  */
10885   gcc_assert (TYPE_P (t));
10886
10887   containing_scope = TYPE_CONTEXT (t);
10888
10889   /* Use the containing namespace if it was passed in (for a declaration).  */
10890   if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
10891     {
10892       if (context_die == lookup_decl_die (containing_scope))
10893         /* OK */;
10894       else
10895         containing_scope = NULL_TREE;
10896     }
10897
10898   /* Ignore function type "scopes" from the C frontend.  They mean that
10899      a tagged type is local to a parmlist of a function declarator, but
10900      that isn't useful to DWARF.  */
10901   if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
10902     containing_scope = NULL_TREE;
10903
10904   if (containing_scope == NULL_TREE)
10905     scope_die = comp_unit_die;
10906   else if (TYPE_P (containing_scope))
10907     {
10908       /* For types, we can just look up the appropriate DIE.  But
10909          first we check to see if we're in the middle of emitting it
10910          so we know where the new DIE should go.  */
10911       for (i = VEC_length (tree, decl_scope_table) - 1; i >= 0; --i)
10912         if (VEC_index (tree, decl_scope_table, i) == containing_scope)
10913           break;
10914
10915       if (i < 0)
10916         {
10917           gcc_assert (debug_info_level <= DINFO_LEVEL_TERSE
10918                       || TREE_ASM_WRITTEN (containing_scope));
10919
10920           /* If none of the current dies are suitable, we get file scope.  */
10921           scope_die = comp_unit_die;
10922         }
10923       else
10924         scope_die = lookup_type_die (containing_scope);
10925     }
10926   else
10927     scope_die = context_die;
10928
10929   return scope_die;
10930 }
10931
10932 /* Returns nonzero if CONTEXT_DIE is internal to a function.  */
10933
10934 static inline int
10935 local_scope_p (dw_die_ref context_die)
10936 {
10937   for (; context_die; context_die = context_die->die_parent)
10938     if (context_die->die_tag == DW_TAG_inlined_subroutine
10939         || context_die->die_tag == DW_TAG_subprogram)
10940       return 1;
10941
10942   return 0;
10943 }
10944
10945 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
10946    whether or not to treat a DIE in this context as a declaration.  */
10947
10948 static inline int
10949 class_or_namespace_scope_p (dw_die_ref context_die)
10950 {
10951   return (context_die
10952           && (context_die->die_tag == DW_TAG_structure_type
10953               || context_die->die_tag == DW_TAG_union_type
10954               || context_die->die_tag == DW_TAG_namespace));
10955 }
10956
10957 /* Many forms of DIEs require a "type description" attribute.  This
10958    routine locates the proper "type descriptor" die for the type given
10959    by 'type', and adds a DW_AT_type attribute below the given die.  */
10960
10961 static void
10962 add_type_attribute (dw_die_ref object_die, tree type, int decl_const,
10963                     int decl_volatile, dw_die_ref context_die)
10964 {
10965   enum tree_code code  = TREE_CODE (type);
10966   dw_die_ref type_die  = NULL;
10967
10968   /* ??? If this type is an unnamed subrange type of an integral or
10969      floating-point type, use the inner type.  This is because we have no
10970      support for unnamed types in base_type_die.  This can happen if this is
10971      an Ada subrange type.  Correct solution is emit a subrange type die.  */
10972   if ((code == INTEGER_TYPE || code == REAL_TYPE)
10973       && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
10974     type = TREE_TYPE (type), code = TREE_CODE (type);
10975
10976   if (code == ERROR_MARK
10977       /* Handle a special case.  For functions whose return type is void, we
10978          generate *no* type attribute.  (Note that no object may have type
10979          `void', so this only applies to function return types).  */
10980       || code == VOID_TYPE)
10981     return;
10982
10983   type_die = modified_type_die (type,
10984                                 decl_const || TYPE_READONLY (type),
10985                                 decl_volatile || TYPE_VOLATILE (type),
10986                                 context_die);
10987
10988   if (type_die != NULL)
10989     add_AT_die_ref (object_die, DW_AT_type, type_die);
10990 }
10991
10992 /* Given an object die, add the calling convention attribute for the
10993    function call type.  */
10994 static void
10995 add_calling_convention_attribute (dw_die_ref subr_die, tree type)
10996 {
10997   enum dwarf_calling_convention value = DW_CC_normal;
10998
10999   value = targetm.dwarf_calling_convention (type);
11000
11001   /* Only add the attribute if the backend requests it, and
11002      is not DW_CC_normal.  */
11003   if (value && (value != DW_CC_normal))
11004     add_AT_unsigned (subr_die, DW_AT_calling_convention, value);
11005 }
11006
11007 /* Given a tree pointer to a struct, class, union, or enum type node, return
11008    a pointer to the (string) tag name for the given type, or zero if the type
11009    was declared without a tag.  */
11010
11011 static const char *
11012 type_tag (tree type)
11013 {
11014   const char *name = 0;
11015
11016   if (TYPE_NAME (type) != 0)
11017     {
11018       tree t = 0;
11019
11020       /* Find the IDENTIFIER_NODE for the type name.  */
11021       if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
11022         t = TYPE_NAME (type);
11023
11024       /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
11025          a TYPE_DECL node, regardless of whether or not a `typedef' was
11026          involved.  */
11027       else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11028                && ! DECL_IGNORED_P (TYPE_NAME (type)))
11029         t = DECL_NAME (TYPE_NAME (type));
11030
11031       /* Now get the name as a string, or invent one.  */
11032       if (t != 0)
11033         name = IDENTIFIER_POINTER (t);
11034     }
11035
11036   return (name == 0 || *name == '\0') ? 0 : name;
11037 }
11038
11039 /* Return the type associated with a data member, make a special check
11040    for bit field types.  */
11041
11042 static inline tree
11043 member_declared_type (tree member)
11044 {
11045   return (DECL_BIT_FIELD_TYPE (member)
11046           ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
11047 }
11048
11049 /* Get the decl's label, as described by its RTL. This may be different
11050    from the DECL_NAME name used in the source file.  */
11051
11052 #if 0
11053 static const char *
11054 decl_start_label (tree decl)
11055 {
11056   rtx x;
11057   const char *fnname;
11058
11059   x = DECL_RTL (decl);
11060   gcc_assert (MEM_P (x));
11061
11062   x = XEXP (x, 0);
11063   gcc_assert (GET_CODE (x) == SYMBOL_REF);
11064
11065   fnname = XSTR (x, 0);
11066   return fnname;
11067 }
11068 #endif
11069 \f
11070 /* These routines generate the internal representation of the DIE's for
11071    the compilation unit.  Debugging information is collected by walking
11072    the declaration trees passed in from dwarf2out_decl().  */
11073
11074 static void
11075 gen_array_type_die (tree type, dw_die_ref context_die)
11076 {
11077   dw_die_ref scope_die = scope_die_for (type, context_die);
11078   dw_die_ref array_die;
11079   tree element_type;
11080
11081   /* ??? The SGI dwarf reader fails for array of array of enum types unless
11082      the inner array type comes before the outer array type.  Thus we must
11083      call gen_type_die before we call new_die.  See below also.  */
11084 #ifdef MIPS_DEBUGGING_INFO
11085   gen_type_die (TREE_TYPE (type), context_die);
11086 #endif
11087
11088   array_die = new_die (DW_TAG_array_type, scope_die, type);
11089   add_name_attribute (array_die, type_tag (type));
11090   equate_type_number_to_die (type, array_die);
11091
11092   if (TREE_CODE (type) == VECTOR_TYPE)
11093     {
11094       /* The frontend feeds us a representation for the vector as a struct
11095          containing an array.  Pull out the array type.  */
11096       type = TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type)));
11097       add_AT_flag (array_die, DW_AT_GNU_vector, 1);
11098     }
11099
11100 #if 0
11101   /* We default the array ordering.  SDB will probably do
11102      the right things even if DW_AT_ordering is not present.  It's not even
11103      an issue until we start to get into multidimensional arrays anyway.  If
11104      SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
11105      then we'll have to put the DW_AT_ordering attribute back in.  (But if
11106      and when we find out that we need to put these in, we will only do so
11107      for multidimensional arrays.  */
11108   add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
11109 #endif
11110
11111 #ifdef MIPS_DEBUGGING_INFO
11112   /* The SGI compilers handle arrays of unknown bound by setting
11113      AT_declaration and not emitting any subrange DIEs.  */
11114   if (! TYPE_DOMAIN (type))
11115     add_AT_flag (array_die, DW_AT_declaration, 1);
11116   else
11117 #endif
11118     add_subscript_info (array_die, type);
11119
11120   /* Add representation of the type of the elements of this array type.  */
11121   element_type = TREE_TYPE (type);
11122
11123   /* ??? The SGI dwarf reader fails for multidimensional arrays with a
11124      const enum type.  E.g. const enum machine_mode insn_operand_mode[2][10].
11125      We work around this by disabling this feature.  See also
11126      add_subscript_info.  */
11127 #ifndef MIPS_DEBUGGING_INFO
11128   while (TREE_CODE (element_type) == ARRAY_TYPE)
11129     element_type = TREE_TYPE (element_type);
11130
11131   gen_type_die (element_type, context_die);
11132 #endif
11133
11134   add_type_attribute (array_die, element_type, 0, 0, context_die);
11135 }
11136
11137 #if 0
11138 static void
11139 gen_entry_point_die (tree decl, dw_die_ref context_die)
11140 {
11141   tree origin = decl_ultimate_origin (decl);
11142   dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
11143
11144   if (origin != NULL)
11145     add_abstract_origin_attribute (decl_die, origin);
11146   else
11147     {
11148       add_name_and_src_coords_attributes (decl_die, decl);
11149       add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
11150                           0, 0, context_die);
11151     }
11152
11153   if (DECL_ABSTRACT (decl))
11154     equate_decl_number_to_die (decl, decl_die);
11155   else
11156     add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
11157 }
11158 #endif
11159
11160 /* Walk through the list of incomplete types again, trying once more to
11161    emit full debugging info for them.  */
11162
11163 static void
11164 retry_incomplete_types (void)
11165 {
11166   int i;
11167
11168   for (i = VEC_length (tree, incomplete_types) - 1; i >= 0; i--)
11169     gen_type_die (VEC_index (tree, incomplete_types, i), comp_unit_die);
11170 }
11171
11172 /* Generate a DIE to represent an inlined instance of an enumeration type.  */
11173
11174 static void
11175 gen_inlined_enumeration_type_die (tree type, dw_die_ref context_die)
11176 {
11177   dw_die_ref type_die = new_die (DW_TAG_enumeration_type, context_die, type);
11178
11179   /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11180      be incomplete and such types are not marked.  */
11181   add_abstract_origin_attribute (type_die, type);
11182 }
11183
11184 /* Generate a DIE to represent an inlined instance of a structure type.  */
11185
11186 static void
11187 gen_inlined_structure_type_die (tree type, dw_die_ref context_die)
11188 {
11189   dw_die_ref type_die = new_die (DW_TAG_structure_type, context_die, type);
11190
11191   /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11192      be incomplete and such types are not marked.  */
11193   add_abstract_origin_attribute (type_die, type);
11194 }
11195
11196 /* Generate a DIE to represent an inlined instance of a union type.  */
11197
11198 static void
11199 gen_inlined_union_type_die (tree type, dw_die_ref context_die)
11200 {
11201   dw_die_ref type_die = new_die (DW_TAG_union_type, context_die, type);
11202
11203   /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
11204      be incomplete and such types are not marked.  */
11205   add_abstract_origin_attribute (type_die, type);
11206 }
11207
11208 /* Generate a DIE to represent an enumeration type.  Note that these DIEs
11209    include all of the information about the enumeration values also. Each
11210    enumerated type name/value is listed as a child of the enumerated type
11211    DIE.  */
11212
11213 static dw_die_ref
11214 gen_enumeration_type_die (tree type, dw_die_ref context_die)
11215 {
11216   dw_die_ref type_die = lookup_type_die (type);
11217
11218   if (type_die == NULL)
11219     {
11220       type_die = new_die (DW_TAG_enumeration_type,
11221                           scope_die_for (type, context_die), type);
11222       equate_type_number_to_die (type, type_die);
11223       add_name_attribute (type_die, type_tag (type));
11224     }
11225   else if (! TYPE_SIZE (type))
11226     return type_die;
11227   else
11228     remove_AT (type_die, DW_AT_declaration);
11229
11230   /* Handle a GNU C/C++ extension, i.e. incomplete enum types.  If the
11231      given enum type is incomplete, do not generate the DW_AT_byte_size
11232      attribute or the DW_AT_element_list attribute.  */
11233   if (TYPE_SIZE (type))
11234     {
11235       tree link;
11236
11237       TREE_ASM_WRITTEN (type) = 1;
11238       add_byte_size_attribute (type_die, type);
11239       if (TYPE_STUB_DECL (type) != NULL_TREE)
11240         add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
11241
11242       /* If the first reference to this type was as the return type of an
11243          inline function, then it may not have a parent.  Fix this now.  */
11244       if (type_die->die_parent == NULL)
11245         add_child_die (scope_die_for (type, context_die), type_die);
11246
11247       for (link = TYPE_VALUES (type);
11248            link != NULL; link = TREE_CHAIN (link))
11249         {
11250           dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
11251           tree value = TREE_VALUE (link);
11252
11253           add_name_attribute (enum_die,
11254                               IDENTIFIER_POINTER (TREE_PURPOSE (link)));
11255
11256           if (host_integerp (value, TYPE_UNSIGNED (TREE_TYPE (value))))
11257             /* DWARF2 does not provide a way of indicating whether or
11258                not enumeration constants are signed or unsigned.  GDB
11259                always assumes the values are signed, so we output all
11260                values as if they were signed.  That means that
11261                enumeration constants with very large unsigned values
11262                will appear to have negative values in the debugger.  */
11263             add_AT_int (enum_die, DW_AT_const_value,
11264                         tree_low_cst (value, tree_int_cst_sgn (value) > 0));
11265         }
11266     }
11267   else
11268     add_AT_flag (type_die, DW_AT_declaration, 1);
11269
11270   return type_die;
11271 }
11272
11273 /* Generate a DIE to represent either a real live formal parameter decl or to
11274    represent just the type of some formal parameter position in some function
11275    type.
11276
11277    Note that this routine is a bit unusual because its argument may be a
11278    ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
11279    represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
11280    node.  If it's the former then this function is being called to output a
11281    DIE to represent a formal parameter object (or some inlining thereof).  If
11282    it's the latter, then this function is only being called to output a
11283    DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
11284    argument type of some subprogram type.  */
11285
11286 static dw_die_ref
11287 gen_formal_parameter_die (tree node, dw_die_ref context_die)
11288 {
11289   dw_die_ref parm_die
11290     = new_die (DW_TAG_formal_parameter, context_die, node);
11291   tree origin;
11292
11293   switch (TREE_CODE_CLASS (TREE_CODE (node)))
11294     {
11295     case tcc_declaration:
11296       origin = decl_ultimate_origin (node);
11297       if (origin != NULL)
11298         add_abstract_origin_attribute (parm_die, origin);
11299       else
11300         {
11301           add_name_and_src_coords_attributes (parm_die, node);
11302           add_type_attribute (parm_die, TREE_TYPE (node),
11303                               TREE_READONLY (node),
11304                               TREE_THIS_VOLATILE (node),
11305                               context_die);
11306           if (DECL_ARTIFICIAL (node))
11307             add_AT_flag (parm_die, DW_AT_artificial, 1);
11308         }
11309
11310       equate_decl_number_to_die (node, parm_die);
11311       if (! DECL_ABSTRACT (node))
11312         add_location_or_const_value_attribute (parm_die, node, DW_AT_location);
11313
11314       break;
11315
11316     case tcc_type:
11317       /* We were called with some kind of a ..._TYPE node.  */
11318       add_type_attribute (parm_die, node, 0, 0, context_die);
11319       break;
11320
11321     default:
11322       gcc_unreachable ();
11323     }
11324
11325   return parm_die;
11326 }
11327
11328 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
11329    at the end of an (ANSI prototyped) formal parameters list.  */
11330
11331 static void
11332 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
11333 {
11334   new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
11335 }
11336
11337 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
11338    DW_TAG_unspecified_parameters DIE) to represent the types of the formal
11339    parameters as specified in some function type specification (except for
11340    those which appear as part of a function *definition*).  */
11341
11342 static void
11343 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
11344 {
11345   tree link;
11346   tree formal_type = NULL;
11347   tree first_parm_type;
11348   tree arg;
11349
11350   if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
11351     {
11352       arg = DECL_ARGUMENTS (function_or_method_type);
11353       function_or_method_type = TREE_TYPE (function_or_method_type);
11354     }
11355   else
11356     arg = NULL_TREE;
11357
11358   first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
11359
11360   /* Make our first pass over the list of formal parameter types and output a
11361      DW_TAG_formal_parameter DIE for each one.  */
11362   for (link = first_parm_type; link; )
11363     {
11364       dw_die_ref parm_die;
11365
11366       formal_type = TREE_VALUE (link);
11367       if (formal_type == void_type_node)
11368         break;
11369
11370       /* Output a (nameless) DIE to represent the formal parameter itself.  */
11371       parm_die = gen_formal_parameter_die (formal_type, context_die);
11372       if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
11373            && link == first_parm_type)
11374           || (arg && DECL_ARTIFICIAL (arg)))
11375         add_AT_flag (parm_die, DW_AT_artificial, 1);
11376
11377       link = TREE_CHAIN (link);
11378       if (arg)
11379         arg = TREE_CHAIN (arg);
11380     }
11381
11382   /* If this function type has an ellipsis, add a
11383      DW_TAG_unspecified_parameters DIE to the end of the parameter list.  */
11384   if (formal_type != void_type_node)
11385     gen_unspecified_parameters_die (function_or_method_type, context_die);
11386
11387   /* Make our second (and final) pass over the list of formal parameter types
11388      and output DIEs to represent those types (as necessary).  */
11389   for (link = TYPE_ARG_TYPES (function_or_method_type);
11390        link && TREE_VALUE (link);
11391        link = TREE_CHAIN (link))
11392     gen_type_die (TREE_VALUE (link), context_die);
11393 }
11394
11395 /* We want to generate the DIE for TYPE so that we can generate the
11396    die for MEMBER, which has been defined; we will need to refer back
11397    to the member declaration nested within TYPE.  If we're trying to
11398    generate minimal debug info for TYPE, processing TYPE won't do the
11399    trick; we need to attach the member declaration by hand.  */
11400
11401 static void
11402 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
11403 {
11404   gen_type_die (type, context_die);
11405
11406   /* If we're trying to avoid duplicate debug info, we may not have
11407      emitted the member decl for this function.  Emit it now.  */
11408   if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
11409       && ! lookup_decl_die (member))
11410     {
11411       dw_die_ref type_die;
11412       gcc_assert (!decl_ultimate_origin (member));
11413
11414       push_decl_scope (type);
11415       type_die = lookup_type_die (type);
11416       if (TREE_CODE (member) == FUNCTION_DECL)
11417         gen_subprogram_die (member, type_die);
11418       else if (TREE_CODE (member) == FIELD_DECL)
11419         {
11420           /* Ignore the nameless fields that are used to skip bits but handle
11421              C++ anonymous unions and structs.  */
11422           if (DECL_NAME (member) != NULL_TREE
11423               || TREE_CODE (TREE_TYPE (member)) == UNION_TYPE
11424               || TREE_CODE (TREE_TYPE (member)) == RECORD_TYPE)
11425             {
11426               gen_type_die (member_declared_type (member), type_die);
11427               gen_field_die (member, type_die);
11428             }
11429         }
11430       else
11431         gen_variable_die (member, type_die);
11432
11433       pop_decl_scope ();
11434     }
11435 }
11436
11437 /* Generate the DWARF2 info for the "abstract" instance of a function which we
11438    may later generate inlined and/or out-of-line instances of.  */
11439
11440 static void
11441 dwarf2out_abstract_function (tree decl)
11442 {
11443   dw_die_ref old_die;
11444   tree save_fn;
11445   tree context;
11446   int was_abstract = DECL_ABSTRACT (decl);
11447
11448   /* Make sure we have the actual abstract inline, not a clone.  */
11449   decl = DECL_ORIGIN (decl);
11450
11451   old_die = lookup_decl_die (decl);
11452   if (old_die && get_AT (old_die, DW_AT_inline))
11453     /* We've already generated the abstract instance.  */
11454     return;
11455
11456   /* Be sure we've emitted the in-class declaration DIE (if any) first, so
11457      we don't get confused by DECL_ABSTRACT.  */
11458   if (debug_info_level > DINFO_LEVEL_TERSE)
11459     {
11460       context = decl_class_context (decl);
11461       if (context)
11462         gen_type_die_for_member
11463           (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
11464     }
11465
11466   /* Pretend we've just finished compiling this function.  */
11467   save_fn = current_function_decl;
11468   current_function_decl = decl;
11469
11470   set_decl_abstract_flags (decl, 1);
11471   dwarf2out_decl (decl);
11472   if (! was_abstract)
11473     set_decl_abstract_flags (decl, 0);
11474
11475   current_function_decl = save_fn;
11476 }
11477
11478 /* Helper function of premark_used_types() which gets called through
11479    htab_traverse_resize().
11480
11481    Marks the DIE of a given type in *SLOT as perennial, so it never gets
11482    marked as unused by prune_unused_types.  */
11483 static int
11484 premark_used_types_helper (void **slot, void *data ATTRIBUTE_UNUSED)
11485 {
11486   tree type;
11487   dw_die_ref die;
11488
11489   type = *slot;
11490   die = lookup_type_die (type);
11491   if (die != NULL)
11492     die->die_perennial_p = 1;
11493   return 1;
11494 }
11495
11496 /* Mark all members of used_types_hash as perennial.  */
11497 static void
11498 premark_used_types (void)
11499 {
11500   if (cfun && cfun->used_types_hash)
11501     htab_traverse (cfun->used_types_hash, premark_used_types_helper, NULL);
11502 }
11503
11504 /* Generate a DIE to represent a declared function (either file-scope or
11505    block-local).  */
11506
11507 static void
11508 gen_subprogram_die (tree decl, dw_die_ref context_die)
11509 {
11510   char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
11511   tree origin = decl_ultimate_origin (decl);
11512   dw_die_ref subr_die;
11513   tree fn_arg_types;
11514   tree outer_scope;
11515   dw_die_ref old_die = lookup_decl_die (decl);
11516   int declaration = (current_function_decl != decl
11517                      || class_or_namespace_scope_p (context_die));
11518
11519   premark_used_types();
11520
11521   /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
11522      started to generate the abstract instance of an inline, decided to output
11523      its containing class, and proceeded to emit the declaration of the inline
11524      from the member list for the class.  If so, DECLARATION takes priority;
11525      we'll get back to the abstract instance when done with the class.  */
11526
11527   /* The class-scope declaration DIE must be the primary DIE.  */
11528   if (origin && declaration && class_or_namespace_scope_p (context_die))
11529     {
11530       origin = NULL;
11531       gcc_assert (!old_die);
11532     }
11533
11534   /* Now that the C++ front end lazily declares artificial member fns, we
11535      might need to retrofit the declaration into its class.  */
11536   if (!declaration && !origin && !old_die
11537       && DECL_CONTEXT (decl) && TYPE_P (DECL_CONTEXT (decl))
11538       && !class_or_namespace_scope_p (context_die)
11539       && debug_info_level > DINFO_LEVEL_TERSE)
11540     old_die = force_decl_die (decl);
11541
11542   if (origin != NULL)
11543     {
11544       gcc_assert (!declaration || local_scope_p (context_die));
11545
11546       /* Fixup die_parent for the abstract instance of a nested
11547          inline function.  */
11548       if (old_die && old_die->die_parent == NULL)
11549         add_child_die (context_die, old_die);
11550
11551       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11552       add_abstract_origin_attribute (subr_die, origin);
11553     }
11554   else if (old_die)
11555     {
11556       expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
11557       unsigned file_index = lookup_filename (s.file);
11558
11559       if (!get_AT_flag (old_die, DW_AT_declaration)
11560           /* We can have a normal definition following an inline one in the
11561              case of redefinition of GNU C extern inlines.
11562              It seems reasonable to use AT_specification in this case.  */
11563           && !get_AT (old_die, DW_AT_inline))
11564         {
11565           /* Detect and ignore this case, where we are trying to output
11566              something we have already output.  */
11567           return;
11568         }
11569
11570       /* If the definition comes from the same place as the declaration,
11571          maybe use the old DIE.  We always want the DIE for this function
11572          that has the *_pc attributes to be under comp_unit_die so the
11573          debugger can find it.  We also need to do this for abstract
11574          instances of inlines, since the spec requires the out-of-line copy
11575          to have the same parent.  For local class methods, this doesn't
11576          apply; we just use the old DIE.  */
11577       if ((old_die->die_parent == comp_unit_die || context_die == NULL)
11578           && (DECL_ARTIFICIAL (decl)
11579               || (get_AT_unsigned (old_die, DW_AT_decl_file) == file_index
11580                   && (get_AT_unsigned (old_die, DW_AT_decl_line)
11581                       == (unsigned) s.line))))
11582         {
11583           subr_die = old_die;
11584
11585           /* Clear out the declaration attribute and the formal parameters.
11586              Do not remove all children, because it is possible that this
11587              declaration die was forced using force_decl_die(). In such
11588              cases die that forced declaration die (e.g. TAG_imported_module)
11589              is one of the children that we do not want to remove.  */
11590           remove_AT (subr_die, DW_AT_declaration);
11591           remove_child_TAG (subr_die, DW_TAG_formal_parameter);
11592         }
11593       else
11594         {
11595           subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11596           add_AT_specification (subr_die, old_die);
11597           if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
11598             add_AT_unsigned (subr_die, DW_AT_decl_file, file_index);
11599           if (get_AT_unsigned (old_die, DW_AT_decl_line)
11600               != (unsigned) s.line)
11601             add_AT_unsigned
11602               (subr_die, DW_AT_decl_line, s.line);
11603         }
11604     }
11605   else
11606     {
11607       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
11608
11609       if (TREE_PUBLIC (decl))
11610         add_AT_flag (subr_die, DW_AT_external, 1);
11611
11612       add_name_and_src_coords_attributes (subr_die, decl);
11613       if (debug_info_level > DINFO_LEVEL_TERSE)
11614         {
11615           add_prototyped_attribute (subr_die, TREE_TYPE (decl));
11616           add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
11617                               0, 0, context_die);
11618         }
11619
11620       add_pure_or_virtual_attribute (subr_die, decl);
11621       if (DECL_ARTIFICIAL (decl))
11622         add_AT_flag (subr_die, DW_AT_artificial, 1);
11623
11624       if (TREE_PROTECTED (decl))
11625         add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
11626       else if (TREE_PRIVATE (decl))
11627         add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
11628     }
11629
11630   if (declaration)
11631     {
11632       if (!old_die || !get_AT (old_die, DW_AT_inline))
11633         {
11634           add_AT_flag (subr_die, DW_AT_declaration, 1);
11635
11636           /* The first time we see a member function, it is in the context of
11637              the class to which it belongs.  We make sure of this by emitting
11638              the class first.  The next time is the definition, which is
11639              handled above.  The two may come from the same source text.
11640
11641              Note that force_decl_die() forces function declaration die. It is
11642              later reused to represent definition.  */
11643           equate_decl_number_to_die (decl, subr_die);
11644         }
11645     }
11646   else if (DECL_ABSTRACT (decl))
11647     {
11648       if (DECL_DECLARED_INLINE_P (decl))
11649         {
11650           if (cgraph_function_possibly_inlined_p (decl))
11651             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
11652           else
11653             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
11654         }
11655       else
11656         {
11657           if (cgraph_function_possibly_inlined_p (decl))
11658             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
11659           else
11660             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_not_inlined);
11661         }
11662
11663       equate_decl_number_to_die (decl, subr_die);
11664     }
11665   else if (!DECL_EXTERNAL (decl))
11666     {
11667       HOST_WIDE_INT cfa_fb_offset;
11668
11669       if (!old_die || !get_AT (old_die, DW_AT_inline))
11670         equate_decl_number_to_die (decl, subr_die);
11671
11672       if (!flag_reorder_blocks_and_partition)
11673         {
11674           ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
11675                                        current_function_funcdef_no);
11676           add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
11677           ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
11678                                        current_function_funcdef_no);
11679           add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
11680           
11681           add_pubname (decl, subr_die);
11682           add_arange (decl, subr_die);
11683         }
11684       else
11685         {  /* Do nothing for now; maybe need to duplicate die, one for
11686               hot section and ond for cold section, then use the hot/cold
11687               section begin/end labels to generate the aranges...  */
11688           /*
11689             add_AT_lbl_id (subr_die, DW_AT_low_pc, hot_section_label);
11690             add_AT_lbl_id (subr_die, DW_AT_high_pc, hot_section_end_label);
11691             add_AT_lbl_id (subr_die, DW_AT_lo_user, unlikely_section_label);
11692             add_AT_lbl_id (subr_die, DW_AT_hi_user, cold_section_end_label);
11693
11694             add_pubname (decl, subr_die);
11695             add_arange (decl, subr_die);
11696             add_arange (decl, subr_die);
11697            */
11698         }
11699
11700 #ifdef MIPS_DEBUGGING_INFO
11701       /* Add a reference to the FDE for this routine.  */
11702       add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
11703 #endif
11704
11705       cfa_fb_offset = CFA_FRAME_BASE_OFFSET (decl);
11706
11707       /* We define the "frame base" as the function's CFA.  This is more
11708          convenient for several reasons: (1) It's stable across the prologue
11709          and epilogue, which makes it better than just a frame pointer,
11710          (2) With dwarf3, there exists a one-byte encoding that allows us
11711          to reference the .debug_frame data by proxy, but failing that,
11712          (3) We can at least reuse the code inspection and interpretation
11713          code that determines the CFA position at various points in the
11714          function.  */
11715       /* ??? Use some command-line or configury switch to enable the use
11716          of dwarf3 DW_OP_call_frame_cfa.  At present there are no dwarf
11717          consumers that understand it; fall back to "pure" dwarf2 and
11718          convert the CFA data into a location list.  */
11719       {
11720         dw_loc_list_ref list = convert_cfa_to_fb_loc_list (cfa_fb_offset);
11721         if (list->dw_loc_next)
11722           add_AT_loc_list (subr_die, DW_AT_frame_base, list);
11723         else
11724           add_AT_loc (subr_die, DW_AT_frame_base, list->expr);
11725       }
11726
11727       /* Compute a displacement from the "steady-state frame pointer" to
11728          the CFA.  The former is what all stack slots and argument slots
11729          will reference in the rtl; the later is what we've told the 
11730          debugger about.  We'll need to adjust all frame_base references
11731          by this displacement.  */
11732       compute_frame_pointer_to_fb_displacement (cfa_fb_offset);
11733
11734       if (cfun->static_chain_decl)
11735         add_AT_location_description (subr_die, DW_AT_static_link,
11736                  loc_descriptor_from_tree (cfun->static_chain_decl));
11737     }
11738
11739   /* Now output descriptions of the arguments for this function. This gets
11740      (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
11741      for a FUNCTION_DECL doesn't indicate cases where there was a trailing
11742      `...' at the end of the formal parameter list.  In order to find out if
11743      there was a trailing ellipsis or not, we must instead look at the type
11744      associated with the FUNCTION_DECL.  This will be a node of type
11745      FUNCTION_TYPE. If the chain of type nodes hanging off of this
11746      FUNCTION_TYPE node ends with a void_type_node then there should *not* be
11747      an ellipsis at the end.  */
11748
11749   /* In the case where we are describing a mere function declaration, all we
11750      need to do here (and all we *can* do here) is to describe the *types* of
11751      its formal parameters.  */
11752   if (debug_info_level <= DINFO_LEVEL_TERSE)
11753     ;
11754   else if (declaration)
11755     gen_formal_types_die (decl, subr_die);
11756   else
11757     {
11758       /* Generate DIEs to represent all known formal parameters.  */
11759       tree arg_decls = DECL_ARGUMENTS (decl);
11760       tree parm;
11761
11762       /* When generating DIEs, generate the unspecified_parameters DIE
11763          instead if we come across the arg "__builtin_va_alist" */
11764       for (parm = arg_decls; parm; parm = TREE_CHAIN (parm))
11765         if (TREE_CODE (parm) == PARM_DECL)
11766           {
11767             if (DECL_NAME (parm)
11768                 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm)),
11769                             "__builtin_va_alist"))
11770               gen_unspecified_parameters_die (parm, subr_die);
11771             else
11772               gen_decl_die (parm, subr_die);
11773           }
11774
11775       /* Decide whether we need an unspecified_parameters DIE at the end.
11776          There are 2 more cases to do this for: 1) the ansi ... declaration -
11777          this is detectable when the end of the arg list is not a
11778          void_type_node 2) an unprototyped function declaration (not a
11779          definition).  This just means that we have no info about the
11780          parameters at all.  */
11781       fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
11782       if (fn_arg_types != NULL)
11783         {
11784           /* This is the prototyped case, check for....  */
11785           if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
11786             gen_unspecified_parameters_die (decl, subr_die);
11787         }
11788       else if (DECL_INITIAL (decl) == NULL_TREE)
11789         gen_unspecified_parameters_die (decl, subr_die);
11790     }
11791
11792   /* Output Dwarf info for all of the stuff within the body of the function
11793      (if it has one - it may be just a declaration).  */
11794   outer_scope = DECL_INITIAL (decl);
11795
11796   /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
11797      a function.  This BLOCK actually represents the outermost binding contour
11798      for the function, i.e. the contour in which the function's formal
11799      parameters and labels get declared. Curiously, it appears that the front
11800      end doesn't actually put the PARM_DECL nodes for the current function onto
11801      the BLOCK_VARS list for this outer scope, but are strung off of the
11802      DECL_ARGUMENTS list for the function instead.
11803
11804      The BLOCK_VARS list for the `outer_scope' does provide us with a list of
11805      the LABEL_DECL nodes for the function however, and we output DWARF info
11806      for those in decls_for_scope.  Just within the `outer_scope' there will be
11807      a BLOCK node representing the function's outermost pair of curly braces,
11808      and any blocks used for the base and member initializers of a C++
11809      constructor function.  */
11810   if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
11811     {
11812       /* Emit a DW_TAG_variable DIE for a named return value.  */
11813       if (DECL_NAME (DECL_RESULT (decl)))
11814         gen_decl_die (DECL_RESULT (decl), subr_die);
11815
11816       current_function_has_inlines = 0;
11817       decls_for_scope (outer_scope, subr_die, 0);
11818
11819 #if 0 && defined (MIPS_DEBUGGING_INFO)
11820       if (current_function_has_inlines)
11821         {
11822           add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
11823           if (! comp_unit_has_inlines)
11824             {
11825               add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
11826               comp_unit_has_inlines = 1;
11827             }
11828         }
11829 #endif
11830     }
11831   /* Add the calling convention attribute if requested.  */
11832   add_calling_convention_attribute (subr_die, TREE_TYPE (decl));
11833
11834 }
11835
11836 /* Generate a DIE to represent a declared data object.  */
11837
11838 static void
11839 gen_variable_die (tree decl, dw_die_ref context_die)
11840 {
11841   tree origin = decl_ultimate_origin (decl);
11842   dw_die_ref var_die = new_die (DW_TAG_variable, context_die, decl);
11843
11844   dw_die_ref old_die = lookup_decl_die (decl);
11845   int declaration = (DECL_EXTERNAL (decl)
11846                      /* If DECL is COMDAT and has not actually been
11847                         emitted, we cannot take its address; there
11848                         might end up being no definition anywhere in
11849                         the program.  For example, consider the C++
11850                         test case:
11851
11852                           template <class T>
11853                           struct S { static const int i = 7; };
11854
11855                           template <class T>
11856                           const int S<T>::i;
11857
11858                           int f() { return S<int>::i; }
11859                           
11860                         Here, S<int>::i is not DECL_EXTERNAL, but no
11861                         definition is required, so the compiler will
11862                         not emit a definition.  */  
11863                      || (TREE_CODE (decl) == VAR_DECL
11864                          && DECL_COMDAT (decl) && !TREE_ASM_WRITTEN (decl))
11865                      || class_or_namespace_scope_p (context_die));
11866
11867   if (origin != NULL)
11868     add_abstract_origin_attribute (var_die, origin);
11869
11870   /* Loop unrolling can create multiple blocks that refer to the same
11871      static variable, so we must test for the DW_AT_declaration flag.
11872
11873      ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
11874      copy decls and set the DECL_ABSTRACT flag on them instead of
11875      sharing them.
11876
11877      ??? Duplicated blocks have been rewritten to use .debug_ranges.
11878
11879      ??? The declare_in_namespace support causes us to get two DIEs for one
11880      variable, both of which are declarations.  We want to avoid considering
11881      one to be a specification, so we must test that this DIE is not a
11882      declaration.  */
11883   else if (old_die && TREE_STATIC (decl) && ! declaration
11884            && get_AT_flag (old_die, DW_AT_declaration) == 1)
11885     {
11886       /* This is a definition of a C++ class level static.  */
11887       add_AT_specification (var_die, old_die);
11888       if (DECL_NAME (decl))
11889         {
11890           expanded_location s = expand_location (DECL_SOURCE_LOCATION (decl));
11891           unsigned file_index = lookup_filename (s.file);
11892
11893           if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
11894             add_AT_unsigned (var_die, DW_AT_decl_file, file_index);
11895
11896           if (get_AT_unsigned (old_die, DW_AT_decl_line)
11897               != (unsigned) s.line)
11898
11899             add_AT_unsigned (var_die, DW_AT_decl_line, s.line);
11900         }
11901     }
11902   else
11903     {
11904       add_name_and_src_coords_attributes (var_die, decl);
11905       add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
11906                           TREE_THIS_VOLATILE (decl), context_die);
11907
11908       if (TREE_PUBLIC (decl))
11909         add_AT_flag (var_die, DW_AT_external, 1);
11910
11911       if (DECL_ARTIFICIAL (decl))
11912         add_AT_flag (var_die, DW_AT_artificial, 1);
11913
11914       if (TREE_PROTECTED (decl))
11915         add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
11916       else if (TREE_PRIVATE (decl))
11917         add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
11918     }
11919
11920   if (declaration)
11921     add_AT_flag (var_die, DW_AT_declaration, 1);
11922
11923   if (DECL_ABSTRACT (decl) || declaration)
11924     equate_decl_number_to_die (decl, var_die);
11925
11926   if (! declaration && ! DECL_ABSTRACT (decl))
11927     {
11928       add_location_or_const_value_attribute (var_die, decl, DW_AT_location);
11929       add_pubname (decl, var_die);
11930     }
11931   else
11932     tree_add_const_value_attribute (var_die, decl);
11933 }
11934
11935 /* Generate a DIE to represent a label identifier.  */
11936
11937 static void
11938 gen_label_die (tree decl, dw_die_ref context_die)
11939 {
11940   tree origin = decl_ultimate_origin (decl);
11941   dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
11942   rtx insn;
11943   char label[MAX_ARTIFICIAL_LABEL_BYTES];
11944
11945   if (origin != NULL)
11946     add_abstract_origin_attribute (lbl_die, origin);
11947   else
11948     add_name_and_src_coords_attributes (lbl_die, decl);
11949
11950   if (DECL_ABSTRACT (decl))
11951     equate_decl_number_to_die (decl, lbl_die);
11952   else
11953     {
11954       insn = DECL_RTL_IF_SET (decl);
11955
11956       /* Deleted labels are programmer specified labels which have been
11957          eliminated because of various optimizations.  We still emit them
11958          here so that it is possible to put breakpoints on them.  */
11959       if (insn
11960           && (LABEL_P (insn)
11961               || ((NOTE_P (insn)
11962                    && NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL))))
11963         {
11964           /* When optimization is enabled (via -O) some parts of the compiler
11965              (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
11966              represent source-level labels which were explicitly declared by
11967              the user.  This really shouldn't be happening though, so catch
11968              it if it ever does happen.  */
11969           gcc_assert (!INSN_DELETED_P (insn));
11970
11971           ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
11972           add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
11973         }
11974     }
11975 }
11976
11977 /* A helper function for gen_inlined_subroutine_die.  Add source coordinate
11978    attributes to the DIE for a block STMT, to describe where the inlined
11979    function was called from.  This is similar to add_src_coords_attributes.  */
11980
11981 static inline void
11982 add_call_src_coords_attributes (tree stmt, dw_die_ref die)
11983 {
11984   expanded_location s = expand_location (BLOCK_SOURCE_LOCATION (stmt));
11985   unsigned file_index = lookup_filename (s.file);
11986
11987   add_AT_unsigned (die, DW_AT_call_file, file_index);
11988   add_AT_unsigned (die, DW_AT_call_line, s.line);
11989 }
11990
11991 /* A helper function for gen_lexical_block_die and gen_inlined_subroutine_die.
11992    Add low_pc and high_pc attributes to the DIE for a block STMT.  */
11993
11994 static inline void
11995 add_high_low_attributes (tree stmt, dw_die_ref die)
11996 {
11997   char label[MAX_ARTIFICIAL_LABEL_BYTES];
11998
11999   if (BLOCK_FRAGMENT_CHAIN (stmt))
12000     {
12001       tree chain;
12002
12003       add_AT_range_list (die, DW_AT_ranges, add_ranges (stmt));
12004
12005       chain = BLOCK_FRAGMENT_CHAIN (stmt);
12006       do
12007         {
12008           add_ranges (chain);
12009           chain = BLOCK_FRAGMENT_CHAIN (chain);
12010         }
12011       while (chain);
12012       add_ranges (NULL);
12013     }
12014   else
12015     {
12016       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
12017                                    BLOCK_NUMBER (stmt));
12018       add_AT_lbl_id (die, DW_AT_low_pc, label);
12019       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
12020                                    BLOCK_NUMBER (stmt));
12021       add_AT_lbl_id (die, DW_AT_high_pc, label);
12022     }
12023 }
12024
12025 /* Generate a DIE for a lexical block.  */
12026
12027 static void
12028 gen_lexical_block_die (tree stmt, dw_die_ref context_die, int depth)
12029 {
12030   dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
12031
12032   if (! BLOCK_ABSTRACT (stmt))
12033     add_high_low_attributes (stmt, stmt_die);
12034
12035   decls_for_scope (stmt, stmt_die, depth);
12036 }
12037
12038 /* Generate a DIE for an inlined subprogram.  */
12039
12040 static void
12041 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die, int depth)
12042 {
12043   tree decl = block_ultimate_origin (stmt);
12044
12045   /* Emit info for the abstract instance first, if we haven't yet.  We
12046      must emit this even if the block is abstract, otherwise when we
12047      emit the block below (or elsewhere), we may end up trying to emit
12048      a die whose origin die hasn't been emitted, and crashing.  */
12049   dwarf2out_abstract_function (decl);
12050
12051   if (! BLOCK_ABSTRACT (stmt))
12052     {
12053       dw_die_ref subr_die
12054         = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
12055
12056       add_abstract_origin_attribute (subr_die, decl);
12057       add_high_low_attributes (stmt, subr_die);
12058       add_call_src_coords_attributes (stmt, subr_die);
12059
12060       decls_for_scope (stmt, subr_die, depth);
12061       current_function_has_inlines = 1;
12062     }
12063   else
12064     /* We may get here if we're the outer block of function A that was
12065        inlined into function B that was inlined into function C.  When
12066        generating debugging info for C, dwarf2out_abstract_function(B)
12067        would mark all inlined blocks as abstract, including this one.
12068        So, we wouldn't (and shouldn't) expect labels to be generated
12069        for this one.  Instead, just emit debugging info for
12070        declarations within the block.  This is particularly important
12071        in the case of initializers of arguments passed from B to us:
12072        if they're statement expressions containing declarations, we
12073        wouldn't generate dies for their abstract variables, and then,
12074        when generating dies for the real variables, we'd die (pun
12075        intended :-)  */
12076     gen_lexical_block_die (stmt, context_die, depth);
12077 }
12078
12079 /* Generate a DIE for a field in a record, or structure.  */
12080
12081 static void
12082 gen_field_die (tree decl, dw_die_ref context_die)
12083 {
12084   dw_die_ref decl_die;
12085
12086   if (TREE_TYPE (decl) == error_mark_node)
12087     return;
12088
12089   decl_die = new_die (DW_TAG_member, context_die, decl);
12090   add_name_and_src_coords_attributes (decl_die, decl);
12091   add_type_attribute (decl_die, member_declared_type (decl),
12092                       TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
12093                       context_die);
12094
12095   if (DECL_BIT_FIELD_TYPE (decl))
12096     {
12097       add_byte_size_attribute (decl_die, decl);
12098       add_bit_size_attribute (decl_die, decl);
12099       add_bit_offset_attribute (decl_die, decl);
12100     }
12101
12102   if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
12103     add_data_member_location_attribute (decl_die, decl);
12104
12105   if (DECL_ARTIFICIAL (decl))
12106     add_AT_flag (decl_die, DW_AT_artificial, 1);
12107
12108   if (TREE_PROTECTED (decl))
12109     add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
12110   else if (TREE_PRIVATE (decl))
12111     add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
12112
12113   /* Equate decl number to die, so that we can look up this decl later on.  */
12114   equate_decl_number_to_die (decl, decl_die);
12115 }
12116
12117 #if 0
12118 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
12119    Use modified_type_die instead.
12120    We keep this code here just in case these types of DIEs may be needed to
12121    represent certain things in other languages (e.g. Pascal) someday.  */
12122
12123 static void
12124 gen_pointer_type_die (tree type, dw_die_ref context_die)
12125 {
12126   dw_die_ref ptr_die
12127     = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
12128
12129   equate_type_number_to_die (type, ptr_die);
12130   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
12131   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
12132 }
12133
12134 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
12135    Use modified_type_die instead.
12136    We keep this code here just in case these types of DIEs may be needed to
12137    represent certain things in other languages (e.g. Pascal) someday.  */
12138
12139 static void
12140 gen_reference_type_die (tree type, dw_die_ref context_die)
12141 {
12142   dw_die_ref ref_die
12143     = new_die (DW_TAG_reference_type, scope_die_for (type, context_die), type);
12144
12145   equate_type_number_to_die (type, ref_die);
12146   add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
12147   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
12148 }
12149 #endif
12150
12151 /* Generate a DIE for a pointer to a member type.  */
12152
12153 static void
12154 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
12155 {
12156   dw_die_ref ptr_die
12157     = new_die (DW_TAG_ptr_to_member_type,
12158                scope_die_for (type, context_die), type);
12159
12160   equate_type_number_to_die (type, ptr_die);
12161   add_AT_die_ref (ptr_die, DW_AT_containing_type,
12162                   lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
12163   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
12164 }
12165
12166 /* Generate the DIE for the compilation unit.  */
12167
12168 static dw_die_ref
12169 gen_compile_unit_die (const char *filename)
12170 {
12171   dw_die_ref die;
12172   char producer[250];
12173   const char *language_string = lang_hooks.name;
12174   int language;
12175
12176   die = new_die (DW_TAG_compile_unit, NULL, NULL);
12177
12178   if (filename)
12179     {
12180       add_name_attribute (die, filename);
12181       /* Don't add cwd for <built-in>.  */
12182       if (filename[0] != DIR_SEPARATOR && filename[0] != '<')
12183         add_comp_dir_attribute (die);
12184     }
12185
12186   sprintf (producer, "%s %s", language_string, version_string);
12187
12188 #ifdef MIPS_DEBUGGING_INFO
12189   /* The MIPS/SGI compilers place the 'cc' command line options in the producer
12190      string.  The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
12191      not appear in the producer string, the debugger reaches the conclusion
12192      that the object file is stripped and has no debugging information.
12193      To get the MIPS/SGI debugger to believe that there is debugging
12194      information in the object file, we add a -g to the producer string.  */
12195   if (debug_info_level > DINFO_LEVEL_TERSE)
12196     strcat (producer, " -g");
12197 #endif
12198
12199   add_AT_string (die, DW_AT_producer, producer);
12200
12201   if (strcmp (language_string, "GNU C++") == 0)
12202     language = DW_LANG_C_plus_plus;
12203   else if (strcmp (language_string, "GNU Ada") == 0)
12204     language = DW_LANG_Ada95;
12205   else if (strcmp (language_string, "GNU F77") == 0)
12206     language = DW_LANG_Fortran77;
12207   else if (strcmp (language_string, "GNU F95") == 0)
12208     language = DW_LANG_Fortran95;
12209   else if (strcmp (language_string, "GNU Pascal") == 0)
12210     language = DW_LANG_Pascal83;
12211   else if (strcmp (language_string, "GNU Java") == 0)
12212     language = DW_LANG_Java;
12213   else if (strcmp (language_string, "GNU Objective-C") == 0)
12214     language = DW_LANG_ObjC;
12215   else if (strcmp (language_string, "GNU Objective-C++") == 0)
12216     language = DW_LANG_ObjC_plus_plus;
12217   else
12218     language = DW_LANG_C89;
12219
12220   add_AT_unsigned (die, DW_AT_language, language);
12221   return die;
12222 }
12223
12224 /* Generate the DIE for a base class.  */
12225
12226 static void
12227 gen_inheritance_die (tree binfo, tree access, dw_die_ref context_die)
12228 {
12229   dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
12230
12231   add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
12232   add_data_member_location_attribute (die, binfo);
12233
12234   if (BINFO_VIRTUAL_P (binfo))
12235     add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
12236
12237   if (access == access_public_node)
12238     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
12239   else if (access == access_protected_node)
12240     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
12241 }
12242
12243 /* Generate a DIE for a class member.  */
12244
12245 static void
12246 gen_member_die (tree type, dw_die_ref context_die)
12247 {
12248   tree member;
12249   tree binfo = TYPE_BINFO (type);
12250   dw_die_ref child;
12251
12252   /* If this is not an incomplete type, output descriptions of each of its
12253      members. Note that as we output the DIEs necessary to represent the
12254      members of this record or union type, we will also be trying to output
12255      DIEs to represent the *types* of those members. However the `type'
12256      function (above) will specifically avoid generating type DIEs for member
12257      types *within* the list of member DIEs for this (containing) type except
12258      for those types (of members) which are explicitly marked as also being
12259      members of this (containing) type themselves.  The g++ front- end can
12260      force any given type to be treated as a member of some other (containing)
12261      type by setting the TYPE_CONTEXT of the given (member) type to point to
12262      the TREE node representing the appropriate (containing) type.  */
12263
12264   /* First output info about the base classes.  */
12265   if (binfo)
12266     {
12267       VEC(tree,gc) *accesses = BINFO_BASE_ACCESSES (binfo);
12268       int i;
12269       tree base;
12270
12271       for (i = 0; BINFO_BASE_ITERATE (binfo, i, base); i++)
12272         gen_inheritance_die (base,
12273                              (accesses ? VEC_index (tree, accesses, i)
12274                               : access_public_node), context_die);
12275     }
12276
12277   /* Now output info about the data members and type members.  */
12278   for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
12279     {
12280       /* If we thought we were generating minimal debug info for TYPE
12281          and then changed our minds, some of the member declarations
12282          may have already been defined.  Don't define them again, but
12283          do put them in the right order.  */
12284
12285       child = lookup_decl_die (member);
12286       if (child)
12287         splice_child_die (context_die, child);
12288       else
12289         gen_decl_die (member, context_die);
12290     }
12291
12292   /* Now output info about the function members (if any).  */
12293   for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
12294     {
12295       /* Don't include clones in the member list.  */
12296       if (DECL_ABSTRACT_ORIGIN (member))
12297         continue;
12298
12299       child = lookup_decl_die (member);
12300       if (child)
12301         splice_child_die (context_die, child);
12302       else
12303         gen_decl_die (member, context_die);
12304     }
12305 }
12306
12307 /* Generate a DIE for a structure or union type.  If TYPE_DECL_SUPPRESS_DEBUG
12308    is set, we pretend that the type was never defined, so we only get the
12309    member DIEs needed by later specification DIEs.  */
12310
12311 static void
12312 gen_struct_or_union_type_die (tree type, dw_die_ref context_die)
12313 {
12314   dw_die_ref type_die = lookup_type_die (type);
12315   dw_die_ref scope_die = 0;
12316   int nested = 0;
12317   int complete = (TYPE_SIZE (type)
12318                   && (! TYPE_STUB_DECL (type)
12319                       || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
12320   int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
12321
12322   if (type_die && ! complete)
12323     return;
12324
12325   if (TYPE_CONTEXT (type) != NULL_TREE
12326       && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
12327           || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
12328     nested = 1;
12329
12330   scope_die = scope_die_for (type, context_die);
12331
12332   if (! type_die || (nested && scope_die == comp_unit_die))
12333     /* First occurrence of type or toplevel definition of nested class.  */
12334     {
12335       dw_die_ref old_die = type_die;
12336
12337       type_die = new_die (TREE_CODE (type) == RECORD_TYPE
12338                           ? DW_TAG_structure_type : DW_TAG_union_type,
12339                           scope_die, type);
12340       equate_type_number_to_die (type, type_die);
12341       if (old_die)
12342         add_AT_specification (type_die, old_die);
12343       else
12344         add_name_attribute (type_die, type_tag (type));
12345     }
12346   else
12347     remove_AT (type_die, DW_AT_declaration);
12348
12349   /* If this type has been completed, then give it a byte_size attribute and
12350      then give a list of members.  */
12351   if (complete && !ns_decl)
12352     {
12353       /* Prevent infinite recursion in cases where the type of some member of
12354          this type is expressed in terms of this type itself.  */
12355       TREE_ASM_WRITTEN (type) = 1;
12356       add_byte_size_attribute (type_die, type);
12357       if (TYPE_STUB_DECL (type) != NULL_TREE)
12358         add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
12359
12360       /* If the first reference to this type was as the return type of an
12361          inline function, then it may not have a parent.  Fix this now.  */
12362       if (type_die->die_parent == NULL)
12363         add_child_die (scope_die, type_die);
12364
12365       push_decl_scope (type);
12366       gen_member_die (type, type_die);
12367       pop_decl_scope ();
12368
12369       /* GNU extension: Record what type our vtable lives in.  */
12370       if (TYPE_VFIELD (type))
12371         {
12372           tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
12373
12374           gen_type_die (vtype, context_die);
12375           add_AT_die_ref (type_die, DW_AT_containing_type,
12376                           lookup_type_die (vtype));
12377         }
12378     }
12379   else
12380     {
12381       add_AT_flag (type_die, DW_AT_declaration, 1);
12382
12383       /* We don't need to do this for function-local types.  */
12384       if (TYPE_STUB_DECL (type)
12385           && ! decl_function_context (TYPE_STUB_DECL (type)))
12386         VEC_safe_push (tree, gc, incomplete_types, type);
12387     }
12388 }
12389
12390 /* Generate a DIE for a subroutine _type_.  */
12391
12392 static void
12393 gen_subroutine_type_die (tree type, dw_die_ref context_die)
12394 {
12395   tree return_type = TREE_TYPE (type);
12396   dw_die_ref subr_die
12397     = new_die (DW_TAG_subroutine_type,
12398                scope_die_for (type, context_die), type);
12399
12400   equate_type_number_to_die (type, subr_die);
12401   add_prototyped_attribute (subr_die, type);
12402   add_type_attribute (subr_die, return_type, 0, 0, context_die);
12403   gen_formal_types_die (type, subr_die);
12404 }
12405
12406 /* Generate a DIE for a type definition.  */
12407
12408 static void
12409 gen_typedef_die (tree decl, dw_die_ref context_die)
12410 {
12411   dw_die_ref type_die;
12412   tree origin;
12413
12414   if (TREE_ASM_WRITTEN (decl))
12415     return;
12416
12417   TREE_ASM_WRITTEN (decl) = 1;
12418   type_die = new_die (DW_TAG_typedef, context_die, decl);
12419   origin = decl_ultimate_origin (decl);
12420   if (origin != NULL)
12421     add_abstract_origin_attribute (type_die, origin);
12422   else
12423     {
12424       tree type;
12425
12426       add_name_and_src_coords_attributes (type_die, decl);
12427       if (DECL_ORIGINAL_TYPE (decl))
12428         {
12429           type = DECL_ORIGINAL_TYPE (decl);
12430
12431           gcc_assert (type != TREE_TYPE (decl));
12432           equate_type_number_to_die (TREE_TYPE (decl), type_die);
12433         }
12434       else
12435         type = TREE_TYPE (decl);
12436
12437       add_type_attribute (type_die, type, TREE_READONLY (decl),
12438                           TREE_THIS_VOLATILE (decl), context_die);
12439     }
12440
12441   if (DECL_ABSTRACT (decl))
12442     equate_decl_number_to_die (decl, type_die);
12443 }
12444
12445 /* Generate a type description DIE.  */
12446
12447 static void
12448 gen_type_die (tree type, dw_die_ref context_die)
12449 {
12450   int need_pop;
12451
12452   if (type == NULL_TREE || type == error_mark_node)
12453     return;
12454
12455   if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
12456       && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
12457     {
12458       if (TREE_ASM_WRITTEN (type))
12459         return;
12460
12461       /* Prevent broken recursion; we can't hand off to the same type.  */
12462       gcc_assert (DECL_ORIGINAL_TYPE (TYPE_NAME (type)) != type);
12463
12464       TREE_ASM_WRITTEN (type) = 1;
12465       gen_decl_die (TYPE_NAME (type), context_die);
12466       return;
12467     }
12468
12469   /* We are going to output a DIE to represent the unqualified version
12470      of this type (i.e. without any const or volatile qualifiers) so
12471      get the main variant (i.e. the unqualified version) of this type
12472      now.  (Vectors are special because the debugging info is in the
12473      cloned type itself).  */
12474   if (TREE_CODE (type) != VECTOR_TYPE)
12475     type = type_main_variant (type);
12476
12477   if (TREE_ASM_WRITTEN (type))
12478     return;
12479
12480   switch (TREE_CODE (type))
12481     {
12482     case ERROR_MARK:
12483       break;
12484
12485     case POINTER_TYPE:
12486     case REFERENCE_TYPE:
12487       /* We must set TREE_ASM_WRITTEN in case this is a recursive type.  This
12488          ensures that the gen_type_die recursion will terminate even if the
12489          type is recursive.  Recursive types are possible in Ada.  */
12490       /* ??? We could perhaps do this for all types before the switch
12491          statement.  */
12492       TREE_ASM_WRITTEN (type) = 1;
12493
12494       /* For these types, all that is required is that we output a DIE (or a
12495          set of DIEs) to represent the "basis" type.  */
12496       gen_type_die (TREE_TYPE (type), context_die);
12497       break;
12498
12499     case OFFSET_TYPE:
12500       /* This code is used for C++ pointer-to-data-member types.
12501          Output a description of the relevant class type.  */
12502       gen_type_die (TYPE_OFFSET_BASETYPE (type), context_die);
12503
12504       /* Output a description of the type of the object pointed to.  */
12505       gen_type_die (TREE_TYPE (type), context_die);
12506
12507       /* Now output a DIE to represent this pointer-to-data-member type
12508          itself.  */
12509       gen_ptr_to_mbr_type_die (type, context_die);
12510       break;
12511
12512     case FUNCTION_TYPE:
12513       /* Force out return type (in case it wasn't forced out already).  */
12514       gen_type_die (TREE_TYPE (type), context_die);
12515       gen_subroutine_type_die (type, context_die);
12516       break;
12517
12518     case METHOD_TYPE:
12519       /* Force out return type (in case it wasn't forced out already).  */
12520       gen_type_die (TREE_TYPE (type), context_die);
12521       gen_subroutine_type_die (type, context_die);
12522       break;
12523
12524     case ARRAY_TYPE:
12525       gen_array_type_die (type, context_die);
12526       break;
12527
12528     case VECTOR_TYPE:
12529       gen_array_type_die (type, context_die);
12530       break;
12531
12532     case ENUMERAL_TYPE:
12533     case RECORD_TYPE:
12534     case UNION_TYPE:
12535     case QUAL_UNION_TYPE:
12536       /* If this is a nested type whose containing class hasn't been written
12537          out yet, writing it out will cover this one, too.  This does not apply
12538          to instantiations of member class templates; they need to be added to
12539          the containing class as they are generated.  FIXME: This hurts the
12540          idea of combining type decls from multiple TUs, since we can't predict
12541          what set of template instantiations we'll get.  */
12542       if (TYPE_CONTEXT (type)
12543           && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
12544           && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
12545         {
12546           gen_type_die (TYPE_CONTEXT (type), context_die);
12547
12548           if (TREE_ASM_WRITTEN (type))
12549             return;
12550
12551           /* If that failed, attach ourselves to the stub.  */
12552           push_decl_scope (TYPE_CONTEXT (type));
12553           context_die = lookup_type_die (TYPE_CONTEXT (type));
12554           need_pop = 1;
12555         }
12556       else
12557         {
12558           declare_in_namespace (type, context_die);
12559           need_pop = 0;
12560         }
12561
12562       if (TREE_CODE (type) == ENUMERAL_TYPE)
12563         gen_enumeration_type_die (type, context_die);
12564       else
12565         gen_struct_or_union_type_die (type, context_die);
12566
12567       if (need_pop)
12568         pop_decl_scope ();
12569
12570       /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
12571          it up if it is ever completed.  gen_*_type_die will set it for us
12572          when appropriate.  */
12573       return;
12574
12575     case VOID_TYPE:
12576     case INTEGER_TYPE:
12577     case REAL_TYPE:
12578     case COMPLEX_TYPE:
12579     case BOOLEAN_TYPE:
12580       /* No DIEs needed for fundamental types.  */
12581       break;
12582
12583     case LANG_TYPE:
12584       /* No Dwarf representation currently defined.  */
12585       break;
12586
12587     default:
12588       gcc_unreachable ();
12589     }
12590
12591   TREE_ASM_WRITTEN (type) = 1;
12592 }
12593
12594 /* Generate a DIE for a tagged type instantiation.  */
12595
12596 static void
12597 gen_tagged_type_instantiation_die (tree type, dw_die_ref context_die)
12598 {
12599   if (type == NULL_TREE || type == error_mark_node)
12600     return;
12601
12602   /* We are going to output a DIE to represent the unqualified version of
12603      this type (i.e. without any const or volatile qualifiers) so make sure
12604      that we have the main variant (i.e. the unqualified version) of this
12605      type now.  */
12606   gcc_assert (type == type_main_variant (type));
12607
12608   /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
12609      an instance of an unresolved type.  */
12610
12611   switch (TREE_CODE (type))
12612     {
12613     case ERROR_MARK:
12614       break;
12615
12616     case ENUMERAL_TYPE:
12617       gen_inlined_enumeration_type_die (type, context_die);
12618       break;
12619
12620     case RECORD_TYPE:
12621       gen_inlined_structure_type_die (type, context_die);
12622       break;
12623
12624     case UNION_TYPE:
12625     case QUAL_UNION_TYPE:
12626       gen_inlined_union_type_die (type, context_die);
12627       break;
12628
12629     default:
12630       gcc_unreachable ();
12631     }
12632 }
12633
12634 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
12635    things which are local to the given block.  */
12636
12637 static void
12638 gen_block_die (tree stmt, dw_die_ref context_die, int depth)
12639 {
12640   int must_output_die = 0;
12641   tree origin;
12642   tree decl;
12643   enum tree_code origin_code;
12644
12645   /* Ignore blocks that are NULL.  */
12646   if (stmt == NULL_TREE)
12647     return;
12648
12649   /* If the block is one fragment of a non-contiguous block, do not
12650      process the variables, since they will have been done by the
12651      origin block.  Do process subblocks.  */
12652   if (BLOCK_FRAGMENT_ORIGIN (stmt))
12653     {
12654       tree sub;
12655
12656       for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
12657         gen_block_die (sub, context_die, depth + 1);
12658
12659       return;
12660     }
12661
12662   /* Determine the "ultimate origin" of this block.  This block may be an
12663      inlined instance of an inlined instance of inline function, so we have
12664      to trace all of the way back through the origin chain to find out what
12665      sort of node actually served as the original seed for the creation of
12666      the current block.  */
12667   origin = block_ultimate_origin (stmt);
12668   origin_code = (origin != NULL) ? TREE_CODE (origin) : ERROR_MARK;
12669
12670   /* Determine if we need to output any Dwarf DIEs at all to represent this
12671      block.  */
12672   if (origin_code == FUNCTION_DECL)
12673     /* The outer scopes for inlinings *must* always be represented.  We
12674        generate DW_TAG_inlined_subroutine DIEs for them.  (See below.) */
12675     must_output_die = 1;
12676   else
12677     {
12678       /* In the case where the current block represents an inlining of the
12679          "body block" of an inline function, we must *NOT* output any DIE for
12680          this block because we have already output a DIE to represent the whole
12681          inlined function scope and the "body block" of any function doesn't
12682          really represent a different scope according to ANSI C rules.  So we
12683          check here to make sure that this block does not represent a "body
12684          block inlining" before trying to set the MUST_OUTPUT_DIE flag.  */
12685       if (! is_body_block (origin ? origin : stmt))
12686         {
12687           /* Determine if this block directly contains any "significant"
12688              local declarations which we will need to output DIEs for.  */
12689           if (debug_info_level > DINFO_LEVEL_TERSE)
12690             /* We are not in terse mode so *any* local declaration counts
12691                as being a "significant" one.  */
12692             must_output_die = (BLOCK_VARS (stmt) != NULL 
12693                                && (TREE_USED (stmt) 
12694                                    || TREE_ASM_WRITTEN (stmt)
12695                                    || BLOCK_ABSTRACT (stmt)));
12696           else
12697             /* We are in terse mode, so only local (nested) function
12698                definitions count as "significant" local declarations.  */
12699             for (decl = BLOCK_VARS (stmt);
12700                  decl != NULL; decl = TREE_CHAIN (decl))
12701               if (TREE_CODE (decl) == FUNCTION_DECL
12702                   && DECL_INITIAL (decl))
12703                 {
12704                   must_output_die = 1;
12705                   break;
12706                 }
12707         }
12708     }
12709
12710   /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
12711      DIE for any block which contains no significant local declarations at
12712      all.  Rather, in such cases we just call `decls_for_scope' so that any
12713      needed Dwarf info for any sub-blocks will get properly generated. Note
12714      that in terse mode, our definition of what constitutes a "significant"
12715      local declaration gets restricted to include only inlined function
12716      instances and local (nested) function definitions.  */
12717   if (must_output_die)
12718     {
12719       if (origin_code == FUNCTION_DECL)
12720         gen_inlined_subroutine_die (stmt, context_die, depth);
12721       else
12722         gen_lexical_block_die (stmt, context_die, depth);
12723     }
12724   else
12725     decls_for_scope (stmt, context_die, depth);
12726 }
12727
12728 /* Generate all of the decls declared within a given scope and (recursively)
12729    all of its sub-blocks.  */
12730
12731 static void
12732 decls_for_scope (tree stmt, dw_die_ref context_die, int depth)
12733 {
12734   tree decl;
12735   tree subblocks;
12736
12737   /* Ignore NULL blocks.  */
12738   if (stmt == NULL_TREE)
12739     return;
12740
12741   if (TREE_USED (stmt))
12742     {
12743       /* Output the DIEs to represent all of the data objects and typedefs
12744          declared directly within this block but not within any nested
12745          sub-blocks.  Also, nested function and tag DIEs have been
12746          generated with a parent of NULL; fix that up now.  */
12747       for (decl = BLOCK_VARS (stmt); decl != NULL; decl = TREE_CHAIN (decl))
12748         {
12749           dw_die_ref die;
12750           
12751           if (TREE_CODE (decl) == FUNCTION_DECL)
12752             die = lookup_decl_die (decl);
12753           else if (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl))
12754             die = lookup_type_die (TREE_TYPE (decl));
12755           else
12756             die = NULL;
12757           
12758           if (die != NULL && die->die_parent == NULL)
12759             add_child_die (context_die, die);
12760           /* Do not produce debug information for static variables since
12761              these might be optimized out.  We are called for these later
12762              in cgraph_varpool_analyze_pending_decls. */
12763           if (TREE_CODE (decl) == VAR_DECL && TREE_STATIC (decl))
12764             ;
12765           else
12766             gen_decl_die (decl, context_die);
12767         }
12768     }
12769
12770   /* If we're at -g1, we're not interested in subblocks.  */
12771   if (debug_info_level <= DINFO_LEVEL_TERSE)
12772     return;
12773
12774   /* Output the DIEs to represent all sub-blocks (and the items declared
12775      therein) of this block.  */
12776   for (subblocks = BLOCK_SUBBLOCKS (stmt);
12777        subblocks != NULL;
12778        subblocks = BLOCK_CHAIN (subblocks))
12779     gen_block_die (subblocks, context_die, depth + 1);
12780 }
12781
12782 /* Is this a typedef we can avoid emitting?  */
12783
12784 static inline int
12785 is_redundant_typedef (tree decl)
12786 {
12787   if (TYPE_DECL_IS_STUB (decl))
12788     return 1;
12789
12790   if (DECL_ARTIFICIAL (decl)
12791       && DECL_CONTEXT (decl)
12792       && is_tagged_type (DECL_CONTEXT (decl))
12793       && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
12794       && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
12795     /* Also ignore the artificial member typedef for the class name.  */
12796     return 1;
12797
12798   return 0;
12799 }
12800
12801 /* Returns the DIE for decl.  A DIE will always be returned.  */
12802
12803 static dw_die_ref
12804 force_decl_die (tree decl)
12805 {
12806   dw_die_ref decl_die;
12807   unsigned saved_external_flag;
12808   tree save_fn = NULL_TREE;
12809   decl_die = lookup_decl_die (decl);
12810   if (!decl_die)
12811     {
12812       dw_die_ref context_die;
12813       tree decl_context = DECL_CONTEXT (decl);
12814       if (decl_context)
12815         {
12816           /* Find die that represents this context.  */
12817           if (TYPE_P (decl_context))
12818             context_die = force_type_die (decl_context);
12819           else
12820             context_die = force_decl_die (decl_context);
12821         }
12822       else
12823         context_die = comp_unit_die;
12824
12825       decl_die = lookup_decl_die (decl);
12826       if (decl_die)
12827         return decl_die;
12828
12829       switch (TREE_CODE (decl))
12830         {
12831         case FUNCTION_DECL:
12832           /* Clear current_function_decl, so that gen_subprogram_die thinks
12833              that this is a declaration. At this point, we just want to force
12834              declaration die.  */
12835           save_fn = current_function_decl;
12836           current_function_decl = NULL_TREE;
12837           gen_subprogram_die (decl, context_die);
12838           current_function_decl = save_fn;
12839           break;
12840
12841         case VAR_DECL:
12842           /* Set external flag to force declaration die. Restore it after
12843            gen_decl_die() call.  */
12844           saved_external_flag = DECL_EXTERNAL (decl);
12845           DECL_EXTERNAL (decl) = 1;
12846           gen_decl_die (decl, context_die);
12847           DECL_EXTERNAL (decl) = saved_external_flag;
12848           break;
12849
12850         case NAMESPACE_DECL:
12851           dwarf2out_decl (decl);
12852           break;
12853
12854         default:
12855           gcc_unreachable ();
12856         }
12857
12858       /* We should be able to find the DIE now.  */
12859       if (!decl_die)
12860         decl_die = lookup_decl_die (decl);
12861       gcc_assert (decl_die);
12862     }
12863
12864   return decl_die;
12865 }
12866
12867 /* Returns the DIE for TYPE.  A DIE is always returned.  */
12868
12869 static dw_die_ref
12870 force_type_die (tree type)
12871 {
12872   dw_die_ref type_die;
12873
12874   type_die = lookup_type_die (type);
12875   if (!type_die)
12876     {
12877       dw_die_ref context_die;
12878       if (TYPE_CONTEXT (type))
12879         {
12880           if (TYPE_P (TYPE_CONTEXT (type)))
12881             context_die = force_type_die (TYPE_CONTEXT (type));
12882           else
12883             context_die = force_decl_die (TYPE_CONTEXT (type));
12884         }
12885       else
12886         context_die = comp_unit_die;
12887
12888       type_die = lookup_type_die (type);
12889       if (type_die)
12890         return type_die;
12891       gen_type_die (type, context_die);
12892       type_die = lookup_type_die (type);
12893       gcc_assert (type_die);
12894     }
12895   return type_die;
12896 }
12897
12898 /* Force out any required namespaces to be able to output DECL,
12899    and return the new context_die for it, if it's changed.  */
12900
12901 static dw_die_ref
12902 setup_namespace_context (tree thing, dw_die_ref context_die)
12903 {
12904   tree context = (DECL_P (thing)
12905                   ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing));
12906   if (context && TREE_CODE (context) == NAMESPACE_DECL)
12907     /* Force out the namespace.  */
12908     context_die = force_decl_die (context);
12909
12910   return context_die;
12911 }
12912
12913 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
12914    type) within its namespace, if appropriate.
12915
12916    For compatibility with older debuggers, namespace DIEs only contain
12917    declarations; all definitions are emitted at CU scope.  */
12918
12919 static void
12920 declare_in_namespace (tree thing, dw_die_ref context_die)
12921 {
12922   dw_die_ref ns_context;
12923
12924   if (debug_info_level <= DINFO_LEVEL_TERSE)
12925     return;
12926
12927   /* If this decl is from an inlined function, then don't try to emit it in its
12928      namespace, as we will get confused.  It would have already been emitted
12929      when the abstract instance of the inline function was emitted anyways.  */
12930   if (DECL_P (thing) && DECL_ABSTRACT_ORIGIN (thing))
12931     return;
12932
12933   ns_context = setup_namespace_context (thing, context_die);
12934
12935   if (ns_context != context_die)
12936     {
12937       if (DECL_P (thing))
12938         gen_decl_die (thing, ns_context);
12939       else
12940         gen_type_die (thing, ns_context);
12941     }
12942 }
12943
12944 /* Generate a DIE for a namespace or namespace alias.  */
12945
12946 static void
12947 gen_namespace_die (tree decl)
12948 {
12949   dw_die_ref context_die = setup_namespace_context (decl, comp_unit_die);
12950
12951   /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
12952      they are an alias of.  */
12953   if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
12954     {
12955       /* Output a real namespace.  */
12956       dw_die_ref namespace_die
12957         = new_die (DW_TAG_namespace, context_die, decl);
12958       add_name_and_src_coords_attributes (namespace_die, decl);
12959       equate_decl_number_to_die (decl, namespace_die);
12960     }
12961   else
12962     {
12963       /* Output a namespace alias.  */
12964
12965       /* Force out the namespace we are an alias of, if necessary.  */
12966       dw_die_ref origin_die
12967         = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
12968
12969       /* Now create the namespace alias DIE.  */
12970       dw_die_ref namespace_die
12971         = new_die (DW_TAG_imported_declaration, context_die, decl);
12972       add_name_and_src_coords_attributes (namespace_die, decl);
12973       add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
12974       equate_decl_number_to_die (decl, namespace_die);
12975     }
12976 }
12977
12978 /* Generate Dwarf debug information for a decl described by DECL.  */
12979
12980 static void
12981 gen_decl_die (tree decl, dw_die_ref context_die)
12982 {
12983   tree origin;
12984
12985   if (DECL_P (decl) && DECL_IGNORED_P (decl))
12986     return;
12987
12988   switch (TREE_CODE (decl))
12989     {
12990     case ERROR_MARK:
12991       break;
12992
12993     case CONST_DECL:
12994       /* The individual enumerators of an enum type get output when we output
12995          the Dwarf representation of the relevant enum type itself.  */
12996       break;
12997
12998     case FUNCTION_DECL:
12999       /* Don't output any DIEs to represent mere function declarations,
13000          unless they are class members or explicit block externs.  */
13001       if (DECL_INITIAL (decl) == NULL_TREE && DECL_CONTEXT (decl) == NULL_TREE
13002           && (current_function_decl == NULL_TREE || DECL_ARTIFICIAL (decl)))
13003         break;
13004
13005 #if 0
13006       /* FIXME */
13007       /* This doesn't work because the C frontend sets DECL_ABSTRACT_ORIGIN
13008          on local redeclarations of global functions.  That seems broken.  */
13009       if (current_function_decl != decl)
13010         /* This is only a declaration.  */;
13011 #endif
13012
13013       /* If we're emitting a clone, emit info for the abstract instance.  */
13014       if (DECL_ORIGIN (decl) != decl)
13015         dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl));
13016
13017       /* If we're emitting an out-of-line copy of an inline function,
13018          emit info for the abstract instance and set up to refer to it.  */
13019       else if (cgraph_function_possibly_inlined_p (decl)
13020                && ! DECL_ABSTRACT (decl)
13021                && ! class_or_namespace_scope_p (context_die)
13022                /* dwarf2out_abstract_function won't emit a die if this is just
13023                   a declaration.  We must avoid setting DECL_ABSTRACT_ORIGIN in
13024                   that case, because that works only if we have a die.  */
13025                && DECL_INITIAL (decl) != NULL_TREE)
13026         {
13027           dwarf2out_abstract_function (decl);
13028           set_decl_origin_self (decl);
13029         }
13030
13031       /* Otherwise we're emitting the primary DIE for this decl.  */
13032       else if (debug_info_level > DINFO_LEVEL_TERSE)
13033         {
13034           /* Before we describe the FUNCTION_DECL itself, make sure that we
13035              have described its return type.  */
13036           gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
13037
13038           /* And its virtual context.  */
13039           if (DECL_VINDEX (decl) != NULL_TREE)
13040             gen_type_die (DECL_CONTEXT (decl), context_die);
13041
13042           /* And its containing type.  */
13043           origin = decl_class_context (decl);
13044           if (origin != NULL_TREE)
13045             gen_type_die_for_member (origin, decl, context_die);
13046
13047           /* And its containing namespace.  */
13048           declare_in_namespace (decl, context_die);
13049         }
13050
13051       /* Now output a DIE to represent the function itself.  */
13052       gen_subprogram_die (decl, context_die);
13053       break;
13054
13055     case TYPE_DECL:
13056       /* If we are in terse mode, don't generate any DIEs to represent any
13057          actual typedefs.  */
13058       if (debug_info_level <= DINFO_LEVEL_TERSE)
13059         break;
13060
13061       /* In the special case of a TYPE_DECL node representing the declaration
13062          of some type tag, if the given TYPE_DECL is marked as having been
13063          instantiated from some other (original) TYPE_DECL node (e.g. one which
13064          was generated within the original definition of an inline function) we
13065          have to generate a special (abbreviated) DW_TAG_structure_type,
13066          DW_TAG_union_type, or DW_TAG_enumeration_type DIE here.  */
13067       if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
13068         {
13069           gen_tagged_type_instantiation_die (TREE_TYPE (decl), context_die);
13070           break;
13071         }
13072
13073       if (is_redundant_typedef (decl))
13074         gen_type_die (TREE_TYPE (decl), context_die);
13075       else
13076         /* Output a DIE to represent the typedef itself.  */
13077         gen_typedef_die (decl, context_die);
13078       break;
13079
13080     case LABEL_DECL:
13081       if (debug_info_level >= DINFO_LEVEL_NORMAL)
13082         gen_label_die (decl, context_die);
13083       break;
13084
13085     case VAR_DECL:
13086     case RESULT_DECL:
13087       /* If we are in terse mode, don't generate any DIEs to represent any
13088          variable declarations or definitions.  */
13089       if (debug_info_level <= DINFO_LEVEL_TERSE)
13090         break;
13091
13092       /* Output any DIEs that are needed to specify the type of this data
13093          object.  */
13094       gen_type_die (TREE_TYPE (decl), context_die);
13095
13096       /* And its containing type.  */
13097       origin = decl_class_context (decl);
13098       if (origin != NULL_TREE)
13099         gen_type_die_for_member (origin, decl, context_die);
13100
13101       /* And its containing namespace.  */
13102       declare_in_namespace (decl, context_die);
13103
13104       /* Now output the DIE to represent the data object itself.  This gets
13105          complicated because of the possibility that the VAR_DECL really
13106          represents an inlined instance of a formal parameter for an inline
13107          function.  */
13108       origin = decl_ultimate_origin (decl);
13109       if (origin != NULL_TREE && TREE_CODE (origin) == PARM_DECL)
13110         gen_formal_parameter_die (decl, context_die);
13111       else
13112         gen_variable_die (decl, context_die);
13113       break;
13114
13115     case FIELD_DECL:
13116       /* Ignore the nameless fields that are used to skip bits but handle C++
13117          anonymous unions and structs.  */
13118       if (DECL_NAME (decl) != NULL_TREE
13119           || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE
13120           || TREE_CODE (TREE_TYPE (decl)) == RECORD_TYPE)
13121         {
13122           gen_type_die (member_declared_type (decl), context_die);
13123           gen_field_die (decl, context_die);
13124         }
13125       break;
13126
13127     case PARM_DECL:
13128       gen_type_die (TREE_TYPE (decl), context_die);
13129       gen_formal_parameter_die (decl, context_die);
13130       break;
13131
13132     case NAMESPACE_DECL:
13133       gen_namespace_die (decl);
13134       break;
13135
13136     default:
13137       /* Probably some frontend-internal decl.  Assume we don't care.  */
13138       gcc_assert ((int)TREE_CODE (decl) > NUM_TREE_CODES);
13139       break;
13140     }
13141 }
13142 \f
13143 /* Output debug information for global decl DECL.  Called from toplev.c after
13144    compilation proper has finished.  */
13145
13146 static void
13147 dwarf2out_global_decl (tree decl)
13148 {
13149   /* Output DWARF2 information for file-scope tentative data object
13150      declarations, file-scope (extern) function declarations (which had no
13151      corresponding body) and file-scope tagged type declarations and
13152      definitions which have not yet been forced out.  */
13153   if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
13154     dwarf2out_decl (decl);
13155 }
13156
13157 /* Output debug information for type decl DECL.  Called from toplev.c
13158    and from language front ends (to record built-in types).  */
13159 static void
13160 dwarf2out_type_decl (tree decl, int local)
13161 {
13162   if (!local)
13163     dwarf2out_decl (decl);
13164 }
13165
13166 /* Output debug information for imported module or decl.  */
13167
13168 static void
13169 dwarf2out_imported_module_or_decl (tree decl, tree context)
13170 {
13171   dw_die_ref imported_die, at_import_die;
13172   dw_die_ref scope_die;
13173   unsigned file_index;
13174   expanded_location xloc;
13175
13176   if (debug_info_level <= DINFO_LEVEL_TERSE)
13177     return;
13178
13179   gcc_assert (decl);
13180
13181   /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
13182      We need decl DIE for reference and scope die. First, get DIE for the decl
13183      itself.  */
13184
13185   /* Get the scope die for decl context. Use comp_unit_die for global module
13186      or decl. If die is not found for non globals, force new die.  */
13187   if (!context)
13188     scope_die = comp_unit_die;
13189   else if (TYPE_P (context))
13190     scope_die = force_type_die (context);
13191   else
13192     scope_die = force_decl_die (context);
13193
13194   /* For TYPE_DECL or CONST_DECL, lookup TREE_TYPE.  */
13195   if (TREE_CODE (decl) == TYPE_DECL || TREE_CODE (decl) == CONST_DECL)
13196     at_import_die = force_type_die (TREE_TYPE (decl));
13197   else
13198     {
13199       at_import_die = lookup_decl_die (decl);
13200       if (!at_import_die)
13201         {
13202           /* If we're trying to avoid duplicate debug info, we may not have
13203              emitted the member decl for this field.  Emit it now.  */
13204           if (TREE_CODE (decl) == FIELD_DECL)
13205             {
13206               tree type = DECL_CONTEXT (decl);
13207               dw_die_ref type_context_die;
13208
13209               if (TYPE_CONTEXT (type))
13210                 if (TYPE_P (TYPE_CONTEXT (type)))
13211                   type_context_die = force_type_die (TYPE_CONTEXT (type));
13212               else
13213                 type_context_die = force_decl_die (TYPE_CONTEXT (type));
13214               else
13215                 type_context_die = comp_unit_die;
13216               gen_type_die_for_member (type, decl, type_context_die);
13217             }
13218           at_import_die = force_decl_die (decl);
13219         }
13220     }
13221
13222   /* OK, now we have DIEs for decl as well as scope. Emit imported die.  */
13223   if (TREE_CODE (decl) == NAMESPACE_DECL)
13224     imported_die = new_die (DW_TAG_imported_module, scope_die, context);
13225   else
13226     imported_die = new_die (DW_TAG_imported_declaration, scope_die, context);
13227
13228   xloc = expand_location (input_location);
13229   file_index = lookup_filename (xloc.file);
13230   add_AT_unsigned (imported_die, DW_AT_decl_file, file_index);
13231   add_AT_unsigned (imported_die, DW_AT_decl_line, xloc.line);
13232   add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
13233 }
13234
13235 /* Write the debugging output for DECL.  */
13236
13237 void
13238 dwarf2out_decl (tree decl)
13239 {
13240   dw_die_ref context_die = comp_unit_die;
13241
13242   switch (TREE_CODE (decl))
13243     {
13244     case ERROR_MARK:
13245       return;
13246
13247     case FUNCTION_DECL:
13248       /* What we would really like to do here is to filter out all mere
13249          file-scope declarations of file-scope functions which are never
13250          referenced later within this translation unit (and keep all of ones
13251          that *are* referenced later on) but we aren't clairvoyant, so we have
13252          no idea which functions will be referenced in the future (i.e. later
13253          on within the current translation unit). So here we just ignore all
13254          file-scope function declarations which are not also definitions.  If
13255          and when the debugger needs to know something about these functions,
13256          it will have to hunt around and find the DWARF information associated
13257          with the definition of the function.
13258
13259          We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
13260          nodes represent definitions and which ones represent mere
13261          declarations.  We have to check DECL_INITIAL instead. That's because
13262          the C front-end supports some weird semantics for "extern inline"
13263          function definitions.  These can get inlined within the current
13264          translation unit (and thus, we need to generate Dwarf info for their
13265          abstract instances so that the Dwarf info for the concrete inlined
13266          instances can have something to refer to) but the compiler never
13267          generates any out-of-lines instances of such things (despite the fact
13268          that they *are* definitions).
13269
13270          The important point is that the C front-end marks these "extern
13271          inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
13272          them anyway. Note that the C++ front-end also plays some similar games
13273          for inline function definitions appearing within include files which
13274          also contain `#pragma interface' pragmas.  */
13275       if (DECL_INITIAL (decl) == NULL_TREE)
13276         return;
13277
13278       /* If we're a nested function, initially use a parent of NULL; if we're
13279          a plain function, this will be fixed up in decls_for_scope.  If
13280          we're a method, it will be ignored, since we already have a DIE.  */
13281       if (decl_function_context (decl)
13282           /* But if we're in terse mode, we don't care about scope.  */
13283           && debug_info_level > DINFO_LEVEL_TERSE)
13284         context_die = NULL;
13285       break;
13286
13287     case VAR_DECL:
13288       /* Ignore this VAR_DECL if it refers to a file-scope extern data object
13289          declaration and if the declaration was never even referenced from
13290          within this entire compilation unit.  We suppress these DIEs in
13291          order to save space in the .debug section (by eliminating entries
13292          which are probably useless).  Note that we must not suppress
13293          block-local extern declarations (whether used or not) because that
13294          would screw-up the debugger's name lookup mechanism and cause it to
13295          miss things which really ought to be in scope at a given point.  */
13296       if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
13297         return;
13298
13299       /* For local statics lookup proper context die.  */
13300       if (TREE_STATIC (decl) && decl_function_context (decl))
13301         context_die = lookup_decl_die (DECL_CONTEXT (decl));
13302
13303       /* If we are in terse mode, don't generate any DIEs to represent any
13304          variable declarations or definitions.  */
13305       if (debug_info_level <= DINFO_LEVEL_TERSE)
13306         return;
13307       break;
13308
13309     case NAMESPACE_DECL:
13310       if (debug_info_level <= DINFO_LEVEL_TERSE)
13311         return;
13312       if (lookup_decl_die (decl) != NULL)
13313         return;
13314       break;
13315
13316     case TYPE_DECL:
13317       /* Don't emit stubs for types unless they are needed by other DIEs.  */
13318       if (TYPE_DECL_SUPPRESS_DEBUG (decl))
13319         return;
13320
13321       /* Don't bother trying to generate any DIEs to represent any of the
13322          normal built-in types for the language we are compiling.  */
13323       if (DECL_IS_BUILTIN (decl))
13324         {
13325           /* OK, we need to generate one for `bool' so GDB knows what type
13326              comparisons have.  */
13327           if (is_cxx ()
13328               && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE
13329               && ! DECL_IGNORED_P (decl))
13330             modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
13331
13332           return;
13333         }
13334
13335       /* If we are in terse mode, don't generate any DIEs for types.  */
13336       if (debug_info_level <= DINFO_LEVEL_TERSE)
13337         return;
13338
13339       /* If we're a function-scope tag, initially use a parent of NULL;
13340          this will be fixed up in decls_for_scope.  */
13341       if (decl_function_context (decl))
13342         context_die = NULL;
13343
13344       break;
13345
13346     default:
13347       return;
13348     }
13349
13350   gen_decl_die (decl, context_die);
13351 }
13352
13353 /* Output a marker (i.e. a label) for the beginning of the generated code for
13354    a lexical block.  */
13355
13356 static void
13357 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
13358                        unsigned int blocknum)
13359 {
13360   switch_to_section (current_function_section ());
13361   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
13362 }
13363
13364 /* Output a marker (i.e. a label) for the end of the generated code for a
13365    lexical block.  */
13366
13367 static void
13368 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
13369 {
13370   switch_to_section (current_function_section ());
13371   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
13372 }
13373
13374 /* Returns nonzero if it is appropriate not to emit any debugging
13375    information for BLOCK, because it doesn't contain any instructions.
13376
13377    Don't allow this for blocks with nested functions or local classes
13378    as we would end up with orphans, and in the presence of scheduling
13379    we may end up calling them anyway.  */
13380
13381 static bool
13382 dwarf2out_ignore_block (tree block)
13383 {
13384   tree decl;
13385
13386   for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
13387     if (TREE_CODE (decl) == FUNCTION_DECL
13388         || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
13389       return 0;
13390
13391   return 1;
13392 }
13393
13394 /* Lookup FILE_NAME (in the list of filenames that we know about here in
13395    dwarf2out.c) and return its "index".  The index of each (known) filename is
13396    just a unique number which is associated with only that one filename.  We
13397    need such numbers for the sake of generating labels (in the .debug_sfnames
13398    section) and references to those files numbers (in the .debug_srcinfo
13399    and.debug_macinfo sections).  If the filename given as an argument is not
13400    found in our current list, add it to the list and assign it the next
13401    available unique index number.  In order to speed up searches, we remember
13402    the index of the filename was looked up last.  This handles the majority of
13403    all searches.  */
13404
13405 static unsigned
13406 lookup_filename (const char *file_name)
13407 {
13408   size_t i, n;
13409   char *save_file_name;
13410
13411   /* Check to see if the file name that was searched on the previous
13412      call matches this file name.  If so, return the index.  */
13413   if (file_table_last_lookup_index != 0)
13414     {
13415       const char *last
13416         = VARRAY_CHAR_PTR (file_table, file_table_last_lookup_index);
13417       if (strcmp (file_name, last) == 0)
13418         return file_table_last_lookup_index;
13419     }
13420
13421   /* Didn't match the previous lookup, search the table.  */
13422   n = VARRAY_ACTIVE_SIZE (file_table);
13423   for (i = 1; i < n; i++)
13424     if (strcmp (file_name, VARRAY_CHAR_PTR (file_table, i)) == 0)
13425       {
13426         file_table_last_lookup_index = i;
13427         return i;
13428       }
13429
13430   /* Add the new entry to the end of the filename table.  */
13431   file_table_last_lookup_index = n;
13432   save_file_name = (char *) ggc_strdup (file_name);
13433   VARRAY_PUSH_CHAR_PTR (file_table, save_file_name);
13434   VARRAY_PUSH_UINT (file_table_emitted, 0);
13435
13436   /* If the assembler is emitting the file table, and we aren't eliminating
13437      unused debug types, then we must emit .file here.  If we are eliminating
13438      unused debug types, then this will be done by the maybe_emit_file call in
13439      prune_unused_types_walk_attribs.  */
13440
13441   if (DWARF2_ASM_LINE_DEBUG_INFO && ! flag_eliminate_unused_debug_types)
13442     return maybe_emit_file (i);
13443
13444   return i;
13445 }
13446
13447 /* If the assembler will construct the file table, then translate the compiler
13448    internal file table number into the assembler file table number, and emit
13449    a .file directive if we haven't already emitted one yet.  The file table
13450    numbers are different because we prune debug info for unused variables and
13451    types, which may include filenames.  */
13452
13453 static int
13454 maybe_emit_file (int fileno)
13455 {
13456   if (DWARF2_ASM_LINE_DEBUG_INFO && fileno > 0)
13457     {
13458       if (!VARRAY_UINT (file_table_emitted, fileno))
13459         {
13460           VARRAY_UINT (file_table_emitted, fileno) = ++emitcount;
13461           fprintf (asm_out_file, "\t.file %u ",
13462                    VARRAY_UINT (file_table_emitted, fileno));
13463           output_quoted_string (asm_out_file,
13464                                 VARRAY_CHAR_PTR (file_table, fileno));
13465           fputc ('\n', asm_out_file);
13466         }
13467       return VARRAY_UINT (file_table_emitted, fileno);
13468     }
13469   else
13470     return fileno;
13471 }
13472
13473 /* Initialize the compiler internal file table.  */
13474
13475 static void
13476 init_file_table (void)
13477 {
13478   /* Allocate the initial hunk of the file_table.  */
13479   VARRAY_CHAR_PTR_INIT (file_table, 64, "file_table");
13480   VARRAY_UINT_INIT (file_table_emitted, 64, "file_table_emitted");
13481
13482   /* Skip the first entry - file numbers begin at 1.  */
13483   VARRAY_PUSH_CHAR_PTR (file_table, NULL);
13484   VARRAY_PUSH_UINT (file_table_emitted, 0);
13485   file_table_last_lookup_index = 0;
13486 }
13487
13488 /* Called by the final INSN scan whenever we see a var location.  We
13489    use it to drop labels in the right places, and throw the location in
13490    our lookup table.  */
13491
13492 static void
13493 dwarf2out_var_location (rtx loc_note)
13494 {
13495   char loclabel[MAX_ARTIFICIAL_LABEL_BYTES];
13496   struct var_loc_node *newloc;
13497   rtx prev_insn;
13498   static rtx last_insn;
13499   static const char *last_label;
13500   tree decl;
13501
13502   if (!DECL_P (NOTE_VAR_LOCATION_DECL (loc_note)))
13503     return;
13504   prev_insn = PREV_INSN (loc_note);
13505
13506   newloc = ggc_alloc_cleared (sizeof (struct var_loc_node));
13507   /* If the insn we processed last time is the previous insn
13508      and it is also a var location note, use the label we emitted
13509      last time.  */
13510   if (last_insn != NULL_RTX
13511       && last_insn == prev_insn
13512       && NOTE_P (prev_insn)
13513       && NOTE_LINE_NUMBER (prev_insn) == NOTE_INSN_VAR_LOCATION)
13514     {
13515       newloc->label = last_label;
13516     }
13517   else
13518     {
13519       ASM_GENERATE_INTERNAL_LABEL (loclabel, "LVL", loclabel_num);
13520       ASM_OUTPUT_DEBUG_LABEL (asm_out_file, "LVL", loclabel_num);
13521       loclabel_num++;
13522       newloc->label = ggc_strdup (loclabel);
13523     }
13524   newloc->var_loc_note = loc_note;
13525   newloc->next = NULL;
13526
13527   if (cfun && in_cold_section_p)
13528     newloc->section_label = cfun->cold_section_label;
13529   else
13530     newloc->section_label = text_section_label;
13531
13532   last_insn = loc_note;
13533   last_label = newloc->label;
13534   decl = NOTE_VAR_LOCATION_DECL (loc_note);
13535   if (DECL_DEBUG_EXPR_IS_FROM (decl) && DECL_DEBUG_EXPR (decl) 
13536       && DECL_P (DECL_DEBUG_EXPR (decl)))
13537     decl = DECL_DEBUG_EXPR (decl); 
13538   add_var_loc_to_decl (decl, newloc);
13539 }
13540
13541 /* We need to reset the locations at the beginning of each
13542    function. We can't do this in the end_function hook, because the
13543    declarations that use the locations won't have been output when
13544    that hook is called.  Also compute have_multiple_function_sections here.  */
13545
13546 static void
13547 dwarf2out_begin_function (tree fun)
13548 {
13549   htab_empty (decl_loc_table);
13550   
13551   if (function_section (fun) != text_section)
13552     have_multiple_function_sections = true;
13553 }
13554
13555 /* Output a label to mark the beginning of a source code line entry
13556    and record information relating to this source line, in
13557    'line_info_table' for later output of the .debug_line section.  */
13558
13559 static void
13560 dwarf2out_source_line (unsigned int line, const char *filename)
13561 {
13562   if (debug_info_level >= DINFO_LEVEL_NORMAL
13563       && line != 0)
13564     {
13565       switch_to_section (current_function_section ());
13566
13567       /* If requested, emit something human-readable.  */
13568       if (flag_debug_asm)
13569         fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
13570                  filename, line);
13571
13572       if (DWARF2_ASM_LINE_DEBUG_INFO)
13573         {
13574           unsigned file_num = lookup_filename (filename);
13575
13576           file_num = maybe_emit_file (file_num);
13577
13578           /* Emit the .loc directive understood by GNU as.  */
13579           fprintf (asm_out_file, "\t.loc %d %d 0\n", file_num, line);
13580
13581           /* Indicate that line number info exists.  */
13582           line_info_table_in_use++;
13583         }
13584       else if (function_section (current_function_decl) != text_section)
13585         {
13586           dw_separate_line_info_ref line_info;
13587           targetm.asm_out.internal_label (asm_out_file, SEPARATE_LINE_CODE_LABEL,
13588                                      separate_line_info_table_in_use);
13589
13590           /* Expand the line info table if necessary.  */
13591           if (separate_line_info_table_in_use
13592               == separate_line_info_table_allocated)
13593             {
13594               separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
13595               separate_line_info_table
13596                 = ggc_realloc (separate_line_info_table,
13597                                separate_line_info_table_allocated
13598                                * sizeof (dw_separate_line_info_entry));
13599               memset (separate_line_info_table
13600                        + separate_line_info_table_in_use,
13601                       0,
13602                       (LINE_INFO_TABLE_INCREMENT
13603                        * sizeof (dw_separate_line_info_entry)));
13604             }
13605
13606           /* Add the new entry at the end of the line_info_table.  */
13607           line_info
13608             = &separate_line_info_table[separate_line_info_table_in_use++];
13609           line_info->dw_file_num = lookup_filename (filename);
13610           line_info->dw_line_num = line;
13611           line_info->function = current_function_funcdef_no;
13612         }
13613       else
13614         {
13615           dw_line_info_ref line_info;
13616
13617           targetm.asm_out.internal_label (asm_out_file, LINE_CODE_LABEL,
13618                                      line_info_table_in_use);
13619
13620           /* Expand the line info table if necessary.  */
13621           if (line_info_table_in_use == line_info_table_allocated)
13622             {
13623               line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
13624               line_info_table
13625                 = ggc_realloc (line_info_table,
13626                                (line_info_table_allocated
13627                                 * sizeof (dw_line_info_entry)));
13628               memset (line_info_table + line_info_table_in_use, 0,
13629                       LINE_INFO_TABLE_INCREMENT * sizeof (dw_line_info_entry));
13630             }
13631
13632           /* Add the new entry at the end of the line_info_table.  */
13633           line_info = &line_info_table[line_info_table_in_use++];
13634           line_info->dw_file_num = lookup_filename (filename);
13635           line_info->dw_line_num = line;
13636         }
13637     }
13638 }
13639
13640 /* Record the beginning of a new source file.  */
13641
13642 static void
13643 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
13644 {
13645   if (flag_eliminate_dwarf2_dups)
13646     {
13647       /* Record the beginning of the file for break_out_includes.  */
13648       dw_die_ref bincl_die;
13649
13650       bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die, NULL);
13651       add_AT_string (bincl_die, DW_AT_name, filename);
13652     }
13653
13654   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13655     {
13656       int fileno;
13657
13658       switch_to_section (debug_macinfo_section);
13659       dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
13660       dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
13661                                    lineno);
13662
13663       fileno = maybe_emit_file (lookup_filename (filename));
13664       dw2_asm_output_data_uleb128 (fileno, "Filename we just started");
13665     }
13666 }
13667
13668 /* Record the end of a source file.  */
13669
13670 static void
13671 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
13672 {
13673   if (flag_eliminate_dwarf2_dups)
13674     /* Record the end of the file for break_out_includes.  */
13675     new_die (DW_TAG_GNU_EINCL, comp_unit_die, NULL);
13676
13677   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13678     {
13679       switch_to_section (debug_macinfo_section);
13680       dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
13681     }
13682 }
13683
13684 /* Called from debug_define in toplev.c.  The `buffer' parameter contains
13685    the tail part of the directive line, i.e. the part which is past the
13686    initial whitespace, #, whitespace, directive-name, whitespace part.  */
13687
13688 static void
13689 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
13690                   const char *buffer ATTRIBUTE_UNUSED)
13691 {
13692   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13693     {
13694       switch_to_section (debug_macinfo_section);
13695       dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
13696       dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
13697       dw2_asm_output_nstring (buffer, -1, "The macro");
13698     }
13699 }
13700
13701 /* Called from debug_undef in toplev.c.  The `buffer' parameter contains
13702    the tail part of the directive line, i.e. the part which is past the
13703    initial whitespace, #, whitespace, directive-name, whitespace part.  */
13704
13705 static void
13706 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
13707                  const char *buffer ATTRIBUTE_UNUSED)
13708 {
13709   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13710     {
13711       switch_to_section (debug_macinfo_section);
13712       dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
13713       dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
13714       dw2_asm_output_nstring (buffer, -1, "The macro");
13715     }
13716 }
13717
13718 /* Set up for Dwarf output at the start of compilation.  */
13719
13720 static void
13721 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
13722 {
13723   init_file_table ();
13724
13725   /* Allocate the decl_die_table.  */
13726   decl_die_table = htab_create_ggc (10, decl_die_table_hash,
13727                                     decl_die_table_eq, NULL);
13728
13729   /* Allocate the decl_loc_table.  */
13730   decl_loc_table = htab_create_ggc (10, decl_loc_table_hash,
13731                                     decl_loc_table_eq, NULL);
13732
13733   /* Allocate the initial hunk of the decl_scope_table.  */
13734   decl_scope_table = VEC_alloc (tree, gc, 256);
13735
13736   /* Allocate the initial hunk of the abbrev_die_table.  */
13737   abbrev_die_table = ggc_alloc_cleared (ABBREV_DIE_TABLE_INCREMENT
13738                                         * sizeof (dw_die_ref));
13739   abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
13740   /* Zero-th entry is allocated, but unused.  */
13741   abbrev_die_table_in_use = 1;
13742
13743   /* Allocate the initial hunk of the line_info_table.  */
13744   line_info_table = ggc_alloc_cleared (LINE_INFO_TABLE_INCREMENT
13745                                        * sizeof (dw_line_info_entry));
13746   line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
13747
13748   /* Zero-th entry is allocated, but unused.  */
13749   line_info_table_in_use = 1;
13750
13751   /* Generate the initial DIE for the .debug section.  Note that the (string)
13752      value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
13753      will (typically) be a relative pathname and that this pathname should be
13754      taken as being relative to the directory from which the compiler was
13755      invoked when the given (base) source file was compiled.  We will fill
13756      in this value in dwarf2out_finish.  */
13757   comp_unit_die = gen_compile_unit_die (NULL);
13758
13759   incomplete_types = VEC_alloc (tree, gc, 64);
13760
13761   used_rtx_array = VEC_alloc (rtx, gc, 32);
13762
13763   debug_info_section = get_section (DEBUG_INFO_SECTION,
13764                                     SECTION_DEBUG, NULL);
13765   debug_abbrev_section = get_section (DEBUG_ABBREV_SECTION,
13766                                       SECTION_DEBUG, NULL);
13767   debug_aranges_section = get_section (DEBUG_ARANGES_SECTION,
13768                                        SECTION_DEBUG, NULL);
13769   debug_macinfo_section = get_section (DEBUG_MACINFO_SECTION,
13770                                        SECTION_DEBUG, NULL);
13771   debug_line_section = get_section (DEBUG_LINE_SECTION,
13772                                     SECTION_DEBUG, NULL);
13773   debug_loc_section = get_section (DEBUG_LOC_SECTION,
13774                                    SECTION_DEBUG, NULL);
13775   debug_pubnames_section = get_section (DEBUG_PUBNAMES_SECTION,
13776                                         SECTION_DEBUG, NULL);
13777   debug_str_section = get_section (DEBUG_STR_SECTION,
13778                                    DEBUG_STR_SECTION_FLAGS, NULL);
13779   debug_ranges_section = get_section (DEBUG_RANGES_SECTION,
13780                                       SECTION_DEBUG, NULL);
13781   debug_frame_section = get_section (DEBUG_FRAME_SECTION,
13782                                      SECTION_DEBUG, NULL);
13783
13784   ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
13785   ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
13786                                DEBUG_ABBREV_SECTION_LABEL, 0);
13787   ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
13788   ASM_GENERATE_INTERNAL_LABEL (cold_text_section_label, 
13789                                COLD_TEXT_SECTION_LABEL, 0);
13790   ASM_GENERATE_INTERNAL_LABEL (cold_end_label, COLD_END_LABEL, 0);
13791
13792   ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
13793                                DEBUG_INFO_SECTION_LABEL, 0);
13794   ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
13795                                DEBUG_LINE_SECTION_LABEL, 0);
13796   ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
13797                                DEBUG_RANGES_SECTION_LABEL, 0);
13798   switch_to_section (debug_abbrev_section);
13799   ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
13800   switch_to_section (debug_info_section);
13801   ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
13802   switch_to_section (debug_line_section);
13803   ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
13804
13805   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13806     {
13807       switch_to_section (debug_macinfo_section);
13808       ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
13809                                    DEBUG_MACINFO_SECTION_LABEL, 0);
13810       ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
13811     }
13812
13813   switch_to_section (text_section);
13814   ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
13815   if (flag_reorder_blocks_and_partition)
13816     {
13817       switch_to_section (unlikely_text_section ());
13818       ASM_OUTPUT_LABEL (asm_out_file, cold_text_section_label);
13819     }
13820 }
13821
13822 /* A helper function for dwarf2out_finish called through
13823    ht_forall.  Emit one queued .debug_str string.  */
13824
13825 static int
13826 output_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
13827 {
13828   struct indirect_string_node *node = (struct indirect_string_node *) *h;
13829
13830   if (node->form == DW_FORM_strp)
13831     {
13832       switch_to_section (debug_str_section);
13833       ASM_OUTPUT_LABEL (asm_out_file, node->label);
13834       assemble_string (node->str, strlen (node->str) + 1);
13835     }
13836
13837   return 1;
13838 }
13839
13840
13841
13842 /* Clear the marks for a die and its children.
13843    Be cool if the mark isn't set.  */
13844
13845 static void
13846 prune_unmark_dies (dw_die_ref die)
13847 {
13848   dw_die_ref c;
13849   die->die_mark = 0;
13850   for (c = die->die_child; c; c = c->die_sib)
13851     prune_unmark_dies (c);
13852 }
13853
13854
13855 /* Given DIE that we're marking as used, find any other dies
13856    it references as attributes and mark them as used.  */
13857
13858 static void
13859 prune_unused_types_walk_attribs (dw_die_ref die)
13860 {
13861   dw_attr_ref a;
13862   unsigned ix;
13863
13864   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
13865     {
13866       if (a->dw_attr_val.val_class == dw_val_class_die_ref)
13867         {
13868           /* A reference to another DIE.
13869              Make sure that it will get emitted.  */
13870           prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
13871         }
13872       else if (a->dw_attr == DW_AT_decl_file || a->dw_attr == DW_AT_call_file)
13873         {
13874           /* A reference to a file.  Make sure the file name is emitted.  */
13875           a->dw_attr_val.v.val_unsigned =
13876             maybe_emit_file (a->dw_attr_val.v.val_unsigned);
13877         }
13878       /* Set the string's refcount to 0 so that prune_unused_types_mark
13879          accounts properly for it.  */
13880       if (AT_class (a) == dw_val_class_str)
13881         a->dw_attr_val.v.val_str->refcount = 0;
13882     }
13883 }
13884
13885
13886 /* Mark DIE as being used.  If DOKIDS is true, then walk down
13887    to DIE's children.  */
13888
13889 static void
13890 prune_unused_types_mark (dw_die_ref die, int dokids)
13891 {
13892   dw_die_ref c;
13893
13894   if (die->die_mark == 0)
13895     {
13896       /* We haven't done this node yet.  Mark it as used.  */
13897       die->die_mark = 1;
13898
13899       /* We also have to mark its parents as used.
13900          (But we don't want to mark our parents' kids due to this.)  */
13901       if (die->die_parent)
13902         prune_unused_types_mark (die->die_parent, 0);
13903
13904       /* Mark any referenced nodes.  */
13905       prune_unused_types_walk_attribs (die);
13906
13907       /* If this node is a specification,
13908          also mark the definition, if it exists.  */
13909       if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
13910         prune_unused_types_mark (die->die_definition, 1);
13911     }
13912
13913   if (dokids && die->die_mark != 2)
13914     {
13915       /* We need to walk the children, but haven't done so yet.
13916          Remember that we've walked the kids.  */
13917       die->die_mark = 2;
13918
13919       /* Walk them.  */
13920       for (c = die->die_child; c; c = c->die_sib)
13921         {
13922           /* If this is an array type, we need to make sure our
13923              kids get marked, even if they're types.  */
13924           if (die->die_tag == DW_TAG_array_type)
13925             prune_unused_types_mark (c, 1);
13926           else
13927             prune_unused_types_walk (c);
13928         }
13929     }
13930 }
13931
13932
13933 /* Walk the tree DIE and mark types that we actually use.  */
13934
13935 static void
13936 prune_unused_types_walk (dw_die_ref die)
13937 {
13938   dw_die_ref c;
13939
13940   /* Don't do anything if this node is already marked.  */
13941   if (die->die_mark)
13942     return;
13943
13944   switch (die->die_tag) {
13945   case DW_TAG_const_type:
13946   case DW_TAG_packed_type:
13947   case DW_TAG_pointer_type:
13948   case DW_TAG_reference_type:
13949   case DW_TAG_volatile_type:
13950   case DW_TAG_typedef:
13951   case DW_TAG_array_type:
13952   case DW_TAG_structure_type:
13953   case DW_TAG_union_type:
13954   case DW_TAG_class_type:
13955   case DW_TAG_friend:
13956   case DW_TAG_variant_part:
13957   case DW_TAG_enumeration_type:
13958   case DW_TAG_subroutine_type:
13959   case DW_TAG_string_type:
13960   case DW_TAG_set_type:
13961   case DW_TAG_subrange_type:
13962   case DW_TAG_ptr_to_member_type:
13963   case DW_TAG_file_type:
13964     if (die->die_perennial_p)
13965       break;
13966
13967     /* It's a type node --- don't mark it.  */
13968     return;
13969
13970   default:
13971     /* Mark everything else.  */
13972     break;
13973   }
13974
13975   die->die_mark = 1;
13976
13977   /* Now, mark any dies referenced from here.  */
13978   prune_unused_types_walk_attribs (die);
13979
13980   /* Mark children.  */
13981   for (c = die->die_child; c; c = c->die_sib)
13982     prune_unused_types_walk (c);
13983 }
13984
13985 /* Increment the string counts on strings referred to from DIE's
13986    attributes.  */
13987
13988 static void
13989 prune_unused_types_update_strings (dw_die_ref die)
13990 {
13991   dw_attr_ref a;
13992   unsigned ix;
13993
13994   for (ix = 0; VEC_iterate (dw_attr_node, die->die_attr, ix, a); ix++)
13995     if (AT_class (a) == dw_val_class_str)
13996       {
13997         struct indirect_string_node *s = a->dw_attr_val.v.val_str;
13998         s->refcount++;
13999         /* Avoid unnecessarily putting strings that are used less than
14000            twice in the hash table.  */
14001         if (s->refcount
14002             == ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) ? 1 : 2))
14003           {
14004             void ** slot;
14005             slot = htab_find_slot_with_hash (debug_str_hash, s->str,
14006                                              htab_hash_string (s->str),
14007                                              INSERT);
14008             gcc_assert (*slot == NULL);
14009             *slot = s;
14010           }
14011       }
14012 }
14013
14014 /* Remove from the tree DIE any dies that aren't marked.  */
14015
14016 static void
14017 prune_unused_types_prune (dw_die_ref die)
14018 {
14019   dw_die_ref *p;
14020
14021   gcc_assert (die->die_mark);
14022
14023   p = &die->die_child;
14024   while (*p)
14025     {
14026       dw_die_ref c = *p;
14027       if (c && ! c->die_mark)
14028         {
14029           do {
14030             c = c->die_sib;
14031           } while (c && ! c->die_mark);
14032           *p = c;
14033         }
14034       
14035       if (c)
14036         {
14037           prune_unused_types_update_strings (c);
14038           prune_unused_types_prune (c);
14039           p = &c->die_sib;
14040         }
14041     }
14042 }
14043
14044
14045 /* Remove dies representing declarations that we never use.  */
14046
14047 static void
14048 prune_unused_types (void)
14049 {
14050   unsigned int i;
14051   limbo_die_node *node;
14052
14053   /* Clear all the marks.  */
14054   prune_unmark_dies (comp_unit_die);
14055   for (node = limbo_die_list; node; node = node->next)
14056     prune_unmark_dies (node->die);
14057
14058   /* Set the mark on nodes that are actually used.  */
14059   prune_unused_types_walk (comp_unit_die);
14060   for (node = limbo_die_list; node; node = node->next)
14061     prune_unused_types_walk (node->die);
14062
14063   /* Also set the mark on nodes referenced from the
14064      pubname_table or arange_table.  */
14065   for (i = 0; i < pubname_table_in_use; i++)
14066     prune_unused_types_mark (pubname_table[i].die, 1);
14067   for (i = 0; i < arange_table_in_use; i++)
14068     prune_unused_types_mark (arange_table[i], 1);
14069
14070   /* Get rid of nodes that aren't marked; and update the string counts.  */
14071   if (debug_str_hash)
14072     htab_empty (debug_str_hash);
14073   prune_unused_types_prune (comp_unit_die);
14074   for (node = limbo_die_list; node; node = node->next)
14075     prune_unused_types_prune (node->die);
14076
14077   /* Leave the marks clear.  */
14078   prune_unmark_dies (comp_unit_die);
14079   for (node = limbo_die_list; node; node = node->next)
14080     prune_unmark_dies (node->die);
14081 }
14082
14083 /* Output stuff that dwarf requires at the end of every file,
14084    and generate the DWARF-2 debugging info.  */
14085
14086 static void
14087 dwarf2out_finish (const char *filename)
14088 {
14089   limbo_die_node *node, *next_node;
14090   dw_die_ref die = 0;
14091
14092   /* Add the name for the main input file now.  We delayed this from
14093      dwarf2out_init to avoid complications with PCH.  */
14094   add_name_attribute (comp_unit_die, filename);
14095   if (filename[0] != DIR_SEPARATOR)
14096     add_comp_dir_attribute (comp_unit_die);
14097   else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL)
14098     {
14099       size_t i;
14100       for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
14101         if (VARRAY_CHAR_PTR (file_table, i)[0] != DIR_SEPARATOR
14102             /* Don't add cwd for <built-in>.  */
14103             && VARRAY_CHAR_PTR (file_table, i)[0] != '<')
14104           {
14105             add_comp_dir_attribute (comp_unit_die);
14106             break;
14107           }
14108     }
14109
14110   /* Traverse the limbo die list, and add parent/child links.  The only
14111      dies without parents that should be here are concrete instances of
14112      inline functions, and the comp_unit_die.  We can ignore the comp_unit_die.
14113      For concrete instances, we can get the parent die from the abstract
14114      instance.  */
14115   for (node = limbo_die_list; node; node = next_node)
14116     {
14117       next_node = node->next;
14118       die = node->die;
14119
14120       if (die->die_parent == NULL)
14121         {
14122           dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
14123
14124           if (origin)
14125             add_child_die (origin->die_parent, die);
14126           else if (die == comp_unit_die)
14127             ;
14128           else if (errorcount > 0 || sorrycount > 0)
14129             /* It's OK to be confused by errors in the input.  */
14130             add_child_die (comp_unit_die, die);
14131           else
14132             {
14133               /* In certain situations, the lexical block containing a
14134                  nested function can be optimized away, which results
14135                  in the nested function die being orphaned.  Likewise
14136                  with the return type of that nested function.  Force
14137                  this to be a child of the containing function.
14138
14139                  It may happen that even the containing function got fully
14140                  inlined and optimized out.  In that case we are lost and
14141                  assign the empty child.  This should not be big issue as
14142                  the function is likely unreachable too.  */
14143               tree context = NULL_TREE;
14144
14145               gcc_assert (node->created_for);
14146
14147               if (DECL_P (node->created_for))
14148                 context = DECL_CONTEXT (node->created_for);
14149               else if (TYPE_P (node->created_for))
14150                 context = TYPE_CONTEXT (node->created_for);
14151
14152               gcc_assert (context && TREE_CODE (context) == FUNCTION_DECL);
14153
14154               origin = lookup_decl_die (context);
14155               if (origin)
14156                 add_child_die (origin, die);
14157               else
14158                 add_child_die (comp_unit_die, die);
14159             }
14160         }
14161     }
14162
14163   limbo_die_list = NULL;
14164
14165   /* Walk through the list of incomplete types again, trying once more to
14166      emit full debugging info for them.  */
14167   retry_incomplete_types ();
14168
14169   /* We need to reverse all the dies before break_out_includes, or
14170      we'll see the end of an include file before the beginning.  */
14171   reverse_all_dies (comp_unit_die);
14172
14173   if (flag_eliminate_unused_debug_types)
14174     prune_unused_types ();
14175
14176   /* Generate separate CUs for each of the include files we've seen.
14177      They will go into limbo_die_list.  */
14178   if (flag_eliminate_dwarf2_dups)
14179     break_out_includes (comp_unit_die);
14180
14181   /* Traverse the DIE's and add add sibling attributes to those DIE's
14182      that have children.  */
14183   add_sibling_attributes (comp_unit_die);
14184   for (node = limbo_die_list; node; node = node->next)
14185     add_sibling_attributes (node->die);
14186
14187   /* Output a terminator label for the .text section.  */
14188   switch_to_section (text_section);
14189   targetm.asm_out.internal_label (asm_out_file, TEXT_END_LABEL, 0);
14190   if (flag_reorder_blocks_and_partition)
14191     {
14192       switch_to_section (unlikely_text_section ());
14193       targetm.asm_out.internal_label (asm_out_file, COLD_END_LABEL, 0);
14194     }
14195
14196   /* Output the source line correspondence table.  We must do this
14197      even if there is no line information.  Otherwise, on an empty
14198      translation unit, we will generate a present, but empty,
14199      .debug_info section.  IRIX 6.5 `nm' will then complain when
14200      examining the file.  */
14201   if (! DWARF2_ASM_LINE_DEBUG_INFO)
14202     {
14203       switch_to_section (debug_line_section);
14204       output_line_info ();
14205     }
14206
14207   /* We can only use the low/high_pc attributes if all of the code was
14208      in .text.  */
14209   if (!have_multiple_function_sections)
14210     {
14211       add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
14212       add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
14213     }
14214
14215   /* If it wasn't, we need to give .debug_loc and .debug_ranges an appropriate
14216      "base address".  Use zero so that these addresses become absolute.  */
14217   else if (have_location_lists || ranges_table_in_use)
14218     add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
14219
14220   /* Output location list section if necessary.  */
14221   if (have_location_lists)
14222     {
14223       /* Output the location lists info.  */
14224       switch_to_section (debug_loc_section);
14225       ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
14226                                    DEBUG_LOC_SECTION_LABEL, 0);
14227       ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
14228       output_location_lists (die);
14229     }
14230
14231   if (debug_info_level >= DINFO_LEVEL_NORMAL)
14232     add_AT_lineptr (comp_unit_die, DW_AT_stmt_list,
14233                     debug_line_section_label);
14234
14235   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
14236     add_AT_macptr (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
14237
14238   /* Output all of the compilation units.  We put the main one last so that
14239      the offsets are available to output_pubnames.  */
14240   for (node = limbo_die_list; node; node = node->next)
14241     output_comp_unit (node->die, 0);
14242
14243   output_comp_unit (comp_unit_die, 0);
14244
14245   /* Output the abbreviation table.  */
14246   switch_to_section (debug_abbrev_section);
14247   output_abbrev_section ();
14248
14249   /* Output public names table if necessary.  */
14250   if (pubname_table_in_use)
14251     {
14252       switch_to_section (debug_pubnames_section);
14253       output_pubnames ();
14254     }
14255
14256   /* Output the address range information.  We only put functions in the arange
14257      table, so don't write it out if we don't have any.  */
14258   if (fde_table_in_use)
14259     {
14260       switch_to_section (debug_aranges_section);
14261       output_aranges ();
14262     }
14263
14264   /* Output ranges section if necessary.  */
14265   if (ranges_table_in_use)
14266     {
14267       switch_to_section (debug_ranges_section);
14268       ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
14269       output_ranges ();
14270     }
14271
14272   /* Have to end the macro section.  */
14273   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
14274     {
14275       switch_to_section (debug_macinfo_section);
14276       dw2_asm_output_data (1, 0, "End compilation unit");
14277     }
14278
14279   /* If we emitted any DW_FORM_strp form attribute, output the string
14280      table too.  */
14281   if (debug_str_hash)
14282     htab_traverse (debug_str_hash, output_indirect_string, NULL);
14283 }
14284 #else
14285
14286 /* This should never be used, but its address is needed for comparisons.  */
14287 const struct gcc_debug_hooks dwarf2_debug_hooks;
14288
14289 #endif /* DWARF2_DEBUGGING_INFO */
14290
14291 #include "gt-dwarf2out.h"