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