OSDN Git Service

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