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