1 /* Definitions needed when using stabs embedded in ELF sections.
2 Copyright (C) 1999 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* This file may be included by any ELF target which wishes to
22 support -gstabs generating stabs in sections, as produced by gas
23 and understood by gdb. */
28 /* Output DBX (stabs) debugging information if doing -gstabs. */
30 #define DBX_DEBUGGING_INFO 1
32 /* Make LBRAC and RBRAC addresses relative to the start of the
33 function. The native Solaris stabs debugging format works this
34 way, gdb expects it, and it reduces the number of relocation
37 #undef DBX_BLOCKS_FUNCTION_RELATIVE
38 #define DBX_BLOCKS_FUNCTION_RELATIVE 1
40 /* ... but, to make this work, functions must appear prior to line info. */
42 #undef DBX_FUNCTION_FIRST
43 #define DBX_FUNCTION_FIRST
45 /* When generating stabs debugging, use N_BINCL entries. */
50 /* There is no limit to the length of stabs strings. */
52 #ifndef DBX_CONTIN_LENGTH
53 #define DBX_CONTIN_LENGTH 0
56 /* Like block addresses, stabs line numbers are relative to the
59 #undef ASM_OUTPUT_SOURCE_LINE
60 #define ASM_OUTPUT_SOURCE_LINE(FILE, LINE) \
63 static int sym_lineno = 1; \
65 ASM_GENERATE_INTERNAL_LABEL (temp, "LM", sym_lineno); \
66 fprintf (FILE, "\t.stabn 68,0,%d,", LINE); \
67 assemble_name (FILE, temp); \
69 assemble_name (FILE, \
70 XSTR (XEXP (DECL_RTL (current_function_decl), 0), 0));\
72 (*targetm.asm_out.internal_label) (FILE, "LM", sym_lineno); \
77 /* Generate a blank trailing N_SO to mark the end of the .o file, since
78 we can't depend upon the linker to mark .o file boundaries with
81 #undef DBX_OUTPUT_MAIN_SOURCE_FILE_END
82 #define DBX_OUTPUT_MAIN_SOURCE_FILE_END(FILE, FILENAME) \
84 "\t.text\n\t.stabs \"\",%d,0,0,%LLetext\n%LLetext:\n", N_SO)
86 #endif /* ! GCC_DBX_ELF_H */