OSDN Git Service

* dwarf2out.c (force_type_die): Look up input type itself
[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
3255 /* The debug hooks structure.  */
3256
3257 const struct gcc_debug_hooks dwarf2_debug_hooks =
3258 {
3259   dwarf2out_init,
3260   dwarf2out_finish,
3261   dwarf2out_define,
3262   dwarf2out_undef,
3263   dwarf2out_start_source_file,
3264   dwarf2out_end_source_file,
3265   dwarf2out_begin_block,
3266   dwarf2out_end_block,
3267   dwarf2out_ignore_block,
3268   dwarf2out_source_line,
3269   dwarf2out_begin_prologue,
3270   debug_nothing_int_charstar,   /* end_prologue */
3271   dwarf2out_end_epilogue,
3272   debug_nothing_tree,           /* begin_function */
3273   debug_nothing_int,            /* end_function */
3274   dwarf2out_decl,               /* function_decl */
3275   dwarf2out_global_decl,
3276   dwarf2out_imported_module_or_decl,
3277   debug_nothing_tree,           /* deferred_inline_function */
3278   /* The DWARF 2 backend tries to reduce debugging bloat by not
3279      emitting the abstract description of inline functions until
3280      something tries to reference them.  */
3281   dwarf2out_abstract_function,  /* outlining_inline_function */
3282   debug_nothing_rtx,            /* label */
3283   debug_nothing_int             /* handle_pch */
3284 };
3285 #endif
3286 \f
3287 /* NOTE: In the comments in this file, many references are made to
3288    "Debugging Information Entries".  This term is abbreviated as `DIE'
3289    throughout the remainder of this file.  */
3290
3291 /* An internal representation of the DWARF output is built, and then
3292    walked to generate the DWARF debugging info.  The walk of the internal
3293    representation is done after the entire program has been compiled.
3294    The types below are used to describe the internal representation.  */
3295
3296 /* Various DIE's use offsets relative to the beginning of the
3297    .debug_info section to refer to each other.  */
3298
3299 typedef long int dw_offset;
3300
3301 /* Define typedefs here to avoid circular dependencies.  */
3302
3303 typedef struct dw_attr_struct *dw_attr_ref;
3304 typedef struct dw_line_info_struct *dw_line_info_ref;
3305 typedef struct dw_separate_line_info_struct *dw_separate_line_info_ref;
3306 typedef struct pubname_struct *pubname_ref;
3307 typedef struct dw_ranges_struct *dw_ranges_ref;
3308
3309 /* Each entry in the line_info_table maintains the file and
3310    line number associated with the label generated for that
3311    entry.  The label gives the PC value associated with
3312    the line number entry.  */
3313
3314 typedef struct dw_line_info_struct GTY(())
3315 {
3316   unsigned long dw_file_num;
3317   unsigned long dw_line_num;
3318 }
3319 dw_line_info_entry;
3320
3321 /* Line information for functions in separate sections; each one gets its
3322    own sequence.  */
3323 typedef struct dw_separate_line_info_struct GTY(())
3324 {
3325   unsigned long dw_file_num;
3326   unsigned long dw_line_num;
3327   unsigned long function;
3328 }
3329 dw_separate_line_info_entry;
3330
3331 /* Each DIE attribute has a field specifying the attribute kind,
3332    a link to the next attribute in the chain, and an attribute value.
3333    Attributes are typically linked below the DIE they modify.  */
3334
3335 typedef struct dw_attr_struct GTY(())
3336 {
3337   enum dwarf_attribute dw_attr;
3338   dw_attr_ref dw_attr_next;
3339   dw_val_node dw_attr_val;
3340 }
3341 dw_attr_node;
3342
3343 /* The Debugging Information Entry (DIE) structure */
3344
3345 typedef struct die_struct GTY(())
3346 {
3347   enum dwarf_tag die_tag;
3348   char *die_symbol;
3349   dw_attr_ref die_attr;
3350   dw_die_ref die_parent;
3351   dw_die_ref die_child;
3352   dw_die_ref die_sib;
3353   dw_die_ref die_definition; /* ref from a specification to its definition */
3354   dw_offset die_offset;
3355   unsigned long die_abbrev;
3356   int die_mark;
3357   unsigned int decl_id;
3358 }
3359 die_node;
3360
3361 /* The pubname structure */
3362
3363 typedef struct pubname_struct GTY(())
3364 {
3365   dw_die_ref die;
3366   char *name;
3367 }
3368 pubname_entry;
3369
3370 struct dw_ranges_struct GTY(())
3371 {
3372   int block_num;
3373 };
3374
3375 /* The limbo die list structure.  */
3376 typedef struct limbo_die_struct GTY(())
3377 {
3378   dw_die_ref die;
3379   tree created_for;
3380   struct limbo_die_struct *next;
3381 }
3382 limbo_die_node;
3383
3384 /* How to start an assembler comment.  */
3385 #ifndef ASM_COMMENT_START
3386 #define ASM_COMMENT_START ";#"
3387 #endif
3388
3389 /* Define a macro which returns nonzero for a TYPE_DECL which was
3390    implicitly generated for a tagged type.
3391
3392    Note that unlike the gcc front end (which generates a NULL named
3393    TYPE_DECL node for each complete tagged type, each array type, and
3394    each function type node created) the g++ front end generates a
3395    _named_ TYPE_DECL node for each tagged type node created.
3396    These TYPE_DECLs have DECL_ARTIFICIAL set, so we know not to
3397    generate a DW_TAG_typedef DIE for them.  */
3398
3399 #define TYPE_DECL_IS_STUB(decl)                         \
3400   (DECL_NAME (decl) == NULL_TREE                        \
3401    || (DECL_ARTIFICIAL (decl)                           \
3402        && is_tagged_type (TREE_TYPE (decl))             \
3403        && ((decl == TYPE_STUB_DECL (TREE_TYPE (decl)))  \
3404            /* This is necessary for stub decls that     \
3405               appear in nested inline functions.  */    \
3406            || (DECL_ABSTRACT_ORIGIN (decl) != NULL_TREE \
3407                && (decl_ultimate_origin (decl)          \
3408                    == TYPE_STUB_DECL (TREE_TYPE (decl)))))))
3409
3410 /* Information concerning the compilation unit's programming
3411    language, and compiler version.  */
3412
3413 /* Fixed size portion of the DWARF compilation unit header.  */
3414 #define DWARF_COMPILE_UNIT_HEADER_SIZE \
3415   (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 3)
3416
3417 /* Fixed size portion of public names info.  */
3418 #define DWARF_PUBNAMES_HEADER_SIZE (2 * DWARF_OFFSET_SIZE + 2)
3419
3420 /* Fixed size portion of the address range info.  */
3421 #define DWARF_ARANGES_HEADER_SIZE                                       \
3422   (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4,      \
3423                 DWARF2_ADDR_SIZE * 2)                                   \
3424    - DWARF_INITIAL_LENGTH_SIZE)
3425
3426 /* Size of padding portion in the address range info.  It must be
3427    aligned to twice the pointer size.  */
3428 #define DWARF_ARANGES_PAD_SIZE \
3429   (DWARF_ROUND (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4, \
3430                 DWARF2_ADDR_SIZE * 2) \
3431    - (DWARF_INITIAL_LENGTH_SIZE + DWARF_OFFSET_SIZE + 4))
3432
3433 /* Use assembler line directives if available.  */
3434 #ifndef DWARF2_ASM_LINE_DEBUG_INFO
3435 #ifdef HAVE_AS_DWARF2_DEBUG_LINE
3436 #define DWARF2_ASM_LINE_DEBUG_INFO 1
3437 #else
3438 #define DWARF2_ASM_LINE_DEBUG_INFO 0
3439 #endif
3440 #endif
3441
3442 /* Minimum line offset in a special line info. opcode.
3443    This value was chosen to give a reasonable range of values.  */
3444 #define DWARF_LINE_BASE  -10
3445
3446 /* First special line opcode - leave room for the standard opcodes.  */
3447 #define DWARF_LINE_OPCODE_BASE  10
3448
3449 /* Range of line offsets in a special line info. opcode.  */
3450 #define DWARF_LINE_RANGE  (254-DWARF_LINE_OPCODE_BASE+1)
3451
3452 /* Flag that indicates the initial value of the is_stmt_start flag.
3453    In the present implementation, we do not mark any lines as
3454    the beginning of a source statement, because that information
3455    is not made available by the GCC front-end.  */
3456 #define DWARF_LINE_DEFAULT_IS_STMT_START 1
3457
3458 #ifdef DWARF2_DEBUGGING_INFO
3459 /* This location is used by calc_die_sizes() to keep track
3460    the offset of each DIE within the .debug_info section.  */
3461 static unsigned long next_die_offset;
3462 #endif
3463
3464 /* Record the root of the DIE's built for the current compilation unit.  */
3465 static GTY(()) dw_die_ref comp_unit_die;
3466
3467 /* A list of DIEs with a NULL parent waiting to be relocated.  */
3468 static GTY(()) limbo_die_node *limbo_die_list;
3469
3470 /* Filenames referenced by this compilation unit.  */
3471 static GTY(()) varray_type file_table;
3472 static GTY(()) varray_type file_table_emitted;
3473 static GTY(()) size_t file_table_last_lookup_index;
3474
3475 /* A hash table of references to DIE's that describe declarations.
3476    The key is a DECL_UID() which is a unique number identifying each decl.  */
3477 static GTY ((param_is (struct die_struct))) htab_t decl_die_table;
3478
3479 /* A pointer to the base of a list of references to DIE's that
3480    are uniquely identified by their tag, presence/absence of
3481    children DIE's, and list of attribute/value pairs.  */
3482 static GTY((length ("abbrev_die_table_allocated")))
3483   dw_die_ref *abbrev_die_table;
3484
3485 /* Number of elements currently allocated for abbrev_die_table.  */
3486 static GTY(()) unsigned abbrev_die_table_allocated;
3487
3488 /* Number of elements in type_die_table currently in use.  */
3489 static GTY(()) unsigned abbrev_die_table_in_use;
3490
3491 /* Size (in elements) of increments by which we may expand the
3492    abbrev_die_table.  */
3493 #define ABBREV_DIE_TABLE_INCREMENT 256
3494
3495 /* A pointer to the base of a table that contains line information
3496    for each source code line in .text in the compilation unit.  */
3497 static GTY((length ("line_info_table_allocated")))
3498      dw_line_info_ref line_info_table;
3499
3500 /* Number of elements currently allocated for line_info_table.  */
3501 static GTY(()) unsigned line_info_table_allocated;
3502
3503 /* Number of elements in line_info_table currently in use.  */
3504 static GTY(()) unsigned line_info_table_in_use;
3505
3506 /* A pointer to the base of a table that contains line information
3507    for each source code line outside of .text in the compilation unit.  */
3508 static GTY ((length ("separate_line_info_table_allocated")))
3509      dw_separate_line_info_ref separate_line_info_table;
3510
3511 /* Number of elements currently allocated for separate_line_info_table.  */
3512 static GTY(()) unsigned separate_line_info_table_allocated;
3513
3514 /* Number of elements in separate_line_info_table currently in use.  */
3515 static GTY(()) unsigned separate_line_info_table_in_use;
3516
3517 /* Size (in elements) of increments by which we may expand the
3518    line_info_table.  */
3519 #define LINE_INFO_TABLE_INCREMENT 1024
3520
3521 /* A pointer to the base of a table that contains a list of publicly
3522    accessible names.  */
3523 static GTY ((length ("pubname_table_allocated"))) pubname_ref pubname_table;
3524
3525 /* Number of elements currently allocated for pubname_table.  */
3526 static GTY(()) unsigned pubname_table_allocated;
3527
3528 /* Number of elements in pubname_table currently in use.  */
3529 static GTY(()) unsigned pubname_table_in_use;
3530
3531 /* Size (in elements) of increments by which we may expand the
3532    pubname_table.  */
3533 #define PUBNAME_TABLE_INCREMENT 64
3534
3535 /* Array of dies for which we should generate .debug_arange info.  */
3536 static GTY((length ("arange_table_allocated"))) dw_die_ref *arange_table;
3537
3538 /* Number of elements currently allocated for arange_table.  */
3539 static GTY(()) unsigned arange_table_allocated;
3540
3541 /* Number of elements in arange_table currently in use.  */
3542 static GTY(()) unsigned arange_table_in_use;
3543
3544 /* Size (in elements) of increments by which we may expand the
3545    arange_table.  */
3546 #define ARANGE_TABLE_INCREMENT 64
3547
3548 /* Array of dies for which we should generate .debug_ranges info.  */
3549 static GTY ((length ("ranges_table_allocated"))) dw_ranges_ref ranges_table;
3550
3551 /* Number of elements currently allocated for ranges_table.  */
3552 static GTY(()) unsigned ranges_table_allocated;
3553
3554 /* Number of elements in ranges_table currently in use.  */
3555 static GTY(()) unsigned ranges_table_in_use;
3556
3557 /* Size (in elements) of increments by which we may expand the
3558    ranges_table.  */
3559 #define RANGES_TABLE_INCREMENT 64
3560
3561 /* Whether we have location lists that need outputting */
3562 static GTY(()) unsigned have_location_lists;
3563
3564 #ifdef DWARF2_DEBUGGING_INFO
3565 /* Record whether the function being analyzed contains inlined functions.  */
3566 static int current_function_has_inlines;
3567 #endif
3568 #if 0 && defined (MIPS_DEBUGGING_INFO)
3569 static int comp_unit_has_inlines;
3570 #endif
3571
3572 /* Number of file tables emitted in maybe_emit_file().  */
3573 static GTY(()) int emitcount = 0;
3574
3575 /* Number of internal labels generated by gen_internal_sym().  */
3576 static GTY(()) int label_num;
3577
3578 #ifdef DWARF2_DEBUGGING_INFO
3579
3580 /* Forward declarations for functions defined in this file.  */
3581
3582 static int is_pseudo_reg (rtx);
3583 static tree type_main_variant (tree);
3584 static int is_tagged_type (tree);
3585 static const char *dwarf_tag_name (unsigned);
3586 static const char *dwarf_attr_name (unsigned);
3587 static const char *dwarf_form_name (unsigned);
3588 #if 0
3589 static const char *dwarf_type_encoding_name (unsigned);
3590 #endif
3591 static tree decl_ultimate_origin (tree);
3592 static tree block_ultimate_origin (tree);
3593 static tree decl_class_context (tree);
3594 static void add_dwarf_attr (dw_die_ref, dw_attr_ref);
3595 static inline enum dw_val_class AT_class (dw_attr_ref);
3596 static void add_AT_flag (dw_die_ref, enum dwarf_attribute, unsigned);
3597 static inline unsigned AT_flag (dw_attr_ref);
3598 static void add_AT_int (dw_die_ref, enum dwarf_attribute, HOST_WIDE_INT);
3599 static inline HOST_WIDE_INT AT_int (dw_attr_ref);
3600 static void add_AT_unsigned (dw_die_ref, enum dwarf_attribute, unsigned HOST_WIDE_INT);
3601 static inline unsigned HOST_WIDE_INT AT_unsigned (dw_attr_ref);
3602 static void add_AT_long_long (dw_die_ref, enum dwarf_attribute, unsigned long,
3603                               unsigned long);
3604 static void add_AT_float (dw_die_ref, enum dwarf_attribute, unsigned, long *);
3605 static hashval_t debug_str_do_hash (const void *);
3606 static int debug_str_eq (const void *, const void *);
3607 static void add_AT_string (dw_die_ref, enum dwarf_attribute, const char *);
3608 static inline const char *AT_string (dw_attr_ref);
3609 static int AT_string_form (dw_attr_ref);
3610 static void add_AT_die_ref (dw_die_ref, enum dwarf_attribute, dw_die_ref);
3611 static void add_AT_specification (dw_die_ref, dw_die_ref);
3612 static inline dw_die_ref AT_ref (dw_attr_ref);
3613 static inline int AT_ref_external (dw_attr_ref);
3614 static inline void set_AT_ref_external (dw_attr_ref, int);
3615 static void add_AT_fde_ref (dw_die_ref, enum dwarf_attribute, unsigned);
3616 static void add_AT_loc (dw_die_ref, enum dwarf_attribute, dw_loc_descr_ref);
3617 static inline dw_loc_descr_ref AT_loc (dw_attr_ref);
3618 static void add_AT_loc_list (dw_die_ref, enum dwarf_attribute,
3619                              dw_loc_list_ref);
3620 static inline dw_loc_list_ref AT_loc_list (dw_attr_ref);
3621 static void add_AT_addr (dw_die_ref, enum dwarf_attribute, rtx);
3622 static inline rtx AT_addr (dw_attr_ref);
3623 static void add_AT_lbl_id (dw_die_ref, enum dwarf_attribute, const char *);
3624 static void add_AT_lbl_offset (dw_die_ref, enum dwarf_attribute, const char *);
3625 static void add_AT_offset (dw_die_ref, enum dwarf_attribute,
3626                            unsigned HOST_WIDE_INT);
3627 static void add_AT_range_list (dw_die_ref, enum dwarf_attribute,
3628                                unsigned long);
3629 static inline const char *AT_lbl (dw_attr_ref);
3630 static dw_attr_ref get_AT (dw_die_ref, enum dwarf_attribute);
3631 static const char *get_AT_low_pc (dw_die_ref);
3632 static const char *get_AT_hi_pc (dw_die_ref);
3633 static const char *get_AT_string (dw_die_ref, enum dwarf_attribute);
3634 static int get_AT_flag (dw_die_ref, enum dwarf_attribute);
3635 static unsigned get_AT_unsigned (dw_die_ref, enum dwarf_attribute);
3636 static inline dw_die_ref get_AT_ref (dw_die_ref, enum dwarf_attribute);
3637 static bool is_c_family (void);
3638 static bool is_cxx (void);
3639 static bool is_java (void);
3640 static bool is_fortran (void);
3641 static bool is_ada (void);
3642 static void remove_AT (dw_die_ref, enum dwarf_attribute);
3643 static void remove_child_TAG (dw_die_ref, enum dwarf_tag);
3644 static inline void free_die (dw_die_ref);
3645 static void remove_children (dw_die_ref);
3646 static void add_child_die (dw_die_ref, dw_die_ref);
3647 static dw_die_ref new_die (enum dwarf_tag, dw_die_ref, tree);
3648 static dw_die_ref lookup_type_die (tree);
3649 static void equate_type_number_to_die (tree, dw_die_ref);
3650 static hashval_t decl_die_table_hash (const void *);
3651 static int decl_die_table_eq (const void *, const void *);
3652 static dw_die_ref lookup_decl_die (tree);
3653 static void equate_decl_number_to_die (tree, dw_die_ref);
3654 static void print_spaces (FILE *);
3655 static void print_die (dw_die_ref, FILE *);
3656 static void print_dwarf_line_table (FILE *);
3657 static void reverse_die_lists (dw_die_ref);
3658 static void reverse_all_dies (dw_die_ref);
3659 static dw_die_ref push_new_compile_unit (dw_die_ref, dw_die_ref);
3660 static dw_die_ref pop_compile_unit (dw_die_ref);
3661 static void loc_checksum (dw_loc_descr_ref, struct md5_ctx *);
3662 static void attr_checksum (dw_attr_ref, struct md5_ctx *, int *);
3663 static void die_checksum (dw_die_ref, struct md5_ctx *, int *);
3664 static int same_loc_p (dw_loc_descr_ref, dw_loc_descr_ref, int *);
3665 static int same_dw_val_p (dw_val_node *, dw_val_node *, int *);
3666 static int same_attr_p (dw_attr_ref, dw_attr_ref, int *);
3667 static int same_die_p (dw_die_ref, dw_die_ref, int *);
3668 static int same_die_p_wrap (dw_die_ref, dw_die_ref);
3669 static void compute_section_prefix (dw_die_ref);
3670 static int is_type_die (dw_die_ref);
3671 static int is_comdat_die (dw_die_ref);
3672 static int is_symbol_die (dw_die_ref);
3673 static void assign_symbol_names (dw_die_ref);
3674 static void break_out_includes (dw_die_ref);
3675 static hashval_t htab_cu_hash (const void *);
3676 static int htab_cu_eq (const void *, const void *);
3677 static void htab_cu_del (void *);
3678 static int check_duplicate_cu (dw_die_ref, htab_t, unsigned *);
3679 static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
3680 static void add_sibling_attributes (dw_die_ref);
3681 static void build_abbrev_table (dw_die_ref);
3682 static void output_location_lists (dw_die_ref);
3683 static int constant_size (long unsigned);
3684 static unsigned long size_of_die (dw_die_ref);
3685 static void calc_die_sizes (dw_die_ref);
3686 static void mark_dies (dw_die_ref);
3687 static void unmark_dies (dw_die_ref);
3688 static void unmark_all_dies (dw_die_ref);
3689 static unsigned long size_of_pubnames (void);
3690 static unsigned long size_of_aranges (void);
3691 static enum dwarf_form value_format (dw_attr_ref);
3692 static void output_value_format (dw_attr_ref);
3693 static void output_abbrev_section (void);
3694 static void output_die_symbol (dw_die_ref);
3695 static void output_die (dw_die_ref);
3696 static void output_compilation_unit_header (void);
3697 static void output_comp_unit (dw_die_ref, int);
3698 static const char *dwarf2_name (tree, int);
3699 static void add_pubname (tree, dw_die_ref);
3700 static void output_pubnames (void);
3701 static void add_arange (tree, dw_die_ref);
3702 static void output_aranges (void);
3703 static unsigned int add_ranges (tree);
3704 static void output_ranges (void);
3705 static void output_line_info (void);
3706 static void output_file_names (void);
3707 static dw_die_ref base_type_die (tree);
3708 static tree root_type (tree);
3709 static int is_base_type (tree);
3710 static bool is_subrange_type (tree);
3711 static dw_die_ref subrange_type_die (tree, dw_die_ref);
3712 static dw_die_ref modified_type_die (tree, int, int, dw_die_ref);
3713 static int type_is_enum (tree);
3714 static unsigned int reg_number (rtx);
3715 static dw_loc_descr_ref reg_loc_descriptor (rtx);
3716 static dw_loc_descr_ref one_reg_loc_descriptor (unsigned int);
3717 static dw_loc_descr_ref multiple_reg_loc_descriptor (rtx, rtx);
3718 static dw_loc_descr_ref int_loc_descriptor (HOST_WIDE_INT);
3719 static dw_loc_descr_ref based_loc_descr (unsigned, HOST_WIDE_INT);
3720 static int is_based_loc (rtx);
3721 static dw_loc_descr_ref mem_loc_descriptor (rtx, enum machine_mode mode);
3722 static dw_loc_descr_ref concat_loc_descriptor (rtx, rtx);
3723 static dw_loc_descr_ref loc_descriptor (rtx);
3724 static dw_loc_descr_ref loc_descriptor_from_tree (tree, int);
3725 static HOST_WIDE_INT ceiling (HOST_WIDE_INT, unsigned int);
3726 static tree field_type (tree);
3727 static unsigned int simple_type_align_in_bits (tree);
3728 static unsigned int simple_decl_align_in_bits (tree);
3729 static unsigned HOST_WIDE_INT simple_type_size_in_bits (tree);
3730 static HOST_WIDE_INT field_byte_offset (tree);
3731 static void add_AT_location_description (dw_die_ref, enum dwarf_attribute,
3732                                          dw_loc_descr_ref);
3733 static void add_data_member_location_attribute (dw_die_ref, tree);
3734 static void add_const_value_attribute (dw_die_ref, rtx);
3735 static rtx rtl_for_decl_location (tree);
3736 static void add_location_or_const_value_attribute (dw_die_ref, tree);
3737 static void tree_add_const_value_attribute (dw_die_ref, tree);
3738 static void add_name_attribute (dw_die_ref, const char *);
3739 static void add_comp_dir_attribute (dw_die_ref);
3740 static void add_bound_info (dw_die_ref, enum dwarf_attribute, tree);
3741 static void add_subscript_info (dw_die_ref, tree);
3742 static void add_byte_size_attribute (dw_die_ref, tree);
3743 static void add_bit_offset_attribute (dw_die_ref, tree);
3744 static void add_bit_size_attribute (dw_die_ref, tree);
3745 static void add_prototyped_attribute (dw_die_ref, tree);
3746 static void add_abstract_origin_attribute (dw_die_ref, tree);
3747 static void add_pure_or_virtual_attribute (dw_die_ref, tree);
3748 static void add_src_coords_attributes (dw_die_ref, tree);
3749 static void add_name_and_src_coords_attributes (dw_die_ref, tree);
3750 static void push_decl_scope (tree);
3751 static void pop_decl_scope (void);
3752 static dw_die_ref scope_die_for (tree, dw_die_ref);
3753 static inline int local_scope_p (dw_die_ref);
3754 static inline int class_or_namespace_scope_p (dw_die_ref);
3755 static void add_type_attribute (dw_die_ref, tree, int, int, dw_die_ref);
3756 static const char *type_tag (tree);
3757 static tree member_declared_type (tree);
3758 #if 0
3759 static const char *decl_start_label (tree);
3760 #endif
3761 static void gen_array_type_die (tree, dw_die_ref);
3762 static void gen_set_type_die (tree, dw_die_ref);
3763 #if 0
3764 static void gen_entry_point_die (tree, dw_die_ref);
3765 #endif
3766 static void gen_inlined_enumeration_type_die (tree, dw_die_ref);
3767 static void gen_inlined_structure_type_die (tree, dw_die_ref);
3768 static void gen_inlined_union_type_die (tree, dw_die_ref);
3769 static dw_die_ref gen_enumeration_type_die (tree, dw_die_ref);
3770 static dw_die_ref gen_formal_parameter_die (tree, dw_die_ref);
3771 static void gen_unspecified_parameters_die (tree, dw_die_ref);
3772 static void gen_formal_types_die (tree, dw_die_ref);
3773 static void gen_subprogram_die (tree, dw_die_ref);
3774 static void gen_variable_die (tree, dw_die_ref);
3775 static void gen_label_die (tree, dw_die_ref);
3776 static void gen_lexical_block_die (tree, dw_die_ref, int);
3777 static void gen_inlined_subroutine_die (tree, dw_die_ref, int);
3778 static void gen_field_die (tree, dw_die_ref);
3779 static void gen_ptr_to_mbr_type_die (tree, dw_die_ref);
3780 static dw_die_ref gen_compile_unit_die (const char *);
3781 static void gen_string_type_die (tree, dw_die_ref);
3782 static void gen_inheritance_die (tree, tree, dw_die_ref);
3783 static void gen_member_die (tree, dw_die_ref);
3784 static void gen_struct_or_union_type_die (tree, dw_die_ref);
3785 static void gen_subroutine_type_die (tree, dw_die_ref);
3786 static void gen_typedef_die (tree, dw_die_ref);
3787 static void gen_type_die (tree, dw_die_ref);
3788 static void gen_tagged_type_instantiation_die (tree, dw_die_ref);
3789 static void gen_block_die (tree, dw_die_ref, int);
3790 static void decls_for_scope (tree, dw_die_ref, int);
3791 static int is_redundant_typedef (tree);
3792 static void gen_namespace_die (tree);
3793 static void gen_decl_die (tree, dw_die_ref);
3794 static dw_die_ref force_decl_die (tree);
3795 static dw_die_ref force_type_die (tree);
3796 static dw_die_ref setup_namespace_context (tree, dw_die_ref);
3797 static void declare_in_namespace (tree, dw_die_ref);
3798 static unsigned lookup_filename (const char *);
3799 static void init_file_table (void);
3800 static void retry_incomplete_types (void);
3801 static void gen_type_die_for_member (tree, tree, dw_die_ref);
3802 static void splice_child_die (dw_die_ref, dw_die_ref);
3803 static int file_info_cmp (const void *, const void *);
3804 static dw_loc_list_ref new_loc_list (dw_loc_descr_ref, const char *,
3805                                      const char *, const char *, unsigned);
3806 static void add_loc_descr_to_loc_list (dw_loc_list_ref *, dw_loc_descr_ref,
3807                                        const char *, const char *,
3808                                        const char *);
3809 static void output_loc_list (dw_loc_list_ref);
3810 static char *gen_internal_sym (const char *);
3811
3812 static void prune_unmark_dies (dw_die_ref);
3813 static void prune_unused_types_mark (dw_die_ref, int);
3814 static void prune_unused_types_walk (dw_die_ref);
3815 static void prune_unused_types_walk_attribs (dw_die_ref);
3816 static void prune_unused_types_prune (dw_die_ref);
3817 static void prune_unused_types (void);
3818 static int maybe_emit_file (int);
3819
3820 /* Section names used to hold DWARF debugging information.  */
3821 #ifndef DEBUG_INFO_SECTION
3822 #define DEBUG_INFO_SECTION      ".debug_info"
3823 #endif
3824 #ifndef DEBUG_ABBREV_SECTION
3825 #define DEBUG_ABBREV_SECTION    ".debug_abbrev"
3826 #endif
3827 #ifndef DEBUG_ARANGES_SECTION
3828 #define DEBUG_ARANGES_SECTION   ".debug_aranges"
3829 #endif
3830 #ifndef DEBUG_MACINFO_SECTION
3831 #define DEBUG_MACINFO_SECTION   ".debug_macinfo"
3832 #endif
3833 #ifndef DEBUG_LINE_SECTION
3834 #define DEBUG_LINE_SECTION      ".debug_line"
3835 #endif
3836 #ifndef DEBUG_LOC_SECTION
3837 #define DEBUG_LOC_SECTION       ".debug_loc"
3838 #endif
3839 #ifndef DEBUG_PUBNAMES_SECTION
3840 #define DEBUG_PUBNAMES_SECTION  ".debug_pubnames"
3841 #endif
3842 #ifndef DEBUG_STR_SECTION
3843 #define DEBUG_STR_SECTION       ".debug_str"
3844 #endif
3845 #ifndef DEBUG_RANGES_SECTION
3846 #define DEBUG_RANGES_SECTION    ".debug_ranges"
3847 #endif
3848
3849 /* Standard ELF section names for compiled code and data.  */
3850 #ifndef TEXT_SECTION_NAME
3851 #define TEXT_SECTION_NAME       ".text"
3852 #endif
3853
3854 /* Section flags for .debug_str section.  */
3855 #define DEBUG_STR_SECTION_FLAGS \
3856   (HAVE_GAS_SHF_MERGE && flag_merge_constants                   \
3857    ? SECTION_DEBUG | SECTION_MERGE | SECTION_STRINGS | 1        \
3858    : SECTION_DEBUG)
3859
3860 /* Labels we insert at beginning sections we can reference instead of
3861    the section names themselves.  */
3862
3863 #ifndef TEXT_SECTION_LABEL
3864 #define TEXT_SECTION_LABEL              "Ltext"
3865 #endif
3866 #ifndef DEBUG_LINE_SECTION_LABEL
3867 #define DEBUG_LINE_SECTION_LABEL        "Ldebug_line"
3868 #endif
3869 #ifndef DEBUG_INFO_SECTION_LABEL
3870 #define DEBUG_INFO_SECTION_LABEL        "Ldebug_info"
3871 #endif
3872 #ifndef DEBUG_ABBREV_SECTION_LABEL
3873 #define DEBUG_ABBREV_SECTION_LABEL      "Ldebug_abbrev"
3874 #endif
3875 #ifndef DEBUG_LOC_SECTION_LABEL
3876 #define DEBUG_LOC_SECTION_LABEL         "Ldebug_loc"
3877 #endif
3878 #ifndef DEBUG_RANGES_SECTION_LABEL
3879 #define DEBUG_RANGES_SECTION_LABEL      "Ldebug_ranges"
3880 #endif
3881 #ifndef DEBUG_MACINFO_SECTION_LABEL
3882 #define DEBUG_MACINFO_SECTION_LABEL     "Ldebug_macinfo"
3883 #endif
3884
3885 /* Definitions of defaults for formats and names of various special
3886    (artificial) labels which may be generated within this file (when the -g
3887    options is used and DWARF2_DEBUGGING_INFO is in effect.
3888    If necessary, these may be overridden from within the tm.h file, but
3889    typically, overriding these defaults is unnecessary.  */
3890
3891 static char text_end_label[MAX_ARTIFICIAL_LABEL_BYTES];
3892 static char text_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3893 static char abbrev_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3894 static char debug_info_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3895 static char debug_line_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3896 static char macinfo_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3897 static char loc_section_label[MAX_ARTIFICIAL_LABEL_BYTES];
3898 static char ranges_section_label[2 * MAX_ARTIFICIAL_LABEL_BYTES];
3899
3900 #ifndef TEXT_END_LABEL
3901 #define TEXT_END_LABEL          "Letext"
3902 #endif
3903 #ifndef BLOCK_BEGIN_LABEL
3904 #define BLOCK_BEGIN_LABEL       "LBB"
3905 #endif
3906 #ifndef BLOCK_END_LABEL
3907 #define BLOCK_END_LABEL         "LBE"
3908 #endif
3909 #ifndef LINE_CODE_LABEL
3910 #define LINE_CODE_LABEL         "LM"
3911 #endif
3912 #ifndef SEPARATE_LINE_CODE_LABEL
3913 #define SEPARATE_LINE_CODE_LABEL        "LSM"
3914 #endif
3915 \f
3916 /* We allow a language front-end to designate a function that is to be
3917    called to "demangle" any name before it it put into a DIE.  */
3918
3919 static const char *(*demangle_name_func) (const char *);
3920
3921 void
3922 dwarf2out_set_demangle_name_func (const char *(*func) (const char *))
3923 {
3924   demangle_name_func = func;
3925 }
3926
3927 /* Test if rtl node points to a pseudo register.  */
3928
3929 static inline int
3930 is_pseudo_reg (rtx rtl)
3931 {
3932   return ((GET_CODE (rtl) == REG && REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
3933           || (GET_CODE (rtl) == SUBREG
3934               && REGNO (SUBREG_REG (rtl)) >= FIRST_PSEUDO_REGISTER));
3935 }
3936
3937 /* Return a reference to a type, with its const and volatile qualifiers
3938    removed.  */
3939
3940 static inline tree
3941 type_main_variant (tree type)
3942 {
3943   type = TYPE_MAIN_VARIANT (type);
3944
3945   /* ??? There really should be only one main variant among any group of
3946      variants of a given type (and all of the MAIN_VARIANT values for all
3947      members of the group should point to that one type) but sometimes the C
3948      front-end messes this up for array types, so we work around that bug
3949      here.  */
3950   if (TREE_CODE (type) == ARRAY_TYPE)
3951     while (type != TYPE_MAIN_VARIANT (type))
3952       type = TYPE_MAIN_VARIANT (type);
3953
3954   return type;
3955 }
3956
3957 /* Return nonzero if the given type node represents a tagged type.  */
3958
3959 static inline int
3960 is_tagged_type (tree type)
3961 {
3962   enum tree_code code = TREE_CODE (type);
3963
3964   return (code == RECORD_TYPE || code == UNION_TYPE
3965           || code == QUAL_UNION_TYPE || code == ENUMERAL_TYPE);
3966 }
3967
3968 /* Convert a DIE tag into its string name.  */
3969
3970 static const char *
3971 dwarf_tag_name (unsigned int tag)
3972 {
3973   switch (tag)
3974     {
3975     case DW_TAG_padding:
3976       return "DW_TAG_padding";
3977     case DW_TAG_array_type:
3978       return "DW_TAG_array_type";
3979     case DW_TAG_class_type:
3980       return "DW_TAG_class_type";
3981     case DW_TAG_entry_point:
3982       return "DW_TAG_entry_point";
3983     case DW_TAG_enumeration_type:
3984       return "DW_TAG_enumeration_type";
3985     case DW_TAG_formal_parameter:
3986       return "DW_TAG_formal_parameter";
3987     case DW_TAG_imported_declaration:
3988       return "DW_TAG_imported_declaration";
3989     case DW_TAG_label:
3990       return "DW_TAG_label";
3991     case DW_TAG_lexical_block:
3992       return "DW_TAG_lexical_block";
3993     case DW_TAG_member:
3994       return "DW_TAG_member";
3995     case DW_TAG_pointer_type:
3996       return "DW_TAG_pointer_type";
3997     case DW_TAG_reference_type:
3998       return "DW_TAG_reference_type";
3999     case DW_TAG_compile_unit:
4000       return "DW_TAG_compile_unit";
4001     case DW_TAG_string_type:
4002       return "DW_TAG_string_type";
4003     case DW_TAG_structure_type:
4004       return "DW_TAG_structure_type";
4005     case DW_TAG_subroutine_type:
4006       return "DW_TAG_subroutine_type";
4007     case DW_TAG_typedef:
4008       return "DW_TAG_typedef";
4009     case DW_TAG_union_type:
4010       return "DW_TAG_union_type";
4011     case DW_TAG_unspecified_parameters:
4012       return "DW_TAG_unspecified_parameters";
4013     case DW_TAG_variant:
4014       return "DW_TAG_variant";
4015     case DW_TAG_common_block:
4016       return "DW_TAG_common_block";
4017     case DW_TAG_common_inclusion:
4018       return "DW_TAG_common_inclusion";
4019     case DW_TAG_inheritance:
4020       return "DW_TAG_inheritance";
4021     case DW_TAG_inlined_subroutine:
4022       return "DW_TAG_inlined_subroutine";
4023     case DW_TAG_module:
4024       return "DW_TAG_module";
4025     case DW_TAG_ptr_to_member_type:
4026       return "DW_TAG_ptr_to_member_type";
4027     case DW_TAG_set_type:
4028       return "DW_TAG_set_type";
4029     case DW_TAG_subrange_type:
4030       return "DW_TAG_subrange_type";
4031     case DW_TAG_with_stmt:
4032       return "DW_TAG_with_stmt";
4033     case DW_TAG_access_declaration:
4034       return "DW_TAG_access_declaration";
4035     case DW_TAG_base_type:
4036       return "DW_TAG_base_type";
4037     case DW_TAG_catch_block:
4038       return "DW_TAG_catch_block";
4039     case DW_TAG_const_type:
4040       return "DW_TAG_const_type";
4041     case DW_TAG_constant:
4042       return "DW_TAG_constant";
4043     case DW_TAG_enumerator:
4044       return "DW_TAG_enumerator";
4045     case DW_TAG_file_type:
4046       return "DW_TAG_file_type";
4047     case DW_TAG_friend:
4048       return "DW_TAG_friend";
4049     case DW_TAG_namelist:
4050       return "DW_TAG_namelist";
4051     case DW_TAG_namelist_item:
4052       return "DW_TAG_namelist_item";
4053     case DW_TAG_namespace:
4054       return "DW_TAG_namespace";
4055     case DW_TAG_packed_type:
4056       return "DW_TAG_packed_type";
4057     case DW_TAG_subprogram:
4058       return "DW_TAG_subprogram";
4059     case DW_TAG_template_type_param:
4060       return "DW_TAG_template_type_param";
4061     case DW_TAG_template_value_param:
4062       return "DW_TAG_template_value_param";
4063     case DW_TAG_thrown_type:
4064       return "DW_TAG_thrown_type";
4065     case DW_TAG_try_block:
4066       return "DW_TAG_try_block";
4067     case DW_TAG_variant_part:
4068       return "DW_TAG_variant_part";
4069     case DW_TAG_variable:
4070       return "DW_TAG_variable";
4071     case DW_TAG_volatile_type:
4072       return "DW_TAG_volatile_type";
4073     case DW_TAG_imported_module:
4074       return "DW_TAG_imported_module";
4075     case DW_TAG_MIPS_loop:
4076       return "DW_TAG_MIPS_loop";
4077     case DW_TAG_format_label:
4078       return "DW_TAG_format_label";
4079     case DW_TAG_function_template:
4080       return "DW_TAG_function_template";
4081     case DW_TAG_class_template:
4082       return "DW_TAG_class_template";
4083     case DW_TAG_GNU_BINCL:
4084       return "DW_TAG_GNU_BINCL";
4085     case DW_TAG_GNU_EINCL:
4086       return "DW_TAG_GNU_EINCL";
4087     default:
4088       return "DW_TAG_<unknown>";
4089     }
4090 }
4091
4092 /* Convert a DWARF attribute code into its string name.  */
4093
4094 static const char *
4095 dwarf_attr_name (unsigned int attr)
4096 {
4097   switch (attr)
4098     {
4099     case DW_AT_sibling:
4100       return "DW_AT_sibling";
4101     case DW_AT_location:
4102       return "DW_AT_location";
4103     case DW_AT_name:
4104       return "DW_AT_name";
4105     case DW_AT_ordering:
4106       return "DW_AT_ordering";
4107     case DW_AT_subscr_data:
4108       return "DW_AT_subscr_data";
4109     case DW_AT_byte_size:
4110       return "DW_AT_byte_size";
4111     case DW_AT_bit_offset:
4112       return "DW_AT_bit_offset";
4113     case DW_AT_bit_size:
4114       return "DW_AT_bit_size";
4115     case DW_AT_element_list:
4116       return "DW_AT_element_list";
4117     case DW_AT_stmt_list:
4118       return "DW_AT_stmt_list";
4119     case DW_AT_low_pc:
4120       return "DW_AT_low_pc";
4121     case DW_AT_high_pc:
4122       return "DW_AT_high_pc";
4123     case DW_AT_language:
4124       return "DW_AT_language";
4125     case DW_AT_member:
4126       return "DW_AT_member";
4127     case DW_AT_discr:
4128       return "DW_AT_discr";
4129     case DW_AT_discr_value:
4130       return "DW_AT_discr_value";
4131     case DW_AT_visibility:
4132       return "DW_AT_visibility";
4133     case DW_AT_import:
4134       return "DW_AT_import";
4135     case DW_AT_string_length:
4136       return "DW_AT_string_length";
4137     case DW_AT_common_reference:
4138       return "DW_AT_common_reference";
4139     case DW_AT_comp_dir:
4140       return "DW_AT_comp_dir";
4141     case DW_AT_const_value:
4142       return "DW_AT_const_value";
4143     case DW_AT_containing_type:
4144       return "DW_AT_containing_type";
4145     case DW_AT_default_value:
4146       return "DW_AT_default_value";
4147     case DW_AT_inline:
4148       return "DW_AT_inline";
4149     case DW_AT_is_optional:
4150       return "DW_AT_is_optional";
4151     case DW_AT_lower_bound:
4152       return "DW_AT_lower_bound";
4153     case DW_AT_producer:
4154       return "DW_AT_producer";
4155     case DW_AT_prototyped:
4156       return "DW_AT_prototyped";
4157     case DW_AT_return_addr:
4158       return "DW_AT_return_addr";
4159     case DW_AT_start_scope:
4160       return "DW_AT_start_scope";
4161     case DW_AT_stride_size:
4162       return "DW_AT_stride_size";
4163     case DW_AT_upper_bound:
4164       return "DW_AT_upper_bound";
4165     case DW_AT_abstract_origin:
4166       return "DW_AT_abstract_origin";
4167     case DW_AT_accessibility:
4168       return "DW_AT_accessibility";
4169     case DW_AT_address_class:
4170       return "DW_AT_address_class";
4171     case DW_AT_artificial:
4172       return "DW_AT_artificial";
4173     case DW_AT_base_types:
4174       return "DW_AT_base_types";
4175     case DW_AT_calling_convention:
4176       return "DW_AT_calling_convention";
4177     case DW_AT_count:
4178       return "DW_AT_count";
4179     case DW_AT_data_member_location:
4180       return "DW_AT_data_member_location";
4181     case DW_AT_decl_column:
4182       return "DW_AT_decl_column";
4183     case DW_AT_decl_file:
4184       return "DW_AT_decl_file";
4185     case DW_AT_decl_line:
4186       return "DW_AT_decl_line";
4187     case DW_AT_declaration:
4188       return "DW_AT_declaration";
4189     case DW_AT_discr_list:
4190       return "DW_AT_discr_list";
4191     case DW_AT_encoding:
4192       return "DW_AT_encoding";
4193     case DW_AT_external:
4194       return "DW_AT_external";
4195     case DW_AT_frame_base:
4196       return "DW_AT_frame_base";
4197     case DW_AT_friend:
4198       return "DW_AT_friend";
4199     case DW_AT_identifier_case:
4200       return "DW_AT_identifier_case";
4201     case DW_AT_macro_info:
4202       return "DW_AT_macro_info";
4203     case DW_AT_namelist_items:
4204       return "DW_AT_namelist_items";
4205     case DW_AT_priority:
4206       return "DW_AT_priority";
4207     case DW_AT_segment:
4208       return "DW_AT_segment";
4209     case DW_AT_specification:
4210       return "DW_AT_specification";
4211     case DW_AT_static_link:
4212       return "DW_AT_static_link";
4213     case DW_AT_type:
4214       return "DW_AT_type";
4215     case DW_AT_use_location:
4216       return "DW_AT_use_location";
4217     case DW_AT_variable_parameter:
4218       return "DW_AT_variable_parameter";
4219     case DW_AT_virtuality:
4220       return "DW_AT_virtuality";
4221     case DW_AT_vtable_elem_location:
4222       return "DW_AT_vtable_elem_location";
4223
4224     case DW_AT_allocated:
4225       return "DW_AT_allocated";
4226     case DW_AT_associated:
4227       return "DW_AT_associated";
4228     case DW_AT_data_location:
4229       return "DW_AT_data_location";
4230     case DW_AT_stride:
4231       return "DW_AT_stride";
4232     case DW_AT_entry_pc:
4233       return "DW_AT_entry_pc";
4234     case DW_AT_use_UTF8:
4235       return "DW_AT_use_UTF8";
4236     case DW_AT_extension:
4237       return "DW_AT_extension";
4238     case DW_AT_ranges:
4239       return "DW_AT_ranges";
4240     case DW_AT_trampoline:
4241       return "DW_AT_trampoline";
4242     case DW_AT_call_column:
4243       return "DW_AT_call_column";
4244     case DW_AT_call_file:
4245       return "DW_AT_call_file";
4246     case DW_AT_call_line:
4247       return "DW_AT_call_line";
4248
4249     case DW_AT_MIPS_fde:
4250       return "DW_AT_MIPS_fde";
4251     case DW_AT_MIPS_loop_begin:
4252       return "DW_AT_MIPS_loop_begin";
4253     case DW_AT_MIPS_tail_loop_begin:
4254       return "DW_AT_MIPS_tail_loop_begin";
4255     case DW_AT_MIPS_epilog_begin:
4256       return "DW_AT_MIPS_epilog_begin";
4257     case DW_AT_MIPS_loop_unroll_factor:
4258       return "DW_AT_MIPS_loop_unroll_factor";
4259     case DW_AT_MIPS_software_pipeline_depth:
4260       return "DW_AT_MIPS_software_pipeline_depth";
4261     case DW_AT_MIPS_linkage_name:
4262       return "DW_AT_MIPS_linkage_name";
4263     case DW_AT_MIPS_stride:
4264       return "DW_AT_MIPS_stride";
4265     case DW_AT_MIPS_abstract_name:
4266       return "DW_AT_MIPS_abstract_name";
4267     case DW_AT_MIPS_clone_origin:
4268       return "DW_AT_MIPS_clone_origin";
4269     case DW_AT_MIPS_has_inlines:
4270       return "DW_AT_MIPS_has_inlines";
4271
4272     case DW_AT_sf_names:
4273       return "DW_AT_sf_names";
4274     case DW_AT_src_info:
4275       return "DW_AT_src_info";
4276     case DW_AT_mac_info:
4277       return "DW_AT_mac_info";
4278     case DW_AT_src_coords:
4279       return "DW_AT_src_coords";
4280     case DW_AT_body_begin:
4281       return "DW_AT_body_begin";
4282     case DW_AT_body_end:
4283       return "DW_AT_body_end";
4284     case DW_AT_GNU_vector:
4285       return "DW_AT_GNU_vector";
4286
4287     case DW_AT_VMS_rtnbeg_pd_address:
4288       return "DW_AT_VMS_rtnbeg_pd_address";
4289
4290     default:
4291       return "DW_AT_<unknown>";
4292     }
4293 }
4294
4295 /* Convert a DWARF value form code into its string name.  */
4296
4297 static const char *
4298 dwarf_form_name (unsigned int form)
4299 {
4300   switch (form)
4301     {
4302     case DW_FORM_addr:
4303       return "DW_FORM_addr";
4304     case DW_FORM_block2:
4305       return "DW_FORM_block2";
4306     case DW_FORM_block4:
4307       return "DW_FORM_block4";
4308     case DW_FORM_data2:
4309       return "DW_FORM_data2";
4310     case DW_FORM_data4:
4311       return "DW_FORM_data4";
4312     case DW_FORM_data8:
4313       return "DW_FORM_data8";
4314     case DW_FORM_string:
4315       return "DW_FORM_string";
4316     case DW_FORM_block:
4317       return "DW_FORM_block";
4318     case DW_FORM_block1:
4319       return "DW_FORM_block1";
4320     case DW_FORM_data1:
4321       return "DW_FORM_data1";
4322     case DW_FORM_flag:
4323       return "DW_FORM_flag";
4324     case DW_FORM_sdata:
4325       return "DW_FORM_sdata";
4326     case DW_FORM_strp:
4327       return "DW_FORM_strp";
4328     case DW_FORM_udata:
4329       return "DW_FORM_udata";
4330     case DW_FORM_ref_addr:
4331       return "DW_FORM_ref_addr";
4332     case DW_FORM_ref1:
4333       return "DW_FORM_ref1";
4334     case DW_FORM_ref2:
4335       return "DW_FORM_ref2";
4336     case DW_FORM_ref4:
4337       return "DW_FORM_ref4";
4338     case DW_FORM_ref8:
4339       return "DW_FORM_ref8";
4340     case DW_FORM_ref_udata:
4341       return "DW_FORM_ref_udata";
4342     case DW_FORM_indirect:
4343       return "DW_FORM_indirect";
4344     default:
4345       return "DW_FORM_<unknown>";
4346     }
4347 }
4348
4349 /* Convert a DWARF type code into its string name.  */
4350
4351 #if 0
4352 static const char *
4353 dwarf_type_encoding_name (unsigned enc)
4354 {
4355   switch (enc)
4356     {
4357     case DW_ATE_address:
4358       return "DW_ATE_address";
4359     case DW_ATE_boolean:
4360       return "DW_ATE_boolean";
4361     case DW_ATE_complex_float:
4362       return "DW_ATE_complex_float";
4363     case DW_ATE_float:
4364       return "DW_ATE_float";
4365     case DW_ATE_signed:
4366       return "DW_ATE_signed";
4367     case DW_ATE_signed_char:
4368       return "DW_ATE_signed_char";
4369     case DW_ATE_unsigned:
4370       return "DW_ATE_unsigned";
4371     case DW_ATE_unsigned_char:
4372       return "DW_ATE_unsigned_char";
4373     default:
4374       return "DW_ATE_<unknown>";
4375     }
4376 }
4377 #endif
4378 \f
4379 /* Determine the "ultimate origin" of a decl.  The decl may be an inlined
4380    instance of an inlined instance of a decl which is local to an inline
4381    function, so we have to trace all of the way back through the origin chain
4382    to find out what sort of node actually served as the original seed for the
4383    given block.  */
4384
4385 static tree
4386 decl_ultimate_origin (tree decl)
4387 {
4388   /* output_inline_function sets DECL_ABSTRACT_ORIGIN for all the
4389      nodes in the function to point to themselves; ignore that if
4390      we're trying to output the abstract instance of this function.  */
4391   if (DECL_ABSTRACT (decl) && DECL_ABSTRACT_ORIGIN (decl) == decl)
4392     return NULL_TREE;
4393
4394 #ifdef ENABLE_CHECKING
4395   if (DECL_FROM_INLINE (DECL_ORIGIN (decl)))
4396     /* Since the DECL_ABSTRACT_ORIGIN for a DECL is supposed to be the
4397        most distant ancestor, this should never happen.  */
4398     abort ();
4399 #endif
4400
4401   return DECL_ABSTRACT_ORIGIN (decl);
4402 }
4403
4404 /* Determine the "ultimate origin" of a block.  The block may be an inlined
4405    instance of an inlined instance of a block which is local to an inline
4406    function, so we have to trace all of the way back through the origin chain
4407    to find out what sort of node actually served as the original seed for the
4408    given block.  */
4409
4410 static tree
4411 block_ultimate_origin (tree block)
4412 {
4413   tree immediate_origin = BLOCK_ABSTRACT_ORIGIN (block);
4414
4415   /* output_inline_function sets BLOCK_ABSTRACT_ORIGIN for all the
4416      nodes in the function to point to themselves; ignore that if
4417      we're trying to output the abstract instance of this function.  */
4418   if (BLOCK_ABSTRACT (block) && immediate_origin == block)
4419     return NULL_TREE;
4420
4421   if (immediate_origin == NULL_TREE)
4422     return NULL_TREE;
4423   else
4424     {
4425       tree ret_val;
4426       tree lookahead = immediate_origin;
4427
4428       do
4429         {
4430           ret_val = lookahead;
4431           lookahead = (TREE_CODE (ret_val) == BLOCK
4432                        ? BLOCK_ABSTRACT_ORIGIN (ret_val) : NULL);
4433         }
4434       while (lookahead != NULL && lookahead != ret_val);
4435
4436       return ret_val;
4437     }
4438 }
4439
4440 /* Get the class to which DECL belongs, if any.  In g++, the DECL_CONTEXT
4441    of a virtual function may refer to a base class, so we check the 'this'
4442    parameter.  */
4443
4444 static tree
4445 decl_class_context (tree decl)
4446 {
4447   tree context = NULL_TREE;
4448
4449   if (TREE_CODE (decl) != FUNCTION_DECL || ! DECL_VINDEX (decl))
4450     context = DECL_CONTEXT (decl);
4451   else
4452     context = TYPE_MAIN_VARIANT
4453       (TREE_TYPE (TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)))));
4454
4455   if (context && !TYPE_P (context))
4456     context = NULL_TREE;
4457
4458   return context;
4459 }
4460 \f
4461 /* Add an attribute/value pair to a DIE.  We build the lists up in reverse
4462    addition order, and correct that in reverse_all_dies.  */
4463
4464 static inline void
4465 add_dwarf_attr (dw_die_ref die, dw_attr_ref attr)
4466 {
4467   if (die != NULL && attr != NULL)
4468     {
4469       attr->dw_attr_next = die->die_attr;
4470       die->die_attr = attr;
4471     }
4472 }
4473
4474 static inline enum dw_val_class
4475 AT_class (dw_attr_ref a)
4476 {
4477   return a->dw_attr_val.val_class;
4478 }
4479
4480 /* Add a flag value attribute to a DIE.  */
4481
4482 static inline void
4483 add_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int flag)
4484 {
4485   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4486
4487   attr->dw_attr_next = NULL;
4488   attr->dw_attr = attr_kind;
4489   attr->dw_attr_val.val_class = dw_val_class_flag;
4490   attr->dw_attr_val.v.val_flag = flag;
4491   add_dwarf_attr (die, attr);
4492 }
4493
4494 static inline unsigned
4495 AT_flag (dw_attr_ref a)
4496 {
4497   if (a && AT_class (a) == dw_val_class_flag)
4498     return a->dw_attr_val.v.val_flag;
4499
4500   abort ();
4501 }
4502
4503 /* Add a signed integer attribute value to a DIE.  */
4504
4505 static inline void
4506 add_AT_int (dw_die_ref die, enum dwarf_attribute attr_kind, HOST_WIDE_INT int_val)
4507 {
4508   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4509
4510   attr->dw_attr_next = NULL;
4511   attr->dw_attr = attr_kind;
4512   attr->dw_attr_val.val_class = dw_val_class_const;
4513   attr->dw_attr_val.v.val_int = int_val;
4514   add_dwarf_attr (die, attr);
4515 }
4516
4517 static inline HOST_WIDE_INT
4518 AT_int (dw_attr_ref a)
4519 {
4520   if (a && AT_class (a) == dw_val_class_const)
4521     return a->dw_attr_val.v.val_int;
4522
4523   abort ();
4524 }
4525
4526 /* Add an unsigned integer attribute value to a DIE.  */
4527
4528 static inline void
4529 add_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind,
4530                  unsigned HOST_WIDE_INT unsigned_val)
4531 {
4532   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4533
4534   attr->dw_attr_next = NULL;
4535   attr->dw_attr = attr_kind;
4536   attr->dw_attr_val.val_class = dw_val_class_unsigned_const;
4537   attr->dw_attr_val.v.val_unsigned = unsigned_val;
4538   add_dwarf_attr (die, attr);
4539 }
4540
4541 static inline unsigned HOST_WIDE_INT
4542 AT_unsigned (dw_attr_ref a)
4543 {
4544   if (a && AT_class (a) == dw_val_class_unsigned_const)
4545     return a->dw_attr_val.v.val_unsigned;
4546
4547   abort ();
4548 }
4549
4550 /* Add an unsigned double integer attribute value to a DIE.  */
4551
4552 static inline void
4553 add_AT_long_long (dw_die_ref die, enum dwarf_attribute attr_kind,
4554                   long unsigned int val_hi, long unsigned int val_low)
4555 {
4556   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4557
4558   attr->dw_attr_next = NULL;
4559   attr->dw_attr = attr_kind;
4560   attr->dw_attr_val.val_class = dw_val_class_long_long;
4561   attr->dw_attr_val.v.val_long_long.hi = val_hi;
4562   attr->dw_attr_val.v.val_long_long.low = val_low;
4563   add_dwarf_attr (die, attr);
4564 }
4565
4566 /* Add a floating point attribute value to a DIE and return it.  */
4567
4568 static inline void
4569 add_AT_float (dw_die_ref die, enum dwarf_attribute attr_kind,
4570               unsigned int length, long int *array)
4571 {
4572   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4573
4574   attr->dw_attr_next = NULL;
4575   attr->dw_attr = attr_kind;
4576   attr->dw_attr_val.val_class = dw_val_class_float;
4577   attr->dw_attr_val.v.val_float.length = length;
4578   attr->dw_attr_val.v.val_float.array = array;
4579   add_dwarf_attr (die, attr);
4580 }
4581
4582 /* Hash and equality functions for debug_str_hash.  */
4583
4584 static hashval_t
4585 debug_str_do_hash (const void *x)
4586 {
4587   return htab_hash_string (((const struct indirect_string_node *)x)->str);
4588 }
4589
4590 static int
4591 debug_str_eq (const void *x1, const void *x2)
4592 {
4593   return strcmp ((((const struct indirect_string_node *)x1)->str),
4594                  (const char *)x2) == 0;
4595 }
4596
4597 /* Add a string attribute value to a DIE.  */
4598
4599 static inline void
4600 add_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind, const char *str)
4601 {
4602   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4603   struct indirect_string_node *node;
4604   void **slot;
4605
4606   if (! debug_str_hash)
4607     debug_str_hash = htab_create_ggc (10, debug_str_do_hash,
4608                                       debug_str_eq, NULL);
4609
4610   slot = htab_find_slot_with_hash (debug_str_hash, str,
4611                                    htab_hash_string (str), INSERT);
4612   if (*slot == NULL)
4613     *slot = ggc_alloc_cleared (sizeof (struct indirect_string_node));
4614   node = (struct indirect_string_node *) *slot;
4615   node->str = ggc_strdup (str);
4616   node->refcount++;
4617
4618   attr->dw_attr_next = NULL;
4619   attr->dw_attr = attr_kind;
4620   attr->dw_attr_val.val_class = dw_val_class_str;
4621   attr->dw_attr_val.v.val_str = node;
4622   add_dwarf_attr (die, attr);
4623 }
4624
4625 static inline const char *
4626 AT_string (dw_attr_ref a)
4627 {
4628   if (a && AT_class (a) == dw_val_class_str)
4629     return a->dw_attr_val.v.val_str->str;
4630
4631   abort ();
4632 }
4633
4634 /* Find out whether a string should be output inline in DIE
4635    or out-of-line in .debug_str section.  */
4636
4637 static int
4638 AT_string_form (dw_attr_ref a)
4639 {
4640   if (a && AT_class (a) == dw_val_class_str)
4641     {
4642       struct indirect_string_node *node;
4643       unsigned int len;
4644       char label[32];
4645
4646       node = a->dw_attr_val.v.val_str;
4647       if (node->form)
4648         return node->form;
4649
4650       len = strlen (node->str) + 1;
4651
4652       /* If the string is shorter or equal to the size of the reference, it is
4653          always better to put it inline.  */
4654       if (len <= DWARF_OFFSET_SIZE || node->refcount == 0)
4655         return node->form = DW_FORM_string;
4656
4657       /* If we cannot expect the linker to merge strings in .debug_str
4658          section, only put it into .debug_str if it is worth even in this
4659          single module.  */
4660       if ((DEBUG_STR_SECTION_FLAGS & SECTION_MERGE) == 0
4661           && (len - DWARF_OFFSET_SIZE) * node->refcount <= len)
4662         return node->form = DW_FORM_string;
4663
4664       ASM_GENERATE_INTERNAL_LABEL (label, "LASF", dw2_string_counter);
4665       ++dw2_string_counter;
4666       node->label = xstrdup (label);
4667
4668       return node->form = DW_FORM_strp;
4669     }
4670
4671   abort ();
4672 }
4673
4674 /* Add a DIE reference attribute value to a DIE.  */
4675
4676 static inline void
4677 add_AT_die_ref (dw_die_ref die, enum dwarf_attribute attr_kind, dw_die_ref targ_die)
4678 {
4679   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4680
4681   attr->dw_attr_next = NULL;
4682   attr->dw_attr = attr_kind;
4683   attr->dw_attr_val.val_class = dw_val_class_die_ref;
4684   attr->dw_attr_val.v.val_die_ref.die = targ_die;
4685   attr->dw_attr_val.v.val_die_ref.external = 0;
4686   add_dwarf_attr (die, attr);
4687 }
4688
4689 /* Add an AT_specification attribute to a DIE, and also make the back
4690    pointer from the specification to the definition.  */
4691
4692 static inline void
4693 add_AT_specification (dw_die_ref die, dw_die_ref targ_die)
4694 {
4695   add_AT_die_ref (die, DW_AT_specification, targ_die);
4696   if (targ_die->die_definition)
4697     abort ();
4698   targ_die->die_definition = die;
4699 }
4700
4701 static inline dw_die_ref
4702 AT_ref (dw_attr_ref a)
4703 {
4704   if (a && AT_class (a) == dw_val_class_die_ref)
4705     return a->dw_attr_val.v.val_die_ref.die;
4706
4707   abort ();
4708 }
4709
4710 static inline int
4711 AT_ref_external (dw_attr_ref a)
4712 {
4713   if (a && AT_class (a) == dw_val_class_die_ref)
4714     return a->dw_attr_val.v.val_die_ref.external;
4715
4716   return 0;
4717 }
4718
4719 static inline void
4720 set_AT_ref_external (dw_attr_ref a, int i)
4721 {
4722   if (a && AT_class (a) == dw_val_class_die_ref)
4723     a->dw_attr_val.v.val_die_ref.external = i;
4724   else
4725     abort ();
4726 }
4727
4728 /* Add an FDE reference attribute value to a DIE.  */
4729
4730 static inline void
4731 add_AT_fde_ref (dw_die_ref die, enum dwarf_attribute attr_kind, unsigned int targ_fde)
4732 {
4733   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4734
4735   attr->dw_attr_next = NULL;
4736   attr->dw_attr = attr_kind;
4737   attr->dw_attr_val.val_class = dw_val_class_fde_ref;
4738   attr->dw_attr_val.v.val_fde_index = targ_fde;
4739   add_dwarf_attr (die, attr);
4740 }
4741
4742 /* Add a location description attribute value to a DIE.  */
4743
4744 static inline void
4745 add_AT_loc (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_descr_ref loc)
4746 {
4747   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4748
4749   attr->dw_attr_next = NULL;
4750   attr->dw_attr = attr_kind;
4751   attr->dw_attr_val.val_class = dw_val_class_loc;
4752   attr->dw_attr_val.v.val_loc = loc;
4753   add_dwarf_attr (die, attr);
4754 }
4755
4756 static inline dw_loc_descr_ref
4757 AT_loc (dw_attr_ref a)
4758 {
4759   if (a && AT_class (a) == dw_val_class_loc)
4760     return a->dw_attr_val.v.val_loc;
4761
4762   abort ();
4763 }
4764
4765 static inline void
4766 add_AT_loc_list (dw_die_ref die, enum dwarf_attribute attr_kind, dw_loc_list_ref loc_list)
4767 {
4768   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4769
4770   attr->dw_attr_next = NULL;
4771   attr->dw_attr = attr_kind;
4772   attr->dw_attr_val.val_class = dw_val_class_loc_list;
4773   attr->dw_attr_val.v.val_loc_list = loc_list;
4774   add_dwarf_attr (die, attr);
4775   have_location_lists = 1;
4776 }
4777
4778 static inline dw_loc_list_ref
4779 AT_loc_list (dw_attr_ref a)
4780 {
4781   if (a && AT_class (a) == dw_val_class_loc_list)
4782     return a->dw_attr_val.v.val_loc_list;
4783
4784   abort ();
4785 }
4786
4787 /* Add an address constant attribute value to a DIE.  */
4788
4789 static inline void
4790 add_AT_addr (dw_die_ref die, enum dwarf_attribute attr_kind, rtx addr)
4791 {
4792   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4793
4794   attr->dw_attr_next = NULL;
4795   attr->dw_attr = attr_kind;
4796   attr->dw_attr_val.val_class = dw_val_class_addr;
4797   attr->dw_attr_val.v.val_addr = addr;
4798   add_dwarf_attr (die, attr);
4799 }
4800
4801 static inline rtx
4802 AT_addr (dw_attr_ref a)
4803 {
4804   if (a && AT_class (a) == dw_val_class_addr)
4805     return a->dw_attr_val.v.val_addr;
4806
4807   abort ();
4808 }
4809
4810 /* Add a label identifier attribute value to a DIE.  */
4811
4812 static inline void
4813 add_AT_lbl_id (dw_die_ref die, enum dwarf_attribute attr_kind, const char *lbl_id)
4814 {
4815   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4816
4817   attr->dw_attr_next = NULL;
4818   attr->dw_attr = attr_kind;
4819   attr->dw_attr_val.val_class = dw_val_class_lbl_id;
4820   attr->dw_attr_val.v.val_lbl_id = xstrdup (lbl_id);
4821   add_dwarf_attr (die, attr);
4822 }
4823
4824 /* Add a section offset attribute value to a DIE.  */
4825
4826 static inline void
4827 add_AT_lbl_offset (dw_die_ref die, enum dwarf_attribute attr_kind, const char *label)
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_lbl_offset;
4834   attr->dw_attr_val.v.val_lbl_id = xstrdup (label);
4835   add_dwarf_attr (die, attr);
4836 }
4837
4838 /* Add an offset attribute value to a DIE.  */
4839
4840 static inline void
4841 add_AT_offset (dw_die_ref die, enum dwarf_attribute attr_kind,
4842                unsigned HOST_WIDE_INT offset)
4843 {
4844   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4845
4846   attr->dw_attr_next = NULL;
4847   attr->dw_attr = attr_kind;
4848   attr->dw_attr_val.val_class = dw_val_class_offset;
4849   attr->dw_attr_val.v.val_offset = offset;
4850   add_dwarf_attr (die, attr);
4851 }
4852
4853 /* Add an range_list attribute value to a DIE.  */
4854
4855 static void
4856 add_AT_range_list (dw_die_ref die, enum dwarf_attribute attr_kind,
4857                    long unsigned int offset)
4858 {
4859   dw_attr_ref attr = ggc_alloc (sizeof (dw_attr_node));
4860
4861   attr->dw_attr_next = NULL;
4862   attr->dw_attr = attr_kind;
4863   attr->dw_attr_val.val_class = dw_val_class_range_list;
4864   attr->dw_attr_val.v.val_offset = offset;
4865   add_dwarf_attr (die, attr);
4866 }
4867
4868 static inline const char *
4869 AT_lbl (dw_attr_ref a)
4870 {
4871   if (a && (AT_class (a) == dw_val_class_lbl_id
4872             || AT_class (a) == dw_val_class_lbl_offset))
4873     return a->dw_attr_val.v.val_lbl_id;
4874
4875   abort ();
4876 }
4877
4878 /* Get the attribute of type attr_kind.  */
4879
4880 static dw_attr_ref
4881 get_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
4882 {
4883   dw_attr_ref a;
4884   dw_die_ref spec = NULL;
4885
4886   if (die != NULL)
4887     {
4888       for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
4889         if (a->dw_attr == attr_kind)
4890           return a;
4891         else if (a->dw_attr == DW_AT_specification
4892                  || a->dw_attr == DW_AT_abstract_origin)
4893           spec = AT_ref (a);
4894
4895       if (spec)
4896         return get_AT (spec, attr_kind);
4897     }
4898
4899   return NULL;
4900 }
4901
4902 /* Return the "low pc" attribute value, typically associated with a subprogram
4903    DIE.  Return null if the "low pc" attribute is either not present, or if it
4904    cannot be represented as an assembler label identifier.  */
4905
4906 static inline const char *
4907 get_AT_low_pc (dw_die_ref die)
4908 {
4909   dw_attr_ref a = get_AT (die, DW_AT_low_pc);
4910
4911   return a ? AT_lbl (a) : NULL;
4912 }
4913
4914 /* Return the "high pc" attribute value, typically associated with a subprogram
4915    DIE.  Return null if the "high pc" attribute is either not present, or if it
4916    cannot be represented as an assembler label identifier.  */
4917
4918 static inline const char *
4919 get_AT_hi_pc (dw_die_ref die)
4920 {
4921   dw_attr_ref a = get_AT (die, DW_AT_high_pc);
4922
4923   return a ? AT_lbl (a) : NULL;
4924 }
4925
4926 /* Return the value of the string attribute designated by ATTR_KIND, or
4927    NULL if it is not present.  */
4928
4929 static inline const char *
4930 get_AT_string (dw_die_ref die, enum dwarf_attribute attr_kind)
4931 {
4932   dw_attr_ref a = get_AT (die, attr_kind);
4933
4934   return a ? AT_string (a) : NULL;
4935 }
4936
4937 /* Return the value of the flag attribute designated by ATTR_KIND, or -1
4938    if it is not present.  */
4939
4940 static inline int
4941 get_AT_flag (dw_die_ref die, enum dwarf_attribute attr_kind)
4942 {
4943   dw_attr_ref a = get_AT (die, attr_kind);
4944
4945   return a ? AT_flag (a) : 0;
4946 }
4947
4948 /* Return the value of the unsigned attribute designated by ATTR_KIND, or 0
4949    if it is not present.  */
4950
4951 static inline unsigned
4952 get_AT_unsigned (dw_die_ref die, enum dwarf_attribute attr_kind)
4953 {
4954   dw_attr_ref a = get_AT (die, attr_kind);
4955
4956   return a ? AT_unsigned (a) : 0;
4957 }
4958
4959 static inline dw_die_ref
4960 get_AT_ref (dw_die_ref die, enum dwarf_attribute attr_kind)
4961 {
4962   dw_attr_ref a = get_AT (die, attr_kind);
4963
4964   return a ? AT_ref (a) : NULL;
4965 }
4966
4967 /* Return TRUE if the language is C or C++.  */
4968
4969 static inline bool
4970 is_c_family (void)
4971 {
4972   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
4973
4974   return (lang == DW_LANG_C || lang == DW_LANG_C89
4975           || lang == DW_LANG_C_plus_plus);
4976 }
4977
4978 /* Return TRUE if the language is C++.  */
4979
4980 static inline bool
4981 is_cxx (void)
4982 {
4983   return (get_AT_unsigned (comp_unit_die, DW_AT_language)
4984           == DW_LANG_C_plus_plus);
4985 }
4986
4987 /* Return TRUE if the language is Fortran.  */
4988
4989 static inline bool
4990 is_fortran (void)
4991 {
4992   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
4993
4994   return lang == DW_LANG_Fortran77 || lang == DW_LANG_Fortran90;
4995 }
4996
4997 /* Return TRUE if the language is Java.  */
4998
4999 static inline bool
5000 is_java (void)
5001 {
5002   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5003
5004   return lang == DW_LANG_Java;
5005 }
5006
5007 /* Return TRUE if the language is Ada.  */
5008
5009 static inline bool
5010 is_ada (void)
5011 {
5012   unsigned int lang = get_AT_unsigned (comp_unit_die, DW_AT_language);
5013
5014   return lang == DW_LANG_Ada95 || lang == DW_LANG_Ada83;
5015 }
5016
5017 /* Free up the memory used by A.  */
5018
5019 static inline void free_AT (dw_attr_ref);
5020 static inline void
5021 free_AT (dw_attr_ref a)
5022 {
5023   if (AT_class (a) == dw_val_class_str)
5024     if (a->dw_attr_val.v.val_str->refcount)
5025       a->dw_attr_val.v.val_str->refcount--;
5026 }
5027
5028 /* Remove the specified attribute if present.  */
5029
5030 static void
5031 remove_AT (dw_die_ref die, enum dwarf_attribute attr_kind)
5032 {
5033   dw_attr_ref *p;
5034   dw_attr_ref removed = NULL;
5035
5036   if (die != NULL)
5037     {
5038       for (p = &(die->die_attr); *p; p = &((*p)->dw_attr_next))
5039         if ((*p)->dw_attr == attr_kind)
5040           {
5041             removed = *p;
5042             *p = (*p)->dw_attr_next;
5043             break;
5044           }
5045
5046       if (removed != 0)
5047         free_AT (removed);
5048     }
5049 }
5050
5051 /* Remove child die whose die_tag is specified tag.  */
5052
5053 static void
5054 remove_child_TAG (dw_die_ref die, enum dwarf_tag tag)
5055 {
5056   dw_die_ref current, prev, next;
5057   current = die->die_child;
5058   prev = NULL;
5059   while (current != NULL)
5060     {
5061       if (current->die_tag == tag)
5062         {
5063           next = current->die_sib;
5064           if (prev == NULL)
5065             die->die_child = next;
5066           else
5067             prev->die_sib = next;
5068           free_die (current);
5069           current = next;
5070         }
5071       else
5072         {
5073           prev = current;
5074           current = current->die_sib;
5075         }
5076     }
5077 }
5078
5079 /* Free up the memory used by DIE.  */
5080
5081 static inline void
5082 free_die (dw_die_ref die)
5083 {
5084   remove_children (die);
5085 }
5086
5087 /* Discard the children of this DIE.  */
5088
5089 static void
5090 remove_children (dw_die_ref die)
5091 {
5092   dw_die_ref child_die = die->die_child;
5093
5094   die->die_child = NULL;
5095
5096   while (child_die != NULL)
5097     {
5098       dw_die_ref tmp_die = child_die;
5099       dw_attr_ref a;
5100
5101       child_die = child_die->die_sib;
5102
5103       for (a = tmp_die->die_attr; a != NULL;)
5104         {
5105           dw_attr_ref tmp_a = a;
5106
5107           a = a->dw_attr_next;
5108           free_AT (tmp_a);
5109         }
5110
5111       free_die (tmp_die);
5112     }
5113 }
5114
5115 /* Add a child DIE below its parent.  We build the lists up in reverse
5116    addition order, and correct that in reverse_all_dies.  */
5117
5118 static inline void
5119 add_child_die (dw_die_ref die, dw_die_ref child_die)
5120 {
5121   if (die != NULL && child_die != NULL)
5122     {
5123       if (die == child_die)
5124         abort ();
5125
5126       child_die->die_parent = die;
5127       child_die->die_sib = die->die_child;
5128       die->die_child = child_die;
5129     }
5130 }
5131
5132 /* Move CHILD, which must be a child of PARENT or the DIE for which PARENT
5133    is the specification, to the front of PARENT's list of children.  */
5134
5135 static void
5136 splice_child_die (dw_die_ref parent, dw_die_ref child)
5137 {
5138   dw_die_ref *p;
5139
5140   /* We want the declaration DIE from inside the class, not the
5141      specification DIE at toplevel.  */
5142   if (child->die_parent != parent)
5143     {
5144       dw_die_ref tmp = get_AT_ref (child, DW_AT_specification);
5145
5146       if (tmp)
5147         child = tmp;
5148     }
5149
5150   if (child->die_parent != parent
5151       && child->die_parent != get_AT_ref (parent, DW_AT_specification))
5152     abort ();
5153
5154   for (p = &(child->die_parent->die_child); *p; p = &((*p)->die_sib))
5155     if (*p == child)
5156       {
5157         *p = child->die_sib;
5158         break;
5159       }
5160
5161   child->die_parent = parent;
5162   child->die_sib = parent->die_child;
5163   parent->die_child = child;
5164 }
5165
5166 /* Return a pointer to a newly created DIE node.  */
5167
5168 static inline dw_die_ref
5169 new_die (enum dwarf_tag tag_value, dw_die_ref parent_die, tree t)
5170 {
5171   dw_die_ref die = ggc_alloc_cleared (sizeof (die_node));
5172
5173   die->die_tag = tag_value;
5174
5175   if (parent_die != NULL)
5176     add_child_die (parent_die, die);
5177   else
5178     {
5179       limbo_die_node *limbo_node;
5180
5181       limbo_node = ggc_alloc_cleared (sizeof (limbo_die_node));
5182       limbo_node->die = die;
5183       limbo_node->created_for = t;
5184       limbo_node->next = limbo_die_list;
5185       limbo_die_list = limbo_node;
5186     }
5187
5188   return die;
5189 }
5190
5191 /* Return the DIE associated with the given type specifier.  */
5192
5193 static inline dw_die_ref
5194 lookup_type_die (tree type)
5195 {
5196   return TYPE_SYMTAB_DIE (type);
5197 }
5198
5199 /* Equate a DIE to a given type specifier.  */
5200
5201 static inline void
5202 equate_type_number_to_die (tree type, dw_die_ref type_die)
5203 {
5204   TYPE_SYMTAB_DIE (type) = type_die;
5205 }
5206
5207 /* Returns a hash value for X (which really is a die_struct).  */
5208
5209 static hashval_t
5210 decl_die_table_hash (const void *x)
5211 {
5212   return (hashval_t) ((const dw_die_ref) x)->decl_id;
5213 }
5214
5215 /* Return nonzero if decl_id of die_struct X is the same as UID of decl *Y.  */
5216
5217 static int
5218 decl_die_table_eq (const void *x, const void *y)
5219 {
5220   return (((const dw_die_ref) x)->decl_id == DECL_UID ((const tree) y));
5221 }
5222
5223 /* Return the DIE associated with a given declaration.  */
5224
5225 static inline dw_die_ref
5226 lookup_decl_die (tree decl)
5227 {
5228   return htab_find_with_hash (decl_die_table, decl, DECL_UID (decl));
5229 }
5230
5231 /* Equate a DIE to a particular declaration.  */
5232
5233 static void
5234 equate_decl_number_to_die (tree decl, dw_die_ref decl_die)
5235 {
5236   unsigned int decl_id = DECL_UID (decl);
5237   void **slot;
5238
5239   slot = htab_find_slot_with_hash (decl_die_table, decl, decl_id, INSERT);
5240   *slot = decl_die;
5241   decl_die->decl_id = decl_id;
5242 }
5243 \f
5244 /* Keep track of the number of spaces used to indent the
5245    output of the debugging routines that print the structure of
5246    the DIE internal representation.  */
5247 static int print_indent;
5248
5249 /* Indent the line the number of spaces given by print_indent.  */
5250
5251 static inline void
5252 print_spaces (FILE *outfile)
5253 {
5254   fprintf (outfile, "%*s", print_indent, "");
5255 }
5256
5257 /* Print the information associated with a given DIE, and its children.
5258    This routine is a debugging aid only.  */
5259
5260 static void
5261 print_die (dw_die_ref die, FILE *outfile)
5262 {
5263   dw_attr_ref a;
5264   dw_die_ref c;
5265
5266   print_spaces (outfile);
5267   fprintf (outfile, "DIE %4lu: %s\n",
5268            die->die_offset, dwarf_tag_name (die->die_tag));
5269   print_spaces (outfile);
5270   fprintf (outfile, "  abbrev id: %lu", die->die_abbrev);
5271   fprintf (outfile, " offset: %lu\n", die->die_offset);
5272
5273   for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
5274     {
5275       print_spaces (outfile);
5276       fprintf (outfile, "  %s: ", dwarf_attr_name (a->dw_attr));
5277
5278       switch (AT_class (a))
5279         {
5280         case dw_val_class_addr:
5281           fprintf (outfile, "address");
5282           break;
5283         case dw_val_class_offset:
5284           fprintf (outfile, "offset");
5285           break;
5286         case dw_val_class_loc:
5287           fprintf (outfile, "location descriptor");
5288           break;
5289         case dw_val_class_loc_list:
5290           fprintf (outfile, "location list -> label:%s",
5291                    AT_loc_list (a)->ll_symbol);
5292           break;
5293         case dw_val_class_range_list:
5294           fprintf (outfile, "range list");
5295           break;
5296         case dw_val_class_const:
5297           fprintf (outfile, HOST_WIDE_INT_PRINT_DEC, AT_int (a));
5298           break;
5299         case dw_val_class_unsigned_const:
5300           fprintf (outfile, HOST_WIDE_INT_PRINT_UNSIGNED, AT_unsigned (a));
5301           break;
5302         case dw_val_class_long_long:
5303           fprintf (outfile, "constant (%lu,%lu)",
5304                    a->dw_attr_val.v.val_long_long.hi,
5305                    a->dw_attr_val.v.val_long_long.low);
5306           break;
5307         case dw_val_class_float:
5308           fprintf (outfile, "floating-point constant");
5309           break;
5310         case dw_val_class_flag:
5311           fprintf (outfile, "%u", AT_flag (a));
5312           break;
5313         case dw_val_class_die_ref:
5314           if (AT_ref (a) != NULL)
5315             {
5316               if (AT_ref (a)->die_symbol)
5317                 fprintf (outfile, "die -> label: %s", AT_ref (a)->die_symbol);
5318               else
5319                 fprintf (outfile, "die -> %lu", AT_ref (a)->die_offset);
5320             }
5321           else
5322             fprintf (outfile, "die -> <null>");
5323           break;
5324         case dw_val_class_lbl_id:
5325         case dw_val_class_lbl_offset:
5326           fprintf (outfile, "label: %s", AT_lbl (a));
5327           break;
5328         case dw_val_class_str:
5329           if (AT_string (a) != NULL)
5330             fprintf (outfile, "\"%s\"", AT_string (a));
5331           else
5332             fprintf (outfile, "<null>");
5333           break;
5334         default:
5335           break;
5336         }
5337
5338       fprintf (outfile, "\n");
5339     }
5340
5341   if (die->die_child != NULL)
5342     {
5343       print_indent += 4;
5344       for (c = die->die_child; c != NULL; c = c->die_sib)
5345         print_die (c, outfile);
5346
5347       print_indent -= 4;
5348     }
5349   if (print_indent == 0)
5350     fprintf (outfile, "\n");
5351 }
5352
5353 /* Print the contents of the source code line number correspondence table.
5354    This routine is a debugging aid only.  */
5355
5356 static void
5357 print_dwarf_line_table (FILE *outfile)
5358 {
5359   unsigned i;
5360   dw_line_info_ref line_info;
5361
5362   fprintf (outfile, "\n\nDWARF source line information\n");
5363   for (i = 1; i < line_info_table_in_use; i++)
5364     {
5365       line_info = &line_info_table[i];
5366       fprintf (outfile, "%5d: ", i);
5367       fprintf (outfile, "%-20s",
5368                VARRAY_CHAR_PTR (file_table, line_info->dw_file_num));
5369       fprintf (outfile, "%6ld", line_info->dw_line_num);
5370       fprintf (outfile, "\n");
5371     }
5372
5373   fprintf (outfile, "\n\n");
5374 }
5375
5376 /* Print the information collected for a given DIE.  */
5377
5378 void
5379 debug_dwarf_die (dw_die_ref die)
5380 {
5381   print_die (die, stderr);
5382 }
5383
5384 /* Print all DWARF information collected for the compilation unit.
5385    This routine is a debugging aid only.  */
5386
5387 void
5388 debug_dwarf (void)
5389 {
5390   print_indent = 0;
5391   print_die (comp_unit_die, stderr);
5392   if (! DWARF2_ASM_LINE_DEBUG_INFO)
5393     print_dwarf_line_table (stderr);
5394 }
5395 \f
5396 /* We build up the lists of children and attributes by pushing new ones
5397    onto the beginning of the list.  Reverse the lists for DIE so that
5398    they are in order of addition.  */
5399
5400 static void
5401 reverse_die_lists (dw_die_ref die)
5402 {
5403   dw_die_ref c, cp, cn;
5404   dw_attr_ref a, ap, an;
5405
5406   for (a = die->die_attr, ap = 0; a; a = an)
5407     {
5408       an = a->dw_attr_next;
5409       a->dw_attr_next = ap;
5410       ap = a;
5411     }
5412
5413   die->die_attr = ap;
5414
5415   for (c = die->die_child, cp = 0; c; c = cn)
5416     {
5417       cn = c->die_sib;
5418       c->die_sib = cp;
5419       cp = c;
5420     }
5421
5422   die->die_child = cp;
5423 }
5424
5425 /* reverse_die_lists only reverses the single die you pass it. Since we used to
5426    reverse all dies in add_sibling_attributes, which runs through all the dies,
5427    it would reverse all the dies.  Now, however, since we don't call
5428    reverse_die_lists in add_sibling_attributes, we need a routine to
5429    recursively reverse all the dies. This is that routine.  */
5430
5431 static void
5432 reverse_all_dies (dw_die_ref die)
5433 {
5434   dw_die_ref c;
5435
5436   reverse_die_lists (die);
5437
5438   for (c = die->die_child; c; c = c->die_sib)
5439     reverse_all_dies (c);
5440 }
5441
5442 /* Start a new compilation unit DIE for an include file.  OLD_UNIT is the CU
5443    for the enclosing include file, if any.  BINCL_DIE is the DW_TAG_GNU_BINCL
5444    DIE that marks the start of the DIEs for this include file.  */
5445
5446 static dw_die_ref
5447 push_new_compile_unit (dw_die_ref old_unit, dw_die_ref bincl_die)
5448 {
5449   const char *filename = get_AT_string (bincl_die, DW_AT_name);
5450   dw_die_ref new_unit = gen_compile_unit_die (filename);
5451
5452   new_unit->die_sib = old_unit;
5453   return new_unit;
5454 }
5455
5456 /* Close an include-file CU and reopen the enclosing one.  */
5457
5458 static dw_die_ref
5459 pop_compile_unit (dw_die_ref old_unit)
5460 {
5461   dw_die_ref new_unit = old_unit->die_sib;
5462
5463   old_unit->die_sib = NULL;
5464   return new_unit;
5465 }
5466
5467 #define CHECKSUM(FOO) md5_process_bytes (&(FOO), sizeof (FOO), ctx)
5468 #define CHECKSUM_STRING(FOO) md5_process_bytes ((FOO), strlen (FOO), ctx)
5469
5470 /* Calculate the checksum of a location expression.  */
5471
5472 static inline void
5473 loc_checksum (dw_loc_descr_ref loc, struct md5_ctx *ctx)
5474 {
5475   CHECKSUM (loc->dw_loc_opc);
5476   CHECKSUM (loc->dw_loc_oprnd1);
5477   CHECKSUM (loc->dw_loc_oprnd2);
5478 }
5479
5480 /* Calculate the checksum of an attribute.  */
5481
5482 static void
5483 attr_checksum (dw_attr_ref at, struct md5_ctx *ctx, int *mark)
5484 {
5485   dw_loc_descr_ref loc;
5486   rtx r;
5487
5488   CHECKSUM (at->dw_attr);
5489
5490   /* We don't care about differences in file numbering.  */
5491   if (at->dw_attr == DW_AT_decl_file
5492       /* Or that this was compiled with a different compiler snapshot; if
5493          the output is the same, that's what matters.  */
5494       || at->dw_attr == DW_AT_producer)
5495     return;
5496
5497   switch (AT_class (at))
5498     {
5499     case dw_val_class_const:
5500       CHECKSUM (at->dw_attr_val.v.val_int);
5501       break;
5502     case dw_val_class_unsigned_const:
5503       CHECKSUM (at->dw_attr_val.v.val_unsigned);
5504       break;
5505     case dw_val_class_long_long:
5506       CHECKSUM (at->dw_attr_val.v.val_long_long);
5507       break;
5508     case dw_val_class_float:
5509       CHECKSUM (at->dw_attr_val.v.val_float);
5510       break;
5511     case dw_val_class_flag:
5512       CHECKSUM (at->dw_attr_val.v.val_flag);
5513       break;
5514     case dw_val_class_str:
5515       CHECKSUM_STRING (AT_string (at));
5516       break;
5517
5518     case dw_val_class_addr:
5519       r = AT_addr (at);
5520       switch (GET_CODE (r))
5521         {
5522         case SYMBOL_REF:
5523           CHECKSUM_STRING (XSTR (r, 0));
5524           break;
5525
5526         default:
5527           abort ();
5528         }
5529       break;
5530
5531     case dw_val_class_offset:
5532       CHECKSUM (at->dw_attr_val.v.val_offset);
5533       break;
5534
5535     case dw_val_class_loc:
5536       for (loc = AT_loc (at); loc; loc = loc->dw_loc_next)
5537         loc_checksum (loc, ctx);
5538       break;
5539
5540     case dw_val_class_die_ref:
5541       die_checksum (AT_ref (at), ctx, mark);
5542       break;
5543
5544     case dw_val_class_fde_ref:
5545     case dw_val_class_lbl_id:
5546     case dw_val_class_lbl_offset:
5547       break;
5548
5549     default:
5550       break;
5551     }
5552 }
5553
5554 /* Calculate the checksum of a DIE.  */
5555
5556 static void
5557 die_checksum (dw_die_ref die, struct md5_ctx *ctx, int *mark)
5558 {
5559   dw_die_ref c;
5560   dw_attr_ref a;
5561
5562   /* To avoid infinite recursion.  */
5563   if (die->die_mark)
5564     {
5565       CHECKSUM (die->die_mark);
5566       return;
5567     }
5568   die->die_mark = ++(*mark);
5569
5570   CHECKSUM (die->die_tag);
5571
5572   for (a = die->die_attr; a; a = a->dw_attr_next)
5573     attr_checksum (a, ctx, mark);
5574
5575   for (c = die->die_child; c; c = c->die_sib)
5576     die_checksum (c, ctx, mark);
5577 }
5578
5579 #undef CHECKSUM
5580 #undef CHECKSUM_STRING
5581
5582 /* Do the location expressions look same?  */
5583 static inline int
5584 same_loc_p (dw_loc_descr_ref loc1, dw_loc_descr_ref loc2, int *mark)
5585 {
5586   return loc1->dw_loc_opc == loc2->dw_loc_opc
5587          && same_dw_val_p (&loc1->dw_loc_oprnd1, &loc2->dw_loc_oprnd1, mark)
5588          && same_dw_val_p (&loc1->dw_loc_oprnd2, &loc2->dw_loc_oprnd2, mark);
5589 }
5590
5591 /* Do the values look the same?  */
5592 static int
5593 same_dw_val_p (dw_val_node *v1, dw_val_node *v2, int *mark)
5594 {
5595   dw_loc_descr_ref loc1, loc2;
5596   rtx r1, r2;
5597   unsigned i;
5598
5599   if (v1->val_class != v2->val_class)
5600     return 0;
5601
5602   switch (v1->val_class)
5603     {
5604     case dw_val_class_const:
5605       return v1->v.val_int == v2->v.val_int;
5606     case dw_val_class_unsigned_const:
5607       return v1->v.val_unsigned == v2->v.val_unsigned;
5608     case dw_val_class_long_long:
5609       return v1->v.val_long_long.hi == v2->v.val_long_long.hi
5610              && v1->v.val_long_long.low == v2->v.val_long_long.low;
5611     case dw_val_class_float:
5612       if (v1->v.val_float.length != v2->v.val_float.length)
5613         return 0;
5614       for (i = 0; i < v1->v.val_float.length; i++)
5615         if (v1->v.val_float.array[i] != v2->v.val_float.array[i])
5616           return 0;
5617       return 1;
5618     case dw_val_class_flag:
5619       return v1->v.val_flag == v2->v.val_flag;
5620     case dw_val_class_str:
5621       return !strcmp(v1->v.val_str->str, v2->v.val_str->str);
5622
5623     case dw_val_class_addr:
5624       r1 = v1->v.val_addr;
5625       r2 = v2->v.val_addr;
5626       if (GET_CODE (r1) != GET_CODE (r2))
5627         return 0;
5628       switch (GET_CODE (r1))
5629         {
5630         case SYMBOL_REF:
5631           return !strcmp (XSTR (r1, 0), XSTR (r2, 0));
5632
5633         default:
5634           abort ();
5635         }
5636
5637     case dw_val_class_offset:
5638       return v1->v.val_offset == v2->v.val_offset;
5639
5640     case dw_val_class_loc:
5641       for (loc1 = v1->v.val_loc, loc2 = v2->v.val_loc;
5642            loc1 && loc2;
5643            loc1 = loc1->dw_loc_next, loc2 = loc2->dw_loc_next)
5644         if (!same_loc_p (loc1, loc2, mark))
5645           return 0;
5646       return !loc1 && !loc2;
5647
5648     case dw_val_class_die_ref:
5649       return same_die_p (v1->v.val_die_ref.die, v2->v.val_die_ref.die, mark);
5650
5651     case dw_val_class_fde_ref:
5652     case dw_val_class_lbl_id:
5653     case dw_val_class_lbl_offset:
5654       return 1;
5655
5656     default:
5657       return 1;
5658     }
5659 }
5660
5661 /* Do the attributes look the same?  */
5662
5663 static int
5664 same_attr_p (dw_attr_ref at1, dw_attr_ref at2, int *mark)
5665 {
5666   if (at1->dw_attr != at2->dw_attr)
5667     return 0;
5668
5669   /* We don't care about differences in file numbering.  */
5670   if (at1->dw_attr == DW_AT_decl_file
5671       /* Or that this was compiled with a different compiler snapshot; if
5672          the output is the same, that's what matters.  */
5673       || at1->dw_attr == DW_AT_producer)
5674     return 1;
5675
5676   return same_dw_val_p (&at1->dw_attr_val, &at2->dw_attr_val, mark);
5677 }
5678
5679 /* Do the dies look the same?  */
5680
5681 static int
5682 same_die_p (dw_die_ref die1, dw_die_ref die2, int *mark)
5683 {
5684   dw_die_ref c1, c2;
5685   dw_attr_ref a1, a2;
5686
5687   /* To avoid infinite recursion.  */
5688   if (die1->die_mark)
5689     return die1->die_mark == die2->die_mark;
5690   die1->die_mark = die2->die_mark = ++(*mark);
5691
5692   if (die1->die_tag != die2->die_tag)
5693     return 0;
5694
5695   for (a1 = die1->die_attr, a2 = die2->die_attr;
5696        a1 && a2;
5697        a1 = a1->dw_attr_next, a2 = a2->dw_attr_next)
5698     if (!same_attr_p (a1, a2, mark))
5699       return 0;
5700   if (a1 || a2)
5701     return 0;
5702
5703   for (c1 = die1->die_child, c2 = die2->die_child;
5704        c1 && c2;
5705        c1 = c1->die_sib, c2 = c2->die_sib)
5706     if (!same_die_p (c1, c2, mark))
5707       return 0;
5708   if (c1 || c2)
5709     return 0;
5710
5711   return 1;
5712 }
5713
5714 /* Do the dies look the same?  Wrapper around same_die_p.  */
5715
5716 static int
5717 same_die_p_wrap (dw_die_ref die1, dw_die_ref die2)
5718 {
5719   int mark = 0;
5720   int ret = same_die_p (die1, die2, &mark);
5721
5722   unmark_all_dies (die1);
5723   unmark_all_dies (die2);
5724
5725   return ret;
5726 }
5727
5728 /* The prefix to attach to symbols on DIEs in the current comdat debug
5729    info section.  */
5730 static char *comdat_symbol_id;
5731
5732 /* The index of the current symbol within the current comdat CU.  */
5733 static unsigned int comdat_symbol_number;
5734
5735 /* Calculate the MD5 checksum of the compilation unit DIE UNIT_DIE and its
5736    children, and set comdat_symbol_id accordingly.  */
5737
5738 static void
5739 compute_section_prefix (dw_die_ref unit_die)
5740 {
5741   const char *die_name = get_AT_string (unit_die, DW_AT_name);
5742   const char *base = die_name ? lbasename (die_name) : "anonymous";
5743   char *name = alloca (strlen (base) + 64);
5744   char *p;
5745   int i, mark;
5746   unsigned char checksum[16];
5747   struct md5_ctx ctx;
5748
5749   /* Compute the checksum of the DIE, then append part of it as hex digits to
5750      the name filename of the unit.  */
5751
5752   md5_init_ctx (&ctx);
5753   mark = 0;
5754   die_checksum (unit_die, &ctx, &mark);
5755   unmark_all_dies (unit_die);
5756   md5_finish_ctx (&ctx, checksum);
5757
5758   sprintf (name, "%s.", base);
5759   clean_symbol_name (name);
5760
5761   p = name + strlen (name);
5762   for (i = 0; i < 4; i++)
5763     {
5764       sprintf (p, "%.2x", checksum[i]);
5765       p += 2;
5766     }
5767
5768   comdat_symbol_id = unit_die->die_symbol = xstrdup (name);
5769   comdat_symbol_number = 0;
5770 }
5771
5772 /* Returns nonzero if DIE represents a type, in the sense of TYPE_P.  */
5773
5774 static int
5775 is_type_die (dw_die_ref die)
5776 {
5777   switch (die->die_tag)
5778     {
5779     case DW_TAG_array_type:
5780     case DW_TAG_class_type:
5781     case DW_TAG_enumeration_type:
5782     case DW_TAG_pointer_type:
5783     case DW_TAG_reference_type:
5784     case DW_TAG_string_type:
5785     case DW_TAG_structure_type:
5786     case DW_TAG_subroutine_type:
5787     case DW_TAG_union_type:
5788     case DW_TAG_ptr_to_member_type:
5789     case DW_TAG_set_type:
5790     case DW_TAG_subrange_type:
5791     case DW_TAG_base_type:
5792     case DW_TAG_const_type:
5793     case DW_TAG_file_type:
5794     case DW_TAG_packed_type:
5795     case DW_TAG_volatile_type:
5796     case DW_TAG_typedef:
5797       return 1;
5798     default:
5799       return 0;
5800     }
5801 }
5802
5803 /* Returns 1 iff C is the sort of DIE that should go into a COMDAT CU.
5804    Basically, we want to choose the bits that are likely to be shared between
5805    compilations (types) and leave out the bits that are specific to individual
5806    compilations (functions).  */
5807
5808 static int
5809 is_comdat_die (dw_die_ref c)
5810 {
5811   /* I think we want to leave base types and __vtbl_ptr_type in the main CU, as
5812      we do for stabs.  The advantage is a greater likelihood of sharing between
5813      objects that don't include headers in the same order (and therefore would
5814      put the base types in a different comdat).  jason 8/28/00 */
5815
5816   if (c->die_tag == DW_TAG_base_type)
5817     return 0;
5818
5819   if (c->die_tag == DW_TAG_pointer_type
5820       || c->die_tag == DW_TAG_reference_type
5821       || c->die_tag == DW_TAG_const_type
5822       || c->die_tag == DW_TAG_volatile_type)
5823     {
5824       dw_die_ref t = get_AT_ref (c, DW_AT_type);
5825
5826       return t ? is_comdat_die (t) : 0;
5827     }
5828
5829   return is_type_die (c);
5830 }
5831
5832 /* Returns 1 iff C is the sort of DIE that might be referred to from another
5833    compilation unit.  */
5834
5835 static int
5836 is_symbol_die (dw_die_ref c)
5837 {
5838   return (is_type_die (c)
5839           || (get_AT (c, DW_AT_declaration)
5840               && !get_AT (c, DW_AT_specification)));
5841 }
5842
5843 static char *
5844 gen_internal_sym (const char *prefix)
5845 {
5846   char buf[256];
5847
5848   ASM_GENERATE_INTERNAL_LABEL (buf, prefix, label_num++);
5849   return xstrdup (buf);
5850 }
5851
5852 /* Assign symbols to all worthy DIEs under DIE.  */
5853
5854 static void
5855 assign_symbol_names (dw_die_ref die)
5856 {
5857   dw_die_ref c;
5858
5859   if (is_symbol_die (die))
5860     {
5861       if (comdat_symbol_id)
5862         {
5863           char *p = alloca (strlen (comdat_symbol_id) + 64);
5864
5865           sprintf (p, "%s.%s.%x", DIE_LABEL_PREFIX,
5866                    comdat_symbol_id, comdat_symbol_number++);
5867           die->die_symbol = xstrdup (p);
5868         }
5869       else
5870         die->die_symbol = gen_internal_sym ("LDIE");
5871     }
5872
5873   for (c = die->die_child; c != NULL; c = c->die_sib)
5874     assign_symbol_names (c);
5875 }
5876
5877 struct cu_hash_table_entry
5878 {
5879   dw_die_ref cu;
5880   unsigned min_comdat_num, max_comdat_num;
5881   struct cu_hash_table_entry *next;
5882 };
5883
5884 /* Routines to manipulate hash table of CUs.  */
5885 static hashval_t
5886 htab_cu_hash (const void *of)
5887 {
5888   const struct cu_hash_table_entry *entry = of;
5889
5890   return htab_hash_string (entry->cu->die_symbol);
5891 }
5892
5893 static int
5894 htab_cu_eq (const void *of1, const void *of2)
5895 {
5896   const struct cu_hash_table_entry *entry1 = of1;
5897   const struct die_struct *entry2 = of2;
5898
5899   return !strcmp (entry1->cu->die_symbol, entry2->die_symbol);
5900 }
5901
5902 static void
5903 htab_cu_del (void *what)
5904 {
5905   struct cu_hash_table_entry *next, *entry = what;
5906
5907   while (entry)
5908     {
5909       next = entry->next;
5910       free (entry);
5911       entry = next;
5912     }
5913 }
5914
5915 /* Check whether we have already seen this CU and set up SYM_NUM
5916    accordingly.  */
5917 static int
5918 check_duplicate_cu (dw_die_ref cu, htab_t htable, unsigned int *sym_num)
5919 {
5920   struct cu_hash_table_entry dummy;
5921   struct cu_hash_table_entry **slot, *entry, *last = &dummy;
5922
5923   dummy.max_comdat_num = 0;
5924
5925   slot = (struct cu_hash_table_entry **)
5926     htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
5927         INSERT);
5928   entry = *slot;
5929
5930   for (; entry; last = entry, entry = entry->next)
5931     {
5932       if (same_die_p_wrap (cu, entry->cu))
5933         break;
5934     }
5935
5936   if (entry)
5937     {
5938       *sym_num = entry->min_comdat_num;
5939       return 1;
5940     }
5941
5942   entry = xcalloc (1, sizeof (struct cu_hash_table_entry));
5943   entry->cu = cu;
5944   entry->min_comdat_num = *sym_num = last->max_comdat_num;
5945   entry->next = *slot;
5946   *slot = entry;
5947
5948   return 0;
5949 }
5950
5951 /* Record SYM_NUM to record of CU in HTABLE.  */
5952 static void
5953 record_comdat_symbol_number (dw_die_ref cu, htab_t htable, unsigned int sym_num)
5954 {
5955   struct cu_hash_table_entry **slot, *entry;
5956
5957   slot = (struct cu_hash_table_entry **)
5958     htab_find_slot_with_hash (htable, cu, htab_hash_string (cu->die_symbol),
5959         NO_INSERT);
5960   entry = *slot;
5961
5962   entry->max_comdat_num = sym_num;
5963 }
5964
5965 /* Traverse the DIE (which is always comp_unit_die), and set up
5966    additional compilation units for each of the include files we see
5967    bracketed by BINCL/EINCL.  */
5968
5969 static void
5970 break_out_includes (dw_die_ref die)
5971 {
5972   dw_die_ref *ptr;
5973   dw_die_ref unit = NULL;
5974   limbo_die_node *node, **pnode;
5975   htab_t cu_hash_table;
5976
5977   for (ptr = &(die->die_child); *ptr;)
5978     {
5979       dw_die_ref c = *ptr;
5980
5981       if (c->die_tag == DW_TAG_GNU_BINCL || c->die_tag == DW_TAG_GNU_EINCL
5982           || (unit && is_comdat_die (c)))
5983         {
5984           /* This DIE is for a secondary CU; remove it from the main one.  */
5985           *ptr = c->die_sib;
5986
5987           if (c->die_tag == DW_TAG_GNU_BINCL)
5988             {
5989               unit = push_new_compile_unit (unit, c);
5990               free_die (c);
5991             }
5992           else if (c->die_tag == DW_TAG_GNU_EINCL)
5993             {
5994               unit = pop_compile_unit (unit);
5995               free_die (c);
5996             }
5997           else
5998             add_child_die (unit, c);
5999         }
6000       else
6001         {
6002           /* Leave this DIE in the main CU.  */
6003           ptr = &(c->die_sib);
6004           continue;
6005         }
6006     }
6007
6008 #if 0
6009   /* We can only use this in debugging, since the frontend doesn't check
6010      to make sure that we leave every include file we enter.  */
6011   if (unit != NULL)
6012     abort ();
6013 #endif
6014
6015   assign_symbol_names (die);
6016   cu_hash_table = htab_create (10, htab_cu_hash, htab_cu_eq, htab_cu_del);
6017   for (node = limbo_die_list, pnode = &limbo_die_list;
6018        node;
6019        node = node->next)
6020     {
6021       int is_dupl;
6022
6023       compute_section_prefix (node->die);
6024       is_dupl = check_duplicate_cu (node->die, cu_hash_table,
6025                         &comdat_symbol_number);
6026       assign_symbol_names (node->die);
6027       if (is_dupl)
6028         *pnode = node->next;
6029       else
6030         {
6031           pnode = &node->next;
6032           record_comdat_symbol_number (node->die, cu_hash_table,
6033                 comdat_symbol_number);
6034         }
6035     }
6036   htab_delete (cu_hash_table);
6037 }
6038
6039 /* Traverse the DIE and add a sibling attribute if it may have the
6040    effect of speeding up access to siblings.  To save some space,
6041    avoid generating sibling attributes for DIE's without children.  */
6042
6043 static void
6044 add_sibling_attributes (dw_die_ref die)
6045 {
6046   dw_die_ref c;
6047
6048   if (die->die_tag != DW_TAG_compile_unit
6049       && die->die_sib && die->die_child != NULL)
6050     /* Add the sibling link to the front of the attribute list.  */
6051     add_AT_die_ref (die, DW_AT_sibling, die->die_sib);
6052
6053   for (c = die->die_child; c != NULL; c = c->die_sib)
6054     add_sibling_attributes (c);
6055 }
6056
6057 /* Output all location lists for the DIE and its children.  */
6058
6059 static void
6060 output_location_lists (dw_die_ref die)
6061 {
6062   dw_die_ref c;
6063   dw_attr_ref d_attr;
6064
6065   for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
6066     if (AT_class (d_attr) == dw_val_class_loc_list)
6067       output_loc_list (AT_loc_list (d_attr));
6068
6069   for (c = die->die_child; c != NULL; c = c->die_sib)
6070     output_location_lists (c);
6071
6072 }
6073
6074 /* The format of each DIE (and its attribute value pairs) is encoded in an
6075    abbreviation table.  This routine builds the abbreviation table and assigns
6076    a unique abbreviation id for each abbreviation entry.  The children of each
6077    die are visited recursively.  */
6078
6079 static void
6080 build_abbrev_table (dw_die_ref die)
6081 {
6082   unsigned long abbrev_id;
6083   unsigned int n_alloc;
6084   dw_die_ref c;
6085   dw_attr_ref d_attr, a_attr;
6086
6087   /* Scan the DIE references, and mark as external any that refer to
6088      DIEs from other CUs (i.e. those which are not marked).  */
6089   for (d_attr = die->die_attr; d_attr; d_attr = d_attr->dw_attr_next)
6090     if (AT_class (d_attr) == dw_val_class_die_ref
6091         && AT_ref (d_attr)->die_mark == 0)
6092       {
6093         if (AT_ref (d_attr)->die_symbol == 0)
6094           abort ();
6095
6096         set_AT_ref_external (d_attr, 1);
6097       }
6098
6099   for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6100     {
6101       dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6102
6103       if (abbrev->die_tag == die->die_tag)
6104         {
6105           if ((abbrev->die_child != NULL) == (die->die_child != NULL))
6106             {
6107               a_attr = abbrev->die_attr;
6108               d_attr = die->die_attr;
6109
6110               while (a_attr != NULL && d_attr != NULL)
6111                 {
6112                   if ((a_attr->dw_attr != d_attr->dw_attr)
6113                       || (value_format (a_attr) != value_format (d_attr)))
6114                     break;
6115
6116                   a_attr = a_attr->dw_attr_next;
6117                   d_attr = d_attr->dw_attr_next;
6118                 }
6119
6120               if (a_attr == NULL && d_attr == NULL)
6121                 break;
6122             }
6123         }
6124     }
6125
6126   if (abbrev_id >= abbrev_die_table_in_use)
6127     {
6128       if (abbrev_die_table_in_use >= abbrev_die_table_allocated)
6129         {
6130           n_alloc = abbrev_die_table_allocated + ABBREV_DIE_TABLE_INCREMENT;
6131           abbrev_die_table = ggc_realloc (abbrev_die_table,
6132                                           sizeof (dw_die_ref) * n_alloc);
6133
6134           memset (&abbrev_die_table[abbrev_die_table_allocated], 0,
6135                  (n_alloc - abbrev_die_table_allocated) * sizeof (dw_die_ref));
6136           abbrev_die_table_allocated = n_alloc;
6137         }
6138
6139       ++abbrev_die_table_in_use;
6140       abbrev_die_table[abbrev_id] = die;
6141     }
6142
6143   die->die_abbrev = abbrev_id;
6144   for (c = die->die_child; c != NULL; c = c->die_sib)
6145     build_abbrev_table (c);
6146 }
6147 \f
6148 /* Return the power-of-two number of bytes necessary to represent VALUE.  */
6149
6150 static int
6151 constant_size (long unsigned int value)
6152 {
6153   int log;
6154
6155   if (value == 0)
6156     log = 0;
6157   else
6158     log = floor_log2 (value);
6159
6160   log = log / 8;
6161   log = 1 << (floor_log2 (log) + 1);
6162
6163   return log;
6164 }
6165
6166 /* Return the size of a DIE as it is represented in the
6167    .debug_info section.  */
6168
6169 static unsigned long
6170 size_of_die (dw_die_ref die)
6171 {
6172   unsigned long size = 0;
6173   dw_attr_ref a;
6174
6175   size += size_of_uleb128 (die->die_abbrev);
6176   for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
6177     {
6178       switch (AT_class (a))
6179         {
6180         case dw_val_class_addr:
6181           size += DWARF2_ADDR_SIZE;
6182           break;
6183         case dw_val_class_offset:
6184           size += DWARF_OFFSET_SIZE;
6185           break;
6186         case dw_val_class_loc:
6187           {
6188             unsigned long lsize = size_of_locs (AT_loc (a));
6189
6190             /* Block length.  */
6191             size += constant_size (lsize);
6192             size += lsize;
6193           }
6194           break;
6195         case dw_val_class_loc_list:
6196           size += DWARF_OFFSET_SIZE;
6197           break;
6198         case dw_val_class_range_list:
6199           size += DWARF_OFFSET_SIZE;
6200           break;
6201         case dw_val_class_const:
6202           size += size_of_sleb128 (AT_int (a));
6203           break;
6204         case dw_val_class_unsigned_const:
6205           size += constant_size (AT_unsigned (a));
6206           break;
6207         case dw_val_class_long_long:
6208           size += 1 + 2*HOST_BITS_PER_LONG/HOST_BITS_PER_CHAR; /* block */
6209           break;
6210         case dw_val_class_float:
6211           size += 1 + a->dw_attr_val.v.val_float.length * 4; /* block */
6212           break;
6213         case dw_val_class_flag:
6214           size += 1;
6215           break;
6216         case dw_val_class_die_ref:
6217           if (AT_ref_external (a))
6218             size += DWARF2_ADDR_SIZE;
6219           else
6220             size += DWARF_OFFSET_SIZE;
6221           break;
6222         case dw_val_class_fde_ref:
6223           size += DWARF_OFFSET_SIZE;
6224           break;
6225         case dw_val_class_lbl_id:
6226           size += DWARF2_ADDR_SIZE;
6227           break;
6228         case dw_val_class_lbl_offset:
6229           size += DWARF_OFFSET_SIZE;
6230           break;
6231         case dw_val_class_str:
6232           if (AT_string_form (a) == DW_FORM_strp)
6233             size += DWARF_OFFSET_SIZE;
6234           else
6235             size += strlen (a->dw_attr_val.v.val_str->str) + 1;
6236           break;
6237         default:
6238           abort ();
6239         }
6240     }
6241
6242   return size;
6243 }
6244
6245 /* Size the debugging information associated with a given DIE.  Visits the
6246    DIE's children recursively.  Updates the global variable next_die_offset, on
6247    each time through.  Uses the current value of next_die_offset to update the
6248    die_offset field in each DIE.  */
6249
6250 static void
6251 calc_die_sizes (dw_die_ref die)
6252 {
6253   dw_die_ref c;
6254
6255   die->die_offset = next_die_offset;
6256   next_die_offset += size_of_die (die);
6257
6258   for (c = die->die_child; c != NULL; c = c->die_sib)
6259     calc_die_sizes (c);
6260
6261   if (die->die_child != NULL)
6262     /* Count the null byte used to terminate sibling lists.  */
6263     next_die_offset += 1;
6264 }
6265
6266 /* Set the marks for a die and its children.  We do this so
6267    that we know whether or not a reference needs to use FORM_ref_addr; only
6268    DIEs in the same CU will be marked.  We used to clear out the offset
6269    and use that as the flag, but ran into ordering problems.  */
6270
6271 static void
6272 mark_dies (dw_die_ref die)
6273 {
6274   dw_die_ref c;
6275
6276   if (die->die_mark)
6277     abort ();
6278
6279   die->die_mark = 1;
6280   for (c = die->die_child; c; c = c->die_sib)
6281     mark_dies (c);
6282 }
6283
6284 /* Clear the marks for a die and its children.  */
6285
6286 static void
6287 unmark_dies (dw_die_ref die)
6288 {
6289   dw_die_ref c;
6290
6291   if (!die->die_mark)
6292     abort ();
6293
6294   die->die_mark = 0;
6295   for (c = die->die_child; c; c = c->die_sib)
6296     unmark_dies (c);
6297 }
6298
6299 /* Clear the marks for a die, its children and referred dies.  */
6300
6301 static void
6302 unmark_all_dies (dw_die_ref die)
6303 {
6304   dw_die_ref c;
6305   dw_attr_ref a;
6306
6307   if (!die->die_mark)
6308     return;
6309   die->die_mark = 0;
6310
6311   for (c = die->die_child; c; c = c->die_sib)
6312     unmark_all_dies (c);
6313
6314   for (a = die->die_attr; a; a = a->dw_attr_next)
6315     if (AT_class (a) == dw_val_class_die_ref)
6316       unmark_all_dies (AT_ref (a));
6317 }
6318
6319 /* Return the size of the .debug_pubnames table  generated for the
6320    compilation unit.  */
6321
6322 static unsigned long
6323 size_of_pubnames (void)
6324 {
6325   unsigned long size;
6326   unsigned i;
6327
6328   size = DWARF_PUBNAMES_HEADER_SIZE;
6329   for (i = 0; i < pubname_table_in_use; i++)
6330     {
6331       pubname_ref p = &pubname_table[i];
6332       size += DWARF_OFFSET_SIZE + strlen (p->name) + 1;
6333     }
6334
6335   size += DWARF_OFFSET_SIZE;
6336   return size;
6337 }
6338
6339 /* Return the size of the information in the .debug_aranges section.  */
6340
6341 static unsigned long
6342 size_of_aranges (void)
6343 {
6344   unsigned long size;
6345
6346   size = DWARF_ARANGES_HEADER_SIZE;
6347
6348   /* Count the address/length pair for this compilation unit.  */
6349   size += 2 * DWARF2_ADDR_SIZE;
6350   size += 2 * DWARF2_ADDR_SIZE * arange_table_in_use;
6351
6352   /* Count the two zero words used to terminated the address range table.  */
6353   size += 2 * DWARF2_ADDR_SIZE;
6354   return size;
6355 }
6356 \f
6357 /* Select the encoding of an attribute value.  */
6358
6359 static enum dwarf_form
6360 value_format (dw_attr_ref a)
6361 {
6362   switch (a->dw_attr_val.val_class)
6363     {
6364     case dw_val_class_addr:
6365       return DW_FORM_addr;
6366     case dw_val_class_range_list:
6367     case dw_val_class_offset:
6368       if (DWARF_OFFSET_SIZE == 4)
6369         return DW_FORM_data4;
6370       if (DWARF_OFFSET_SIZE == 8)
6371         return DW_FORM_data8;
6372       abort ();
6373     case dw_val_class_loc_list:
6374       /* FIXME: Could be DW_FORM_data8, with a > 32 bit size
6375          .debug_loc section */
6376       return DW_FORM_data4;
6377     case dw_val_class_loc:
6378       switch (constant_size (size_of_locs (AT_loc (a))))
6379         {
6380         case 1:
6381           return DW_FORM_block1;
6382         case 2:
6383           return DW_FORM_block2;
6384         default:
6385           abort ();
6386         }
6387     case dw_val_class_const:
6388       return DW_FORM_sdata;
6389     case dw_val_class_unsigned_const:
6390       switch (constant_size (AT_unsigned (a)))
6391         {
6392         case 1:
6393           return DW_FORM_data1;
6394         case 2:
6395           return DW_FORM_data2;
6396         case 4:
6397           return DW_FORM_data4;
6398         case 8:
6399           return DW_FORM_data8;
6400         default:
6401           abort ();
6402         }
6403     case dw_val_class_long_long:
6404       return DW_FORM_block1;
6405     case dw_val_class_float:
6406       return DW_FORM_block1;
6407     case dw_val_class_flag:
6408       return DW_FORM_flag;
6409     case dw_val_class_die_ref:
6410       if (AT_ref_external (a))
6411         return DW_FORM_ref_addr;
6412       else
6413         return DW_FORM_ref;
6414     case dw_val_class_fde_ref:
6415       return DW_FORM_data;
6416     case dw_val_class_lbl_id:
6417       return DW_FORM_addr;
6418     case dw_val_class_lbl_offset:
6419       return DW_FORM_data;
6420     case dw_val_class_str:
6421       return AT_string_form (a);
6422
6423     default:
6424       abort ();
6425     }
6426 }
6427
6428 /* Output the encoding of an attribute value.  */
6429
6430 static void
6431 output_value_format (dw_attr_ref a)
6432 {
6433   enum dwarf_form form = value_format (a);
6434
6435   dw2_asm_output_data_uleb128 (form, "(%s)", dwarf_form_name (form));
6436 }
6437
6438 /* Output the .debug_abbrev section which defines the DIE abbreviation
6439    table.  */
6440
6441 static void
6442 output_abbrev_section (void)
6443 {
6444   unsigned long abbrev_id;
6445
6446   dw_attr_ref a_attr;
6447
6448   for (abbrev_id = 1; abbrev_id < abbrev_die_table_in_use; ++abbrev_id)
6449     {
6450       dw_die_ref abbrev = abbrev_die_table[abbrev_id];
6451
6452       dw2_asm_output_data_uleb128 (abbrev_id, "(abbrev code)");
6453       dw2_asm_output_data_uleb128 (abbrev->die_tag, "(TAG: %s)",
6454                                    dwarf_tag_name (abbrev->die_tag));
6455
6456       if (abbrev->die_child != NULL)
6457         dw2_asm_output_data (1, DW_children_yes, "DW_children_yes");
6458       else
6459         dw2_asm_output_data (1, DW_children_no, "DW_children_no");
6460
6461       for (a_attr = abbrev->die_attr; a_attr != NULL;
6462            a_attr = a_attr->dw_attr_next)
6463         {
6464           dw2_asm_output_data_uleb128 (a_attr->dw_attr, "(%s)",
6465                                        dwarf_attr_name (a_attr->dw_attr));
6466           output_value_format (a_attr);
6467         }
6468
6469       dw2_asm_output_data (1, 0, NULL);
6470       dw2_asm_output_data (1, 0, NULL);
6471     }
6472
6473   /* Terminate the table.  */
6474   dw2_asm_output_data (1, 0, NULL);
6475 }
6476
6477 /* Output a symbol we can use to refer to this DIE from another CU.  */
6478
6479 static inline void
6480 output_die_symbol (dw_die_ref die)
6481 {
6482   char *sym = die->die_symbol;
6483
6484   if (sym == 0)
6485     return;
6486
6487   if (strncmp (sym, DIE_LABEL_PREFIX, sizeof (DIE_LABEL_PREFIX) - 1) == 0)
6488     /* We make these global, not weak; if the target doesn't support
6489        .linkonce, it doesn't support combining the sections, so debugging
6490        will break.  */
6491     (*targetm.asm_out.globalize_label) (asm_out_file, sym);
6492
6493   ASM_OUTPUT_LABEL (asm_out_file, sym);
6494 }
6495
6496 /* Return a new location list, given the begin and end range, and the
6497    expression. gensym tells us whether to generate a new internal symbol for
6498    this location list node, which is done for the head of the list only.  */
6499
6500 static inline dw_loc_list_ref
6501 new_loc_list (dw_loc_descr_ref expr, const char *begin, const char *end,
6502               const char *section, unsigned int gensym)
6503 {
6504   dw_loc_list_ref retlist = ggc_alloc_cleared (sizeof (dw_loc_list_node));
6505
6506   retlist->begin = begin;
6507   retlist->end = end;
6508   retlist->expr = expr;
6509   retlist->section = section;
6510   if (gensym)
6511     retlist->ll_symbol = gen_internal_sym ("LLST");
6512
6513   return retlist;
6514 }
6515
6516 /* Add a location description expression to a location list.  */
6517
6518 static inline void
6519 add_loc_descr_to_loc_list (dw_loc_list_ref *list_head, dw_loc_descr_ref descr,
6520                            const char *begin, const char *end,
6521                            const char *section)
6522 {
6523   dw_loc_list_ref *d;
6524
6525   /* Find the end of the chain.  */
6526   for (d = list_head; (*d) != NULL; d = &(*d)->dw_loc_next)
6527     ;
6528
6529   /* Add a new location list node to the list.  */
6530   *d = new_loc_list (descr, begin, end, section, 0);
6531 }
6532
6533 /* Output the location list given to us.  */
6534
6535 static void
6536 output_loc_list (dw_loc_list_ref list_head)
6537 {
6538   dw_loc_list_ref curr = list_head;
6539
6540   ASM_OUTPUT_LABEL (asm_out_file, list_head->ll_symbol);
6541
6542   /* ??? This shouldn't be needed now that we've forced the
6543      compilation unit base address to zero when there is code
6544      in more than one section.  */
6545   if (strcmp (curr->section, ".text") == 0)
6546     {
6547       /* dw2_asm_output_data will mask off any extra bits in the ~0.  */
6548       dw2_asm_output_data (DWARF2_ADDR_SIZE, ~(unsigned HOST_WIDE_INT) 0,
6549                            "Location list base address specifier fake entry");
6550       dw2_asm_output_offset (DWARF2_ADDR_SIZE, curr->section,
6551                              "Location list base address specifier base");
6552     }
6553
6554   for (curr = list_head; curr != NULL; curr = curr->dw_loc_next)
6555     {
6556       unsigned long size;
6557
6558       dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->begin, curr->section,
6559                             "Location list begin address (%s)",
6560                             list_head->ll_symbol);
6561       dw2_asm_output_delta (DWARF2_ADDR_SIZE, curr->end, curr->section,
6562                             "Location list end address (%s)",
6563                             list_head->ll_symbol);
6564       size = size_of_locs (curr->expr);
6565
6566       /* Output the block length for this list of location operations.  */
6567       if (size > 0xffff)
6568         abort ();
6569       dw2_asm_output_data (2, size, "%s", "Location expression size");
6570
6571       output_loc_sequence (curr->expr);
6572     }
6573
6574   dw2_asm_output_data (DWARF_OFFSET_SIZE, 0,
6575                        "Location list terminator begin (%s)",
6576                        list_head->ll_symbol);
6577   dw2_asm_output_data (DWARF_OFFSET_SIZE, 0,
6578                        "Location list terminator end (%s)",
6579                        list_head->ll_symbol);
6580 }
6581
6582 /* Output the DIE and its attributes.  Called recursively to generate
6583    the definitions of each child DIE.  */
6584
6585 static void
6586 output_die (dw_die_ref die)
6587 {
6588   dw_attr_ref a;
6589   dw_die_ref c;
6590   unsigned long size;
6591
6592   /* If someone in another CU might refer to us, set up a symbol for
6593      them to point to.  */
6594   if (die->die_symbol)
6595     output_die_symbol (die);
6596
6597   dw2_asm_output_data_uleb128 (die->die_abbrev, "(DIE (0x%lx) %s)",
6598                                die->die_offset, dwarf_tag_name (die->die_tag));
6599
6600   for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
6601     {
6602       const char *name = dwarf_attr_name (a->dw_attr);
6603
6604       switch (AT_class (a))
6605         {
6606         case dw_val_class_addr:
6607           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE, AT_addr (a), "%s", name);
6608           break;
6609
6610         case dw_val_class_offset:
6611           dw2_asm_output_data (DWARF_OFFSET_SIZE, a->dw_attr_val.v.val_offset,
6612                                "%s", name);
6613           break;
6614
6615         case dw_val_class_range_list:
6616           {
6617             char *p = strchr (ranges_section_label, '\0');
6618
6619             sprintf (p, "+" HOST_WIDE_INT_PRINT_HEX,
6620                      a->dw_attr_val.v.val_offset);
6621             dw2_asm_output_offset (DWARF_OFFSET_SIZE, ranges_section_label,
6622                                    "%s", name);
6623             *p = '\0';
6624           }
6625           break;
6626
6627         case dw_val_class_loc:
6628           size = size_of_locs (AT_loc (a));
6629
6630           /* Output the block length for this list of location operations.  */
6631           dw2_asm_output_data (constant_size (size), size, "%s", name);
6632
6633           output_loc_sequence (AT_loc (a));
6634           break;
6635
6636         case dw_val_class_const:
6637           /* ??? It would be slightly more efficient to use a scheme like is
6638              used for unsigned constants below, but gdb 4.x does not sign
6639              extend.  Gdb 5.x does sign extend.  */
6640           dw2_asm_output_data_sleb128 (AT_int (a), "%s", name);
6641           break;
6642
6643         case dw_val_class_unsigned_const:
6644           dw2_asm_output_data (constant_size (AT_unsigned (a)),
6645                                AT_unsigned (a), "%s", name);
6646           break;
6647
6648         case dw_val_class_long_long:
6649           {
6650             unsigned HOST_WIDE_INT first, second;
6651
6652             dw2_asm_output_data (1,
6653                                  2 * HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6654                                  "%s", name);
6655
6656             if (WORDS_BIG_ENDIAN)
6657               {
6658                 first = a->dw_attr_val.v.val_long_long.hi;
6659                 second = a->dw_attr_val.v.val_long_long.low;
6660               }
6661             else
6662               {
6663                 first = a->dw_attr_val.v.val_long_long.low;
6664                 second = a->dw_attr_val.v.val_long_long.hi;
6665               }
6666
6667             dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6668                                  first, "long long constant");
6669             dw2_asm_output_data (HOST_BITS_PER_LONG / HOST_BITS_PER_CHAR,
6670                                  second, NULL);
6671           }
6672           break;
6673
6674         case dw_val_class_float:
6675           {
6676             unsigned int i;
6677
6678             dw2_asm_output_data (1, a->dw_attr_val.v.val_float.length * 4,
6679                                  "%s", name);
6680
6681             for (i = 0; i < a->dw_attr_val.v.val_float.length; i++)
6682               dw2_asm_output_data (4, a->dw_attr_val.v.val_float.array[i],
6683                                    "fp constant word %u", i);
6684             break;
6685           }
6686
6687         case dw_val_class_flag:
6688           dw2_asm_output_data (1, AT_flag (a), "%s", name);
6689           break;
6690
6691         case dw_val_class_loc_list:
6692           {
6693             char *sym = AT_loc_list (a)->ll_symbol;
6694
6695             if (sym == 0)
6696               abort ();
6697             dw2_asm_output_delta (DWARF_OFFSET_SIZE, sym,
6698                                   loc_section_label, "%s", name);
6699           }
6700           break;
6701
6702         case dw_val_class_die_ref:
6703           if (AT_ref_external (a))
6704             {
6705               char *sym = AT_ref (a)->die_symbol;
6706
6707               if (sym == 0)
6708                 abort ();
6709               dw2_asm_output_offset (DWARF2_ADDR_SIZE, sym, "%s", name);
6710             }
6711           else if (AT_ref (a)->die_offset == 0)
6712             abort ();
6713           else
6714             dw2_asm_output_data (DWARF_OFFSET_SIZE, AT_ref (a)->die_offset,
6715                                  "%s", name);
6716           break;
6717
6718         case dw_val_class_fde_ref:
6719           {
6720             char l1[20];
6721
6722             ASM_GENERATE_INTERNAL_LABEL (l1, FDE_LABEL,
6723                                          a->dw_attr_val.v.val_fde_index * 2);
6724             dw2_asm_output_offset (DWARF_OFFSET_SIZE, l1, "%s", name);
6725           }
6726           break;
6727
6728         case dw_val_class_lbl_id:
6729           dw2_asm_output_addr (DWARF2_ADDR_SIZE, AT_lbl (a), "%s", name);
6730           break;
6731
6732         case dw_val_class_lbl_offset:
6733           dw2_asm_output_offset (DWARF_OFFSET_SIZE, AT_lbl (a), "%s", name);
6734           break;
6735
6736         case dw_val_class_str:
6737           if (AT_string_form (a) == DW_FORM_strp)
6738             dw2_asm_output_offset (DWARF_OFFSET_SIZE,
6739                                    a->dw_attr_val.v.val_str->label,
6740                                    "%s: \"%s\"", name, AT_string (a));
6741           else
6742             dw2_asm_output_nstring (AT_string (a), -1, "%s", name);
6743           break;
6744
6745         default:
6746           abort ();
6747         }
6748     }
6749
6750   for (c = die->die_child; c != NULL; c = c->die_sib)
6751     output_die (c);
6752
6753   /* Add null byte to terminate sibling list.  */
6754   if (die->die_child != NULL)
6755     dw2_asm_output_data (1, 0, "end of children of DIE 0x%lx",
6756                          die->die_offset);
6757 }
6758
6759 /* Output the compilation unit that appears at the beginning of the
6760    .debug_info section, and precedes the DIE descriptions.  */
6761
6762 static void
6763 output_compilation_unit_header (void)
6764 {
6765   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
6766     dw2_asm_output_data (4, 0xffffffff,
6767       "Initial length escape value indicating 64-bit DWARF extension");
6768   dw2_asm_output_data (DWARF_OFFSET_SIZE,
6769                        next_die_offset - DWARF_INITIAL_LENGTH_SIZE,
6770                        "Length of Compilation Unit Info");
6771   dw2_asm_output_data (2, DWARF_VERSION, "DWARF version number");
6772   dw2_asm_output_offset (DWARF_OFFSET_SIZE, abbrev_section_label,
6773                          "Offset Into Abbrev. Section");
6774   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Pointer Size (in bytes)");
6775 }
6776
6777 /* Output the compilation unit DIE and its children.  */
6778
6779 static void
6780 output_comp_unit (dw_die_ref die, int output_if_empty)
6781 {
6782   const char *secname;
6783   char *oldsym, *tmp;
6784
6785   /* Unless we are outputting main CU, we may throw away empty ones.  */
6786   if (!output_if_empty && die->die_child == NULL)
6787     return;
6788
6789   /* Even if there are no children of this DIE, we must output the information
6790      about the compilation unit.  Otherwise, on an empty translation unit, we
6791      will generate a present, but empty, .debug_info section.  IRIX 6.5 `nm'
6792      will then complain when examining the file.  First mark all the DIEs in
6793      this CU so we know which get local refs.  */
6794   mark_dies (die);
6795
6796   build_abbrev_table (die);
6797
6798   /* Initialize the beginning DIE offset - and calculate sizes/offsets.  */
6799   next_die_offset = DWARF_COMPILE_UNIT_HEADER_SIZE;
6800   calc_die_sizes (die);
6801
6802   oldsym = die->die_symbol;
6803   if (oldsym)
6804     {
6805       tmp = alloca (strlen (oldsym) + 24);
6806
6807       sprintf (tmp, ".gnu.linkonce.wi.%s", oldsym);
6808       secname = tmp;
6809       die->die_symbol = NULL;
6810     }
6811   else
6812     secname = (const char *) DEBUG_INFO_SECTION;
6813
6814   /* Output debugging information.  */
6815   named_section_flags (secname, SECTION_DEBUG);
6816   output_compilation_unit_header ();
6817   output_die (die);
6818
6819   /* Leave the marks on the main CU, so we can check them in
6820      output_pubnames.  */
6821   if (oldsym)
6822     {
6823       unmark_dies (die);
6824       die->die_symbol = oldsym;
6825     }
6826 }
6827
6828 /* The DWARF2 pubname for a nested thingy looks like "A::f".  The
6829    output of lang_hooks.decl_printable_name for C++ looks like
6830    "A::f(int)".  Let's drop the argument list, and maybe the scope.  */
6831
6832 static const char *
6833 dwarf2_name (tree decl, int scope)
6834 {
6835   return (*lang_hooks.decl_printable_name) (decl, scope ? 1 : 0);
6836 }
6837
6838 /* Add a new entry to .debug_pubnames if appropriate.  */
6839
6840 static void
6841 add_pubname (tree decl, dw_die_ref die)
6842 {
6843   pubname_ref p;
6844
6845   if (! TREE_PUBLIC (decl))
6846     return;
6847
6848   if (pubname_table_in_use == pubname_table_allocated)
6849     {
6850       pubname_table_allocated += PUBNAME_TABLE_INCREMENT;
6851       pubname_table
6852         = ggc_realloc (pubname_table,
6853                        (pubname_table_allocated * sizeof (pubname_entry)));
6854       memset (pubname_table + pubname_table_in_use, 0,
6855               PUBNAME_TABLE_INCREMENT * sizeof (pubname_entry));
6856     }
6857
6858   p = &pubname_table[pubname_table_in_use++];
6859   p->die = die;
6860   p->name = xstrdup (dwarf2_name (decl, 1));
6861 }
6862
6863 /* Output the public names table used to speed up access to externally
6864    visible names.  For now, only generate entries for externally
6865    visible procedures.  */
6866
6867 static void
6868 output_pubnames (void)
6869 {
6870   unsigned i;
6871   unsigned long pubnames_length = size_of_pubnames ();
6872
6873   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
6874     dw2_asm_output_data (4, 0xffffffff,
6875       "Initial length escape value indicating 64-bit DWARF extension");
6876   dw2_asm_output_data (DWARF_OFFSET_SIZE, pubnames_length,
6877                        "Length of Public Names Info");
6878   dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
6879   dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
6880                          "Offset of Compilation Unit Info");
6881   dw2_asm_output_data (DWARF_OFFSET_SIZE, next_die_offset,
6882                        "Compilation Unit Length");
6883
6884   for (i = 0; i < pubname_table_in_use; i++)
6885     {
6886       pubname_ref pub = &pubname_table[i];
6887
6888       /* We shouldn't see pubnames for DIEs outside of the main CU.  */
6889       if (pub->die->die_mark == 0)
6890         abort ();
6891
6892       dw2_asm_output_data (DWARF_OFFSET_SIZE, pub->die->die_offset,
6893                            "DIE offset");
6894
6895       dw2_asm_output_nstring (pub->name, -1, "external name");
6896     }
6897
6898   dw2_asm_output_data (DWARF_OFFSET_SIZE, 0, NULL);
6899 }
6900
6901 /* Add a new entry to .debug_aranges if appropriate.  */
6902
6903 static void
6904 add_arange (tree decl, dw_die_ref die)
6905 {
6906   if (! DECL_SECTION_NAME (decl))
6907     return;
6908
6909   if (arange_table_in_use == arange_table_allocated)
6910     {
6911       arange_table_allocated += ARANGE_TABLE_INCREMENT;
6912       arange_table = ggc_realloc (arange_table,
6913                                   (arange_table_allocated
6914                                    * sizeof (dw_die_ref)));
6915       memset (arange_table + arange_table_in_use, 0,
6916               ARANGE_TABLE_INCREMENT * sizeof (dw_die_ref));
6917     }
6918
6919   arange_table[arange_table_in_use++] = die;
6920 }
6921
6922 /* Output the information that goes into the .debug_aranges table.
6923    Namely, define the beginning and ending address range of the
6924    text section generated for this compilation unit.  */
6925
6926 static void
6927 output_aranges (void)
6928 {
6929   unsigned i;
6930   unsigned long aranges_length = size_of_aranges ();
6931
6932   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
6933     dw2_asm_output_data (4, 0xffffffff,
6934       "Initial length escape value indicating 64-bit DWARF extension");
6935   dw2_asm_output_data (DWARF_OFFSET_SIZE, aranges_length,
6936                        "Length of Address Ranges Info");
6937   dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
6938   dw2_asm_output_offset (DWARF_OFFSET_SIZE, debug_info_section_label,
6939                          "Offset of Compilation Unit Info");
6940   dw2_asm_output_data (1, DWARF2_ADDR_SIZE, "Size of Address");
6941   dw2_asm_output_data (1, 0, "Size of Segment Descriptor");
6942
6943   /* We need to align to twice the pointer size here.  */
6944   if (DWARF_ARANGES_PAD_SIZE)
6945     {
6946       /* Pad using a 2 byte words so that padding is correct for any
6947          pointer size.  */
6948       dw2_asm_output_data (2, 0, "Pad to %d byte boundary",
6949                            2 * DWARF2_ADDR_SIZE);
6950       for (i = 2; i < (unsigned) DWARF_ARANGES_PAD_SIZE; i += 2)
6951         dw2_asm_output_data (2, 0, NULL);
6952     }
6953
6954   dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_section_label, "Address");
6955   dw2_asm_output_delta (DWARF2_ADDR_SIZE, text_end_label,
6956                         text_section_label, "Length");
6957
6958   for (i = 0; i < arange_table_in_use; i++)
6959     {
6960       dw_die_ref die = arange_table[i];
6961
6962       /* We shouldn't see aranges for DIEs outside of the main CU.  */
6963       if (die->die_mark == 0)
6964         abort ();
6965
6966       if (die->die_tag == DW_TAG_subprogram)
6967         {
6968           dw2_asm_output_addr (DWARF2_ADDR_SIZE, get_AT_low_pc (die),
6969                                "Address");
6970           dw2_asm_output_delta (DWARF2_ADDR_SIZE, get_AT_hi_pc (die),
6971                                 get_AT_low_pc (die), "Length");
6972         }
6973       else
6974         {
6975           /* A static variable; extract the symbol from DW_AT_location.
6976              Note that this code isn't currently hit, as we only emit
6977              aranges for functions (jason 9/23/99).  */
6978           dw_attr_ref a = get_AT (die, DW_AT_location);
6979           dw_loc_descr_ref loc;
6980
6981           if (! a || AT_class (a) != dw_val_class_loc)
6982             abort ();
6983
6984           loc = AT_loc (a);
6985           if (loc->dw_loc_opc != DW_OP_addr)
6986             abort ();
6987
6988           dw2_asm_output_addr_rtx (DWARF2_ADDR_SIZE,
6989                                    loc->dw_loc_oprnd1.v.val_addr, "Address");
6990           dw2_asm_output_data (DWARF2_ADDR_SIZE,
6991                                get_AT_unsigned (die, DW_AT_byte_size),
6992                                "Length");
6993         }
6994     }
6995
6996   /* Output the terminator words.  */
6997   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6998   dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
6999 }
7000
7001 /* Add a new entry to .debug_ranges.  Return the offset at which it
7002    was placed.  */
7003
7004 static unsigned int
7005 add_ranges (tree block)
7006 {
7007   unsigned int in_use = ranges_table_in_use;
7008
7009   if (in_use == ranges_table_allocated)
7010     {
7011       ranges_table_allocated += RANGES_TABLE_INCREMENT;
7012       ranges_table
7013         = ggc_realloc (ranges_table, (ranges_table_allocated
7014                                       * sizeof (struct dw_ranges_struct)));
7015       memset (ranges_table + ranges_table_in_use, 0,
7016               RANGES_TABLE_INCREMENT * sizeof (struct dw_ranges_struct));
7017     }
7018
7019   ranges_table[in_use].block_num = (block ? BLOCK_NUMBER (block) : 0);
7020   ranges_table_in_use = in_use + 1;
7021
7022   return in_use * 2 * DWARF2_ADDR_SIZE;
7023 }
7024
7025 static void
7026 output_ranges (void)
7027 {
7028   unsigned i;
7029   static const char *const start_fmt = "Offset 0x%x";
7030   const char *fmt = start_fmt;
7031
7032   for (i = 0; i < ranges_table_in_use; i++)
7033     {
7034       int block_num = ranges_table[i].block_num;
7035
7036       if (block_num)
7037         {
7038           char blabel[MAX_ARTIFICIAL_LABEL_BYTES];
7039           char elabel[MAX_ARTIFICIAL_LABEL_BYTES];
7040
7041           ASM_GENERATE_INTERNAL_LABEL (blabel, BLOCK_BEGIN_LABEL, block_num);
7042           ASM_GENERATE_INTERNAL_LABEL (elabel, BLOCK_END_LABEL, block_num);
7043
7044           /* If all code is in the text section, then the compilation
7045              unit base address defaults to DW_AT_low_pc, which is the
7046              base of the text section.  */
7047           if (separate_line_info_table_in_use == 0)
7048             {
7049               dw2_asm_output_delta (DWARF2_ADDR_SIZE, blabel,
7050                                     text_section_label,
7051                                     fmt, i * 2 * DWARF2_ADDR_SIZE);
7052               dw2_asm_output_delta (DWARF2_ADDR_SIZE, elabel,
7053                                     text_section_label, NULL);
7054             }
7055
7056           /* Otherwise, we add a DW_AT_entry_pc attribute to force the
7057              compilation unit base address to zero, which allows us to
7058              use absolute addresses, and not worry about whether the
7059              target supports cross-section arithmetic.  */
7060           else
7061             {
7062               dw2_asm_output_addr (DWARF2_ADDR_SIZE, blabel,
7063                                    fmt, i * 2 * DWARF2_ADDR_SIZE);
7064               dw2_asm_output_addr (DWARF2_ADDR_SIZE, elabel, NULL);
7065             }
7066
7067           fmt = NULL;
7068         }
7069       else
7070         {
7071           dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7072           dw2_asm_output_data (DWARF2_ADDR_SIZE, 0, NULL);
7073           fmt = start_fmt;
7074         }
7075     }
7076 }
7077
7078 /* Data structure containing information about input files.  */
7079 struct file_info
7080 {
7081   char *path;           /* Complete file name.  */
7082   char *fname;          /* File name part.  */
7083   int length;           /* Length of entire string.  */
7084   int file_idx;         /* Index in input file table.  */
7085   int dir_idx;          /* Index in directory table.  */
7086 };
7087
7088 /* Data structure containing information about directories with source
7089    files.  */
7090 struct dir_info
7091 {
7092   char *path;           /* Path including directory name.  */
7093   int length;           /* Path length.  */
7094   int prefix;           /* Index of directory entry which is a prefix.  */
7095   int count;            /* Number of files in this directory.  */
7096   int dir_idx;          /* Index of directory used as base.  */
7097   int used;             /* Used in the end?  */
7098 };
7099
7100 /* Callback function for file_info comparison.  We sort by looking at
7101    the directories in the path.  */
7102
7103 static int
7104 file_info_cmp (const void *p1, const void *p2)
7105 {
7106   const struct file_info *s1 = p1;
7107   const struct file_info *s2 = p2;
7108   unsigned char *cp1;
7109   unsigned char *cp2;
7110
7111   /* Take care of file names without directories.  We need to make sure that
7112      we return consistent values to qsort since some will get confused if
7113      we return the same value when identical operands are passed in opposite
7114      orders.  So if neither has a directory, return 0 and otherwise return
7115      1 or -1 depending on which one has the directory.  */
7116   if ((s1->path == s1->fname || s2->path == s2->fname))
7117     return (s2->path == s2->fname) - (s1->path == s1->fname);
7118
7119   cp1 = (unsigned char *) s1->path;
7120   cp2 = (unsigned char *) s2->path;
7121
7122   while (1)
7123     {
7124       ++cp1;
7125       ++cp2;
7126       /* Reached the end of the first path?  If so, handle like above.  */
7127       if ((cp1 == (unsigned char *) s1->fname)
7128           || (cp2 == (unsigned char *) s2->fname))
7129         return ((cp2 == (unsigned char *) s2->fname)
7130                 - (cp1 == (unsigned char *) s1->fname));
7131
7132       /* Character of current path component the same?  */
7133       else if (*cp1 != *cp2)
7134         return *cp1 - *cp2;
7135     }
7136 }
7137
7138 /* Output the directory table and the file name table.  We try to minimize
7139    the total amount of memory needed.  A heuristic is used to avoid large
7140    slowdowns with many input files.  */
7141
7142 static void
7143 output_file_names (void)
7144 {
7145   struct file_info *files;
7146   struct dir_info *dirs;
7147   int *saved;
7148   int *savehere;
7149   int *backmap;
7150   size_t ndirs;
7151   int idx_offset;
7152   size_t i;
7153   int idx;
7154
7155   /* Handle the case where file_table is empty.  */
7156   if (VARRAY_ACTIVE_SIZE (file_table) <= 1)
7157     {
7158       dw2_asm_output_data (1, 0, "End directory table");
7159       dw2_asm_output_data (1, 0, "End file name table");
7160       return;
7161     }
7162
7163   /* Allocate the various arrays we need.  */
7164   files = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct file_info));
7165   dirs = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (struct dir_info));
7166
7167   /* Sort the file names.  */
7168   for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7169     {
7170       char *f;
7171
7172       /* Skip all leading "./".  */
7173       f = VARRAY_CHAR_PTR (file_table, i);
7174       while (f[0] == '.' && f[1] == '/')
7175         f += 2;
7176
7177       /* Create a new array entry.  */
7178       files[i].path = f;
7179       files[i].length = strlen (f);
7180       files[i].file_idx = i;
7181
7182       /* Search for the file name part.  */
7183       f = strrchr (f, '/');
7184       files[i].fname = f == NULL ? files[i].path : f + 1;
7185     }
7186
7187   qsort (files + 1, VARRAY_ACTIVE_SIZE (file_table) - 1,
7188          sizeof (files[0]), file_info_cmp);
7189
7190   /* Find all the different directories used.  */
7191   dirs[0].path = files[1].path;
7192   dirs[0].length = files[1].fname - files[1].path;
7193   dirs[0].prefix = -1;
7194   dirs[0].count = 1;
7195   dirs[0].dir_idx = 0;
7196   dirs[0].used = 0;
7197   files[1].dir_idx = 0;
7198   ndirs = 1;
7199
7200   for (i = 2; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7201     if (files[i].fname - files[i].path == dirs[ndirs - 1].length
7202         && memcmp (dirs[ndirs - 1].path, files[i].path,
7203                    dirs[ndirs - 1].length) == 0)
7204       {
7205         /* Same directory as last entry.  */
7206         files[i].dir_idx = ndirs - 1;
7207         ++dirs[ndirs - 1].count;
7208       }
7209     else
7210       {
7211         size_t j;
7212
7213         /* This is a new directory.  */
7214         dirs[ndirs].path = files[i].path;
7215         dirs[ndirs].length = files[i].fname - files[i].path;
7216         dirs[ndirs].count = 1;
7217         dirs[ndirs].dir_idx = ndirs;
7218         dirs[ndirs].used = 0;
7219         files[i].dir_idx = ndirs;
7220
7221         /* Search for a prefix.  */
7222         dirs[ndirs].prefix = -1;
7223         for (j = 0; j < ndirs; j++)
7224           if (dirs[j].length < dirs[ndirs].length
7225               && dirs[j].length > 1
7226               && (dirs[ndirs].prefix == -1
7227                   || dirs[j].length > dirs[dirs[ndirs].prefix].length)
7228               && memcmp (dirs[j].path, dirs[ndirs].path, dirs[j].length) == 0)
7229             dirs[ndirs].prefix = j;
7230
7231         ++ndirs;
7232       }
7233
7234   /* Now to the actual work.  We have to find a subset of the directories which
7235      allow expressing the file name using references to the directory table
7236      with the least amount of characters.  We do not do an exhaustive search
7237      where we would have to check out every combination of every single
7238      possible prefix.  Instead we use a heuristic which provides nearly optimal
7239      results in most cases and never is much off.  */
7240   saved = alloca (ndirs * sizeof (int));
7241   savehere = alloca (ndirs * sizeof (int));
7242
7243   memset (saved, '\0', ndirs * sizeof (saved[0]));
7244   for (i = 0; i < ndirs; i++)
7245     {
7246       size_t j;
7247       int total;
7248
7249       /* We can always save some space for the current directory.  But this
7250          does not mean it will be enough to justify adding the directory.  */
7251       savehere[i] = dirs[i].length;
7252       total = (savehere[i] - saved[i]) * dirs[i].count;
7253
7254       for (j = i + 1; j < ndirs; j++)
7255         {
7256           savehere[j] = 0;
7257           if (saved[j] < dirs[i].length)
7258             {
7259               /* Determine whether the dirs[i] path is a prefix of the
7260                  dirs[j] path.  */
7261               int k;
7262
7263               k = dirs[j].prefix;
7264               while (k != -1 && k != (int) i)
7265                 k = dirs[k].prefix;
7266
7267               if (k == (int) i)
7268                 {
7269                   /* Yes it is.  We can possibly safe some memory but
7270                      writing the filenames in dirs[j] relative to
7271                      dirs[i].  */
7272                   savehere[j] = dirs[i].length;
7273                   total += (savehere[j] - saved[j]) * dirs[j].count;
7274                 }
7275             }
7276         }
7277
7278       /* Check whether we can safe enough to justify adding the dirs[i]
7279          directory.  */
7280       if (total > dirs[i].length + 1)
7281         {
7282           /* It's worthwhile adding.  */
7283           for (j = i; j < ndirs; j++)
7284             if (savehere[j] > 0)
7285               {
7286                 /* Remember how much we saved for this directory so far.  */
7287                 saved[j] = savehere[j];
7288
7289                 /* Remember the prefix directory.  */
7290                 dirs[j].dir_idx = i;
7291               }
7292         }
7293     }
7294
7295   /* We have to emit them in the order they appear in the file_table array
7296      since the index is used in the debug info generation.  To do this
7297      efficiently we generate a back-mapping of the indices first.  */
7298   backmap = alloca (VARRAY_ACTIVE_SIZE (file_table) * sizeof (int));
7299   for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7300     {
7301       backmap[files[i].file_idx] = i;
7302
7303       /* Mark this directory as used.  */
7304       dirs[dirs[files[i].dir_idx].dir_idx].used = 1;
7305     }
7306
7307   /* That was it.  We are ready to emit the information.  First emit the
7308      directory name table.  We have to make sure the first actually emitted
7309      directory name has index one; zero is reserved for the current working
7310      directory.  Make sure we do not confuse these indices with the one for the
7311      constructed table (even though most of the time they are identical).  */
7312   idx = 1;
7313   idx_offset = dirs[0].length > 0 ? 1 : 0;
7314   for (i = 1 - idx_offset; i < ndirs; i++)
7315     if (dirs[i].used != 0)
7316       {
7317         dirs[i].used = idx++;
7318         dw2_asm_output_nstring (dirs[i].path, dirs[i].length - 1,
7319                                 "Directory Entry: 0x%x", dirs[i].used);
7320       }
7321
7322   dw2_asm_output_data (1, 0, "End directory table");
7323
7324   /* Correct the index for the current working directory entry if it
7325      exists.  */
7326   if (idx_offset == 0)
7327     dirs[0].used = 0;
7328
7329   /* Now write all the file names.  */
7330   for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
7331     {
7332       int file_idx = backmap[i];
7333       int dir_idx = dirs[files[file_idx].dir_idx].dir_idx;
7334
7335       dw2_asm_output_nstring (files[file_idx].path + dirs[dir_idx].length, -1,
7336                               "File Entry: 0x%lx", (unsigned long) i);
7337
7338       /* Include directory index.  */
7339       dw2_asm_output_data_uleb128 (dirs[dir_idx].used, NULL);
7340
7341       /* Modification time.  */
7342       dw2_asm_output_data_uleb128 (0, NULL);
7343
7344       /* File length in bytes.  */
7345       dw2_asm_output_data_uleb128 (0, NULL);
7346     }
7347
7348   dw2_asm_output_data (1, 0, "End file name table");
7349 }
7350
7351
7352 /* Output the source line number correspondence information.  This
7353    information goes into the .debug_line section.  */
7354
7355 static void
7356 output_line_info (void)
7357 {
7358   char l1[20], l2[20], p1[20], p2[20];
7359   char line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7360   char prev_line_label[MAX_ARTIFICIAL_LABEL_BYTES];
7361   unsigned opc;
7362   unsigned n_op_args;
7363   unsigned long lt_index;
7364   unsigned long current_line;
7365   long line_offset;
7366   long line_delta;
7367   unsigned long current_file;
7368   unsigned long function;
7369
7370   ASM_GENERATE_INTERNAL_LABEL (l1, LINE_NUMBER_BEGIN_LABEL, 0);
7371   ASM_GENERATE_INTERNAL_LABEL (l2, LINE_NUMBER_END_LABEL, 0);
7372   ASM_GENERATE_INTERNAL_LABEL (p1, LN_PROLOG_AS_LABEL, 0);
7373   ASM_GENERATE_INTERNAL_LABEL (p2, LN_PROLOG_END_LABEL, 0);
7374
7375   if (DWARF_INITIAL_LENGTH_SIZE - DWARF_OFFSET_SIZE == 4)
7376     dw2_asm_output_data (4, 0xffffffff,
7377       "Initial length escape value indicating 64-bit DWARF extension");
7378   dw2_asm_output_delta (DWARF_OFFSET_SIZE, l2, l1,
7379                         "Length of Source Line Info");
7380   ASM_OUTPUT_LABEL (asm_out_file, l1);
7381
7382   dw2_asm_output_data (2, DWARF_VERSION, "DWARF Version");
7383   dw2_asm_output_delta (DWARF_OFFSET_SIZE, p2, p1, "Prolog Length");
7384   ASM_OUTPUT_LABEL (asm_out_file, p1);
7385
7386   /* Define the architecture-dependent minimum instruction length (in
7387    bytes).  In this implementation of DWARF, this field is used for
7388    information purposes only.  Since GCC generates assembly language,
7389    we have no a priori knowledge of how many instruction bytes are
7390    generated for each source line, and therefore can use only the
7391    DW_LNE_set_address and DW_LNS_fixed_advance_pc line information
7392    commands.  Accordingly, we fix this as `1', which is "correct
7393    enough" for all architectures, and don't let the target override.  */
7394   dw2_asm_output_data (1, 1,
7395                        "Minimum Instruction Length");
7396
7397   dw2_asm_output_data (1, DWARF_LINE_DEFAULT_IS_STMT_START,
7398                        "Default is_stmt_start flag");
7399   dw2_asm_output_data (1, DWARF_LINE_BASE,
7400                        "Line Base Value (Special Opcodes)");
7401   dw2_asm_output_data (1, DWARF_LINE_RANGE,
7402                        "Line Range Value (Special Opcodes)");
7403   dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE,
7404                        "Special Opcode Base");
7405
7406   for (opc = 1; opc < DWARF_LINE_OPCODE_BASE; opc++)
7407     {
7408       switch (opc)
7409         {
7410         case DW_LNS_advance_pc:
7411         case DW_LNS_advance_line:
7412         case DW_LNS_set_file:
7413         case DW_LNS_set_column:
7414         case DW_LNS_fixed_advance_pc:
7415           n_op_args = 1;
7416           break;
7417         default:
7418           n_op_args = 0;
7419           break;
7420         }
7421
7422       dw2_asm_output_data (1, n_op_args, "opcode: 0x%x has %d args",
7423                            opc, n_op_args);
7424     }
7425
7426   /* Write out the information about the files we use.  */
7427   output_file_names ();
7428   ASM_OUTPUT_LABEL (asm_out_file, p2);
7429
7430   /* We used to set the address register to the first location in the text
7431      section here, but that didn't accomplish anything since we already
7432      have a line note for the opening brace of the first function.  */
7433
7434   /* Generate the line number to PC correspondence table, encoded as
7435      a series of state machine operations.  */
7436   current_file = 1;
7437   current_line = 1;
7438   strcpy (prev_line_label, text_section_label);
7439   for (lt_index = 1; lt_index < line_info_table_in_use; ++lt_index)
7440     {
7441       dw_line_info_ref line_info = &line_info_table[lt_index];
7442
7443 #if 0
7444       /* Disable this optimization for now; GDB wants to see two line notes
7445          at the beginning of a function so it can find the end of the
7446          prologue.  */
7447
7448       /* Don't emit anything for redundant notes.  Just updating the
7449          address doesn't accomplish anything, because we already assume
7450          that anything after the last address is this line.  */
7451       if (line_info->dw_line_num == current_line
7452           && line_info->dw_file_num == current_file)
7453         continue;
7454 #endif
7455
7456       /* Emit debug info for the address of the current line.
7457
7458          Unfortunately, we have little choice here currently, and must always
7459          use the most general form.  GCC does not know the address delta
7460          itself, so we can't use DW_LNS_advance_pc.  Many ports do have length
7461          attributes which will give an upper bound on the address range.  We
7462          could perhaps use length attributes to determine when it is safe to
7463          use DW_LNS_fixed_advance_pc.  */
7464
7465       ASM_GENERATE_INTERNAL_LABEL (line_label, LINE_CODE_LABEL, lt_index);
7466       if (0)
7467         {
7468           /* This can handle deltas up to 0xffff.  This takes 3 bytes.  */
7469           dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7470                                "DW_LNS_fixed_advance_pc");
7471           dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7472         }
7473       else
7474         {
7475           /* This can handle any delta.  This takes
7476              4+DWARF2_ADDR_SIZE bytes.  */
7477           dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7478           dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7479           dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7480           dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7481         }
7482
7483       strcpy (prev_line_label, line_label);
7484
7485       /* Emit debug info for the source file of the current line, if
7486          different from the previous line.  */
7487       if (line_info->dw_file_num != current_file)
7488         {
7489           current_file = line_info->dw_file_num;
7490           dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7491           dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7492                                        VARRAY_CHAR_PTR (file_table,
7493                                                         current_file));
7494         }
7495
7496       /* Emit debug info for the current line number, choosing the encoding
7497          that uses the least amount of space.  */
7498       if (line_info->dw_line_num != current_line)
7499         {
7500           line_offset = line_info->dw_line_num - current_line;
7501           line_delta = line_offset - DWARF_LINE_BASE;
7502           current_line = line_info->dw_line_num;
7503           if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7504             /* This can handle deltas from -10 to 234, using the current
7505                definitions of DWARF_LINE_BASE and DWARF_LINE_RANGE.  This
7506                takes 1 byte.  */
7507             dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7508                                  "line %lu", current_line);
7509           else
7510             {
7511               /* This can handle any delta.  This takes at least 4 bytes,
7512                  depending on the value being encoded.  */
7513               dw2_asm_output_data (1, DW_LNS_advance_line,
7514                                    "advance to line %lu", current_line);
7515               dw2_asm_output_data_sleb128 (line_offset, NULL);
7516               dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7517             }
7518         }
7519       else
7520         /* We still need to start a new row, so output a copy insn.  */
7521         dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7522     }
7523
7524   /* Emit debug info for the address of the end of the function.  */
7525   if (0)
7526     {
7527       dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7528                            "DW_LNS_fixed_advance_pc");
7529       dw2_asm_output_delta (2, text_end_label, prev_line_label, NULL);
7530     }
7531   else
7532     {
7533       dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7534       dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7535       dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7536       dw2_asm_output_addr (DWARF2_ADDR_SIZE, text_end_label, NULL);
7537     }
7538
7539   dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7540   dw2_asm_output_data_uleb128 (1, NULL);
7541   dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7542
7543   function = 0;
7544   current_file = 1;
7545   current_line = 1;
7546   for (lt_index = 0; lt_index < separate_line_info_table_in_use;)
7547     {
7548       dw_separate_line_info_ref line_info
7549         = &separate_line_info_table[lt_index];
7550
7551 #if 0
7552       /* Don't emit anything for redundant notes.  */
7553       if (line_info->dw_line_num == current_line
7554           && line_info->dw_file_num == current_file
7555           && line_info->function == function)
7556         goto cont;
7557 #endif
7558
7559       /* Emit debug info for the address of the current line.  If this is
7560          a new function, or the first line of a function, then we need
7561          to handle it differently.  */
7562       ASM_GENERATE_INTERNAL_LABEL (line_label, SEPARATE_LINE_CODE_LABEL,
7563                                    lt_index);
7564       if (function != line_info->function)
7565         {
7566           function = line_info->function;
7567
7568           /* Set the address register to the first line in the function.  */
7569           dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7570           dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7571           dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7572           dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7573         }
7574       else
7575         {
7576           /* ??? See the DW_LNS_advance_pc comment above.  */
7577           if (0)
7578             {
7579               dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7580                                    "DW_LNS_fixed_advance_pc");
7581               dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7582             }
7583           else
7584             {
7585               dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7586               dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7587               dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7588               dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7589             }
7590         }
7591
7592       strcpy (prev_line_label, line_label);
7593
7594       /* Emit debug info for the source file of the current line, if
7595          different from the previous line.  */
7596       if (line_info->dw_file_num != current_file)
7597         {
7598           current_file = line_info->dw_file_num;
7599           dw2_asm_output_data (1, DW_LNS_set_file, "DW_LNS_set_file");
7600           dw2_asm_output_data_uleb128 (current_file, "(\"%s\")",
7601                                        VARRAY_CHAR_PTR (file_table,
7602                                                         current_file));
7603         }
7604
7605       /* Emit debug info for the current line number, choosing the encoding
7606          that uses the least amount of space.  */
7607       if (line_info->dw_line_num != current_line)
7608         {
7609           line_offset = line_info->dw_line_num - current_line;
7610           line_delta = line_offset - DWARF_LINE_BASE;
7611           current_line = line_info->dw_line_num;
7612           if (line_delta >= 0 && line_delta < (DWARF_LINE_RANGE - 1))
7613             dw2_asm_output_data (1, DWARF_LINE_OPCODE_BASE + line_delta,
7614                                  "line %lu", current_line);
7615           else
7616             {
7617               dw2_asm_output_data (1, DW_LNS_advance_line,
7618                                    "advance to line %lu", current_line);
7619               dw2_asm_output_data_sleb128 (line_offset, NULL);
7620               dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7621             }
7622         }
7623       else
7624         dw2_asm_output_data (1, DW_LNS_copy, "DW_LNS_copy");
7625
7626 #if 0
7627     cont:
7628 #endif
7629
7630       lt_index++;
7631
7632       /* If we're done with a function, end its sequence.  */
7633       if (lt_index == separate_line_info_table_in_use
7634           || separate_line_info_table[lt_index].function != function)
7635         {
7636           current_file = 1;
7637           current_line = 1;
7638
7639           /* Emit debug info for the address of the end of the function.  */
7640           ASM_GENERATE_INTERNAL_LABEL (line_label, FUNC_END_LABEL, function);
7641           if (0)
7642             {
7643               dw2_asm_output_data (1, DW_LNS_fixed_advance_pc,
7644                                    "DW_LNS_fixed_advance_pc");
7645               dw2_asm_output_delta (2, line_label, prev_line_label, NULL);
7646             }
7647           else
7648             {
7649               dw2_asm_output_data (1, 0, "DW_LNE_set_address");
7650               dw2_asm_output_data_uleb128 (1 + DWARF2_ADDR_SIZE, NULL);
7651               dw2_asm_output_data (1, DW_LNE_set_address, NULL);
7652               dw2_asm_output_addr (DWARF2_ADDR_SIZE, line_label, NULL);
7653             }
7654
7655           /* Output the marker for the end of this sequence.  */
7656           dw2_asm_output_data (1, 0, "DW_LNE_end_sequence");
7657           dw2_asm_output_data_uleb128 (1, NULL);
7658           dw2_asm_output_data (1, DW_LNE_end_sequence, NULL);
7659         }
7660     }
7661
7662   /* Output the marker for the end of the line number info.  */
7663   ASM_OUTPUT_LABEL (asm_out_file, l2);
7664 }
7665 \f
7666 /* Given a pointer to a tree node for some base type, return a pointer to
7667    a DIE that describes the given type.
7668
7669    This routine must only be called for GCC type nodes that correspond to
7670    Dwarf base (fundamental) types.  */
7671
7672 static dw_die_ref
7673 base_type_die (tree type)
7674 {
7675   dw_die_ref base_type_result;
7676   const char *type_name;
7677   enum dwarf_type encoding;
7678   tree name = TYPE_NAME (type);
7679
7680   if (TREE_CODE (type) == ERROR_MARK || TREE_CODE (type) == VOID_TYPE)
7681     return 0;
7682
7683   if (name)
7684     {
7685       if (TREE_CODE (name) == TYPE_DECL)
7686         name = DECL_NAME (name);
7687
7688       type_name = IDENTIFIER_POINTER (name);
7689     }
7690   else
7691     type_name = "__unknown__";
7692
7693   switch (TREE_CODE (type))
7694     {
7695     case INTEGER_TYPE:
7696       /* Carefully distinguish the C character types, without messing
7697          up if the language is not C. Note that we check only for the names
7698          that contain spaces; other names might occur by coincidence in other
7699          languages.  */
7700       if (! (TYPE_PRECISION (type) == CHAR_TYPE_SIZE
7701              && (type == char_type_node
7702                  || ! strcmp (type_name, "signed char")
7703                  || ! strcmp (type_name, "unsigned char"))))
7704         {
7705           if (TREE_UNSIGNED (type))
7706             encoding = DW_ATE_unsigned;
7707           else
7708             encoding = DW_ATE_signed;
7709           break;
7710         }
7711       /* else fall through.  */
7712
7713     case CHAR_TYPE:
7714       /* GNU Pascal/Ada CHAR type.  Not used in C.  */
7715       if (TREE_UNSIGNED (type))
7716         encoding = DW_ATE_unsigned_char;
7717       else
7718         encoding = DW_ATE_signed_char;
7719       break;
7720
7721     case REAL_TYPE:
7722       encoding = DW_ATE_float;
7723       break;
7724
7725       /* Dwarf2 doesn't know anything about complex ints, so use
7726          a user defined type for it.  */
7727     case COMPLEX_TYPE:
7728       if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
7729         encoding = DW_ATE_complex_float;
7730       else
7731         encoding = DW_ATE_lo_user;
7732       break;
7733
7734     case BOOLEAN_TYPE:
7735       /* GNU FORTRAN/Ada/C++ BOOLEAN type.  */
7736       encoding = DW_ATE_boolean;
7737       break;
7738
7739     default:
7740       /* No other TREE_CODEs are Dwarf fundamental types.  */
7741       abort ();
7742     }
7743
7744   base_type_result = new_die (DW_TAG_base_type, comp_unit_die, type);
7745   if (demangle_name_func)
7746     type_name = (*demangle_name_func) (type_name);
7747
7748   add_AT_string (base_type_result, DW_AT_name, type_name);
7749   add_AT_unsigned (base_type_result, DW_AT_byte_size,
7750                    int_size_in_bytes (type));
7751   add_AT_unsigned (base_type_result, DW_AT_encoding, encoding);
7752
7753   return base_type_result;
7754 }
7755
7756 /* Given a pointer to an arbitrary ..._TYPE tree node, return a pointer to
7757    the Dwarf "root" type for the given input type.  The Dwarf "root" type of
7758    a given type is generally the same as the given type, except that if the
7759    given type is a pointer or reference type, then the root type of the given
7760    type is the root type of the "basis" type for the pointer or reference
7761    type.  (This definition of the "root" type is recursive.) Also, the root
7762    type of a `const' qualified type or a `volatile' qualified type is the
7763    root type of the given type without the qualifiers.  */
7764
7765 static tree
7766 root_type (tree type)
7767 {
7768   if (TREE_CODE (type) == ERROR_MARK)
7769     return error_mark_node;
7770
7771   switch (TREE_CODE (type))
7772     {
7773     case ERROR_MARK:
7774       return error_mark_node;
7775
7776     case POINTER_TYPE:
7777     case REFERENCE_TYPE:
7778       return type_main_variant (root_type (TREE_TYPE (type)));
7779
7780     default:
7781       return type_main_variant (type);
7782     }
7783 }
7784
7785 /* Given a pointer to an arbitrary ..._TYPE tree node, return nonzero if the
7786    given input type is a Dwarf "fundamental" type.  Otherwise return null.  */
7787
7788 static inline int
7789 is_base_type (tree type)
7790 {
7791   switch (TREE_CODE (type))
7792     {
7793     case ERROR_MARK:
7794     case VOID_TYPE:
7795     case INTEGER_TYPE:
7796     case REAL_TYPE:
7797     case COMPLEX_TYPE:
7798     case BOOLEAN_TYPE:
7799     case CHAR_TYPE:
7800       return 1;
7801
7802     case SET_TYPE:
7803     case ARRAY_TYPE:
7804     case RECORD_TYPE:
7805     case UNION_TYPE:
7806     case QUAL_UNION_TYPE:
7807     case ENUMERAL_TYPE:
7808     case FUNCTION_TYPE:
7809     case METHOD_TYPE:
7810     case POINTER_TYPE:
7811     case REFERENCE_TYPE:
7812     case FILE_TYPE:
7813     case OFFSET_TYPE:
7814     case LANG_TYPE:
7815     case VECTOR_TYPE:
7816       return 0;
7817
7818     default:
7819       abort ();
7820     }
7821
7822   return 0;
7823 }
7824
7825 /* Given a pointer to a tree node, assumed to be some kind of a ..._TYPE
7826    node, return the size in bits for the type if it is a constant, or else
7827    return the alignment for the type if the type's size is not constant, or
7828    else return BITS_PER_WORD if the type actually turns out to be an
7829    ERROR_MARK node.  */
7830
7831 static inline unsigned HOST_WIDE_INT
7832 simple_type_size_in_bits (tree type)
7833 {
7834   if (TREE_CODE (type) == ERROR_MARK)
7835     return BITS_PER_WORD;
7836   else if (TYPE_SIZE (type) == NULL_TREE)
7837     return 0;
7838   else if (host_integerp (TYPE_SIZE (type), 1))
7839     return tree_low_cst (TYPE_SIZE (type), 1);
7840   else
7841     return TYPE_ALIGN (type);
7842 }
7843
7844 /* Return true if the debug information for the given type should be
7845    emitted as a subrange type.  */
7846
7847 static inline bool
7848 is_subrange_type (tree type)
7849 {
7850   tree subtype = TREE_TYPE (type);
7851
7852   if (TREE_CODE (type) == INTEGER_TYPE
7853       && subtype != NULL_TREE)
7854     {
7855       if (TREE_CODE (subtype) == INTEGER_TYPE)
7856         return true;
7857       if (TREE_CODE (subtype) == ENUMERAL_TYPE)
7858         return true;
7859     }
7860   return false;
7861 }
7862
7863 /*  Given a pointer to a tree node for a subrange type, return a pointer
7864     to a DIE that describes the given type.  */
7865
7866 static dw_die_ref
7867 subrange_type_die (tree type, dw_die_ref context_die)
7868 {
7869   dw_die_ref subtype_die;
7870   dw_die_ref subrange_die;
7871   tree name = TYPE_NAME (type);
7872   const HOST_WIDE_INT size_in_bytes = int_size_in_bytes (type);
7873
7874   if (context_die == NULL)
7875     context_die = comp_unit_die;
7876
7877   if (TREE_CODE (TREE_TYPE (type)) == ENUMERAL_TYPE)
7878     subtype_die = gen_enumeration_type_die (TREE_TYPE (type), context_die);
7879   else
7880     subtype_die = base_type_die (TREE_TYPE (type));
7881
7882   subrange_die = new_die (DW_TAG_subrange_type, context_die, type);
7883
7884   if (name != NULL)
7885     {
7886       if (TREE_CODE (name) == TYPE_DECL)
7887         name = DECL_NAME (name);
7888       add_name_attribute (subrange_die, IDENTIFIER_POINTER (name));
7889     }
7890
7891   if (int_size_in_bytes (TREE_TYPE (type)) != size_in_bytes)
7892     {
7893       /* The size of the subrange type and its base type do not match,
7894          so we need to generate a size attribute for the subrange type.  */
7895       add_AT_unsigned (subrange_die, DW_AT_byte_size, size_in_bytes);
7896     }
7897
7898   if (TYPE_MIN_VALUE (type) != NULL)
7899     add_bound_info (subrange_die, DW_AT_lower_bound,
7900                     TYPE_MIN_VALUE (type));
7901   if (TYPE_MAX_VALUE (type) != NULL)
7902     add_bound_info (subrange_die, DW_AT_upper_bound,
7903                     TYPE_MAX_VALUE (type));
7904   add_AT_die_ref (subrange_die, DW_AT_type, subtype_die);
7905
7906   return subrange_die;
7907 }
7908
7909 /* Given a pointer to an arbitrary ..._TYPE tree node, return a debugging
7910    entry that chains various modifiers in front of the given type.  */
7911
7912 static dw_die_ref
7913 modified_type_die (tree type, int is_const_type, int is_volatile_type,
7914                    dw_die_ref context_die)
7915 {
7916   enum tree_code code = TREE_CODE (type);
7917   dw_die_ref mod_type_die = NULL;
7918   dw_die_ref sub_die = NULL;
7919   tree item_type = NULL;
7920
7921   if (code != ERROR_MARK)
7922     {
7923       tree qualified_type;
7924
7925       /* See if we already have the appropriately qualified variant of
7926          this type.  */
7927       qualified_type
7928         = get_qualified_type (type,
7929                               ((is_const_type ? TYPE_QUAL_CONST : 0)
7930                                | (is_volatile_type
7931                                   ? TYPE_QUAL_VOLATILE : 0)));
7932
7933       /* If we do, then we can just use its DIE, if it exists.  */
7934       if (qualified_type)
7935         {
7936           mod_type_die = lookup_type_die (qualified_type);
7937           if (mod_type_die)
7938             return mod_type_die;
7939         }
7940
7941       /* Handle C typedef types.  */
7942       if (qualified_type && TYPE_NAME (qualified_type)
7943           && TREE_CODE (TYPE_NAME (qualified_type)) == TYPE_DECL
7944           && DECL_ORIGINAL_TYPE (TYPE_NAME (qualified_type)))
7945         {
7946           tree type_name = TYPE_NAME (qualified_type);
7947           tree dtype = TREE_TYPE (type_name);
7948
7949           if (qualified_type == dtype)
7950             {
7951               /* For a named type, use the typedef.  */
7952               gen_type_die (qualified_type, context_die);
7953               mod_type_die = lookup_type_die (qualified_type);
7954             }
7955           else if (is_const_type < TYPE_READONLY (dtype)
7956                    || is_volatile_type < TYPE_VOLATILE (dtype))
7957             /* cv-unqualified version of named type.  Just use the unnamed
7958                type to which it refers.  */
7959             mod_type_die
7960               = modified_type_die (DECL_ORIGINAL_TYPE (type_name),
7961                                    is_const_type, is_volatile_type,
7962                                    context_die);
7963
7964           /* Else cv-qualified version of named type; fall through.  */
7965         }
7966
7967       if (mod_type_die)
7968         /* OK.  */
7969         ;
7970       else if (is_const_type)
7971         {
7972           mod_type_die = new_die (DW_TAG_const_type, comp_unit_die, type);
7973           sub_die = modified_type_die (type, 0, is_volatile_type, context_die);
7974         }
7975       else if (is_volatile_type)
7976         {
7977           mod_type_die = new_die (DW_TAG_volatile_type, comp_unit_die, type);
7978           sub_die = modified_type_die (type, 0, 0, context_die);
7979         }
7980       else if (code == POINTER_TYPE)
7981         {
7982           mod_type_die = new_die (DW_TAG_pointer_type, comp_unit_die, type);
7983           add_AT_unsigned (mod_type_die, DW_AT_byte_size,
7984                            simple_type_size_in_bits (type) / BITS_PER_UNIT);
7985 #if 0
7986           add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
7987 #endif
7988           item_type = TREE_TYPE (type);
7989         }
7990       else if (code == REFERENCE_TYPE)
7991         {
7992           mod_type_die = new_die (DW_TAG_reference_type, comp_unit_die, type);
7993           add_AT_unsigned (mod_type_die, DW_AT_byte_size,
7994                            simple_type_size_in_bits (type) / BITS_PER_UNIT);
7995 #if 0
7996           add_AT_unsigned (mod_type_die, DW_AT_address_class, 0);
7997 #endif
7998           item_type = TREE_TYPE (type);
7999         }
8000       else if (is_subrange_type (type))
8001         mod_type_die = subrange_type_die (type, context_die);
8002       else if (is_base_type (type))
8003         mod_type_die = base_type_die (type);
8004       else
8005         {
8006           gen_type_die (type, context_die);
8007
8008           /* We have to get the type_main_variant here (and pass that to the
8009              `lookup_type_die' routine) because the ..._TYPE node we have
8010              might simply be a *copy* of some original type node (where the
8011              copy was created to help us keep track of typedef names) and
8012              that copy might have a different TYPE_UID from the original
8013              ..._TYPE node.  */
8014           if (TREE_CODE (type) != VECTOR_TYPE)
8015             mod_type_die = lookup_type_die (type_main_variant (type));
8016           else
8017             /* Vectors have the debugging information in the type,
8018                not the main variant.  */
8019             mod_type_die = lookup_type_die (type);
8020           if (mod_type_die == NULL)
8021             abort ();
8022         }
8023
8024       /* We want to equate the qualified type to the die below.  */
8025       type = qualified_type;
8026     }
8027
8028   if (type)
8029     equate_type_number_to_die (type, mod_type_die);
8030   if (item_type)
8031     /* We must do this after the equate_type_number_to_die call, in case
8032        this is a recursive type.  This ensures that the modified_type_die
8033        recursion will terminate even if the type is recursive.  Recursive
8034        types are possible in Ada.  */
8035     sub_die = modified_type_die (item_type,
8036                                  TYPE_READONLY (item_type),
8037                                  TYPE_VOLATILE (item_type),
8038                                  context_die);
8039
8040   if (sub_die != NULL)
8041     add_AT_die_ref (mod_type_die, DW_AT_type, sub_die);
8042
8043   return mod_type_die;
8044 }
8045
8046 /* Given a pointer to an arbitrary ..._TYPE tree node, return true if it is
8047    an enumerated type.  */
8048
8049 static inline int
8050 type_is_enum (tree type)
8051 {
8052   return TREE_CODE (type) == ENUMERAL_TYPE;
8053 }
8054
8055 /* Return the register number described by a given RTL node.  */
8056
8057 static unsigned int
8058 reg_number (rtx rtl)
8059 {
8060   unsigned regno = REGNO (rtl);
8061
8062   if (regno >= FIRST_PSEUDO_REGISTER)
8063     abort ();
8064
8065   return DBX_REGISTER_NUMBER (regno);
8066 }
8067
8068 /* Return a location descriptor that designates a machine register or
8069    zero if there is none.  */
8070
8071 static dw_loc_descr_ref
8072 reg_loc_descriptor (rtx rtl)
8073 {
8074   unsigned reg;
8075   rtx regs;
8076
8077   if (REGNO (rtl) >= FIRST_PSEUDO_REGISTER)
8078     return 0;
8079
8080   reg = reg_number (rtl);
8081   regs = (*targetm.dwarf_register_span) (rtl);
8082
8083   if (hard_regno_nregs[reg][GET_MODE (rtl)] > 1
8084       || regs)
8085     return multiple_reg_loc_descriptor (rtl, regs);
8086   else
8087     return one_reg_loc_descriptor (reg);
8088 }
8089
8090 /* Return a location descriptor that designates a machine register for
8091    a given hard register number.  */
8092
8093 static dw_loc_descr_ref
8094 one_reg_loc_descriptor (unsigned int regno)
8095 {
8096   if (regno <= 31)
8097     return new_loc_descr (DW_OP_reg0 + regno, 0, 0);
8098   else
8099     return new_loc_descr (DW_OP_regx, regno, 0);
8100 }
8101
8102 /* Given an RTL of a register, return a location descriptor that
8103    designates a value that spans more than one register.  */
8104
8105 static dw_loc_descr_ref
8106 multiple_reg_loc_descriptor (rtx rtl, rtx regs)
8107 {
8108   int nregs, size, i;
8109   unsigned reg;
8110   dw_loc_descr_ref loc_result = NULL;
8111
8112   reg = reg_number (rtl);
8113   nregs = hard_regno_nregs[reg][GET_MODE (rtl)];
8114
8115   /* Simple, contiguous registers.  */
8116   if (regs == NULL_RTX)
8117     {
8118       size = GET_MODE_SIZE (GET_MODE (rtl)) / nregs;
8119
8120       loc_result = NULL;
8121       while (nregs--)
8122         {
8123           dw_loc_descr_ref t;
8124
8125           t = one_reg_loc_descriptor (reg);
8126           add_loc_descr (&loc_result, t);
8127           add_loc_descr (&loc_result, new_loc_descr (DW_OP_piece, size, 0));
8128           ++reg;
8129         }
8130       return loc_result;
8131     }
8132
8133   /* Now onto stupid register sets in non contiguous locations.  */
8134
8135   if (GET_CODE (regs) != PARALLEL)
8136     abort ();
8137
8138   size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8139   loc_result = NULL;
8140
8141   for (i = 0; i < XVECLEN (regs, 0); ++i)
8142     {
8143       dw_loc_descr_ref t;
8144
8145       t = one_reg_loc_descriptor (REGNO (XVECEXP (regs, 0, i)));
8146       add_loc_descr (&loc_result, t);
8147       size = GET_MODE_SIZE (GET_MODE (XVECEXP (regs, 0, 0)));
8148       add_loc_descr (&loc_result, new_loc_descr (DW_OP_piece, size, 0));
8149     }
8150   return loc_result;
8151 }
8152
8153 /* Return a location descriptor that designates a constant.  */
8154
8155 static dw_loc_descr_ref
8156 int_loc_descriptor (HOST_WIDE_INT i)
8157 {
8158   enum dwarf_location_atom op;
8159
8160   /* Pick the smallest representation of a constant, rather than just
8161      defaulting to the LEB encoding.  */
8162   if (i >= 0)
8163     {
8164       if (i <= 31)
8165         op = DW_OP_lit0 + i;
8166       else if (i <= 0xff)
8167         op = DW_OP_const1u;
8168       else if (i <= 0xffff)
8169         op = DW_OP_const2u;
8170       else if (HOST_BITS_PER_WIDE_INT == 32
8171                || i <= 0xffffffff)
8172         op = DW_OP_const4u;
8173       else
8174         op = DW_OP_constu;
8175     }
8176   else
8177     {
8178       if (i >= -0x80)
8179         op = DW_OP_const1s;
8180       else if (i >= -0x8000)
8181         op = DW_OP_const2s;
8182       else if (HOST_BITS_PER_WIDE_INT == 32
8183                || i >= -0x80000000)
8184         op = DW_OP_const4s;
8185       else
8186         op = DW_OP_consts;
8187     }
8188
8189   return new_loc_descr (op, i, 0);
8190 }
8191
8192 /* Return a location descriptor that designates a base+offset location.  */
8193
8194 static dw_loc_descr_ref
8195 based_loc_descr (unsigned int reg, HOST_WIDE_INT offset)
8196 {
8197   dw_loc_descr_ref loc_result;
8198   /* For the "frame base", we use the frame pointer or stack pointer
8199      registers, since the RTL for local variables is relative to one of
8200      them.  */
8201   unsigned fp_reg = DBX_REGISTER_NUMBER (frame_pointer_needed
8202                                          ? HARD_FRAME_POINTER_REGNUM
8203                                          : STACK_POINTER_REGNUM);
8204
8205   if (reg == fp_reg)
8206     loc_result = new_loc_descr (DW_OP_fbreg, offset, 0);
8207   else if (reg <= 31)
8208     loc_result = new_loc_descr (DW_OP_breg0 + reg, offset, 0);
8209   else
8210     loc_result = new_loc_descr (DW_OP_bregx, reg, offset);
8211
8212   return loc_result;
8213 }
8214
8215 /* Return true if this RTL expression describes a base+offset calculation.  */
8216
8217 static inline int
8218 is_based_loc (rtx rtl)
8219 {
8220   return (GET_CODE (rtl) == PLUS
8221           && ((GET_CODE (XEXP (rtl, 0)) == REG
8222                && REGNO (XEXP (rtl, 0)) < FIRST_PSEUDO_REGISTER
8223                && GET_CODE (XEXP (rtl, 1)) == CONST_INT)));
8224 }
8225
8226 /* The following routine converts the RTL for a variable or parameter
8227    (resident in memory) into an equivalent Dwarf representation of a
8228    mechanism for getting the address of that same variable onto the top of a
8229    hypothetical "address evaluation" stack.
8230
8231    When creating memory location descriptors, we are effectively transforming
8232    the RTL for a memory-resident object into its Dwarf postfix expression
8233    equivalent.  This routine recursively descends an RTL tree, turning
8234    it into Dwarf postfix code as it goes.
8235
8236    MODE is the mode of the memory reference, needed to handle some
8237    autoincrement addressing modes.
8238
8239    Return 0 if we can't represent the location.  */
8240
8241 static dw_loc_descr_ref
8242 mem_loc_descriptor (rtx rtl, enum machine_mode mode)
8243 {
8244   dw_loc_descr_ref mem_loc_result = NULL;
8245
8246   /* Note that for a dynamically sized array, the location we will generate a
8247      description of here will be the lowest numbered location which is
8248      actually within the array.  That's *not* necessarily the same as the
8249      zeroth element of the array.  */
8250
8251   rtl = (*targetm.delegitimize_address) (rtl);
8252
8253   switch (GET_CODE (rtl))
8254     {
8255     case POST_INC:
8256     case POST_DEC:
8257     case POST_MODIFY:
8258       /* POST_INC and POST_DEC can be handled just like a SUBREG.  So we
8259          just fall into the SUBREG code.  */
8260
8261       /* ... fall through ...  */
8262
8263     case SUBREG:
8264       /* The case of a subreg may arise when we have a local (register)
8265          variable or a formal (register) parameter which doesn't quite fill
8266          up an entire register.  For now, just assume that it is
8267          legitimate to make the Dwarf info refer to the whole register which
8268          contains the given subreg.  */
8269       rtl = SUBREG_REG (rtl);
8270
8271       /* ... fall through ...  */
8272
8273     case REG:
8274       /* Whenever a register number forms a part of the description of the
8275          method for calculating the (dynamic) address of a memory resident
8276          object, DWARF rules require the register number be referred to as
8277          a "base register".  This distinction is not based in any way upon
8278          what category of register the hardware believes the given register
8279          belongs to.  This is strictly DWARF terminology we're dealing with
8280          here. Note that in cases where the location of a memory-resident
8281          data object could be expressed as: OP_ADD (OP_BASEREG (basereg),
8282          OP_CONST (0)) the actual DWARF location descriptor that we generate
8283          may just be OP_BASEREG (basereg).  This may look deceptively like
8284          the object in question was allocated to a register (rather than in
8285          memory) so DWARF consumers need to be aware of the subtle
8286          distinction between OP_REG and OP_BASEREG.  */
8287       if (REGNO (rtl) < FIRST_PSEUDO_REGISTER)
8288         mem_loc_result = based_loc_descr (reg_number (rtl), 0);
8289       break;
8290
8291     case MEM:
8292       mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
8293       if (mem_loc_result != 0)
8294         add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_deref, 0, 0));
8295       break;
8296
8297     case LO_SUM:
8298          rtl = XEXP (rtl, 1);
8299
8300       /* ... fall through ...  */
8301
8302     case LABEL_REF:
8303       /* Some ports can transform a symbol ref into a label ref, because
8304          the symbol ref is too far away and has to be dumped into a constant
8305          pool.  */
8306     case CONST:
8307     case SYMBOL_REF:
8308       /* Alternatively, the symbol in the constant pool might be referenced
8309          by a different symbol.  */
8310       if (GET_CODE (rtl) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (rtl))
8311         {
8312           bool marked;
8313           rtx tmp = get_pool_constant_mark (rtl, &marked);
8314
8315           if (GET_CODE (tmp) == SYMBOL_REF)
8316             {
8317               rtl = tmp;
8318               if (CONSTANT_POOL_ADDRESS_P (tmp))
8319                 get_pool_constant_mark (tmp, &marked);
8320               else
8321                 marked = true;
8322             }
8323
8324           /* If all references to this pool constant were optimized away,
8325              it was not output and thus we can't represent it.
8326              FIXME: might try to use DW_OP_const_value here, though
8327              DW_OP_piece complicates it.  */
8328           if (!marked)
8329             return 0;
8330         }
8331
8332       mem_loc_result = new_loc_descr (DW_OP_addr, 0, 0);
8333       mem_loc_result->dw_loc_oprnd1.val_class = dw_val_class_addr;
8334       mem_loc_result->dw_loc_oprnd1.v.val_addr = rtl;
8335       VARRAY_PUSH_RTX (used_rtx_varray, rtl);
8336       break;
8337
8338     case PRE_MODIFY:
8339       /* Extract the PLUS expression nested inside and fall into
8340          PLUS code below.  */
8341       rtl = XEXP (rtl, 1);
8342       goto plus;
8343
8344     case PRE_INC:
8345     case PRE_DEC:
8346       /* Turn these into a PLUS expression and fall into the PLUS code
8347          below.  */
8348       rtl = gen_rtx_PLUS (word_mode, XEXP (rtl, 0),
8349                           GEN_INT (GET_CODE (rtl) == PRE_INC
8350                                    ? GET_MODE_UNIT_SIZE (mode)
8351                                    : -GET_MODE_UNIT_SIZE (mode)));
8352
8353       /* ... fall through ...  */
8354
8355     case PLUS:
8356     plus:
8357       if (is_based_loc (rtl))
8358         mem_loc_result = based_loc_descr (reg_number (XEXP (rtl, 0)),
8359                                           INTVAL (XEXP (rtl, 1)));
8360       else
8361         {
8362           mem_loc_result = mem_loc_descriptor (XEXP (rtl, 0), mode);
8363           if (mem_loc_result == 0)
8364             break;
8365
8366           if (GET_CODE (XEXP (rtl, 1)) == CONST_INT
8367               && INTVAL (XEXP (rtl, 1)) >= 0)
8368             add_loc_descr (&mem_loc_result,
8369                            new_loc_descr (DW_OP_plus_uconst,
8370                                           INTVAL (XEXP (rtl, 1)), 0));
8371           else
8372             {
8373               add_loc_descr (&mem_loc_result,
8374                              mem_loc_descriptor (XEXP (rtl, 1), mode));
8375               add_loc_descr (&mem_loc_result,
8376                              new_loc_descr (DW_OP_plus, 0, 0));
8377             }
8378         }
8379       break;
8380
8381     case MULT:
8382       {
8383         /* If a pseudo-reg is optimized away, it is possible for it to
8384            be replaced with a MEM containing a multiply.  */
8385         dw_loc_descr_ref op0 = mem_loc_descriptor (XEXP (rtl, 0), mode);
8386         dw_loc_descr_ref op1 = mem_loc_descriptor (XEXP (rtl, 1), mode);
8387
8388         if (op0 == 0 || op1 == 0)
8389           break;
8390
8391         mem_loc_result = op0;
8392         add_loc_descr (&mem_loc_result, op1);
8393         add_loc_descr (&mem_loc_result, new_loc_descr (DW_OP_mul, 0, 0));
8394         break;
8395       }
8396
8397     case CONST_INT:
8398       mem_loc_result = int_loc_descriptor (INTVAL (rtl));
8399       break;
8400
8401     case ADDRESSOF:
8402       /* If this is a MEM, return its address.  Otherwise, we can't
8403          represent this.  */
8404       if (GET_CODE (XEXP (rtl, 0)) == MEM)
8405         return mem_loc_descriptor (XEXP (XEXP (rtl, 0), 0), mode);
8406       else
8407         return 0;
8408
8409     default:
8410       abort ();
8411     }
8412
8413   return mem_loc_result;
8414 }
8415
8416 /* Return a descriptor that describes the concatenation of two locations.
8417    This is typically a complex variable.  */
8418
8419 static dw_loc_descr_ref
8420 concat_loc_descriptor (rtx x0, rtx x1)
8421 {
8422   dw_loc_descr_ref cc_loc_result = NULL;
8423   dw_loc_descr_ref x0_ref = loc_descriptor (x0);
8424   dw_loc_descr_ref x1_ref = loc_descriptor (x1);
8425
8426   if (x0_ref == 0 || x1_ref == 0)
8427     return 0;
8428
8429   cc_loc_result = x0_ref;
8430   add_loc_descr (&cc_loc_result,
8431                  new_loc_descr (DW_OP_piece,
8432                                 GET_MODE_SIZE (GET_MODE (x0)), 0));
8433
8434   add_loc_descr (&cc_loc_result, x1_ref);
8435   add_loc_descr (&cc_loc_result,
8436                  new_loc_descr (DW_OP_piece,
8437                                 GET_MODE_SIZE (GET_MODE (x1)), 0));
8438
8439   return cc_loc_result;
8440 }
8441
8442 /* Output a proper Dwarf location descriptor for a variable or parameter
8443    which is either allocated in a register or in a memory location.  For a
8444    register, we just generate an OP_REG and the register number.  For a
8445    memory location we provide a Dwarf postfix expression describing how to
8446    generate the (dynamic) address of the object onto the address stack.
8447
8448    If we don't know how to describe it, return 0.  */
8449
8450 static dw_loc_descr_ref
8451 loc_descriptor (rtx rtl)
8452 {
8453   dw_loc_descr_ref loc_result = NULL;
8454
8455   switch (GET_CODE (rtl))
8456     {
8457     case SUBREG:
8458       /* The case of a subreg may arise when we have a local (register)
8459          variable or a formal (register) parameter which doesn't quite fill
8460          up an entire register.  For now, just assume that it is
8461          legitimate to make the Dwarf info refer to the whole register which
8462          contains the given subreg.  */
8463       rtl = SUBREG_REG (rtl);
8464
8465       /* ... fall through ...  */
8466
8467     case REG:
8468       loc_result = reg_loc_descriptor (rtl);
8469       break;
8470
8471     case MEM:
8472       loc_result = mem_loc_descriptor (XEXP (rtl, 0), GET_MODE (rtl));
8473       break;
8474
8475     case CONCAT:
8476       loc_result = concat_loc_descriptor (XEXP (rtl, 0), XEXP (rtl, 1));
8477       break;
8478
8479     default:
8480       abort ();
8481     }
8482
8483   return loc_result;
8484 }
8485
8486 /* Similar, but generate the descriptor from trees instead of rtl.  This comes
8487    up particularly with variable length arrays.  If ADDRESSP is nonzero, we are
8488    looking for an address.  Otherwise, we return a value.  If we can't make a
8489    descriptor, return 0.  */
8490
8491 static dw_loc_descr_ref
8492 loc_descriptor_from_tree (tree loc, int addressp)
8493 {
8494   dw_loc_descr_ref ret, ret1;
8495   int indirect_p = 0;
8496   int unsignedp = TREE_UNSIGNED (TREE_TYPE (loc));
8497   enum dwarf_location_atom op;
8498
8499   /* ??? Most of the time we do not take proper care for sign/zero
8500      extending the values properly.  Hopefully this won't be a real
8501      problem...  */
8502
8503   switch (TREE_CODE (loc))
8504     {
8505     case ERROR_MARK:
8506       return 0;
8507
8508     case WITH_RECORD_EXPR:
8509     case PLACEHOLDER_EXPR:
8510       /* This case involves extracting fields from an object to determine the
8511          position of other fields.  We don't try to encode this here.  The
8512          only user of this is Ada, which encodes the needed information using
8513          the names of types.  */
8514       return 0;
8515
8516     case CALL_EXPR:
8517       return 0;
8518
8519     case ADDR_EXPR:
8520       /* We can support this only if we can look through conversions and
8521          find an INDIRECT_EXPR.  */
8522       for (loc = TREE_OPERAND (loc, 0);
8523            TREE_CODE (loc) == CONVERT_EXPR || TREE_CODE (loc) == NOP_EXPR
8524            || TREE_CODE (loc) == NON_LVALUE_EXPR
8525            || TREE_CODE (loc) == VIEW_CONVERT_EXPR
8526            || TREE_CODE (loc) == SAVE_EXPR;
8527            loc = TREE_OPERAND (loc, 0))
8528         ;
8529
8530        return (TREE_CODE (loc) == INDIRECT_REF
8531                ? loc_descriptor_from_tree (TREE_OPERAND (loc, 0), addressp)
8532                : 0);
8533
8534     case VAR_DECL:
8535       if (DECL_THREAD_LOCAL (loc))
8536         {
8537           rtx rtl;
8538
8539 #ifndef ASM_OUTPUT_DWARF_DTPREL
8540           /* If this is not defined, we have no way to emit the data.  */
8541           return 0;
8542 #endif
8543
8544           /* The way DW_OP_GNU_push_tls_address is specified, we can only
8545              look up addresses of objects in the current module.  */
8546           if (DECL_EXTERNAL (loc))
8547             return 0;
8548
8549           rtl = rtl_for_decl_location (loc);
8550           if (rtl == NULL_RTX)
8551             return 0;
8552
8553           if (GET_CODE (rtl) != MEM)
8554             return 0;
8555           rtl = XEXP (rtl, 0);
8556           if (! CONSTANT_P (rtl))
8557             return 0;
8558
8559           ret = new_loc_descr (INTERNAL_DW_OP_tls_addr, 0, 0);
8560           ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
8561           ret->dw_loc_oprnd1.v.val_addr = rtl;
8562
8563           ret1 = new_loc_descr (DW_OP_GNU_push_tls_address, 0, 0);
8564           add_loc_descr (&ret, ret1);
8565
8566           indirect_p = 1;
8567           break;
8568         }
8569       /* Fall through.  */
8570
8571     case PARM_DECL:
8572       {
8573         rtx rtl = rtl_for_decl_location (loc);
8574
8575         if (rtl == NULL_RTX)
8576           return 0;
8577         else if (CONSTANT_P (rtl))
8578           {
8579             ret = new_loc_descr (DW_OP_addr, 0, 0);
8580             ret->dw_loc_oprnd1.val_class = dw_val_class_addr;
8581             ret->dw_loc_oprnd1.v.val_addr = rtl;
8582             indirect_p = 1;
8583           }
8584         else
8585           {
8586             enum machine_mode mode = GET_MODE (rtl);
8587
8588             if (GET_CODE (rtl) == MEM)
8589               {
8590                 indirect_p = 1;
8591                 rtl = XEXP (rtl, 0);
8592               }
8593
8594             ret = mem_loc_descriptor (rtl, mode);
8595           }
8596       }
8597       break;
8598
8599     case INDIRECT_REF:
8600       ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8601       indirect_p = 1;
8602       break;
8603
8604     case COMPOUND_EXPR:
8605       return loc_descriptor_from_tree (TREE_OPERAND (loc, 1), addressp);
8606
8607     case NOP_EXPR:
8608     case CONVERT_EXPR:
8609     case NON_LVALUE_EXPR:
8610     case VIEW_CONVERT_EXPR:
8611     case SAVE_EXPR:
8612     case MODIFY_EXPR:
8613       return loc_descriptor_from_tree (TREE_OPERAND (loc, 0), addressp);
8614
8615     case COMPONENT_REF:
8616     case BIT_FIELD_REF:
8617     case ARRAY_REF:
8618     case ARRAY_RANGE_REF:
8619       {
8620         tree obj, offset;
8621         HOST_WIDE_INT bitsize, bitpos, bytepos;
8622         enum machine_mode mode;
8623         int volatilep;
8624
8625         obj = get_inner_reference (loc, &bitsize, &bitpos, &offset, &mode,
8626                                    &unsignedp, &volatilep);
8627
8628         if (obj == loc)
8629           return 0;
8630
8631         ret = loc_descriptor_from_tree (obj, 1);
8632         if (ret == 0
8633             || bitpos % BITS_PER_UNIT != 0 || bitsize % BITS_PER_UNIT != 0)
8634           return 0;
8635
8636         if (offset != NULL_TREE)
8637           {
8638             /* Variable offset.  */
8639             add_loc_descr (&ret, loc_descriptor_from_tree (offset, 0));
8640             add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
8641           }
8642
8643         if (!addressp)
8644           indirect_p = 1;
8645
8646         bytepos = bitpos / BITS_PER_UNIT;
8647         if (bytepos > 0)
8648           add_loc_descr (&ret, new_loc_descr (DW_OP_plus_uconst, bytepos, 0));
8649         else if (bytepos < 0)
8650           {
8651             add_loc_descr (&ret, int_loc_descriptor (bytepos));
8652             add_loc_descr (&ret, new_loc_descr (DW_OP_plus, 0, 0));
8653           }
8654         break;
8655       }
8656
8657     case INTEGER_CST:
8658       if (host_integerp (loc, 0))
8659         ret = int_loc_descriptor (tree_low_cst (loc, 0));
8660       else
8661         return 0;
8662       break;
8663
8664     case CONSTRUCTOR:
8665       {
8666         /* Get an RTL for this, if something has been emitted.  */
8667         rtx rtl = lookup_constant_def (loc);
8668         enum machine_mode mode;
8669
8670         if (GET_CODE (rtl) != MEM)
8671           return 0;
8672         mode = GET_MODE (rtl);
8673         rtl = XEXP (rtl, 0);
8674
8675         rtl = (*targetm.delegitimize_address) (rtl);
8676
8677         indirect_p = 1;
8678         ret = mem_loc_descriptor (rtl, mode);
8679         break;
8680       }
8681
8682     case TRUTH_AND_EXPR:
8683     case TRUTH_ANDIF_EXPR:
8684     case BIT_AND_EXPR:
8685       op = DW_OP_and;
8686       goto do_binop;
8687
8688     case TRUTH_XOR_EXPR:
8689     case BIT_XOR_EXPR:
8690       op = DW_OP_xor;
8691       goto do_binop;
8692
8693     case TRUTH_OR_EXPR:
8694     case TRUTH_ORIF_EXPR:
8695     case BIT_IOR_EXPR:
8696       op = DW_OP_or;
8697       goto do_binop;
8698
8699     case FLOOR_DIV_EXPR:
8700     case CEIL_DIV_EXPR:
8701     case ROUND_DIV_EXPR:
8702     case TRUNC_DIV_EXPR:
8703       op = DW_OP_div;
8704       goto do_binop;
8705
8706     case MINUS_EXPR:
8707       op = DW_OP_minus;
8708       goto do_binop;
8709
8710     case FLOOR_MOD_EXPR:
8711     case CEIL_MOD_EXPR:
8712     case ROUND_MOD_EXPR:
8713     case TRUNC_MOD_EXPR:
8714       op = DW_OP_mod;
8715       goto do_binop;
8716
8717     case MULT_EXPR:
8718       op = DW_OP_mul;
8719       goto do_binop;
8720
8721     case LSHIFT_EXPR:
8722       op = DW_OP_shl;
8723       goto do_binop;
8724
8725     case RSHIFT_EXPR:
8726       op = (unsignedp ? DW_OP_shr : DW_OP_shra);
8727       goto do_binop;
8728
8729     case PLUS_EXPR:
8730       if (TREE_CODE (TREE_OPERAND (loc, 1)) == INTEGER_CST
8731           && host_integerp (TREE_OPERAND (loc, 1), 0))
8732         {
8733           ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8734           if (ret == 0)
8735             return 0;
8736
8737           add_loc_descr (&ret,
8738                          new_loc_descr (DW_OP_plus_uconst,
8739                                         tree_low_cst (TREE_OPERAND (loc, 1),
8740                                                       0),
8741                                         0));
8742           break;
8743         }
8744
8745       op = DW_OP_plus;
8746       goto do_binop;
8747
8748     case LE_EXPR:
8749       if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8750         return 0;
8751
8752       op = DW_OP_le;
8753       goto do_binop;
8754
8755     case GE_EXPR:
8756       if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8757         return 0;
8758
8759       op = DW_OP_ge;
8760       goto do_binop;
8761
8762     case LT_EXPR:
8763       if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8764         return 0;
8765
8766       op = DW_OP_lt;
8767       goto do_binop;
8768
8769     case GT_EXPR:
8770       if (TREE_UNSIGNED (TREE_TYPE (TREE_OPERAND (loc, 0))))
8771         return 0;
8772
8773       op = DW_OP_gt;
8774       goto do_binop;
8775
8776     case EQ_EXPR:
8777       op = DW_OP_eq;
8778       goto do_binop;
8779
8780     case NE_EXPR:
8781       op = DW_OP_ne;
8782       goto do_binop;
8783
8784     do_binop:
8785       ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8786       ret1 = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
8787       if (ret == 0 || ret1 == 0)
8788         return 0;
8789
8790       add_loc_descr (&ret, ret1);
8791       add_loc_descr (&ret, new_loc_descr (op, 0, 0));
8792       break;
8793
8794     case TRUTH_NOT_EXPR:
8795     case BIT_NOT_EXPR:
8796       op = DW_OP_not;
8797       goto do_unop;
8798
8799     case ABS_EXPR:
8800       op = DW_OP_abs;
8801       goto do_unop;
8802
8803     case NEGATE_EXPR:
8804       op = DW_OP_neg;
8805       goto do_unop;
8806
8807     do_unop:
8808       ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8809       if (ret == 0)
8810         return 0;
8811
8812       add_loc_descr (&ret, new_loc_descr (op, 0, 0));
8813       break;
8814
8815     case MAX_EXPR:
8816       loc = build (COND_EXPR, TREE_TYPE (loc),
8817                    build (LT_EXPR, integer_type_node,
8818                           TREE_OPERAND (loc, 0), TREE_OPERAND (loc, 1)),
8819                    TREE_OPERAND (loc, 1), TREE_OPERAND (loc, 0));
8820
8821       /* ... fall through ...  */
8822
8823     case COND_EXPR:
8824       {
8825         dw_loc_descr_ref lhs
8826           = loc_descriptor_from_tree (TREE_OPERAND (loc, 1), 0);
8827         dw_loc_descr_ref rhs
8828           = loc_descriptor_from_tree (TREE_OPERAND (loc, 2), 0);
8829         dw_loc_descr_ref bra_node, jump_node, tmp;
8830
8831         ret = loc_descriptor_from_tree (TREE_OPERAND (loc, 0), 0);
8832         if (ret == 0 || lhs == 0 || rhs == 0)
8833           return 0;
8834
8835         bra_node = new_loc_descr (DW_OP_bra, 0, 0);
8836         add_loc_descr (&ret, bra_node);
8837
8838         add_loc_descr (&ret, rhs);
8839         jump_node = new_loc_descr (DW_OP_skip, 0, 0);
8840         add_loc_descr (&ret, jump_node);
8841
8842         add_loc_descr (&ret, lhs);
8843         bra_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
8844         bra_node->dw_loc_oprnd1.v.val_loc = lhs;
8845
8846         /* ??? Need a node to point the skip at.  Use a nop.  */
8847         tmp = new_loc_descr (DW_OP_nop, 0, 0);
8848         add_loc_descr (&ret, tmp);
8849         jump_node->dw_loc_oprnd1.val_class = dw_val_class_loc;
8850         jump_node->dw_loc_oprnd1.v.val_loc = tmp;
8851       }
8852       break;
8853
8854     default:
8855       /* Leave front-end specific codes as simply unknown.  This comes
8856          up, for instance, with the C STMT_EXPR.  */
8857       if ((unsigned int) TREE_CODE (loc)
8858           >= (unsigned int) LAST_AND_UNUSED_TREE_CODE)
8859         return 0;
8860
8861       /* Otherwise this is a generic code; we should just lists all of
8862          these explicitly.  Aborting means we forgot one.  */
8863       abort ();
8864     }
8865
8866   /* Show if we can't fill the request for an address.  */
8867   if (addressp && indirect_p == 0)
8868     return 0;
8869
8870   /* If we've got an address and don't want one, dereference.  */
8871   if (!addressp && indirect_p > 0)
8872     {
8873       HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (loc));
8874
8875       if (size > DWARF2_ADDR_SIZE || size == -1)
8876         return 0;
8877       else if (size == DWARF2_ADDR_SIZE)
8878         op = DW_OP_deref;
8879       else
8880         op = DW_OP_deref_size;
8881
8882       add_loc_descr (&ret, new_loc_descr (op, size, 0));
8883     }
8884
8885   return ret;
8886 }
8887
8888 /* Given a value, round it up to the lowest multiple of `boundary'
8889    which is not less than the value itself.  */
8890
8891 static inline HOST_WIDE_INT
8892 ceiling (HOST_WIDE_INT value, unsigned int boundary)
8893 {
8894   return (((value + boundary - 1) / boundary) * boundary);
8895 }
8896
8897 /* Given a pointer to what is assumed to be a FIELD_DECL node, return a
8898    pointer to the declared type for the relevant field variable, or return
8899    `integer_type_node' if the given node turns out to be an
8900    ERROR_MARK node.  */
8901
8902 static inline tree
8903 field_type (tree decl)
8904 {
8905   tree type;
8906
8907   if (TREE_CODE (decl) == ERROR_MARK)
8908     return integer_type_node;
8909
8910   type = DECL_BIT_FIELD_TYPE (decl);
8911   if (type == NULL_TREE)
8912     type = TREE_TYPE (decl);
8913
8914   return type;
8915 }
8916
8917 /* Given a pointer to a tree node, return the alignment in bits for
8918    it, or else return BITS_PER_WORD if the node actually turns out to
8919    be an ERROR_MARK node.  */
8920
8921 static inline unsigned
8922 simple_type_align_in_bits (tree type)
8923 {
8924   return (TREE_CODE (type) != ERROR_MARK) ? TYPE_ALIGN (type) : BITS_PER_WORD;
8925 }
8926
8927 static inline unsigned
8928 simple_decl_align_in_bits (tree decl)
8929 {
8930   return (TREE_CODE (decl) != ERROR_MARK) ? DECL_ALIGN (decl) : BITS_PER_WORD;
8931 }
8932
8933 /* Given a pointer to a FIELD_DECL, compute and return the byte offset of the
8934    lowest addressed byte of the "containing object" for the given FIELD_DECL,
8935    or return 0 if we are unable to determine what that offset is, either
8936    because the argument turns out to be a pointer to an ERROR_MARK node, or
8937    because the offset is actually variable.  (We can't handle the latter case
8938    just yet).  */
8939
8940 static HOST_WIDE_INT
8941 field_byte_offset (tree decl)
8942 {
8943   unsigned int type_align_in_bits;
8944   unsigned int decl_align_in_bits;
8945   unsigned HOST_WIDE_INT type_size_in_bits;
8946   HOST_WIDE_INT object_offset_in_bits;
8947   tree type;
8948   tree field_size_tree;
8949   HOST_WIDE_INT bitpos_int;
8950   HOST_WIDE_INT deepest_bitpos;
8951   unsigned HOST_WIDE_INT field_size_in_bits;
8952
8953   if (TREE_CODE (decl) == ERROR_MARK)
8954     return 0;
8955   else if (TREE_CODE (decl) != FIELD_DECL)
8956     abort ();
8957
8958   type = field_type (decl);
8959   field_size_tree = DECL_SIZE (decl);
8960
8961   /* The size could be unspecified if there was an error, or for
8962      a flexible array member.  */
8963   if (! field_size_tree)
8964     field_size_tree = bitsize_zero_node;
8965
8966   /* We cannot yet cope with fields whose positions are variable, so
8967      for now, when we see such things, we simply return 0.  Someday, we may
8968      be able to handle such cases, but it will be damn difficult.  */
8969   if (! host_integerp (bit_position (decl), 0))
8970     return 0;
8971
8972   bitpos_int = int_bit_position (decl);
8973
8974   /* If we don't know the size of the field, pretend it's a full word.  */
8975   if (host_integerp (field_size_tree, 1))
8976     field_size_in_bits = tree_low_cst (field_size_tree, 1);
8977   else
8978     field_size_in_bits = BITS_PER_WORD;
8979
8980   type_size_in_bits = simple_type_size_in_bits (type);
8981   type_align_in_bits = simple_type_align_in_bits (type);
8982   decl_align_in_bits = simple_decl_align_in_bits (decl);
8983
8984   /* The GCC front-end doesn't make any attempt to keep track of the starting
8985      bit offset (relative to the start of the containing structure type) of the
8986      hypothetical "containing object" for a bit-field.  Thus, when computing
8987      the byte offset value for the start of the "containing object" of a
8988      bit-field, we must deduce this information on our own. This can be rather
8989      tricky to do in some cases.  For example, handling the following structure
8990      type definition when compiling for an i386/i486 target (which only aligns
8991      long long's to 32-bit boundaries) can be very tricky:
8992
8993          struct S { int field1; long long field2:31; };
8994
8995      Fortunately, there is a simple rule-of-thumb which can be used in such
8996      cases.  When compiling for an i386/i486, GCC will allocate 8 bytes for the
8997      structure shown above.  It decides to do this based upon one simple rule
8998      for bit-field allocation.  GCC allocates each "containing object" for each
8999      bit-field at the first (i.e. lowest addressed) legitimate alignment
9000      boundary (based upon the required minimum alignment for the declared type
9001      of the field) which it can possibly use, subject to the condition that
9002      there is still enough available space remaining in the containing object
9003      (when allocated at the selected point) to fully accommodate all of the
9004      bits of the bit-field itself.
9005
9006      This simple rule makes it obvious why GCC allocates 8 bytes for each
9007      object of the structure type shown above.  When looking for a place to
9008      allocate the "containing object" for `field2', the compiler simply tries
9009      to allocate a 64-bit "containing object" at each successive 32-bit
9010      boundary (starting at zero) until it finds a place to allocate that 64-
9011      bit field such that at least 31 contiguous (and previously unallocated)
9012      bits remain within that selected 64 bit field.  (As it turns out, for the
9013      example above, the compiler finds it is OK to allocate the "containing
9014      object" 64-bit field at bit-offset zero within the structure type.)
9015
9016      Here we attempt to work backwards from the limited set of facts we're
9017      given, and we try to deduce from those facts, where GCC must have believed
9018      that the containing object started (within the structure type). The value
9019      we deduce is then used (by the callers of this routine) to generate
9020      DW_AT_location and DW_AT_bit_offset attributes for fields (both bit-fields
9021      and, in the case of DW_AT_location, regular fields as well).  */
9022
9023   /* Figure out the bit-distance from the start of the structure to the
9024      "deepest" bit of the bit-field.  */
9025   deepest_bitpos = bitpos_int + field_size_in_bits;
9026
9027   /* This is the tricky part.  Use some fancy footwork to deduce where the
9028      lowest addressed bit of the containing object must be.  */
9029   object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9030
9031   /* Round up to type_align by default.  This works best for bitfields.  */
9032   object_offset_in_bits += type_align_in_bits - 1;
9033   object_offset_in_bits /= type_align_in_bits;
9034   object_offset_in_bits *= type_align_in_bits;
9035
9036   if (object_offset_in_bits > bitpos_int)
9037     {
9038       /* Sigh, the decl must be packed.  */
9039       object_offset_in_bits = deepest_bitpos - type_size_in_bits;
9040
9041       /* Round up to decl_align instead.  */
9042       object_offset_in_bits += decl_align_in_bits - 1;
9043       object_offset_in_bits /= decl_align_in_bits;
9044       object_offset_in_bits *= decl_align_in_bits;
9045     }
9046
9047   return object_offset_in_bits / BITS_PER_UNIT;
9048 }
9049 \f
9050 /* The following routines define various Dwarf attributes and any data
9051    associated with them.  */
9052
9053 /* Add a location description attribute value to a DIE.
9054
9055    This emits location attributes suitable for whole variables and
9056    whole parameters.  Note that the location attributes for struct fields are
9057    generated by the routine `data_member_location_attribute' below.  */
9058
9059 static inline void
9060 add_AT_location_description (dw_die_ref die, enum dwarf_attribute attr_kind,
9061                              dw_loc_descr_ref descr)
9062 {
9063   if (descr != 0)
9064     add_AT_loc (die, attr_kind, descr);
9065 }
9066
9067 /* Attach the specialized form of location attribute used for data members of
9068    struct and union types.  In the special case of a FIELD_DECL node which
9069    represents a bit-field, the "offset" part of this special location
9070    descriptor must indicate the distance in bytes from the lowest-addressed
9071    byte of the containing struct or union type to the lowest-addressed byte of
9072    the "containing object" for the bit-field.  (See the `field_byte_offset'
9073    function above).
9074
9075    For any given bit-field, the "containing object" is a hypothetical object
9076    (of some integral or enum type) within which the given bit-field lives.  The
9077    type of this hypothetical "containing object" is always the same as the
9078    declared type of the individual bit-field itself (for GCC anyway... the
9079    DWARF spec doesn't actually mandate this).  Note that it is the size (in
9080    bytes) of the hypothetical "containing object" which will be given in the
9081    DW_AT_byte_size attribute for this bit-field.  (See the
9082    `byte_size_attribute' function below.)  It is also used when calculating the
9083    value of the DW_AT_bit_offset attribute.  (See the `bit_offset_attribute'
9084    function below.)  */
9085
9086 static void
9087 add_data_member_location_attribute (dw_die_ref die, tree decl)
9088 {
9089   HOST_WIDE_INT offset;
9090   dw_loc_descr_ref loc_descr = 0;
9091
9092   if (TREE_CODE (decl) == TREE_VEC)
9093     {
9094       /* We're working on the TAG_inheritance for a base class.  */
9095       if (TREE_VIA_VIRTUAL (decl) && is_cxx ())
9096         {
9097           /* For C++ virtual bases we can't just use BINFO_OFFSET, as they
9098              aren't at a fixed offset from all (sub)objects of the same
9099              type.  We need to extract the appropriate offset from our
9100              vtable.  The following dwarf expression means
9101
9102                BaseAddr = ObAddr + *((*ObAddr) - Offset)
9103
9104              This is specific to the V3 ABI, of course.  */
9105
9106           dw_loc_descr_ref tmp;
9107
9108           /* Make a copy of the object address.  */
9109           tmp = new_loc_descr (DW_OP_dup, 0, 0);
9110           add_loc_descr (&loc_descr, tmp);
9111
9112           /* Extract the vtable address.  */
9113           tmp = new_loc_descr (DW_OP_deref, 0, 0);
9114           add_loc_descr (&loc_descr, tmp);
9115
9116           /* Calculate the address of the offset.  */
9117           offset = tree_low_cst (BINFO_VPTR_FIELD (decl), 0);
9118           if (offset >= 0)
9119             abort ();
9120
9121           tmp = int_loc_descriptor (-offset);
9122           add_loc_descr (&loc_descr, tmp);
9123           tmp = new_loc_descr (DW_OP_minus, 0, 0);
9124           add_loc_descr (&loc_descr, tmp);
9125
9126           /* Extract the offset.  */
9127           tmp = new_loc_descr (DW_OP_deref, 0, 0);
9128           add_loc_descr (&loc_descr, tmp);
9129
9130           /* Add it to the object address.  */
9131           tmp = new_loc_descr (DW_OP_plus, 0, 0);
9132           add_loc_descr (&loc_descr, tmp);
9133         }
9134       else
9135         offset = tree_low_cst (BINFO_OFFSET (decl), 0);
9136     }
9137   else
9138     offset = field_byte_offset (decl);
9139
9140   if (! loc_descr)
9141     {
9142       enum dwarf_location_atom op;
9143
9144       /* The DWARF2 standard says that we should assume that the structure
9145          address is already on the stack, so we can specify a structure field
9146          address by using DW_OP_plus_uconst.  */
9147
9148 #ifdef MIPS_DEBUGGING_INFO
9149       /* ??? The SGI dwarf reader does not handle the DW_OP_plus_uconst
9150          operator correctly.  It works only if we leave the offset on the
9151          stack.  */
9152       op = DW_OP_constu;
9153 #else
9154       op = DW_OP_plus_uconst;
9155 #endif
9156
9157       loc_descr = new_loc_descr (op, offset, 0);
9158     }
9159
9160   add_AT_loc (die, DW_AT_data_member_location, loc_descr);
9161 }
9162
9163 /* Attach a DW_AT_const_value attribute for a variable or a parameter which
9164    does not have a "location" either in memory or in a register.  These
9165    things can arise in GNU C when a constant is passed as an actual parameter
9166    to an inlined function.  They can also arise in C++ where declared
9167    constants do not necessarily get memory "homes".  */
9168
9169 static void
9170 add_const_value_attribute (dw_die_ref die, rtx rtl)
9171 {
9172   switch (GET_CODE (rtl))
9173     {
9174     case CONST_INT:
9175       {
9176         HOST_WIDE_INT val = INTVAL (rtl);
9177
9178         if (val < 0)
9179           add_AT_int (die, DW_AT_const_value, val);
9180         else 
9181           add_AT_unsigned (die, DW_AT_const_value, (unsigned HOST_WIDE_INT) val);
9182       }
9183       break;
9184
9185     case CONST_DOUBLE:
9186       /* Note that a CONST_DOUBLE rtx could represent either an integer or a
9187          floating-point constant.  A CONST_DOUBLE is used whenever the
9188          constant requires more than one word in order to be adequately
9189          represented.  We output CONST_DOUBLEs as blocks.  */
9190       {
9191         enum machine_mode mode = GET_MODE (rtl);
9192
9193         if (GET_MODE_CLASS (mode) == MODE_FLOAT)
9194           {
9195             unsigned length = GET_MODE_SIZE (mode) / 4;
9196             long *array = ggc_alloc (sizeof (long) * length);
9197             REAL_VALUE_TYPE rv;
9198
9199             REAL_VALUE_FROM_CONST_DOUBLE (rv, rtl);
9200             real_to_target (array, &rv, mode);
9201
9202             add_AT_float (die, DW_AT_const_value, length, array);
9203           }
9204         else
9205           {
9206             /* ??? We really should be using HOST_WIDE_INT throughout.  */
9207             if (HOST_BITS_PER_LONG != HOST_BITS_PER_WIDE_INT)
9208               abort ();
9209
9210             add_AT_long_long (die, DW_AT_const_value,
9211                               CONST_DOUBLE_HIGH (rtl), CONST_DOUBLE_LOW (rtl));
9212           }
9213       }
9214       break;
9215
9216     case CONST_STRING:
9217       add_AT_string (die, DW_AT_const_value, XSTR (rtl, 0));
9218       break;
9219
9220     case SYMBOL_REF:
9221     case LABEL_REF:
9222     case CONST:
9223       add_AT_addr (die, DW_AT_const_value, rtl);
9224       VARRAY_PUSH_RTX (used_rtx_varray, rtl);
9225       break;
9226
9227     case PLUS:
9228       /* In cases where an inlined instance of an inline function is passed
9229          the address of an `auto' variable (which is local to the caller) we
9230          can get a situation where the DECL_RTL of the artificial local
9231          variable (for the inlining) which acts as a stand-in for the
9232          corresponding formal parameter (of the inline function) will look
9233          like (plus:SI (reg:SI FRAME_PTR) (const_int ...)).  This is not
9234          exactly a compile-time constant expression, but it isn't the address
9235          of the (artificial) local variable either.  Rather, it represents the
9236          *value* which the artificial local variable always has during its
9237          lifetime.  We currently have no way to represent such quasi-constant
9238          values in Dwarf, so for now we just punt and generate nothing.  */
9239       break;
9240
9241     default:
9242       /* No other kinds of rtx should be possible here.  */
9243       abort ();
9244     }
9245
9246 }
9247
9248 static rtx
9249 rtl_for_decl_location (tree decl)
9250 {
9251   rtx rtl;
9252
9253   /* Here we have to decide where we are going to say the parameter "lives"
9254      (as far as the debugger is concerned).  We only have a couple of
9255      choices.  GCC provides us with DECL_RTL and with DECL_INCOMING_RTL.
9256
9257      DECL_RTL normally indicates where the parameter lives during most of the
9258      activation of the function.  If optimization is enabled however, this
9259      could be either NULL or else a pseudo-reg.  Both of those cases indicate
9260      that the parameter doesn't really live anywhere (as far as the code
9261      generation parts of GCC are concerned) during most of the function's
9262      activation.  That will happen (for example) if the parameter is never
9263      referenced within the function.
9264
9265      We could just generate a location descriptor here for all non-NULL
9266      non-pseudo values of DECL_RTL and ignore all of the rest, but we can be
9267      a little nicer than that if we also consider DECL_INCOMING_RTL in cases
9268      where DECL_RTL is NULL or is a pseudo-reg.
9269
9270      Note however that we can only get away with using DECL_INCOMING_RTL as
9271      a backup substitute for DECL_RTL in certain limited cases.  In cases
9272      where DECL_ARG_TYPE (decl) indicates the same type as TREE_TYPE (decl),
9273      we can be sure that the parameter was passed using the same type as it is
9274      declared to have within the function, and that its DECL_INCOMING_RTL
9275      points us to a place where a value of that type is passed.
9276
9277      In cases where DECL_ARG_TYPE (decl) and TREE_TYPE (decl) are different,
9278      we cannot (in general) use DECL_INCOMING_RTL as a substitute for DECL_RTL
9279      because in these cases DECL_INCOMING_RTL points us to a value of some
9280      type which is *different* from the type of the parameter itself.  Thus,
9281      if we tried to use DECL_INCOMING_RTL to generate a location attribute in
9282      such cases, the debugger would end up (for example) trying to fetch a
9283      `float' from a place which actually contains the first part of a
9284      `double'.  That would lead to really incorrect and confusing
9285      output at debug-time.
9286
9287      So, in general, we *do not* use DECL_INCOMING_RTL as a backup for DECL_RTL
9288      in cases where DECL_ARG_TYPE (decl) != TREE_TYPE (decl).  There
9289      are a couple of exceptions however.  On little-endian machines we can
9290      get away with using DECL_INCOMING_RTL even when DECL_ARG_TYPE (decl) is
9291      not the same as TREE_TYPE (decl), but only when DECL_ARG_TYPE (decl) is
9292      an integral type that is smaller than TREE_TYPE (decl). These cases arise
9293      when (on a little-endian machine) a non-prototyped function has a
9294      parameter declared to be of type `short' or `char'.  In such cases,
9295      TREE_TYPE (decl) will be `short' or `char', DECL_ARG_TYPE (decl) will
9296      be `int', and DECL_INCOMING_RTL will point to the lowest-order byte of the
9297      passed `int' value.  If the debugger then uses that address to fetch
9298      a `short' or a `char' (on a little-endian machine) the result will be
9299      the correct data, so we allow for such exceptional cases below.
9300
9301      Note that our goal here is to describe the place where the given formal
9302      parameter lives during most of the function's activation (i.e. between the
9303      end of the prologue and the start of the epilogue).  We'll do that as best
9304      as we can. Note however that if the given formal parameter is modified
9305      sometime during the execution of the function, then a stack backtrace (at
9306      debug-time) will show the function as having been called with the *new*
9307      value rather than the value which was originally passed in.  This happens
9308      rarely enough that it is not a major problem, but it *is* a problem, and
9309      I'd like to fix it.
9310
9311      A future version of dwarf2out.c may generate two additional attributes for
9312      any given DW_TAG_formal_parameter DIE which will describe the "passed
9313      type" and the "passed location" for the given formal parameter in addition
9314      to the attributes we now generate to indicate the "declared type" and the
9315      "active location" for each parameter.  This additional set of attributes
9316      could be used by debuggers for stack backtraces. Separately, note that
9317      sometimes DECL_RTL can be NULL and DECL_INCOMING_RTL can be NULL also.
9318      This happens (for example) for inlined-instances of inline function formal
9319      parameters which are never referenced.  This really shouldn't be
9320      happening.  All PARM_DECL nodes should get valid non-NULL
9321      DECL_INCOMING_RTL values, but integrate.c doesn't currently generate these
9322      values for inlined instances of inline function parameters, so when we see
9323      such cases, we are just out-of-luck for the time being (until integrate.c
9324      gets fixed).  */
9325
9326   /* Use DECL_RTL as the "location" unless we find something better.  */
9327   rtl = DECL_RTL_IF_SET (decl);
9328
9329   /* When generating abstract instances, ignore everything except
9330      constants, symbols living in memory, and symbols living in
9331      fixed registers.  */
9332   if (! reload_completed)
9333     {
9334       if (rtl
9335           && (CONSTANT_P (rtl)
9336               || (GET_CODE (rtl) == MEM
9337                   && CONSTANT_P (XEXP (rtl, 0)))
9338               || (GET_CODE (rtl) == REG
9339                   && TREE_CODE (decl) == VAR_DECL
9340                   && TREE_STATIC (decl))))
9341         {
9342           rtl = (*targetm.delegitimize_address) (rtl);
9343           return rtl;
9344         }
9345       rtl = NULL_RTX;
9346     }
9347   else if (TREE_CODE (decl) == PARM_DECL)
9348     {
9349       if (rtl == NULL_RTX || is_pseudo_reg (rtl))
9350         {
9351           tree declared_type = type_main_variant (TREE_TYPE (decl));
9352           tree passed_type = type_main_variant (DECL_ARG_TYPE (decl));
9353
9354           /* This decl represents a formal parameter which was optimized out.
9355              Note that DECL_INCOMING_RTL may be NULL in here, but we handle
9356              all cases where (rtl == NULL_RTX) just below.  */
9357           if (declared_type == passed_type)
9358             rtl = DECL_INCOMING_RTL (decl);
9359           else if (! BYTES_BIG_ENDIAN
9360                    && TREE_CODE (declared_type) == INTEGER_TYPE
9361                    && (GET_MODE_SIZE (TYPE_MODE (declared_type))
9362                        <= GET_MODE_SIZE (TYPE_MODE (passed_type))))
9363             rtl = DECL_INCOMING_RTL (decl);
9364         }
9365
9366       /* If the parm was passed in registers, but lives on the stack, then
9367          make a big endian correction if the mode of the type of the
9368          parameter is not the same as the mode of the rtl.  */
9369       /* ??? This is the same series of checks that are made in dbxout.c before
9370          we reach the big endian correction code there.  It isn't clear if all
9371          of these checks are necessary here, but keeping them all is the safe
9372          thing to do.  */
9373       else if (GET_CODE (rtl) == MEM
9374                && XEXP (rtl, 0) != const0_rtx
9375                && ! CONSTANT_P (XEXP (rtl, 0))
9376                /* Not passed in memory.  */
9377                && GET_CODE (DECL_INCOMING_RTL (decl)) != MEM
9378                /* Not passed by invisible reference.  */
9379                && (GET_CODE (XEXP (rtl, 0)) != REG
9380                    || REGNO (XEXP (rtl, 0)) == HARD_FRAME_POINTER_REGNUM
9381                    || REGNO (XEXP (rtl, 0)) == STACK_POINTER_REGNUM
9382 #if ARG_POINTER_REGNUM != HARD_FRAME_POINTER_REGNUM
9383                    || REGNO (XEXP (rtl, 0)) == ARG_POINTER_REGNUM
9384 #endif
9385                      )
9386                /* Big endian correction check.  */
9387                && BYTES_BIG_ENDIAN
9388                && TYPE_MODE (TREE_TYPE (decl)) != GET_MODE (rtl)
9389                && (GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl)))
9390                    < UNITS_PER_WORD))
9391         {
9392           int offset = (UNITS_PER_WORD
9393                         - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (decl))));
9394
9395           rtl = gen_rtx_MEM (TYPE_MODE (TREE_TYPE (decl)),
9396                              plus_constant (XEXP (rtl, 0), offset));
9397         }
9398     }
9399
9400   if (rtl != NULL_RTX)
9401     {
9402       rtl = eliminate_regs (rtl, 0, NULL_RTX);
9403 #ifdef LEAF_REG_REMAP
9404       if (current_function_uses_only_leaf_regs)
9405         leaf_renumber_regs_insn (rtl);
9406 #endif
9407     }
9408
9409   /* A variable with no DECL_RTL but a DECL_INITIAL is a compile-time constant,
9410      and will have been substituted directly into all expressions that use it.
9411      C does not have such a concept, but C++ and other languages do.  */
9412   else if (TREE_CODE (decl) == VAR_DECL && DECL_INITIAL (decl))
9413     {
9414       /* If a variable is initialized with a string constant without embedded
9415          zeros, build CONST_STRING.  */
9416       if (TREE_CODE (DECL_INITIAL (decl)) == STRING_CST
9417           && TREE_CODE (TREE_TYPE (decl)) == ARRAY_TYPE)
9418         {
9419           tree arrtype = TREE_TYPE (decl);
9420           tree enttype = TREE_TYPE (arrtype);
9421           tree domain = TYPE_DOMAIN (arrtype);
9422           tree init = DECL_INITIAL (decl);
9423           enum machine_mode mode = TYPE_MODE (enttype);
9424
9425           if (GET_MODE_CLASS (mode) == MODE_INT && GET_MODE_SIZE (mode) == 1
9426               && domain
9427               && integer_zerop (TYPE_MIN_VALUE (domain))
9428               && compare_tree_int (TYPE_MAX_VALUE (domain),
9429                                    TREE_STRING_LENGTH (init) - 1) == 0
9430               && ((size_t) TREE_STRING_LENGTH (init)
9431                   == strlen (TREE_STRING_POINTER (init)) + 1))
9432             rtl = gen_rtx_CONST_STRING (VOIDmode, TREE_STRING_POINTER (init));
9433         }
9434       /* If the initializer is something that we know will expand into an
9435          immediate RTL constant, expand it now.  Expanding anything else
9436          tends to produce unresolved symbols; see debug/5770 and c++/6381.  */
9437       else if (TREE_CODE (DECL_INITIAL (decl)) == INTEGER_CST
9438                || TREE_CODE (DECL_INITIAL (decl)) == REAL_CST)
9439         {
9440           rtl = expand_expr (DECL_INITIAL (decl), NULL_RTX, VOIDmode,
9441                              EXPAND_INITIALIZER);
9442           /* If expand_expr returns a MEM, it wasn't immediate.  */
9443           if (rtl && GET_CODE (rtl) == MEM)
9444             abort ();
9445         }
9446     }
9447
9448   if (rtl)
9449     rtl = (*targetm.delegitimize_address) (rtl);
9450
9451   /* If we don't look past the constant pool, we risk emitting a
9452      reference to a constant pool entry that isn't referenced from
9453      code, and thus is not emitted.  */
9454   if (rtl)
9455     rtl = avoid_constant_pool_reference (rtl);
9456
9457   return rtl;
9458 }
9459
9460 /* Generate *either* a DW_AT_location attribute or else a DW_AT_const_value
9461    data attribute for a variable or a parameter.  We generate the
9462    DW_AT_const_value attribute only in those cases where the given variable
9463    or parameter does not have a true "location" either in memory or in a
9464    register.  This can happen (for example) when a constant is passed as an
9465    actual argument in a call to an inline function.  (It's possible that
9466    these things can crop up in other ways also.)  Note that one type of
9467    constant value which can be passed into an inlined function is a constant
9468    pointer.  This can happen for example if an actual argument in an inlined
9469    function call evaluates to a compile-time constant address.  */
9470
9471 static void
9472 add_location_or_const_value_attribute (dw_die_ref die, tree decl)
9473 {
9474   rtx rtl;
9475   dw_loc_descr_ref descr;
9476
9477   if (TREE_CODE (decl) == ERROR_MARK)
9478     return;
9479   else if (TREE_CODE (decl) != VAR_DECL && TREE_CODE (decl) != PARM_DECL)
9480     abort ();
9481
9482   rtl = rtl_for_decl_location (decl);
9483   if (rtl == NULL_RTX)
9484     return;
9485
9486   switch (GET_CODE (rtl))
9487     {
9488     case ADDRESSOF:
9489       /* The address of a variable that was optimized away;
9490          don't emit anything.  */
9491       break;
9492
9493     case CONST_INT:
9494     case CONST_DOUBLE:
9495     case CONST_STRING:
9496     case SYMBOL_REF:
9497     case LABEL_REF:
9498     case CONST:
9499     case PLUS:
9500       /* DECL_RTL could be (plus (reg ...) (const_int ...)) */
9501       add_const_value_attribute (die, rtl);
9502       break;
9503
9504     case MEM:
9505       if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
9506         {
9507           /* Need loc_descriptor_from_tree since that's where we know
9508              how to handle TLS variables.  Want the object's address
9509              since the top-level DW_AT_location assumes such.  See
9510              the confusion in loc_descriptor for reference.  */
9511           descr = loc_descriptor_from_tree (decl, 1);
9512         }
9513       else
9514         {
9515         case REG:
9516         case SUBREG:
9517         case CONCAT:
9518           descr = loc_descriptor (rtl);
9519         }
9520       add_AT_location_description (die, DW_AT_location, descr);
9521       break;
9522
9523     case PARALLEL:
9524       {
9525         rtvec par_elems = XVEC (rtl, 0);
9526         int num_elem = GET_NUM_ELEM (par_elems);
9527         enum machine_mode mode;
9528         int i;
9529
9530         /* Create the first one, so we have something to add to.  */
9531         descr = loc_descriptor (XEXP (RTVEC_ELT (par_elems, 0), 0));
9532         mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, 0), 0));
9533         add_loc_descr (&descr,
9534                        new_loc_descr (DW_OP_piece, GET_MODE_SIZE (mode), 0));
9535         for (i = 1; i < num_elem; i++)
9536           {
9537             dw_loc_descr_ref temp;
9538
9539             temp = loc_descriptor (XEXP (RTVEC_ELT (par_elems, i), 0));
9540             add_loc_descr (&descr, temp);
9541             mode = GET_MODE (XEXP (RTVEC_ELT (par_elems, i), 0));
9542             add_loc_descr (&descr,
9543                            new_loc_descr (DW_OP_piece,
9544                                           GET_MODE_SIZE (mode), 0));
9545           }
9546       }
9547       add_AT_location_description (die, DW_AT_location, descr);
9548       break;
9549
9550     default:
9551       abort ();
9552     }
9553 }
9554
9555 /* If we don't have a copy of this variable in memory for some reason (such
9556    as a C++ member constant that doesn't have an out-of-line definition),
9557    we should tell the debugger about the constant value.  */
9558
9559 static void
9560 tree_add_const_value_attribute (dw_die_ref var_die, tree decl)
9561 {
9562   tree init = DECL_INITIAL (decl);
9563   tree type = TREE_TYPE (decl);
9564
9565   if (TREE_READONLY (decl) && ! TREE_THIS_VOLATILE (decl) && init
9566       && initializer_constant_valid_p (init, type) == null_pointer_node)
9567     /* OK */;
9568   else
9569     return;
9570
9571   switch (TREE_CODE (type))
9572     {
9573     case INTEGER_TYPE:
9574       if (host_integerp (init, 0))
9575         add_AT_unsigned (var_die, DW_AT_const_value,
9576                          tree_low_cst (init, 0));
9577       else
9578         add_AT_long_long (var_die, DW_AT_const_value,
9579                           TREE_INT_CST_HIGH (init),
9580                           TREE_INT_CST_LOW (init));
9581       break;
9582
9583     default:;
9584     }
9585 }
9586
9587 /* Generate a DW_AT_name attribute given some string value to be included as
9588    the value of the attribute.  */
9589
9590 static void
9591 add_name_attribute (dw_die_ref die, const char *name_string)
9592 {
9593   if (name_string != NULL && *name_string != 0)
9594     {
9595       if (demangle_name_func)
9596         name_string = (*demangle_name_func) (name_string);
9597
9598       add_AT_string (die, DW_AT_name, name_string);
9599     }
9600 }
9601
9602 /* Generate a DW_AT_comp_dir attribute for DIE.  */
9603
9604 static void
9605 add_comp_dir_attribute (dw_die_ref die)
9606 {
9607   const char *wd = get_src_pwd ();
9608   if (wd != NULL)
9609     add_AT_string (die, DW_AT_comp_dir, wd);
9610 }
9611
9612 /* Given a tree node describing an array bound (either lower or upper) output
9613    a representation for that bound.  */
9614
9615 static void
9616 add_bound_info (dw_die_ref subrange_die, enum dwarf_attribute bound_attr, tree bound)
9617 {
9618   switch (TREE_CODE (bound))
9619     {
9620     case ERROR_MARK:
9621       return;
9622
9623     /* All fixed-bounds are represented by INTEGER_CST nodes.  */
9624     case INTEGER_CST:
9625       if (! host_integerp (bound, 0)
9626           || (bound_attr == DW_AT_lower_bound
9627               && (((is_c_family () || is_java ()) &&  integer_zerop (bound))
9628                   || (is_fortran () && integer_onep (bound)))))
9629         /* use the default */
9630         ;
9631       else
9632         add_AT_unsigned (subrange_die, bound_attr, tree_low_cst (bound, 0));
9633       break;
9634
9635     case CONVERT_EXPR:
9636     case NOP_EXPR:
9637     case NON_LVALUE_EXPR:
9638     case VIEW_CONVERT_EXPR:
9639       add_bound_info (subrange_die, bound_attr, TREE_OPERAND (bound, 0));
9640       break;
9641
9642     case SAVE_EXPR:
9643       /* If optimization is turned on, the SAVE_EXPRs that describe how to
9644          access the upper bound values may be bogus.  If they refer to a
9645          register, they may only describe how to get at these values at the
9646          points in the generated code right after they have just been
9647          computed.  Worse yet, in the typical case, the upper bound values
9648          will not even *be* computed in the optimized code (though the
9649          number of elements will), so these SAVE_EXPRs are entirely
9650          bogus. In order to compensate for this fact, we check here to see
9651          if optimization is enabled, and if so, we don't add an attribute
9652          for the (unknown and unknowable) upper bound.  This should not
9653          cause too much trouble for existing (stupid?)  debuggers because
9654          they have to deal with empty upper bounds location descriptions
9655          anyway in order to be able to deal with incomplete array types.
9656          Of course an intelligent debugger (GDB?)  should be able to
9657          comprehend that a missing upper bound specification in an array
9658          type used for a storage class `auto' local array variable
9659          indicates that the upper bound is both unknown (at compile- time)
9660          and unknowable (at run-time) due to optimization.
9661
9662          We assume that a MEM rtx is safe because gcc wouldn't put the
9663          value there unless it was going to be used repeatedly in the
9664          function, i.e. for cleanups.  */
9665       if (SAVE_EXPR_RTL (bound)
9666           && (! optimize || GET_CODE (SAVE_EXPR_RTL (bound)) == MEM))
9667         {
9668           dw_die_ref ctx = lookup_decl_die (current_function_decl);
9669           dw_die_ref decl_die = new_die (DW_TAG_variable, ctx, bound);
9670           rtx loc = SAVE_EXPR_RTL (bound);
9671
9672           /* If the RTL for the SAVE_EXPR is memory, handle the case where
9673              it references an outer function's frame.  */
9674           if (GET_CODE (loc) == MEM)
9675             {
9676               rtx new_addr = fix_lexical_addr (XEXP (loc, 0), bound);
9677
9678               if (XEXP (loc, 0) != new_addr)
9679                 loc = gen_rtx_MEM (GET_MODE (loc), new_addr);
9680             }
9681
9682           add_AT_flag (decl_die, DW_AT_artificial, 1);
9683           add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
9684           add_AT_location_description (decl_die, DW_AT_location,
9685                                        loc_descriptor (loc));
9686           add_AT_die_ref (subrange_die, bound_attr, decl_die);
9687         }
9688
9689       /* Else leave out the attribute.  */
9690       break;
9691
9692     case VAR_DECL:
9693     case PARM_DECL:
9694       {
9695         dw_die_ref decl_die = lookup_decl_die (bound);
9696
9697         /* ??? Can this happen, or should the variable have been bound
9698            first?  Probably it can, since I imagine that we try to create
9699            the types of parameters in the order in which they exist in
9700            the list, and won't have created a forward reference to a
9701            later parameter.  */
9702         if (decl_die != NULL)
9703           add_AT_die_ref (subrange_die, bound_attr, decl_die);
9704         break;
9705       }
9706
9707     default:
9708       {
9709         /* Otherwise try to create a stack operation procedure to
9710            evaluate the value of the array bound.  */
9711
9712         dw_die_ref ctx, decl_die;
9713         dw_loc_descr_ref loc;
9714
9715         loc = loc_descriptor_from_tree (bound, 0);
9716         if (loc == NULL)
9717           break;
9718
9719         if (current_function_decl == 0)
9720           ctx = comp_unit_die;
9721         else
9722           ctx = lookup_decl_die (current_function_decl);
9723
9724         /* If we weren't able to find a context, it's most likely the case
9725            that we are processing the return type of the function.  So
9726            make a SAVE_EXPR to point to it and have the limbo DIE code
9727            find the proper die.  The save_expr function doesn't always
9728            make a SAVE_EXPR, so do it ourselves.  */
9729         if (ctx == 0)
9730           bound = build (SAVE_EXPR, TREE_TYPE (bound), bound,
9731                          current_function_decl, NULL_TREE);
9732
9733         decl_die = new_die (DW_TAG_variable, ctx, bound);
9734         add_AT_flag (decl_die, DW_AT_artificial, 1);
9735         add_type_attribute (decl_die, TREE_TYPE (bound), 1, 0, ctx);
9736         add_AT_loc (decl_die, DW_AT_location, loc);
9737
9738         add_AT_die_ref (subrange_die, bound_attr, decl_die);
9739         break;
9740       }
9741     }
9742 }
9743
9744 /* Note that the block of subscript information for an array type also
9745    includes information about the element type of type given array type.  */
9746
9747 static void
9748 add_subscript_info (dw_die_ref type_die, tree type)
9749 {
9750 #ifndef MIPS_DEBUGGING_INFO
9751   unsigned dimension_number;
9752 #endif
9753   tree lower, upper;
9754   dw_die_ref subrange_die;
9755
9756   /* The GNU compilers represent multidimensional array types as sequences of
9757      one dimensional array types whose element types are themselves array
9758      types.  Here we squish that down, so that each multidimensional array
9759      type gets only one array_type DIE in the Dwarf debugging info. The draft
9760      Dwarf specification say that we are allowed to do this kind of
9761      compression in C (because there is no difference between an array or
9762      arrays and a multidimensional array in C) but for other source languages
9763      (e.g. Ada) we probably shouldn't do this.  */
9764
9765   /* ??? The SGI dwarf reader fails for multidimensional arrays with a
9766      const enum type.  E.g. const enum machine_mode insn_operand_mode[2][10].
9767      We work around this by disabling this feature.  See also
9768      gen_array_type_die.  */
9769 #ifndef MIPS_DEBUGGING_INFO
9770   for (dimension_number = 0;
9771        TREE_CODE (type) == ARRAY_TYPE;
9772        type = TREE_TYPE (type), dimension_number++)
9773 #endif
9774     {
9775       tree domain = TYPE_DOMAIN (type);
9776
9777       /* Arrays come in three flavors: Unspecified bounds, fixed bounds,
9778          and (in GNU C only) variable bounds.  Handle all three forms
9779          here.  */
9780       subrange_die = new_die (DW_TAG_subrange_type, type_die, NULL);
9781       if (domain)
9782         {
9783           /* We have an array type with specified bounds.  */
9784           lower = TYPE_MIN_VALUE (domain);
9785           upper = TYPE_MAX_VALUE (domain);
9786
9787           /* Define the index type.  */
9788           if (TREE_TYPE (domain))
9789             {
9790               /* ??? This is probably an Ada unnamed subrange type.  Ignore the
9791                  TREE_TYPE field.  We can't emit debug info for this
9792                  because it is an unnamed integral type.  */
9793               if (TREE_CODE (domain) == INTEGER_TYPE
9794                   && TYPE_NAME (domain) == NULL_TREE
9795                   && TREE_CODE (TREE_TYPE (domain)) == INTEGER_TYPE
9796                   && TYPE_NAME (TREE_TYPE (domain)) == NULL_TREE)
9797                 ;
9798               else
9799                 add_type_attribute (subrange_die, TREE_TYPE (domain), 0, 0,
9800                                     type_die);
9801             }
9802
9803           /* ??? If upper is NULL, the array has unspecified length,
9804              but it does have a lower bound.  This happens with Fortran
9805                dimension arr(N:*)
9806              Since the debugger is definitely going to need to know N
9807              to produce useful results, go ahead and output the lower
9808              bound solo, and hope the debugger can cope.  */
9809
9810           add_bound_info (subrange_die, DW_AT_lower_bound, lower);
9811           if (upper)
9812             add_bound_info (subrange_die, DW_AT_upper_bound, upper);
9813         }
9814
9815       /* Otherwise we have an array type with an unspecified length.  The
9816          DWARF-2 spec does not say how to handle this; let's just leave out the
9817          bounds.  */
9818     }
9819 }
9820
9821 static void
9822 add_byte_size_attribute (dw_die_ref die, tree tree_node)
9823 {
9824   unsigned size;
9825
9826   switch (TREE_CODE (tree_node))
9827     {
9828     case ERROR_MARK:
9829       size = 0;
9830       break;
9831     case ENUMERAL_TYPE:
9832     case RECORD_TYPE:
9833     case UNION_TYPE:
9834     case QUAL_UNION_TYPE:
9835       size = int_size_in_bytes (tree_node);
9836       break;
9837     case FIELD_DECL:
9838       /* For a data member of a struct or union, the DW_AT_byte_size is
9839          generally given as the number of bytes normally allocated for an
9840          object of the *declared* type of the member itself.  This is true
9841          even for bit-fields.  */
9842       size = simple_type_size_in_bits (field_type (tree_node)) / BITS_PER_UNIT;
9843       break;
9844     default:
9845       abort ();
9846     }
9847
9848   /* Note that `size' might be -1 when we get to this point.  If it is, that
9849      indicates that the byte size of the entity in question is variable.  We
9850      have no good way of expressing this fact in Dwarf at the present time,
9851      so just let the -1 pass on through.  */
9852   add_AT_unsigned (die, DW_AT_byte_size, size);
9853 }
9854
9855 /* For a FIELD_DECL node which represents a bit-field, output an attribute
9856    which specifies the distance in bits from the highest order bit of the
9857    "containing object" for the bit-field to the highest order bit of the
9858    bit-field itself.
9859
9860    For any given bit-field, the "containing object" is a hypothetical object
9861    (of some integral or enum type) within which the given bit-field lives.  The
9862    type of this hypothetical "containing object" is always the same as the
9863    declared type of the individual bit-field itself.  The determination of the
9864    exact location of the "containing object" for a bit-field is rather
9865    complicated.  It's handled by the `field_byte_offset' function (above).
9866
9867    Note that it is the size (in bytes) of the hypothetical "containing object"
9868    which will be given in the DW_AT_byte_size attribute for this bit-field.
9869    (See `byte_size_attribute' above).  */
9870
9871 static inline void
9872 add_bit_offset_attribute (dw_die_ref die, tree decl)
9873 {
9874   HOST_WIDE_INT object_offset_in_bytes = field_byte_offset (decl);
9875   tree type = DECL_BIT_FIELD_TYPE (decl);
9876   HOST_WIDE_INT bitpos_int;
9877   HOST_WIDE_INT highest_order_object_bit_offset;
9878   HOST_WIDE_INT highest_order_field_bit_offset;
9879   HOST_WIDE_INT unsigned bit_offset;
9880
9881   /* Must be a field and a bit field.  */
9882   if (!type
9883       || TREE_CODE (decl) != FIELD_DECL)
9884     abort ();
9885
9886   /* We can't yet handle bit-fields whose offsets are variable, so if we
9887      encounter such things, just return without generating any attribute
9888      whatsoever.  Likewise for variable or too large size.  */
9889   if (! host_integerp (bit_position (decl), 0)
9890       || ! host_integerp (DECL_SIZE (decl), 1))
9891     return;
9892
9893   bitpos_int = int_bit_position (decl);
9894
9895   /* Note that the bit offset is always the distance (in bits) from the
9896      highest-order bit of the "containing object" to the highest-order bit of
9897      the bit-field itself.  Since the "high-order end" of any object or field
9898      is different on big-endian and little-endian machines, the computation
9899      below must take account of these differences.  */
9900   highest_order_object_bit_offset = object_offset_in_bytes * BITS_PER_UNIT;
9901   highest_order_field_bit_offset = bitpos_int;
9902
9903   if (! BYTES_BIG_ENDIAN)
9904     {
9905       highest_order_field_bit_offset += tree_low_cst (DECL_SIZE (decl), 0);
9906       highest_order_object_bit_offset += simple_type_size_in_bits (type);
9907     }
9908
9909   bit_offset
9910     = (! BYTES_BIG_ENDIAN
9911        ? highest_order_object_bit_offset - highest_order_field_bit_offset
9912        : highest_order_field_bit_offset - highest_order_object_bit_offset);
9913
9914   add_AT_unsigned (die, DW_AT_bit_offset, bit_offset);
9915 }
9916
9917 /* For a FIELD_DECL node which represents a bit field, output an attribute
9918    which specifies the length in bits of the given field.  */
9919
9920 static inline void
9921 add_bit_size_attribute (dw_die_ref die, tree decl)
9922 {
9923   /* Must be a field and a bit field.  */
9924   if (TREE_CODE (decl) != FIELD_DECL
9925       || ! DECL_BIT_FIELD_TYPE (decl))
9926     abort ();
9927
9928   if (host_integerp (DECL_SIZE (decl), 1))
9929     add_AT_unsigned (die, DW_AT_bit_size, tree_low_cst (DECL_SIZE (decl), 1));
9930 }
9931
9932 /* If the compiled language is ANSI C, then add a 'prototyped'
9933    attribute, if arg types are given for the parameters of a function.  */
9934
9935 static inline void
9936 add_prototyped_attribute (dw_die_ref die, tree func_type)
9937 {
9938   if (get_AT_unsigned (comp_unit_die, DW_AT_language) == DW_LANG_C89
9939       && TYPE_ARG_TYPES (func_type) != NULL)
9940     add_AT_flag (die, DW_AT_prototyped, 1);
9941 }
9942
9943 /* Add an 'abstract_origin' attribute below a given DIE.  The DIE is found
9944    by looking in either the type declaration or object declaration
9945    equate table.  */
9946
9947 static inline void
9948 add_abstract_origin_attribute (dw_die_ref die, tree origin)
9949 {
9950   dw_die_ref origin_die = NULL;
9951
9952   if (TREE_CODE (origin) != FUNCTION_DECL)
9953     {
9954       /* We may have gotten separated from the block for the inlined
9955          function, if we're in an exception handler or some such; make
9956          sure that the abstract function has been written out.
9957
9958          Doing this for nested functions is wrong, however; functions are
9959          distinct units, and our context might not even be inline.  */
9960       tree fn = origin;
9961
9962       if (TYPE_P (fn))
9963         fn = TYPE_STUB_DECL (fn);
9964
9965       fn = decl_function_context (fn);
9966       if (fn)
9967         dwarf2out_abstract_function (fn);
9968     }
9969
9970   if (DECL_P (origin))
9971     origin_die = lookup_decl_die (origin);
9972   else if (TYPE_P (origin))
9973     origin_die = lookup_type_die (origin);
9974
9975   if (origin_die == NULL)
9976     abort ();
9977
9978   add_AT_die_ref (die, DW_AT_abstract_origin, origin_die);
9979 }
9980
9981 /* We do not currently support the pure_virtual attribute.  */
9982
9983 static inline void
9984 add_pure_or_virtual_attribute (dw_die_ref die, tree func_decl)
9985 {
9986   if (DECL_VINDEX (func_decl))
9987     {
9988       add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
9989
9990       if (host_integerp (DECL_VINDEX (func_decl), 0))
9991         add_AT_loc (die, DW_AT_vtable_elem_location,
9992                     new_loc_descr (DW_OP_constu,
9993                                    tree_low_cst (DECL_VINDEX (func_decl), 0),
9994                                    0));
9995
9996       /* GNU extension: Record what type this method came from originally.  */
9997       if (debug_info_level > DINFO_LEVEL_TERSE)
9998         add_AT_die_ref (die, DW_AT_containing_type,
9999                         lookup_type_die (DECL_CONTEXT (func_decl)));
10000     }
10001 }
10002 \f
10003 /* Add source coordinate attributes for the given decl.  */
10004
10005 static void
10006 add_src_coords_attributes (dw_die_ref die, tree decl)
10007 {
10008   unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
10009
10010   add_AT_unsigned (die, DW_AT_decl_file, file_index);
10011   add_AT_unsigned (die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
10012 }
10013
10014 /* Add a DW_AT_name attribute and source coordinate attribute for the
10015    given decl, but only if it actually has a name.  */
10016
10017 static void
10018 add_name_and_src_coords_attributes (dw_die_ref die, tree decl)
10019 {
10020   tree decl_name;
10021
10022   decl_name = DECL_NAME (decl);
10023   if (decl_name != NULL && IDENTIFIER_POINTER (decl_name) != NULL)
10024     {
10025       add_name_attribute (die, dwarf2_name (decl, 0));
10026       if (! DECL_ARTIFICIAL (decl))
10027         add_src_coords_attributes (die, decl);
10028
10029       if ((TREE_CODE (decl) == FUNCTION_DECL || TREE_CODE (decl) == VAR_DECL)
10030           && TREE_PUBLIC (decl)
10031           && DECL_ASSEMBLER_NAME (decl) != DECL_NAME (decl)
10032           && !DECL_ABSTRACT (decl))
10033         add_AT_string (die, DW_AT_MIPS_linkage_name,
10034                        IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
10035     }
10036
10037 #ifdef VMS_DEBUGGING_INFO
10038   /* Get the function's name, as described by its RTL.  This may be different
10039      from the DECL_NAME name used in the source file.  */
10040   if (TREE_CODE (decl) == FUNCTION_DECL && TREE_ASM_WRITTEN (decl))
10041     {
10042       add_AT_addr (die, DW_AT_VMS_rtnbeg_pd_address,
10043                    XEXP (DECL_RTL (decl), 0));
10044       VARRAY_PUSH_RTX (used_rtx_varray, XEXP (DECL_RTL (decl), 0));
10045     }
10046 #endif
10047 }
10048
10049 /* Push a new declaration scope.  */
10050
10051 static void
10052 push_decl_scope (tree scope)
10053 {
10054   VARRAY_PUSH_TREE (decl_scope_table, scope);
10055 }
10056
10057 /* Pop a declaration scope.  */
10058
10059 static inline void
10060 pop_decl_scope (void)
10061 {
10062   if (VARRAY_ACTIVE_SIZE (decl_scope_table) <= 0)
10063     abort ();
10064
10065   VARRAY_POP (decl_scope_table);
10066 }
10067
10068 /* Return the DIE for the scope that immediately contains this type.
10069    Non-named types get global scope.  Named types nested in other
10070    types get their containing scope if it's open, or global scope
10071    otherwise.  All other types (i.e. function-local named types) get
10072    the current active scope.  */
10073
10074 static dw_die_ref
10075 scope_die_for (tree t, dw_die_ref context_die)
10076 {
10077   dw_die_ref scope_die = NULL;
10078   tree containing_scope;
10079   int i;
10080
10081   /* Non-types always go in the current scope.  */
10082   if (! TYPE_P (t))
10083     abort ();
10084
10085   containing_scope = TYPE_CONTEXT (t);
10086
10087   /* Use the containing namespace if it was passed in (for a declaration).  */
10088   if (containing_scope && TREE_CODE (containing_scope) == NAMESPACE_DECL)
10089     {
10090       if (context_die == lookup_decl_die (containing_scope))
10091         /* OK */;
10092       else
10093         containing_scope = NULL_TREE;
10094     }
10095
10096   /* Ignore function type "scopes" from the C frontend.  They mean that
10097      a tagged type is local to a parmlist of a function declarator, but
10098      that isn't useful to DWARF.  */
10099   if (containing_scope && TREE_CODE (containing_scope) == FUNCTION_TYPE)
10100     containing_scope = NULL_TREE;
10101
10102   if (containing_scope == NULL_TREE)
10103     scope_die = comp_unit_die;
10104   else if (TYPE_P (containing_scope))
10105     {
10106       /* For types, we can just look up the appropriate DIE.  But
10107          first we check to see if we're in the middle of emitting it
10108          so we know where the new DIE should go.  */
10109       for (i = VARRAY_ACTIVE_SIZE (decl_scope_table) - 1; i >= 0; --i)
10110         if (VARRAY_TREE (decl_scope_table, i) == containing_scope)
10111           break;
10112
10113       if (i < 0)
10114         {
10115           if (debug_info_level > DINFO_LEVEL_TERSE
10116               && !TREE_ASM_WRITTEN (containing_scope))
10117             abort ();
10118
10119           /* If none of the current dies are suitable, we get file scope.  */
10120           scope_die = comp_unit_die;
10121         }
10122       else
10123         scope_die = lookup_type_die (containing_scope);
10124     }
10125   else
10126     scope_die = context_die;
10127
10128   return scope_die;
10129 }
10130
10131 /* Returns nonzero if CONTEXT_DIE is internal to a function.  */
10132
10133 static inline int
10134 local_scope_p (dw_die_ref context_die)
10135 {
10136   for (; context_die; context_die = context_die->die_parent)
10137     if (context_die->die_tag == DW_TAG_inlined_subroutine
10138         || context_die->die_tag == DW_TAG_subprogram)
10139       return 1;
10140
10141   return 0;
10142 }
10143
10144 /* Returns nonzero if CONTEXT_DIE is a class or namespace, for deciding
10145    whether or not to treat a DIE in this context as a declaration.  */
10146
10147 static inline int
10148 class_or_namespace_scope_p (dw_die_ref context_die)
10149 {
10150   return (context_die
10151           && (context_die->die_tag == DW_TAG_structure_type
10152               || context_die->die_tag == DW_TAG_union_type
10153               || context_die->die_tag == DW_TAG_namespace));
10154 }
10155
10156 /* Many forms of DIEs require a "type description" attribute.  This
10157    routine locates the proper "type descriptor" die for the type given
10158    by 'type', and adds a DW_AT_type attribute below the given die.  */
10159
10160 static void
10161 add_type_attribute (dw_die_ref object_die, tree type, int decl_const,
10162                     int decl_volatile, dw_die_ref context_die)
10163 {
10164   enum tree_code code  = TREE_CODE (type);
10165   dw_die_ref type_die  = NULL;
10166
10167   /* ??? If this type is an unnamed subrange type of an integral or
10168      floating-point type, use the inner type.  This is because we have no
10169      support for unnamed types in base_type_die.  This can happen if this is
10170      an Ada subrange type.  Correct solution is emit a subrange type die.  */
10171   if ((code == INTEGER_TYPE || code == REAL_TYPE)
10172       && TREE_TYPE (type) != 0 && TYPE_NAME (type) == 0)
10173     type = TREE_TYPE (type), code = TREE_CODE (type);
10174
10175   if (code == ERROR_MARK
10176       /* Handle a special case.  For functions whose return type is void, we
10177          generate *no* type attribute.  (Note that no object may have type
10178          `void', so this only applies to function return types).  */
10179       || code == VOID_TYPE)
10180     return;
10181
10182   type_die = modified_type_die (type,
10183                                 decl_const || TYPE_READONLY (type),
10184                                 decl_volatile || TYPE_VOLATILE (type),
10185                                 context_die);
10186
10187   if (type_die != NULL)
10188     add_AT_die_ref (object_die, DW_AT_type, type_die);
10189 }
10190
10191 /* Given a tree pointer to a struct, class, union, or enum type node, return
10192    a pointer to the (string) tag name for the given type, or zero if the type
10193    was declared without a tag.  */
10194
10195 static const char *
10196 type_tag (tree type)
10197 {
10198   const char *name = 0;
10199
10200   if (TYPE_NAME (type) != 0)
10201     {
10202       tree t = 0;
10203
10204       /* Find the IDENTIFIER_NODE for the type name.  */
10205       if (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE)
10206         t = TYPE_NAME (type);
10207
10208       /* The g++ front end makes the TYPE_NAME of *each* tagged type point to
10209          a TYPE_DECL node, regardless of whether or not a `typedef' was
10210          involved.  */
10211       else if (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
10212                && ! DECL_IGNORED_P (TYPE_NAME (type)))
10213         t = DECL_NAME (TYPE_NAME (type));
10214
10215       /* Now get the name as a string, or invent one.  */
10216       if (t != 0)
10217         name = IDENTIFIER_POINTER (t);
10218     }
10219
10220   return (name == 0 || *name == '\0') ? 0 : name;
10221 }
10222
10223 /* Return the type associated with a data member, make a special check
10224    for bit field types.  */
10225
10226 static inline tree
10227 member_declared_type (tree member)
10228 {
10229   return (DECL_BIT_FIELD_TYPE (member)
10230           ? DECL_BIT_FIELD_TYPE (member) : TREE_TYPE (member));
10231 }
10232
10233 /* Get the decl's label, as described by its RTL. This may be different
10234    from the DECL_NAME name used in the source file.  */
10235
10236 #if 0
10237 static const char *
10238 decl_start_label (tree decl)
10239 {
10240   rtx x;
10241   const char *fnname;
10242
10243   x = DECL_RTL (decl);
10244   if (GET_CODE (x) != MEM)
10245     abort ();
10246
10247   x = XEXP (x, 0);
10248   if (GET_CODE (x) != SYMBOL_REF)
10249     abort ();
10250
10251   fnname = XSTR (x, 0);
10252   return fnname;
10253 }
10254 #endif
10255 \f
10256 /* These routines generate the internal representation of the DIE's for
10257    the compilation unit.  Debugging information is collected by walking
10258    the declaration trees passed in from dwarf2out_decl().  */
10259
10260 static void
10261 gen_array_type_die (tree type, dw_die_ref context_die)
10262 {
10263   dw_die_ref scope_die = scope_die_for (type, context_die);
10264   dw_die_ref array_die;
10265   tree element_type;
10266
10267   /* ??? The SGI dwarf reader fails for array of array of enum types unless
10268      the inner array type comes before the outer array type.  Thus we must
10269      call gen_type_die before we call new_die.  See below also.  */
10270 #ifdef MIPS_DEBUGGING_INFO
10271   gen_type_die (TREE_TYPE (type), context_die);
10272 #endif
10273
10274   array_die = new_die (DW_TAG_array_type, scope_die, type);
10275   add_name_attribute (array_die, type_tag (type));
10276   equate_type_number_to_die (type, array_die);
10277
10278   if (TREE_CODE (type) == VECTOR_TYPE)
10279     {
10280       /* The frontend feeds us a representation for the vector as a struct
10281          containing an array.  Pull out the array type.  */
10282       type = TREE_TYPE (TYPE_FIELDS (TYPE_DEBUG_REPRESENTATION_TYPE (type)));
10283       add_AT_flag (array_die, DW_AT_GNU_vector, 1);
10284     }
10285
10286 #if 0
10287   /* We default the array ordering.  SDB will probably do
10288      the right things even if DW_AT_ordering is not present.  It's not even
10289      an issue until we start to get into multidimensional arrays anyway.  If
10290      SDB is ever caught doing the Wrong Thing for multi-dimensional arrays,
10291      then we'll have to put the DW_AT_ordering attribute back in.  (But if
10292      and when we find out that we need to put these in, we will only do so
10293      for multidimensional arrays.  */
10294   add_AT_unsigned (array_die, DW_AT_ordering, DW_ORD_row_major);
10295 #endif
10296
10297 #ifdef MIPS_DEBUGGING_INFO
10298   /* The SGI compilers handle arrays of unknown bound by setting
10299      AT_declaration and not emitting any subrange DIEs.  */
10300   if (! TYPE_DOMAIN (type))
10301     add_AT_flag (array_die, DW_AT_declaration, 1);
10302   else
10303 #endif
10304     add_subscript_info (array_die, type);
10305
10306   /* Add representation of the type of the elements of this array type.  */
10307   element_type = TREE_TYPE (type);
10308
10309   /* ??? The SGI dwarf reader fails for multidimensional arrays with a
10310      const enum type.  E.g. const enum machine_mode insn_operand_mode[2][10].
10311      We work around this by disabling this feature.  See also
10312      add_subscript_info.  */
10313 #ifndef MIPS_DEBUGGING_INFO
10314   while (TREE_CODE (element_type) == ARRAY_TYPE)
10315     element_type = TREE_TYPE (element_type);
10316
10317   gen_type_die (element_type, context_die);
10318 #endif
10319
10320   add_type_attribute (array_die, element_type, 0, 0, context_die);
10321 }
10322
10323 static void
10324 gen_set_type_die (tree type, dw_die_ref context_die)
10325 {
10326   dw_die_ref type_die
10327     = new_die (DW_TAG_set_type, scope_die_for (type, context_die), type);
10328
10329   equate_type_number_to_die (type, type_die);
10330   add_type_attribute (type_die, TREE_TYPE (type), 0, 0, context_die);
10331 }
10332
10333 #if 0
10334 static void
10335 gen_entry_point_die (tree decl, dw_die_ref context_die)
10336 {
10337   tree origin = decl_ultimate_origin (decl);
10338   dw_die_ref decl_die = new_die (DW_TAG_entry_point, context_die, decl);
10339
10340   if (origin != NULL)
10341     add_abstract_origin_attribute (decl_die, origin);
10342   else
10343     {
10344       add_name_and_src_coords_attributes (decl_die, decl);
10345       add_type_attribute (decl_die, TREE_TYPE (TREE_TYPE (decl)),
10346                           0, 0, context_die);
10347     }
10348
10349   if (DECL_ABSTRACT (decl))
10350     equate_decl_number_to_die (decl, decl_die);
10351   else
10352     add_AT_lbl_id (decl_die, DW_AT_low_pc, decl_start_label (decl));
10353 }
10354 #endif
10355
10356 /* Walk through the list of incomplete types again, trying once more to
10357    emit full debugging info for them.  */
10358
10359 static void
10360 retry_incomplete_types (void)
10361 {
10362   int i;
10363
10364   for (i = VARRAY_ACTIVE_SIZE (incomplete_types) - 1; i >= 0; i--)
10365     gen_type_die (VARRAY_TREE (incomplete_types, i), comp_unit_die);
10366 }
10367
10368 /* Generate a DIE to represent an inlined instance of an enumeration type.  */
10369
10370 static void
10371 gen_inlined_enumeration_type_die (tree type, dw_die_ref context_die)
10372 {
10373   dw_die_ref type_die = new_die (DW_TAG_enumeration_type, context_die, type);
10374
10375   /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
10376      be incomplete and such types are not marked.  */
10377   add_abstract_origin_attribute (type_die, type);
10378 }
10379
10380 /* Generate a DIE to represent an inlined instance of a structure type.  */
10381
10382 static void
10383 gen_inlined_structure_type_die (tree type, dw_die_ref context_die)
10384 {
10385   dw_die_ref type_die = new_die (DW_TAG_structure_type, context_die, type);
10386
10387   /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
10388      be incomplete and such types are not marked.  */
10389   add_abstract_origin_attribute (type_die, type);
10390 }
10391
10392 /* Generate a DIE to represent an inlined instance of a union type.  */
10393
10394 static void
10395 gen_inlined_union_type_die (tree type, dw_die_ref context_die)
10396 {
10397   dw_die_ref type_die = new_die (DW_TAG_union_type, context_die, type);
10398
10399   /* We do not check for TREE_ASM_WRITTEN (type) being set, as the type may
10400      be incomplete and such types are not marked.  */
10401   add_abstract_origin_attribute (type_die, type);
10402 }
10403
10404 /* Generate a DIE to represent an enumeration type.  Note that these DIEs
10405    include all of the information about the enumeration values also. Each
10406    enumerated type name/value is listed as a child of the enumerated type
10407    DIE.  */
10408
10409 static dw_die_ref
10410 gen_enumeration_type_die (tree type, dw_die_ref context_die)
10411 {
10412   dw_die_ref type_die = lookup_type_die (type);
10413
10414   if (type_die == NULL)
10415     {
10416       type_die = new_die (DW_TAG_enumeration_type,
10417                           scope_die_for (type, context_die), type);
10418       equate_type_number_to_die (type, type_die);
10419       add_name_attribute (type_die, type_tag (type));
10420     }
10421   else if (! TYPE_SIZE (type))
10422     return type_die;
10423   else
10424     remove_AT (type_die, DW_AT_declaration);
10425
10426   /* Handle a GNU C/C++ extension, i.e. incomplete enum types.  If the
10427      given enum type is incomplete, do not generate the DW_AT_byte_size
10428      attribute or the DW_AT_element_list attribute.  */
10429   if (TYPE_SIZE (type))
10430     {
10431       tree link;
10432
10433       TREE_ASM_WRITTEN (type) = 1;
10434       add_byte_size_attribute (type_die, type);
10435       if (TYPE_STUB_DECL (type) != NULL_TREE)
10436         add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
10437
10438       /* If the first reference to this type was as the return type of an
10439          inline function, then it may not have a parent.  Fix this now.  */
10440       if (type_die->die_parent == NULL)
10441         add_child_die (scope_die_for (type, context_die), type_die);
10442
10443       for (link = TYPE_FIELDS (type);
10444            link != NULL; link = TREE_CHAIN (link))
10445         {
10446           dw_die_ref enum_die = new_die (DW_TAG_enumerator, type_die, link);
10447
10448           add_name_attribute (enum_die,
10449                               IDENTIFIER_POINTER (TREE_PURPOSE (link)));
10450
10451           if (host_integerp (TREE_VALUE (link), 
10452                              TREE_UNSIGNED (TREE_TYPE (TREE_VALUE (link)))))
10453             {
10454               if (tree_int_cst_sgn (TREE_VALUE (link)) < 0)
10455                 add_AT_int (enum_die, DW_AT_const_value,
10456                             tree_low_cst (TREE_VALUE (link), 0));
10457               else
10458                 add_AT_unsigned (enum_die, DW_AT_const_value,
10459                                  tree_low_cst (TREE_VALUE (link), 1));
10460             }
10461         }
10462     }
10463   else
10464     add_AT_flag (type_die, DW_AT_declaration, 1);
10465
10466   return type_die;
10467 }
10468
10469 /* Generate a DIE to represent either a real live formal parameter decl or to
10470    represent just the type of some formal parameter position in some function
10471    type.
10472
10473    Note that this routine is a bit unusual because its argument may be a
10474    ..._DECL node (i.e. either a PARM_DECL or perhaps a VAR_DECL which
10475    represents an inlining of some PARM_DECL) or else some sort of a ..._TYPE
10476    node.  If it's the former then this function is being called to output a
10477    DIE to represent a formal parameter object (or some inlining thereof).  If
10478    it's the latter, then this function is only being called to output a
10479    DW_TAG_formal_parameter DIE to stand as a placeholder for some formal
10480    argument type of some subprogram type.  */
10481
10482 static dw_die_ref
10483 gen_formal_parameter_die (tree node, dw_die_ref context_die)
10484 {
10485   dw_die_ref parm_die
10486     = new_die (DW_TAG_formal_parameter, context_die, node);
10487   tree origin;
10488
10489   switch (TREE_CODE_CLASS (TREE_CODE (node)))
10490     {
10491     case 'd':
10492       origin = decl_ultimate_origin (node);
10493       if (origin != NULL)
10494         add_abstract_origin_attribute (parm_die, origin);
10495       else
10496         {
10497           add_name_and_src_coords_attributes (parm_die, node);
10498           add_type_attribute (parm_die, TREE_TYPE (node),
10499                               TREE_READONLY (node),
10500                               TREE_THIS_VOLATILE (node),
10501                               context_die);
10502           if (DECL_ARTIFICIAL (node))
10503             add_AT_flag (parm_die, DW_AT_artificial, 1);
10504         }
10505
10506       equate_decl_number_to_die (node, parm_die);
10507       if (! DECL_ABSTRACT (node))
10508         add_location_or_const_value_attribute (parm_die, node);
10509
10510       break;
10511
10512     case 't':
10513       /* We were called with some kind of a ..._TYPE node.  */
10514       add_type_attribute (parm_die, node, 0, 0, context_die);
10515       break;
10516
10517     default:
10518       abort ();
10519     }
10520
10521   return parm_die;
10522 }
10523
10524 /* Generate a special type of DIE used as a stand-in for a trailing ellipsis
10525    at the end of an (ANSI prototyped) formal parameters list.  */
10526
10527 static void
10528 gen_unspecified_parameters_die (tree decl_or_type, dw_die_ref context_die)
10529 {
10530   new_die (DW_TAG_unspecified_parameters, context_die, decl_or_type);
10531 }
10532
10533 /* Generate a list of nameless DW_TAG_formal_parameter DIEs (and perhaps a
10534    DW_TAG_unspecified_parameters DIE) to represent the types of the formal
10535    parameters as specified in some function type specification (except for
10536    those which appear as part of a function *definition*).  */
10537
10538 static void
10539 gen_formal_types_die (tree function_or_method_type, dw_die_ref context_die)
10540 {
10541   tree link;
10542   tree formal_type = NULL;
10543   tree first_parm_type;
10544   tree arg;
10545
10546   if (TREE_CODE (function_or_method_type) == FUNCTION_DECL)
10547     {
10548       arg = DECL_ARGUMENTS (function_or_method_type);
10549       function_or_method_type = TREE_TYPE (function_or_method_type);
10550     }
10551   else
10552     arg = NULL_TREE;
10553
10554   first_parm_type = TYPE_ARG_TYPES (function_or_method_type);
10555
10556   /* Make our first pass over the list of formal parameter types and output a
10557      DW_TAG_formal_parameter DIE for each one.  */
10558   for (link = first_parm_type; link; )
10559     {
10560       dw_die_ref parm_die;
10561
10562       formal_type = TREE_VALUE (link);
10563       if (formal_type == void_type_node)
10564         break;
10565
10566       /* Output a (nameless) DIE to represent the formal parameter itself.  */
10567       parm_die = gen_formal_parameter_die (formal_type, context_die);
10568       if ((TREE_CODE (function_or_method_type) == METHOD_TYPE
10569            && link == first_parm_type)
10570           || (arg && DECL_ARTIFICIAL (arg)))
10571         add_AT_flag (parm_die, DW_AT_artificial, 1);
10572
10573       link = TREE_CHAIN (link);
10574       if (arg)
10575         arg = TREE_CHAIN (arg);
10576     }
10577
10578   /* If this function type has an ellipsis, add a
10579      DW_TAG_unspecified_parameters DIE to the end of the parameter list.  */
10580   if (formal_type != void_type_node)
10581     gen_unspecified_parameters_die (function_or_method_type, context_die);
10582
10583   /* Make our second (and final) pass over the list of formal parameter types
10584      and output DIEs to represent those types (as necessary).  */
10585   for (link = TYPE_ARG_TYPES (function_or_method_type);
10586        link && TREE_VALUE (link);
10587        link = TREE_CHAIN (link))
10588     gen_type_die (TREE_VALUE (link), context_die);
10589 }
10590
10591 /* We want to generate the DIE for TYPE so that we can generate the
10592    die for MEMBER, which has been defined; we will need to refer back
10593    to the member declaration nested within TYPE.  If we're trying to
10594    generate minimal debug info for TYPE, processing TYPE won't do the
10595    trick; we need to attach the member declaration by hand.  */
10596
10597 static void
10598 gen_type_die_for_member (tree type, tree member, dw_die_ref context_die)
10599 {
10600   gen_type_die (type, context_die);
10601
10602   /* If we're trying to avoid duplicate debug info, we may not have
10603      emitted the member decl for this function.  Emit it now.  */
10604   if (TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))
10605       && ! lookup_decl_die (member))
10606     {
10607       if (decl_ultimate_origin (member))
10608         abort ();
10609
10610       push_decl_scope (type);
10611       if (TREE_CODE (member) == FUNCTION_DECL)
10612         gen_subprogram_die (member, lookup_type_die (type));
10613       else
10614         gen_variable_die (member, lookup_type_die (type));
10615
10616       pop_decl_scope ();
10617     }
10618 }
10619
10620 /* Generate the DWARF2 info for the "abstract" instance of a function which we
10621    may later generate inlined and/or out-of-line instances of.  */
10622
10623 static void
10624 dwarf2out_abstract_function (tree decl)
10625 {
10626   dw_die_ref old_die;
10627   tree save_fn;
10628   tree context;
10629   int was_abstract = DECL_ABSTRACT (decl);
10630
10631   /* Make sure we have the actual abstract inline, not a clone.  */
10632   decl = DECL_ORIGIN (decl);
10633
10634   old_die = lookup_decl_die (decl);
10635   if (old_die && get_AT (old_die, DW_AT_inline))
10636     /* We've already generated the abstract instance.  */
10637     return;
10638
10639   /* Be sure we've emitted the in-class declaration DIE (if any) first, so
10640      we don't get confused by DECL_ABSTRACT.  */
10641   if (debug_info_level > DINFO_LEVEL_TERSE)
10642     {
10643       context = decl_class_context (decl);
10644       if (context)
10645         gen_type_die_for_member
10646           (context, decl, decl_function_context (decl) ? NULL : comp_unit_die);
10647     }
10648
10649   /* Pretend we've just finished compiling this function.  */
10650   save_fn = current_function_decl;
10651   current_function_decl = decl;
10652
10653   set_decl_abstract_flags (decl, 1);
10654   dwarf2out_decl (decl);
10655   if (! was_abstract)
10656     set_decl_abstract_flags (decl, 0);
10657
10658   current_function_decl = save_fn;
10659 }
10660
10661 /* Generate a DIE to represent a declared function (either file-scope or
10662    block-local).  */
10663
10664 static void
10665 gen_subprogram_die (tree decl, dw_die_ref context_die)
10666 {
10667   char label_id[MAX_ARTIFICIAL_LABEL_BYTES];
10668   tree origin = decl_ultimate_origin (decl);
10669   dw_die_ref subr_die;
10670   rtx fp_reg;
10671   tree fn_arg_types;
10672   tree outer_scope;
10673   dw_die_ref old_die = lookup_decl_die (decl);
10674   int declaration = (current_function_decl != decl
10675                      || class_or_namespace_scope_p (context_die));
10676
10677   /* It is possible to have both DECL_ABSTRACT and DECLARATION be true if we
10678      started to generate the abstract instance of an inline, decided to output
10679      its containing class, and proceeded to emit the declaration of the inline
10680      from the member list for the class.  If so, DECLARATION takes priority;
10681      we'll get back to the abstract instance when done with the class.  */
10682
10683   /* The class-scope declaration DIE must be the primary DIE.  */
10684   if (origin && declaration && class_or_namespace_scope_p (context_die))
10685     {
10686       origin = NULL;
10687       if (old_die)
10688         abort ();
10689     }
10690
10691   if (origin != NULL)
10692     {
10693       if (declaration && ! local_scope_p (context_die))
10694         abort ();
10695
10696       /* Fixup die_parent for the abstract instance of a nested
10697          inline function.  */
10698       if (old_die && old_die->die_parent == NULL)
10699         add_child_die (context_die, old_die);
10700
10701       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
10702       add_abstract_origin_attribute (subr_die, origin);
10703     }
10704   else if (old_die)
10705     {
10706       unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
10707
10708       if (!get_AT_flag (old_die, DW_AT_declaration)
10709           /* We can have a normal definition following an inline one in the
10710              case of redefinition of GNU C extern inlines.
10711              It seems reasonable to use AT_specification in this case.  */
10712           && !get_AT (old_die, DW_AT_inline))
10713         {
10714           /* ??? This can happen if there is a bug in the program, for
10715              instance, if it has duplicate function definitions.  Ideally,
10716              we should detect this case and ignore it.  For now, if we have
10717              already reported an error, any error at all, then assume that
10718              we got here because of an input error, not a dwarf2 bug.  */
10719           if (errorcount)
10720             return;
10721           abort ();
10722         }
10723
10724       /* If the definition comes from the same place as the declaration,
10725          maybe use the old DIE.  We always want the DIE for this function
10726          that has the *_pc attributes to be under comp_unit_die so the
10727          debugger can find it.  We also need to do this for abstract
10728          instances of inlines, since the spec requires the out-of-line copy
10729          to have the same parent.  For local class methods, this doesn't
10730          apply; we just use the old DIE.  */
10731       if ((old_die->die_parent == comp_unit_die || context_die == NULL)
10732           && (DECL_ARTIFICIAL (decl)
10733               || (get_AT_unsigned (old_die, DW_AT_decl_file) == file_index
10734                   && (get_AT_unsigned (old_die, DW_AT_decl_line)
10735                       == (unsigned) DECL_SOURCE_LINE (decl)))))
10736         {
10737           subr_die = old_die;
10738
10739           /* Clear out the declaration attribute and the formal parameters.
10740              Do not remove all children, because it is possible that this 
10741              declaration die was forced using force_decl_die(). In such
10742              cases die that forced declaration die (e.g. TAG_imported_module)
10743              is one of the children that we do not want to remove.  */
10744           remove_AT (subr_die, DW_AT_declaration);
10745           remove_child_TAG (subr_die, DW_TAG_formal_parameter);
10746         }
10747       else
10748         {
10749           subr_die = new_die (DW_TAG_subprogram, context_die, decl);
10750           add_AT_specification (subr_die, old_die);
10751           if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
10752             add_AT_unsigned (subr_die, DW_AT_decl_file, file_index);
10753           if (get_AT_unsigned (old_die, DW_AT_decl_line)
10754               != (unsigned) DECL_SOURCE_LINE (decl))
10755             add_AT_unsigned
10756               (subr_die, DW_AT_decl_line, DECL_SOURCE_LINE (decl));
10757         }
10758     }
10759   else
10760     {
10761       subr_die = new_die (DW_TAG_subprogram, context_die, decl);
10762
10763       if (TREE_PUBLIC (decl))
10764         add_AT_flag (subr_die, DW_AT_external, 1);
10765
10766       add_name_and_src_coords_attributes (subr_die, decl);
10767       if (debug_info_level > DINFO_LEVEL_TERSE)
10768         {
10769           add_prototyped_attribute (subr_die, TREE_TYPE (decl));
10770           add_type_attribute (subr_die, TREE_TYPE (TREE_TYPE (decl)),
10771                               0, 0, context_die);
10772         }
10773
10774       add_pure_or_virtual_attribute (subr_die, decl);
10775       if (DECL_ARTIFICIAL (decl))
10776         add_AT_flag (subr_die, DW_AT_artificial, 1);
10777
10778       if (TREE_PROTECTED (decl))
10779         add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_protected);
10780       else if (TREE_PRIVATE (decl))
10781         add_AT_unsigned (subr_die, DW_AT_accessibility, DW_ACCESS_private);
10782     }
10783
10784   if (declaration)
10785     {
10786       if (!old_die || !get_AT (old_die, DW_AT_inline))
10787         {
10788           add_AT_flag (subr_die, DW_AT_declaration, 1);
10789
10790           /* The first time we see a member function, it is in the context of
10791              the class to which it belongs.  We make sure of this by emitting
10792              the class first.  The next time is the definition, which is
10793              handled above.  The two may come from the same source text. 
10794
10795              Note that force_decl_die() forces function declaration die. It is
10796              later reused to represent definition.  */
10797             equate_decl_number_to_die (decl, subr_die);
10798         }
10799     }
10800   else if (DECL_ABSTRACT (decl))
10801     {
10802       if (DECL_DECLARED_INLINE_P (decl))
10803         {
10804           if (cgraph_function_possibly_inlined_p (decl))
10805             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_inlined);
10806           else
10807             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_declared_not_inlined);
10808         }
10809       else
10810         {
10811           if (cgraph_function_possibly_inlined_p (decl))
10812             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_inlined);
10813           else
10814             add_AT_unsigned (subr_die, DW_AT_inline, DW_INL_not_inlined);
10815         }
10816
10817       equate_decl_number_to_die (decl, subr_die);
10818     }
10819   else if (!DECL_EXTERNAL (decl))
10820     {
10821       if (!old_die || !get_AT (old_die, DW_AT_inline))
10822         equate_decl_number_to_die (decl, subr_die);
10823
10824       ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_BEGIN_LABEL,
10825                                    current_function_funcdef_no);
10826       add_AT_lbl_id (subr_die, DW_AT_low_pc, label_id);
10827       ASM_GENERATE_INTERNAL_LABEL (label_id, FUNC_END_LABEL,
10828                                    current_function_funcdef_no);
10829       add_AT_lbl_id (subr_die, DW_AT_high_pc, label_id);
10830
10831       add_pubname (decl, subr_die);
10832       add_arange (decl, subr_die);
10833
10834 #ifdef MIPS_DEBUGGING_INFO
10835       /* Add a reference to the FDE for this routine.  */
10836       add_AT_fde_ref (subr_die, DW_AT_MIPS_fde, current_funcdef_fde);
10837 #endif
10838
10839       /* Define the "frame base" location for this routine.  We use the
10840          frame pointer or stack pointer registers, since the RTL for local
10841          variables is relative to one of them.  */
10842       fp_reg
10843         = frame_pointer_needed ? hard_frame_pointer_rtx : stack_pointer_rtx;
10844       add_AT_loc (subr_die, DW_AT_frame_base, reg_loc_descriptor (fp_reg));
10845
10846 #if 0
10847       /* ??? This fails for nested inline functions, because context_display
10848          is not part of the state saved/restored for inline functions.  */
10849       if (current_function_needs_context)
10850         add_AT_location_description (subr_die, DW_AT_static_link,
10851                              loc_descriptor (lookup_static_chain (decl)));
10852 #endif
10853     }
10854
10855   /* Now output descriptions of the arguments for this function. This gets
10856      (unnecessarily?) complex because of the fact that the DECL_ARGUMENT list
10857      for a FUNCTION_DECL doesn't indicate cases where there was a trailing
10858      `...' at the end of the formal parameter list.  In order to find out if
10859      there was a trailing ellipsis or not, we must instead look at the type
10860      associated with the FUNCTION_DECL.  This will be a node of type
10861      FUNCTION_TYPE. If the chain of type nodes hanging off of this
10862      FUNCTION_TYPE node ends with a void_type_node then there should *not* be
10863      an ellipsis at the end.  */
10864
10865   /* In the case where we are describing a mere function declaration, all we
10866      need to do here (and all we *can* do here) is to describe the *types* of
10867      its formal parameters.  */
10868   if (debug_info_level <= DINFO_LEVEL_TERSE)
10869     ;
10870   else if (declaration)
10871     gen_formal_types_die (decl, subr_die);
10872   else
10873     {
10874       /* Generate DIEs to represent all known formal parameters.  */
10875       tree arg_decls = DECL_ARGUMENTS (decl);
10876       tree parm;
10877
10878       /* When generating DIEs, generate the unspecified_parameters DIE
10879          instead if we come across the arg "__builtin_va_alist" */
10880       for (parm = arg_decls; parm; parm = TREE_CHAIN (parm))
10881         if (TREE_CODE (parm) == PARM_DECL)
10882           {
10883             if (DECL_NAME (parm)
10884                 && !strcmp (IDENTIFIER_POINTER (DECL_NAME (parm)),
10885                             "__builtin_va_alist"))
10886               gen_unspecified_parameters_die (parm, subr_die);
10887             else
10888               gen_decl_die (parm, subr_die);
10889           }
10890
10891       /* Decide whether we need an unspecified_parameters DIE at the end.
10892          There are 2 more cases to do this for: 1) the ansi ... declaration -
10893          this is detectable when the end of the arg list is not a
10894          void_type_node 2) an unprototyped function declaration (not a
10895          definition).  This just means that we have no info about the
10896          parameters at all.  */
10897       fn_arg_types = TYPE_ARG_TYPES (TREE_TYPE (decl));
10898       if (fn_arg_types != NULL)
10899         {
10900           /* This is the prototyped case, check for....  */
10901           if (TREE_VALUE (tree_last (fn_arg_types)) != void_type_node)
10902             gen_unspecified_parameters_die (decl, subr_die);
10903         }
10904       else if (DECL_INITIAL (decl) == NULL_TREE)
10905         gen_unspecified_parameters_die (decl, subr_die);
10906     }
10907
10908   /* Output Dwarf info for all of the stuff within the body of the function
10909      (if it has one - it may be just a declaration).  */
10910   outer_scope = DECL_INITIAL (decl);
10911
10912   /* OUTER_SCOPE is a pointer to the outermost BLOCK node created to represent
10913      a function.  This BLOCK actually represents the outermost binding contour
10914      for the function, i.e. the contour in which the function's formal
10915      parameters and labels get declared. Curiously, it appears that the front
10916      end doesn't actually put the PARM_DECL nodes for the current function onto
10917      the BLOCK_VARS list for this outer scope, but are strung off of the
10918      DECL_ARGUMENTS list for the function instead.
10919
10920      The BLOCK_VARS list for the `outer_scope' does provide us with a list of
10921      the LABEL_DECL nodes for the function however, and we output DWARF info
10922      for those in decls_for_scope.  Just within the `outer_scope' there will be
10923      a BLOCK node representing the function's outermost pair of curly braces,
10924      and any blocks used for the base and member initializers of a C++
10925      constructor function.  */
10926   if (! declaration && TREE_CODE (outer_scope) != ERROR_MARK)
10927     {
10928       current_function_has_inlines = 0;
10929       decls_for_scope (outer_scope, subr_die, 0);
10930
10931 #if 0 && defined (MIPS_DEBUGGING_INFO)
10932       if (current_function_has_inlines)
10933         {
10934           add_AT_flag (subr_die, DW_AT_MIPS_has_inlines, 1);
10935           if (! comp_unit_has_inlines)
10936             {
10937               add_AT_flag (comp_unit_die, DW_AT_MIPS_has_inlines, 1);
10938               comp_unit_has_inlines = 1;
10939             }
10940         }
10941 #endif
10942     }
10943 }
10944
10945 /* Generate a DIE to represent a declared data object.  */
10946
10947 static void
10948 gen_variable_die (tree decl, dw_die_ref context_die)
10949 {
10950   tree origin = decl_ultimate_origin (decl);
10951   dw_die_ref var_die = new_die (DW_TAG_variable, context_die, decl);
10952
10953   dw_die_ref old_die = lookup_decl_die (decl);
10954   int declaration = (DECL_EXTERNAL (decl)
10955                      || class_or_namespace_scope_p (context_die));
10956
10957   if (origin != NULL)
10958     add_abstract_origin_attribute (var_die, origin);
10959
10960   /* Loop unrolling can create multiple blocks that refer to the same
10961      static variable, so we must test for the DW_AT_declaration flag.
10962
10963      ??? Loop unrolling/reorder_blocks should perhaps be rewritten to
10964      copy decls and set the DECL_ABSTRACT flag on them instead of
10965      sharing them.
10966
10967      ??? Duplicated blocks have been rewritten to use .debug_ranges.  */
10968   else if (old_die && TREE_STATIC (decl)
10969            && get_AT_flag (old_die, DW_AT_declaration) == 1)
10970     {
10971       /* This is a definition of a C++ class level static.  */
10972       add_AT_specification (var_die, old_die);
10973       if (DECL_NAME (decl))
10974         {
10975           unsigned file_index = lookup_filename (DECL_SOURCE_FILE (decl));
10976
10977           if (get_AT_unsigned (old_die, DW_AT_decl_file) != file_index)
10978             add_AT_unsigned (var_die, DW_AT_decl_file, file_index);
10979
10980           if (get_AT_unsigned (old_die, DW_AT_decl_line)
10981               != (unsigned) DECL_SOURCE_LINE (decl))
10982
10983             add_AT_unsigned (var_die, DW_AT_decl_line,
10984                              DECL_SOURCE_LINE (decl));
10985         }
10986     }
10987   else
10988     {
10989       add_name_and_src_coords_attributes (var_die, decl);
10990       add_type_attribute (var_die, TREE_TYPE (decl), TREE_READONLY (decl),
10991                           TREE_THIS_VOLATILE (decl), context_die);
10992
10993       if (TREE_PUBLIC (decl))
10994         add_AT_flag (var_die, DW_AT_external, 1);
10995
10996       if (DECL_ARTIFICIAL (decl))
10997         add_AT_flag (var_die, DW_AT_artificial, 1);
10998
10999       if (TREE_PROTECTED (decl))
11000         add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_protected);
11001       else if (TREE_PRIVATE (decl))
11002         add_AT_unsigned (var_die, DW_AT_accessibility, DW_ACCESS_private);
11003     }
11004
11005   if (declaration)
11006     add_AT_flag (var_die, DW_AT_declaration, 1);
11007
11008   if (DECL_ABSTRACT (decl) || declaration)
11009     equate_decl_number_to_die (decl, var_die);
11010
11011   if (! declaration && ! DECL_ABSTRACT (decl))
11012     {
11013       add_location_or_const_value_attribute (var_die, decl);
11014       add_pubname (decl, var_die);
11015     }
11016   else
11017     tree_add_const_value_attribute (var_die, decl);
11018 }
11019
11020 /* Generate a DIE to represent a label identifier.  */
11021
11022 static void
11023 gen_label_die (tree decl, dw_die_ref context_die)
11024 {
11025   tree origin = decl_ultimate_origin (decl);
11026   dw_die_ref lbl_die = new_die (DW_TAG_label, context_die, decl);
11027   rtx insn;
11028   char label[MAX_ARTIFICIAL_LABEL_BYTES];
11029
11030   if (origin != NULL)
11031     add_abstract_origin_attribute (lbl_die, origin);
11032   else
11033     add_name_and_src_coords_attributes (lbl_die, decl);
11034
11035   if (DECL_ABSTRACT (decl))
11036     equate_decl_number_to_die (decl, lbl_die);
11037   else
11038     {
11039       insn = DECL_RTL_IF_SET (decl);
11040
11041       /* Deleted labels are programmer specified labels which have been
11042          eliminated because of various optimizations.  We still emit them
11043          here so that it is possible to put breakpoints on them.  */
11044       if (insn
11045           && (GET_CODE (insn) == CODE_LABEL
11046               || ((GET_CODE (insn) == NOTE
11047                    && NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED_LABEL))))
11048         {
11049           /* When optimization is enabled (via -O) some parts of the compiler
11050              (e.g. jump.c and cse.c) may try to delete CODE_LABEL insns which
11051              represent source-level labels which were explicitly declared by
11052              the user.  This really shouldn't be happening though, so catch
11053              it if it ever does happen.  */
11054           if (INSN_DELETED_P (insn))
11055             abort ();
11056
11057           ASM_GENERATE_INTERNAL_LABEL (label, "L", CODE_LABEL_NUMBER (insn));
11058           add_AT_lbl_id (lbl_die, DW_AT_low_pc, label);
11059         }
11060     }
11061 }
11062
11063 /* Generate a DIE for a lexical block.  */
11064
11065 static void
11066 gen_lexical_block_die (tree stmt, dw_die_ref context_die, int depth)
11067 {
11068   dw_die_ref stmt_die = new_die (DW_TAG_lexical_block, context_die, stmt);
11069   char label[MAX_ARTIFICIAL_LABEL_BYTES];
11070
11071   if (! BLOCK_ABSTRACT (stmt))
11072     {
11073       if (BLOCK_FRAGMENT_CHAIN (stmt))
11074         {
11075           tree chain;
11076
11077           add_AT_range_list (stmt_die, DW_AT_ranges, add_ranges (stmt));
11078
11079           chain = BLOCK_FRAGMENT_CHAIN (stmt);
11080           do
11081             {
11082               add_ranges (chain);
11083               chain = BLOCK_FRAGMENT_CHAIN (chain);
11084             }
11085           while (chain);
11086           add_ranges (NULL);
11087         }
11088       else
11089         {
11090           ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
11091                                        BLOCK_NUMBER (stmt));
11092           add_AT_lbl_id (stmt_die, DW_AT_low_pc, label);
11093           ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
11094                                        BLOCK_NUMBER (stmt));
11095           add_AT_lbl_id (stmt_die, DW_AT_high_pc, label);
11096         }
11097     }
11098
11099   decls_for_scope (stmt, stmt_die, depth);
11100 }
11101
11102 /* Generate a DIE for an inlined subprogram.  */
11103
11104 static void
11105 gen_inlined_subroutine_die (tree stmt, dw_die_ref context_die, int depth)
11106 {
11107   tree decl = block_ultimate_origin (stmt);
11108
11109   /* Emit info for the abstract instance first, if we haven't yet.  We
11110      must emit this even if the block is abstract, otherwise when we
11111      emit the block below (or elsewhere), we may end up trying to emit
11112      a die whose origin die hasn't been emitted, and crashing.  */
11113   dwarf2out_abstract_function (decl);
11114
11115   if (! BLOCK_ABSTRACT (stmt))
11116     {
11117       dw_die_ref subr_die
11118         = new_die (DW_TAG_inlined_subroutine, context_die, stmt);
11119       char label[MAX_ARTIFICIAL_LABEL_BYTES];
11120
11121       add_abstract_origin_attribute (subr_die, decl);
11122       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_BEGIN_LABEL,
11123                                    BLOCK_NUMBER (stmt));
11124       add_AT_lbl_id (subr_die, DW_AT_low_pc, label);
11125       ASM_GENERATE_INTERNAL_LABEL (label, BLOCK_END_LABEL,
11126                                    BLOCK_NUMBER (stmt));
11127       add_AT_lbl_id (subr_die, DW_AT_high_pc, label);
11128       decls_for_scope (stmt, subr_die, depth);
11129       current_function_has_inlines = 1;
11130     }
11131   else
11132     /* We may get here if we're the outer block of function A that was
11133        inlined into function B that was inlined into function C.  When
11134        generating debugging info for C, dwarf2out_abstract_function(B)
11135        would mark all inlined blocks as abstract, including this one.
11136        So, we wouldn't (and shouldn't) expect labels to be generated
11137        for this one.  Instead, just emit debugging info for
11138        declarations within the block.  This is particularly important
11139        in the case of initializers of arguments passed from B to us:
11140        if they're statement expressions containing declarations, we
11141        wouldn't generate dies for their abstract variables, and then,
11142        when generating dies for the real variables, we'd die (pun
11143        intended :-)  */
11144     gen_lexical_block_die (stmt, context_die, depth);
11145 }
11146
11147 /* Generate a DIE for a field in a record, or structure.  */
11148
11149 static void
11150 gen_field_die (tree decl, dw_die_ref context_die)
11151 {
11152   dw_die_ref decl_die;
11153
11154   if (TREE_TYPE (decl) == error_mark_node)
11155     return;
11156
11157   decl_die = new_die (DW_TAG_member, context_die, decl);
11158   add_name_and_src_coords_attributes (decl_die, decl);
11159   add_type_attribute (decl_die, member_declared_type (decl),
11160                       TREE_READONLY (decl), TREE_THIS_VOLATILE (decl),
11161                       context_die);
11162
11163   if (DECL_BIT_FIELD_TYPE (decl))
11164     {
11165       add_byte_size_attribute (decl_die, decl);
11166       add_bit_size_attribute (decl_die, decl);
11167       add_bit_offset_attribute (decl_die, decl);
11168     }
11169
11170   if (TREE_CODE (DECL_FIELD_CONTEXT (decl)) != UNION_TYPE)
11171     add_data_member_location_attribute (decl_die, decl);
11172
11173   if (DECL_ARTIFICIAL (decl))
11174     add_AT_flag (decl_die, DW_AT_artificial, 1);
11175
11176   if (TREE_PROTECTED (decl))
11177     add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_protected);
11178   else if (TREE_PRIVATE (decl))
11179     add_AT_unsigned (decl_die, DW_AT_accessibility, DW_ACCESS_private);
11180 }
11181
11182 #if 0
11183 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
11184    Use modified_type_die instead.
11185    We keep this code here just in case these types of DIEs may be needed to
11186    represent certain things in other languages (e.g. Pascal) someday.  */
11187
11188 static void
11189 gen_pointer_type_die (tree type, dw_die_ref context_die)
11190 {
11191   dw_die_ref ptr_die
11192     = new_die (DW_TAG_pointer_type, scope_die_for (type, context_die), type);
11193
11194   equate_type_number_to_die (type, ptr_die);
11195   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
11196   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
11197 }
11198
11199 /* Don't generate either pointer_type DIEs or reference_type DIEs here.
11200    Use modified_type_die instead.
11201    We keep this code here just in case these types of DIEs may be needed to
11202    represent certain things in other languages (e.g. Pascal) someday.  */
11203
11204 static void
11205 gen_reference_type_die (tree type, dw_die_ref context_die)
11206 {
11207   dw_die_ref ref_die
11208     = new_die (DW_TAG_reference_type, scope_die_for (type, context_die), type);
11209
11210   equate_type_number_to_die (type, ref_die);
11211   add_type_attribute (ref_die, TREE_TYPE (type), 0, 0, context_die);
11212   add_AT_unsigned (mod_type_die, DW_AT_byte_size, PTR_SIZE);
11213 }
11214 #endif
11215
11216 /* Generate a DIE for a pointer to a member type.  */
11217
11218 static void
11219 gen_ptr_to_mbr_type_die (tree type, dw_die_ref context_die)
11220 {
11221   dw_die_ref ptr_die
11222     = new_die (DW_TAG_ptr_to_member_type,
11223                scope_die_for (type, context_die), type);
11224
11225   equate_type_number_to_die (type, ptr_die);
11226   add_AT_die_ref (ptr_die, DW_AT_containing_type,
11227                   lookup_type_die (TYPE_OFFSET_BASETYPE (type)));
11228   add_type_attribute (ptr_die, TREE_TYPE (type), 0, 0, context_die);
11229 }
11230
11231 /* Generate the DIE for the compilation unit.  */
11232
11233 static dw_die_ref
11234 gen_compile_unit_die (const char *filename)
11235 {
11236   dw_die_ref die;
11237   char producer[250];
11238   const char *language_string = lang_hooks.name;
11239   int language;
11240
11241   die = new_die (DW_TAG_compile_unit, NULL, NULL);
11242
11243   if (filename)
11244     {
11245       add_name_attribute (die, filename);
11246       /* Don't add cwd for <built-in>.  */
11247       if (filename[0] != DIR_SEPARATOR && filename[0] != '<')
11248         add_comp_dir_attribute (die);
11249     }
11250
11251   sprintf (producer, "%s %s", language_string, version_string);
11252
11253 #ifdef MIPS_DEBUGGING_INFO
11254   /* The MIPS/SGI compilers place the 'cc' command line options in the producer
11255      string.  The SGI debugger looks for -g, -g1, -g2, or -g3; if they do
11256      not appear in the producer string, the debugger reaches the conclusion
11257      that the object file is stripped and has no debugging information.
11258      To get the MIPS/SGI debugger to believe that there is debugging
11259      information in the object file, we add a -g to the producer string.  */
11260   if (debug_info_level > DINFO_LEVEL_TERSE)
11261     strcat (producer, " -g");
11262 #endif
11263
11264   add_AT_string (die, DW_AT_producer, producer);
11265
11266   if (strcmp (language_string, "GNU C++") == 0)
11267     language = DW_LANG_C_plus_plus;
11268   else if (strcmp (language_string, "GNU Ada") == 0)
11269     language = DW_LANG_Ada95;
11270   else if (strcmp (language_string, "GNU F77") == 0)
11271     language = DW_LANG_Fortran77;
11272   else if (strcmp (language_string, "GNU Pascal") == 0)
11273     language = DW_LANG_Pascal83;
11274   else if (strcmp (language_string, "GNU Java") == 0)
11275     language = DW_LANG_Java;
11276   else
11277     language = DW_LANG_C89;
11278
11279   add_AT_unsigned (die, DW_AT_language, language);
11280   return die;
11281 }
11282
11283 /* Generate a DIE for a string type.  */
11284
11285 static void
11286 gen_string_type_die (tree type, dw_die_ref context_die)
11287 {
11288   dw_die_ref type_die
11289     = new_die (DW_TAG_string_type, scope_die_for (type, context_die), type);
11290
11291   equate_type_number_to_die (type, type_die);
11292
11293   /* ??? Fudge the string length attribute for now.
11294      TODO: add string length info.  */
11295 #if 0
11296   string_length_attribute (TYPE_MAX_VALUE (TYPE_DOMAIN (type)));
11297   bound_representation (upper_bound, 0, 'u');
11298 #endif
11299 }
11300
11301 /* Generate the DIE for a base class.  */
11302
11303 static void
11304 gen_inheritance_die (tree binfo, tree access, dw_die_ref context_die)
11305 {
11306   dw_die_ref die = new_die (DW_TAG_inheritance, context_die, binfo);
11307
11308   add_type_attribute (die, BINFO_TYPE (binfo), 0, 0, context_die);
11309   add_data_member_location_attribute (die, binfo);
11310
11311   if (TREE_VIA_VIRTUAL (binfo))
11312     add_AT_unsigned (die, DW_AT_virtuality, DW_VIRTUALITY_virtual);
11313
11314   if (access == access_public_node)
11315     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_public);
11316   else if (access == access_protected_node)
11317     add_AT_unsigned (die, DW_AT_accessibility, DW_ACCESS_protected);
11318 }
11319
11320 /* Generate a DIE for a class member.  */
11321
11322 static void
11323 gen_member_die (tree type, dw_die_ref context_die)
11324 {
11325   tree member;
11326   tree binfo = TYPE_BINFO (type);
11327   dw_die_ref child;
11328
11329   /* If this is not an incomplete type, output descriptions of each of its
11330      members. Note that as we output the DIEs necessary to represent the
11331      members of this record or union type, we will also be trying to output
11332      DIEs to represent the *types* of those members. However the `type'
11333      function (above) will specifically avoid generating type DIEs for member
11334      types *within* the list of member DIEs for this (containing) type except
11335      for those types (of members) which are explicitly marked as also being
11336      members of this (containing) type themselves.  The g++ front- end can
11337      force any given type to be treated as a member of some other (containing)
11338      type by setting the TYPE_CONTEXT of the given (member) type to point to
11339      the TREE node representing the appropriate (containing) type.  */
11340
11341   /* First output info about the base classes.  */
11342   if (binfo && BINFO_BASETYPES (binfo))
11343     {
11344       tree bases = BINFO_BASETYPES (binfo);
11345       tree accesses = BINFO_BASEACCESSES (binfo);
11346       int n_bases = TREE_VEC_LENGTH (bases);
11347       int i;
11348
11349       for (i = 0; i < n_bases; i++)
11350         gen_inheritance_die (TREE_VEC_ELT (bases, i),
11351                              (accesses ? TREE_VEC_ELT (accesses, i)
11352                               : access_public_node), context_die);
11353     }
11354
11355   /* Now output info about the data members and type members.  */
11356   for (member = TYPE_FIELDS (type); member; member = TREE_CHAIN (member))
11357     {
11358       /* If we thought we were generating minimal debug info for TYPE
11359          and then changed our minds, some of the member declarations
11360          may have already been defined.  Don't define them again, but
11361          do put them in the right order.  */
11362
11363       child = lookup_decl_die (member);
11364       if (child)
11365         splice_child_die (context_die, child);
11366       else
11367         gen_decl_die (member, context_die);
11368     }
11369
11370   /* Now output info about the function members (if any).  */
11371   for (member = TYPE_METHODS (type); member; member = TREE_CHAIN (member))
11372     {
11373       /* Don't include clones in the member list.  */
11374       if (DECL_ABSTRACT_ORIGIN (member))
11375         continue;
11376
11377       child = lookup_decl_die (member);
11378       if (child)
11379         splice_child_die (context_die, child);
11380       else
11381         gen_decl_die (member, context_die);
11382     }
11383 }
11384
11385 /* Generate a DIE for a structure or union type.  If TYPE_DECL_SUPPRESS_DEBUG
11386    is set, we pretend that the type was never defined, so we only get the
11387    member DIEs needed by later specification DIEs.  */
11388
11389 static void
11390 gen_struct_or_union_type_die (tree type, dw_die_ref context_die)
11391 {
11392   dw_die_ref type_die = lookup_type_die (type);
11393   dw_die_ref scope_die = 0;
11394   int nested = 0;
11395   int complete = (TYPE_SIZE (type)
11396                   && (! TYPE_STUB_DECL (type)
11397                       || ! TYPE_DECL_SUPPRESS_DEBUG (TYPE_STUB_DECL (type))));
11398   int ns_decl = (context_die && context_die->die_tag == DW_TAG_namespace);
11399
11400   if (type_die && ! complete)
11401     return;
11402
11403   if (TYPE_CONTEXT (type) != NULL_TREE
11404       && (AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
11405           || TREE_CODE (TYPE_CONTEXT (type)) == NAMESPACE_DECL))
11406     nested = 1;
11407
11408   scope_die = scope_die_for (type, context_die);
11409
11410   if (! type_die || (nested && scope_die == comp_unit_die))
11411     /* First occurrence of type or toplevel definition of nested class.  */
11412     {
11413       dw_die_ref old_die = type_die;
11414
11415       type_die = new_die (TREE_CODE (type) == RECORD_TYPE
11416                           ? DW_TAG_structure_type : DW_TAG_union_type,
11417                           scope_die, type);
11418       equate_type_number_to_die (type, type_die);
11419       if (old_die)
11420         add_AT_specification (type_die, old_die);
11421       else
11422         add_name_attribute (type_die, type_tag (type));
11423     }
11424   else
11425     remove_AT (type_die, DW_AT_declaration);
11426
11427   /* If this type has been completed, then give it a byte_size attribute and
11428      then give a list of members.  */
11429   if (complete && !ns_decl)
11430     {
11431       /* Prevent infinite recursion in cases where the type of some member of
11432          this type is expressed in terms of this type itself.  */
11433       TREE_ASM_WRITTEN (type) = 1;
11434       add_byte_size_attribute (type_die, type);
11435       if (TYPE_STUB_DECL (type) != NULL_TREE)
11436         add_src_coords_attributes (type_die, TYPE_STUB_DECL (type));
11437
11438       /* If the first reference to this type was as the return type of an
11439          inline function, then it may not have a parent.  Fix this now.  */
11440       if (type_die->die_parent == NULL)
11441         add_child_die (scope_die, type_die);
11442
11443       push_decl_scope (type);
11444       gen_member_die (type, type_die);
11445       pop_decl_scope ();
11446
11447       /* GNU extension: Record what type our vtable lives in.  */
11448       if (TYPE_VFIELD (type))
11449         {
11450           tree vtype = DECL_FCONTEXT (TYPE_VFIELD (type));
11451
11452           gen_type_die (vtype, context_die);
11453           add_AT_die_ref (type_die, DW_AT_containing_type,
11454                           lookup_type_die (vtype));
11455         }
11456     }
11457   else
11458     {
11459       add_AT_flag (type_die, DW_AT_declaration, 1);
11460
11461       /* We don't need to do this for function-local types.  */
11462       if (TYPE_STUB_DECL (type)
11463           && ! decl_function_context (TYPE_STUB_DECL (type)))
11464         VARRAY_PUSH_TREE (incomplete_types, type);
11465     }
11466 }
11467
11468 /* Generate a DIE for a subroutine _type_.  */
11469
11470 static void
11471 gen_subroutine_type_die (tree type, dw_die_ref context_die)
11472 {
11473   tree return_type = TREE_TYPE (type);
11474   dw_die_ref subr_die
11475     = new_die (DW_TAG_subroutine_type,
11476                scope_die_for (type, context_die), type);
11477
11478   equate_type_number_to_die (type, subr_die);
11479   add_prototyped_attribute (subr_die, type);
11480   add_type_attribute (subr_die, return_type, 0, 0, context_die);
11481   gen_formal_types_die (type, subr_die);
11482 }
11483
11484 /* Generate a DIE for a type definition.  */
11485
11486 static void
11487 gen_typedef_die (tree decl, dw_die_ref context_die)
11488 {
11489   dw_die_ref type_die;
11490   tree origin;
11491
11492   if (TREE_ASM_WRITTEN (decl))
11493     return;
11494
11495   TREE_ASM_WRITTEN (decl) = 1;
11496   type_die = new_die (DW_TAG_typedef, context_die, decl);
11497   origin = decl_ultimate_origin (decl);
11498   if (origin != NULL)
11499     add_abstract_origin_attribute (type_die, origin);
11500   else
11501     {
11502       tree type;
11503
11504       add_name_and_src_coords_attributes (type_die, decl);
11505       if (DECL_ORIGINAL_TYPE (decl))
11506         {
11507           type = DECL_ORIGINAL_TYPE (decl);
11508
11509           if (type == TREE_TYPE (decl))
11510             abort ();
11511           else
11512             equate_type_number_to_die (TREE_TYPE (decl), type_die);
11513         }
11514       else
11515         type = TREE_TYPE (decl);
11516
11517       add_type_attribute (type_die, type, TREE_READONLY (decl),
11518                           TREE_THIS_VOLATILE (decl), context_die);
11519     }
11520
11521   if (DECL_ABSTRACT (decl))
11522     equate_decl_number_to_die (decl, type_die);
11523 }
11524
11525 /* Generate a type description DIE.  */
11526
11527 static void
11528 gen_type_die (tree type, dw_die_ref context_die)
11529 {
11530   int need_pop;
11531
11532   if (type == NULL_TREE || type == error_mark_node)
11533     return;
11534
11535   if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
11536       && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
11537     {
11538       if (TREE_ASM_WRITTEN (type))
11539         return;
11540
11541       /* Prevent broken recursion; we can't hand off to the same type.  */
11542       if (DECL_ORIGINAL_TYPE (TYPE_NAME (type)) == type)
11543         abort ();
11544
11545       TREE_ASM_WRITTEN (type) = 1;
11546       gen_decl_die (TYPE_NAME (type), context_die);
11547       return;
11548     }
11549
11550   /* We are going to output a DIE to represent the unqualified version
11551      of this type (i.e. without any const or volatile qualifiers) so
11552      get the main variant (i.e. the unqualified version) of this type
11553      now.  (Vectors are special because the debugging info is in the
11554      cloned type itself).  */
11555   if (TREE_CODE (type) != VECTOR_TYPE)
11556     type = type_main_variant (type);
11557
11558   if (TREE_ASM_WRITTEN (type))
11559     return;
11560
11561   switch (TREE_CODE (type))
11562     {
11563     case ERROR_MARK:
11564       break;
11565
11566     case POINTER_TYPE:
11567     case REFERENCE_TYPE:
11568       /* We must set TREE_ASM_WRITTEN in case this is a recursive type.  This
11569          ensures that the gen_type_die recursion will terminate even if the
11570          type is recursive.  Recursive types are possible in Ada.  */
11571       /* ??? We could perhaps do this for all types before the switch
11572          statement.  */
11573       TREE_ASM_WRITTEN (type) = 1;
11574
11575       /* For these types, all that is required is that we output a DIE (or a
11576          set of DIEs) to represent the "basis" type.  */
11577       gen_type_die (TREE_TYPE (type), context_die);
11578       break;
11579
11580     case OFFSET_TYPE:
11581       /* This code is used for C++ pointer-to-data-member types.
11582          Output a description of the relevant class type.  */
11583       gen_type_die (TYPE_OFFSET_BASETYPE (type), context_die);
11584
11585       /* Output a description of the type of the object pointed to.  */
11586       gen_type_die (TREE_TYPE (type), context_die);
11587
11588       /* Now output a DIE to represent this pointer-to-data-member type
11589          itself.  */
11590       gen_ptr_to_mbr_type_die (type, context_die);
11591       break;
11592
11593     case SET_TYPE:
11594       gen_type_die (TYPE_DOMAIN (type), context_die);
11595       gen_set_type_die (type, context_die);
11596       break;
11597
11598     case FILE_TYPE:
11599       gen_type_die (TREE_TYPE (type), context_die);
11600       abort ();                 /* No way to represent these in Dwarf yet!  */
11601       break;
11602
11603     case FUNCTION_TYPE:
11604       /* Force out return type (in case it wasn't forced out already).  */
11605       gen_type_die (TREE_TYPE (type), context_die);
11606       gen_subroutine_type_die (type, context_die);
11607       break;
11608
11609     case METHOD_TYPE:
11610       /* Force out return type (in case it wasn't forced out already).  */
11611       gen_type_die (TREE_TYPE (type), context_die);
11612       gen_subroutine_type_die (type, context_die);
11613       break;
11614
11615     case ARRAY_TYPE:
11616       if (TYPE_STRING_FLAG (type) && TREE_CODE (TREE_TYPE (type)) == CHAR_TYPE)
11617         {
11618           gen_type_die (TREE_TYPE (type), context_die);
11619           gen_string_type_die (type, context_die);
11620         }
11621       else
11622         gen_array_type_die (type, context_die);
11623       break;
11624
11625     case VECTOR_TYPE:
11626       gen_array_type_die (type, context_die);
11627       break;
11628
11629     case ENUMERAL_TYPE:
11630     case RECORD_TYPE:
11631     case UNION_TYPE:
11632     case QUAL_UNION_TYPE:
11633       /* If this is a nested type whose containing class hasn't been written
11634          out yet, writing it out will cover this one, too.  This does not apply
11635          to instantiations of member class templates; they need to be added to
11636          the containing class as they are generated.  FIXME: This hurts the
11637          idea of combining type decls from multiple TUs, since we can't predict
11638          what set of template instantiations we'll get.  */
11639       if (TYPE_CONTEXT (type)
11640           && AGGREGATE_TYPE_P (TYPE_CONTEXT (type))
11641           && ! TREE_ASM_WRITTEN (TYPE_CONTEXT (type)))
11642         {
11643           gen_type_die (TYPE_CONTEXT (type), context_die);
11644
11645           if (TREE_ASM_WRITTEN (type))
11646             return;
11647
11648           /* If that failed, attach ourselves to the stub.  */
11649           push_decl_scope (TYPE_CONTEXT (type));
11650           context_die = lookup_type_die (TYPE_CONTEXT (type));
11651           need_pop = 1;
11652         }
11653       else
11654         {
11655           declare_in_namespace (type, context_die);
11656           need_pop = 0;
11657         }
11658
11659       if (TREE_CODE (type) == ENUMERAL_TYPE)
11660         gen_enumeration_type_die (type, context_die);
11661       else
11662         gen_struct_or_union_type_die (type, context_die);
11663
11664       if (need_pop)
11665         pop_decl_scope ();
11666
11667       /* Don't set TREE_ASM_WRITTEN on an incomplete struct; we want to fix
11668          it up if it is ever completed.  gen_*_type_die will set it for us
11669          when appropriate.  */
11670       return;
11671
11672     case VOID_TYPE:
11673     case INTEGER_TYPE:
11674     case REAL_TYPE:
11675     case COMPLEX_TYPE:
11676     case BOOLEAN_TYPE:
11677     case CHAR_TYPE:
11678       /* No DIEs needed for fundamental types.  */
11679       break;
11680
11681     case LANG_TYPE:
11682       /* No Dwarf representation currently defined.  */
11683       break;
11684
11685     default:
11686       abort ();
11687     }
11688
11689   TREE_ASM_WRITTEN (type) = 1;
11690 }
11691
11692 /* Generate a DIE for a tagged type instantiation.  */
11693
11694 static void
11695 gen_tagged_type_instantiation_die (tree type, dw_die_ref context_die)
11696 {
11697   if (type == NULL_TREE || type == error_mark_node)
11698     return;
11699
11700   /* We are going to output a DIE to represent the unqualified version of
11701      this type (i.e. without any const or volatile qualifiers) so make sure
11702      that we have the main variant (i.e. the unqualified version) of this
11703      type now.  */
11704   if (type != type_main_variant (type))
11705     abort ();
11706
11707   /* Do not check TREE_ASM_WRITTEN (type) as it may not be set if this is
11708      an instance of an unresolved type.  */
11709
11710   switch (TREE_CODE (type))
11711     {
11712     case ERROR_MARK:
11713       break;
11714
11715     case ENUMERAL_TYPE:
11716       gen_inlined_enumeration_type_die (type, context_die);
11717       break;
11718
11719     case RECORD_TYPE:
11720       gen_inlined_structure_type_die (type, context_die);
11721       break;
11722
11723     case UNION_TYPE:
11724     case QUAL_UNION_TYPE:
11725       gen_inlined_union_type_die (type, context_die);
11726       break;
11727
11728     default:
11729       abort ();
11730     }
11731 }
11732
11733 /* Generate a DW_TAG_lexical_block DIE followed by DIEs to represent all of the
11734    things which are local to the given block.  */
11735
11736 static void
11737 gen_block_die (tree stmt, dw_die_ref context_die, int depth)
11738 {
11739   int must_output_die = 0;
11740   tree origin;
11741   tree decl;
11742   enum tree_code origin_code;
11743
11744   /* Ignore blocks never really used to make RTL.  */
11745   if (stmt == NULL_TREE || !TREE_USED (stmt)
11746       || (!TREE_ASM_WRITTEN (stmt) && !BLOCK_ABSTRACT (stmt)))
11747     return;
11748
11749   /* If the block is one fragment of a non-contiguous block, do not
11750      process the variables, since they will have been done by the
11751      origin block.  Do process subblocks.  */
11752   if (BLOCK_FRAGMENT_ORIGIN (stmt))
11753     {
11754       tree sub;
11755
11756       for (sub = BLOCK_SUBBLOCKS (stmt); sub; sub = BLOCK_CHAIN (sub))
11757         gen_block_die (sub, context_die, depth + 1);
11758
11759       return;
11760     }
11761
11762   /* Determine the "ultimate origin" of this block.  This block may be an
11763      inlined instance of an inlined instance of inline function, so we have
11764      to trace all of the way back through the origin chain to find out what
11765      sort of node actually served as the original seed for the creation of
11766      the current block.  */
11767   origin = block_ultimate_origin (stmt);
11768   origin_code = (origin != NULL) ? TREE_CODE (origin) : ERROR_MARK;
11769
11770   /* Determine if we need to output any Dwarf DIEs at all to represent this
11771      block.  */
11772   if (origin_code == FUNCTION_DECL)
11773     /* The outer scopes for inlinings *must* always be represented.  We
11774        generate DW_TAG_inlined_subroutine DIEs for them.  (See below.) */
11775     must_output_die = 1;
11776   else
11777     {
11778       /* In the case where the current block represents an inlining of the
11779          "body block" of an inline function, we must *NOT* output any DIE for
11780          this block because we have already output a DIE to represent the whole
11781          inlined function scope and the "body block" of any function doesn't
11782          really represent a different scope according to ANSI C rules.  So we
11783          check here to make sure that this block does not represent a "body
11784          block inlining" before trying to set the MUST_OUTPUT_DIE flag.  */
11785       if (! is_body_block (origin ? origin : stmt))
11786         {
11787           /* Determine if this block directly contains any "significant"
11788              local declarations which we will need to output DIEs for.  */
11789           if (debug_info_level > DINFO_LEVEL_TERSE)
11790             /* We are not in terse mode so *any* local declaration counts
11791                as being a "significant" one.  */
11792             must_output_die = (BLOCK_VARS (stmt) != NULL);
11793           else
11794             /* We are in terse mode, so only local (nested) function
11795                definitions count as "significant" local declarations.  */
11796             for (decl = BLOCK_VARS (stmt);
11797                  decl != NULL; decl = TREE_CHAIN (decl))
11798               if (TREE_CODE (decl) == FUNCTION_DECL
11799                   && DECL_INITIAL (decl))
11800                 {
11801                   must_output_die = 1;
11802                   break;
11803                 }
11804         }
11805     }
11806
11807   /* It would be a waste of space to generate a Dwarf DW_TAG_lexical_block
11808      DIE for any block which contains no significant local declarations at
11809      all.  Rather, in such cases we just call `decls_for_scope' so that any
11810      needed Dwarf info for any sub-blocks will get properly generated. Note
11811      that in terse mode, our definition of what constitutes a "significant"
11812      local declaration gets restricted to include only inlined function
11813      instances and local (nested) function definitions.  */
11814   if (must_output_die)
11815     {
11816       if (origin_code == FUNCTION_DECL)
11817         gen_inlined_subroutine_die (stmt, context_die, depth);
11818       else
11819         gen_lexical_block_die (stmt, context_die, depth);
11820     }
11821   else
11822     decls_for_scope (stmt, context_die, depth);
11823 }
11824
11825 /* Generate all of the decls declared within a given scope and (recursively)
11826    all of its sub-blocks.  */
11827
11828 static void
11829 decls_for_scope (tree stmt, dw_die_ref context_die, int depth)
11830 {
11831   tree decl;
11832   tree subblocks;
11833
11834   /* Ignore blocks never really used to make RTL.  */
11835   if (stmt == NULL_TREE || ! TREE_USED (stmt))
11836     return;
11837
11838   /* Output the DIEs to represent all of the data objects and typedefs
11839      declared directly within this block but not within any nested
11840      sub-blocks.  Also, nested function and tag DIEs have been
11841      generated with a parent of NULL; fix that up now.  */
11842   for (decl = BLOCK_VARS (stmt); decl != NULL; decl = TREE_CHAIN (decl))
11843     {
11844       dw_die_ref die;
11845
11846       if (TREE_CODE (decl) == FUNCTION_DECL)
11847         die = lookup_decl_die (decl);
11848       else if (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl))
11849         die = lookup_type_die (TREE_TYPE (decl));
11850       else
11851         die = NULL;
11852
11853       if (die != NULL && die->die_parent == NULL)
11854         add_child_die (context_die, die);
11855       else
11856         gen_decl_die (decl, context_die);
11857     }
11858
11859   /* If we're at -g1, we're not interested in subblocks.  */
11860   if (debug_info_level <= DINFO_LEVEL_TERSE)
11861     return;
11862
11863   /* Output the DIEs to represent all sub-blocks (and the items declared
11864      therein) of this block.  */
11865   for (subblocks = BLOCK_SUBBLOCKS (stmt);
11866        subblocks != NULL;
11867        subblocks = BLOCK_CHAIN (subblocks))
11868     gen_block_die (subblocks, context_die, depth + 1);
11869 }
11870
11871 /* Is this a typedef we can avoid emitting?  */
11872
11873 static inline int
11874 is_redundant_typedef (tree decl)
11875 {
11876   if (TYPE_DECL_IS_STUB (decl))
11877     return 1;
11878
11879   if (DECL_ARTIFICIAL (decl)
11880       && DECL_CONTEXT (decl)
11881       && is_tagged_type (DECL_CONTEXT (decl))
11882       && TREE_CODE (TYPE_NAME (DECL_CONTEXT (decl))) == TYPE_DECL
11883       && DECL_NAME (decl) == DECL_NAME (TYPE_NAME (DECL_CONTEXT (decl))))
11884     /* Also ignore the artificial member typedef for the class name.  */
11885     return 1;
11886
11887   return 0;
11888 }
11889
11890 /* Returns the DIE for decl or aborts.  */
11891
11892 static dw_die_ref
11893 force_decl_die (tree decl)
11894 {
11895   dw_die_ref decl_die;
11896   unsigned saved_external_flag;
11897   tree save_fn = NULL_TREE;
11898   decl_die = lookup_decl_die (decl);
11899   if (!decl_die)
11900     {
11901       dw_die_ref context_die;
11902       tree decl_context = DECL_CONTEXT (decl);
11903       if (decl_context)
11904         {
11905           /* Find die that represents this context.  */
11906           if (TYPE_P (decl_context))
11907             context_die = force_type_die (decl_context);
11908           else
11909             context_die = force_decl_die (decl_context);
11910         }
11911       else
11912         context_die = comp_unit_die;
11913
11914       switch (TREE_CODE (decl))
11915         {
11916         case FUNCTION_DECL:
11917           /* Clear current_function_decl, so that gen_subprogram_die thinks
11918              that this is a declaration. At this point, we just want to force
11919              declaration die.  */
11920           save_fn = current_function_decl;
11921           current_function_decl = NULL_TREE;
11922           gen_subprogram_die (decl, context_die);
11923           current_function_decl = save_fn; 
11924           break;
11925
11926         case VAR_DECL:
11927           /* Set external flag to force declaration die. Restore it after
11928            gen_decl_die() call.  */
11929           saved_external_flag = DECL_EXTERNAL (decl);
11930           DECL_EXTERNAL (decl) = 1;
11931           gen_decl_die (decl, context_die);
11932           DECL_EXTERNAL (decl) = saved_external_flag;
11933           break;
11934
11935         case NAMESPACE_DECL:
11936           dwarf2out_decl (decl);
11937           break;
11938
11939         default:
11940           abort ();
11941         }
11942   
11943       /* See if we can find the die for this deci now.
11944          If not then abort.  */
11945       if (!decl_die)
11946         decl_die = lookup_decl_die (decl);
11947       if (!decl_die)
11948         abort ();
11949     }
11950   
11951   return decl_die;
11952 }
11953
11954 /* Returns the DIE for decl or aborts.  */
11955
11956 static dw_die_ref
11957 force_type_die (tree type)
11958 {
11959   dw_die_ref type_die;
11960
11961   type_die = lookup_type_die (type);
11962   if (!type_die)
11963     {
11964       dw_die_ref context_die;
11965       if (TYPE_CONTEXT (type))
11966         if (TYPE_P (TYPE_CONTEXT (type)))
11967           context_die = force_type_die (TYPE_CONTEXT (type));
11968         else
11969           context_die = force_decl_die (TYPE_CONTEXT (type));
11970       else
11971         context_die = comp_unit_die;
11972
11973       gen_type_die (type, context_die);
11974       type_die = lookup_type_die (type);
11975       if (!type_die)
11976         abort();
11977     }
11978   return type_die;
11979 }
11980
11981 /* Force out any required namespaces to be able to output DECL,
11982    and return the new context_die for it, if it's changed.  */
11983
11984 static dw_die_ref
11985 setup_namespace_context (tree thing, dw_die_ref context_die)
11986 {
11987   tree context = DECL_P (thing) ? DECL_CONTEXT (thing) : TYPE_CONTEXT (thing);
11988   if (context && TREE_CODE (context) == NAMESPACE_DECL)
11989     /* Force out the namespace.  */
11990     context_die = force_decl_die (context);
11991
11992   return context_die;
11993 }
11994
11995 /* Emit a declaration DIE for THING (which is either a DECL or a tagged
11996    type) within its namespace, if appropriate.
11997
11998    For compatibility with older debuggers, namespace DIEs only contain
11999    declarations; all definitions are emitted at CU scope.  */
12000
12001 static void
12002 declare_in_namespace (tree thing, dw_die_ref context_die)
12003 {
12004   dw_die_ref ns_context;
12005
12006   if (debug_info_level <= DINFO_LEVEL_TERSE)
12007     return;
12008
12009   ns_context = setup_namespace_context (thing, context_die);
12010
12011   if (ns_context != context_die)
12012     {
12013       if (DECL_P (thing))
12014         gen_decl_die (thing, ns_context);
12015       else
12016         gen_type_die (thing, ns_context);
12017     }
12018 }
12019
12020 /* Generate a DIE for a namespace or namespace alias.  */
12021
12022 static void
12023 gen_namespace_die (tree decl)
12024 {
12025   dw_die_ref context_die = setup_namespace_context (decl, comp_unit_die);
12026
12027   /* Namespace aliases have a DECL_ABSTRACT_ORIGIN of the namespace
12028      they are an alias of.  */
12029   if (DECL_ABSTRACT_ORIGIN (decl) == NULL)
12030     {
12031       /* Output a real namespace.  */
12032       dw_die_ref namespace_die
12033         = new_die (DW_TAG_namespace, context_die, decl);
12034       add_name_and_src_coords_attributes (namespace_die, decl);
12035       equate_decl_number_to_die (decl, namespace_die);
12036     }
12037   else
12038     {
12039       /* Output a namespace alias.  */
12040
12041       /* Force out the namespace we are an alias of, if necessary.  */
12042       dw_die_ref origin_die
12043         = force_decl_die (DECL_ABSTRACT_ORIGIN (decl));
12044
12045       /* Now create the namespace alias DIE.  */
12046       dw_die_ref namespace_die
12047         = new_die (DW_TAG_imported_declaration, context_die, decl);
12048       add_name_and_src_coords_attributes (namespace_die, decl);
12049       add_AT_die_ref (namespace_die, DW_AT_import, origin_die);
12050       equate_decl_number_to_die (decl, namespace_die);
12051     }
12052 }
12053
12054 /* Generate Dwarf debug information for a decl described by DECL.  */
12055
12056 static void
12057 gen_decl_die (tree decl, dw_die_ref context_die)
12058 {
12059   tree origin;
12060
12061   if (DECL_P (decl) && DECL_IGNORED_P (decl))
12062     return;
12063
12064   switch (TREE_CODE (decl))
12065     {
12066     case ERROR_MARK:
12067       break;
12068
12069     case CONST_DECL:
12070       /* The individual enumerators of an enum type get output when we output
12071          the Dwarf representation of the relevant enum type itself.  */
12072       break;
12073
12074     case FUNCTION_DECL:
12075       /* Don't output any DIEs to represent mere function declarations,
12076          unless they are class members or explicit block externs.  */
12077       if (DECL_INITIAL (decl) == NULL_TREE && DECL_CONTEXT (decl) == NULL_TREE
12078           && (current_function_decl == NULL_TREE || DECL_ARTIFICIAL (decl)))
12079         break;
12080
12081       /* If we're emitting a clone, emit info for the abstract instance.  */
12082       if (DECL_ORIGIN (decl) != decl)
12083         dwarf2out_abstract_function (DECL_ABSTRACT_ORIGIN (decl));
12084
12085       /* If we're emitting an out-of-line copy of an inline function,
12086          emit info for the abstract instance and set up to refer to it.  */
12087       else if (cgraph_function_possibly_inlined_p (decl)
12088                && ! DECL_ABSTRACT (decl)
12089                && ! class_or_namespace_scope_p (context_die)
12090                /* dwarf2out_abstract_function won't emit a die if this is just
12091                   a declaration.  We must avoid setting DECL_ABSTRACT_ORIGIN in
12092                   that case, because that works only if we have a die.  */
12093                && DECL_INITIAL (decl) != NULL_TREE)
12094         {
12095           dwarf2out_abstract_function (decl);
12096           set_decl_origin_self (decl);
12097         }
12098
12099       /* Otherwise we're emitting the primary DIE for this decl.  */
12100       else if (debug_info_level > DINFO_LEVEL_TERSE)
12101         {
12102           /* Before we describe the FUNCTION_DECL itself, make sure that we
12103              have described its return type.  */
12104           gen_type_die (TREE_TYPE (TREE_TYPE (decl)), context_die);
12105
12106           /* And its virtual context.  */
12107           if (DECL_VINDEX (decl) != NULL_TREE)
12108             gen_type_die (DECL_CONTEXT (decl), context_die);
12109
12110           /* And its containing type.  */
12111           origin = decl_class_context (decl);
12112           if (origin != NULL_TREE)
12113             gen_type_die_for_member (origin, decl, context_die);
12114
12115           /* And its containing namespace.  */
12116           declare_in_namespace (decl, context_die);
12117         }
12118
12119       /* Now output a DIE to represent the function itself.  */
12120       gen_subprogram_die (decl, context_die);
12121       break;
12122
12123     case TYPE_DECL:
12124       /* If we are in terse mode, don't generate any DIEs to represent any
12125          actual typedefs.  */
12126       if (debug_info_level <= DINFO_LEVEL_TERSE)
12127         break;
12128
12129       /* In the special case of a TYPE_DECL node representing the declaration
12130          of some type tag, if the given TYPE_DECL is marked as having been
12131          instantiated from some other (original) TYPE_DECL node (e.g. one which
12132          was generated within the original definition of an inline function) we
12133          have to generate a special (abbreviated) DW_TAG_structure_type,
12134          DW_TAG_union_type, or DW_TAG_enumeration_type DIE here.  */
12135       if (TYPE_DECL_IS_STUB (decl) && decl_ultimate_origin (decl) != NULL_TREE)
12136         {
12137           gen_tagged_type_instantiation_die (TREE_TYPE (decl), context_die);
12138           break;
12139         }
12140
12141       if (is_redundant_typedef (decl))
12142         gen_type_die (TREE_TYPE (decl), context_die);
12143       else
12144         /* Output a DIE to represent the typedef itself.  */
12145         gen_typedef_die (decl, context_die);
12146       break;
12147
12148     case LABEL_DECL:
12149       if (debug_info_level >= DINFO_LEVEL_NORMAL)
12150         gen_label_die (decl, context_die);
12151       break;
12152
12153     case VAR_DECL:
12154       /* If we are in terse mode, don't generate any DIEs to represent any
12155          variable declarations or definitions.  */
12156       if (debug_info_level <= DINFO_LEVEL_TERSE)
12157         break;
12158
12159       /* Output any DIEs that are needed to specify the type of this data
12160          object.  */
12161       gen_type_die (TREE_TYPE (decl), context_die);
12162
12163       /* And its containing type.  */
12164       origin = decl_class_context (decl);
12165       if (origin != NULL_TREE)
12166         gen_type_die_for_member (origin, decl, context_die);
12167
12168       /* And its containing namespace.  */
12169       declare_in_namespace (decl, context_die);
12170
12171       /* Now output the DIE to represent the data object itself.  This gets
12172          complicated because of the possibility that the VAR_DECL really
12173          represents an inlined instance of a formal parameter for an inline
12174          function.  */
12175       origin = decl_ultimate_origin (decl);
12176       if (origin != NULL_TREE && TREE_CODE (origin) == PARM_DECL)
12177         gen_formal_parameter_die (decl, context_die);
12178       else
12179         gen_variable_die (decl, context_die);
12180       break;
12181
12182     case FIELD_DECL:
12183       /* Ignore the nameless fields that are used to skip bits but handle C++
12184          anonymous unions.  */
12185       if (DECL_NAME (decl) != NULL_TREE
12186           || TREE_CODE (TREE_TYPE (decl)) == UNION_TYPE)
12187         {
12188           gen_type_die (member_declared_type (decl), context_die);
12189           gen_field_die (decl, context_die);
12190         }
12191       break;
12192
12193     case PARM_DECL:
12194       gen_type_die (TREE_TYPE (decl), context_die);
12195       gen_formal_parameter_die (decl, context_die);
12196       break;
12197
12198     case NAMESPACE_DECL:
12199       gen_namespace_die (decl);
12200       break;
12201
12202     default:
12203       if ((int)TREE_CODE (decl) > NUM_TREE_CODES)
12204         /* Probably some frontend-internal decl.  Assume we don't care.  */
12205         break;
12206       abort ();
12207     }
12208 }
12209 \f
12210 /* Add Ada "use" clause information for SGI Workshop debugger.  */
12211
12212 void
12213 dwarf2out_add_library_unit_info (const char *filename, const char *context_list)
12214 {
12215   unsigned int file_index;
12216
12217   if (filename != NULL)
12218     {
12219       dw_die_ref unit_die = new_die (DW_TAG_module, comp_unit_die, NULL);
12220       tree context_list_decl
12221         = build_decl (LABEL_DECL, get_identifier (context_list),
12222                       void_type_node);
12223
12224       TREE_PUBLIC (context_list_decl) = TRUE;
12225       add_name_attribute (unit_die, context_list);
12226       file_index = lookup_filename (filename);
12227       add_AT_unsigned (unit_die, DW_AT_decl_file, file_index);
12228       add_pubname (context_list_decl, unit_die);
12229     }
12230 }
12231
12232 /* Output debug information for global decl DECL.  Called from toplev.c after
12233    compilation proper has finished.  */
12234
12235 static void
12236 dwarf2out_global_decl (tree decl)
12237 {
12238   /* Output DWARF2 information for file-scope tentative data object
12239      declarations, file-scope (extern) function declarations (which had no
12240      corresponding body) and file-scope tagged type declarations and
12241      definitions which have not yet been forced out.  */
12242   if (TREE_CODE (decl) != FUNCTION_DECL || !DECL_INITIAL (decl))
12243     dwarf2out_decl (decl);
12244 }
12245
12246 /* Output debug information for imported module or decl.  */ 
12247  
12248 static void
12249 dwarf2out_imported_module_or_decl (tree decl, tree context)
12250 {
12251   dw_die_ref imported_die, at_import_die;
12252   dw_die_ref scope_die;
12253   unsigned file_index;
12254   
12255   if (debug_info_level <= DINFO_LEVEL_TERSE)
12256     return;
12257
12258   if (!decl)
12259     abort ();
12260
12261   /* To emit DW_TAG_imported_module or DW_TAG_imported_decl, we need two DIEs.
12262      We need decl DIE for reference and scope die. First, get DIE for the decl 
12263      itself.  */
12264
12265   /* Get the scope die for decl context. Use comp_unit_die for global module
12266      or decl. If die is not found for non globals, force new die.  */
12267   if (!context)
12268     scope_die = comp_unit_die;
12269   else if (TYPE_P (context))
12270     scope_die = force_type_die (context);
12271   else
12272     scope_die = force_decl_die (context);
12273
12274   /* For TYPE_DECL, lookup TREE_TYPE.  */
12275   if (TREE_CODE (decl) == TYPE_DECL)
12276     at_import_die = force_type_die (TREE_TYPE (decl));
12277   else
12278     at_import_die = force_decl_die (decl);
12279   
12280   /* OK, now we have DIEs for decl as well as scope. Emit imported die.  */ 
12281   if (TREE_CODE (decl) == NAMESPACE_DECL)
12282     imported_die = new_die (DW_TAG_imported_module, scope_die, context);
12283   else
12284     imported_die = new_die (DW_TAG_imported_declaration, scope_die, context);
12285   
12286   file_index = lookup_filename (input_filename);
12287   add_AT_unsigned (imported_die, DW_AT_decl_file, file_index);
12288   add_AT_unsigned (imported_die, DW_AT_decl_line, input_line);
12289   add_AT_die_ref (imported_die, DW_AT_import, at_import_die);
12290 }
12291
12292 /* Write the debugging output for DECL.  */
12293
12294 void
12295 dwarf2out_decl (tree decl)
12296 {
12297   dw_die_ref context_die = comp_unit_die;
12298
12299   switch (TREE_CODE (decl))
12300     {
12301     case ERROR_MARK:
12302       return;
12303
12304     case FUNCTION_DECL:
12305       /* Ignore this FUNCTION_DECL if it refers to a builtin declaration of a
12306          builtin function.  Explicit programmer-supplied declarations of
12307          these same functions should NOT be ignored however.  */
12308       if (DECL_EXTERNAL (decl) && DECL_BUILT_IN (decl))
12309         return;
12310
12311       /* What we would really like to do here is to filter out all mere
12312          file-scope declarations of file-scope functions which are never
12313          referenced later within this translation unit (and keep all of ones
12314          that *are* referenced later on) but we aren't clairvoyant, so we have
12315          no idea which functions will be referenced in the future (i.e. later
12316          on within the current translation unit). So here we just ignore all
12317          file-scope function declarations which are not also definitions.  If
12318          and when the debugger needs to know something about these functions,
12319          it will have to hunt around and find the DWARF information associated
12320          with the definition of the function.
12321
12322          We can't just check DECL_EXTERNAL to find out which FUNCTION_DECL
12323          nodes represent definitions and which ones represent mere
12324          declarations.  We have to check DECL_INITIAL instead. That's because
12325          the C front-end supports some weird semantics for "extern inline"
12326          function definitions.  These can get inlined within the current
12327          translation unit (an thus, we need to generate Dwarf info for their
12328          abstract instances so that the Dwarf info for the concrete inlined
12329          instances can have something to refer to) but the compiler never
12330          generates any out-of-lines instances of such things (despite the fact
12331          that they *are* definitions).
12332
12333          The important point is that the C front-end marks these "extern
12334          inline" functions as DECL_EXTERNAL, but we need to generate DWARF for
12335          them anyway. Note that the C++ front-end also plays some similar games
12336          for inline function definitions appearing within include files which
12337          also contain `#pragma interface' pragmas.  */
12338       if (DECL_INITIAL (decl) == NULL_TREE)
12339         return;
12340
12341       /* If we're a nested function, initially use a parent of NULL; if we're
12342          a plain function, this will be fixed up in decls_for_scope.  If
12343          we're a method, it will be ignored, since we already have a DIE.  */
12344       if (decl_function_context (decl)
12345           /* But if we're in terse mode, we don't care about scope.  */
12346           && debug_info_level > DINFO_LEVEL_TERSE)
12347         context_die = NULL;
12348       break;
12349
12350     case VAR_DECL:
12351       /* Ignore this VAR_DECL if it refers to a file-scope extern data object
12352          declaration and if the declaration was never even referenced from
12353          within this entire compilation unit.  We suppress these DIEs in
12354          order to save space in the .debug section (by eliminating entries
12355          which are probably useless).  Note that we must not suppress
12356          block-local extern declarations (whether used or not) because that
12357          would screw-up the debugger's name lookup mechanism and cause it to
12358          miss things which really ought to be in scope at a given point.  */
12359       if (DECL_EXTERNAL (decl) && !TREE_USED (decl))
12360         return;
12361
12362       /* If we are in terse mode, don't generate any DIEs to represent any
12363          variable declarations or definitions.  */
12364       if (debug_info_level <= DINFO_LEVEL_TERSE)
12365         return;
12366       break;
12367
12368     case NAMESPACE_DECL:
12369       if (debug_info_level <= DINFO_LEVEL_TERSE)
12370         return;
12371       if (lookup_decl_die (decl) != NULL)
12372         return;
12373       break;
12374
12375     case TYPE_DECL:
12376       /* Don't emit stubs for types unless they are needed by other DIEs.  */
12377       if (TYPE_DECL_SUPPRESS_DEBUG (decl))
12378         return;
12379
12380       /* Don't bother trying to generate any DIEs to represent any of the
12381          normal built-in types for the language we are compiling.  */
12382       if (DECL_SOURCE_LINE (decl) == 0)
12383         {
12384           /* OK, we need to generate one for `bool' so GDB knows what type
12385              comparisons have.  */
12386           if ((get_AT_unsigned (comp_unit_die, DW_AT_language)
12387                == DW_LANG_C_plus_plus)
12388               && TREE_CODE (TREE_TYPE (decl)) == BOOLEAN_TYPE
12389               && ! DECL_IGNORED_P (decl))
12390             modified_type_die (TREE_TYPE (decl), 0, 0, NULL);
12391
12392           return;
12393         }
12394
12395       /* If we are in terse mode, don't generate any DIEs for types.  */
12396       if (debug_info_level <= DINFO_LEVEL_TERSE)
12397         return;
12398
12399       /* If we're a function-scope tag, initially use a parent of NULL;
12400          this will be fixed up in decls_for_scope.  */
12401       if (decl_function_context (decl))
12402         context_die = NULL;
12403
12404       break;
12405
12406     default:
12407       return;
12408     }
12409
12410   gen_decl_die (decl, context_die);
12411 }
12412
12413 /* Output a marker (i.e. a label) for the beginning of the generated code for
12414    a lexical block.  */
12415
12416 static void
12417 dwarf2out_begin_block (unsigned int line ATTRIBUTE_UNUSED,
12418                        unsigned int blocknum)
12419 {
12420   function_section (current_function_decl);
12421   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_BEGIN_LABEL, blocknum);
12422 }
12423
12424 /* Output a marker (i.e. a label) for the end of the generated code for a
12425    lexical block.  */
12426
12427 static void
12428 dwarf2out_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int blocknum)
12429 {
12430   function_section (current_function_decl);
12431   ASM_OUTPUT_DEBUG_LABEL (asm_out_file, BLOCK_END_LABEL, blocknum);
12432 }
12433
12434 /* Returns nonzero if it is appropriate not to emit any debugging
12435    information for BLOCK, because it doesn't contain any instructions.
12436
12437    Don't allow this for blocks with nested functions or local classes
12438    as we would end up with orphans, and in the presence of scheduling
12439    we may end up calling them anyway.  */
12440
12441 static bool
12442 dwarf2out_ignore_block (tree block)
12443 {
12444   tree decl;
12445
12446   for (decl = BLOCK_VARS (block); decl; decl = TREE_CHAIN (decl))
12447     if (TREE_CODE (decl) == FUNCTION_DECL
12448         || (TREE_CODE (decl) == TYPE_DECL && TYPE_DECL_IS_STUB (decl)))
12449       return 0;
12450
12451   return 1;
12452 }
12453
12454 /* Lookup FILE_NAME (in the list of filenames that we know about here in
12455    dwarf2out.c) and return its "index".  The index of each (known) filename is
12456    just a unique number which is associated with only that one filename.  We
12457    need such numbers for the sake of generating labels (in the .debug_sfnames
12458    section) and references to those files numbers (in the .debug_srcinfo
12459    and.debug_macinfo sections).  If the filename given as an argument is not
12460    found in our current list, add it to the list and assign it the next
12461    available unique index number.  In order to speed up searches, we remember
12462    the index of the filename was looked up last.  This handles the majority of
12463    all searches.  */
12464
12465 static unsigned
12466 lookup_filename (const char *file_name)
12467 {
12468   size_t i, n;
12469   char *save_file_name;
12470
12471   /* Check to see if the file name that was searched on the previous
12472      call matches this file name.  If so, return the index.  */
12473   if (file_table_last_lookup_index != 0)
12474     {
12475       const char *last
12476         = VARRAY_CHAR_PTR (file_table, file_table_last_lookup_index);
12477       if (strcmp (file_name, last) == 0)
12478         return file_table_last_lookup_index;
12479     }
12480
12481   /* Didn't match the previous lookup, search the table */
12482   n = VARRAY_ACTIVE_SIZE (file_table);
12483   for (i = 1; i < n; i++)
12484     if (strcmp (file_name, VARRAY_CHAR_PTR (file_table, i)) == 0)
12485       {
12486         file_table_last_lookup_index = i;
12487         return i;
12488       }
12489
12490   /* Add the new entry to the end of the filename table.  */
12491   file_table_last_lookup_index = n;
12492   save_file_name = (char *) ggc_strdup (file_name);
12493   VARRAY_PUSH_CHAR_PTR (file_table, save_file_name);
12494   VARRAY_PUSH_UINT (file_table_emitted, 0);
12495
12496   return i;
12497 }
12498
12499 static int
12500 maybe_emit_file (int fileno)
12501 {
12502   if (DWARF2_ASM_LINE_DEBUG_INFO && fileno > 0)
12503     {
12504       if (!VARRAY_UINT (file_table_emitted, fileno))
12505         {
12506           VARRAY_UINT (file_table_emitted, fileno) = ++emitcount;
12507           fprintf (asm_out_file, "\t.file %u ",
12508                    VARRAY_UINT (file_table_emitted, fileno));
12509           output_quoted_string (asm_out_file,
12510                                 VARRAY_CHAR_PTR (file_table, fileno));
12511           fputc ('\n', asm_out_file);
12512         }
12513       return VARRAY_UINT (file_table_emitted, fileno);
12514     }
12515   else
12516     return fileno;
12517 }
12518
12519 static void
12520 init_file_table (void)
12521 {
12522   /* Allocate the initial hunk of the file_table.  */
12523   VARRAY_CHAR_PTR_INIT (file_table, 64, "file_table");
12524   VARRAY_UINT_INIT (file_table_emitted, 64, "file_table_emitted");
12525
12526   /* Skip the first entry - file numbers begin at 1.  */
12527   VARRAY_PUSH_CHAR_PTR (file_table, NULL);
12528   VARRAY_PUSH_UINT (file_table_emitted, 0);
12529   file_table_last_lookup_index = 0;
12530 }
12531
12532 /* Output a label to mark the beginning of a source code line entry
12533    and record information relating to this source line, in
12534    'line_info_table' for later output of the .debug_line section.  */
12535
12536 static void
12537 dwarf2out_source_line (unsigned int line, const char *filename)
12538 {
12539   if (debug_info_level >= DINFO_LEVEL_NORMAL
12540       && line != 0)
12541     {
12542       function_section (current_function_decl);
12543
12544       /* If requested, emit something human-readable.  */
12545       if (flag_debug_asm)
12546         fprintf (asm_out_file, "\t%s %s:%d\n", ASM_COMMENT_START,
12547                  filename, line);
12548
12549       if (DWARF2_ASM_LINE_DEBUG_INFO)
12550         {
12551           unsigned file_num = lookup_filename (filename);
12552
12553           file_num = maybe_emit_file (file_num);
12554
12555           /* Emit the .loc directive understood by GNU as.  */
12556           fprintf (asm_out_file, "\t.loc %d %d 0\n", file_num, line);
12557
12558           /* Indicate that line number info exists.  */
12559           line_info_table_in_use++;
12560
12561           /* Indicate that multiple line number tables exist.  */
12562           if (DECL_SECTION_NAME (current_function_decl))
12563             separate_line_info_table_in_use++;
12564         }
12565       else if (DECL_SECTION_NAME (current_function_decl))
12566         {
12567           dw_separate_line_info_ref line_info;
12568           (*targetm.asm_out.internal_label) (asm_out_file, SEPARATE_LINE_CODE_LABEL,
12569                                      separate_line_info_table_in_use);
12570
12571           /* expand the line info table if necessary */
12572           if (separate_line_info_table_in_use
12573               == separate_line_info_table_allocated)
12574             {
12575               separate_line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
12576               separate_line_info_table
12577                 = ggc_realloc (separate_line_info_table,
12578                                separate_line_info_table_allocated
12579                                * sizeof (dw_separate_line_info_entry));
12580               memset (separate_line_info_table
12581                        + separate_line_info_table_in_use,
12582                       0,
12583                       (LINE_INFO_TABLE_INCREMENT
12584                        * sizeof (dw_separate_line_info_entry)));
12585             }
12586
12587           /* Add the new entry at the end of the line_info_table.  */
12588           line_info
12589             = &separate_line_info_table[separate_line_info_table_in_use++];
12590           line_info->dw_file_num = lookup_filename (filename);
12591           line_info->dw_line_num = line;
12592           line_info->function = current_function_funcdef_no;
12593         }
12594       else
12595         {
12596           dw_line_info_ref line_info;
12597
12598           (*targetm.asm_out.internal_label) (asm_out_file, LINE_CODE_LABEL,
12599                                      line_info_table_in_use);
12600
12601           /* Expand the line info table if necessary.  */
12602           if (line_info_table_in_use == line_info_table_allocated)
12603             {
12604               line_info_table_allocated += LINE_INFO_TABLE_INCREMENT;
12605               line_info_table
12606                 = ggc_realloc (line_info_table,
12607                                (line_info_table_allocated
12608                                 * sizeof (dw_line_info_entry)));
12609               memset (line_info_table + line_info_table_in_use, 0,
12610                       LINE_INFO_TABLE_INCREMENT * sizeof (dw_line_info_entry));
12611             }
12612
12613           /* Add the new entry at the end of the line_info_table.  */
12614           line_info = &line_info_table[line_info_table_in_use++];
12615           line_info->dw_file_num = lookup_filename (filename);
12616           line_info->dw_line_num = line;
12617         }
12618     }
12619 }
12620
12621 /* Record the beginning of a new source file.  */
12622
12623 static void
12624 dwarf2out_start_source_file (unsigned int lineno, const char *filename)
12625 {
12626   if (flag_eliminate_dwarf2_dups)
12627     {
12628       /* Record the beginning of the file for break_out_includes.  */
12629       dw_die_ref bincl_die;
12630
12631       bincl_die = new_die (DW_TAG_GNU_BINCL, comp_unit_die, NULL);
12632       add_AT_string (bincl_die, DW_AT_name, filename);
12633     }
12634
12635   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
12636     {
12637       named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
12638       dw2_asm_output_data (1, DW_MACINFO_start_file, "Start new file");
12639       dw2_asm_output_data_uleb128 (lineno, "Included from line number %d",
12640                                    lineno);
12641       maybe_emit_file (lookup_filename (filename));
12642       dw2_asm_output_data_uleb128 (lookup_filename (filename),
12643                                    "Filename we just started");
12644     }
12645 }
12646
12647 /* Record the end of a source file.  */
12648
12649 static void
12650 dwarf2out_end_source_file (unsigned int lineno ATTRIBUTE_UNUSED)
12651 {
12652   if (flag_eliminate_dwarf2_dups)
12653     /* Record the end of the file for break_out_includes.  */
12654     new_die (DW_TAG_GNU_EINCL, comp_unit_die, NULL);
12655
12656   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
12657     {
12658       named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
12659       dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
12660     }
12661 }
12662
12663 /* Called from debug_define in toplev.c.  The `buffer' parameter contains
12664    the tail part of the directive line, i.e. the part which is past the
12665    initial whitespace, #, whitespace, directive-name, whitespace part.  */
12666
12667 static void
12668 dwarf2out_define (unsigned int lineno ATTRIBUTE_UNUSED,
12669                   const char *buffer ATTRIBUTE_UNUSED)
12670 {
12671   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
12672     {
12673       named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
12674       dw2_asm_output_data (1, DW_MACINFO_define, "Define macro");
12675       dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
12676       dw2_asm_output_nstring (buffer, -1, "The macro");
12677     }
12678 }
12679
12680 /* Called from debug_undef in toplev.c.  The `buffer' parameter contains
12681    the tail part of the directive line, i.e. the part which is past the
12682    initial whitespace, #, whitespace, directive-name, whitespace part.  */
12683
12684 static void
12685 dwarf2out_undef (unsigned int lineno ATTRIBUTE_UNUSED,
12686                  const char *buffer ATTRIBUTE_UNUSED)
12687 {
12688   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
12689     {
12690       named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
12691       dw2_asm_output_data (1, DW_MACINFO_undef, "Undefine macro");
12692       dw2_asm_output_data_uleb128 (lineno, "At line number %d", lineno);
12693       dw2_asm_output_nstring (buffer, -1, "The macro");
12694     }
12695 }
12696
12697 /* Set up for Dwarf output at the start of compilation.  */
12698
12699 static void
12700 dwarf2out_init (const char *filename ATTRIBUTE_UNUSED)
12701 {
12702   init_file_table ();
12703
12704   /* Allocate the initial hunk of the decl_die_table.  */
12705   decl_die_table = htab_create_ggc (10, decl_die_table_hash,
12706                                     decl_die_table_eq, NULL);
12707
12708   /* Allocate the initial hunk of the decl_scope_table.  */
12709   VARRAY_TREE_INIT (decl_scope_table, 256, "decl_scope_table");
12710
12711   /* Allocate the initial hunk of the abbrev_die_table.  */
12712   abbrev_die_table = ggc_alloc_cleared (ABBREV_DIE_TABLE_INCREMENT
12713                                         * sizeof (dw_die_ref));
12714   abbrev_die_table_allocated = ABBREV_DIE_TABLE_INCREMENT;
12715   /* Zero-th entry is allocated, but unused */
12716   abbrev_die_table_in_use = 1;
12717
12718   /* Allocate the initial hunk of the line_info_table.  */
12719   line_info_table = ggc_alloc_cleared (LINE_INFO_TABLE_INCREMENT
12720                                        * sizeof (dw_line_info_entry));
12721   line_info_table_allocated = LINE_INFO_TABLE_INCREMENT;
12722
12723   /* Zero-th entry is allocated, but unused */
12724   line_info_table_in_use = 1;
12725
12726   /* Generate the initial DIE for the .debug section.  Note that the (string)
12727      value given in the DW_AT_name attribute of the DW_TAG_compile_unit DIE
12728      will (typically) be a relative pathname and that this pathname should be
12729      taken as being relative to the directory from which the compiler was
12730      invoked when the given (base) source file was compiled.  We will fill
12731      in this value in dwarf2out_finish.  */
12732   comp_unit_die = gen_compile_unit_die (NULL);
12733
12734   VARRAY_TREE_INIT (incomplete_types, 64, "incomplete_types");
12735
12736   VARRAY_RTX_INIT (used_rtx_varray, 32, "used_rtx_varray");
12737
12738   ASM_GENERATE_INTERNAL_LABEL (text_end_label, TEXT_END_LABEL, 0);
12739   ASM_GENERATE_INTERNAL_LABEL (abbrev_section_label,
12740                                DEBUG_ABBREV_SECTION_LABEL, 0);
12741   if (DWARF2_GENERATE_TEXT_SECTION_LABEL)
12742     ASM_GENERATE_INTERNAL_LABEL (text_section_label, TEXT_SECTION_LABEL, 0);
12743   else
12744     strcpy (text_section_label, stripattributes (TEXT_SECTION_NAME));
12745
12746   ASM_GENERATE_INTERNAL_LABEL (debug_info_section_label,
12747                                DEBUG_INFO_SECTION_LABEL, 0);
12748   ASM_GENERATE_INTERNAL_LABEL (debug_line_section_label,
12749                                DEBUG_LINE_SECTION_LABEL, 0);
12750   ASM_GENERATE_INTERNAL_LABEL (ranges_section_label,
12751                                DEBUG_RANGES_SECTION_LABEL, 0);
12752   named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
12753   ASM_OUTPUT_LABEL (asm_out_file, abbrev_section_label);
12754   named_section_flags (DEBUG_INFO_SECTION, SECTION_DEBUG);
12755   ASM_OUTPUT_LABEL (asm_out_file, debug_info_section_label);
12756   named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
12757   ASM_OUTPUT_LABEL (asm_out_file, debug_line_section_label);
12758
12759   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
12760     {
12761       named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
12762       ASM_GENERATE_INTERNAL_LABEL (macinfo_section_label,
12763                                    DEBUG_MACINFO_SECTION_LABEL, 0);
12764       ASM_OUTPUT_LABEL (asm_out_file, macinfo_section_label);
12765     }
12766
12767   if (DWARF2_GENERATE_TEXT_SECTION_LABEL)
12768     {
12769       text_section ();
12770       ASM_OUTPUT_LABEL (asm_out_file, text_section_label);
12771     }
12772 }
12773
12774 /* A helper function for dwarf2out_finish called through
12775    ht_forall.  Emit one queued .debug_str string.  */
12776
12777 static int
12778 output_indirect_string (void **h, void *v ATTRIBUTE_UNUSED)
12779 {
12780   struct indirect_string_node *node = (struct indirect_string_node *) *h;
12781
12782   if (node->form == DW_FORM_strp)
12783     {
12784       named_section_flags (DEBUG_STR_SECTION, DEBUG_STR_SECTION_FLAGS);
12785       ASM_OUTPUT_LABEL (asm_out_file, node->label);
12786       assemble_string (node->str, strlen (node->str) + 1);
12787     }
12788
12789   return 1;
12790 }
12791
12792
12793
12794 /* Clear the marks for a die and its children.
12795    Be cool if the mark isn't set.  */
12796
12797 static void
12798 prune_unmark_dies (dw_die_ref die)
12799 {
12800   dw_die_ref c;
12801   die->die_mark = 0;
12802   for (c = die->die_child; c; c = c->die_sib)
12803     prune_unmark_dies (c);
12804 }
12805
12806
12807 /* Given DIE that we're marking as used, find any other dies
12808    it references as attributes and mark them as used.  */
12809
12810 static void
12811 prune_unused_types_walk_attribs (dw_die_ref die)
12812 {
12813   dw_attr_ref a;
12814
12815   for (a = die->die_attr; a != NULL; a = a->dw_attr_next)
12816     {
12817       if (a->dw_attr_val.val_class == dw_val_class_die_ref)
12818         {
12819           /* A reference to another DIE.
12820              Make sure that it will get emitted.  */
12821           prune_unused_types_mark (a->dw_attr_val.v.val_die_ref.die, 1);
12822         }
12823       else if (a->dw_attr == DW_AT_decl_file)
12824         {
12825           /* A reference to a file.  Make sure the file name is emitted.  */
12826           a->dw_attr_val.v.val_unsigned =
12827             maybe_emit_file (a->dw_attr_val.v.val_unsigned);
12828         }
12829     }
12830 }
12831
12832
12833 /* Mark DIE as being used.  If DOKIDS is true, then walk down
12834    to DIE's children.  */
12835
12836 static void
12837 prune_unused_types_mark (dw_die_ref die, int dokids)
12838 {
12839   dw_die_ref c;
12840
12841   if (die->die_mark == 0)
12842     {
12843       /* We haven't done this node yet.  Mark it as used.  */
12844       die->die_mark = 1;
12845
12846       /* We also have to mark its parents as used.
12847          (But we don't want to mark our parents' kids due to this.)  */
12848       if (die->die_parent)
12849         prune_unused_types_mark (die->die_parent, 0);
12850
12851       /* Mark any referenced nodes.  */
12852       prune_unused_types_walk_attribs (die);
12853
12854       /* If this node is a specification,
12855          also mark the definition, if it exists.  */
12856       if (get_AT_flag (die, DW_AT_declaration) && die->die_definition)
12857         prune_unused_types_mark (die->die_definition, 1);
12858     }
12859
12860   if (dokids && die->die_mark != 2)
12861     {
12862       /* We need to walk the children, but haven't done so yet.
12863          Remember that we've walked the kids.  */
12864       die->die_mark = 2;
12865
12866       /* Walk them.  */
12867       for (c = die->die_child; c; c = c->die_sib)
12868         {
12869           /* If this is an array type, we need to make sure our
12870              kids get marked, even if they're types.  */
12871           if (die->die_tag == DW_TAG_array_type)
12872             prune_unused_types_mark (c, 1);
12873           else
12874             prune_unused_types_walk (c);
12875         }
12876     }
12877 }
12878
12879
12880 /* Walk the tree DIE and mark types that we actually use.  */
12881
12882 static void
12883 prune_unused_types_walk (dw_die_ref die)
12884 {
12885   dw_die_ref c;
12886
12887   /* Don't do anything if this node is already marked.  */
12888   if (die->die_mark)
12889     return;
12890
12891   switch (die->die_tag) {
12892   case DW_TAG_const_type:
12893   case DW_TAG_packed_type:
12894   case DW_TAG_pointer_type:
12895   case DW_TAG_reference_type:
12896   case DW_TAG_volatile_type:
12897   case DW_TAG_typedef:
12898   case DW_TAG_array_type:
12899   case DW_TAG_structure_type:
12900   case DW_TAG_union_type:
12901   case DW_TAG_class_type:
12902   case DW_TAG_friend:
12903   case DW_TAG_variant_part:
12904   case DW_TAG_enumeration_type:
12905   case DW_TAG_subroutine_type:
12906   case DW_TAG_string_type:
12907   case DW_TAG_set_type:
12908   case DW_TAG_subrange_type:
12909   case DW_TAG_ptr_to_member_type:
12910   case DW_TAG_file_type:
12911     /* It's a type node --- don't mark it.  */
12912     return;
12913
12914   default:
12915     /* Mark everything else.  */
12916     break;
12917   }
12918
12919   die->die_mark = 1;
12920
12921   /* Now, mark any dies referenced from here.  */
12922   prune_unused_types_walk_attribs (die);
12923
12924   /* Mark children.  */
12925   for (c = die->die_child; c; c = c->die_sib)
12926     prune_unused_types_walk (c);
12927 }
12928
12929
12930 /* Remove from the tree DIE any dies that aren't marked.  */
12931
12932 static void
12933 prune_unused_types_prune (dw_die_ref die)
12934 {
12935   dw_die_ref c, p, n;
12936   if (!die->die_mark)
12937     abort();
12938
12939   p = NULL;
12940   for (c = die->die_child; c; c = n)
12941     {
12942       n = c->die_sib;
12943       if (c->die_mark)
12944         {
12945           prune_unused_types_prune (c);
12946           p = c;
12947         }
12948       else
12949         {
12950           if (p)
12951             p->die_sib = n;
12952           else
12953             die->die_child = n;
12954           free_die (c);
12955         }
12956     }
12957 }
12958
12959
12960 /* Remove dies representing declarations that we never use.  */
12961
12962 static void
12963 prune_unused_types (void)
12964 {
12965   unsigned int i;
12966   limbo_die_node *node;
12967
12968   /* Clear all the marks.  */
12969   prune_unmark_dies (comp_unit_die);
12970   for (node = limbo_die_list; node; node = node->next)
12971     prune_unmark_dies (node->die);
12972
12973   /* Set the mark on nodes that are actually used.  */
12974   prune_unused_types_walk (comp_unit_die);
12975   for (node = limbo_die_list; node; node = node->next)
12976     prune_unused_types_walk (node->die);
12977
12978   /* Also set the mark on nodes referenced from the
12979      pubname_table or arange_table.  */
12980   for (i = 0; i < pubname_table_in_use; i++)
12981     prune_unused_types_mark (pubname_table[i].die, 1);
12982   for (i = 0; i < arange_table_in_use; i++)
12983     prune_unused_types_mark (arange_table[i], 1);
12984
12985   /* Get rid of nodes that aren't marked.  */
12986   prune_unused_types_prune (comp_unit_die);
12987   for (node = limbo_die_list; node; node = node->next)
12988     prune_unused_types_prune (node->die);
12989
12990   /* Leave the marks clear.  */
12991   prune_unmark_dies (comp_unit_die);
12992   for (node = limbo_die_list; node; node = node->next)
12993     prune_unmark_dies (node->die);
12994 }
12995
12996 /* Output stuff that dwarf requires at the end of every file,
12997    and generate the DWARF-2 debugging info.  */
12998
12999 static void
13000 dwarf2out_finish (const char *filename)
13001 {
13002   limbo_die_node *node, *next_node;
13003   dw_die_ref die = 0;
13004
13005   /* Add the name for the main input file now.  We delayed this from
13006      dwarf2out_init to avoid complications with PCH.  */
13007   add_name_attribute (comp_unit_die, filename);
13008   if (filename[0] != DIR_SEPARATOR)
13009     add_comp_dir_attribute (comp_unit_die);
13010   else if (get_AT (comp_unit_die, DW_AT_comp_dir) == NULL)
13011     {
13012       size_t i;
13013       for (i = 1; i < VARRAY_ACTIVE_SIZE (file_table); i++)
13014         if (VARRAY_CHAR_PTR (file_table, i)[0] != DIR_SEPARATOR
13015             /* Don't add cwd for <built-in>.  */
13016             && VARRAY_CHAR_PTR (file_table, i)[0] != '<')
13017           {
13018             add_comp_dir_attribute (comp_unit_die);
13019             break;
13020           }
13021     }
13022
13023   /* Traverse the limbo die list, and add parent/child links.  The only
13024      dies without parents that should be here are concrete instances of
13025      inline functions, and the comp_unit_die.  We can ignore the comp_unit_die.
13026      For concrete instances, we can get the parent die from the abstract
13027      instance.  */
13028   for (node = limbo_die_list; node; node = next_node)
13029     {
13030       next_node = node->next;
13031       die = node->die;
13032
13033       if (die->die_parent == NULL)
13034         {
13035           dw_die_ref origin = get_AT_ref (die, DW_AT_abstract_origin);
13036           tree context;
13037
13038           if (origin)
13039             add_child_die (origin->die_parent, die);
13040           else if (die == comp_unit_die)
13041             ;
13042           /* If this was an expression for a bound involved in a function
13043              return type, it may be a SAVE_EXPR for which we weren't able
13044              to find a DIE previously.  So try now.  */
13045           else if (node->created_for
13046                    && TREE_CODE (node->created_for) == SAVE_EXPR
13047                    && 0 != (origin = (lookup_decl_die
13048                                       (SAVE_EXPR_CONTEXT
13049                                        (node->created_for)))))
13050             add_child_die (origin, die);
13051           else if (errorcount > 0 || sorrycount > 0)
13052             /* It's OK to be confused by errors in the input.  */
13053             add_child_die (comp_unit_die, die);
13054           else if (node->created_for
13055                    && ((DECL_P (node->created_for)
13056                         && (context = DECL_CONTEXT (node->created_for)))
13057                        || (TYPE_P (node->created_for)
13058                            && (context = TYPE_CONTEXT (node->created_for))))
13059                    && TREE_CODE (context) == FUNCTION_DECL)
13060             {
13061               /* In certain situations, the lexical block containing a
13062                  nested function can be optimized away, which results
13063                  in the nested function die being orphaned.  Likewise
13064                  with the return type of that nested function.  Force
13065                  this to be a child of the containing function.  */
13066               origin = lookup_decl_die (context);
13067               if (! origin)
13068                 abort ();
13069               add_child_die (origin, die);
13070             }
13071           else
13072             abort ();
13073         }
13074     }
13075
13076   limbo_die_list = NULL;
13077
13078   /* Walk through the list of incomplete types again, trying once more to
13079      emit full debugging info for them.  */
13080   retry_incomplete_types ();
13081
13082   /* We need to reverse all the dies before break_out_includes, or
13083      we'll see the end of an include file before the beginning.  */
13084   reverse_all_dies (comp_unit_die);
13085
13086   if (flag_eliminate_unused_debug_types)
13087     prune_unused_types ();
13088
13089   /* Generate separate CUs for each of the include files we've seen.
13090      They will go into limbo_die_list.  */
13091   if (flag_eliminate_dwarf2_dups)
13092     break_out_includes (comp_unit_die);
13093
13094   /* Traverse the DIE's and add add sibling attributes to those DIE's
13095      that have children.  */
13096   add_sibling_attributes (comp_unit_die);
13097   for (node = limbo_die_list; node; node = node->next)
13098     add_sibling_attributes (node->die);
13099
13100   /* Output a terminator label for the .text section.  */
13101   text_section ();
13102   (*targetm.asm_out.internal_label) (asm_out_file, TEXT_END_LABEL, 0);
13103
13104   /* Output the source line correspondence table.  We must do this
13105      even if there is no line information.  Otherwise, on an empty
13106      translation unit, we will generate a present, but empty,
13107      .debug_info section.  IRIX 6.5 `nm' will then complain when
13108      examining the file.  */
13109   if (! DWARF2_ASM_LINE_DEBUG_INFO)
13110     {
13111       named_section_flags (DEBUG_LINE_SECTION, SECTION_DEBUG);
13112       output_line_info ();
13113     }
13114
13115   /* Output location list section if necessary.  */
13116   if (have_location_lists)
13117     {
13118       /* Output the location lists info.  */
13119       named_section_flags (DEBUG_LOC_SECTION, SECTION_DEBUG);
13120       ASM_GENERATE_INTERNAL_LABEL (loc_section_label,
13121                                    DEBUG_LOC_SECTION_LABEL, 0);
13122       ASM_OUTPUT_LABEL (asm_out_file, loc_section_label);
13123       output_location_lists (die);
13124       have_location_lists = 0;
13125     }
13126
13127   /* We can only use the low/high_pc attributes if all of the code was
13128      in .text.  */
13129   if (separate_line_info_table_in_use == 0)
13130     {
13131       add_AT_lbl_id (comp_unit_die, DW_AT_low_pc, text_section_label);
13132       add_AT_lbl_id (comp_unit_die, DW_AT_high_pc, text_end_label);
13133     }
13134
13135   /* If it wasn't, we need to give .debug_loc and .debug_ranges an appropriate
13136      "base address".  Use zero so that these addresses become absolute.  */
13137   else if (have_location_lists || ranges_table_in_use)
13138     add_AT_addr (comp_unit_die, DW_AT_entry_pc, const0_rtx);
13139
13140   if (debug_info_level >= DINFO_LEVEL_NORMAL)
13141     add_AT_lbl_offset (comp_unit_die, DW_AT_stmt_list,
13142                        debug_line_section_label);
13143
13144   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13145     add_AT_lbl_offset (comp_unit_die, DW_AT_macro_info, macinfo_section_label);
13146
13147   /* Output all of the compilation units.  We put the main one last so that
13148      the offsets are available to output_pubnames.  */
13149   for (node = limbo_die_list; node; node = node->next)
13150     output_comp_unit (node->die, 0);
13151
13152   output_comp_unit (comp_unit_die, 0);
13153
13154   /* Output the abbreviation table.  */
13155   named_section_flags (DEBUG_ABBREV_SECTION, SECTION_DEBUG);
13156   output_abbrev_section ();
13157
13158   /* Output public names table if necessary.  */
13159   if (pubname_table_in_use)
13160     {
13161       named_section_flags (DEBUG_PUBNAMES_SECTION, SECTION_DEBUG);
13162       output_pubnames ();
13163     }
13164
13165   /* Output the address range information.  We only put functions in the arange
13166      table, so don't write it out if we don't have any.  */
13167   if (fde_table_in_use)
13168     {
13169       named_section_flags (DEBUG_ARANGES_SECTION, SECTION_DEBUG);
13170       output_aranges ();
13171     }
13172
13173   /* Output ranges section if necessary.  */
13174   if (ranges_table_in_use)
13175     {
13176       named_section_flags (DEBUG_RANGES_SECTION, SECTION_DEBUG);
13177       ASM_OUTPUT_LABEL (asm_out_file, ranges_section_label);
13178       output_ranges ();
13179     }
13180
13181   /* Have to end the primary source file.  */
13182   if (debug_info_level >= DINFO_LEVEL_VERBOSE)
13183     {
13184       named_section_flags (DEBUG_MACINFO_SECTION, SECTION_DEBUG);
13185       dw2_asm_output_data (1, DW_MACINFO_end_file, "End file");
13186       dw2_asm_output_data (1, 0, "End compilation unit");
13187     }
13188
13189   /* If we emitted any DW_FORM_strp form attribute, output the string
13190      table too.  */
13191   if (debug_str_hash)
13192     htab_traverse (debug_str_hash, output_indirect_string, NULL);
13193 }
13194 #else
13195
13196 /* This should never be used, but its address is needed for comparisons.  */
13197 const struct gcc_debug_hooks dwarf2_debug_hooks;
13198
13199 #endif /* DWARF2_DEBUGGING_INFO */
13200
13201 #include "gt-dwarf2out.h"