OSDN Git Service

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