]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/xcoffout.h
Change copyright header to refer to version 3 of the GNU General Public License and...
[thirdparty/gcc.git] / gcc / xcoffout.h
CommitLineData
4ce86f52 1/* XCOFF definitions. These are needed in dbxout.c, final.c,
41077ce4 2 and xcoffout.h.
9dcd6f09 3 Copyright (C) 1998, 2000, 2002, 2003, 2004, 2007
2e1eedd6 4 Free Software Foundation, Inc.
1b0c6de6 5
1322177d 6This file is part of GCC.
1b0c6de6 7
1322177d
LB
8GCC is free software; you can redistribute it and/or modify it under
9the terms of the GNU General Public License as published by the Free
9dcd6f09 10Software Foundation; either version 3, or (at your option) any later
1322177d 11version.
1b0c6de6 12
1322177d
LB
13GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14WARRANTY; without even the implied warranty of MERCHANTABILITY or
15FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16for more details.
1b0c6de6
JL
17
18You should have received a copy of the GNU General Public License
9dcd6f09
NC
19along with GCC; see the file COPYING3. If not see
20<http://www.gnu.org/licenses/>. */
1b0c6de6 21
4ce86f52 22
4ce86f52
RK
23/* Tags and typedefs are C_DECL in XCOFF, not C_LSYM. */
24
3251bd40 25#define DBX_TYPE_DECL_STABS_CODE N_DECL
4ce86f52
RK
26
27/* Use the XCOFF predefined type numbers. */
28
21d13d83
ZW
29#define DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER(TYPE) \
30 xcoff_assign_fundamental_type_number (TYPE)
4ce86f52
RK
31
32/* Any type with a negative type index has already been output. */
33
34#define DBX_TYPE_DEFINED(TYPE) (TYPE_SYMTAB_ADDRESS (TYPE) < 0)
35
36/* Must use N_STSYM for static const variables (those in the text section)
37 instead of N_FUN. */
38
39#define DBX_STATIC_CONST_VAR_CODE N_STSYM
40
67cef334 41/* For static variables, output code to define the start of a static block. */
4ce86f52
RK
42
43#define DBX_STATIC_BLOCK_START(ASMFILE,CODE) \
44{ \
45 if ((CODE) == N_STSYM) \
46 fprintf ((ASMFILE), "\t.bs\t%s[RW]\n", xcoff_private_data_section_name);\
47 else if ((CODE) == N_LCSYM) \
67cef334 48 fprintf ((ASMFILE), "\t.bs\t%s\n", xcoff_bss_section_name); \
4ce86f52
RK
49}
50
51/* For static variables, output code to define the end of a static block. */
52
53#define DBX_STATIC_BLOCK_END(ASMFILE,CODE) \
54{ \
2afc5ce1
RK
55 if ((CODE) == N_STSYM || (CODE) == N_LCSYM) \
56 fputs ("\t.es\n", (ASMFILE)); \
4ce86f52
RK
57}
58
59/* We must use N_RPYSM instead of N_RSYM for register parameters. */
60
61#define DBX_REGPARM_STABS_CODE N_RPSYM
62
63/* We must use 'R' instead of 'P' for register parameters. */
64
65#define DBX_REGPARM_STABS_LETTER 'R'
66
67/* Define our own finish symbol function, since xcoff stabs have their
68 own different format. */
69
859ee18f
ZW
70#define DBX_FINISH_STABS(SYM, CODE, LINE, ADDR, LABEL, NUMBER) do { \
71 if (ADDR) \
72 { \
73 /* If we are writing a function name, we must emit a dot in \
74 order to refer to the function code, not its descriptor. */ \
75 if (CODE == N_FUN) \
76 putc ('.', asm_out_file); \
77 \
78 /* If we are writing a function name, we must ensure that \
79 there is no storage-class suffix on the name. */ \
80 if (CODE == N_FUN && GET_CODE (ADDR) == SYMBOL_REF) \
81 { \
82 const char *_p = XSTR (ADDR, 0); \
83 if (*_p == '*') \
84 fputs (_p+1, asm_out_file); \
85 else \
86 for (; *_p != '[' && *_p; _p++) \
87 putc (*_p, asm_out_file); \
88 } \
89 else \
90 output_addr_const (asm_out_file, ADDR); \
91 } \
92 /* Another special case: N_GSYM always gets the symbol name, \
93 whether or not LABEL or NUMBER are set. */ \
94 else if (CODE == N_GSYM) \
95 assemble_name (asm_out_file, XSTR (XEXP (DECL_RTL (SYM), 0), 0)); \
96 else if (LABEL) \
97 assemble_name (asm_out_file, LABEL); \
98 else \
99 dbxout_int (NUMBER); \
100 putc (',', asm_out_file); \
101 dbxout_int (stab_to_sclass (CODE)); \
102 fputs (",0\n", asm_out_file); \
93a27b7b 103} while (0)
4ce86f52
RK
104
105/* These are IBM XCOFF extensions we need to reference in dbxout.c
106 and xcoffout.c. */
107
108/* AIX XCOFF uses this for typedefs. This can have any value, since it is
109 only used for translation into a C_DECL storage class. */
110#ifndef N_DECL
111#define N_DECL 0x8c
112#endif
113/* AIX XCOFF uses this for parameters passed in registers. This can have
114 any value, since it is only used for translation into a C_RPSYM storage
115 class. */
116#ifndef N_RPSYM
117#define N_RPSYM 0x8e
118#endif
119
4ce86f52
RK
120/* Name of the current include file. */
121
53cd5d6c 122extern const char *xcoff_current_include_file;
4ce86f52 123
4ce86f52
RK
124/* Names of bss and data sections. These should be unique names for each
125 compilation unit. */
126
127extern char *xcoff_bss_section_name;
128extern char *xcoff_private_data_section_name;
129extern char *xcoff_read_only_section_name;
130
9459d8f5
JW
131/* Last source file name mentioned in a NOTE insn. */
132
53cd5d6c 133extern const char *xcoff_lastfile;
9459d8f5 134
4ce86f52 135/* Don't write out path name for main source file. */
93a27b7b 136#define NO_DBX_MAIN_SOURCE_DIRECTORY 1
4ce86f52 137
9459d8f5
JW
138/* Write out main source file name using ".file" rather than ".stabs".
139 We don't actually do this here, because the assembler gets confused if there
1bc7c5b6
ZW
140 is more than one .file directive. rs6000_xcoff_file_start is already
141 emitting a .file directory, so we don't output one here also.
9459d8f5 142 Initialize xcoff_lastfile. */
4ce86f52 143#define DBX_OUTPUT_MAIN_SOURCE_FILENAME(FILE,FILENAME) \
2afc5ce1 144 xcoff_lastfile = (FILENAME)
4ce86f52
RK
145
146/* If we are still in an include file, its end must be marked. */
147#define DBX_OUTPUT_MAIN_SOURCE_FILE_END(FILE, FILENAME) \
93a27b7b 148do { \
4ce86f52
RK
149 if (xcoff_current_include_file) \
150 { \
2afc5ce1
RK
151 fputs ("\t.ei\t", (FILE)); \
152 output_quoted_string ((FILE), xcoff_current_include_file); \
153 putc ('\n', (FILE)); \
4ce86f52
RK
154 xcoff_current_include_file = NULL; \
155 } \
93a27b7b 156} while (0)
4ce86f52 157
93a27b7b
ZW
158/* Do not emit any marker for XCOFF until assembler allows XFT_CV. */
159#define NO_DBX_GCC_MARKER
ad087b92 160
4ce86f52
RK
161/* Do not break .stabs pseudos into continuations. */
162#define DBX_CONTIN_LENGTH 0
163
164/* Don't try to use the `x' type-cross-reference character in DBX data.
165 Also has the consequence of putting each struct, union or enum
166 into a separate .stabs, containing only cross-refs to the others. */
167#define DBX_NO_XREFS
51980b4a
JW
168
169/* We must put stabs in the text section. If we don't the assembler
170 won't handle them correctly; it will sometimes put stabs where gdb
171 can't find them. */
172
173#define DEBUG_SYMS_TEXT
296b8152 174
2ba84f36 175/* Prototype functions in xcoffout.c. */
296b8152 176
2e1eedd6 177extern int stab_to_sclass (int);
2e1eedd6
AJ
178extern void xcoffout_begin_prologue (unsigned int, const char *);
179extern void xcoffout_begin_block (unsigned, unsigned);
180extern void xcoffout_end_epilogue (unsigned int, const char *);
181extern void xcoffout_end_function (unsigned int);
182extern void xcoffout_end_block (unsigned, unsigned);
21d13d83 183extern int xcoff_assign_fundamental_type_number (tree);
2e1eedd6 184extern void xcoffout_declare_function (FILE *, tree, const char *);
2e1eedd6 185extern void xcoffout_source_line (unsigned int, const char *);