OSDN Git Service

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