OSDN Git Service

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