Update copyright years.
[platform/upstream/gcc.git] / gcc / dbxout.c
1 /* Output dbx-format symbol table information from GNU compiler.
2    Copyright (C) 1987-2015 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3.  If not see
18 <http://www.gnu.org/licenses/>.  */
19
20
21 /* Output dbx-format symbol table data.
22    This consists of many symbol table entries, each of them
23    a .stabs assembler pseudo-op with four operands:
24    a "name" which is really a description of one symbol and its type,
25    a "code", which is a symbol defined in stab.h whose name starts with N_,
26    an unused operand always 0,
27    and a "value" which is an address or an offset.
28    The name is enclosed in doublequote characters.
29
30    Each function, variable, typedef, and structure tag
31    has a symbol table entry to define it.
32    The beginning and end of each level of name scoping within
33    a function are also marked by special symbol table entries.
34
35    The "name" consists of the symbol name, a colon, a kind-of-symbol letter,
36    and a data type number.  The data type number may be followed by
37    "=" and a type definition; normally this will happen the first time
38    the type number is mentioned.  The type definition may refer to
39    other types by number, and those type numbers may be followed
40    by "=" and nested definitions.
41
42    This can make the "name" quite long.
43    When a name is more than 80 characters, we split the .stabs pseudo-op
44    into two .stabs pseudo-ops, both sharing the same "code" and "value".
45    The first one is marked as continued with a double-backslash at the
46    end of its "name".
47
48    The kind-of-symbol letter distinguished function names from global
49    variables from file-scope variables from parameters from auto
50    variables in memory from typedef names from register variables.
51    See `dbxout_symbol'.
52
53    The "code" is mostly redundant with the kind-of-symbol letter
54    that goes in the "name", but not entirely: for symbols located
55    in static storage, the "code" says which segment the address is in,
56    which controls how it is relocated.
57
58    The "value" for a symbol in static storage
59    is the core address of the symbol (actually, the assembler
60    label for the symbol).  For a symbol located in a stack slot
61    it is the stack offset; for one in a register, the register number.
62    For a typedef symbol, it is zero.
63
64    If DEBUG_SYMS_TEXT is defined, all debugging symbols must be
65    output while in the text section.
66
67    For more on data type definitions, see `dbxout_type'.  */
68
69 #include "config.h"
70 #include "system.h"
71 #include "coretypes.h"
72 #include "tm.h"
73
74 #include "tree.h"
75 #include "varasm.h"
76 #include "stor-layout.h"
77 #include "rtl.h"
78 #include "flags.h"
79 #include "regs.h"
80 #include "insn-config.h"
81 #include "reload.h"
82 #include "output.h"
83 #include "dbxout.h"
84 #include "diagnostic-core.h"
85 #include "toplev.h"
86 #include "tm_p.h"
87 #include "ggc.h"
88 #include "debug.h"
89 #include "hashtab.h"
90 #include "hash-set.h"
91 #include "vec.h"
92 #include "machmode.h"
93 #include "hard-reg-set.h"
94 #include "input.h"
95 #include "function.h"
96 #include "target.h"
97 #include "common/common-target.h"
98 #include "langhooks.h"
99 #include "obstack.h"
100 #include "expr.h"
101 #include "hash-map.h"
102 #include "is-a.h"
103 #include "plugin-api.h"
104 #include "ipa-ref.h"
105 #include "cgraph.h"
106 #include "stringpool.h"
107
108 #ifdef XCOFF_DEBUGGING_INFO
109 #include "xcoffout.h"
110 #endif
111
112 #ifndef ASM_STABS_OP
113 # ifdef XCOFF_DEBUGGING_INFO
114 #  define ASM_STABS_OP "\t.stabx\t"
115 # else
116 #  define ASM_STABS_OP "\t.stabs\t"
117 # endif
118 #endif
119
120 #ifndef ASM_STABN_OP
121 #define ASM_STABN_OP "\t.stabn\t"
122 #endif
123
124 #ifndef ASM_STABD_OP
125 #define ASM_STABD_OP "\t.stabd\t"
126 #endif
127
128 #ifndef DBX_TYPE_DECL_STABS_CODE
129 #define DBX_TYPE_DECL_STABS_CODE N_LSYM
130 #endif
131
132 #ifndef DBX_STATIC_CONST_VAR_CODE
133 #define DBX_STATIC_CONST_VAR_CODE N_FUN
134 #endif
135
136 #ifndef DBX_REGPARM_STABS_CODE
137 #define DBX_REGPARM_STABS_CODE N_RSYM
138 #endif
139
140 #ifndef DBX_REGPARM_STABS_LETTER
141 #define DBX_REGPARM_STABS_LETTER 'P'
142 #endif
143
144 #ifndef NO_DBX_FUNCTION_END
145 #define NO_DBX_FUNCTION_END 0
146 #endif
147
148 #ifndef NO_DBX_BNSYM_ENSYM
149 #define NO_DBX_BNSYM_ENSYM 0
150 #endif
151
152 #ifndef NO_DBX_MAIN_SOURCE_DIRECTORY
153 #define NO_DBX_MAIN_SOURCE_DIRECTORY 0
154 #endif
155
156 #ifndef DBX_BLOCKS_FUNCTION_RELATIVE
157 #define DBX_BLOCKS_FUNCTION_RELATIVE 0
158 #endif
159
160 #ifndef DBX_LINES_FUNCTION_RELATIVE
161 #define DBX_LINES_FUNCTION_RELATIVE 0
162 #endif
163
164 #ifndef DBX_CONTIN_LENGTH
165 #define DBX_CONTIN_LENGTH 80
166 #endif
167
168 #ifndef DBX_CONTIN_CHAR
169 #define DBX_CONTIN_CHAR '\\'
170 #endif
171
172 enum typestatus {TYPE_UNSEEN, TYPE_XREF, TYPE_DEFINED};
173
174 /* Structure recording information about a C data type.
175    The status element says whether we have yet output
176    the definition of the type.  TYPE_XREF says we have
177    output it as a cross-reference only.
178    The file_number and type_number elements are used if DBX_USE_BINCL
179    is defined.  */
180
181 struct GTY(()) typeinfo {
182   enum typestatus status;
183   int file_number;
184   int type_number;
185 };
186
187 /* Vector recording information about C data types.
188    When we first notice a data type (a tree node),
189    we assign it a number using next_type_number.
190    That is its index in this vector.  */
191
192 static GTY ((length ("typevec_len"))) struct typeinfo *typevec;
193
194 /* Number of elements of space allocated in `typevec'.  */
195
196 static GTY(()) int typevec_len;
197
198 /* In dbx output, each type gets a unique number.
199    This is the number for the next type output.
200    The number, once assigned, is in the TYPE_SYMTAB_ADDRESS field.  */
201
202 static GTY(()) int next_type_number;
203
204 /* The C front end may call dbxout_symbol before dbxout_init runs.
205    We save all such decls in this list and output them when we get
206    to dbxout_init.  */
207
208 static GTY(()) tree preinit_symbols;
209
210 enum binclstatus {BINCL_NOT_REQUIRED, BINCL_PENDING, BINCL_PROCESSED};
211
212 /* When using N_BINCL in dbx output, each type number is actually a
213    pair of the file number and the type number within the file.
214    This is a stack of input files.  */
215
216 struct dbx_file
217 {
218   struct dbx_file *next;
219   int file_number;
220   int next_type_number;
221   enum binclstatus bincl_status;  /* Keep track of lazy bincl.  */
222   const char *pending_bincl_name; /* Name of bincl.  */
223   struct dbx_file *prev;          /* Chain to traverse all pending bincls.  */
224 };
225
226 /* This is the top of the stack.
227
228    This is not saved for PCH, because restoring a PCH should not change it.
229    next_file_number does have to be saved, because the PCH may use some
230    file numbers; however, just before restoring a PCH, next_file_number
231    should always be 0 because we should not have needed any file numbers
232    yet.  */
233
234 #if (defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)) \
235     && defined (DBX_USE_BINCL)
236 static struct dbx_file *current_file;
237 #endif
238
239 /* This is the next file number to use.  */
240
241 static GTY(()) int next_file_number;
242
243 /* A counter for dbxout_function_end.  */
244
245 static GTY(()) int scope_labelno;
246
247 /* A counter for dbxout_source_line.  */
248
249 static GTY(()) int dbxout_source_line_counter;
250
251 /* Number for the next N_SOL filename stabs label.  The number 0 is reserved
252    for the N_SO filename stabs label.  */
253
254 static GTY(()) int source_label_number = 1;
255
256 /* Last source file name mentioned in a NOTE insn.  */
257
258 static GTY(()) const char *lastfile;
259
260 /* Used by PCH machinery to detect if 'lastfile' should be reset to
261    base_input_file.  */
262 static GTY(()) int lastfile_is_base;
263
264 /* Typical USG systems don't have stab.h, and they also have
265    no use for DBX-format debugging info.  */
266
267 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
268
269 #ifdef DBX_USE_BINCL
270 /* If zero then there is no pending BINCL.  */
271 static int pending_bincls = 0;
272 #endif
273
274 /* The original input file name.  */
275 static const char *base_input_file;
276
277 #ifdef DEBUG_SYMS_TEXT
278 #define FORCE_TEXT switch_to_section (current_function_section ())
279 #else
280 #define FORCE_TEXT
281 #endif
282
283 #include "gstab.h"
284
285 /* 1 if PARM is passed to this function in memory.  */
286
287 #define PARM_PASSED_IN_MEMORY(PARM) \
288  (MEM_P (DECL_INCOMING_RTL (PARM)))
289
290 /* A C expression for the integer offset value of an automatic variable
291    (N_LSYM) having address X (an RTX).  */
292 #ifndef DEBUGGER_AUTO_OFFSET
293 #define DEBUGGER_AUTO_OFFSET(X) \
294   (GET_CODE (X) == PLUS ? INTVAL (XEXP (X, 1)) : 0)
295 #endif
296
297 /* A C expression for the integer offset value of an argument (N_PSYM)
298    having address X (an RTX).  The nominal offset is OFFSET.
299    Note that we use OFFSET + 0 here to avoid the self-assign warning
300    when the macro is called in a context like
301    number = DEBUGGER_ARG_OFFSET(number, X)  */
302 #ifndef DEBUGGER_ARG_OFFSET
303 #define DEBUGGER_ARG_OFFSET(OFFSET, X) (OFFSET + 0)
304 #endif
305
306 /* This obstack holds the stab string currently being constructed.  We
307    build it up here, then write it out, so we can split long lines up
308    properly (see dbxout_finish_complex_stabs).  */
309 static struct obstack stabstr_ob;
310 static size_t stabstr_last_contin_point;
311
312 #ifdef DBX_USE_BINCL
313 static void emit_bincl_stab             (const char *c);
314 static void emit_pending_bincls         (void);
315 #endif
316 static inline void emit_pending_bincls_if_required (void);
317
318 static void dbxout_init (const char *);
319
320 static void dbxout_finish (const char *);
321 static void dbxout_start_source_file (unsigned, const char *);
322 static void dbxout_end_source_file (unsigned);
323 static void dbxout_typedefs (tree);
324 static void dbxout_type_index (tree);
325 static void dbxout_args (tree);
326 static void dbxout_type_fields (tree);
327 static void dbxout_type_method_1 (tree);
328 static void dbxout_type_methods (tree);
329 static void dbxout_range_type (tree, tree, tree);
330 static void dbxout_type (tree, int);
331 static bool print_int_cst_bounds_in_octal_p (tree, tree, tree);
332 static bool is_fortran (void);
333 static void dbxout_type_name (tree);
334 static void dbxout_class_name_qualifiers (tree);
335 static int dbxout_symbol_location (tree, tree, const char *, rtx);
336 static void dbxout_symbol_name (tree, const char *, int);
337 static void dbxout_common_name (tree, const char *, stab_code_type);
338 static const char *dbxout_common_check (tree, int *);
339 static void dbxout_global_decl (tree);
340 static void dbxout_type_decl (tree, int);
341 static void dbxout_handle_pch (unsigned);
342 static void debug_free_queue (void);
343 \f
344 /* The debug hooks structure.  */
345 #if defined (DBX_DEBUGGING_INFO)
346
347 static void dbxout_source_line (unsigned int, const char *, int, bool);
348 static void dbxout_begin_prologue (unsigned int, const char *);
349 static void dbxout_source_file (const char *);
350 static void dbxout_function_end (tree);
351 static void dbxout_begin_function (tree);
352 static void dbxout_begin_block (unsigned, unsigned);
353 static void dbxout_end_block (unsigned, unsigned);
354 static void dbxout_function_decl (tree);
355
356 const struct gcc_debug_hooks dbx_debug_hooks =
357 {
358   dbxout_init,
359   dbxout_finish,
360   debug_nothing_void,
361   debug_nothing_int_charstar,
362   debug_nothing_int_charstar,
363   dbxout_start_source_file,
364   dbxout_end_source_file,
365   dbxout_begin_block,
366   dbxout_end_block,
367   debug_true_const_tree,                 /* ignore_block */
368   dbxout_source_line,                    /* source_line */
369   dbxout_begin_prologue,                 /* begin_prologue */
370   debug_nothing_int_charstar,            /* end_prologue */
371   debug_nothing_int_charstar,            /* begin_epilogue */
372   debug_nothing_int_charstar,            /* end_epilogue */
373 #ifdef DBX_FUNCTION_FIRST
374   dbxout_begin_function,
375 #else
376   debug_nothing_tree,                    /* begin_function */
377 #endif
378   debug_nothing_int,                     /* end_function */
379   dbxout_function_decl,
380   dbxout_global_decl,                    /* global_decl */
381   dbxout_type_decl,                      /* type_decl */
382   debug_nothing_tree_tree_tree_bool,     /* imported_module_or_decl */
383   debug_nothing_tree,                    /* deferred_inline_function */
384   debug_nothing_tree,                    /* outlining_inline_function */
385   debug_nothing_rtx_code_label,          /* label */
386   dbxout_handle_pch,                     /* handle_pch */
387   debug_nothing_rtx_insn,                /* var_location */
388   debug_nothing_void,                    /* switch_text_section */
389   debug_nothing_tree_tree,               /* set_name */
390   0,                                     /* start_end_main_source_file */
391   TYPE_SYMTAB_IS_ADDRESS                 /* tree_type_symtab_field */
392 };
393 #endif /* DBX_DEBUGGING_INFO  */
394
395 #if defined (XCOFF_DEBUGGING_INFO)
396 const struct gcc_debug_hooks xcoff_debug_hooks =
397 {
398   dbxout_init,
399   dbxout_finish,
400   debug_nothing_void,
401   debug_nothing_int_charstar,
402   debug_nothing_int_charstar,
403   dbxout_start_source_file,
404   dbxout_end_source_file,
405   xcoffout_begin_block,
406   xcoffout_end_block,
407   debug_true_const_tree,                 /* ignore_block */
408   xcoffout_source_line,
409   xcoffout_begin_prologue,               /* begin_prologue */
410   debug_nothing_int_charstar,            /* end_prologue */
411   debug_nothing_int_charstar,            /* begin_epilogue */
412   xcoffout_end_epilogue,
413   debug_nothing_tree,                    /* begin_function */
414   xcoffout_end_function,
415   debug_nothing_tree,                    /* function_decl */
416   dbxout_global_decl,                    /* global_decl */
417   dbxout_type_decl,                      /* type_decl */
418   debug_nothing_tree_tree_tree_bool,     /* imported_module_or_decl */
419   debug_nothing_tree,                    /* deferred_inline_function */
420   debug_nothing_tree,                    /* outlining_inline_function */
421   debug_nothing_rtx_code_label,          /* label */
422   dbxout_handle_pch,                     /* handle_pch */
423   debug_nothing_rtx_insn,                /* var_location */
424   debug_nothing_void,                    /* switch_text_section */
425   debug_nothing_tree_tree,               /* set_name */
426   0,                                     /* start_end_main_source_file */
427   TYPE_SYMTAB_IS_ADDRESS                 /* tree_type_symtab_field */
428 };
429 #endif /* XCOFF_DEBUGGING_INFO  */
430 \f
431 /* Numeric formatting helper macro.  Note that this does not handle
432    hexadecimal.  */
433 #define NUMBER_FMT_LOOP(P, NUM, BASE)           \
434   do                                            \
435     {                                           \
436       int digit = NUM % BASE;                   \
437       NUM /= BASE;                              \
438       *--P = digit + '0';                       \
439     }                                           \
440   while (NUM > 0)
441
442 /* Utility: write a decimal integer NUM to asm_out_file.  */
443 void
444 dbxout_int (int num)
445 {
446   char buf[64];
447   char *p = buf + sizeof buf;
448   unsigned int unum;
449
450   if (num == 0)
451     {
452       putc ('0', asm_out_file);
453       return;
454     }
455   if (num < 0)
456     {
457       putc ('-', asm_out_file);
458       unum = -num;
459     }
460   else
461     unum = num;
462
463   NUMBER_FMT_LOOP (p, unum, 10);
464
465   while (p < buf + sizeof buf)
466     {
467       putc (*p, asm_out_file);
468       p++;
469     }
470 }
471
472 \f
473 /* Primitives for emitting simple stabs directives.  All other stabs
474    routines should use these functions instead of directly emitting
475    stabs.  They are exported because machine-dependent code may need
476    to invoke them, e.g. in a DBX_OUTPUT_* macro whose definition
477    forwards to code in CPU.c.  */
478
479 /* The following functions should all be called immediately after one
480    of the dbxout_begin_stab* functions (below).  They write out
481    various things as the value of a stab.  */
482
483 /* Write out a literal zero as the value of a stab.  */
484 void
485 dbxout_stab_value_zero (void)
486 {
487   fputs ("0\n", asm_out_file);
488 }
489
490 /* Write out the label LABEL as the value of a stab.  */
491 void
492 dbxout_stab_value_label (const char *label)
493 {
494   assemble_name (asm_out_file, label);
495   putc ('\n', asm_out_file);
496 }
497
498 /* Write out the difference of two labels, LABEL - BASE, as the value
499    of a stab.  */
500 void
501 dbxout_stab_value_label_diff (const char *label, const char *base)
502 {
503   assemble_name (asm_out_file, label);
504   putc ('-', asm_out_file);
505   assemble_name (asm_out_file, base);
506   putc ('\n', asm_out_file);
507 }
508
509 /* Write out an internal label as the value of a stab, and immediately
510    emit that internal label.  This should be used only when
511    dbxout_stabd will not work.  STEM is the name stem of the label,
512    COUNTERP is a pointer to a counter variable which will be used to
513    guarantee label uniqueness.  */
514 void
515 dbxout_stab_value_internal_label (const char *stem, int *counterp)
516 {
517   char label[100];
518   int counter = counterp ? (*counterp)++ : 0;
519
520   ASM_GENERATE_INTERNAL_LABEL (label, stem, counter);
521   dbxout_stab_value_label (label);
522   targetm.asm_out.internal_label (asm_out_file, stem, counter);
523 }
524
525 /* Write out the difference between BASE and an internal label as the
526    value of a stab, and immediately emit that internal label.  STEM and
527    COUNTERP are as for dbxout_stab_value_internal_label.  */
528 void
529 dbxout_stab_value_internal_label_diff (const char *stem, int *counterp,
530                                        const char *base)
531 {
532   char label[100];
533   int counter = counterp ? (*counterp)++ : 0;
534
535   ASM_GENERATE_INTERNAL_LABEL (label, stem, counter);
536   dbxout_stab_value_label_diff (label, base);
537   targetm.asm_out.internal_label (asm_out_file, stem, counter);
538 }
539
540 /* The following functions produce specific kinds of stab directives.  */
541
542 /* Write a .stabd directive with type STYPE and desc SDESC to asm_out_file.  */
543 void
544 dbxout_stabd (int stype, int sdesc)
545 {
546   fputs (ASM_STABD_OP, asm_out_file);
547   dbxout_int (stype);
548   fputs (",0,", asm_out_file);
549   dbxout_int (sdesc);
550   putc ('\n', asm_out_file);
551 }
552
553 /* Write a .stabn directive with type STYPE.  This function stops
554    short of emitting the value field, which is the responsibility of
555    the caller (normally it will be either a symbol or the difference
556    of two symbols).  */
557
558 void
559 dbxout_begin_stabn (int stype)
560 {
561   fputs (ASM_STABN_OP, asm_out_file);
562   dbxout_int (stype);
563   fputs (",0,0,", asm_out_file);
564 }
565
566 /* Write a .stabn directive with type N_SLINE and desc LINE.  As above,
567    the value field is the responsibility of the caller.  */
568 void
569 dbxout_begin_stabn_sline (int lineno)
570 {
571   fputs (ASM_STABN_OP, asm_out_file);
572   dbxout_int (N_SLINE);
573   fputs (",0,", asm_out_file);
574   dbxout_int (lineno);
575   putc (',', asm_out_file);
576 }
577
578 /* Begin a .stabs directive with string "", type STYPE, and desc and
579    other fields 0.  The value field is the responsibility of the
580    caller.  This function cannot be used for .stabx directives.  */
581 void
582 dbxout_begin_empty_stabs (int stype)
583 {
584   fputs (ASM_STABS_OP, asm_out_file);
585   fputs ("\"\",", asm_out_file);
586   dbxout_int (stype);
587   fputs (",0,0,", asm_out_file);
588 }
589
590 /* Begin a .stabs directive with string STR, type STYPE, and desc 0.
591    The value field is the responsibility of the caller.  */
592 void
593 dbxout_begin_simple_stabs (const char *str, int stype)
594 {
595   fputs (ASM_STABS_OP, asm_out_file);
596   output_quoted_string (asm_out_file, str);
597   putc (',', asm_out_file);
598   dbxout_int (stype);
599   fputs (",0,0,", asm_out_file);
600 }
601
602 /* As above but use SDESC for the desc field.  */
603 void
604 dbxout_begin_simple_stabs_desc (const char *str, int stype, int sdesc)
605 {
606   fputs (ASM_STABS_OP, asm_out_file);
607   output_quoted_string (asm_out_file, str);
608   putc (',', asm_out_file);
609   dbxout_int (stype);
610   fputs (",0,", asm_out_file);
611   dbxout_int (sdesc);
612   putc (',', asm_out_file);
613 }
614
615 /* The next set of functions are entirely concerned with production of
616    "complex" .stabs directives: that is, .stabs directives whose
617    strings have to be constructed piecemeal.  dbxout_type,
618    dbxout_symbol, etc. use these routines heavily.  The string is queued
619    up in an obstack, then written out by dbxout_finish_complex_stabs, which
620    is also responsible for splitting it up if it exceeds DBX_CONTIN_LENGTH.
621    (You might think it would be more efficient to go straight to stdio
622    when DBX_CONTIN_LENGTH is 0 (i.e. no length limit) but that turns
623    out not to be the case, and anyway this needs fewer #ifdefs.)  */
624
625 /* Begin a complex .stabs directive.  If we can, write the initial
626    ASM_STABS_OP to the asm_out_file.  */
627
628 static void
629 dbxout_begin_complex_stabs (void)
630 {
631   emit_pending_bincls_if_required ();
632   FORCE_TEXT;
633   fputs (ASM_STABS_OP, asm_out_file);
634   putc ('"', asm_out_file);
635   gcc_assert (stabstr_last_contin_point == 0);
636 }
637
638 /* As above, but do not force text or emit pending bincls.  This is
639    used by dbxout_symbol_location, which needs to do something else.  */
640 static void
641 dbxout_begin_complex_stabs_noforcetext (void)
642 {
643   fputs (ASM_STABS_OP, asm_out_file);
644   putc ('"', asm_out_file);
645   gcc_assert (stabstr_last_contin_point == 0);
646 }
647
648 /* Add CHR, a single character, to the string being built.  */
649 #define stabstr_C(chr) obstack_1grow (&stabstr_ob, chr)
650
651 /* Add STR, a normal C string, to the string being built.  */
652 #define stabstr_S(str) obstack_grow (&stabstr_ob, str, strlen (str))
653
654 /* Add the text of ID, an IDENTIFIER_NODE, to the string being built.  */
655 #define stabstr_I(id) obstack_grow (&stabstr_ob, \
656                                     IDENTIFIER_POINTER (id), \
657                                     IDENTIFIER_LENGTH (id))
658
659 /* Add NUM, a signed decimal number, to the string being built.  */
660 static void
661 stabstr_D (HOST_WIDE_INT num)
662 {
663   char buf[64];
664   char *p = buf + sizeof buf;
665   unsigned int unum;
666
667   if (num == 0)
668     {
669       stabstr_C ('0');
670       return;
671     }
672   if (num < 0)
673     {
674       stabstr_C ('-');
675       unum = -num;
676     }
677   else
678     unum = num;
679
680   NUMBER_FMT_LOOP (p, unum, 10);
681
682   obstack_grow (&stabstr_ob, p, (buf + sizeof buf) - p);
683 }
684
685 /* Add NUM, an unsigned decimal number, to the string being built.  */
686 static void
687 stabstr_U (unsigned HOST_WIDE_INT num)
688 {
689   char buf[64];
690   char *p = buf + sizeof buf;
691   if (num == 0)
692     {
693       stabstr_C ('0');
694       return;
695     }
696   NUMBER_FMT_LOOP (p, num, 10);
697   obstack_grow (&stabstr_ob, p, (buf + sizeof buf) - p);
698 }
699
700 /* Add CST, an INTEGER_CST tree, to the string being built as an
701    unsigned octal number.  This routine handles values which are
702    larger than a single HOST_WIDE_INT.  */
703 static void
704 stabstr_O (tree cst)
705 {
706   int prec = TYPE_PRECISION (TREE_TYPE (cst));
707   int res_pres = prec % 3;
708   int i;
709   unsigned int digit;
710
711   /* Leading zero for base indicator.  */
712   stabstr_C ('0');
713
714   /* If the value is zero, the base indicator will serve as the value
715      all by itself.  */
716   if (wi::eq_p (cst, 0))
717     return;
718
719   /* GDB wants constants with no extra leading "1" bits, so
720      we need to remove any sign-extension that might be
721      present.  */
722   if (res_pres == 1)
723     {
724       digit = wi::extract_uhwi (cst, prec - 1, 1);
725       stabstr_C ('0' + digit);
726     }
727   else if (res_pres == 2)
728     {
729       digit = wi::extract_uhwi (cst, prec - 2, 2);
730       stabstr_C ('0' + digit);
731     }
732
733   prec -= res_pres;
734   for (i = prec - 3; i >= 0; i = i - 3)
735     {
736       digit = wi::extract_uhwi (cst, i, 3);
737       stabstr_C ('0' + digit);
738     }
739 }
740
741 /* Called whenever it is safe to break a stabs string into multiple
742    .stabs directives.  If the current string has exceeded the limit
743    set by DBX_CONTIN_LENGTH, mark the current position in the buffer
744    as a continuation point by inserting DBX_CONTIN_CHAR (doubled if
745    it is a backslash) and a null character.  */
746 static inline void
747 stabstr_continue (void)
748 {
749   if (DBX_CONTIN_LENGTH > 0
750       && obstack_object_size (&stabstr_ob) - stabstr_last_contin_point
751          > DBX_CONTIN_LENGTH)
752     {
753       if (DBX_CONTIN_CHAR == '\\')
754         obstack_1grow (&stabstr_ob, '\\');
755       obstack_1grow (&stabstr_ob, DBX_CONTIN_CHAR);
756       obstack_1grow (&stabstr_ob, '\0');
757       stabstr_last_contin_point = obstack_object_size (&stabstr_ob);
758     }
759 }
760 #define CONTIN stabstr_continue ()
761
762 /* Macro subroutine of dbxout_finish_complex_stabs, which emits
763    all of the arguments to the .stabs directive after the string.
764    Overridden by xcoffout.h.  CODE is the stabs code for this symbol;
765    LINE is the source line to write into the desc field (in extended
766    mode); SYM is the symbol itself.
767
768    ADDR, LABEL, and NUMBER are three different ways to represent the
769    stabs value field.  At most one of these should be nonzero.
770
771      ADDR is used most of the time; it represents the value as an
772      RTL address constant.
773
774      LABEL is used (currently) only for N_CATCH stabs; it represents
775      the value as a string suitable for assemble_name.
776
777      NUMBER is used when the value is an offset from an implicit base
778      pointer (e.g. for a stack variable), or an index (e.g. for a
779      register variable).  It represents the value as a decimal integer.  */
780
781 #ifndef DBX_FINISH_STABS
782 #define DBX_FINISH_STABS(SYM, CODE, LINE, ADDR, LABEL, NUMBER)  \
783 do {                                                            \
784   int line_ = use_gnu_debug_info_extensions ? LINE : 0;         \
785                                                                 \
786   dbxout_int (CODE);                                            \
787   fputs (",0,", asm_out_file);                                  \
788   dbxout_int (line_);                                           \
789   putc (',', asm_out_file);                                     \
790   if (ADDR)                                                     \
791     output_addr_const (asm_out_file, ADDR);                     \
792   else if (LABEL)                                               \
793     assemble_name (asm_out_file, LABEL);                        \
794   else                                                          \
795     dbxout_int (NUMBER);                                        \
796   putc ('\n', asm_out_file);                                    \
797 } while (0)
798 #endif
799
800 /* Finish the emission of a complex .stabs directive.  When DBX_CONTIN_LENGTH
801    is zero, this has only to emit the close quote and the remainder of
802    the arguments.  When it is nonzero, the string has been marshalled in
803    stabstr_ob, and this routine is responsible for breaking it up into
804    DBX_CONTIN_LENGTH-sized chunks.
805
806    SYM is the DECL of the symbol under consideration; it is used only
807    for its DECL_SOURCE_LINE.  The other arguments are all passed directly
808    to DBX_FINISH_STABS; see above for details.  */
809
810 static void
811 dbxout_finish_complex_stabs (tree sym, stab_code_type code,
812                              rtx addr, const char *label, int number)
813 {
814   int line ATTRIBUTE_UNUSED;
815   char *str;
816   size_t len;
817
818   line = sym ? DECL_SOURCE_LINE (sym) : 0;
819   if (DBX_CONTIN_LENGTH > 0)
820     {
821       char *chunk;
822       size_t chunklen;
823
824       /* Nul-terminate the growing string, then get its size and
825          address.  */
826       obstack_1grow (&stabstr_ob, '\0');
827
828       len = obstack_object_size (&stabstr_ob);
829       chunk = str = XOBFINISH (&stabstr_ob, char *);
830
831       /* Within the buffer are a sequence of NUL-separated strings,
832          each of which is to be written out as a separate stab
833          directive.  */
834       for (;;)
835         {
836           chunklen = strlen (chunk);
837           fwrite (chunk, 1, chunklen, asm_out_file);
838           fputs ("\",", asm_out_file);
839
840           /* Must add an extra byte to account for the NUL separator.  */
841           chunk += chunklen + 1;
842           len   -= chunklen + 1;
843
844           /* Only put a line number on the last stab in the sequence.  */
845           DBX_FINISH_STABS (sym, code, len == 0 ? line : 0,
846                             addr, label, number);
847           if (len == 0)
848             break;
849
850           fputs (ASM_STABS_OP, asm_out_file);
851           putc ('"', asm_out_file);
852         }
853       stabstr_last_contin_point = 0;
854     }
855   else
856     {
857       /* No continuations - we can put the whole string out at once.
858          It is faster to augment the string with the close quote and
859          comma than to do a two-character fputs.  */
860       obstack_grow (&stabstr_ob, "\",", 2);
861       len = obstack_object_size (&stabstr_ob);
862       str = XOBFINISH (&stabstr_ob, char *);
863
864       fwrite (str, 1, len, asm_out_file);
865       DBX_FINISH_STABS (sym, code, line, addr, label, number);
866     }
867   obstack_free (&stabstr_ob, str);
868 }
869
870 #if defined (DBX_DEBUGGING_INFO) || defined (XCOFF_DEBUGGING_INFO)
871
872 /* When -gused is used, emit debug info for only used symbols. But in
873    addition to the standard intercepted debug_hooks there are some
874    direct calls into this file, i.e., dbxout_symbol, dbxout_parms, and
875    dbxout_reg_params.  Those routines may also be called from a higher
876    level intercepted routine. So to prevent recording data for an inner
877    call to one of these for an intercept, we maintain an intercept
878    nesting counter (debug_nesting). We only save the intercepted
879    arguments if the nesting is 1.  */
880 static int debug_nesting = 0;
881
882 static tree *symbol_queue;
883 static int symbol_queue_index = 0;
884 static int symbol_queue_size = 0;
885
886 #define DBXOUT_DECR_NESTING \
887   if (--debug_nesting == 0 && symbol_queue_index > 0) \
888     { emit_pending_bincls_if_required (); debug_flush_symbol_queue (); }
889
890 #define DBXOUT_DECR_NESTING_AND_RETURN(x) \
891   do {--debug_nesting; return (x);} while (0)
892
893 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
894
895 #if defined (DBX_DEBUGGING_INFO)
896
897 static void
898 dbxout_function_end (tree decl ATTRIBUTE_UNUSED)
899 {
900   char lscope_label_name[100];
901
902   /* The Lscope label must be emitted even if we aren't doing anything
903      else; dbxout_block needs it.  */
904   switch_to_section (function_section (current_function_decl));
905
906   /* Convert Lscope into the appropriate format for local labels in case
907      the system doesn't insert underscores in front of user generated
908      labels.  */
909   ASM_GENERATE_INTERNAL_LABEL (lscope_label_name, "Lscope", scope_labelno);
910   targetm.asm_out.internal_label (asm_out_file, "Lscope", scope_labelno);
911
912   /* The N_FUN tag at the end of the function is a GNU extension,
913      which may be undesirable, and is unnecessary if we do not have
914      named sections.  */
915   if (!use_gnu_debug_info_extensions
916       || NO_DBX_FUNCTION_END
917       || !targetm_common.have_named_sections)
918     return;
919
920   /* By convention, GCC will mark the end of a function with an N_FUN
921      symbol and an empty string.  */
922   if (flag_reorder_blocks_and_partition)
923     {
924       dbxout_begin_empty_stabs (N_FUN);
925       dbxout_stab_value_label_diff (crtl->subsections.hot_section_end_label,
926                                     crtl->subsections.hot_section_label);
927       dbxout_begin_empty_stabs (N_FUN);
928       dbxout_stab_value_label_diff (crtl->subsections.cold_section_end_label,
929                                     crtl->subsections.cold_section_label);
930     }
931   else
932     {
933       char begin_label[20];
934       /* Reference current function start using LFBB.  */
935       ASM_GENERATE_INTERNAL_LABEL (begin_label, "LFBB", scope_labelno);
936       dbxout_begin_empty_stabs (N_FUN);
937       dbxout_stab_value_label_diff (lscope_label_name, begin_label);
938     }
939
940   if (!NO_DBX_BNSYM_ENSYM && !flag_debug_only_used_symbols)
941     dbxout_stabd (N_ENSYM, 0);
942 }
943 #endif /* DBX_DEBUGGING_INFO */
944
945 /* Get lang description for N_SO stab.  */
946 static unsigned int ATTRIBUTE_UNUSED
947 get_lang_number (void)
948 {
949   const char *language_string = lang_hooks.name;
950   if (lang_GNU_C ())
951     return N_SO_C;
952   else if (lang_GNU_CXX ())
953     return N_SO_CC;
954   else if (strcmp (language_string, "GNU F77") == 0)
955     return N_SO_FORTRAN;
956   else if (strcmp (language_string, "GNU Fortran") == 0)
957     return N_SO_FORTRAN90; /* CHECKME */
958   else if (strcmp (language_string, "GNU Pascal") == 0)
959     return N_SO_PASCAL;
960   else if (strcmp (language_string, "GNU Objective-C") == 0)
961     return N_SO_OBJC;
962   else if (strcmp (language_string, "GNU Objective-C++") == 0)
963     return N_SO_OBJCPLUS;
964   else
965     return 0;
966
967 }
968
969 static bool
970 is_fortran (void)
971 {
972    unsigned int lang = get_lang_number ();
973
974    return (lang == N_SO_FORTRAN) || (lang == N_SO_FORTRAN90);
975 }
976
977 /* At the beginning of compilation, start writing the symbol table.
978    Initialize `typevec' and output the standard data types of C.  */
979
980 static void
981 dbxout_init (const char *input_file_name)
982 {
983   char ltext_label_name[100];
984   bool used_ltext_label_name = false;
985   tree syms = lang_hooks.decls.getdecls ();
986   const char *mapped_name;
987
988   typevec_len = 100;
989   typevec = ggc_cleared_vec_alloc<typeinfo> (typevec_len);
990
991   /* stabstr_ob contains one string, which will be just fine with
992      1-byte alignment.  */
993   obstack_specify_allocation (&stabstr_ob, 0, 1, xmalloc, free);
994
995   /* Convert Ltext into the appropriate format for local labels in case
996      the system doesn't insert underscores in front of user generated
997      labels.  */
998   ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext", 0);
999
1000   /* Put the current working directory in an N_SO symbol.  */
1001   if (use_gnu_debug_info_extensions && !NO_DBX_MAIN_SOURCE_DIRECTORY)
1002     {
1003       static const char *cwd;
1004
1005       if (!cwd)
1006         {
1007           cwd = get_src_pwd ();
1008           if (cwd[0] == '\0')
1009             cwd = "/";
1010           else if (!IS_DIR_SEPARATOR (cwd[strlen (cwd) - 1]))
1011             cwd = concat (cwd, "/", NULL);
1012           cwd = remap_debug_filename (cwd);
1013         }
1014 #ifdef DBX_OUTPUT_MAIN_SOURCE_DIRECTORY
1015       DBX_OUTPUT_MAIN_SOURCE_DIRECTORY (asm_out_file, cwd);
1016 #else /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */
1017       dbxout_begin_simple_stabs_desc (cwd, N_SO, get_lang_number ());
1018       dbxout_stab_value_label (ltext_label_name);
1019       used_ltext_label_name = true;
1020 #endif /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */
1021     }
1022
1023   mapped_name = remap_debug_filename (input_file_name);
1024 #ifdef DBX_OUTPUT_MAIN_SOURCE_FILENAME
1025   DBX_OUTPUT_MAIN_SOURCE_FILENAME (asm_out_file, mapped_name);
1026 #else
1027   dbxout_begin_simple_stabs_desc (mapped_name, N_SO, get_lang_number ());
1028   dbxout_stab_value_label (ltext_label_name);
1029   used_ltext_label_name = true;
1030 #endif
1031
1032   if (used_ltext_label_name)
1033     {
1034       switch_to_section (text_section);
1035       targetm.asm_out.internal_label (asm_out_file, "Ltext", 0);
1036     }
1037
1038   /* Emit an N_OPT stab to indicate that this file was compiled by GCC.
1039      The string used is historical.  */
1040 #ifndef NO_DBX_GCC_MARKER
1041   dbxout_begin_simple_stabs ("gcc2_compiled.", N_OPT);
1042   dbxout_stab_value_zero ();
1043 #endif
1044
1045   base_input_file = lastfile = input_file_name;
1046
1047   next_type_number = 1;
1048
1049 #ifdef DBX_USE_BINCL
1050   current_file = XNEW (struct dbx_file);
1051   current_file->next = NULL;
1052   current_file->file_number = 0;
1053   current_file->next_type_number = 1;
1054   next_file_number = 1;
1055   current_file->prev = NULL;
1056   current_file->bincl_status = BINCL_NOT_REQUIRED;
1057   current_file->pending_bincl_name = NULL;
1058 #endif
1059
1060   /* Get all permanent types that have typedef names, and output them
1061      all, except for those already output.  Some language front ends
1062      put these declarations in the top-level scope; some do not;
1063      the latter are responsible for calling debug_hooks->type_decl from
1064      their record_builtin_type function.  */
1065   dbxout_typedefs (syms);
1066
1067   if (preinit_symbols)
1068     {
1069       tree t;
1070       for (t = nreverse (preinit_symbols); t; t = TREE_CHAIN (t))
1071         dbxout_symbol (TREE_VALUE (t), 0);
1072       preinit_symbols = 0;
1073     }
1074 }
1075
1076 /* Output any typedef names for types described by TYPE_DECLs in SYMS.  */
1077
1078 static void
1079 dbxout_typedefs (tree syms)
1080 {
1081   for (; syms != NULL_TREE; syms = DECL_CHAIN (syms))
1082     {
1083       if (TREE_CODE (syms) == TYPE_DECL)
1084         {
1085           tree type = TREE_TYPE (syms);
1086           if (TYPE_NAME (type)
1087               && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1088               && COMPLETE_OR_VOID_TYPE_P (type)
1089               && ! TREE_ASM_WRITTEN (TYPE_NAME (type)))
1090             dbxout_symbol (TYPE_NAME (type), 0);
1091         }
1092     }
1093 }
1094
1095 #ifdef DBX_USE_BINCL
1096 /* Emit BINCL stab using given name.  */
1097 static void
1098 emit_bincl_stab (const char *name)
1099 {
1100   dbxout_begin_simple_stabs (name, N_BINCL);
1101   dbxout_stab_value_zero ();
1102 }
1103
1104 /* If there are pending bincls then it is time to emit all of them.  */
1105
1106 static inline void
1107 emit_pending_bincls_if_required (void)
1108 {
1109   if (pending_bincls)
1110     emit_pending_bincls ();
1111 }
1112
1113 /* Emit all pending bincls.  */
1114
1115 static void
1116 emit_pending_bincls (void)
1117 {
1118   struct dbx_file *f = current_file;
1119
1120   /* Find first pending bincl.  */
1121   while (f->bincl_status == BINCL_PENDING)
1122     f = f->next;
1123
1124   /* Now emit all bincls.  */
1125   f = f->prev;
1126
1127   while (f)
1128     {
1129       if (f->bincl_status == BINCL_PENDING)
1130         {
1131           emit_bincl_stab (f->pending_bincl_name);
1132
1133           /* Update file number and status.  */
1134           f->file_number = next_file_number++;
1135           f->bincl_status = BINCL_PROCESSED;
1136         }
1137       if (f == current_file)
1138         break;
1139       f = f->prev;
1140     }
1141
1142   /* All pending bincls have been emitted.  */
1143   pending_bincls = 0;
1144 }
1145
1146 #else
1147
1148 static inline void
1149 emit_pending_bincls_if_required (void) {}
1150 #endif
1151
1152 /* Change to reading from a new source file.  Generate a N_BINCL stab.  */
1153
1154 static void
1155 dbxout_start_source_file (unsigned int line ATTRIBUTE_UNUSED,
1156                           const char *filename ATTRIBUTE_UNUSED)
1157 {
1158 #ifdef DBX_USE_BINCL
1159   struct dbx_file *n = XNEW (struct dbx_file);
1160
1161   n->next = current_file;
1162   n->next_type_number = 1;
1163   /* Do not assign file number now.
1164      Delay it until we actually emit BINCL.  */
1165   n->file_number = 0;
1166   n->prev = NULL;
1167   current_file->prev = n;
1168   n->bincl_status = BINCL_PENDING;
1169   n->pending_bincl_name = remap_debug_filename (filename);
1170   pending_bincls = 1;
1171   current_file = n;
1172 #endif
1173 }
1174
1175 /* Revert to reading a previous source file.  Generate a N_EINCL stab.  */
1176
1177 static void
1178 dbxout_end_source_file (unsigned int line ATTRIBUTE_UNUSED)
1179 {
1180 #ifdef DBX_USE_BINCL
1181   /* Emit EINCL stab only if BINCL is not pending.  */
1182   if (current_file->bincl_status == BINCL_PROCESSED)
1183     {
1184       dbxout_begin_stabn (N_EINCL);
1185       dbxout_stab_value_zero ();
1186     }
1187   current_file->bincl_status = BINCL_NOT_REQUIRED;
1188   current_file = current_file->next;
1189 #endif
1190 }
1191
1192 /* Handle a few odd cases that occur when trying to make PCH files work.  */
1193
1194 static void
1195 dbxout_handle_pch (unsigned at_end)
1196 {
1197   if (! at_end)
1198     {
1199       /* When using the PCH, this file will be included, so we need to output
1200          a BINCL.  */
1201       dbxout_start_source_file (0, lastfile);
1202
1203       /* The base file when using the PCH won't be the same as
1204          the base file when it's being generated.  */
1205       lastfile = NULL;
1206     }
1207   else
1208     {
1209       /* ... and an EINCL.  */
1210       dbxout_end_source_file (0);
1211
1212       /* Deal with cases where 'lastfile' was never actually changed.  */
1213       lastfile_is_base = lastfile == NULL;
1214     }
1215 }
1216
1217 #if defined (DBX_DEBUGGING_INFO)
1218
1219 static void dbxout_block (tree, int, tree);
1220
1221 /* Output debugging info to FILE to switch to sourcefile FILENAME.  */
1222
1223 static void
1224 dbxout_source_file (const char *filename)
1225 {
1226   if (lastfile == 0 && lastfile_is_base)
1227     {
1228       lastfile = base_input_file;
1229       lastfile_is_base = 0;
1230     }
1231
1232   if (filename && (lastfile == 0 || strcmp (filename, lastfile)))
1233     {
1234       /* Don't change section amid function.  */
1235       if (current_function_decl == NULL_TREE)
1236         switch_to_section (text_section);
1237
1238       dbxout_begin_simple_stabs (remap_debug_filename (filename), N_SOL);
1239       dbxout_stab_value_internal_label ("Ltext", &source_label_number);
1240       lastfile = filename;
1241     }
1242 }
1243
1244 /* Output N_BNSYM, line number symbol entry, and local symbol at
1245    function scope  */
1246
1247 static void
1248 dbxout_begin_prologue (unsigned int lineno, const char *filename)
1249 {
1250   if (use_gnu_debug_info_extensions
1251       && !NO_DBX_FUNCTION_END
1252       && !NO_DBX_BNSYM_ENSYM
1253       && !flag_debug_only_used_symbols)
1254     dbxout_stabd (N_BNSYM, 0);
1255
1256   /* pre-increment the scope counter */
1257   scope_labelno++;
1258
1259   dbxout_source_line (lineno, filename, 0, true);
1260   /* Output function begin block at function scope, referenced
1261      by dbxout_block, dbxout_source_line and dbxout_function_end.  */
1262   emit_pending_bincls_if_required ();
1263   targetm.asm_out.internal_label (asm_out_file, "LFBB", scope_labelno);
1264 }
1265
1266 /* Output a line number symbol entry for source file FILENAME and line
1267    number LINENO.  */
1268
1269 static void
1270 dbxout_source_line (unsigned int lineno, const char *filename,
1271                     int discriminator ATTRIBUTE_UNUSED,
1272                     bool is_stmt ATTRIBUTE_UNUSED)
1273 {
1274   dbxout_source_file (filename);
1275
1276 #ifdef DBX_OUTPUT_SOURCE_LINE
1277   DBX_OUTPUT_SOURCE_LINE (asm_out_file, lineno, dbxout_source_line_counter);
1278 #else
1279   if (DBX_LINES_FUNCTION_RELATIVE)
1280     {
1281       char begin_label[20];
1282       dbxout_begin_stabn_sline (lineno);
1283       /* Reference current function start using LFBB.  */
1284       ASM_GENERATE_INTERNAL_LABEL (begin_label, "LFBB", scope_labelno);
1285       dbxout_stab_value_internal_label_diff ("LM", &dbxout_source_line_counter,
1286                                              begin_label);
1287     }
1288   else
1289     dbxout_stabd (N_SLINE, lineno);
1290 #endif
1291 }
1292
1293 /* Describe the beginning of an internal block within a function.  */
1294
1295 static void
1296 dbxout_begin_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int n)
1297 {
1298   emit_pending_bincls_if_required ();
1299   targetm.asm_out.internal_label (asm_out_file, "LBB", n);
1300 }
1301
1302 /* Describe the end line-number of an internal block within a function.  */
1303
1304 static void
1305 dbxout_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int n)
1306 {
1307   emit_pending_bincls_if_required ();
1308   targetm.asm_out.internal_label (asm_out_file, "LBE", n);
1309 }
1310
1311 /* Output dbx data for a function definition.
1312    This includes a definition of the function name itself (a symbol),
1313    definitions of the parameters (locating them in the parameter list)
1314    and then output the block that makes up the function's body
1315    (including all the auto variables of the function).  */
1316
1317 static void
1318 dbxout_function_decl (tree decl)
1319 {
1320   emit_pending_bincls_if_required ();
1321 #ifndef DBX_FUNCTION_FIRST
1322   dbxout_begin_function (decl);
1323 #endif
1324   dbxout_block (DECL_INITIAL (decl), 0, DECL_ARGUMENTS (decl));
1325   dbxout_function_end (decl);
1326 }
1327
1328 #endif /* DBX_DEBUGGING_INFO  */
1329
1330 /* Debug information for a global DECL.  Called from toplev.c after
1331    compilation proper has finished.  */
1332 static void
1333 dbxout_global_decl (tree decl)
1334 {
1335   if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1336     {
1337       int saved_tree_used = TREE_USED (decl);
1338       TREE_USED (decl) = 1;
1339       dbxout_symbol (decl, 0);
1340       TREE_USED (decl) = saved_tree_used;
1341     }
1342 }
1343
1344 /* This is just a function-type adapter; dbxout_symbol does exactly
1345    what we want but returns an int.  */
1346 static void
1347 dbxout_type_decl (tree decl, int local)
1348 {
1349   dbxout_symbol (decl, local);
1350 }
1351
1352 /* At the end of compilation, finish writing the symbol table.
1353    The default is to call debug_free_queue but do nothing else.  */
1354
1355 static void
1356 dbxout_finish (const char *filename ATTRIBUTE_UNUSED)
1357 {
1358 #ifdef DBX_OUTPUT_MAIN_SOURCE_FILE_END
1359   DBX_OUTPUT_MAIN_SOURCE_FILE_END (asm_out_file, filename);
1360 #elif defined DBX_OUTPUT_NULL_N_SO_AT_MAIN_SOURCE_FILE_END
1361  {
1362    switch_to_section (text_section);
1363    dbxout_begin_empty_stabs (N_SO);
1364    dbxout_stab_value_internal_label ("Letext", 0);
1365  }
1366 #endif
1367   debug_free_queue ();
1368 }
1369
1370 /* Output the index of a type.  */
1371
1372 static void
1373 dbxout_type_index (tree type)
1374 {
1375 #ifndef DBX_USE_BINCL
1376   stabstr_D (TYPE_SYMTAB_ADDRESS (type));
1377 #else
1378   struct typeinfo *t = &typevec[TYPE_SYMTAB_ADDRESS (type)];
1379   stabstr_C ('(');
1380   stabstr_D (t->file_number);
1381   stabstr_C (',');
1382   stabstr_D (t->type_number);
1383   stabstr_C (')');
1384 #endif
1385 }
1386
1387 \f
1388 /* Generate the symbols for any queued up type symbols we encountered
1389    while generating the type info for some originally used symbol.
1390    This might generate additional entries in the queue.  Only when
1391    the nesting depth goes to 0 is this routine called.  */
1392
1393 static void
1394 debug_flush_symbol_queue (void)
1395 {
1396   int i;
1397
1398   /* Make sure that additionally queued items are not flushed
1399      prematurely.  */
1400
1401   ++debug_nesting;
1402
1403   for (i = 0; i < symbol_queue_index; ++i)
1404     {
1405       /* If we pushed queued symbols then such symbols must be
1406          output no matter what anyone else says.  Specifically,
1407          we need to make sure dbxout_symbol() thinks the symbol was
1408          used and also we need to override TYPE_DECL_SUPPRESS_DEBUG
1409          which may be set for outside reasons.  */
1410       int saved_tree_used = TREE_USED (symbol_queue[i]);
1411       int saved_suppress_debug = TYPE_DECL_SUPPRESS_DEBUG (symbol_queue[i]);
1412       TREE_USED (symbol_queue[i]) = 1;
1413       TYPE_DECL_SUPPRESS_DEBUG (symbol_queue[i]) = 0;
1414
1415 #ifdef DBX_DEBUGGING_INFO
1416       dbxout_symbol (symbol_queue[i], 0);
1417 #endif
1418
1419       TREE_USED (symbol_queue[i]) = saved_tree_used;
1420       TYPE_DECL_SUPPRESS_DEBUG (symbol_queue[i]) = saved_suppress_debug;
1421     }
1422
1423   symbol_queue_index = 0;
1424   --debug_nesting;
1425 }
1426
1427 /* Queue a type symbol needed as part of the definition of a decl
1428    symbol.  These symbols are generated when debug_flush_symbol_queue()
1429    is called.  */
1430
1431 static void
1432 debug_queue_symbol (tree decl)
1433 {
1434   if (symbol_queue_index >= symbol_queue_size)
1435     {
1436       symbol_queue_size += 10;
1437       symbol_queue = XRESIZEVEC (tree, symbol_queue, symbol_queue_size);
1438     }
1439
1440   symbol_queue[symbol_queue_index++] = decl;
1441 }
1442
1443 /* Free symbol queue.  */
1444 static void
1445 debug_free_queue (void)
1446 {
1447   if (symbol_queue)
1448     {
1449       free (symbol_queue);
1450       symbol_queue = NULL;
1451       symbol_queue_size = 0;
1452     }
1453 }
1454 \f
1455 /* Used in several places: evaluates to '0' for a private decl,
1456    '1' for a protected decl, '2' for a public decl.  */
1457 #define DECL_ACCESSIBILITY_CHAR(DECL) \
1458 (TREE_PRIVATE (DECL) ? '0' : TREE_PROTECTED (DECL) ? '1' : '2')
1459
1460 /* Subroutine of `dbxout_type'.  Output the type fields of TYPE.
1461    This must be a separate function because anonymous unions require
1462    recursive calls.  */
1463
1464 static void
1465 dbxout_type_fields (tree type)
1466 {
1467   tree tem;
1468
1469   /* Output the name, type, position (in bits), size (in bits) of each
1470      field that we can support.  */
1471   for (tem = TYPE_FIELDS (type); tem; tem = DECL_CHAIN (tem))
1472     {
1473       /* If one of the nodes is an error_mark or its type is then
1474          return early.  */
1475       if (error_operand_p (tem))
1476         return;
1477
1478       /* Omit here local type decls until we know how to support them.  */
1479       if (TREE_CODE (tem) == TYPE_DECL
1480           /* Omit here the nameless fields that are used to skip bits.  */
1481           || DECL_IGNORED_P (tem)
1482           /* Omit fields whose position or size are variable or too large to
1483              represent.  */
1484           || (TREE_CODE (tem) == FIELD_DECL
1485               && (! tree_fits_shwi_p (bit_position (tem))
1486                   || ! DECL_SIZE (tem)
1487                   || ! tree_fits_uhwi_p (DECL_SIZE (tem)))))
1488         continue;
1489
1490       else if (TREE_CODE (tem) != CONST_DECL)
1491         {
1492           /* Continue the line if necessary,
1493              but not before the first field.  */
1494           if (tem != TYPE_FIELDS (type))
1495             CONTIN;
1496
1497           if (DECL_NAME (tem))
1498             stabstr_I (DECL_NAME (tem));
1499           stabstr_C (':');
1500
1501           if (use_gnu_debug_info_extensions
1502               && (TREE_PRIVATE (tem) || TREE_PROTECTED (tem)
1503                   || TREE_CODE (tem) != FIELD_DECL))
1504             {
1505               stabstr_C ('/');
1506               stabstr_C (DECL_ACCESSIBILITY_CHAR (tem));
1507             }
1508
1509           dbxout_type ((TREE_CODE (tem) == FIELD_DECL
1510                         && DECL_BIT_FIELD_TYPE (tem))
1511                        ? DECL_BIT_FIELD_TYPE (tem) : TREE_TYPE (tem), 0);
1512
1513           if (TREE_CODE (tem) == VAR_DECL)
1514             {
1515               if (TREE_STATIC (tem) && use_gnu_debug_info_extensions)
1516                 {
1517                   tree name = DECL_ASSEMBLER_NAME (tem);
1518
1519                   stabstr_C (':');
1520                   stabstr_I (name);
1521                   stabstr_C (';');
1522                 }
1523               else
1524                 /* If TEM is non-static, GDB won't understand it.  */
1525                 stabstr_S (",0,0;");
1526             }
1527           else
1528             {
1529               stabstr_C (',');
1530               stabstr_D (int_bit_position (tem));
1531               stabstr_C (',');
1532               stabstr_D (tree_to_uhwi (DECL_SIZE (tem)));
1533               stabstr_C (';');
1534             }
1535         }
1536     }
1537 }
1538 \f
1539 /* Subroutine of `dbxout_type_methods'.  Output debug info about the
1540    method described DECL.  */
1541
1542 static void
1543 dbxout_type_method_1 (tree decl)
1544 {
1545   char c1 = 'A', c2;
1546
1547   if (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE)
1548     c2 = '?';
1549   else /* it's a METHOD_TYPE.  */
1550     {
1551       tree firstarg = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)));
1552       /* A for normal functions.
1553          B for `const' member functions.
1554          C for `volatile' member functions.
1555          D for `const volatile' member functions.  */
1556       if (TYPE_READONLY (TREE_TYPE (firstarg)))
1557         c1 += 1;
1558       if (TYPE_VOLATILE (TREE_TYPE (firstarg)))
1559         c1 += 2;
1560
1561       if (DECL_VINDEX (decl))
1562         c2 = '*';
1563       else
1564         c2 = '.';
1565     }
1566
1567   /* ??? Output the mangled name, which contains an encoding of the
1568      method's type signature.  May not be necessary anymore.  */
1569   stabstr_C (':');
1570   stabstr_I (DECL_ASSEMBLER_NAME (decl));
1571   stabstr_C (';');
1572   stabstr_C (DECL_ACCESSIBILITY_CHAR (decl));
1573   stabstr_C (c1);
1574   stabstr_C (c2);
1575
1576   if (DECL_VINDEX (decl) && tree_fits_shwi_p (DECL_VINDEX (decl)))
1577     {
1578       stabstr_D (tree_to_shwi (DECL_VINDEX (decl)));
1579       stabstr_C (';');
1580       dbxout_type (DECL_CONTEXT (decl), 0);
1581       stabstr_C (';');
1582     }
1583 }
1584 \f
1585 /* Subroutine of `dbxout_type'.  Output debug info about the methods defined
1586    in TYPE.  */
1587
1588 static void
1589 dbxout_type_methods (tree type)
1590 {
1591   /* C++: put out the method names and their parameter lists */
1592   tree methods = TYPE_METHODS (type);
1593   tree fndecl;
1594   tree last;
1595
1596   if (methods == NULL_TREE)
1597     return;
1598
1599   if (TREE_CODE (methods) != TREE_VEC)
1600     fndecl = methods;
1601   else if (TREE_VEC_ELT (methods, 0) != NULL_TREE)
1602     fndecl = TREE_VEC_ELT (methods, 0);
1603   else
1604     fndecl = TREE_VEC_ELT (methods, 1);
1605
1606   while (fndecl)
1607     {
1608       int need_prefix = 1;
1609
1610       /* Group together all the methods for the same operation.
1611          These differ in the types of the arguments.  */
1612       for (last = NULL_TREE;
1613            fndecl && (last == NULL_TREE || DECL_NAME (fndecl) == DECL_NAME (last));
1614            fndecl = DECL_CHAIN (fndecl))
1615         /* Output the name of the field (after overloading), as
1616            well as the name of the field before overloading, along
1617            with its parameter list */
1618         {
1619           /* Skip methods that aren't FUNCTION_DECLs.  (In C++, these
1620              include TEMPLATE_DECLs.)  The debugger doesn't know what
1621              to do with such entities anyhow.  */
1622           if (TREE_CODE (fndecl) != FUNCTION_DECL)
1623             continue;
1624
1625           CONTIN;
1626
1627           last = fndecl;
1628
1629           /* Also ignore abstract methods; those are only interesting to
1630              the DWARF backends.  */
1631           if (DECL_IGNORED_P (fndecl) || DECL_ABSTRACT_P (fndecl))
1632             continue;
1633
1634           /* Redundantly output the plain name, since that's what gdb
1635              expects.  */
1636           if (need_prefix)
1637             {
1638               stabstr_I (DECL_NAME (fndecl));
1639               stabstr_S ("::");
1640               need_prefix = 0;
1641             }
1642
1643           dbxout_type (TREE_TYPE (fndecl), 0);
1644           dbxout_type_method_1 (fndecl);
1645         }
1646       if (!need_prefix)
1647         stabstr_C (';');
1648     }
1649 }
1650
1651 /* Emit a "range" type specification, which has the form:
1652    "r<index type>;<lower bound>;<upper bound>;".
1653    TYPE is an INTEGER_TYPE, LOW and HIGH are the bounds.  */
1654
1655 static void
1656 dbxout_range_type (tree type, tree low, tree high)
1657 {
1658   stabstr_C ('r');
1659   if (TREE_TYPE (type))
1660     dbxout_type (TREE_TYPE (type), 0);
1661   else if (TREE_CODE (type) != INTEGER_TYPE)
1662     dbxout_type (type, 0); /* E.g. Pascal's ARRAY [BOOLEAN] of INTEGER */
1663   else
1664     {
1665       /* Traditionally, we made sure 'int' was type 1, and builtin types
1666          were defined to be sub-ranges of int.  Unfortunately, this
1667          does not allow us to distinguish true sub-ranges from integer
1668          types.  So, instead we define integer (non-sub-range) types as
1669          sub-ranges of themselves.  This matters for Chill.  If this isn't
1670          a subrange type, then we want to define it in terms of itself.
1671          However, in C, this may be an anonymous integer type, and we don't
1672          want to emit debug info referring to it.  Just calling
1673          dbxout_type_index won't work anyways, because the type hasn't been
1674          defined yet.  We make this work for both cases by checked to see
1675          whether this is a defined type, referring to it if it is, and using
1676          'int' otherwise.  */
1677       if (TYPE_SYMTAB_ADDRESS (type) != 0)
1678         dbxout_type_index (type);
1679       else
1680         dbxout_type_index (integer_type_node);
1681     }
1682
1683   stabstr_C (';');
1684   if (low && tree_fits_shwi_p (low))
1685     {
1686       if (print_int_cst_bounds_in_octal_p (type, low, high))
1687         stabstr_O (low);
1688       else
1689         stabstr_D (tree_to_shwi (low));
1690     }
1691   else
1692     stabstr_C ('0');
1693
1694   stabstr_C (';');
1695   if (high && tree_fits_shwi_p (high))
1696     {
1697       if (print_int_cst_bounds_in_octal_p (type, low, high))
1698         stabstr_O (high);
1699       else
1700         stabstr_D (tree_to_shwi (high));
1701       stabstr_C (';');
1702     }
1703   else
1704     stabstr_S ("-1;");
1705 }
1706 \f
1707
1708 /* Output a reference to a type.  If the type has not yet been
1709    described in the dbx output, output its definition now.
1710    For a type already defined, just refer to its definition
1711    using the type number.
1712
1713    If FULL is nonzero, and the type has been described only with
1714    a forward-reference, output the definition now.
1715    If FULL is zero in this case, just refer to the forward-reference
1716    using the number previously allocated.  */
1717
1718 static void
1719 dbxout_type (tree type, int full)
1720 {
1721   static int anonymous_type_number = 0;
1722   tree tem, main_variant, low, high;
1723
1724   if (TREE_CODE (type) == INTEGER_TYPE)
1725     {
1726       if (TREE_TYPE (type) == 0)
1727         {
1728           low = TYPE_MIN_VALUE (type);
1729           high = TYPE_MAX_VALUE (type);
1730         }
1731
1732       else if (subrange_type_for_debug_p (type, &low, &high))
1733         ;
1734
1735       /* If this is a subtype that should not be emitted as a subrange type,
1736          use the base type.  */
1737       else
1738         {
1739           type = TREE_TYPE (type);
1740           low = TYPE_MIN_VALUE (type);
1741           high = TYPE_MAX_VALUE (type);
1742         }
1743     }
1744
1745   /* If there was an input error and we don't really have a type,
1746      avoid crashing and write something that is at least valid
1747      by assuming `int'.  */
1748   if (type == error_mark_node)
1749     type = integer_type_node;
1750   else
1751     {
1752       if (TYPE_NAME (type)
1753           && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1754           && TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)))
1755         full = 0;
1756     }
1757
1758   /* Try to find the "main variant" with the same name.  */
1759   if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1760       && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
1761     main_variant = TREE_TYPE (TYPE_NAME (type));
1762   else
1763     main_variant = TYPE_MAIN_VARIANT (type);
1764
1765   /* If we are not using extensions, stabs does not distinguish const and
1766      volatile, so there is no need to make them separate types.  */
1767   if (!use_gnu_debug_info_extensions)
1768     type = main_variant;
1769
1770   if (TYPE_SYMTAB_ADDRESS (type) == 0)
1771     {
1772       /* Type has no dbx number assigned.  Assign next available number.  */
1773       TYPE_SYMTAB_ADDRESS (type) = next_type_number++;
1774
1775       /* Make sure type vector is long enough to record about this type.  */
1776
1777       if (next_type_number == typevec_len)
1778         {
1779           typevec = GGC_RESIZEVEC (struct typeinfo, typevec, typevec_len * 2);
1780           memset (typevec + typevec_len, 0, typevec_len * sizeof typevec[0]);
1781           typevec_len *= 2;
1782         }
1783
1784 #ifdef DBX_USE_BINCL
1785       emit_pending_bincls_if_required ();
1786       typevec[TYPE_SYMTAB_ADDRESS (type)].file_number
1787         = current_file->file_number;
1788       typevec[TYPE_SYMTAB_ADDRESS (type)].type_number
1789         = current_file->next_type_number++;
1790 #endif
1791     }
1792
1793   if (flag_debug_only_used_symbols)
1794     {
1795       if ((TREE_CODE (type) == RECORD_TYPE
1796            || TREE_CODE (type) == UNION_TYPE
1797            || TREE_CODE (type) == QUAL_UNION_TYPE
1798            || TREE_CODE (type) == ENUMERAL_TYPE)
1799           && TYPE_STUB_DECL (type)
1800           && DECL_P (TYPE_STUB_DECL (type))
1801           && ! DECL_IGNORED_P (TYPE_STUB_DECL (type)))
1802         debug_queue_symbol (TYPE_STUB_DECL (type));
1803       else if (TYPE_NAME (type)
1804                && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
1805         debug_queue_symbol (TYPE_NAME (type));
1806     }
1807
1808   /* Output the number of this type, to refer to it.  */
1809   dbxout_type_index (type);
1810
1811 #ifdef DBX_TYPE_DEFINED
1812   if (DBX_TYPE_DEFINED (type))
1813     return;
1814 #endif
1815
1816   /* If this type's definition has been output or is now being output,
1817      that is all.  */
1818
1819   switch (typevec[TYPE_SYMTAB_ADDRESS (type)].status)
1820     {
1821     case TYPE_UNSEEN:
1822       break;
1823     case TYPE_XREF:
1824       /* If we have already had a cross reference,
1825          and either that's all we want or that's the best we could do,
1826          don't repeat the cross reference.
1827          Sun dbx crashes if we do.  */
1828       if (! full || !COMPLETE_TYPE_P (type)
1829           /* No way in DBX fmt to describe a variable size.  */
1830           || ! tree_fits_uhwi_p (TYPE_SIZE (type)))
1831         return;
1832       break;
1833     case TYPE_DEFINED:
1834       return;
1835     }
1836
1837 #ifdef DBX_NO_XREFS
1838   /* For systems where dbx output does not allow the `=xsNAME:' syntax,
1839      leave the type-number completely undefined rather than output
1840      a cross-reference.  If we have already used GNU debug info extensions,
1841      then it is OK to output a cross reference.  This is necessary to get
1842      proper C++ debug output.  */
1843   if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
1844        || TREE_CODE (type) == QUAL_UNION_TYPE
1845        || TREE_CODE (type) == ENUMERAL_TYPE)
1846       && ! use_gnu_debug_info_extensions)
1847     /* We must use the same test here as we use twice below when deciding
1848        whether to emit a cross-reference.  */
1849     if ((TYPE_NAME (type) != 0
1850          && ! (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1851                && DECL_IGNORED_P (TYPE_NAME (type)))
1852          && !full)
1853         || !COMPLETE_TYPE_P (type)
1854         /* No way in DBX fmt to describe a variable size.  */
1855         || ! tree_fits_uhwi_p (TYPE_SIZE (type)))
1856       {
1857         typevec[TYPE_SYMTAB_ADDRESS (type)].status = TYPE_XREF;
1858         return;
1859       }
1860 #endif
1861
1862   /* Output a definition now.  */
1863   stabstr_C ('=');
1864
1865   /* Mark it as defined, so that if it is self-referent
1866      we will not get into an infinite recursion of definitions.  */
1867
1868   typevec[TYPE_SYMTAB_ADDRESS (type)].status = TYPE_DEFINED;
1869
1870   /* If this type is a variant of some other, hand off.  Types with
1871      different names are usefully distinguished.  We only distinguish
1872      cv-qualified types if we're using extensions.  */
1873   if (TYPE_READONLY (type) > TYPE_READONLY (main_variant))
1874     {
1875       stabstr_C ('k');
1876       dbxout_type (build_type_variant (type, 0, TYPE_VOLATILE (type)), 0);
1877       return;
1878     }
1879   else if (TYPE_VOLATILE (type) > TYPE_VOLATILE (main_variant))
1880     {
1881       stabstr_C ('B');
1882       dbxout_type (build_type_variant (type, TYPE_READONLY (type), 0), 0);
1883       return;
1884     }
1885   else if (main_variant != TYPE_MAIN_VARIANT (type))
1886     {
1887       if (flag_debug_only_used_symbols)
1888         {
1889           tree orig_type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
1890
1891           if ((TREE_CODE (orig_type) == RECORD_TYPE
1892                || TREE_CODE (orig_type) == UNION_TYPE
1893                || TREE_CODE (orig_type) == QUAL_UNION_TYPE
1894                || TREE_CODE (orig_type) == ENUMERAL_TYPE)
1895               && TYPE_STUB_DECL (orig_type)
1896               && ! DECL_IGNORED_P (TYPE_STUB_DECL (orig_type)))
1897             debug_queue_symbol (TYPE_STUB_DECL (orig_type));
1898         }
1899       /* 'type' is a typedef; output the type it refers to.  */
1900       dbxout_type (DECL_ORIGINAL_TYPE (TYPE_NAME (type)), 0);
1901       return;
1902     }
1903   /* else continue.  */
1904
1905   switch (TREE_CODE (type))
1906     {
1907     case VOID_TYPE:
1908     case NULLPTR_TYPE:
1909     case LANG_TYPE:
1910       /* For a void type, just define it as itself; i.e., "5=5".
1911          This makes us consider it defined
1912          without saying what it is.  The debugger will make it
1913          a void type when the reference is seen, and nothing will
1914          ever override that default.  */
1915       dbxout_type_index (type);
1916       break;
1917
1918     case INTEGER_TYPE:
1919       if (type == char_type_node && ! TYPE_UNSIGNED (type))
1920         {
1921           /* Output the type `char' as a subrange of itself!
1922              I don't understand this definition, just copied it
1923              from the output of pcc.
1924              This used to use `r2' explicitly and we used to
1925              take care to make sure that `char' was type number 2.  */
1926           stabstr_C ('r');
1927           dbxout_type_index (type);
1928           stabstr_S (";0;127;");
1929         }
1930
1931       /* If this is a subtype of another integer type, always prefer to
1932          write it as a subtype.  */
1933       else if (TREE_TYPE (type) != 0
1934                && TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE)
1935         {
1936           /* If the size is non-standard, say what it is if we can use
1937              GDB extensions.  */
1938
1939           if (use_gnu_debug_info_extensions
1940               && TYPE_PRECISION (type) != TYPE_PRECISION (integer_type_node))
1941             {
1942               stabstr_S ("@s");
1943               stabstr_D (TYPE_PRECISION (type));
1944               stabstr_C (';');
1945             }
1946
1947           dbxout_range_type (type, low, high);
1948         }
1949
1950       else
1951         {
1952           /* If the size is non-standard, say what it is if we can use
1953              GDB extensions.  */
1954
1955           if (use_gnu_debug_info_extensions
1956               && TYPE_PRECISION (type) != TYPE_PRECISION (integer_type_node))
1957             {
1958               stabstr_S ("@s");
1959               stabstr_D (TYPE_PRECISION (type));
1960               stabstr_C (';');
1961             }
1962
1963           if (print_int_cst_bounds_in_octal_p (type, low, high))
1964             {
1965               stabstr_C ('r');
1966
1967               /* If this type derives from another type, output type index of
1968                  parent type. This is particularly important when parent type
1969                  is an enumerated type, because not generating the parent type
1970                  index would transform the definition of this enumerated type
1971                  into a plain unsigned type.  */
1972               if (TREE_TYPE (type) != 0)
1973                 dbxout_type_index (TREE_TYPE (type));
1974               else
1975                 dbxout_type_index (type);
1976
1977               stabstr_C (';');
1978               stabstr_O (low);
1979               stabstr_C (';');
1980               stabstr_O (high);
1981               stabstr_C (';');
1982             }
1983
1984           else
1985             /* Output other integer types as subranges of `int'.  */
1986             dbxout_range_type (type, low, high);
1987         }
1988
1989       break;
1990
1991     case REAL_TYPE:
1992     case FIXED_POINT_TYPE:
1993       /* This used to say `r1' and we used to take care
1994          to make sure that `int' was type number 1.  */
1995       stabstr_C ('r');
1996       dbxout_type_index (integer_type_node);
1997       stabstr_C (';');
1998       stabstr_D (int_size_in_bytes (type));
1999       stabstr_S (";0;");
2000       break;
2001
2002     case BOOLEAN_TYPE:
2003       if (use_gnu_debug_info_extensions)
2004         {
2005           stabstr_S ("@s");
2006           stabstr_D (BITS_PER_UNIT * int_size_in_bytes (type));
2007           stabstr_S (";-16;");
2008         }
2009       else /* Define as enumeral type (False, True) */
2010         stabstr_S ("eFalse:0,True:1,;");
2011       break;
2012
2013     case COMPLEX_TYPE:
2014       /* Differs from the REAL_TYPE by its new data type number.
2015          R3 is NF_COMPLEX.  We don't try to use any of the other NF_*
2016          codes since gdb doesn't care anyway.  */
2017
2018       if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
2019         {
2020           stabstr_S ("R3;");
2021           stabstr_D (2 * int_size_in_bytes (TREE_TYPE (type)));
2022           stabstr_S (";0;");
2023         }
2024       else
2025         {
2026           /* Output a complex integer type as a structure,
2027              pending some other way to do it.  */
2028           stabstr_C ('s');
2029           stabstr_D (int_size_in_bytes (type));
2030
2031           stabstr_S ("real:");
2032           dbxout_type (TREE_TYPE (type), 0);
2033           stabstr_S (",0,");
2034           stabstr_D (TYPE_PRECISION (TREE_TYPE (type)));
2035
2036           stabstr_S (";imag:");
2037           dbxout_type (TREE_TYPE (type), 0);
2038           stabstr_C (',');
2039           stabstr_D (TYPE_PRECISION (TREE_TYPE (type)));
2040           stabstr_C (',');
2041           stabstr_D (TYPE_PRECISION (TREE_TYPE (type)));
2042           stabstr_S (";;");
2043         }
2044       break;
2045
2046     case ARRAY_TYPE:
2047       /* Make arrays of packed bits look like bitstrings for chill.  */
2048       if (TYPE_PACKED (type) && use_gnu_debug_info_extensions)
2049         {
2050           stabstr_S ("@s");
2051           stabstr_D (BITS_PER_UNIT * int_size_in_bytes (type));
2052           stabstr_S (";@S;S");
2053           dbxout_type (TYPE_DOMAIN (type), 0);
2054           break;
2055         }
2056
2057       /* Output "a" followed by a range type definition
2058          for the index type of the array
2059          followed by a reference to the target-type.
2060          ar1;0;N;M for a C array of type M and size N+1.  */
2061       /* Check if a character string type, which in Chill is
2062          different from an array of characters.  */
2063       if (TYPE_STRING_FLAG (type) && use_gnu_debug_info_extensions)
2064         {
2065           stabstr_S ("@S;");
2066         }
2067       tem = TYPE_DOMAIN (type);
2068       if (tem == NULL)
2069         {
2070           stabstr_S ("ar");
2071           dbxout_type_index (integer_type_node);
2072           stabstr_S (";0;-1;");
2073         }
2074       else
2075         {
2076           stabstr_C ('a');
2077           dbxout_range_type (tem, TYPE_MIN_VALUE (tem), TYPE_MAX_VALUE (tem));
2078         }
2079
2080       dbxout_type (TREE_TYPE (type), 0);
2081       break;
2082
2083     case VECTOR_TYPE:
2084       /* Make vectors look like an array.  */
2085       if (use_gnu_debug_info_extensions)
2086         stabstr_S ("@V;");
2087
2088       /* Output "a" followed by a range type definition
2089          for the index type of the array
2090          followed by a reference to the target-type.
2091          ar1;0;N;M for a C array of type M and size N+1.  */
2092       stabstr_C ('a');
2093       dbxout_range_type (integer_type_node, size_zero_node,
2094                          size_int (TYPE_VECTOR_SUBPARTS (type) - 1));
2095
2096       dbxout_type (TREE_TYPE (type), 0);
2097       break;
2098
2099     case RECORD_TYPE:
2100     case UNION_TYPE:
2101     case QUAL_UNION_TYPE:
2102       {
2103         tree binfo = TYPE_BINFO (type);
2104
2105         /* Output a structure type.  We must use the same test here as we
2106            use in the DBX_NO_XREFS case above.  */
2107         if ((TYPE_NAME (type) != 0
2108              && ! (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
2109                    && DECL_IGNORED_P (TYPE_NAME (type)))
2110              && !full)
2111             || !COMPLETE_TYPE_P (type)
2112             /* No way in DBX fmt to describe a variable size.  */
2113             || ! tree_fits_uhwi_p (TYPE_SIZE (type)))
2114           {
2115             /* If the type is just a cross reference, output one
2116                and mark the type as partially described.
2117                If it later becomes defined, we will output
2118                its real definition.
2119                If the type has a name, don't nest its definition within
2120                another type's definition; instead, output an xref
2121                and let the definition come when the name is defined.  */
2122             stabstr_S ((TREE_CODE (type) == RECORD_TYPE) ? "xs" : "xu");
2123             if (TYPE_IDENTIFIER (type))
2124               {
2125                 /* Note that the C frontend creates for anonymous variable
2126                    length records/unions TYPE_NAME with DECL_NAME NULL.  */
2127                 dbxout_type_name (type);
2128               }
2129             else
2130               {
2131                 stabstr_S ("$$");
2132                 stabstr_D (anonymous_type_number++);
2133               }
2134
2135             stabstr_C (':');
2136             typevec[TYPE_SYMTAB_ADDRESS (type)].status = TYPE_XREF;
2137             break;
2138           }
2139
2140         /* Identify record or union, and print its size.  */
2141         stabstr_C ((TREE_CODE (type) == RECORD_TYPE) ? 's' : 'u');
2142         stabstr_D (int_size_in_bytes (type));
2143
2144         if (binfo)
2145           {
2146             int i;
2147             tree child;
2148             vec<tree, va_gc> *accesses = BINFO_BASE_ACCESSES (binfo);
2149
2150             if (use_gnu_debug_info_extensions)
2151               {
2152                 if (BINFO_N_BASE_BINFOS (binfo))
2153                   {
2154                     stabstr_C ('!');
2155                     stabstr_U (BINFO_N_BASE_BINFOS (binfo));
2156                     stabstr_C (',');
2157                   }
2158               }
2159             for (i = 0; BINFO_BASE_ITERATE (binfo, i, child); i++)
2160               {
2161                 tree access = (accesses ? (*accesses)[i] : access_public_node);
2162
2163                 if (use_gnu_debug_info_extensions)
2164                   {
2165                     stabstr_C (BINFO_VIRTUAL_P (child) ? '1' : '0');
2166                     stabstr_C (access == access_public_node ? '2' :
2167                                    access == access_protected_node
2168                                    ? '1' :'0');
2169                     if (BINFO_VIRTUAL_P (child)
2170                         && (lang_GNU_CXX ()
2171                             || strcmp (lang_hooks.name, "GNU Objective-C++") == 0))
2172                       /* For a virtual base, print the (negative)
2173                          offset within the vtable where we must look
2174                          to find the necessary adjustment.  */
2175                       stabstr_D
2176                         (tree_to_shwi (BINFO_VPTR_FIELD (child))
2177                          * BITS_PER_UNIT);
2178                     else
2179                       stabstr_D (tree_to_shwi (BINFO_OFFSET (child))
2180                                        * BITS_PER_UNIT);
2181                     stabstr_C (',');
2182                     dbxout_type (BINFO_TYPE (child), 0);
2183                     stabstr_C (';');
2184                   }
2185                 else
2186                   {
2187                     /* Print out the base class information with
2188                        fields which have the same names at the types
2189                        they hold.  */
2190                     dbxout_type_name (BINFO_TYPE (child));
2191                     stabstr_C (':');
2192                     dbxout_type (BINFO_TYPE (child), full);
2193                     stabstr_C (',');
2194                     stabstr_D (tree_to_shwi (BINFO_OFFSET (child))
2195                                      * BITS_PER_UNIT);
2196                     stabstr_C (',');
2197                     stabstr_D
2198                       (tree_to_shwi (TYPE_SIZE (BINFO_TYPE (child)))
2199                        * BITS_PER_UNIT);
2200                     stabstr_C (';');
2201                   }
2202               }
2203           }
2204       }
2205
2206       /* Write out the field declarations.  */
2207       dbxout_type_fields (type);
2208       if (use_gnu_debug_info_extensions && TYPE_METHODS (type) != NULL_TREE)
2209         {
2210           dbxout_type_methods (type);
2211         }
2212
2213       stabstr_C (';');
2214
2215       if (use_gnu_debug_info_extensions && TREE_CODE (type) == RECORD_TYPE
2216           /* Avoid the ~ if we don't really need it--it confuses dbx.  */
2217           && TYPE_VFIELD (type))
2218         {
2219
2220           /* We need to write out info about what field this class
2221              uses as its "main" vtable pointer field, because if this
2222              field is inherited from a base class, GDB cannot necessarily
2223              figure out which field it's using in time.  */
2224           stabstr_S ("~%");
2225           dbxout_type (DECL_FCONTEXT (TYPE_VFIELD (type)), 0);
2226           stabstr_C (';');
2227         }
2228       break;
2229
2230     case ENUMERAL_TYPE:
2231       /* We must use the same test here as we use in the DBX_NO_XREFS case
2232          above.  We simplify it a bit since an enum will never have a variable
2233          size.  */
2234       if ((TYPE_NAME (type) != 0
2235            && ! (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
2236                  && DECL_IGNORED_P (TYPE_NAME (type)))
2237            && !full)
2238           || !COMPLETE_TYPE_P (type))
2239         {
2240           stabstr_S ("xe");
2241           dbxout_type_name (type);
2242           typevec[TYPE_SYMTAB_ADDRESS (type)].status = TYPE_XREF;
2243           stabstr_C (':');
2244           return;
2245         }
2246       if (use_gnu_debug_info_extensions
2247           && TYPE_PRECISION (type) != TYPE_PRECISION (integer_type_node))
2248         {
2249           stabstr_S ("@s");
2250           stabstr_D (TYPE_PRECISION (type));
2251           stabstr_C (';');
2252         }
2253
2254       stabstr_C ('e');
2255       for (tem = TYPE_VALUES (type); tem; tem = TREE_CHAIN (tem))
2256         {
2257           tree value = TREE_VALUE (tem);
2258
2259           stabstr_I (TREE_PURPOSE (tem));
2260           stabstr_C (':');
2261
2262           if (TREE_CODE (value) == CONST_DECL)
2263             value = DECL_INITIAL (value);
2264
2265           if (cst_and_fits_in_hwi (value))
2266             stabstr_D (TREE_INT_CST_LOW (value));
2267           else
2268             stabstr_O (value);
2269
2270           stabstr_C (',');
2271           if (TREE_CHAIN (tem) != 0)
2272             CONTIN;
2273         }
2274
2275       stabstr_C (';');
2276       break;
2277
2278     case POINTER_TYPE:
2279       stabstr_C ('*');
2280       dbxout_type (TREE_TYPE (type), 0);
2281       break;
2282
2283     case METHOD_TYPE:
2284       if (use_gnu_debug_info_extensions)
2285         {
2286           stabstr_C ('#');
2287
2288           /* Write the argument types out longhand.  */
2289           dbxout_type (TYPE_METHOD_BASETYPE (type), 0);
2290           stabstr_C (',');
2291           dbxout_type (TREE_TYPE (type), 0);
2292           dbxout_args (TYPE_ARG_TYPES (type));
2293           stabstr_C (';');
2294         }
2295       else
2296         /* Treat it as a function type.  */
2297         dbxout_type (TREE_TYPE (type), 0);
2298       break;
2299
2300     case OFFSET_TYPE:
2301       if (use_gnu_debug_info_extensions)
2302         {
2303           stabstr_C ('@');
2304           dbxout_type (TYPE_OFFSET_BASETYPE (type), 0);
2305           stabstr_C (',');
2306           dbxout_type (TREE_TYPE (type), 0);
2307         }
2308       else
2309         /* Should print as an int, because it is really just an offset.  */
2310         dbxout_type (integer_type_node, 0);
2311       break;
2312
2313     case REFERENCE_TYPE:
2314       if (use_gnu_debug_info_extensions)
2315         {
2316           stabstr_C ('&');
2317         }
2318       else
2319         stabstr_C ('*');
2320       dbxout_type (TREE_TYPE (type), 0);
2321       break;
2322
2323     case FUNCTION_TYPE:
2324       stabstr_C ('f');
2325       dbxout_type (TREE_TYPE (type), 0);
2326       break;
2327
2328     case POINTER_BOUNDS_TYPE:
2329       /* No debug info for pointer bounds type supported yet.  */
2330       break;
2331
2332     default:
2333       /* A C++ function with deduced return type can have a TEMPLATE_TYPE_PARM
2334          named 'auto' in its type.
2335          No debug info for TEMPLATE_TYPE_PARM type supported yet.  */
2336       if (lang_GNU_CXX ())
2337         {
2338           tree name = TYPE_IDENTIFIER (type);
2339           if (name == get_identifier ("auto")
2340               || name == get_identifier ("decltype(auto)"))
2341             break;
2342         }
2343
2344       gcc_unreachable ();
2345     }
2346 }
2347
2348 /* Return nonzero if the given type represents an integer whose bounds
2349    should be printed in octal format.  */
2350
2351 static bool
2352 print_int_cst_bounds_in_octal_p (tree type, tree low, tree high)
2353 {
2354   /* If we can use GDB extensions and the size is wider than a long
2355      (the size used by GDB to read them) or we may have trouble writing
2356      the bounds the usual way, write them in octal.  Note the test is for
2357      the *target's* size of "long", not that of the host.  The host test
2358      is just to make sure we can write it out in case the host wide int
2359      is narrower than the target "long".
2360
2361      For unsigned types, we use octal if they are the same size or larger.
2362      This is because we print the bounds as signed decimal, and hence they
2363      can't span same size unsigned types.  */
2364
2365   if (use_gnu_debug_info_extensions
2366       && low && TREE_CODE (low) == INTEGER_CST
2367       && high && TREE_CODE (high) == INTEGER_CST
2368       && (TYPE_PRECISION (type) > TYPE_PRECISION (integer_type_node)
2369           || ((TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
2370               && TYPE_UNSIGNED (type))
2371           || TYPE_PRECISION (type) > HOST_BITS_PER_WIDE_INT
2372           || (TYPE_PRECISION (type) == HOST_BITS_PER_WIDE_INT
2373               && TYPE_UNSIGNED (type))))
2374     return TRUE;
2375   else
2376     return FALSE;
2377 }
2378
2379 /* Output the name of type TYPE, with no punctuation.
2380    Such names can be set up either by typedef declarations
2381    or by struct, enum and union tags.  */
2382
2383 static void
2384 dbxout_type_name (tree type)
2385 {
2386   tree t = TYPE_NAME (type);
2387
2388   gcc_assert (t);
2389   switch (TREE_CODE (t))
2390     {
2391     case IDENTIFIER_NODE:
2392       break;
2393     case TYPE_DECL:
2394       t = DECL_NAME (t);
2395       break;
2396     default:
2397       gcc_unreachable ();
2398     }
2399
2400   stabstr_I (t);
2401 }
2402
2403 /* Output leading leading struct or class names needed for qualifying
2404    type whose scope is limited to a struct or class.  */
2405
2406 static void
2407 dbxout_class_name_qualifiers (tree decl)
2408 {
2409   tree context = decl_type_context (decl);
2410
2411   if (context != NULL_TREE
2412       && TREE_CODE (context) == RECORD_TYPE
2413       && TYPE_NAME (context) != 0
2414       && (TREE_CODE (TYPE_NAME (context)) == IDENTIFIER_NODE
2415           || (DECL_NAME (TYPE_NAME (context)) != 0)))
2416     {
2417       tree name = TYPE_NAME (context);
2418
2419       if (TREE_CODE (name) == TYPE_DECL)
2420         {
2421           dbxout_class_name_qualifiers (name);
2422           name = DECL_NAME (name);
2423         }
2424       stabstr_I (name);
2425       stabstr_S ("::");
2426     }
2427 }
2428 \f
2429 /* This is a specialized subset of expand_expr for use by dbxout_symbol in
2430    evaluating DECL_VALUE_EXPR.  In particular, we stop if we find decls that
2431    haven't been expanded, or if the expression is getting so complex we won't
2432    be able to represent it in stabs anyway.  Returns NULL on failure.  */
2433
2434 static rtx
2435 dbxout_expand_expr (tree expr)
2436 {
2437   switch (TREE_CODE (expr))
2438     {
2439     case VAR_DECL:
2440       /* We can't handle emulated tls variables, because the address is an
2441          offset to the return value of __emutls_get_address, and there is no
2442          way to express that in stabs.  Also, there are name mangling issues
2443          here.  We end up with references to undefined symbols if we don't
2444          disable debug info for these variables.  */
2445       if (!targetm.have_tls && DECL_THREAD_LOCAL_P (expr))
2446         return NULL;
2447       if (TREE_STATIC (expr)
2448           && !TREE_ASM_WRITTEN (expr)
2449           && !DECL_HAS_VALUE_EXPR_P (expr)
2450           && !TREE_PUBLIC (expr)
2451           && DECL_RTL_SET_P (expr)
2452           && MEM_P (DECL_RTL (expr)))
2453         {
2454           /* If this is a var that might not be actually output,
2455              return NULL, otherwise stabs might reference an undefined
2456              symbol.  */
2457           varpool_node *node = varpool_node::get (expr);
2458           if (!node || !node->definition)
2459             return NULL;
2460         }
2461       /* FALLTHRU */
2462
2463     case PARM_DECL:
2464     case RESULT_DECL:
2465       if (DECL_HAS_VALUE_EXPR_P (expr))
2466         return dbxout_expand_expr (DECL_VALUE_EXPR (expr));
2467       /* FALLTHRU */
2468
2469     case CONST_DECL:
2470       return DECL_RTL_IF_SET (expr);
2471
2472     case INTEGER_CST:
2473       return expand_expr (expr, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
2474
2475     case COMPONENT_REF:
2476     case ARRAY_REF:
2477     case ARRAY_RANGE_REF:
2478     case BIT_FIELD_REF:
2479       {
2480         machine_mode mode;
2481         HOST_WIDE_INT bitsize, bitpos;
2482         tree offset, tem;
2483         int volatilep = 0, unsignedp = 0;
2484         rtx x;
2485
2486         tem = get_inner_reference (expr, &bitsize, &bitpos, &offset,
2487                                    &mode, &unsignedp, &volatilep, true);
2488
2489         x = dbxout_expand_expr (tem);
2490         if (x == NULL || !MEM_P (x))
2491           return NULL;
2492         if (offset != NULL)
2493           {
2494             if (!tree_fits_shwi_p (offset))
2495               return NULL;
2496             x = adjust_address_nv (x, mode, tree_to_shwi (offset));
2497           }
2498         if (bitpos != 0)
2499           x = adjust_address_nv (x, mode, bitpos / BITS_PER_UNIT);
2500
2501         return x;
2502       }
2503
2504     default:
2505       return NULL;
2506     }
2507 }
2508
2509 /* Helper function for output_used_types.  Queue one entry from the
2510    used types hash to be output.  */
2511
2512 bool
2513 output_used_types_helper (tree const &type, vec<tree> *types_p)
2514 {
2515   if ((TREE_CODE (type) == RECORD_TYPE
2516        || TREE_CODE (type) == UNION_TYPE
2517        || TREE_CODE (type) == QUAL_UNION_TYPE
2518        || TREE_CODE (type) == ENUMERAL_TYPE)
2519       && TYPE_STUB_DECL (type)
2520       && DECL_P (TYPE_STUB_DECL (type))
2521       && ! DECL_IGNORED_P (TYPE_STUB_DECL (type)))
2522     types_p->quick_push (TYPE_STUB_DECL (type));
2523   else if (TYPE_NAME (type)
2524            && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
2525     types_p->quick_push (TYPE_NAME (type));
2526
2527   return true;
2528 }
2529
2530 /* This is a qsort callback which sorts types and declarations into a
2531    predictable order (types, then declarations, sorted by UID
2532    within).  */
2533
2534 static int
2535 output_types_sort (const void *pa, const void *pb)
2536 {
2537   const tree lhs = *((const tree *)pa);
2538   const tree rhs = *((const tree *)pb);
2539
2540   if (TYPE_P (lhs))
2541     {
2542       if (TYPE_P (rhs))
2543         return TYPE_UID (lhs) - TYPE_UID (rhs);
2544       else
2545         return 1;
2546     }
2547   else
2548     {
2549       if (TYPE_P (rhs))
2550         return -1;
2551       else
2552         return DECL_UID (lhs) - DECL_UID (rhs);
2553     }
2554 }
2555
2556
2557 /* Force all types used by this function to be output in debug
2558    information.  */
2559
2560 static void
2561 output_used_types (void)
2562 {
2563   if (cfun && cfun->used_types_hash)
2564     {
2565       vec<tree> types;
2566       int i;
2567       tree type;
2568
2569       types.create (cfun->used_types_hash->elements ());
2570       cfun->used_types_hash->traverse<vec<tree> *, output_used_types_helper>
2571         (&types);
2572
2573       /* Sort by UID to prevent dependence on hash table ordering.  */
2574       types.qsort (output_types_sort);
2575
2576       FOR_EACH_VEC_ELT (types, i, type)
2577         debug_queue_symbol (type);
2578
2579       types.release ();
2580     }
2581 }
2582
2583 /* Output a .stabs for the symbol defined by DECL,
2584    which must be a ..._DECL node in the normal namespace.
2585    It may be a CONST_DECL, a FUNCTION_DECL, a PARM_DECL or a VAR_DECL.
2586    LOCAL is nonzero if the scope is less than the entire file.
2587    Return 1 if a stabs might have been emitted.  */
2588
2589 int
2590 dbxout_symbol (tree decl, int local ATTRIBUTE_UNUSED)
2591 {
2592   tree type = TREE_TYPE (decl);
2593   tree context = NULL_TREE;
2594   int result = 0;
2595   rtx decl_rtl;
2596
2597   /* "Intercept" dbxout_symbol() calls like we do all debug_hooks.  */
2598   ++debug_nesting;
2599
2600   /* Ignore nameless syms, but don't ignore type tags.  */
2601
2602   if ((DECL_NAME (decl) == 0 && TREE_CODE (decl) != TYPE_DECL)
2603       || DECL_IGNORED_P (decl))
2604     DBXOUT_DECR_NESTING_AND_RETURN (0);
2605
2606   /* If we are to generate only the symbols actually used then such
2607      symbol nodes are flagged with TREE_USED.  Ignore any that
2608      aren't flagged as TREE_USED.  */
2609
2610   if (flag_debug_only_used_symbols
2611       && (!TREE_USED (decl)
2612           && (TREE_CODE (decl) != VAR_DECL || !DECL_INITIAL (decl))))
2613     DBXOUT_DECR_NESTING_AND_RETURN (0);
2614
2615   /* If dbxout_init has not yet run, queue this symbol for later.  */
2616   if (!typevec)
2617     {
2618       preinit_symbols = tree_cons (0, decl, preinit_symbols);
2619       DBXOUT_DECR_NESTING_AND_RETURN (0);
2620     }
2621
2622   if (flag_debug_only_used_symbols)
2623     {
2624       tree t;
2625
2626       /* We now have a used symbol.  We need to generate the info for
2627          the symbol's type in addition to the symbol itself.  These
2628          type symbols are queued to be generated after were done with
2629          the symbol itself (otherwise they would fight over the
2630          stabstr obstack).
2631
2632          Note, because the TREE_TYPE(type) might be something like a
2633          pointer to a named type we need to look for the first name
2634          we see following the TREE_TYPE chain.  */
2635
2636       t = type;
2637       while (POINTER_TYPE_P (t))
2638         t = TREE_TYPE (t);
2639
2640       /* RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE, and ENUMERAL_TYPE
2641          need special treatment.  The TYPE_STUB_DECL field in these
2642          types generally represents the tag name type we want to
2643          output.  In addition there  could be a typedef type with
2644          a different name.  In that case we also want to output
2645          that.  */
2646
2647       if (TREE_CODE (t) == RECORD_TYPE
2648            || TREE_CODE (t) == UNION_TYPE
2649            || TREE_CODE (t) == QUAL_UNION_TYPE
2650            || TREE_CODE (t) == ENUMERAL_TYPE)
2651         {
2652             if (TYPE_STUB_DECL (t)
2653                 && TYPE_STUB_DECL (t) != decl
2654                 && DECL_P (TYPE_STUB_DECL (t))
2655                 && ! DECL_IGNORED_P (TYPE_STUB_DECL (t)))
2656             {
2657               debug_queue_symbol (TYPE_STUB_DECL (t));
2658               if (TYPE_NAME (t)
2659                   && TYPE_NAME (t) != TYPE_STUB_DECL (t)
2660                   && TYPE_NAME (t) != decl
2661                   && DECL_P (TYPE_NAME (t)))
2662                 debug_queue_symbol (TYPE_NAME (t));
2663             }
2664         }
2665       else if (TYPE_NAME (t)
2666                && TYPE_NAME (t) != decl
2667                && DECL_P (TYPE_NAME (t)))
2668         debug_queue_symbol (TYPE_NAME (t));
2669     }
2670
2671   emit_pending_bincls_if_required ();
2672
2673   switch (TREE_CODE (decl))
2674     {
2675     case CONST_DECL:
2676       /* Enum values are defined by defining the enum type.  */
2677       break;
2678
2679     case FUNCTION_DECL:
2680       decl_rtl = DECL_RTL_IF_SET (decl);
2681       if (!decl_rtl)
2682         DBXOUT_DECR_NESTING_AND_RETURN (0);
2683       if (DECL_EXTERNAL (decl))
2684         break;
2685       /* Don't mention a nested function under its parent.  */
2686       context = decl_function_context (decl);
2687       if (context == current_function_decl)
2688         break;
2689       /* Don't mention an inline instance of a nested function.  */
2690       if (context && DECL_FROM_INLINE (decl))
2691         break;
2692       if (!MEM_P (decl_rtl)
2693           || GET_CODE (XEXP (decl_rtl, 0)) != SYMBOL_REF)
2694         break;
2695
2696       if (flag_debug_only_used_symbols)
2697         output_used_types ();
2698
2699       dbxout_begin_complex_stabs ();
2700       stabstr_I (DECL_ASSEMBLER_NAME (decl));
2701       stabstr_S (TREE_PUBLIC (decl) ? ":F" : ":f");
2702       result = 1;
2703
2704       if (TREE_TYPE (type))
2705         dbxout_type (TREE_TYPE (type), 0);
2706       else
2707         dbxout_type (void_type_node, 0);
2708
2709       /* For a nested function, when that function is compiled,
2710          mention the containing function name
2711          as well as (since dbx wants it) our own assembler-name.  */
2712       if (context != 0)
2713         {
2714           stabstr_C (',');
2715           stabstr_I (DECL_ASSEMBLER_NAME (decl));
2716           stabstr_C (',');
2717           stabstr_I (DECL_NAME (context));
2718         }
2719
2720       dbxout_finish_complex_stabs (decl, N_FUN, XEXP (decl_rtl, 0), 0, 0);
2721       break;
2722
2723     case TYPE_DECL:
2724       /* Don't output the same typedef twice.
2725          And don't output what language-specific stuff doesn't want output.  */
2726       if (TREE_ASM_WRITTEN (decl) || TYPE_DECL_SUPPRESS_DEBUG (decl))
2727         DBXOUT_DECR_NESTING_AND_RETURN (0);
2728
2729       /* Don't output typedefs for types with magic type numbers (XCOFF).  */
2730 #ifdef DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER
2731       {
2732         int fundamental_type_number =
2733           DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER (decl);
2734
2735         if (fundamental_type_number != 0)
2736           {
2737             TREE_ASM_WRITTEN (decl) = 1;
2738             TYPE_SYMTAB_ADDRESS (TREE_TYPE (decl)) = fundamental_type_number;
2739             DBXOUT_DECR_NESTING_AND_RETURN (0);
2740           }
2741       }
2742 #endif
2743       FORCE_TEXT;
2744       result = 1;
2745       {
2746         int tag_needed = 1;
2747         int did_output = 0;
2748
2749         if (DECL_NAME (decl))
2750           {
2751             /* Nonzero means we must output a tag as well as a typedef.  */
2752             tag_needed = 0;
2753
2754             /* Handle the case of a C++ structure or union
2755                where the TYPE_NAME is a TYPE_DECL
2756                which gives both a typedef name and a tag.  */
2757             /* dbx requires the tag first and the typedef second.  */
2758             if ((TREE_CODE (type) == RECORD_TYPE
2759                  || TREE_CODE (type) == UNION_TYPE
2760                  || TREE_CODE (type) == QUAL_UNION_TYPE)
2761                 && TYPE_NAME (type) == decl
2762                 && !use_gnu_debug_info_extensions
2763                 && !TREE_ASM_WRITTEN (TYPE_NAME (type))
2764                 /* Distinguish the implicit typedefs of C++
2765                    from explicit ones that might be found in C.  */
2766                 && DECL_ARTIFICIAL (decl)
2767                 /* Do not generate a tag for incomplete records.  */
2768                 && COMPLETE_TYPE_P (type)
2769                 /* Do not generate a tag for records of variable size,
2770                    since this type can not be properly described in the
2771                    DBX format, and it confuses some tools such as objdump.  */
2772                 && tree_fits_uhwi_p (TYPE_SIZE (type)))
2773               {
2774                 tree name = TYPE_IDENTIFIER (type);
2775
2776                 dbxout_begin_complex_stabs ();
2777                 stabstr_I (name);
2778                 stabstr_S (":T");
2779                 dbxout_type (type, 1);
2780                 dbxout_finish_complex_stabs (0, DBX_TYPE_DECL_STABS_CODE,
2781                                              0, 0, 0);
2782               }
2783
2784             dbxout_begin_complex_stabs ();
2785
2786             /* Output leading class/struct qualifiers.  */
2787             if (use_gnu_debug_info_extensions)
2788               dbxout_class_name_qualifiers (decl);
2789
2790             /* Output typedef name.  */
2791             stabstr_I (DECL_NAME (decl));
2792             stabstr_C (':');
2793
2794             /* Short cut way to output a tag also.  */
2795             if ((TREE_CODE (type) == RECORD_TYPE
2796                  || TREE_CODE (type) == UNION_TYPE
2797                  || TREE_CODE (type) == QUAL_UNION_TYPE)
2798                 && TYPE_NAME (type) == decl
2799                 /* Distinguish the implicit typedefs of C++
2800                    from explicit ones that might be found in C.  */
2801                 && DECL_ARTIFICIAL (decl))
2802               {
2803                 if (use_gnu_debug_info_extensions)
2804                   {
2805                     stabstr_C ('T');
2806                     TREE_ASM_WRITTEN (TYPE_NAME (type)) = 1;
2807                   }
2808               }
2809
2810             stabstr_C ('t');
2811             dbxout_type (type, 1);
2812             dbxout_finish_complex_stabs (decl, DBX_TYPE_DECL_STABS_CODE,
2813                                          0, 0, 0);
2814             did_output = 1;
2815           }
2816
2817         /* Don't output a tag if this is an incomplete type.  This prevents
2818            the sun4 Sun OS 4.x dbx from crashing.  */
2819
2820         if (tag_needed && TYPE_NAME (type) != 0
2821             && (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
2822                 || (DECL_NAME (TYPE_NAME (type)) != 0))
2823             && COMPLETE_TYPE_P (type)
2824             && !TREE_ASM_WRITTEN (TYPE_NAME (type)))
2825           {
2826             /* For a TYPE_DECL with no name, but the type has a name,
2827                output a tag.
2828                This is what represents `struct foo' with no typedef.  */
2829             /* In C++, the name of a type is the corresponding typedef.
2830                In C, it is an IDENTIFIER_NODE.  */
2831             tree name = TYPE_IDENTIFIER (type);
2832
2833             dbxout_begin_complex_stabs ();
2834             stabstr_I (name);
2835             stabstr_S (":T");
2836             dbxout_type (type, 1);
2837             dbxout_finish_complex_stabs (0, DBX_TYPE_DECL_STABS_CODE, 0, 0, 0);
2838             did_output = 1;
2839           }
2840
2841         /* If an enum type has no name, it cannot be referred to, but
2842            we must output it anyway, to record the enumeration
2843            constants.  */
2844
2845         if (!did_output && TREE_CODE (type) == ENUMERAL_TYPE)
2846           {
2847             dbxout_begin_complex_stabs ();
2848             /* Some debuggers fail when given NULL names, so give this a
2849                harmless name of " " (Why not "(anon)"?).  */
2850             stabstr_S (" :T");
2851             dbxout_type (type, 1);
2852             dbxout_finish_complex_stabs (0, DBX_TYPE_DECL_STABS_CODE, 0, 0, 0);
2853           }
2854
2855         /* Prevent duplicate output of a typedef.  */
2856         TREE_ASM_WRITTEN (decl) = 1;
2857         break;
2858       }
2859
2860     case PARM_DECL:
2861       if (DECL_HAS_VALUE_EXPR_P (decl))
2862         decl = DECL_VALUE_EXPR (decl);
2863
2864       /* PARM_DECLs go in their own separate chain and are output by
2865          dbxout_reg_parms and dbxout_parms, except for those that are
2866          disguised VAR_DECLs like Out parameters in Ada.  */
2867       gcc_assert (TREE_CODE (decl) == VAR_DECL);
2868
2869       /* ... fall through ...  */
2870
2871     case RESULT_DECL:
2872     case VAR_DECL:
2873       /* Don't mention a variable that is external.
2874          Let the file that defines it describe it.  */
2875       if (DECL_EXTERNAL (decl))
2876         break;
2877
2878       /* If the variable is really a constant
2879          and not written in memory, inform the debugger.
2880
2881          ??? Why do we skip emitting the type and location in this case?  */
2882       if (TREE_STATIC (decl) && TREE_READONLY (decl)
2883           && DECL_INITIAL (decl) != 0
2884           && tree_fits_shwi_p (DECL_INITIAL (decl))
2885           && ! TREE_ASM_WRITTEN (decl)
2886           && (DECL_FILE_SCOPE_P (decl)
2887               || TREE_CODE (DECL_CONTEXT (decl)) == BLOCK
2888               || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
2889           && TREE_PUBLIC (decl) == 0)
2890         {
2891           /* The sun4 assembler does not grok this.  */
2892
2893           if (TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE
2894               || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
2895             {
2896               HOST_WIDE_INT ival = tree_to_shwi (DECL_INITIAL (decl));
2897
2898               dbxout_begin_complex_stabs ();
2899               dbxout_symbol_name (decl, NULL, 'c');
2900               stabstr_S ("=i");
2901               stabstr_D (ival);
2902               dbxout_finish_complex_stabs (0, N_LSYM, 0, 0, 0);
2903               DBXOUT_DECR_NESTING;
2904               return 1;
2905             }
2906           else
2907             break;
2908         }
2909       /* else it is something we handle like a normal variable.  */
2910
2911       decl_rtl = dbxout_expand_expr (decl);
2912       if (!decl_rtl)
2913         DBXOUT_DECR_NESTING_AND_RETURN (0);
2914
2915       if (!is_global_var (decl))
2916         decl_rtl = eliminate_regs (decl_rtl, VOIDmode, NULL_RTX);
2917 #ifdef LEAF_REG_REMAP
2918       if (crtl->uses_only_leaf_regs)
2919         leaf_renumber_regs_insn (decl_rtl);
2920 #endif
2921
2922       result = dbxout_symbol_location (decl, type, 0, decl_rtl);
2923       break;
2924
2925     default:
2926       break;
2927     }
2928   DBXOUT_DECR_NESTING;
2929   return result;
2930 }
2931 \f
2932 /* Output the stab for DECL, a VAR_DECL, RESULT_DECL or PARM_DECL.
2933    Add SUFFIX to its name, if SUFFIX is not 0.
2934    Describe the variable as residing in HOME
2935    (usually HOME is DECL_RTL (DECL), but not always).
2936    Returns 1 if the stab was really emitted.  */
2937
2938 static int
2939 dbxout_symbol_location (tree decl, tree type, const char *suffix, rtx home)
2940 {
2941   int letter = 0;
2942   stab_code_type code;
2943   rtx addr = 0;
2944   int number = 0;
2945   int regno = -1;
2946
2947   /* Don't mention a variable at all
2948      if it was completely optimized into nothingness.
2949
2950      If the decl was from an inline function, then its rtl
2951      is not identically the rtl that was used in this
2952      particular compilation.  */
2953   if (GET_CODE (home) == SUBREG)
2954     {
2955       rtx value = home;
2956
2957       while (GET_CODE (value) == SUBREG)
2958         value = SUBREG_REG (value);
2959       if (REG_P (value))
2960         {
2961           if (REGNO (value) >= FIRST_PSEUDO_REGISTER)
2962             return 0;
2963         }
2964       home = alter_subreg (&home, true);
2965     }
2966   if (REG_P (home))
2967     {
2968       regno = REGNO (home);
2969       if (regno >= FIRST_PSEUDO_REGISTER)
2970         return 0;
2971     }
2972
2973   /* The kind-of-variable letter depends on where
2974      the variable is and on the scope of its name:
2975      G and N_GSYM for static storage and global scope,
2976      S for static storage and file scope,
2977      V for static storage and local scope,
2978      for those two, use N_LCSYM if data is in bss segment,
2979      N_STSYM if in data segment, N_FUN otherwise.
2980      (We used N_FUN originally, then changed to N_STSYM
2981      to please GDB.  However, it seems that confused ld.
2982      Now GDB has been fixed to like N_FUN, says Kingdon.)
2983      no letter at all, and N_LSYM, for auto variable,
2984      r and N_RSYM for register variable.  */
2985
2986   if (MEM_P (home) && GET_CODE (XEXP (home, 0)) == SYMBOL_REF)
2987     {
2988       if (TREE_PUBLIC (decl))
2989         {
2990           int offs;
2991           letter = 'G';
2992           code = N_GSYM;
2993           if (NULL != dbxout_common_check (decl, &offs))
2994             {
2995               letter = 'V';
2996               addr = 0;
2997               number = offs;
2998             }
2999         }
3000       else
3001         {
3002           addr = XEXP (home, 0);
3003
3004           letter = decl_function_context (decl) ? 'V' : 'S';
3005
3006           /* Some ports can transform a symbol ref into a label ref,
3007              because the symbol ref is too far away and has to be
3008              dumped into a constant pool.  Alternatively, the symbol
3009              in the constant pool might be referenced by a different
3010              symbol.  */
3011           if (GET_CODE (addr) == SYMBOL_REF
3012               && CONSTANT_POOL_ADDRESS_P (addr))
3013             {
3014               bool marked;
3015               rtx tmp = get_pool_constant_mark (addr, &marked);
3016
3017               if (GET_CODE (tmp) == SYMBOL_REF)
3018                 {
3019                   addr = tmp;
3020                   if (CONSTANT_POOL_ADDRESS_P (addr))
3021                     get_pool_constant_mark (addr, &marked);
3022                   else
3023                     marked = true;
3024                 }
3025               else if (GET_CODE (tmp) == LABEL_REF)
3026                 {
3027                   addr = tmp;
3028                   marked = true;
3029                 }
3030
3031               /* If all references to the constant pool were optimized
3032                  out, we just ignore the symbol.  */
3033               if (!marked)
3034                 return 0;
3035             }
3036
3037           /* This should be the same condition as in assemble_variable, but
3038              we don't have access to dont_output_data here.  So, instead,
3039              we rely on the fact that error_mark_node initializers always
3040              end up in bss for C++ and never end up in bss for C.  */
3041           if (DECL_INITIAL (decl) == 0
3042               || (lang_GNU_CXX ()
3043                   && DECL_INITIAL (decl) == error_mark_node))
3044             {
3045               int offs;
3046               code = N_LCSYM;
3047               if (NULL != dbxout_common_check (decl, &offs))
3048                 {
3049                   addr = 0;
3050                   number = offs;
3051                   letter = 'V';
3052                   code = N_GSYM;
3053                 }
3054             }
3055           else if (DECL_IN_TEXT_SECTION (decl))
3056             /* This is not quite right, but it's the closest
3057                of all the codes that Unix defines.  */
3058             code = DBX_STATIC_CONST_VAR_CODE;
3059           else
3060             {
3061               /* Ultrix `as' seems to need this.  */
3062 #ifdef DBX_STATIC_STAB_DATA_SECTION
3063               switch_to_section (data_section);
3064 #endif
3065               code = N_STSYM;
3066             }
3067         }
3068     }
3069   else if (regno >= 0)
3070     {
3071       letter = 'r';
3072       code = N_RSYM;
3073       number = DBX_REGISTER_NUMBER (regno);
3074     }
3075   else if (MEM_P (home)
3076            && (MEM_P (XEXP (home, 0))
3077                || (REG_P (XEXP (home, 0))
3078                    && REGNO (XEXP (home, 0)) != HARD_FRAME_POINTER_REGNUM
3079                    && REGNO (XEXP (home, 0)) != STACK_POINTER_REGNUM
3080 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
3081                    && REGNO (XEXP (home, 0)) != ARG_POINTER_REGNUM
3082 #endif
3083                    )))
3084     /* If the value is indirect by memory or by a register
3085        that isn't the frame pointer
3086        then it means the object is variable-sized and address through
3087        that register or stack slot.  DBX has no way to represent this
3088        so all we can do is output the variable as a pointer.
3089        If it's not a parameter, ignore it.  */
3090     {
3091       if (REG_P (XEXP (home, 0)))
3092         {
3093           letter = 'r';
3094           code = N_RSYM;
3095           if (REGNO (XEXP (home, 0)) >= FIRST_PSEUDO_REGISTER)
3096             return 0;
3097           number = DBX_REGISTER_NUMBER (REGNO (XEXP (home, 0)));
3098         }
3099       else
3100         {
3101           code = N_LSYM;
3102           /* RTL looks like (MEM (MEM (PLUS (REG...) (CONST_INT...)))).
3103              We want the value of that CONST_INT.  */
3104           number = DEBUGGER_AUTO_OFFSET (XEXP (XEXP (home, 0), 0));
3105         }
3106
3107       /* Effectively do build_pointer_type, but don't cache this type,
3108          since it might be temporary whereas the type it points to
3109          might have been saved for inlining.  */
3110       /* Don't use REFERENCE_TYPE because dbx can't handle that.  */
3111       type = make_node (POINTER_TYPE);
3112       TREE_TYPE (type) = TREE_TYPE (decl);
3113     }
3114   else if (MEM_P (home)
3115            && REG_P (XEXP (home, 0)))
3116     {
3117       code = N_LSYM;
3118       number = DEBUGGER_AUTO_OFFSET (XEXP (home, 0));
3119     }
3120   else if (MEM_P (home)
3121            && GET_CODE (XEXP (home, 0)) == PLUS
3122            && CONST_INT_P (XEXP (XEXP (home, 0), 1)))
3123     {
3124       code = N_LSYM;
3125       /* RTL looks like (MEM (PLUS (REG...) (CONST_INT...)))
3126          We want the value of that CONST_INT.  */
3127       number = DEBUGGER_AUTO_OFFSET (XEXP (home, 0));
3128     }
3129   else if (MEM_P (home)
3130            && GET_CODE (XEXP (home, 0)) == CONST)
3131     {
3132       /* Handle an obscure case which can arise when optimizing and
3133          when there are few available registers.  (This is *always*
3134          the case for i386/i486 targets).  The RTL looks like
3135          (MEM (CONST ...)) even though this variable is a local `auto'
3136          or a local `register' variable.  In effect, what has happened
3137          is that the reload pass has seen that all assignments and
3138          references for one such a local variable can be replaced by
3139          equivalent assignments and references to some static storage
3140          variable, thereby avoiding the need for a register.  In such
3141          cases we're forced to lie to debuggers and tell them that
3142          this variable was itself `static'.  */
3143       int offs;
3144       code = N_LCSYM;
3145       letter = 'V';
3146       if (NULL == dbxout_common_check (decl, &offs))
3147         addr = XEXP (XEXP (home, 0), 0);
3148       else
3149         {
3150           addr = 0;
3151           number = offs;
3152           code = N_GSYM;
3153         }
3154     }
3155   else if (GET_CODE (home) == CONCAT)
3156     {
3157       tree subtype;
3158
3159       /* If TYPE is not a COMPLEX_TYPE (it might be a RECORD_TYPE,
3160          for example), then there is no easy way to figure out
3161          what SUBTYPE should be.  So, we give up.  */
3162       if (TREE_CODE (type) != COMPLEX_TYPE)
3163         return 0;
3164
3165       subtype = TREE_TYPE (type);
3166
3167       /* If the variable's storage is in two parts,
3168          output each as a separate stab with a modified name.  */
3169       if (WORDS_BIG_ENDIAN)
3170         dbxout_symbol_location (decl, subtype, "$imag", XEXP (home, 0));
3171       else
3172         dbxout_symbol_location (decl, subtype, "$real", XEXP (home, 0));
3173
3174       if (WORDS_BIG_ENDIAN)
3175         dbxout_symbol_location (decl, subtype, "$real", XEXP (home, 1));
3176       else
3177         dbxout_symbol_location (decl, subtype, "$imag", XEXP (home, 1));
3178       return 1;
3179     }
3180   else
3181     /* Address might be a MEM, when DECL is a variable-sized object.
3182        Or it might be const0_rtx, meaning previous passes
3183        want us to ignore this variable.  */
3184     return 0;
3185
3186   /* Ok, start a symtab entry and output the variable name.  */
3187   emit_pending_bincls_if_required ();
3188   FORCE_TEXT;
3189
3190 #ifdef DBX_STATIC_BLOCK_START
3191   DBX_STATIC_BLOCK_START (asm_out_file, code);
3192 #endif
3193
3194   dbxout_begin_complex_stabs_noforcetext ();
3195   dbxout_symbol_name (decl, suffix, letter);
3196   dbxout_type (type, 0);
3197   dbxout_finish_complex_stabs (decl, code, addr, 0, number);
3198
3199 #ifdef DBX_STATIC_BLOCK_END
3200   DBX_STATIC_BLOCK_END (asm_out_file, code);
3201 #endif
3202   return 1;
3203 }
3204 \f
3205 /* Output the symbol name of DECL for a stabs, with suffix SUFFIX.
3206    Then output LETTER to indicate the kind of location the symbol has.  */
3207
3208 static void
3209 dbxout_symbol_name (tree decl, const char *suffix, int letter)
3210 {
3211   tree name;
3212
3213   if (DECL_CONTEXT (decl)
3214       && (TYPE_P (DECL_CONTEXT (decl))
3215           || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL))
3216     /* One slight hitch: if this is a VAR_DECL which is a class member
3217        or a namespace member, we must put out the mangled name instead of the
3218        DECL_NAME.  Note also that static member (variable) names DO NOT begin
3219        with underscores in .stabs directives.  */
3220     name = DECL_ASSEMBLER_NAME (decl);
3221   else
3222     /* ...but if we're function-local, we don't want to include the junk
3223        added by ASM_FORMAT_PRIVATE_NAME.  */
3224     name = DECL_NAME (decl);
3225
3226   if (name)
3227     stabstr_I (name);
3228   else
3229     stabstr_S ("(anon)");
3230
3231   if (suffix)
3232     stabstr_S (suffix);
3233   stabstr_C (':');
3234   if (letter)
3235     stabstr_C (letter);
3236 }
3237
3238
3239 /* Output the common block name for DECL in a stabs.
3240
3241    Symbols in global common (.comm) get wrapped with an N_BCOMM/N_ECOMM pair
3242    around each group of symbols in the same .comm area.  The N_GSYM stabs
3243    that are emitted only contain the offset in the common area.  This routine
3244    emits the N_BCOMM and N_ECOMM stabs.  */
3245
3246 static void
3247 dbxout_common_name (tree decl, const char *name, stab_code_type op)
3248 {
3249   dbxout_begin_complex_stabs ();
3250   stabstr_S (name);
3251   dbxout_finish_complex_stabs (decl, op, NULL_RTX, NULL, 0);
3252 }
3253
3254 /* Check decl to determine whether it is a VAR_DECL destined for storage in a
3255    common area.  If it is, the return value will be a non-null string giving
3256    the name of the common storage block it will go into.  If non-null, the
3257    value is the offset into the common block for that symbol's storage.  */
3258
3259 static const char *
3260 dbxout_common_check (tree decl, int *value)
3261 {
3262   rtx home;
3263   rtx sym_addr;
3264   const char *name = NULL;
3265
3266   /* If the decl isn't a VAR_DECL, or if it isn't static, or if
3267      it does not have a value (the offset into the common area), or if it
3268      is thread local (as opposed to global) then it isn't common, and shouldn't
3269      be handled as such.
3270
3271      ??? DECL_THREAD_LOCAL_P check prevents problems with improper .stabs
3272      for thread-local symbols.  Can be handled via same mechanism as used
3273      in dwarf2out.c.  */
3274   if (TREE_CODE (decl) != VAR_DECL
3275       || !TREE_STATIC (decl)
3276       || !DECL_HAS_VALUE_EXPR_P (decl)
3277       || DECL_THREAD_LOCAL_P (decl)
3278       || !is_fortran ())
3279     return NULL;
3280
3281   home = DECL_RTL (decl);
3282   if (home == NULL_RTX || GET_CODE (home) != MEM)
3283     return NULL;
3284
3285   sym_addr = dbxout_expand_expr (DECL_VALUE_EXPR (decl));
3286   if (sym_addr == NULL_RTX || GET_CODE (sym_addr) != MEM)
3287     return NULL;
3288
3289   sym_addr = XEXP (sym_addr, 0);
3290   if (GET_CODE (sym_addr) == CONST)
3291     sym_addr = XEXP (sym_addr, 0);
3292   if ((GET_CODE (sym_addr) == SYMBOL_REF || GET_CODE (sym_addr) == PLUS)
3293       && DECL_INITIAL (decl) == 0)
3294     {
3295
3296       /* We have a sym that will go into a common area, meaning that it
3297          will get storage reserved with a .comm/.lcomm assembler pseudo-op.
3298
3299          Determine name of common area this symbol will be an offset into,
3300          and offset into that area.  Also retrieve the decl for the area
3301          that the symbol is offset into.  */
3302       tree cdecl = NULL;
3303
3304       switch (GET_CODE (sym_addr))
3305         {
3306         case PLUS:
3307           if (CONST_INT_P (XEXP (sym_addr, 0)))
3308             {
3309               name =
3310                 targetm.strip_name_encoding (XSTR (XEXP (sym_addr, 1), 0));
3311               *value = INTVAL (XEXP (sym_addr, 0));
3312               cdecl = SYMBOL_REF_DECL (XEXP (sym_addr, 1));
3313             }
3314           else
3315             {
3316               name =
3317                 targetm.strip_name_encoding (XSTR (XEXP (sym_addr, 0), 0));
3318               *value = INTVAL (XEXP (sym_addr, 1));
3319               cdecl = SYMBOL_REF_DECL (XEXP (sym_addr, 0));
3320             }
3321           break;
3322
3323         case SYMBOL_REF:
3324           name = targetm.strip_name_encoding (XSTR (sym_addr, 0));
3325           *value = 0;
3326           cdecl = SYMBOL_REF_DECL (sym_addr);
3327           break;
3328
3329         default:
3330           error ("common symbol debug info is not structured as "
3331                  "symbol+offset");
3332         }
3333
3334       /* Check area common symbol is offset into.  If this is not public, then
3335          it is not a symbol in a common block.  It must be a .lcomm symbol, not
3336          a .comm symbol.  */
3337       if (cdecl == NULL || !TREE_PUBLIC (cdecl))
3338         name = NULL;
3339     }
3340   else
3341     name = NULL;
3342
3343   return name;
3344 }
3345
3346 /* Output definitions of all the decls in a chain. Return nonzero if
3347    anything was output */
3348
3349 int
3350 dbxout_syms (tree syms)
3351 {
3352   int result = 0;
3353   const char *comm_prev = NULL;
3354   tree syms_prev = NULL;
3355
3356   while (syms)
3357     {
3358       int temp, copen, cclos;
3359       const char *comm_new;
3360
3361       /* Check for common symbol, and then progression into a new/different
3362          block of common symbols.  Emit closing/opening common bracket if
3363          necessary.  */
3364       comm_new = dbxout_common_check (syms, &temp);
3365       copen = comm_new != NULL
3366               && (comm_prev == NULL || strcmp (comm_new, comm_prev));
3367       cclos = comm_prev != NULL
3368               && (comm_new == NULL || strcmp (comm_new, comm_prev));
3369       if (cclos)
3370         dbxout_common_name (syms_prev, comm_prev, N_ECOMM);
3371       if (copen)
3372         {
3373           dbxout_common_name (syms, comm_new, N_BCOMM);
3374           syms_prev = syms;
3375         }
3376       comm_prev = comm_new;
3377
3378       result += dbxout_symbol (syms, 1);
3379       syms = DECL_CHAIN (syms);
3380     }
3381
3382   if (comm_prev != NULL)
3383     dbxout_common_name (syms_prev, comm_prev, N_ECOMM);
3384
3385   return result;
3386 }
3387 \f
3388 /* The following two functions output definitions of function parameters.
3389    Each parameter gets a definition locating it in the parameter list.
3390    Each parameter that is a register variable gets a second definition
3391    locating it in the register.
3392
3393    Printing or argument lists in gdb uses the definitions that
3394    locate in the parameter list.  But reference to the variable in
3395    expressions uses preferentially the definition as a register.  */
3396
3397 /* Output definitions, referring to storage in the parmlist,
3398    of all the parms in PARMS, which is a chain of PARM_DECL nodes.  */
3399
3400 void
3401 dbxout_parms (tree parms)
3402 {
3403   ++debug_nesting;
3404   emit_pending_bincls_if_required ();
3405
3406   for (; parms; parms = DECL_CHAIN (parms))
3407     if (DECL_NAME (parms)
3408         && TREE_TYPE (parms) != error_mark_node
3409         && DECL_RTL_SET_P (parms)
3410         && DECL_INCOMING_RTL (parms))
3411       {
3412         tree eff_type;
3413         char letter;
3414         stab_code_type code;
3415         int number;
3416
3417         /* Perform any necessary register eliminations on the parameter's rtl,
3418            so that the debugging output will be accurate.  */
3419         DECL_INCOMING_RTL (parms)
3420           = eliminate_regs (DECL_INCOMING_RTL (parms), VOIDmode, NULL_RTX);
3421         SET_DECL_RTL (parms,
3422                       eliminate_regs (DECL_RTL (parms), VOIDmode, NULL_RTX));
3423 #ifdef LEAF_REG_REMAP
3424         if (crtl->uses_only_leaf_regs)
3425           {
3426             leaf_renumber_regs_insn (DECL_INCOMING_RTL (parms));
3427             leaf_renumber_regs_insn (DECL_RTL (parms));
3428           }
3429 #endif
3430
3431         if (PARM_PASSED_IN_MEMORY (parms))
3432           {
3433             rtx inrtl = XEXP (DECL_INCOMING_RTL (parms), 0);
3434
3435             /* ??? Here we assume that the parm address is indexed
3436                off the frame pointer or arg pointer.
3437                If that is not true, we produce meaningless results,
3438                but do not crash.  */
3439             if (GET_CODE (inrtl) == PLUS
3440                 && CONST_INT_P (XEXP (inrtl, 1)))
3441               number = INTVAL (XEXP (inrtl, 1));
3442             else
3443               number = 0;
3444
3445             code = N_PSYM;
3446             number = DEBUGGER_ARG_OFFSET (number, inrtl);
3447             letter = 'p';
3448
3449             /* It is quite tempting to use TREE_TYPE (parms) instead
3450                of DECL_ARG_TYPE (parms) for the eff_type, so that gcc
3451                reports the actual type of the parameter, rather than
3452                the promoted type.  This certainly makes GDB's life
3453                easier, at least for some ports.  The change is a bad
3454                idea however, since GDB expects to be able access the
3455                type without performing any conversions.  So for
3456                example, if we were passing a float to an unprototyped
3457                function, gcc will store a double on the stack, but if
3458                we emit a stab saying the type is a float, then gdb
3459                will only read in a single value, and this will produce
3460                an erroneous value.  */
3461             eff_type = DECL_ARG_TYPE (parms);
3462           }
3463         else if (REG_P (DECL_RTL (parms)))
3464           {
3465             rtx best_rtl;
3466
3467             /* Parm passed in registers and lives in registers or nowhere.  */
3468             code = DBX_REGPARM_STABS_CODE;
3469             letter = DBX_REGPARM_STABS_LETTER;
3470
3471             /* For parms passed in registers, it is better to use the
3472                declared type of the variable, not the type it arrived in.  */
3473             eff_type = TREE_TYPE (parms);
3474
3475             /* If parm lives in a register, use that register; pretend
3476                the parm was passed there.  It would be more consistent
3477                to describe the register where the parm was passed, but
3478                in practice that register usually holds something else.
3479                If the parm lives nowhere, use the register where it
3480                was passed.  */
3481             if (REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
3482               best_rtl = DECL_RTL (parms);
3483             else if (GET_CODE (DECL_INCOMING_RTL (parms)) == PARALLEL)
3484               best_rtl = XEXP (XVECEXP (DECL_INCOMING_RTL (parms), 0, 0), 0);
3485             else
3486               best_rtl = DECL_INCOMING_RTL (parms);
3487
3488             number = DBX_REGISTER_NUMBER (REGNO (best_rtl));
3489           }
3490         else if (MEM_P (DECL_RTL (parms))
3491                  && REG_P (XEXP (DECL_RTL (parms), 0))
3492                  && REGNO (XEXP (DECL_RTL (parms), 0)) != HARD_FRAME_POINTER_REGNUM
3493                  && REGNO (XEXP (DECL_RTL (parms), 0)) != STACK_POINTER_REGNUM
3494 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
3495                  && REGNO (XEXP (DECL_RTL (parms), 0)) != ARG_POINTER_REGNUM
3496 #endif
3497                  )
3498           {
3499             /* Parm was passed via invisible reference.
3500                That is, its address was passed in a register.
3501                Output it as if it lived in that register.
3502                The debugger will know from the type
3503                that it was actually passed by invisible reference.  */
3504
3505             code = DBX_REGPARM_STABS_CODE;
3506
3507             /* GDB likes this marked with a special letter.  */
3508             letter = (use_gnu_debug_info_extensions
3509                       ? 'a' : DBX_REGPARM_STABS_LETTER);
3510             eff_type = TREE_TYPE (parms);
3511
3512             /* DECL_RTL looks like (MEM (REG...).  Get the register number.
3513                If it is an unallocated pseudo-reg, then use the register where
3514                it was passed instead.
3515                ??? Why is DBX_REGISTER_NUMBER not used here?  */
3516
3517             if (REGNO (XEXP (DECL_RTL (parms), 0)) < FIRST_PSEUDO_REGISTER)
3518               number = REGNO (XEXP (DECL_RTL (parms), 0));
3519             else
3520               number = REGNO (DECL_INCOMING_RTL (parms));
3521           }
3522         else if (MEM_P (DECL_RTL (parms))
3523                  && MEM_P (XEXP (DECL_RTL (parms), 0)))
3524           {
3525             /* Parm was passed via invisible reference, with the reference
3526                living on the stack.  DECL_RTL looks like
3527                (MEM (MEM (PLUS (REG ...) (CONST_INT ...)))) or it
3528                could look like (MEM (MEM (REG))).  */
3529
3530             code = N_PSYM;
3531             letter = 'v';
3532             eff_type = TREE_TYPE (parms);
3533
3534             if (!REG_P (XEXP (XEXP (DECL_RTL (parms), 0), 0)))
3535               number = INTVAL (XEXP (XEXP (XEXP (DECL_RTL (parms), 0), 0), 1));
3536             else
3537               number = 0;
3538
3539             number = DEBUGGER_ARG_OFFSET (number,
3540                                           XEXP (XEXP (DECL_RTL (parms), 0), 0));
3541           }
3542         else if (MEM_P (DECL_RTL (parms))
3543                  && XEXP (DECL_RTL (parms), 0) != const0_rtx
3544                  /* ??? A constant address for a parm can happen
3545                     when the reg it lives in is equiv to a constant in memory.
3546                     Should make this not happen, after 2.4.  */
3547                  && ! CONSTANT_P (XEXP (DECL_RTL (parms), 0)))
3548           {
3549             /* Parm was passed in registers but lives on the stack.  */
3550
3551             code = N_PSYM;
3552             letter = 'p';
3553             eff_type = TREE_TYPE (parms);
3554
3555             /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...))),
3556                in which case we want the value of that CONST_INT,
3557                or (MEM (REG ...)),
3558                in which case we use a value of zero.  */
3559             if (!REG_P (XEXP (DECL_RTL (parms), 0)))
3560               number = INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1));
3561             else
3562               number = 0;
3563
3564             /* Make a big endian correction if the mode of the type of the
3565                parameter is not the same as the mode of the rtl.  */
3566             if (BYTES_BIG_ENDIAN
3567                 && TYPE_MODE (TREE_TYPE (parms)) != GET_MODE (DECL_RTL (parms))
3568                 && GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (parms))) < UNITS_PER_WORD)
3569               number += (GET_MODE_SIZE (GET_MODE (DECL_RTL (parms)))
3570                          - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (parms))));
3571           }
3572         else
3573           /* ??? We don't know how to represent this argument.  */
3574           continue;
3575
3576         dbxout_begin_complex_stabs ();
3577
3578         if (DECL_NAME (parms))
3579           {
3580             stabstr_I (DECL_NAME (parms));
3581             stabstr_C (':');
3582           }
3583         else
3584           stabstr_S ("(anon):");
3585         stabstr_C (letter);
3586         dbxout_type (eff_type, 0);
3587         dbxout_finish_complex_stabs (parms, code, 0, 0, number);
3588       }
3589   DBXOUT_DECR_NESTING;
3590 }
3591
3592 /* Output definitions for the places where parms live during the function,
3593    when different from where they were passed, when the parms were passed
3594    in memory.
3595
3596    It is not useful to do this for parms passed in registers
3597    that live during the function in different registers, because it is
3598    impossible to look in the passed register for the passed value,
3599    so we use the within-the-function register to begin with.
3600
3601    PARMS is a chain of PARM_DECL nodes.  */
3602
3603 void
3604 dbxout_reg_parms (tree parms)
3605 {
3606   ++debug_nesting;
3607
3608   for (; parms; parms = DECL_CHAIN (parms))
3609     if (DECL_NAME (parms) && PARM_PASSED_IN_MEMORY (parms))
3610       {
3611         /* Report parms that live in registers during the function
3612            but were passed in memory.  */
3613         if (REG_P (DECL_RTL (parms))
3614             && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
3615           dbxout_symbol_location (parms, TREE_TYPE (parms),
3616                                   0, DECL_RTL (parms));
3617         else if (GET_CODE (DECL_RTL (parms)) == CONCAT)
3618           dbxout_symbol_location (parms, TREE_TYPE (parms),
3619                                   0, DECL_RTL (parms));
3620         /* Report parms that live in memory but not where they were passed.  */
3621         else if (MEM_P (DECL_RTL (parms))
3622                  && ! rtx_equal_p (DECL_RTL (parms), DECL_INCOMING_RTL (parms)))
3623           dbxout_symbol_location (parms, TREE_TYPE (parms),
3624                                   0, DECL_RTL (parms));
3625       }
3626   DBXOUT_DECR_NESTING;
3627 }
3628 \f
3629 /* Given a chain of ..._TYPE nodes (as come in a parameter list),
3630    output definitions of those names, in raw form */
3631
3632 static void
3633 dbxout_args (tree args)
3634 {
3635   while (args)
3636     {
3637       stabstr_C (',');
3638       dbxout_type (TREE_VALUE (args), 0);
3639       args = TREE_CHAIN (args);
3640     }
3641 }
3642 \f
3643 #if defined (DBX_DEBUGGING_INFO)
3644
3645 /* Subroutine of dbxout_block.  Emit an N_LBRAC stab referencing LABEL.
3646    BEGIN_LABEL is the name of the beginning of the function, which may
3647    be required.  */
3648 static void
3649 dbx_output_lbrac (const char *label,
3650                   const char *begin_label ATTRIBUTE_UNUSED)
3651 {
3652   dbxout_begin_stabn (N_LBRAC);
3653   if (DBX_BLOCKS_FUNCTION_RELATIVE)
3654     dbxout_stab_value_label_diff (label, begin_label);
3655   else
3656     dbxout_stab_value_label (label);
3657 }
3658
3659 /* Subroutine of dbxout_block.  Emit an N_RBRAC stab referencing LABEL.
3660    BEGIN_LABEL is the name of the beginning of the function, which may
3661    be required.  */
3662 static void
3663 dbx_output_rbrac (const char *label,
3664                   const char *begin_label ATTRIBUTE_UNUSED)
3665 {
3666   dbxout_begin_stabn (N_RBRAC);
3667   if (DBX_BLOCKS_FUNCTION_RELATIVE)
3668     dbxout_stab_value_label_diff (label, begin_label);
3669   else
3670     dbxout_stab_value_label (label);
3671 }
3672
3673 /* Output everything about a symbol block (a BLOCK node
3674    that represents a scope level),
3675    including recursive output of contained blocks.
3676
3677    BLOCK is the BLOCK node.
3678    DEPTH is its depth within containing symbol blocks.
3679    ARGS is usually zero; but for the outermost block of the
3680    body of a function, it is a chain of PARM_DECLs for the function parameters.
3681    We output definitions of all the register parms
3682    as if they were local variables of that block.
3683
3684    If -g1 was used, we count blocks just the same, but output nothing
3685    except for the outermost block.
3686
3687    Actually, BLOCK may be several blocks chained together.
3688    We handle them all in sequence.  */
3689
3690 static void
3691 dbxout_block (tree block, int depth, tree args)
3692 {
3693   char begin_label[20];
3694   /* Reference current function start using LFBB.  */
3695   ASM_GENERATE_INTERNAL_LABEL (begin_label, "LFBB", scope_labelno);
3696
3697   while (block)
3698     {
3699       /* Ignore blocks never expanded or otherwise marked as real.  */
3700       if (TREE_USED (block) && TREE_ASM_WRITTEN (block))
3701         {
3702           int did_output;
3703           int blocknum = BLOCK_NUMBER (block);
3704
3705           /* In dbx format, the syms of a block come before the N_LBRAC.
3706              If nothing is output, we don't need the N_LBRAC, either.  */
3707           did_output = 0;
3708           if (debug_info_level != DINFO_LEVEL_TERSE || depth == 0)
3709             did_output = dbxout_syms (BLOCK_VARS (block));
3710           if (args)
3711             dbxout_reg_parms (args);
3712
3713           /* Now output an N_LBRAC symbol to represent the beginning of
3714              the block.  Use the block's tree-walk order to generate
3715              the assembler symbols LBBn and LBEn
3716              that final will define around the code in this block.  */
3717           if (did_output)
3718             {
3719               char buf[20];
3720               const char *scope_start;
3721
3722               if (depth == 0)
3723                 /* The outermost block doesn't get LBB labels; use
3724                    the LFBB local symbol emitted by dbxout_begin_prologue.  */
3725                 scope_start = begin_label;
3726               else
3727                 {
3728                   ASM_GENERATE_INTERNAL_LABEL (buf, "LBB", blocknum);
3729                   scope_start = buf;
3730                 }
3731
3732               dbx_output_lbrac (scope_start, begin_label);
3733             }
3734
3735           /* Output the subblocks.  */
3736           dbxout_block (BLOCK_SUBBLOCKS (block), depth + 1, NULL_TREE);
3737
3738           /* Refer to the marker for the end of the block.  */
3739           if (did_output)
3740             {
3741               char buf[100];
3742               if (depth == 0)
3743                 /* The outermost block doesn't get LBE labels;
3744                    use the "scope" label which will be emitted
3745                    by dbxout_function_end.  */
3746                 ASM_GENERATE_INTERNAL_LABEL (buf, "Lscope", scope_labelno);
3747               else
3748                 ASM_GENERATE_INTERNAL_LABEL (buf, "LBE", blocknum);
3749
3750               dbx_output_rbrac (buf, begin_label);
3751             }
3752         }
3753       block = BLOCK_CHAIN (block);
3754     }
3755 }
3756
3757 /* Output the information about a function and its arguments and result.
3758    Usually this follows the function's code,
3759    but on some systems, it comes before.  */
3760
3761 static void
3762 dbxout_begin_function (tree decl)
3763 {
3764   int saved_tree_used1;
3765
3766   saved_tree_used1 = TREE_USED (decl);
3767   TREE_USED (decl) = 1;
3768   if (DECL_NAME (DECL_RESULT (decl)) != 0)
3769     {
3770       int saved_tree_used2 = TREE_USED (DECL_RESULT (decl));
3771       TREE_USED (DECL_RESULT (decl)) = 1;
3772       dbxout_symbol (decl, 0);
3773       TREE_USED (DECL_RESULT (decl)) = saved_tree_used2;
3774     }
3775   else
3776     dbxout_symbol (decl, 0);
3777   TREE_USED (decl) = saved_tree_used1;
3778
3779   dbxout_parms (DECL_ARGUMENTS (decl));
3780   if (DECL_NAME (DECL_RESULT (decl)) != 0)
3781     dbxout_symbol (DECL_RESULT (decl), 1);
3782 }
3783 #endif /* DBX_DEBUGGING_INFO */
3784
3785 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
3786
3787 /* Record an element in the table of global destructors.  SYMBOL is
3788    a SYMBOL_REF of the function to be called; PRIORITY is a number
3789    between 0 and MAX_INIT_PRIORITY.  */
3790
3791 void
3792 default_stabs_asm_out_destructor (rtx symbol ATTRIBUTE_UNUSED,
3793                                   int priority ATTRIBUTE_UNUSED)
3794 {
3795 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
3796   /* Tell GNU LD that this is part of the static destructor set.
3797      This will work for any system that uses stabs, most usefully
3798      aout systems.  */
3799   dbxout_begin_simple_stabs ("___DTOR_LIST__", 22 /* N_SETT */);
3800   dbxout_stab_value_label (XSTR (symbol, 0));
3801 #else
3802   sorry ("global destructors not supported on this target");
3803 #endif
3804 }
3805
3806 /* Likewise for global constructors.  */
3807
3808 void
3809 default_stabs_asm_out_constructor (rtx symbol ATTRIBUTE_UNUSED,
3810                                    int priority ATTRIBUTE_UNUSED)
3811 {
3812 #if defined DBX_DEBUGGING_INFO || defined XCOFF_DEBUGGING_INFO
3813   /* Tell GNU LD that this is part of the static destructor set.
3814      This will work for any system that uses stabs, most usefully
3815      aout systems.  */
3816   dbxout_begin_simple_stabs ("___CTOR_LIST__", 22 /* N_SETT */);
3817   dbxout_stab_value_label (XSTR (symbol, 0));
3818 #else
3819   sorry ("global constructors not supported on this target");
3820 #endif
3821 }
3822
3823 #include "gt-dbxout.h"