OSDN Git Service

* tree-eh.c (lower_try_finally_switch): Create the label along with
[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) || defined (XCOFF_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 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
930
931 #if defined (DBX_DEBUGGING_INFO)
932
933 static void
934 dbxout_function_end (tree decl ATTRIBUTE_UNUSED)
935 {
936   char lscope_label_name[100];
937
938   /* The Lscope label must be emitted even if we aren't doing anything
939      else; dbxout_block needs it.  */
940   switch_to_section (function_section (current_function_decl));
941
942   /* Convert Lscope into the appropriate format for local labels in case
943      the system doesn't insert underscores in front of user generated
944      labels.  */
945   ASM_GENERATE_INTERNAL_LABEL (lscope_label_name, "Lscope", scope_labelno);
946   targetm.asm_out.internal_label (asm_out_file, "Lscope", scope_labelno);
947
948   /* The N_FUN tag at the end of the function is a GNU extension,
949      which may be undesirable, and is unnecessary if we do not have
950      named sections.  */
951   if (!use_gnu_debug_info_extensions
952       || NO_DBX_FUNCTION_END
953       || !targetm.have_named_sections)
954     return;
955
956   /* By convention, GCC will mark the end of a function with an N_FUN
957      symbol and an empty string.  */
958   if (flag_reorder_blocks_and_partition)
959     {
960       dbxout_begin_empty_stabs (N_FUN);
961       dbxout_stab_value_label_diff (crtl->subsections.hot_section_end_label,
962                                     crtl->subsections.hot_section_label);
963       dbxout_begin_empty_stabs (N_FUN);
964       dbxout_stab_value_label_diff (crtl->subsections.cold_section_end_label,
965                                     crtl->subsections.cold_section_label);
966     }
967   else
968     {
969       char begin_label[20];
970       /* Reference current function start using LFBB.  */
971       ASM_GENERATE_INTERNAL_LABEL (begin_label, "LFBB", scope_labelno);
972       dbxout_begin_empty_stabs (N_FUN);
973       dbxout_stab_value_label_diff (lscope_label_name, begin_label);
974     }
975
976   if (!NO_DBX_BNSYM_ENSYM && !flag_debug_only_used_symbols)
977     dbxout_stabd (N_ENSYM, 0);
978 }
979 #endif /* DBX_DEBUGGING_INFO */
980
981 /* Get lang description for N_SO stab.  */
982 static unsigned int ATTRIBUTE_UNUSED
983 get_lang_number (void)
984 {
985   const char *language_string = lang_hooks.name;
986
987   if (strcmp (language_string, "GNU C") == 0)
988     return N_SO_C;
989   else if (strcmp (language_string, "GNU C++") == 0)
990     return N_SO_CC;
991   else if (strcmp (language_string, "GNU F77") == 0)
992     return N_SO_FORTRAN;
993   else if (strcmp (language_string, "GNU Fortran") == 0)
994     return N_SO_FORTRAN90; /* CHECKME */
995   else if (strcmp (language_string, "GNU Pascal") == 0)
996     return N_SO_PASCAL;
997   else if (strcmp (language_string, "GNU Objective-C") == 0)
998     return N_SO_OBJC;
999   else if (strcmp (language_string, "GNU Objective-C++") == 0)
1000     return N_SO_OBJCPLUS;
1001   else
1002     return 0;
1003
1004 }
1005
1006 static bool
1007 is_fortran (void)
1008 {
1009    unsigned int lang = get_lang_number ();
1010
1011    return (lang == N_SO_FORTRAN) || (lang == N_SO_FORTRAN90);
1012 }
1013
1014 /* At the beginning of compilation, start writing the symbol table.
1015    Initialize `typevec' and output the standard data types of C.  */
1016
1017 static void
1018 dbxout_init (const char *input_file_name)
1019 {
1020   char ltext_label_name[100];
1021   bool used_ltext_label_name = false;
1022   tree syms = lang_hooks.decls.getdecls ();
1023   const char *mapped_name;
1024
1025   typevec_len = 100;
1026   typevec = ggc_alloc_cleared_vec_typeinfo (typevec_len);
1027
1028   /* stabstr_ob contains one string, which will be just fine with
1029      1-byte alignment.  */
1030   obstack_specify_allocation (&stabstr_ob, 0, 1, xmalloc, free);
1031
1032   /* Convert Ltext into the appropriate format for local labels in case
1033      the system doesn't insert underscores in front of user generated
1034      labels.  */
1035   ASM_GENERATE_INTERNAL_LABEL (ltext_label_name, "Ltext", 0);
1036
1037   /* Put the current working directory in an N_SO symbol.  */
1038   if (use_gnu_debug_info_extensions && !NO_DBX_MAIN_SOURCE_DIRECTORY)
1039     {
1040       static const char *cwd;
1041
1042       if (!cwd)
1043         {
1044           cwd = get_src_pwd ();
1045           if (cwd[0] == '\0')
1046             cwd = "/";
1047           else if (!IS_DIR_SEPARATOR (cwd[strlen (cwd) - 1]))
1048             cwd = concat (cwd, "/", NULL);
1049           cwd = remap_debug_filename (cwd);
1050         }
1051 #ifdef DBX_OUTPUT_MAIN_SOURCE_DIRECTORY
1052       DBX_OUTPUT_MAIN_SOURCE_DIRECTORY (asm_out_file, cwd);
1053 #else /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */
1054       dbxout_begin_simple_stabs_desc (cwd, N_SO, get_lang_number ());
1055       dbxout_stab_value_label (ltext_label_name);
1056       used_ltext_label_name = true;
1057 #endif /* no DBX_OUTPUT_MAIN_SOURCE_DIRECTORY */
1058     }
1059
1060   mapped_name = remap_debug_filename (input_file_name);
1061 #ifdef DBX_OUTPUT_MAIN_SOURCE_FILENAME
1062   DBX_OUTPUT_MAIN_SOURCE_FILENAME (asm_out_file, mapped_name);
1063 #else
1064   dbxout_begin_simple_stabs_desc (mapped_name, N_SO, get_lang_number ());
1065   dbxout_stab_value_label (ltext_label_name);
1066   used_ltext_label_name = true;
1067 #endif
1068
1069   if (used_ltext_label_name)
1070     {
1071       switch_to_section (text_section);
1072       targetm.asm_out.internal_label (asm_out_file, "Ltext", 0);
1073     }
1074
1075   /* Emit an N_OPT stab to indicate that this file was compiled by GCC.
1076      The string used is historical.  */
1077 #ifndef NO_DBX_GCC_MARKER
1078   dbxout_begin_simple_stabs ("gcc2_compiled.", N_OPT);
1079   dbxout_stab_value_zero ();
1080 #endif
1081
1082   base_input_file = lastfile = input_file_name;
1083
1084   next_type_number = 1;
1085
1086 #ifdef DBX_USE_BINCL
1087   current_file = XNEW (struct dbx_file);
1088   current_file->next = NULL;
1089   current_file->file_number = 0;
1090   current_file->next_type_number = 1;
1091   next_file_number = 1;
1092   current_file->prev = NULL;
1093   current_file->bincl_status = BINCL_NOT_REQUIRED;
1094   current_file->pending_bincl_name = NULL;
1095 #endif
1096
1097   /* Get all permanent types that have typedef names, and output them
1098      all, except for those already output.  Some language front ends
1099      put these declarations in the top-level scope; some do not;
1100      the latter are responsible for calling debug_hooks->type_decl from
1101      their record_builtin_type function.  */
1102   dbxout_typedefs (syms);
1103
1104   if (preinit_symbols)
1105     {
1106       tree t;
1107       for (t = nreverse (preinit_symbols); t; t = TREE_CHAIN (t))
1108         dbxout_symbol (TREE_VALUE (t), 0);
1109       preinit_symbols = 0;
1110     }
1111 }
1112
1113 /* Output any typedef names for types described by TYPE_DECLs in SYMS.  */
1114
1115 static void
1116 dbxout_typedefs (tree syms)
1117 {
1118   for (; syms != NULL_TREE; syms = DECL_CHAIN (syms))
1119     {
1120       if (TREE_CODE (syms) == TYPE_DECL)
1121         {
1122           tree type = TREE_TYPE (syms);
1123           if (TYPE_NAME (type)
1124               && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1125               && COMPLETE_OR_VOID_TYPE_P (type)
1126               && ! TREE_ASM_WRITTEN (TYPE_NAME (type)))
1127             dbxout_symbol (TYPE_NAME (type), 0);
1128         }
1129     }
1130 }
1131
1132 #ifdef DBX_USE_BINCL
1133 /* Emit BINCL stab using given name.  */
1134 static void
1135 emit_bincl_stab (const char *name)
1136 {
1137   dbxout_begin_simple_stabs (name, N_BINCL);
1138   dbxout_stab_value_zero ();
1139 }
1140
1141 /* If there are pending bincls then it is time to emit all of them.  */
1142
1143 static inline void
1144 emit_pending_bincls_if_required (void)
1145 {
1146   if (pending_bincls)
1147     emit_pending_bincls ();
1148 }
1149
1150 /* Emit all pending bincls.  */
1151
1152 static void
1153 emit_pending_bincls (void)
1154 {
1155   struct dbx_file *f = current_file;
1156
1157   /* Find first pending bincl.  */
1158   while (f->bincl_status == BINCL_PENDING)
1159     f = f->next;
1160
1161   /* Now emit all bincls.  */
1162   f = f->prev;
1163
1164   while (f)
1165     {
1166       if (f->bincl_status == BINCL_PENDING)
1167         {
1168           emit_bincl_stab (f->pending_bincl_name);
1169
1170           /* Update file number and status.  */
1171           f->file_number = next_file_number++;
1172           f->bincl_status = BINCL_PROCESSED;
1173         }
1174       if (f == current_file)
1175         break;
1176       f = f->prev;
1177     }
1178
1179   /* All pending bincls have been emitted.  */
1180   pending_bincls = 0;
1181 }
1182
1183 #else
1184
1185 static inline void
1186 emit_pending_bincls_if_required (void) {}
1187 #endif
1188
1189 /* Change to reading from a new source file.  Generate a N_BINCL stab.  */
1190
1191 static void
1192 dbxout_start_source_file (unsigned int line ATTRIBUTE_UNUSED,
1193                           const char *filename ATTRIBUTE_UNUSED)
1194 {
1195 #ifdef DBX_USE_BINCL
1196   struct dbx_file *n = XNEW (struct dbx_file);
1197
1198   n->next = current_file;
1199   n->next_type_number = 1;
1200   /* Do not assign file number now.
1201      Delay it until we actually emit BINCL.  */
1202   n->file_number = 0;
1203   n->prev = NULL;
1204   current_file->prev = n;
1205   n->bincl_status = BINCL_PENDING;
1206   n->pending_bincl_name = remap_debug_filename (filename);
1207   pending_bincls = 1;
1208   current_file = n;
1209 #endif
1210 }
1211
1212 /* Revert to reading a previous source file.  Generate a N_EINCL stab.  */
1213
1214 static void
1215 dbxout_end_source_file (unsigned int line ATTRIBUTE_UNUSED)
1216 {
1217 #ifdef DBX_USE_BINCL
1218   /* Emit EINCL stab only if BINCL is not pending.  */
1219   if (current_file->bincl_status == BINCL_PROCESSED)
1220     {
1221       dbxout_begin_stabn (N_EINCL);
1222       dbxout_stab_value_zero ();
1223     }
1224   current_file->bincl_status = BINCL_NOT_REQUIRED;
1225   current_file = current_file->next;
1226 #endif
1227 }
1228
1229 /* Handle a few odd cases that occur when trying to make PCH files work.  */
1230
1231 static void
1232 dbxout_handle_pch (unsigned at_end)
1233 {
1234   if (! at_end)
1235     {
1236       /* When using the PCH, this file will be included, so we need to output
1237          a BINCL.  */
1238       dbxout_start_source_file (0, lastfile);
1239
1240       /* The base file when using the PCH won't be the same as
1241          the base file when it's being generated.  */
1242       lastfile = NULL;
1243     }
1244   else
1245     {
1246       /* ... and an EINCL.  */
1247       dbxout_end_source_file (0);
1248
1249       /* Deal with cases where 'lastfile' was never actually changed.  */
1250       lastfile_is_base = lastfile == NULL;
1251     }
1252 }
1253
1254 #if defined (DBX_DEBUGGING_INFO)
1255
1256 static void dbxout_block (tree, int, tree);
1257
1258 /* Output debugging info to FILE to switch to sourcefile FILENAME.  */
1259
1260 static void
1261 dbxout_source_file (const char *filename)
1262 {
1263   if (lastfile == 0 && lastfile_is_base)
1264     {
1265       lastfile = base_input_file;
1266       lastfile_is_base = 0;
1267     }
1268
1269   if (filename && (lastfile == 0 || strcmp (filename, lastfile)))
1270     {
1271       /* Don't change section amid function.  */
1272       if (current_function_decl == NULL_TREE)
1273         switch_to_section (text_section);
1274
1275       dbxout_begin_simple_stabs (remap_debug_filename (filename), N_SOL);
1276       dbxout_stab_value_internal_label ("Ltext", &source_label_number);
1277       lastfile = filename;
1278     }
1279 }
1280
1281 /* Output N_BNSYM, line number symbol entry, and local symbol at
1282    function scope  */
1283
1284 static void
1285 dbxout_begin_prologue (unsigned int lineno, const char *filename)
1286 {
1287   if (use_gnu_debug_info_extensions
1288       && !NO_DBX_FUNCTION_END
1289       && !NO_DBX_BNSYM_ENSYM
1290       && !flag_debug_only_used_symbols)
1291     dbxout_stabd (N_BNSYM, 0);
1292
1293   /* pre-increment the scope counter */
1294   scope_labelno++;
1295
1296   dbxout_source_line (lineno, filename, 0, true);
1297   /* Output function begin block at function scope, referenced
1298      by dbxout_block, dbxout_source_line and dbxout_function_end.  */
1299   emit_pending_bincls_if_required ();
1300   targetm.asm_out.internal_label (asm_out_file, "LFBB", scope_labelno);
1301 }
1302
1303 /* Output a line number symbol entry for source file FILENAME and line
1304    number LINENO.  */
1305
1306 static void
1307 dbxout_source_line (unsigned int lineno, const char *filename,
1308                     int discriminator ATTRIBUTE_UNUSED,
1309                     bool is_stmt ATTRIBUTE_UNUSED)
1310 {
1311   dbxout_source_file (filename);
1312
1313 #ifdef DBX_OUTPUT_SOURCE_LINE
1314   DBX_OUTPUT_SOURCE_LINE (asm_out_file, lineno, dbxout_source_line_counter);
1315 #else
1316   if (DBX_LINES_FUNCTION_RELATIVE)
1317     {
1318       char begin_label[20];
1319       dbxout_begin_stabn_sline (lineno);
1320       /* Reference current function start using LFBB.  */
1321       ASM_GENERATE_INTERNAL_LABEL (begin_label, "LFBB", scope_labelno);
1322       dbxout_stab_value_internal_label_diff ("LM", &dbxout_source_line_counter,
1323                                              begin_label);
1324     }
1325   else
1326     dbxout_stabd (N_SLINE, lineno);
1327 #endif
1328 }
1329
1330 /* Describe the beginning of an internal block within a function.  */
1331
1332 static void
1333 dbxout_begin_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int n)
1334 {
1335   emit_pending_bincls_if_required ();
1336   targetm.asm_out.internal_label (asm_out_file, "LBB", n);
1337 }
1338
1339 /* Describe the end line-number of an internal block within a function.  */
1340
1341 static void
1342 dbxout_end_block (unsigned int line ATTRIBUTE_UNUSED, unsigned int n)
1343 {
1344   emit_pending_bincls_if_required ();
1345   targetm.asm_out.internal_label (asm_out_file, "LBE", n);
1346 }
1347
1348 /* Output dbx data for a function definition.
1349    This includes a definition of the function name itself (a symbol),
1350    definitions of the parameters (locating them in the parameter list)
1351    and then output the block that makes up the function's body
1352    (including all the auto variables of the function).  */
1353
1354 static void
1355 dbxout_function_decl (tree decl)
1356 {
1357   emit_pending_bincls_if_required ();
1358 #ifndef DBX_FUNCTION_FIRST
1359   dbxout_begin_function (decl);
1360 #endif
1361   dbxout_block (DECL_INITIAL (decl), 0, DECL_ARGUMENTS (decl));
1362   dbxout_function_end (decl);
1363 }
1364
1365 #endif /* DBX_DEBUGGING_INFO  */
1366
1367 /* Debug information for a global DECL.  Called from toplev.c after
1368    compilation proper has finished.  */
1369 static void
1370 dbxout_global_decl (tree decl)
1371 {
1372   if (TREE_CODE (decl) == VAR_DECL && !DECL_EXTERNAL (decl))
1373     {
1374       int saved_tree_used = TREE_USED (decl);
1375       TREE_USED (decl) = 1;
1376       dbxout_symbol (decl, 0);
1377       TREE_USED (decl) = saved_tree_used;
1378     }
1379 }
1380
1381 /* This is just a function-type adapter; dbxout_symbol does exactly
1382    what we want but returns an int.  */
1383 static void
1384 dbxout_type_decl (tree decl, int local)
1385 {
1386   dbxout_symbol (decl, local);
1387 }
1388
1389 /* At the end of compilation, finish writing the symbol table.
1390    The default is to call debug_free_queue but do nothing else.  */
1391
1392 static void
1393 dbxout_finish (const char *filename ATTRIBUTE_UNUSED)
1394 {
1395 #ifdef DBX_OUTPUT_MAIN_SOURCE_FILE_END
1396   DBX_OUTPUT_MAIN_SOURCE_FILE_END (asm_out_file, filename);
1397 #elif defined DBX_OUTPUT_NULL_N_SO_AT_MAIN_SOURCE_FILE_END
1398  {
1399    switch_to_section (text_section);
1400    dbxout_begin_empty_stabs (N_SO);
1401    dbxout_stab_value_internal_label ("Letext", 0);
1402  }
1403 #endif
1404   debug_free_queue ();
1405 }
1406
1407 /* Output the index of a type.  */
1408
1409 static void
1410 dbxout_type_index (tree type)
1411 {
1412 #ifndef DBX_USE_BINCL
1413   stabstr_D (TYPE_SYMTAB_ADDRESS (type));
1414 #else
1415   struct typeinfo *t = &typevec[TYPE_SYMTAB_ADDRESS (type)];
1416   stabstr_C ('(');
1417   stabstr_D (t->file_number);
1418   stabstr_C (',');
1419   stabstr_D (t->type_number);
1420   stabstr_C (')');
1421 #endif
1422 }
1423
1424 \f
1425 /* Generate the symbols for any queued up type symbols we encountered
1426    while generating the type info for some originally used symbol.
1427    This might generate additional entries in the queue.  Only when
1428    the nesting depth goes to 0 is this routine called.  */
1429
1430 static void
1431 debug_flush_symbol_queue (void)
1432 {
1433   int i;
1434
1435   /* Make sure that additionally queued items are not flushed
1436      prematurely.  */
1437
1438   ++debug_nesting;
1439
1440   for (i = 0; i < symbol_queue_index; ++i)
1441     {
1442       /* If we pushed queued symbols then such symbols must be
1443          output no matter what anyone else says.  Specifically,
1444          we need to make sure dbxout_symbol() thinks the symbol was
1445          used and also we need to override TYPE_DECL_SUPPRESS_DEBUG
1446          which may be set for outside reasons.  */
1447       int saved_tree_used = TREE_USED (symbol_queue[i]);
1448       int saved_suppress_debug = TYPE_DECL_SUPPRESS_DEBUG (symbol_queue[i]);
1449       TREE_USED (symbol_queue[i]) = 1;
1450       TYPE_DECL_SUPPRESS_DEBUG (symbol_queue[i]) = 0;
1451
1452 #ifdef DBX_DEBUGGING_INFO
1453       dbxout_symbol (symbol_queue[i], 0);
1454 #endif
1455
1456       TREE_USED (symbol_queue[i]) = saved_tree_used;
1457       TYPE_DECL_SUPPRESS_DEBUG (symbol_queue[i]) = saved_suppress_debug;
1458     }
1459
1460   symbol_queue_index = 0;
1461   --debug_nesting;
1462 }
1463
1464 /* Queue a type symbol needed as part of the definition of a decl
1465    symbol.  These symbols are generated when debug_flush_symbol_queue()
1466    is called.  */
1467
1468 static void
1469 debug_queue_symbol (tree decl)
1470 {
1471   if (symbol_queue_index >= symbol_queue_size)
1472     {
1473       symbol_queue_size += 10;
1474       symbol_queue = XRESIZEVEC (tree, symbol_queue, symbol_queue_size);
1475     }
1476
1477   symbol_queue[symbol_queue_index++] = decl;
1478 }
1479
1480 /* Free symbol queue.  */
1481 static void
1482 debug_free_queue (void)
1483 {
1484   if (symbol_queue)
1485     {
1486       free (symbol_queue);
1487       symbol_queue = NULL;
1488       symbol_queue_size = 0;
1489     }
1490 }
1491 \f
1492 /* Used in several places: evaluates to '0' for a private decl,
1493    '1' for a protected decl, '2' for a public decl.  */
1494 #define DECL_ACCESSIBILITY_CHAR(DECL) \
1495 (TREE_PRIVATE (DECL) ? '0' : TREE_PROTECTED (DECL) ? '1' : '2')
1496
1497 /* Subroutine of `dbxout_type'.  Output the type fields of TYPE.
1498    This must be a separate function because anonymous unions require
1499    recursive calls.  */
1500
1501 static void
1502 dbxout_type_fields (tree type)
1503 {
1504   tree tem;
1505
1506   /* Output the name, type, position (in bits), size (in bits) of each
1507      field that we can support.  */
1508   for (tem = TYPE_FIELDS (type); tem; tem = DECL_CHAIN (tem))
1509     {
1510       /* If one of the nodes is an error_mark or its type is then
1511          return early.  */
1512       if (tem == error_mark_node || TREE_TYPE (tem) == error_mark_node)
1513         return;
1514
1515       /* Omit here local type decls until we know how to support them.  */
1516       if (TREE_CODE (tem) == TYPE_DECL
1517           /* Omit here the nameless fields that are used to skip bits.  */
1518           || DECL_IGNORED_P (tem)
1519           /* Omit fields whose position or size are variable or too large to
1520              represent.  */
1521           || (TREE_CODE (tem) == FIELD_DECL
1522               && (! host_integerp (bit_position (tem), 0)
1523                   || ! DECL_SIZE (tem)
1524                   || ! host_integerp (DECL_SIZE (tem), 1))))
1525         continue;
1526
1527       else if (TREE_CODE (tem) != CONST_DECL)
1528         {
1529           /* Continue the line if necessary,
1530              but not before the first field.  */
1531           if (tem != TYPE_FIELDS (type))
1532             CONTIN;
1533
1534           if (DECL_NAME (tem))
1535             stabstr_I (DECL_NAME (tem));
1536           stabstr_C (':');
1537
1538           if (use_gnu_debug_info_extensions
1539               && (TREE_PRIVATE (tem) || TREE_PROTECTED (tem)
1540                   || TREE_CODE (tem) != FIELD_DECL))
1541             {
1542               stabstr_C ('/');
1543               stabstr_C (DECL_ACCESSIBILITY_CHAR (tem));
1544             }
1545
1546           dbxout_type ((TREE_CODE (tem) == FIELD_DECL
1547                         && DECL_BIT_FIELD_TYPE (tem))
1548                        ? DECL_BIT_FIELD_TYPE (tem) : TREE_TYPE (tem), 0);
1549
1550           if (TREE_CODE (tem) == VAR_DECL)
1551             {
1552               if (TREE_STATIC (tem) && use_gnu_debug_info_extensions)
1553                 {
1554                   tree name = DECL_ASSEMBLER_NAME (tem);
1555
1556                   stabstr_C (':');
1557                   stabstr_I (name);
1558                   stabstr_C (';');
1559                 }
1560               else
1561                 /* If TEM is non-static, GDB won't understand it.  */
1562                 stabstr_S (",0,0;");
1563             }
1564           else
1565             {
1566               stabstr_C (',');
1567               stabstr_D (int_bit_position (tem));
1568               stabstr_C (',');
1569               stabstr_D (tree_low_cst (DECL_SIZE (tem), 1));
1570               stabstr_C (';');
1571             }
1572         }
1573     }
1574 }
1575 \f
1576 /* Subroutine of `dbxout_type_methods'.  Output debug info about the
1577    method described DECL.  */
1578
1579 static void
1580 dbxout_type_method_1 (tree decl)
1581 {
1582   char c1 = 'A', c2;
1583
1584   if (TREE_CODE (TREE_TYPE (decl)) == FUNCTION_TYPE)
1585     c2 = '?';
1586   else /* it's a METHOD_TYPE.  */
1587     {
1588       tree firstarg = TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (decl)));
1589       /* A for normal functions.
1590          B for `const' member functions.
1591          C for `volatile' member functions.
1592          D for `const volatile' member functions.  */
1593       if (TYPE_READONLY (TREE_TYPE (firstarg)))
1594         c1 += 1;
1595       if (TYPE_VOLATILE (TREE_TYPE (firstarg)))
1596         c1 += 2;
1597
1598       if (DECL_VINDEX (decl))
1599         c2 = '*';
1600       else
1601         c2 = '.';
1602     }
1603
1604   /* ??? Output the mangled name, which contains an encoding of the
1605      method's type signature.  May not be necessary anymore.  */
1606   stabstr_C (':');
1607   stabstr_I (DECL_ASSEMBLER_NAME (decl));
1608   stabstr_C (';');
1609   stabstr_C (DECL_ACCESSIBILITY_CHAR (decl));
1610   stabstr_C (c1);
1611   stabstr_C (c2);
1612
1613   if (DECL_VINDEX (decl) && host_integerp (DECL_VINDEX (decl), 0))
1614     {
1615       stabstr_D (tree_low_cst (DECL_VINDEX (decl), 0));
1616       stabstr_C (';');
1617       dbxout_type (DECL_CONTEXT (decl), 0);
1618       stabstr_C (';');
1619     }
1620 }
1621 \f
1622 /* Subroutine of `dbxout_type'.  Output debug info about the methods defined
1623    in TYPE.  */
1624
1625 static void
1626 dbxout_type_methods (tree type)
1627 {
1628   /* C++: put out the method names and their parameter lists */
1629   tree methods = TYPE_METHODS (type);
1630   tree fndecl;
1631   tree last;
1632
1633   if (methods == NULL_TREE)
1634     return;
1635
1636   if (TREE_CODE (methods) != TREE_VEC)
1637     fndecl = methods;
1638   else if (TREE_VEC_ELT (methods, 0) != NULL_TREE)
1639     fndecl = TREE_VEC_ELT (methods, 0);
1640   else
1641     fndecl = TREE_VEC_ELT (methods, 1);
1642
1643   while (fndecl)
1644     {
1645       int need_prefix = 1;
1646
1647       /* Group together all the methods for the same operation.
1648          These differ in the types of the arguments.  */
1649       for (last = NULL_TREE;
1650            fndecl && (last == NULL_TREE || DECL_NAME (fndecl) == DECL_NAME (last));
1651            fndecl = DECL_CHAIN (fndecl))
1652         /* Output the name of the field (after overloading), as
1653            well as the name of the field before overloading, along
1654            with its parameter list */
1655         {
1656           /* Skip methods that aren't FUNCTION_DECLs.  (In C++, these
1657              include TEMPLATE_DECLs.)  The debugger doesn't know what
1658              to do with such entities anyhow.  */
1659           if (TREE_CODE (fndecl) != FUNCTION_DECL)
1660             continue;
1661
1662           CONTIN;
1663
1664           last = fndecl;
1665
1666           /* Also ignore abstract methods; those are only interesting to
1667              the DWARF backends.  */
1668           if (DECL_IGNORED_P (fndecl) || DECL_ABSTRACT (fndecl))
1669             continue;
1670
1671           /* Redundantly output the plain name, since that's what gdb
1672              expects.  */
1673           if (need_prefix)
1674             {
1675               stabstr_I (DECL_NAME (fndecl));
1676               stabstr_S ("::");
1677               need_prefix = 0;
1678             }
1679
1680           dbxout_type (TREE_TYPE (fndecl), 0);
1681           dbxout_type_method_1 (fndecl);
1682         }
1683       if (!need_prefix)
1684         stabstr_C (';');
1685     }
1686 }
1687
1688 /* Emit a "range" type specification, which has the form:
1689    "r<index type>;<lower bound>;<upper bound>;".
1690    TYPE is an INTEGER_TYPE, LOW and HIGH are the bounds.  */
1691
1692 static void
1693 dbxout_range_type (tree type, tree low, tree high)
1694 {
1695   stabstr_C ('r');
1696   if (TREE_TYPE (type))
1697     dbxout_type (TREE_TYPE (type), 0);
1698   else if (TREE_CODE (type) != INTEGER_TYPE)
1699     dbxout_type (type, 0); /* E.g. Pascal's ARRAY [BOOLEAN] of INTEGER */
1700   else
1701     {
1702       /* Traditionally, we made sure 'int' was type 1, and builtin types
1703          were defined to be sub-ranges of int.  Unfortunately, this
1704          does not allow us to distinguish true sub-ranges from integer
1705          types.  So, instead we define integer (non-sub-range) types as
1706          sub-ranges of themselves.  This matters for Chill.  If this isn't
1707          a subrange type, then we want to define it in terms of itself.
1708          However, in C, this may be an anonymous integer type, and we don't
1709          want to emit debug info referring to it.  Just calling
1710          dbxout_type_index won't work anyways, because the type hasn't been
1711          defined yet.  We make this work for both cases by checked to see
1712          whether this is a defined type, referring to it if it is, and using
1713          'int' otherwise.  */
1714       if (TYPE_SYMTAB_ADDRESS (type) != 0)
1715         dbxout_type_index (type);
1716       else
1717         dbxout_type_index (integer_type_node);
1718     }
1719
1720   stabstr_C (';');
1721   if (low && host_integerp (low, 0))
1722     {
1723       if (print_int_cst_bounds_in_octal_p (type, low, high))
1724         stabstr_O (low);
1725       else
1726         stabstr_D (tree_low_cst (low, 0));
1727     }
1728   else
1729     stabstr_C ('0');
1730
1731   stabstr_C (';');
1732   if (high && host_integerp (high, 0))
1733     {
1734       if (print_int_cst_bounds_in_octal_p (type, low, high))
1735         stabstr_O (high);
1736       else
1737         stabstr_D (tree_low_cst (high, 0));
1738       stabstr_C (';');
1739     }
1740   else
1741     stabstr_S ("-1;");
1742 }
1743 \f
1744
1745 /* Output a reference to a type.  If the type has not yet been
1746    described in the dbx output, output its definition now.
1747    For a type already defined, just refer to its definition
1748    using the type number.
1749
1750    If FULL is nonzero, and the type has been described only with
1751    a forward-reference, output the definition now.
1752    If FULL is zero in this case, just refer to the forward-reference
1753    using the number previously allocated.  */
1754
1755 static void
1756 dbxout_type (tree type, int full)
1757 {
1758   static int anonymous_type_number = 0;
1759   tree tem, main_variant, low, high;
1760
1761   if (TREE_CODE (type) == INTEGER_TYPE)
1762     {
1763       if (TREE_TYPE (type) == 0)
1764         {
1765           low = TYPE_MIN_VALUE (type);
1766           high = TYPE_MAX_VALUE (type);
1767         }
1768
1769       else if (subrange_type_for_debug_p (type, &low, &high))
1770         ;
1771
1772       /* If this is a subtype that should not be emitted as a subrange type,
1773          use the base type.  */
1774       else
1775         {
1776           type = TREE_TYPE (type);
1777           low = TYPE_MIN_VALUE (type);
1778           high = TYPE_MAX_VALUE (type);
1779         }
1780     }
1781
1782   /* If there was an input error and we don't really have a type,
1783      avoid crashing and write something that is at least valid
1784      by assuming `int'.  */
1785   if (type == error_mark_node)
1786     type = integer_type_node;
1787   else
1788     {
1789       if (TYPE_NAME (type)
1790           && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1791           && TYPE_DECL_SUPPRESS_DEBUG (TYPE_NAME (type)))
1792         full = 0;
1793     }
1794
1795   /* Try to find the "main variant" with the same name.  */
1796   if (TYPE_NAME (type) && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1797       && DECL_ORIGINAL_TYPE (TYPE_NAME (type)))
1798     main_variant = TREE_TYPE (TYPE_NAME (type));
1799   else
1800     main_variant = TYPE_MAIN_VARIANT (type);
1801
1802   /* If we are not using extensions, stabs does not distinguish const and
1803      volatile, so there is no need to make them separate types.  */
1804   if (!use_gnu_debug_info_extensions)
1805     type = main_variant;
1806
1807   if (TYPE_SYMTAB_ADDRESS (type) == 0)
1808     {
1809       /* Type has no dbx number assigned.  Assign next available number.  */
1810       TYPE_SYMTAB_ADDRESS (type) = next_type_number++;
1811
1812       /* Make sure type vector is long enough to record about this type.  */
1813
1814       if (next_type_number == typevec_len)
1815         {
1816           typevec = GGC_RESIZEVEC (struct typeinfo, typevec, typevec_len * 2);
1817           memset (typevec + typevec_len, 0, typevec_len * sizeof typevec[0]);
1818           typevec_len *= 2;
1819         }
1820
1821 #ifdef DBX_USE_BINCL
1822       emit_pending_bincls_if_required ();
1823       typevec[TYPE_SYMTAB_ADDRESS (type)].file_number
1824         = current_file->file_number;
1825       typevec[TYPE_SYMTAB_ADDRESS (type)].type_number
1826         = current_file->next_type_number++;
1827 #endif
1828     }
1829
1830   if (flag_debug_only_used_symbols)
1831     {
1832       if ((TREE_CODE (type) == RECORD_TYPE
1833            || TREE_CODE (type) == UNION_TYPE
1834            || TREE_CODE (type) == QUAL_UNION_TYPE
1835            || TREE_CODE (type) == ENUMERAL_TYPE)
1836           && TYPE_STUB_DECL (type)
1837           && DECL_P (TYPE_STUB_DECL (type))
1838           && ! DECL_IGNORED_P (TYPE_STUB_DECL (type)))
1839         debug_queue_symbol (TYPE_STUB_DECL (type));
1840       else if (TYPE_NAME (type)
1841                && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
1842         debug_queue_symbol (TYPE_NAME (type));
1843     }
1844
1845   /* Output the number of this type, to refer to it.  */
1846   dbxout_type_index (type);
1847
1848 #ifdef DBX_TYPE_DEFINED
1849   if (DBX_TYPE_DEFINED (type))
1850     return;
1851 #endif
1852
1853   /* If this type's definition has been output or is now being output,
1854      that is all.  */
1855
1856   switch (typevec[TYPE_SYMTAB_ADDRESS (type)].status)
1857     {
1858     case TYPE_UNSEEN:
1859       break;
1860     case TYPE_XREF:
1861       /* If we have already had a cross reference,
1862          and either that's all we want or that's the best we could do,
1863          don't repeat the cross reference.
1864          Sun dbx crashes if we do.  */
1865       if (! full || !COMPLETE_TYPE_P (type)
1866           /* No way in DBX fmt to describe a variable size.  */
1867           || ! host_integerp (TYPE_SIZE (type), 1))
1868         return;
1869       break;
1870     case TYPE_DEFINED:
1871       return;
1872     }
1873
1874 #ifdef DBX_NO_XREFS
1875   /* For systems where dbx output does not allow the `=xsNAME:' syntax,
1876      leave the type-number completely undefined rather than output
1877      a cross-reference.  If we have already used GNU debug info extensions,
1878      then it is OK to output a cross reference.  This is necessary to get
1879      proper C++ debug output.  */
1880   if ((TREE_CODE (type) == RECORD_TYPE || TREE_CODE (type) == UNION_TYPE
1881        || TREE_CODE (type) == QUAL_UNION_TYPE
1882        || TREE_CODE (type) == ENUMERAL_TYPE)
1883       && ! use_gnu_debug_info_extensions)
1884     /* We must use the same test here as we use twice below when deciding
1885        whether to emit a cross-reference.  */
1886     if ((TYPE_NAME (type) != 0
1887          && ! (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1888                && DECL_IGNORED_P (TYPE_NAME (type)))
1889          && !full)
1890         || !COMPLETE_TYPE_P (type)
1891         /* No way in DBX fmt to describe a variable size.  */
1892         || ! host_integerp (TYPE_SIZE (type), 1))
1893       {
1894         typevec[TYPE_SYMTAB_ADDRESS (type)].status = TYPE_XREF;
1895         return;
1896       }
1897 #endif
1898
1899   /* Output a definition now.  */
1900   stabstr_C ('=');
1901
1902   /* Mark it as defined, so that if it is self-referent
1903      we will not get into an infinite recursion of definitions.  */
1904
1905   typevec[TYPE_SYMTAB_ADDRESS (type)].status = TYPE_DEFINED;
1906
1907   /* If this type is a variant of some other, hand off.  Types with
1908      different names are usefully distinguished.  We only distinguish
1909      cv-qualified types if we're using extensions.  */
1910   if (TYPE_READONLY (type) > TYPE_READONLY (main_variant))
1911     {
1912       stabstr_C ('k');
1913       dbxout_type (build_type_variant (type, 0, TYPE_VOLATILE (type)), 0);
1914       return;
1915     }
1916   else if (TYPE_VOLATILE (type) > TYPE_VOLATILE (main_variant))
1917     {
1918       stabstr_C ('B');
1919       dbxout_type (build_type_variant (type, TYPE_READONLY (type), 0), 0);
1920       return;
1921     }
1922   else if (main_variant != TYPE_MAIN_VARIANT (type))
1923     {
1924       if (flag_debug_only_used_symbols)
1925         {
1926           tree orig_type = DECL_ORIGINAL_TYPE (TYPE_NAME (type));
1927
1928           if ((TREE_CODE (orig_type) == RECORD_TYPE
1929                || TREE_CODE (orig_type) == UNION_TYPE
1930                || TREE_CODE (orig_type) == QUAL_UNION_TYPE
1931                || TREE_CODE (orig_type) == ENUMERAL_TYPE)
1932               && TYPE_STUB_DECL (orig_type)
1933               && ! DECL_IGNORED_P (TYPE_STUB_DECL (orig_type)))
1934             debug_queue_symbol (TYPE_STUB_DECL (orig_type));
1935         }
1936       /* 'type' is a typedef; output the type it refers to.  */
1937       dbxout_type (DECL_ORIGINAL_TYPE (TYPE_NAME (type)), 0);
1938       return;
1939     }
1940   /* else continue.  */
1941
1942   switch (TREE_CODE (type))
1943     {
1944     case VOID_TYPE:
1945     case NULLPTR_TYPE:
1946     case LANG_TYPE:
1947       /* For a void type, just define it as itself; i.e., "5=5".
1948          This makes us consider it defined
1949          without saying what it is.  The debugger will make it
1950          a void type when the reference is seen, and nothing will
1951          ever override that default.  */
1952       dbxout_type_index (type);
1953       break;
1954
1955     case INTEGER_TYPE:
1956       if (type == char_type_node && ! TYPE_UNSIGNED (type))
1957         {
1958           /* Output the type `char' as a subrange of itself!
1959              I don't understand this definition, just copied it
1960              from the output of pcc.
1961              This used to use `r2' explicitly and we used to
1962              take care to make sure that `char' was type number 2.  */
1963           stabstr_C ('r');
1964           dbxout_type_index (type);
1965           stabstr_S (";0;127;");
1966         }
1967
1968       /* If this is a subtype of another integer type, always prefer to
1969          write it as a subtype.  */
1970       else if (TREE_TYPE (type) != 0
1971                && TREE_CODE (TREE_TYPE (type)) == INTEGER_TYPE)
1972         {
1973           /* If the size is non-standard, say what it is if we can use
1974              GDB extensions.  */
1975
1976           if (use_gnu_debug_info_extensions
1977               && TYPE_PRECISION (type) != TYPE_PRECISION (integer_type_node))
1978             {
1979               stabstr_S ("@s");
1980               stabstr_D (TYPE_PRECISION (type));
1981               stabstr_C (';');
1982             }
1983
1984           dbxout_range_type (type, low, high);
1985         }
1986
1987       else
1988         {
1989           /* If the size is non-standard, say what it is if we can use
1990              GDB extensions.  */
1991
1992           if (use_gnu_debug_info_extensions
1993               && TYPE_PRECISION (type) != TYPE_PRECISION (integer_type_node))
1994             {
1995               stabstr_S ("@s");
1996               stabstr_D (TYPE_PRECISION (type));
1997               stabstr_C (';');
1998             }
1999
2000           if (print_int_cst_bounds_in_octal_p (type, low, high))
2001             {
2002               stabstr_C ('r');
2003
2004               /* If this type derives from another type, output type index of
2005                  parent type. This is particularly important when parent type
2006                  is an enumerated type, because not generating the parent type
2007                  index would transform the definition of this enumerated type
2008                  into a plain unsigned type.  */
2009               if (TREE_TYPE (type) != 0)
2010                 dbxout_type_index (TREE_TYPE (type));
2011               else
2012                 dbxout_type_index (type);
2013
2014               stabstr_C (';');
2015               stabstr_O (low);
2016               stabstr_C (';');
2017               stabstr_O (high);
2018               stabstr_C (';');
2019             }
2020
2021           else
2022             /* Output other integer types as subranges of `int'.  */
2023             dbxout_range_type (type, low, high);
2024         }
2025
2026       break;
2027
2028     case REAL_TYPE:
2029     case FIXED_POINT_TYPE:
2030       /* This used to say `r1' and we used to take care
2031          to make sure that `int' was type number 1.  */
2032       stabstr_C ('r');
2033       dbxout_type_index (integer_type_node);
2034       stabstr_C (';');
2035       stabstr_D (int_size_in_bytes (type));
2036       stabstr_S (";0;");
2037       break;
2038
2039     case BOOLEAN_TYPE:
2040       if (use_gnu_debug_info_extensions)
2041         {
2042           stabstr_S ("@s");
2043           stabstr_D (BITS_PER_UNIT * int_size_in_bytes (type));
2044           stabstr_S (";-16;");
2045         }
2046       else /* Define as enumeral type (False, True) */
2047         stabstr_S ("eFalse:0,True:1,;");
2048       break;
2049
2050     case COMPLEX_TYPE:
2051       /* Differs from the REAL_TYPE by its new data type number.
2052          R3 is NF_COMPLEX.  We don't try to use any of the other NF_*
2053          codes since gdb doesn't care anyway.  */
2054
2055       if (TREE_CODE (TREE_TYPE (type)) == REAL_TYPE)
2056         {
2057           stabstr_S ("R3;");
2058           stabstr_D (2 * int_size_in_bytes (TREE_TYPE (type)));
2059           stabstr_S (";0;");
2060         }
2061       else
2062         {
2063           /* Output a complex integer type as a structure,
2064              pending some other way to do it.  */
2065           stabstr_C ('s');
2066           stabstr_D (int_size_in_bytes (type));
2067
2068           stabstr_S ("real:");
2069           dbxout_type (TREE_TYPE (type), 0);
2070           stabstr_S (",0,");
2071           stabstr_D (TYPE_PRECISION (TREE_TYPE (type)));
2072
2073           stabstr_S (";imag:");
2074           dbxout_type (TREE_TYPE (type), 0);
2075           stabstr_C (',');
2076           stabstr_D (TYPE_PRECISION (TREE_TYPE (type)));
2077           stabstr_C (',');
2078           stabstr_D (TYPE_PRECISION (TREE_TYPE (type)));
2079           stabstr_S (";;");
2080         }
2081       break;
2082
2083     case ARRAY_TYPE:
2084       /* Make arrays of packed bits look like bitstrings for chill.  */
2085       if (TYPE_PACKED (type) && use_gnu_debug_info_extensions)
2086         {
2087           stabstr_S ("@s");
2088           stabstr_D (BITS_PER_UNIT * int_size_in_bytes (type));
2089           stabstr_S (";@S;S");
2090           dbxout_type (TYPE_DOMAIN (type), 0);
2091           break;
2092         }
2093
2094       /* Output "a" followed by a range type definition
2095          for the index type of the array
2096          followed by a reference to the target-type.
2097          ar1;0;N;M for a C array of type M and size N+1.  */
2098       /* Check if a character string type, which in Chill is
2099          different from an array of characters.  */
2100       if (TYPE_STRING_FLAG (type) && use_gnu_debug_info_extensions)
2101         {
2102           stabstr_S ("@S;");
2103         }
2104       tem = TYPE_DOMAIN (type);
2105       if (tem == NULL)
2106         {
2107           stabstr_S ("ar");
2108           dbxout_type_index (integer_type_node);
2109           stabstr_S (";0;-1;");
2110         }
2111       else
2112         {
2113           stabstr_C ('a');
2114           dbxout_range_type (tem, TYPE_MIN_VALUE (tem), TYPE_MAX_VALUE (tem));
2115         }
2116
2117       dbxout_type (TREE_TYPE (type), 0);
2118       break;
2119
2120     case VECTOR_TYPE:
2121       /* Make vectors look like an array.  */
2122       if (use_gnu_debug_info_extensions)
2123         stabstr_S ("@V;");
2124
2125       /* Output "a" followed by a range type definition
2126          for the index type of the array
2127          followed by a reference to the target-type.
2128          ar1;0;N;M for a C array of type M and size N+1.  */
2129       stabstr_C ('a');
2130       dbxout_range_type (integer_type_node, size_zero_node,
2131                          size_int (TYPE_VECTOR_SUBPARTS (type) - 1));
2132
2133       dbxout_type (TREE_TYPE (type), 0);
2134       break;
2135
2136     case RECORD_TYPE:
2137     case UNION_TYPE:
2138     case QUAL_UNION_TYPE:
2139       {
2140         tree binfo = TYPE_BINFO (type);
2141
2142         /* Output a structure type.  We must use the same test here as we
2143            use in the DBX_NO_XREFS case above.  */
2144         if ((TYPE_NAME (type) != 0
2145              && ! (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
2146                    && DECL_IGNORED_P (TYPE_NAME (type)))
2147              && !full)
2148             || !COMPLETE_TYPE_P (type)
2149             /* No way in DBX fmt to describe a variable size.  */
2150             || ! host_integerp (TYPE_SIZE (type), 1))
2151           {
2152             /* If the type is just a cross reference, output one
2153                and mark the type as partially described.
2154                If it later becomes defined, we will output
2155                its real definition.
2156                If the type has a name, don't nest its definition within
2157                another type's definition; instead, output an xref
2158                and let the definition come when the name is defined.  */
2159             stabstr_S ((TREE_CODE (type) == RECORD_TYPE) ? "xs" : "xu");
2160             if (TYPE_NAME (type) != 0
2161                 /* The C frontend creates for anonymous variable length
2162                    records/unions TYPE_NAME with DECL_NAME NULL.  */
2163                 && (TREE_CODE (TYPE_NAME (type)) != TYPE_DECL
2164                     || DECL_NAME (TYPE_NAME (type))))
2165               dbxout_type_name (type);
2166             else
2167               {
2168                 stabstr_S ("$$");
2169                 stabstr_D (anonymous_type_number++);
2170               }
2171
2172             stabstr_C (':');
2173             typevec[TYPE_SYMTAB_ADDRESS (type)].status = TYPE_XREF;
2174             break;
2175           }
2176
2177         /* Identify record or union, and print its size.  */
2178         stabstr_C ((TREE_CODE (type) == RECORD_TYPE) ? 's' : 'u');
2179         stabstr_D (int_size_in_bytes (type));
2180
2181         if (binfo)
2182           {
2183             int i;
2184             tree child;
2185             VEC(tree,gc) *accesses = BINFO_BASE_ACCESSES (binfo);
2186
2187             if (use_gnu_debug_info_extensions)
2188               {
2189                 if (BINFO_N_BASE_BINFOS (binfo))
2190                   {
2191                     stabstr_C ('!');
2192                     stabstr_U (BINFO_N_BASE_BINFOS (binfo));
2193                     stabstr_C (',');
2194                   }
2195               }
2196             for (i = 0; BINFO_BASE_ITERATE (binfo, i, child); i++)
2197               {
2198                 tree access = (accesses ? VEC_index (tree, accesses, i)
2199                                : access_public_node);
2200
2201                 if (use_gnu_debug_info_extensions)
2202                   {
2203                     stabstr_C (BINFO_VIRTUAL_P (child) ? '1' : '0');
2204                     stabstr_C (access == access_public_node ? '2' :
2205                                    access == access_protected_node
2206                                    ? '1' :'0');
2207                     if (BINFO_VIRTUAL_P (child)
2208                         && (strcmp (lang_hooks.name, "GNU C++") == 0
2209                             || strcmp (lang_hooks.name, "GNU Objective-C++") == 0))
2210                       /* For a virtual base, print the (negative)
2211                          offset within the vtable where we must look
2212                          to find the necessary adjustment.  */
2213                       stabstr_D
2214                         (tree_low_cst (BINFO_VPTR_FIELD (child), 0)
2215                          * BITS_PER_UNIT);
2216                     else
2217                       stabstr_D (tree_low_cst (BINFO_OFFSET (child), 0)
2218                                        * BITS_PER_UNIT);
2219                     stabstr_C (',');
2220                     dbxout_type (BINFO_TYPE (child), 0);
2221                     stabstr_C (';');
2222                   }
2223                 else
2224                   {
2225                     /* Print out the base class information with
2226                        fields which have the same names at the types
2227                        they hold.  */
2228                     dbxout_type_name (BINFO_TYPE (child));
2229                     stabstr_C (':');
2230                     dbxout_type (BINFO_TYPE (child), full);
2231                     stabstr_C (',');
2232                     stabstr_D (tree_low_cst (BINFO_OFFSET (child), 0)
2233                                      * BITS_PER_UNIT);
2234                     stabstr_C (',');
2235                     stabstr_D
2236                       (tree_low_cst (TYPE_SIZE (BINFO_TYPE (child)), 0)
2237                        * BITS_PER_UNIT);
2238                     stabstr_C (';');
2239                   }
2240               }
2241           }
2242       }
2243
2244       /* Write out the field declarations.  */
2245       dbxout_type_fields (type);
2246       if (use_gnu_debug_info_extensions && TYPE_METHODS (type) != NULL_TREE)
2247         {
2248           dbxout_type_methods (type);
2249         }
2250
2251       stabstr_C (';');
2252
2253       if (use_gnu_debug_info_extensions && TREE_CODE (type) == RECORD_TYPE
2254           /* Avoid the ~ if we don't really need it--it confuses dbx.  */
2255           && TYPE_VFIELD (type))
2256         {
2257
2258           /* We need to write out info about what field this class
2259              uses as its "main" vtable pointer field, because if this
2260              field is inherited from a base class, GDB cannot necessarily
2261              figure out which field it's using in time.  */
2262           stabstr_S ("~%");
2263           dbxout_type (DECL_FCONTEXT (TYPE_VFIELD (type)), 0);
2264           stabstr_C (';');
2265         }
2266       break;
2267
2268     case ENUMERAL_TYPE:
2269       /* We must use the same test here as we use in the DBX_NO_XREFS case
2270          above.  We simplify it a bit since an enum will never have a variable
2271          size.  */
2272       if ((TYPE_NAME (type) != 0
2273            && ! (TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
2274                  && DECL_IGNORED_P (TYPE_NAME (type)))
2275            && !full)
2276           || !COMPLETE_TYPE_P (type))
2277         {
2278           stabstr_S ("xe");
2279           dbxout_type_name (type);
2280           typevec[TYPE_SYMTAB_ADDRESS (type)].status = TYPE_XREF;
2281           stabstr_C (':');
2282           return;
2283         }
2284       if (use_gnu_debug_info_extensions
2285           && TYPE_PRECISION (type) != TYPE_PRECISION (integer_type_node))
2286         {
2287           stabstr_S ("@s");
2288           stabstr_D (TYPE_PRECISION (type));
2289           stabstr_C (';');
2290         }
2291
2292       stabstr_C ('e');
2293       for (tem = TYPE_VALUES (type); tem; tem = TREE_CHAIN (tem))
2294         {
2295           tree value = TREE_VALUE (tem);
2296
2297           stabstr_I (TREE_PURPOSE (tem));
2298           stabstr_C (':');
2299
2300           if (TREE_CODE (value) == CONST_DECL)
2301             value = DECL_INITIAL (value);
2302
2303           if (TREE_INT_CST_HIGH (value) == 0)
2304             stabstr_D (TREE_INT_CST_LOW (value));
2305           else if (TREE_INT_CST_HIGH (value) == -1
2306                    && (HOST_WIDE_INT) TREE_INT_CST_LOW (value) < 0)
2307             stabstr_D (TREE_INT_CST_LOW (value));
2308           else
2309             stabstr_O (value);
2310
2311           stabstr_C (',');
2312           if (TREE_CHAIN (tem) != 0)
2313             CONTIN;
2314         }
2315
2316       stabstr_C (';');
2317       break;
2318
2319     case POINTER_TYPE:
2320       stabstr_C ('*');
2321       dbxout_type (TREE_TYPE (type), 0);
2322       break;
2323
2324     case METHOD_TYPE:
2325       if (use_gnu_debug_info_extensions)
2326         {
2327           stabstr_C ('#');
2328
2329           /* Write the argument types out longhand.  */
2330           dbxout_type (TYPE_METHOD_BASETYPE (type), 0);
2331           stabstr_C (',');
2332           dbxout_type (TREE_TYPE (type), 0);
2333           dbxout_args (TYPE_ARG_TYPES (type));
2334           stabstr_C (';');
2335         }
2336       else
2337         /* Treat it as a function type.  */
2338         dbxout_type (TREE_TYPE (type), 0);
2339       break;
2340
2341     case OFFSET_TYPE:
2342       if (use_gnu_debug_info_extensions)
2343         {
2344           stabstr_C ('@');
2345           dbxout_type (TYPE_OFFSET_BASETYPE (type), 0);
2346           stabstr_C (',');
2347           dbxout_type (TREE_TYPE (type), 0);
2348         }
2349       else
2350         /* Should print as an int, because it is really just an offset.  */
2351         dbxout_type (integer_type_node, 0);
2352       break;
2353
2354     case REFERENCE_TYPE:
2355       if (use_gnu_debug_info_extensions)
2356         {
2357           stabstr_C ('&');
2358         }
2359       else
2360         stabstr_C ('*');
2361       dbxout_type (TREE_TYPE (type), 0);
2362       break;
2363
2364     case FUNCTION_TYPE:
2365       stabstr_C ('f');
2366       dbxout_type (TREE_TYPE (type), 0);
2367       break;
2368
2369     default:
2370       gcc_unreachable ();
2371     }
2372 }
2373
2374 /* Return nonzero if the given type represents an integer whose bounds
2375    should be printed in octal format.  */
2376
2377 static bool
2378 print_int_cst_bounds_in_octal_p (tree type, tree low, tree high)
2379 {
2380   /* If we can use GDB extensions and the size is wider than a long
2381      (the size used by GDB to read them) or we may have trouble writing
2382      the bounds the usual way, write them in octal.  Note the test is for
2383      the *target's* size of "long", not that of the host.  The host test
2384      is just to make sure we can write it out in case the host wide int
2385      is narrower than the target "long".
2386
2387      For unsigned types, we use octal if they are the same size or larger.
2388      This is because we print the bounds as signed decimal, and hence they
2389      can't span same size unsigned types.  */
2390
2391   if (use_gnu_debug_info_extensions
2392       && low && TREE_CODE (low) == INTEGER_CST
2393       && high && TREE_CODE (high) == INTEGER_CST
2394       && (TYPE_PRECISION (type) > TYPE_PRECISION (integer_type_node)
2395           || ((TYPE_PRECISION (type) == TYPE_PRECISION (integer_type_node))
2396               && TYPE_UNSIGNED (type))
2397           || TYPE_PRECISION (type) > HOST_BITS_PER_WIDE_INT
2398           || (TYPE_PRECISION (type) == HOST_BITS_PER_WIDE_INT
2399               && TYPE_UNSIGNED (type))))
2400     return TRUE;
2401   else
2402     return FALSE;
2403 }
2404
2405 /* Output the name of type TYPE, with no punctuation.
2406    Such names can be set up either by typedef declarations
2407    or by struct, enum and union tags.  */
2408
2409 static void
2410 dbxout_type_name (tree type)
2411 {
2412   tree t = TYPE_NAME (type);
2413
2414   gcc_assert (t);
2415   switch (TREE_CODE (t))
2416     {
2417     case IDENTIFIER_NODE:
2418       break;
2419     case TYPE_DECL:
2420       t = DECL_NAME (t);
2421       break;
2422     default:
2423       gcc_unreachable ();
2424     }
2425
2426   stabstr_I (t);
2427 }
2428
2429 /* Output leading leading struct or class names needed for qualifying
2430    type whose scope is limited to a struct or class.  */
2431
2432 static void
2433 dbxout_class_name_qualifiers (tree decl)
2434 {
2435   tree context = decl_type_context (decl);
2436
2437   if (context != NULL_TREE
2438       && TREE_CODE(context) == RECORD_TYPE
2439       && TYPE_NAME (context) != 0
2440       && (TREE_CODE (TYPE_NAME (context)) == IDENTIFIER_NODE
2441           || (DECL_NAME (TYPE_NAME (context)) != 0)))
2442     {
2443       tree name = TYPE_NAME (context);
2444
2445       if (TREE_CODE (name) == TYPE_DECL)
2446         {
2447           dbxout_class_name_qualifiers (name);
2448           name = DECL_NAME (name);
2449         }
2450       stabstr_I (name);
2451       stabstr_S ("::");
2452     }
2453 }
2454 \f
2455 /* This is a specialized subset of expand_expr for use by dbxout_symbol in
2456    evaluating DECL_VALUE_EXPR.  In particular, we stop if we find decls that
2457    haven't been expanded, or if the expression is getting so complex we won't
2458    be able to represent it in stabs anyway.  Returns NULL on failure.  */
2459
2460 static rtx
2461 dbxout_expand_expr (tree expr)
2462 {
2463   switch (TREE_CODE (expr))
2464     {
2465     case VAR_DECL:
2466       /* We can't handle emulated tls variables, because the address is an
2467          offset to the return value of __emutls_get_address, and there is no
2468          way to express that in stabs.  Also, there are name mangling issues
2469          here.  We end up with references to undefined symbols if we don't
2470          disable debug info for these variables.  */
2471       if (!targetm.have_tls && DECL_THREAD_LOCAL_P (expr))
2472         return NULL;
2473       /* FALLTHRU */
2474
2475     case PARM_DECL:
2476     case RESULT_DECL:
2477       if (DECL_HAS_VALUE_EXPR_P (expr))
2478         return dbxout_expand_expr (DECL_VALUE_EXPR (expr));
2479       /* FALLTHRU */
2480
2481     case CONST_DECL:
2482       return DECL_RTL_IF_SET (expr);
2483
2484     case INTEGER_CST:
2485       return expand_expr (expr, NULL_RTX, VOIDmode, EXPAND_INITIALIZER);
2486
2487     case COMPONENT_REF:
2488     case ARRAY_REF:
2489     case ARRAY_RANGE_REF:
2490     case BIT_FIELD_REF:
2491       {
2492         enum machine_mode mode;
2493         HOST_WIDE_INT bitsize, bitpos;
2494         tree offset, tem;
2495         int volatilep = 0, unsignedp = 0;
2496         rtx x;
2497
2498         tem = get_inner_reference (expr, &bitsize, &bitpos, &offset,
2499                                    &mode, &unsignedp, &volatilep, true);
2500
2501         x = dbxout_expand_expr (tem);
2502         if (x == NULL || !MEM_P (x))
2503           return NULL;
2504         if (offset != NULL)
2505           {
2506             if (!host_integerp (offset, 0))
2507               return NULL;
2508             x = adjust_address_nv (x, mode, tree_low_cst (offset, 0));
2509           }
2510         if (bitpos != 0)
2511           x = adjust_address_nv (x, mode, bitpos / BITS_PER_UNIT);
2512
2513         return x;
2514       }
2515
2516     default:
2517       return NULL;
2518     }
2519 }
2520
2521 /* Helper function for output_used_types.  Queue one entry from the
2522    used types hash to be output.  */
2523
2524 static int
2525 output_used_types_helper (void **slot, void *data)
2526 {
2527   tree type = (tree) *slot;
2528   VEC(tree, heap) **types_p = (VEC(tree, heap) **) data;
2529
2530   if ((TREE_CODE (type) == RECORD_TYPE
2531        || TREE_CODE (type) == UNION_TYPE
2532        || TREE_CODE (type) == QUAL_UNION_TYPE
2533        || TREE_CODE (type) == ENUMERAL_TYPE)
2534       && TYPE_STUB_DECL (type)
2535       && DECL_P (TYPE_STUB_DECL (type))
2536       && ! DECL_IGNORED_P (TYPE_STUB_DECL (type)))
2537     VEC_quick_push (tree, *types_p, TYPE_STUB_DECL (type));
2538   else if (TYPE_NAME (type)
2539            && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL)
2540     VEC_quick_push (tree, *types_p, TYPE_NAME (type));
2541
2542   return 1;
2543 }
2544
2545 /* This is a qsort callback which sorts types and declarations into a
2546    predictable order (types, then declarations, sorted by UID
2547    within).  */
2548
2549 static int
2550 output_types_sort (const void *pa, const void *pb)
2551 {
2552   const tree lhs = *((const tree *)pa);
2553   const tree rhs = *((const tree *)pb);
2554
2555   if (TYPE_P (lhs))
2556     {
2557       if (TYPE_P (rhs))
2558         return TYPE_UID (lhs) - TYPE_UID (rhs);
2559       else
2560         return 1;
2561     }
2562   else
2563     {
2564       if (TYPE_P (rhs))
2565         return -1;
2566       else
2567         return DECL_UID (lhs) - DECL_UID (rhs);
2568     }
2569 }
2570
2571
2572 /* Force all types used by this function to be output in debug
2573    information.  */
2574
2575 static void
2576 output_used_types (void)
2577 {
2578   if (cfun && cfun->used_types_hash)
2579     {
2580       VEC(tree, heap) *types;
2581       int i;
2582       tree type;
2583
2584       types = VEC_alloc (tree, heap, htab_elements (cfun->used_types_hash));
2585       htab_traverse (cfun->used_types_hash, output_used_types_helper, &types);
2586
2587       /* Sort by UID to prevent dependence on hash table ordering.  */
2588       VEC_qsort (tree, types, output_types_sort);
2589
2590       FOR_EACH_VEC_ELT (tree, types, i, type)
2591         debug_queue_symbol (type);
2592
2593       VEC_free (tree, heap, types);
2594     }
2595 }
2596
2597 /* Output a .stabs for the symbol defined by DECL,
2598    which must be a ..._DECL node in the normal namespace.
2599    It may be a CONST_DECL, a FUNCTION_DECL, a PARM_DECL or a VAR_DECL.
2600    LOCAL is nonzero if the scope is less than the entire file.
2601    Return 1 if a stabs might have been emitted.  */
2602
2603 int
2604 dbxout_symbol (tree decl, int local ATTRIBUTE_UNUSED)
2605 {
2606   tree type = TREE_TYPE (decl);
2607   tree context = NULL_TREE;
2608   int result = 0;
2609   rtx decl_rtl;
2610
2611   /* "Intercept" dbxout_symbol() calls like we do all debug_hooks.  */
2612   ++debug_nesting;
2613
2614   /* Ignore nameless syms, but don't ignore type tags.  */
2615
2616   if ((DECL_NAME (decl) == 0 && TREE_CODE (decl) != TYPE_DECL)
2617       || DECL_IGNORED_P (decl))
2618     DBXOUT_DECR_NESTING_AND_RETURN (0);
2619
2620   /* If we are to generate only the symbols actually used then such
2621      symbol nodes are flagged with TREE_USED.  Ignore any that
2622      aren't flagged as TREE_USED.  */
2623
2624   if (flag_debug_only_used_symbols
2625       && (!TREE_USED (decl)
2626           && (TREE_CODE (decl) != VAR_DECL || !DECL_INITIAL (decl))))
2627     DBXOUT_DECR_NESTING_AND_RETURN (0);
2628
2629   /* If dbxout_init has not yet run, queue this symbol for later.  */
2630   if (!typevec)
2631     {
2632       preinit_symbols = tree_cons (0, decl, preinit_symbols);
2633       DBXOUT_DECR_NESTING_AND_RETURN (0);
2634     }
2635
2636   if (flag_debug_only_used_symbols)
2637     {
2638       tree t;
2639
2640       /* We now have a used symbol.  We need to generate the info for
2641          the symbol's type in addition to the symbol itself.  These
2642          type symbols are queued to be generated after were done with
2643          the symbol itself (otherwise they would fight over the
2644          stabstr obstack).
2645
2646          Note, because the TREE_TYPE(type) might be something like a
2647          pointer to a named type we need to look for the first name
2648          we see following the TREE_TYPE chain.  */
2649
2650       t = type;
2651       while (POINTER_TYPE_P (t))
2652         t = TREE_TYPE (t);
2653
2654       /* RECORD_TYPE, UNION_TYPE, QUAL_UNION_TYPE, and ENUMERAL_TYPE
2655          need special treatment.  The TYPE_STUB_DECL field in these
2656          types generally represents the tag name type we want to
2657          output.  In addition there  could be a typedef type with
2658          a different name.  In that case we also want to output
2659          that.  */
2660
2661       if (TREE_CODE (t) == RECORD_TYPE
2662            || TREE_CODE (t) == UNION_TYPE
2663            || TREE_CODE (t) == QUAL_UNION_TYPE
2664            || TREE_CODE (t) == ENUMERAL_TYPE)
2665         {
2666             if (TYPE_STUB_DECL (t)
2667                 && TYPE_STUB_DECL (t) != decl
2668                 && DECL_P (TYPE_STUB_DECL (t))
2669                 && ! DECL_IGNORED_P (TYPE_STUB_DECL (t)))
2670             {
2671               debug_queue_symbol (TYPE_STUB_DECL (t));
2672               if (TYPE_NAME (t)
2673                   && TYPE_NAME (t) != TYPE_STUB_DECL (t)
2674                   && TYPE_NAME (t) != decl
2675                   && DECL_P (TYPE_NAME (t)))
2676                 debug_queue_symbol (TYPE_NAME (t));
2677             }
2678         }
2679       else if (TYPE_NAME (t)
2680                && TYPE_NAME (t) != decl
2681                && DECL_P (TYPE_NAME (t)))
2682         debug_queue_symbol (TYPE_NAME (t));
2683     }
2684
2685   emit_pending_bincls_if_required ();
2686
2687   switch (TREE_CODE (decl))
2688     {
2689     case CONST_DECL:
2690       /* Enum values are defined by defining the enum type.  */
2691       break;
2692
2693     case FUNCTION_DECL:
2694       decl_rtl = DECL_RTL_IF_SET (decl);
2695       if (!decl_rtl)
2696         DBXOUT_DECR_NESTING_AND_RETURN (0);
2697       if (DECL_EXTERNAL (decl))
2698         break;
2699       /* Don't mention a nested function under its parent.  */
2700       context = decl_function_context (decl);
2701       if (context == current_function_decl)
2702         break;
2703       /* Don't mention an inline instance of a nested function.  */
2704       if (context && DECL_FROM_INLINE (decl))
2705         break;
2706       if (!MEM_P (decl_rtl)
2707           || GET_CODE (XEXP (decl_rtl, 0)) != SYMBOL_REF)
2708         break;
2709
2710       if (flag_debug_only_used_symbols)
2711         output_used_types ();
2712
2713       dbxout_begin_complex_stabs ();
2714       stabstr_I (DECL_ASSEMBLER_NAME (decl));
2715       stabstr_S (TREE_PUBLIC (decl) ? ":F" : ":f");
2716       result = 1;
2717
2718       if (TREE_TYPE (type))
2719         dbxout_type (TREE_TYPE (type), 0);
2720       else
2721         dbxout_type (void_type_node, 0);
2722
2723       /* For a nested function, when that function is compiled,
2724          mention the containing function name
2725          as well as (since dbx wants it) our own assembler-name.  */
2726       if (context != 0)
2727         {
2728           stabstr_C (',');
2729           stabstr_I (DECL_ASSEMBLER_NAME (decl));
2730           stabstr_C (',');
2731           stabstr_I (DECL_NAME (context));
2732         }
2733
2734       dbxout_finish_complex_stabs (decl, N_FUN, XEXP (decl_rtl, 0), 0, 0);
2735       break;
2736
2737     case TYPE_DECL:
2738       /* Don't output the same typedef twice.
2739          And don't output what language-specific stuff doesn't want output.  */
2740       if (TREE_ASM_WRITTEN (decl) || TYPE_DECL_SUPPRESS_DEBUG (decl))
2741         DBXOUT_DECR_NESTING_AND_RETURN (0);
2742
2743       /* Don't output typedefs for types with magic type numbers (XCOFF).  */
2744 #ifdef DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER
2745       {
2746         int fundamental_type_number =
2747           DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER (decl);
2748
2749         if (fundamental_type_number != 0)
2750           {
2751             TREE_ASM_WRITTEN (decl) = 1;
2752             TYPE_SYMTAB_ADDRESS (TREE_TYPE (decl)) = fundamental_type_number;
2753             DBXOUT_DECR_NESTING_AND_RETURN (0);
2754           }
2755       }
2756 #endif
2757       FORCE_TEXT;
2758       result = 1;
2759       {
2760         int tag_needed = 1;
2761         int did_output = 0;
2762
2763         if (DECL_NAME (decl))
2764           {
2765             /* Nonzero means we must output a tag as well as a typedef.  */
2766             tag_needed = 0;
2767
2768             /* Handle the case of a C++ structure or union
2769                where the TYPE_NAME is a TYPE_DECL
2770                which gives both a typedef name and a tag.  */
2771             /* dbx requires the tag first and the typedef second.  */
2772             if ((TREE_CODE (type) == RECORD_TYPE
2773                  || TREE_CODE (type) == UNION_TYPE
2774                  || TREE_CODE (type) == QUAL_UNION_TYPE)
2775                 && TYPE_NAME (type) == decl
2776                 && !use_gnu_debug_info_extensions
2777                 && !TREE_ASM_WRITTEN (TYPE_NAME (type))
2778                 /* Distinguish the implicit typedefs of C++
2779                    from explicit ones that might be found in C.  */
2780                 && DECL_ARTIFICIAL (decl)
2781                 /* Do not generate a tag for incomplete records.  */
2782                 && COMPLETE_TYPE_P (type)
2783                 /* Do not generate a tag for records of variable size,
2784                    since this type can not be properly described in the
2785                    DBX format, and it confuses some tools such as objdump.  */
2786                 && host_integerp (TYPE_SIZE (type), 1))
2787               {
2788                 tree name = TYPE_NAME (type);
2789                 if (TREE_CODE (name) == TYPE_DECL)
2790                   name = DECL_NAME (name);
2791
2792                 dbxout_begin_complex_stabs ();
2793                 stabstr_I (name);
2794                 stabstr_S (":T");
2795                 dbxout_type (type, 1);
2796                 dbxout_finish_complex_stabs (0, DBX_TYPE_DECL_STABS_CODE,
2797                                              0, 0, 0);
2798               }
2799
2800             dbxout_begin_complex_stabs ();
2801
2802             /* Output leading class/struct qualifiers.  */
2803             if (use_gnu_debug_info_extensions)
2804               dbxout_class_name_qualifiers (decl);
2805
2806             /* Output typedef name.  */
2807             stabstr_I (DECL_NAME (decl));
2808             stabstr_C (':');
2809
2810             /* Short cut way to output a tag also.  */
2811             if ((TREE_CODE (type) == RECORD_TYPE
2812                  || TREE_CODE (type) == UNION_TYPE
2813                  || TREE_CODE (type) == QUAL_UNION_TYPE)
2814                 && TYPE_NAME (type) == decl
2815                 /* Distinguish the implicit typedefs of C++
2816                    from explicit ones that might be found in C.  */
2817                 && DECL_ARTIFICIAL (decl))
2818               {
2819                 if (use_gnu_debug_info_extensions)
2820                   {
2821                     stabstr_C ('T');
2822                     TREE_ASM_WRITTEN (TYPE_NAME (type)) = 1;
2823                   }
2824               }
2825
2826             stabstr_C ('t');
2827             dbxout_type (type, 1);
2828             dbxout_finish_complex_stabs (decl, DBX_TYPE_DECL_STABS_CODE,
2829                                          0, 0, 0);
2830             did_output = 1;
2831           }
2832
2833         /* Don't output a tag if this is an incomplete type.  This prevents
2834            the sun4 Sun OS 4.x dbx from crashing.  */
2835
2836         if (tag_needed && TYPE_NAME (type) != 0
2837             && (TREE_CODE (TYPE_NAME (type)) == IDENTIFIER_NODE
2838                 || (DECL_NAME (TYPE_NAME (type)) != 0))
2839             && COMPLETE_TYPE_P (type)
2840             && !TREE_ASM_WRITTEN (TYPE_NAME (type)))
2841           {
2842             /* For a TYPE_DECL with no name, but the type has a name,
2843                output a tag.
2844                This is what represents `struct foo' with no typedef.  */
2845             /* In C++, the name of a type is the corresponding typedef.
2846                In C, it is an IDENTIFIER_NODE.  */
2847             tree name = TYPE_NAME (type);
2848             if (TREE_CODE (name) == TYPE_DECL)
2849               name = DECL_NAME (name);
2850
2851             dbxout_begin_complex_stabs ();
2852             stabstr_I (name);
2853             stabstr_S (":T");
2854             dbxout_type (type, 1);
2855             dbxout_finish_complex_stabs (0, DBX_TYPE_DECL_STABS_CODE, 0, 0, 0);
2856             did_output = 1;
2857           }
2858
2859         /* If an enum type has no name, it cannot be referred to, but
2860            we must output it anyway, to record the enumeration
2861            constants.  */
2862
2863         if (!did_output && TREE_CODE (type) == ENUMERAL_TYPE)
2864           {
2865             dbxout_begin_complex_stabs ();
2866             /* Some debuggers fail when given NULL names, so give this a
2867                harmless name of " " (Why not "(anon)"?).  */
2868             stabstr_S (" :T");
2869             dbxout_type (type, 1);
2870             dbxout_finish_complex_stabs (0, DBX_TYPE_DECL_STABS_CODE, 0, 0, 0);
2871           }
2872
2873         /* Prevent duplicate output of a typedef.  */
2874         TREE_ASM_WRITTEN (decl) = 1;
2875         break;
2876       }
2877
2878     case PARM_DECL:
2879       if (DECL_HAS_VALUE_EXPR_P (decl))
2880         decl = DECL_VALUE_EXPR (decl);
2881
2882       /* PARM_DECLs go in their own separate chain and are output by
2883          dbxout_reg_parms and dbxout_parms, except for those that are
2884          disguised VAR_DECLs like Out parameters in Ada.  */
2885       gcc_assert (TREE_CODE (decl) == VAR_DECL);
2886
2887       /* ... fall through ...  */
2888
2889     case RESULT_DECL:
2890     case VAR_DECL:
2891       /* Don't mention a variable that is external.
2892          Let the file that defines it describe it.  */
2893       if (DECL_EXTERNAL (decl))
2894         break;
2895
2896       /* If the variable is really a constant
2897          and not written in memory, inform the debugger.
2898
2899          ??? Why do we skip emitting the type and location in this case?  */
2900       if (TREE_STATIC (decl) && TREE_READONLY (decl)
2901           && DECL_INITIAL (decl) != 0
2902           && host_integerp (DECL_INITIAL (decl), 0)
2903           && ! TREE_ASM_WRITTEN (decl)
2904           && (DECL_FILE_SCOPE_P (decl)
2905               || TREE_CODE (DECL_CONTEXT (decl)) == BLOCK
2906               || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL)
2907           && TREE_PUBLIC (decl) == 0)
2908         {
2909           /* The sun4 assembler does not grok this.  */
2910
2911           if (TREE_CODE (TREE_TYPE (decl)) == INTEGER_TYPE
2912               || TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE)
2913             {
2914               HOST_WIDE_INT ival = TREE_INT_CST_LOW (DECL_INITIAL (decl));
2915
2916               dbxout_begin_complex_stabs ();
2917               dbxout_symbol_name (decl, NULL, 'c');
2918               stabstr_S ("=i");
2919               stabstr_D (ival);
2920               dbxout_finish_complex_stabs (0, N_LSYM, 0, 0, 0);
2921               DBXOUT_DECR_NESTING;
2922               return 1;
2923             }
2924           else
2925             break;
2926         }
2927       /* else it is something we handle like a normal variable.  */
2928
2929       decl_rtl = dbxout_expand_expr (decl);
2930       if (!decl_rtl)
2931         DBXOUT_DECR_NESTING_AND_RETURN (0);
2932
2933       decl_rtl = eliminate_regs (decl_rtl, VOIDmode, NULL_RTX);
2934 #ifdef LEAF_REG_REMAP
2935       if (current_function_uses_only_leaf_regs)
2936         leaf_renumber_regs_insn (decl_rtl);
2937 #endif
2938
2939       result = dbxout_symbol_location (decl, type, 0, decl_rtl);
2940       break;
2941
2942     default:
2943       break;
2944     }
2945   DBXOUT_DECR_NESTING;
2946   return result;
2947 }
2948 \f
2949 /* Output the stab for DECL, a VAR_DECL, RESULT_DECL or PARM_DECL.
2950    Add SUFFIX to its name, if SUFFIX is not 0.
2951    Describe the variable as residing in HOME
2952    (usually HOME is DECL_RTL (DECL), but not always).
2953    Returns 1 if the stab was really emitted.  */
2954
2955 static int
2956 dbxout_symbol_location (tree decl, tree type, const char *suffix, rtx home)
2957 {
2958   int letter = 0;
2959   stab_code_type code;
2960   rtx addr = 0;
2961   int number = 0;
2962   int regno = -1;
2963
2964   /* Don't mention a variable at all
2965      if it was completely optimized into nothingness.
2966
2967      If the decl was from an inline function, then its rtl
2968      is not identically the rtl that was used in this
2969      particular compilation.  */
2970   if (GET_CODE (home) == SUBREG)
2971     {
2972       rtx value = home;
2973
2974       while (GET_CODE (value) == SUBREG)
2975         value = SUBREG_REG (value);
2976       if (REG_P (value))
2977         {
2978           if (REGNO (value) >= FIRST_PSEUDO_REGISTER)
2979             return 0;
2980         }
2981       home = alter_subreg (&home);
2982     }
2983   if (REG_P (home))
2984     {
2985       regno = REGNO (home);
2986       if (regno >= FIRST_PSEUDO_REGISTER)
2987         return 0;
2988     }
2989
2990   /* The kind-of-variable letter depends on where
2991      the variable is and on the scope of its name:
2992      G and N_GSYM for static storage and global scope,
2993      S for static storage and file scope,
2994      V for static storage and local scope,
2995      for those two, use N_LCSYM if data is in bss segment,
2996      N_STSYM if in data segment, N_FUN otherwise.
2997      (We used N_FUN originally, then changed to N_STSYM
2998      to please GDB.  However, it seems that confused ld.
2999      Now GDB has been fixed to like N_FUN, says Kingdon.)
3000      no letter at all, and N_LSYM, for auto variable,
3001      r and N_RSYM for register variable.  */
3002
3003   if (MEM_P (home) && GET_CODE (XEXP (home, 0)) == SYMBOL_REF)
3004     {
3005       if (TREE_PUBLIC (decl))
3006         {
3007           int offs;
3008           letter = 'G';
3009           code = N_GSYM;
3010           if (NULL != dbxout_common_check (decl, &offs))
3011             {
3012               letter = 'V';
3013               addr = 0;
3014               number = offs;
3015             }
3016         }
3017       else
3018         {
3019           addr = XEXP (home, 0);
3020
3021           letter = decl_function_context (decl) ? 'V' : 'S';
3022
3023           /* Some ports can transform a symbol ref into a label ref,
3024              because the symbol ref is too far away and has to be
3025              dumped into a constant pool.  Alternatively, the symbol
3026              in the constant pool might be referenced by a different
3027              symbol.  */
3028           if (GET_CODE (addr) == SYMBOL_REF
3029               && CONSTANT_POOL_ADDRESS_P (addr))
3030             {
3031               bool marked;
3032               rtx tmp = get_pool_constant_mark (addr, &marked);
3033
3034               if (GET_CODE (tmp) == SYMBOL_REF)
3035                 {
3036                   addr = tmp;
3037                   if (CONSTANT_POOL_ADDRESS_P (addr))
3038                     get_pool_constant_mark (addr, &marked);
3039                   else
3040                     marked = true;
3041                 }
3042               else if (GET_CODE (tmp) == LABEL_REF)
3043                 {
3044                   addr = tmp;
3045                   marked = true;
3046                 }
3047
3048               /* If all references to the constant pool were optimized
3049                  out, we just ignore the symbol.  */
3050               if (!marked)
3051                 return 0;
3052             }
3053
3054           /* This should be the same condition as in assemble_variable, but
3055              we don't have access to dont_output_data here.  So, instead,
3056              we rely on the fact that error_mark_node initializers always
3057              end up in bss for C++ and never end up in bss for C.  */
3058           if (DECL_INITIAL (decl) == 0
3059               || (!strcmp (lang_hooks.name, "GNU C++")
3060                   && DECL_INITIAL (decl) == error_mark_node))
3061             {
3062               int offs;
3063               code = N_LCSYM;
3064               if (NULL != dbxout_common_check (decl, &offs))
3065                 {
3066                   addr = 0;
3067                   number = offs;
3068                   letter = 'V';
3069                   code = N_GSYM;
3070                 }
3071             }
3072           else if (DECL_IN_TEXT_SECTION (decl))
3073             /* This is not quite right, but it's the closest
3074                of all the codes that Unix defines.  */
3075             code = DBX_STATIC_CONST_VAR_CODE;
3076           else
3077             {
3078               /* Ultrix `as' seems to need this.  */
3079 #ifdef DBX_STATIC_STAB_DATA_SECTION
3080               switch_to_section (data_section);
3081 #endif
3082               code = N_STSYM;
3083             }
3084         }
3085     }
3086   else if (regno >= 0)
3087     {
3088       letter = 'r';
3089       code = N_RSYM;
3090       number = DBX_REGISTER_NUMBER (regno);
3091     }
3092   else if (MEM_P (home)
3093            && (MEM_P (XEXP (home, 0))
3094                || (REG_P (XEXP (home, 0))
3095                    && REGNO (XEXP (home, 0)) != HARD_FRAME_POINTER_REGNUM
3096                    && REGNO (XEXP (home, 0)) != STACK_POINTER_REGNUM
3097 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
3098                    && REGNO (XEXP (home, 0)) != ARG_POINTER_REGNUM
3099 #endif
3100                    )))
3101     /* If the value is indirect by memory or by a register
3102        that isn't the frame pointer
3103        then it means the object is variable-sized and address through
3104        that register or stack slot.  DBX has no way to represent this
3105        so all we can do is output the variable as a pointer.
3106        If it's not a parameter, ignore it.  */
3107     {
3108       if (REG_P (XEXP (home, 0)))
3109         {
3110           letter = 'r';
3111           code = N_RSYM;
3112           if (REGNO (XEXP (home, 0)) >= FIRST_PSEUDO_REGISTER)
3113             return 0;
3114           number = DBX_REGISTER_NUMBER (REGNO (XEXP (home, 0)));
3115         }
3116       else
3117         {
3118           code = N_LSYM;
3119           /* RTL looks like (MEM (MEM (PLUS (REG...) (CONST_INT...)))).
3120              We want the value of that CONST_INT.  */
3121           number = DEBUGGER_AUTO_OFFSET (XEXP (XEXP (home, 0), 0));
3122         }
3123
3124       /* Effectively do build_pointer_type, but don't cache this type,
3125          since it might be temporary whereas the type it points to
3126          might have been saved for inlining.  */
3127       /* Don't use REFERENCE_TYPE because dbx can't handle that.  */
3128       type = make_node (POINTER_TYPE);
3129       TREE_TYPE (type) = TREE_TYPE (decl);
3130     }
3131   else if (MEM_P (home)
3132            && REG_P (XEXP (home, 0)))
3133     {
3134       code = N_LSYM;
3135       number = DEBUGGER_AUTO_OFFSET (XEXP (home, 0));
3136     }
3137   else if (MEM_P (home)
3138            && GET_CODE (XEXP (home, 0)) == PLUS
3139            && CONST_INT_P (XEXP (XEXP (home, 0), 1)))
3140     {
3141       code = N_LSYM;
3142       /* RTL looks like (MEM (PLUS (REG...) (CONST_INT...)))
3143          We want the value of that CONST_INT.  */
3144       number = DEBUGGER_AUTO_OFFSET (XEXP (home, 0));
3145     }
3146   else if (MEM_P (home)
3147            && GET_CODE (XEXP (home, 0)) == CONST)
3148     {
3149       /* Handle an obscure case which can arise when optimizing and
3150          when there are few available registers.  (This is *always*
3151          the case for i386/i486 targets).  The RTL looks like
3152          (MEM (CONST ...)) even though this variable is a local `auto'
3153          or a local `register' variable.  In effect, what has happened
3154          is that the reload pass has seen that all assignments and
3155          references for one such a local variable can be replaced by
3156          equivalent assignments and references to some static storage
3157          variable, thereby avoiding the need for a register.  In such
3158          cases we're forced to lie to debuggers and tell them that
3159          this variable was itself `static'.  */
3160       int offs;
3161       code = N_LCSYM;
3162       letter = 'V';
3163       if (NULL == dbxout_common_check (decl, &offs))
3164         addr = XEXP (XEXP (home, 0), 0);
3165       else
3166         {
3167           addr = 0;
3168           number = offs;
3169           code = N_GSYM;
3170         }
3171     }
3172   else if (GET_CODE (home) == CONCAT)
3173     {
3174       tree subtype;
3175
3176       /* If TYPE is not a COMPLEX_TYPE (it might be a RECORD_TYPE,
3177          for example), then there is no easy way to figure out
3178          what SUBTYPE should be.  So, we give up.  */
3179       if (TREE_CODE (type) != COMPLEX_TYPE)
3180         return 0;
3181
3182       subtype = TREE_TYPE (type);
3183
3184       /* If the variable's storage is in two parts,
3185          output each as a separate stab with a modified name.  */
3186       if (WORDS_BIG_ENDIAN)
3187         dbxout_symbol_location (decl, subtype, "$imag", XEXP (home, 0));
3188       else
3189         dbxout_symbol_location (decl, subtype, "$real", XEXP (home, 0));
3190
3191       if (WORDS_BIG_ENDIAN)
3192         dbxout_symbol_location (decl, subtype, "$real", XEXP (home, 1));
3193       else
3194         dbxout_symbol_location (decl, subtype, "$imag", XEXP (home, 1));
3195       return 1;
3196     }
3197   else
3198     /* Address might be a MEM, when DECL is a variable-sized object.
3199        Or it might be const0_rtx, meaning previous passes
3200        want us to ignore this variable.  */
3201     return 0;
3202
3203   /* Ok, start a symtab entry and output the variable name.  */
3204   emit_pending_bincls_if_required ();
3205   FORCE_TEXT;
3206
3207 #ifdef DBX_STATIC_BLOCK_START
3208   DBX_STATIC_BLOCK_START (asm_out_file, code);
3209 #endif
3210
3211   dbxout_begin_complex_stabs_noforcetext ();
3212   dbxout_symbol_name (decl, suffix, letter);
3213   dbxout_type (type, 0);
3214   dbxout_finish_complex_stabs (decl, code, addr, 0, number);
3215
3216 #ifdef DBX_STATIC_BLOCK_END
3217   DBX_STATIC_BLOCK_END (asm_out_file, code);
3218 #endif
3219   return 1;
3220 }
3221 \f
3222 /* Output the symbol name of DECL for a stabs, with suffix SUFFIX.
3223    Then output LETTER to indicate the kind of location the symbol has.  */
3224
3225 static void
3226 dbxout_symbol_name (tree decl, const char *suffix, int letter)
3227 {
3228   tree name;
3229
3230   if (DECL_CONTEXT (decl)
3231       && (TYPE_P (DECL_CONTEXT (decl))
3232           || TREE_CODE (DECL_CONTEXT (decl)) == NAMESPACE_DECL))
3233     /* One slight hitch: if this is a VAR_DECL which is a class member
3234        or a namespace member, we must put out the mangled name instead of the
3235        DECL_NAME.  Note also that static member (variable) names DO NOT begin
3236        with underscores in .stabs directives.  */
3237     name = DECL_ASSEMBLER_NAME (decl);
3238   else
3239     /* ...but if we're function-local, we don't want to include the junk
3240        added by ASM_FORMAT_PRIVATE_NAME.  */
3241     name = DECL_NAME (decl);
3242
3243   if (name)
3244     stabstr_I (name);
3245   else
3246     stabstr_S ("(anon)");
3247
3248   if (suffix)
3249     stabstr_S (suffix);
3250   stabstr_C (':');
3251   if (letter)
3252     stabstr_C (letter);
3253 }
3254
3255
3256 /* Output the common block name for DECL in a stabs.
3257
3258    Symbols in global common (.comm) get wrapped with an N_BCOMM/N_ECOMM pair
3259    around each group of symbols in the same .comm area.  The N_GSYM stabs
3260    that are emitted only contain the offset in the common area.  This routine
3261    emits the N_BCOMM and N_ECOMM stabs.  */
3262
3263 static void
3264 dbxout_common_name (tree decl, const char *name, stab_code_type op)
3265 {
3266   dbxout_begin_complex_stabs ();
3267   stabstr_S (name);
3268   dbxout_finish_complex_stabs (decl, op, NULL_RTX, NULL, 0);
3269 }
3270
3271 /* Check decl to determine whether it is a VAR_DECL destined for storage in a
3272    common area.  If it is, the return value will be a non-null string giving
3273    the name of the common storage block it will go into.  If non-null, the
3274    value is the offset into the common block for that symbol's storage.  */
3275
3276 static const char *
3277 dbxout_common_check (tree decl, int *value)
3278 {
3279   rtx home;
3280   rtx sym_addr;
3281   const char *name = NULL;
3282
3283   /* If the decl isn't a VAR_DECL, or if it isn't static, or if
3284      it does not have a value (the offset into the common area), or if it
3285      is thread local (as opposed to global) then it isn't common, and shouldn't
3286      be handled as such.
3287
3288      ??? DECL_THREAD_LOCAL_P check prevents problems with improper .stabs
3289      for thread-local symbols.  Can be handled via same mechanism as used
3290      in dwarf2out.c.  */
3291   if (TREE_CODE (decl) != VAR_DECL
3292       || !TREE_STATIC(decl)
3293       || !DECL_HAS_VALUE_EXPR_P(decl)
3294       || DECL_THREAD_LOCAL_P (decl)
3295       || !is_fortran ())
3296     return NULL;
3297
3298   home = DECL_RTL (decl);
3299   if (home == NULL_RTX || GET_CODE (home) != MEM)
3300     return NULL;
3301
3302   sym_addr = dbxout_expand_expr (DECL_VALUE_EXPR (decl));
3303   if (sym_addr == NULL_RTX || GET_CODE (sym_addr) != MEM)
3304     return NULL;
3305
3306   sym_addr = XEXP (sym_addr, 0);
3307   if (GET_CODE (sym_addr) == CONST)
3308     sym_addr = XEXP (sym_addr, 0);
3309   if ((GET_CODE (sym_addr) == SYMBOL_REF || GET_CODE (sym_addr) == PLUS)
3310       && DECL_INITIAL (decl) == 0)
3311     {
3312
3313       /* We have a sym that will go into a common area, meaning that it
3314          will get storage reserved with a .comm/.lcomm assembler pseudo-op.
3315
3316          Determine name of common area this symbol will be an offset into,
3317          and offset into that area.  Also retrieve the decl for the area
3318          that the symbol is offset into.  */
3319       tree cdecl = NULL;
3320
3321       switch (GET_CODE (sym_addr))
3322         {
3323         case PLUS:
3324           if (CONST_INT_P (XEXP (sym_addr, 0)))
3325             {
3326               name =
3327                 targetm.strip_name_encoding(XSTR (XEXP (sym_addr, 1), 0));
3328               *value = INTVAL (XEXP (sym_addr, 0));
3329               cdecl = SYMBOL_REF_DECL (XEXP (sym_addr, 1));
3330             }
3331           else
3332             {
3333               name =
3334                 targetm.strip_name_encoding(XSTR (XEXP (sym_addr, 0), 0));
3335               *value = INTVAL (XEXP (sym_addr, 1));
3336               cdecl = SYMBOL_REF_DECL (XEXP (sym_addr, 0));
3337             }
3338           break;
3339
3340         case SYMBOL_REF:
3341           name = targetm.strip_name_encoding(XSTR (sym_addr, 0));
3342           *value = 0;
3343           cdecl = SYMBOL_REF_DECL (sym_addr);
3344           break;
3345
3346         default:
3347           error ("common symbol debug info is not structured as "
3348                  "symbol+offset");
3349         }
3350
3351       /* Check area common symbol is offset into.  If this is not public, then
3352          it is not a symbol in a common block.  It must be a .lcomm symbol, not
3353          a .comm symbol.  */
3354       if (cdecl == NULL || !TREE_PUBLIC(cdecl))
3355         name = NULL;
3356     }
3357   else
3358     name = NULL;
3359
3360   return name;
3361 }
3362
3363 /* Output definitions of all the decls in a chain. Return nonzero if
3364    anything was output */
3365
3366 int
3367 dbxout_syms (tree syms)
3368 {
3369   int result = 0;
3370   const char *comm_prev = NULL;
3371   tree syms_prev = NULL;
3372
3373   while (syms)
3374     {
3375       int temp, copen, cclos;
3376       const char *comm_new;
3377
3378       /* Check for common symbol, and then progression into a new/different
3379          block of common symbols.  Emit closing/opening common bracket if
3380          necessary.  */
3381       comm_new = dbxout_common_check (syms, &temp);
3382       copen = comm_new != NULL
3383               && (comm_prev == NULL || strcmp (comm_new, comm_prev));
3384       cclos = comm_prev != NULL
3385               && (comm_new == NULL || strcmp (comm_new, comm_prev));
3386       if (cclos)
3387         dbxout_common_name (syms_prev, comm_prev, N_ECOMM);
3388       if (copen)
3389         {
3390           dbxout_common_name (syms, comm_new, N_BCOMM);
3391           syms_prev = syms;
3392         }
3393       comm_prev = comm_new;
3394
3395       result += dbxout_symbol (syms, 1);
3396       syms = DECL_CHAIN (syms);
3397     }
3398
3399   if (comm_prev != NULL)
3400     dbxout_common_name (syms_prev, comm_prev, N_ECOMM);
3401
3402   return result;
3403 }
3404 \f
3405 /* The following two functions output definitions of function parameters.
3406    Each parameter gets a definition locating it in the parameter list.
3407    Each parameter that is a register variable gets a second definition
3408    locating it in the register.
3409
3410    Printing or argument lists in gdb uses the definitions that
3411    locate in the parameter list.  But reference to the variable in
3412    expressions uses preferentially the definition as a register.  */
3413
3414 /* Output definitions, referring to storage in the parmlist,
3415    of all the parms in PARMS, which is a chain of PARM_DECL nodes.  */
3416
3417 void
3418 dbxout_parms (tree parms)
3419 {
3420   ++debug_nesting;
3421   emit_pending_bincls_if_required ();
3422
3423   for (; parms; parms = DECL_CHAIN (parms))
3424     if (DECL_NAME (parms)
3425         && TREE_TYPE (parms) != error_mark_node
3426         && DECL_RTL_SET_P (parms)
3427         && DECL_INCOMING_RTL (parms))
3428       {
3429         tree eff_type;
3430         char letter;
3431         stab_code_type code;
3432         int number;
3433
3434         /* Perform any necessary register eliminations on the parameter's rtl,
3435            so that the debugging output will be accurate.  */
3436         DECL_INCOMING_RTL (parms)
3437           = eliminate_regs (DECL_INCOMING_RTL (parms), VOIDmode, NULL_RTX);
3438         SET_DECL_RTL (parms,
3439                       eliminate_regs (DECL_RTL (parms), VOIDmode, NULL_RTX));
3440 #ifdef LEAF_REG_REMAP
3441         if (current_function_uses_only_leaf_regs)
3442           {
3443             leaf_renumber_regs_insn (DECL_INCOMING_RTL (parms));
3444             leaf_renumber_regs_insn (DECL_RTL (parms));
3445           }
3446 #endif
3447
3448         if (PARM_PASSED_IN_MEMORY (parms))
3449           {
3450             rtx inrtl = XEXP (DECL_INCOMING_RTL (parms), 0);
3451
3452             /* ??? Here we assume that the parm address is indexed
3453                off the frame pointer or arg pointer.
3454                If that is not true, we produce meaningless results,
3455                but do not crash.  */
3456             if (GET_CODE (inrtl) == PLUS
3457                 && CONST_INT_P (XEXP (inrtl, 1)))
3458               number = INTVAL (XEXP (inrtl, 1));
3459             else
3460               number = 0;
3461
3462             code = N_PSYM;
3463             number = DEBUGGER_ARG_OFFSET (number, inrtl);
3464             letter = 'p';
3465
3466             /* It is quite tempting to use TREE_TYPE (parms) instead
3467                of DECL_ARG_TYPE (parms) for the eff_type, so that gcc
3468                reports the actual type of the parameter, rather than
3469                the promoted type.  This certainly makes GDB's life
3470                easier, at least for some ports.  The change is a bad
3471                idea however, since GDB expects to be able access the
3472                type without performing any conversions.  So for
3473                example, if we were passing a float to an unprototyped
3474                function, gcc will store a double on the stack, but if
3475                we emit a stab saying the type is a float, then gdb
3476                will only read in a single value, and this will produce
3477                an erroneous value.  */
3478             eff_type = DECL_ARG_TYPE (parms);
3479           }
3480         else if (REG_P (DECL_RTL (parms)))
3481           {
3482             rtx best_rtl;
3483
3484             /* Parm passed in registers and lives in registers or nowhere.  */
3485             code = DBX_REGPARM_STABS_CODE;
3486             letter = DBX_REGPARM_STABS_LETTER;
3487
3488             /* For parms passed in registers, it is better to use the
3489                declared type of the variable, not the type it arrived in.  */
3490             eff_type = TREE_TYPE (parms);
3491
3492             /* If parm lives in a register, use that register; pretend
3493                the parm was passed there.  It would be more consistent
3494                to describe the register where the parm was passed, but
3495                in practice that register usually holds something else.
3496                If the parm lives nowhere, use the register where it
3497                was passed.  */
3498             if (REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
3499               best_rtl = DECL_RTL (parms);
3500             else if (GET_CODE (DECL_INCOMING_RTL (parms)) == PARALLEL)
3501               best_rtl = XEXP (XVECEXP (DECL_INCOMING_RTL (parms), 0, 0), 0);
3502             else
3503               best_rtl = DECL_INCOMING_RTL (parms);
3504
3505             number = DBX_REGISTER_NUMBER (REGNO (best_rtl));
3506           }
3507         else if (MEM_P (DECL_RTL (parms))
3508                  && REG_P (XEXP (DECL_RTL (parms), 0))
3509                  && REGNO (XEXP (DECL_RTL (parms), 0)) != HARD_FRAME_POINTER_REGNUM
3510                  && REGNO (XEXP (DECL_RTL (parms), 0)) != STACK_POINTER_REGNUM
3511 #if !HARD_FRAME_POINTER_IS_ARG_POINTER
3512                  && REGNO (XEXP (DECL_RTL (parms), 0)) != ARG_POINTER_REGNUM
3513 #endif
3514                  )
3515           {
3516             /* Parm was passed via invisible reference.
3517                That is, its address was passed in a register.
3518                Output it as if it lived in that register.
3519                The debugger will know from the type
3520                that it was actually passed by invisible reference.  */
3521
3522             code = DBX_REGPARM_STABS_CODE;
3523
3524             /* GDB likes this marked with a special letter.  */
3525             letter = (use_gnu_debug_info_extensions
3526                       ? 'a' : DBX_REGPARM_STABS_LETTER);
3527             eff_type = TREE_TYPE (parms);
3528
3529             /* DECL_RTL looks like (MEM (REG...).  Get the register number.
3530                If it is an unallocated pseudo-reg, then use the register where
3531                it was passed instead.
3532                ??? Why is DBX_REGISTER_NUMBER not used here?  */
3533
3534             if (REGNO (XEXP (DECL_RTL (parms), 0)) < FIRST_PSEUDO_REGISTER)
3535               number = REGNO (XEXP (DECL_RTL (parms), 0));
3536             else
3537               number = REGNO (DECL_INCOMING_RTL (parms));
3538           }
3539         else if (MEM_P (DECL_RTL (parms))
3540                  && MEM_P (XEXP (DECL_RTL (parms), 0)))
3541           {
3542             /* Parm was passed via invisible reference, with the reference
3543                living on the stack.  DECL_RTL looks like
3544                (MEM (MEM (PLUS (REG ...) (CONST_INT ...)))) or it
3545                could look like (MEM (MEM (REG))).  */
3546
3547             code = N_PSYM;
3548             letter = 'v';
3549             eff_type = TREE_TYPE (parms);
3550
3551             if (!REG_P (XEXP (XEXP (DECL_RTL (parms), 0), 0)))
3552               number = INTVAL (XEXP (XEXP (XEXP (DECL_RTL (parms), 0), 0), 1));
3553             else
3554               number = 0;
3555
3556             number = DEBUGGER_ARG_OFFSET (number,
3557                                           XEXP (XEXP (DECL_RTL (parms), 0), 0));
3558           }
3559         else if (MEM_P (DECL_RTL (parms))
3560                  && XEXP (DECL_RTL (parms), 0) != const0_rtx
3561                  /* ??? A constant address for a parm can happen
3562                     when the reg it lives in is equiv to a constant in memory.
3563                     Should make this not happen, after 2.4.  */
3564                  && ! CONSTANT_P (XEXP (DECL_RTL (parms), 0)))
3565           {
3566             /* Parm was passed in registers but lives on the stack.  */
3567
3568             code = N_PSYM;
3569             letter = 'p';
3570             eff_type = TREE_TYPE (parms);
3571
3572             /* DECL_RTL looks like (MEM (PLUS (REG...) (CONST_INT...))),
3573                in which case we want the value of that CONST_INT,
3574                or (MEM (REG ...)),
3575                in which case we use a value of zero.  */
3576             if (!REG_P (XEXP (DECL_RTL (parms), 0)))
3577               number = INTVAL (XEXP (XEXP (DECL_RTL (parms), 0), 1));
3578             else
3579               number = 0;
3580
3581             /* Make a big endian correction if the mode of the type of the
3582                parameter is not the same as the mode of the rtl.  */
3583             if (BYTES_BIG_ENDIAN
3584                 && TYPE_MODE (TREE_TYPE (parms)) != GET_MODE (DECL_RTL (parms))
3585                 && GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (parms))) < UNITS_PER_WORD)
3586               number += (GET_MODE_SIZE (GET_MODE (DECL_RTL (parms)))
3587                          - GET_MODE_SIZE (TYPE_MODE (TREE_TYPE (parms))));
3588           }
3589         else
3590           /* ??? We don't know how to represent this argument.  */
3591           continue;
3592
3593         dbxout_begin_complex_stabs ();
3594
3595         if (DECL_NAME (parms))
3596           {
3597             stabstr_I (DECL_NAME (parms));
3598             stabstr_C (':');
3599           }
3600         else
3601           stabstr_S ("(anon):");
3602         stabstr_C (letter);
3603         dbxout_type (eff_type, 0);
3604         dbxout_finish_complex_stabs (parms, code, 0, 0, number);
3605       }
3606   DBXOUT_DECR_NESTING;
3607 }
3608
3609 /* Output definitions for the places where parms live during the function,
3610    when different from where they were passed, when the parms were passed
3611    in memory.
3612
3613    It is not useful to do this for parms passed in registers
3614    that live during the function in different registers, because it is
3615    impossible to look in the passed register for the passed value,
3616    so we use the within-the-function register to begin with.
3617
3618    PARMS is a chain of PARM_DECL nodes.  */
3619
3620 void
3621 dbxout_reg_parms (tree parms)
3622 {
3623   ++debug_nesting;
3624
3625   for (; parms; parms = DECL_CHAIN (parms))
3626     if (DECL_NAME (parms) && PARM_PASSED_IN_MEMORY (parms))
3627       {
3628         /* Report parms that live in registers during the function
3629            but were passed in memory.  */
3630         if (REG_P (DECL_RTL (parms))
3631             && REGNO (DECL_RTL (parms)) < FIRST_PSEUDO_REGISTER)
3632           dbxout_symbol_location (parms, TREE_TYPE (parms),
3633                                   0, DECL_RTL (parms));
3634         else if (GET_CODE (DECL_RTL (parms)) == CONCAT)
3635           dbxout_symbol_location (parms, TREE_TYPE (parms),
3636                                   0, DECL_RTL (parms));
3637         /* Report parms that live in memory but not where they were passed.  */
3638         else if (MEM_P (DECL_RTL (parms))
3639                  && ! rtx_equal_p (DECL_RTL (parms), DECL_INCOMING_RTL (parms)))
3640           dbxout_symbol_location (parms, TREE_TYPE (parms),
3641                                   0, DECL_RTL (parms));
3642       }
3643   DBXOUT_DECR_NESTING;
3644 }
3645 \f
3646 /* Given a chain of ..._TYPE nodes (as come in a parameter list),
3647    output definitions of those names, in raw form */
3648
3649 static void
3650 dbxout_args (tree args)
3651 {
3652   while (args)
3653     {
3654       stabstr_C (',');
3655       dbxout_type (TREE_VALUE (args), 0);
3656       args = TREE_CHAIN (args);
3657     }
3658 }
3659 \f
3660 #if defined (DBX_DEBUGGING_INFO)
3661
3662 /* Subroutine of dbxout_block.  Emit an N_LBRAC stab referencing LABEL.
3663    BEGIN_LABEL is the name of the beginning of the function, which may
3664    be required.  */
3665 static void
3666 dbx_output_lbrac (const char *label,
3667                   const char *begin_label ATTRIBUTE_UNUSED)
3668 {
3669   dbxout_begin_stabn (N_LBRAC);
3670   if (DBX_BLOCKS_FUNCTION_RELATIVE)
3671     dbxout_stab_value_label_diff (label, begin_label);
3672   else
3673     dbxout_stab_value_label (label);
3674 }
3675
3676 /* Subroutine of dbxout_block.  Emit an N_RBRAC stab referencing LABEL.
3677    BEGIN_LABEL is the name of the beginning of the function, which may
3678    be required.  */
3679 static void
3680 dbx_output_rbrac (const char *label,
3681                   const char *begin_label ATTRIBUTE_UNUSED)
3682 {
3683   dbxout_begin_stabn (N_RBRAC);
3684   if (DBX_BLOCKS_FUNCTION_RELATIVE)
3685     dbxout_stab_value_label_diff (label, begin_label);
3686   else
3687     dbxout_stab_value_label (label);
3688 }
3689
3690 /* Output everything about a symbol block (a BLOCK node
3691    that represents a scope level),
3692    including recursive output of contained blocks.
3693
3694    BLOCK is the BLOCK node.
3695    DEPTH is its depth within containing symbol blocks.
3696    ARGS is usually zero; but for the outermost block of the
3697    body of a function, it is a chain of PARM_DECLs for the function parameters.
3698    We output definitions of all the register parms
3699    as if they were local variables of that block.
3700
3701    If -g1 was used, we count blocks just the same, but output nothing
3702    except for the outermost block.
3703
3704    Actually, BLOCK may be several blocks chained together.
3705    We handle them all in sequence.  */
3706
3707 static void
3708 dbxout_block (tree block, int depth, tree args)
3709 {
3710   char begin_label[20];
3711   /* Reference current function start using LFBB.  */
3712   ASM_GENERATE_INTERNAL_LABEL (begin_label, "LFBB", scope_labelno);
3713
3714   while (block)
3715     {
3716       /* Ignore blocks never expanded or otherwise marked as real.  */
3717       if (TREE_USED (block) && TREE_ASM_WRITTEN (block))
3718         {
3719           int did_output;
3720           int blocknum = BLOCK_NUMBER (block);
3721
3722           /* In dbx format, the syms of a block come before the N_LBRAC.
3723              If nothing is output, we don't need the N_LBRAC, either.  */
3724           did_output = 0;
3725           if (debug_info_level != DINFO_LEVEL_TERSE || depth == 0)
3726             did_output = dbxout_syms (BLOCK_VARS (block));
3727           if (args)
3728             dbxout_reg_parms (args);
3729
3730           /* Now output an N_LBRAC symbol to represent the beginning of
3731              the block.  Use the block's tree-walk order to generate
3732              the assembler symbols LBBn and LBEn
3733              that final will define around the code in this block.  */
3734           if (did_output)
3735             {
3736               char buf[20];
3737               const char *scope_start;
3738
3739               if (depth == 0)
3740                 /* The outermost block doesn't get LBB labels; use
3741                    the LFBB local symbol emitted by dbxout_begin_prologue.  */
3742                 scope_start = begin_label;
3743               else
3744                 {
3745                   ASM_GENERATE_INTERNAL_LABEL (buf, "LBB", blocknum);
3746                   scope_start = buf;
3747                 }
3748
3749               dbx_output_lbrac (scope_start, begin_label);
3750             }
3751
3752           /* Output the subblocks.  */
3753           dbxout_block (BLOCK_SUBBLOCKS (block), depth + 1, NULL_TREE);
3754
3755           /* Refer to the marker for the end of the block.  */
3756           if (did_output)
3757             {
3758               char buf[100];
3759               if (depth == 0)
3760                 /* The outermost block doesn't get LBE labels;
3761                    use the "scope" label which will be emitted
3762                    by dbxout_function_end.  */
3763                 ASM_GENERATE_INTERNAL_LABEL (buf, "Lscope", scope_labelno);
3764               else
3765                 ASM_GENERATE_INTERNAL_LABEL (buf, "LBE", blocknum);
3766
3767               dbx_output_rbrac (buf, begin_label);
3768             }
3769         }
3770       block = BLOCK_CHAIN (block);
3771     }
3772 }
3773
3774 /* Output the information about a function and its arguments and result.
3775    Usually this follows the function's code,
3776    but on some systems, it comes before.  */
3777
3778 static void
3779 dbxout_begin_function (tree decl)
3780 {
3781   int saved_tree_used1;
3782
3783   saved_tree_used1 = TREE_USED (decl);
3784   TREE_USED (decl) = 1;
3785   if (DECL_NAME (DECL_RESULT (decl)) != 0)
3786     {
3787       int saved_tree_used2 = TREE_USED (DECL_RESULT (decl));
3788       TREE_USED (DECL_RESULT (decl)) = 1;
3789       dbxout_symbol (decl, 0);
3790       TREE_USED (DECL_RESULT (decl)) = saved_tree_used2;
3791     }
3792   else
3793     dbxout_symbol (decl, 0);
3794   TREE_USED (decl) = saved_tree_used1;
3795
3796   dbxout_parms (DECL_ARGUMENTS (decl));
3797   if (DECL_NAME (DECL_RESULT (decl)) != 0)
3798     dbxout_symbol (DECL_RESULT (decl), 1);
3799 }
3800 #endif /* DBX_DEBUGGING_INFO */
3801
3802 #endif /* DBX_DEBUGGING_INFO || XCOFF_DEBUGGING_INFO */
3803
3804 #include "gt-dbxout.h"