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