OSDN Git Service

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