OSDN Git Service

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