1 /* Definitions of target machine for GNU compiler,
2 for some generic XCOFF file format
3 Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published
9 by the Free Software Foundation; either version 2, or (at your
10 option) any later version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
15 License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the
19 Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
20 MA 02110-1301, USA. */
22 #define TARGET_OBJECT_FORMAT OBJECT_XCOFF
24 /* The RS/6000 uses the XCOFF format. */
25 #define XCOFF_DEBUGGING_INFO 1
27 /* Define if the object format being used is COFF or a superset. */
28 #define OBJECT_FORMAT_COFF
30 /* Define the magic numbers that we recognize as COFF.
32 AIX 4.3 adds U803XTOCMAGIC (0757) for 64-bit objects and AIX V5 adds
33 U64_TOCMAGIC (0767), but collect2.c does not include files in the
34 correct order to conditionally define the symbolic name in this macro.
36 The AIX linker accepts import/export files as object files,
37 so accept "#!" (0x2321) magic number. */
38 #define MY_ISCOFF(magic) \
39 ((magic) == U802WRMAGIC || (magic) == U802ROMAGIC \
40 || (magic) == U802TOCMAGIC || (magic) == 0757 || (magic) == 0767 \
43 /* We don't have GAS for the RS/6000 yet, so don't write out special
46 #define FASCIST_ASSEMBLER
48 /* We define this to prevent the name mangler from putting dollar signs into
51 #define NO_DOLLAR_IN_LABEL
53 /* We define this to 0 so that gcc will never accept a dollar sign in a
54 variable name. This is needed because the AIX assembler will not accept
57 #define DOLLARS_IN_IDENTIFIERS 0
59 /* Return nonzero if this entry is to be written into the constant
60 pool in a special way. We do so if this is a SYMBOL_REF, LABEL_REF
61 or a CONST containing one of them. If -mfp-in-toc (the default),
62 we also do this for floating-point constants. We actually can only
63 do this if the FP formats of the target and host machines are the
64 same, but we can't check that since not every file that uses
65 GO_IF_LEGITIMATE_ADDRESS_P includes real.h. We also do this when
66 we can write the entry into the TOC and the entry is not larger
69 #define ASM_OUTPUT_SPECIAL_POOL_ENTRY_P(X, MODE) \
71 && (GET_CODE (X) == SYMBOL_REF \
72 || (GET_CODE (X) == CONST && GET_CODE (XEXP (X, 0)) == PLUS \
73 && GET_CODE (XEXP (XEXP (X, 0), 0)) == SYMBOL_REF) \
74 || GET_CODE (X) == LABEL_REF \
75 || (GET_CODE (X) == CONST_INT \
76 && GET_MODE_BITSIZE (MODE) <= GET_MODE_BITSIZE (Pmode)) \
77 || (GET_CODE (X) == CONST_DOUBLE \
78 && (TARGET_POWERPC64 \
79 || TARGET_MINIMAL_TOC \
80 || (SCALAR_FLOAT_MODE_P (GET_MODE (X)) \
81 && ! TARGET_NO_FP_IN_TOC)))))
83 #define TARGET_ASM_OUTPUT_ANCHOR rs6000_xcoff_asm_output_anchor
84 #define TARGET_ASM_GLOBALIZE_LABEL rs6000_xcoff_asm_globalize_label
85 #define TARGET_ASM_INIT_SECTIONS rs6000_xcoff_asm_init_sections
86 #define TARGET_ASM_NAMED_SECTION rs6000_xcoff_asm_named_section
87 #define TARGET_ASM_SELECT_SECTION rs6000_xcoff_select_section
88 #define TARGET_ASM_SELECT_RTX_SECTION rs6000_xcoff_select_rtx_section
89 #define TARGET_ASM_UNIQUE_SECTION rs6000_xcoff_unique_section
90 #define TARGET_ASM_FUNCTION_RODATA_SECTION default_no_function_rodata_section
91 #define TARGET_STRIP_NAME_ENCODING rs6000_xcoff_strip_name_encoding
92 #define TARGET_SECTION_TYPE_FLAGS rs6000_xcoff_section_type_flags
94 /* FP save and restore routines. */
95 #define SAVE_FP_PREFIX "._savef"
96 #define SAVE_FP_SUFFIX ""
97 #define RESTORE_FP_PREFIX "._restf"
98 #define RESTORE_FP_SUFFIX ""
100 /* Function name to call to do profiling. */
102 #define RS6000_MCOUNT ".__mcount"
104 /* This outputs NAME to FILE up to the first null or '['. */
106 #define RS6000_OUTPUT_BASENAME(FILE, NAME) \
107 assemble_name ((FILE), (*targetm.strip_name_encoding) (NAME))
109 /* This is how to output the definition of a user-level label named NAME,
110 such as the label on a static function or variable NAME. */
112 #define ASM_OUTPUT_LABEL(FILE,NAME) \
113 do { RS6000_OUTPUT_BASENAME (FILE, NAME); fputs (":\n", FILE); } while (0)
115 /* This is how to output a command to make the user-level label named NAME
116 defined for reference from other files. */
118 /* Globalizing directive for a label. */
119 #define GLOBAL_ASM_OP "\t.globl "
121 #undef TARGET_ASM_FILE_START
122 #define TARGET_ASM_FILE_START rs6000_xcoff_file_start
123 #define TARGET_ASM_FILE_END rs6000_xcoff_file_end
124 #undef TARGET_ASM_FILE_START_FILE_DIRECTIVE
125 #define TARGET_ASM_FILE_START_FILE_DIRECTIVE false
127 /* This macro produces the initial definition of a function name.
128 On the RS/6000, we need to place an extra '.' in the function name and
129 output the function descriptor.
131 The csect for the function will have already been created when
132 text_section was selected. We do have to go back to that csect, however.
134 The third and fourth parameters to the .function pseudo-op (16 and 044)
135 are placeholders which no longer have any use. */
137 #define ASM_DECLARE_FUNCTION_NAME(FILE,NAME,DECL) \
138 { if (TREE_PUBLIC (DECL)) \
140 if (!RS6000_WEAK || !DECL_WEAK (decl)) \
142 fputs ("\t.globl .", FILE); \
143 RS6000_OUTPUT_BASENAME (FILE, NAME); \
149 fputs ("\t.lglobl .", FILE); \
150 RS6000_OUTPUT_BASENAME (FILE, NAME); \
153 fputs ("\t.csect ", FILE); \
154 RS6000_OUTPUT_BASENAME (FILE, NAME); \
155 fputs (TARGET_32BIT ? "[DS]\n" : "[DS],3\n", FILE); \
156 RS6000_OUTPUT_BASENAME (FILE, NAME); \
157 fputs (":\n", FILE); \
158 fputs (TARGET_32BIT ? "\t.long ." : "\t.llong .", FILE); \
159 RS6000_OUTPUT_BASENAME (FILE, NAME); \
160 fputs (", TOC[tc0], 0\n", FILE); \
162 switch_to_section (function_section (DECL)); \
164 RS6000_OUTPUT_BASENAME (FILE, NAME); \
165 fputs (":\n", FILE); \
166 if (write_symbols != NO_DEBUG) \
167 xcoffout_declare_function (FILE, DECL, NAME); \
170 /* Output a reference to SYM on FILE. */
172 #define ASM_OUTPUT_SYMBOL_REF(FILE, SYM) \
173 rs6000_output_symbol_ref (FILE, SYM)
175 /* This says how to output an external. */
177 #undef ASM_OUTPUT_EXTERNAL
178 #define ASM_OUTPUT_EXTERNAL(FILE, DECL, NAME) \
179 { rtx _symref = XEXP (DECL_RTL (DECL), 0); \
180 if ((TREE_CODE (DECL) == VAR_DECL \
181 || TREE_CODE (DECL) == FUNCTION_DECL) \
182 && (NAME)[strlen (NAME) - 1] != ']') \
184 XSTR (_symref, 0) = concat (XSTR (_symref, 0), \
185 (TREE_CODE (DECL) == FUNCTION_DECL \
186 ? "[DS]" : "[RW]"), \
191 /* This is how to output an internal label prefix. rs6000.c uses this
192 when generating traceback tables. */
194 #define ASM_OUTPUT_INTERNAL_LABEL_PREFIX(FILE,PREFIX) \
195 fprintf (FILE, "%s..", PREFIX)
197 /* This is how to output a label for a jump table. Arguments are the same as
198 for (*targetm.asm_out.internal_label), except the insn for the jump table is
201 #define ASM_OUTPUT_CASE_LABEL(FILE,PREFIX,NUM,TABLEINSN) \
202 { ASM_OUTPUT_ALIGN (FILE, 2); (*targetm.asm_out.internal_label) (FILE, PREFIX, NUM); }
204 /* This is how to store into the string LABEL
205 the symbol_ref name of an internal numbered label where
206 PREFIX is the class of label and NUM is the number within the class.
207 This is suitable for output with `assemble_name'. */
209 #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \
210 sprintf (LABEL, "*%s..%u", (PREFIX), (unsigned) (NUM))
212 /* This is how to output an assembler line to define N characters starting
215 #define ASM_OUTPUT_ASCII(FILE, P, N) output_ascii ((FILE), (P), (N))
217 /* This is how to advance the location counter by SIZE bytes. */
219 #define SKIP_ASM_OP "\t.space "
221 #define ASM_OUTPUT_SKIP(FILE,SIZE) \
222 fprintf (FILE, "%s"HOST_WIDE_INT_PRINT_UNSIGNED"\n", SKIP_ASM_OP, (SIZE))
224 /* This says how to output an assembler line
225 to define a global common symbol. */
227 #define COMMON_ASM_OP "\t.comm "
229 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN) \
230 do { fputs (COMMON_ASM_OP, (FILE)); \
231 RS6000_OUTPUT_BASENAME ((FILE), (NAME)); \
233 fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n", (SIZE), \
234 exact_log2 ((ALIGN) / BITS_PER_UNIT)); \
235 else if ((SIZE) > 4) \
236 fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",3\n", (SIZE)); \
238 fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE)); \
241 /* This says how to output an assembler line
242 to define a local common symbol.
243 Alignment cannot be specified, but we can try to maintain
244 alignment after preceding TOC section if it was aligned
247 #define LOCAL_COMMON_ASM_OP "\t.lcomm "
249 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \
250 do { fputs (LOCAL_COMMON_ASM_OP, (FILE)); \
251 RS6000_OUTPUT_BASENAME ((FILE), (NAME)); \
252 fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%s\n", \
253 (TARGET_32BIT ? (SIZE) : (ROUNDED)), \
254 xcoff_bss_section_name); \
257 /* This is how we tell the assembler that two symbols have the same value. */
258 #define SET_ASM_OP "\t.set "
260 /* This is how we tell the assembler to equate two values. */
261 #define ASM_OUTPUT_DEF(FILE,LABEL1,LABEL2) \
262 do { fprintf ((FILE), "%s", SET_ASM_OP); \
263 RS6000_OUTPUT_BASENAME (FILE, LABEL1); \
264 fprintf (FILE, ","); \
265 RS6000_OUTPUT_BASENAME (FILE, LABEL2); \
266 fprintf (FILE, "\n"); \
269 /* Used by rs6000_assemble_integer, among others. */
270 #define DOUBLE_INT_ASM_OP "\t.llong\t"
272 /* Output before instructions. */
273 #define TEXT_SECTION_ASM_OP "\t.csect .text[PR]"
275 /* Output before writable data.
276 Align entire section to BIGGEST_ALIGNMENT. */
277 #define DATA_SECTION_ASM_OP "\t.csect .data[RW],3"
279 /* Define to prevent DWARF2 unwind info in the data section rather
280 than in the .eh_frame section. We do this because the AIX linker
281 would otherwise garbage collect these sections. */
282 #define EH_FRAME_IN_DATA_SECTION 1