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