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