* config/xtensa/xtensa.c (call_insn_operand): Check
[official-gcc.git] / gcc / config / rs6000 / darwin.h
blob993126f84896f6c8a23038edec097b5bad86b28e
1 /* Target definitions for PowerPC running Darwin (Mac OS X).
2 Copyright (C) 1997, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
3 Contributed by Apple Computer 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, 59 Temple Place - Suite 330, Boston,
20 MA 02111-1307, USA. */
22 #undef TARGET_VERSION
23 #define TARGET_VERSION fprintf (stderr, " (Darwin/PowerPC)");
25 /* The "Darwin ABI" is mostly like AIX, but with some key differences. */
27 #define DEFAULT_ABI ABI_DARWIN
29 /* The object file format is Mach-O. */
31 #define TARGET_OBJECT_FORMAT OBJECT_MACHO
33 /* We're not ever going to do TOCs. */
35 #define TARGET_TOC 0
36 #define TARGET_NO_TOC 1
38 /* Darwin switches. */
39 /* Use dynamic-no-pic codegen (no picbase reg; not suitable for shlibs.) */
40 #define MASK_MACHO_DYNAMIC_NO_PIC 0x00800000
42 #define TARGET_DYNAMIC_NO_PIC (target_flags & MASK_MACHO_DYNAMIC_NO_PIC)
44 /* Handle #pragma weak and #pragma pack. */
45 #define HANDLE_SYSV_PRAGMA 1
48 #define TARGET_OS_CPP_BUILTINS() \
49 do \
50 { \
51 builtin_define ("__ppc__"); \
52 builtin_define ("__POWERPC__"); \
53 builtin_define ("__NATURAL_ALIGNMENT__"); \
54 builtin_define ("__MACH__"); \
55 builtin_define ("__APPLE__"); \
56 } \
57 while (0)
60 /* */
61 #undef SUBTARGET_SWITCHES
62 #define SUBTARGET_SWITCHES \
63 {"dynamic-no-pic", MASK_MACHO_DYNAMIC_NO_PIC, \
64 N_("Generate code suitable for executables (NOT shared libs)")}, \
65 {"no-dynamic-no-pic", -MASK_MACHO_DYNAMIC_NO_PIC, ""},
68 /* The Darwin ABI always includes AltiVec, can't be (validly) turned
69 off. */
71 #define SUBTARGET_OVERRIDE_OPTIONS \
72 do { \
73 rs6000_altivec_abi = 1; \
74 rs6000_altivec_vrsave = 1; \
75 if (DEFAULT_ABI == ABI_DARWIN) \
76 { \
77 if (MACHO_DYNAMIC_NO_PIC_P) \
78 { \
79 if (flag_pic) \
80 warning ("-mdynamic-no-pic overrides -fpic or -fPIC"); \
81 flag_pic = 0; \
82 } \
83 else if (flag_pic == 1) \
84 { \
85 /* Darwin doesn't support -fpic. */ \
86 warning ("-fpic is not supported; -fPIC assumed"); \
87 flag_pic = 2; \
88 } \
89 } \
90 }while(0)
92 /* We want -fPIC by default, unless we're using -static to compile for
93 the kernel or some such. */
96 #define CC1_SPEC "\
97 %{gused: -feliminate-unused-debug-symbols %<gused }\
98 %{static: %{Zdynamic: %e conflicting code gen style switches are used}}\
99 %{!static:%{!mdynamic-no-pic:-fPIC}}"
101 /* It's virtually impossible to predict all the possible combinations
102 of -mcpu and -maltivec and whatnot, so just supply
103 -force_cpusubtype_ALL if any are seen. Radar 3492132 against the
104 assembler is asking for a .machine directive so we could get this
105 really right. */
106 #define ASM_SPEC "-arch ppc \
107 %{Zforce_cpusubtype_ALL:-force_cpusubtype_ALL} \
108 %{!Zforce_cpusubtype_ALL:%{maltivec|mcpu=*|mpowerpc64:-force_cpusubtype_ALL}}"
110 #undef SUBTARGET_EXTRA_SPECS
111 #define SUBTARGET_EXTRA_SPECS \
112 { "darwin_arch", "ppc" },
114 /* The "-faltivec" option should have been called "-maltivec" all along. */
115 #define SUBTARGET_OPTION_TRANSLATE_TABLE \
116 { "-faltivec", "-maltivec -include altivec.h" }, \
117 { "-fno-altivec", "-mno-altivec" }, \
118 { "-Waltivec-long-deprecated", "-mwarn-altivec-long" }, \
119 { "-Wno-altivec-long-deprecated", "-mno-warn-altivec-long" }
121 /* Make both r2 and r3 available for allocation. */
122 #define FIXED_R2 0
123 #define FIXED_R13 0
125 /* Base register for access to local variables of the function. */
127 #undef FRAME_POINTER_REGNUM
128 #define FRAME_POINTER_REGNUM 30
130 #undef RS6000_PIC_OFFSET_TABLE_REGNUM
131 #define RS6000_PIC_OFFSET_TABLE_REGNUM 31
133 /* Pad the outgoing args area to 16 bytes instead of the usual 8. */
135 #undef STARTING_FRAME_OFFSET
136 #define STARTING_FRAME_OFFSET \
137 (RS6000_ALIGN (current_function_outgoing_args_size, 16) \
138 + RS6000_VARARGS_AREA \
139 + RS6000_SAVE_AREA)
141 #undef STACK_DYNAMIC_OFFSET
142 #define STACK_DYNAMIC_OFFSET(FUNDECL) \
143 (RS6000_ALIGN (current_function_outgoing_args_size, 16) \
144 + (STACK_POINTER_OFFSET))
146 /* These are used by -fbranch-probabilities */
147 #define HOT_TEXT_SECTION_NAME "__TEXT,__text,regular,pure_instructions"
148 #define NORMAL_TEXT_SECTION_NAME "__TEXT,__text,regular,pure_instructions"
149 #define UNLIKELY_EXECUTED_TEXT_SECTION_NAME \
150 "__TEXT,__unlikely,regular,pure_instructions"
151 #define SECTION_FORMAT_STRING ".section %s\n\t.align 2\n"
153 /* Define cutoff for using external functions to save floating point.
154 Currently on Darwin, always use inline stores. */
156 #undef FP_SAVE_INLINE
157 #define FP_SAVE_INLINE(FIRST_REG) ((FIRST_REG) < 64)
159 /* The assembler wants the alternate register names, but without
160 leading percent sign. */
161 #undef REGISTER_NAMES
162 #define REGISTER_NAMES \
164 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", \
165 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15", \
166 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23", \
167 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31", \
168 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7", \
169 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15", \
170 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23", \
171 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31", \
172 "mq", "lr", "ctr", "ap", \
173 "cr0", "cr1", "cr2", "cr3", "cr4", "cr5", "cr6", "cr7", \
174 "xer", \
175 "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", \
176 "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", \
177 "v16", "v17", "v18", "v19", "v20", "v21", "v22", "v23", \
178 "v24", "v25", "v26", "v27", "v28", "v29", "v30", "v31", \
179 "vrsave", "vscr", \
180 "spe_acc", "spefscr" \
183 /* This outputs NAME to FILE. */
185 #undef RS6000_OUTPUT_BASENAME
186 #define RS6000_OUTPUT_BASENAME(FILE, NAME) \
187 assemble_name (FILE, NAME)
189 /* Globalizing directive for a label. */
190 #undef GLOBAL_ASM_OP
191 #define GLOBAL_ASM_OP "\t.globl "
192 #undef TARGET_ASM_GLOBALIZE_LABEL
194 /* This is how to output an internal label prefix. rs6000.c uses this
195 when generating traceback tables. */
196 /* Not really used for Darwin? */
198 #undef ASM_OUTPUT_INTERNAL_LABEL_PREFIX
199 #define ASM_OUTPUT_INTERNAL_LABEL_PREFIX(FILE,PREFIX) \
200 fprintf (FILE, "%s", PREFIX)
202 /* This says how to output an assembler line to define a global common
203 symbol. */
204 /* ? */
205 #undef ASM_OUTPUT_ALIGNED_COMMON
206 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
207 do { fputs (".comm ", (FILE)); \
208 RS6000_OUTPUT_BASENAME ((FILE), (NAME)); \
209 fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED"\n",\
210 (SIZE)); } while (0)
212 /* Override the standard rs6000 definition. */
214 #undef ASM_COMMENT_START
215 #define ASM_COMMENT_START ";"
217 /* FP save and restore routines. */
218 #define SAVE_FP_PREFIX "._savef"
219 #define SAVE_FP_SUFFIX ""
220 #define RESTORE_FP_PREFIX "._restf"
221 #define RESTORE_FP_SUFFIX ""
223 /* This is how to output an assembler line that says to advance
224 the location counter to a multiple of 2**LOG bytes using the
225 "nop" instruction as padding. */
227 #define ASM_OUTPUT_ALIGN_WITH_NOP(FILE,LOG) \
228 do \
230 if ((LOG) < 3) \
232 ASM_OUTPUT_ALIGN (FILE,LOG); \
234 else /* nop == ori r0,r0,0 */ \
235 fprintf (FILE, "\t.align32 %d,0x60000000\n", (LOG)); \
236 } while (0)
238 /* Generate insns to call the profiler. */
240 #define PROFILE_HOOK(LABEL) output_profile_hook (LABEL)
242 /* Function name to call to do profiling. */
244 #define RS6000_MCOUNT "*mcount"
246 /* Default processor: a G4. */
248 #undef PROCESSOR_DEFAULT
249 #define PROCESSOR_DEFAULT PROCESSOR_PPC7400
251 /* Default target flag settings. Despite the fact that STMW/LMW
252 serializes, it's still a big code size win to use them. Use FSEL by
253 default as well. */
255 #undef TARGET_DEFAULT
256 #define TARGET_DEFAULT (MASK_POWERPC | MASK_MULTIPLE | MASK_NEW_MNEMONICS \
257 | MASK_PPC_GFXOPT)
259 /* Since Darwin doesn't do TOCs, stub this out. */
261 #define ASM_OUTPUT_SPECIAL_POOL_ENTRY_P(X, MODE) 0
263 /* Unlike most other PowerPC targets, chars are signed, for
264 consistency with other Darwin architectures. */
266 #undef DEFAULT_SIGNED_CHAR
267 #define DEFAULT_SIGNED_CHAR (1)
269 /* Given an rtx X being reloaded into a reg required to be
270 in class CLASS, return the class of reg to actually use.
271 In general this is just CLASS; but on some machines
272 in some cases it is preferable to use a more restrictive class.
274 On the RS/6000, we have to return NO_REGS when we want to reload a
275 floating-point CONST_DOUBLE to force it to be copied to memory.
277 Don't allow R0 when loading the address of, or otherwise furtling with,
278 a SYMBOL_REF. */
280 #undef PREFERRED_RELOAD_CLASS
281 #define PREFERRED_RELOAD_CLASS(X,CLASS) \
282 ((GET_CODE (X) == CONST_DOUBLE \
283 && GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT) \
284 ? NO_REGS \
285 : ((GET_CODE (X) == SYMBOL_REF || GET_CODE (X) == HIGH) \
286 && reg_class_subset_p (BASE_REGS, (CLASS))) \
287 ? BASE_REGS \
288 : (GET_MODE_CLASS (GET_MODE (X)) == MODE_INT \
289 && (CLASS) == NON_SPECIAL_REGS) \
290 ? GENERAL_REGS \
291 : (CLASS))
293 /* Fix for emit_group_load (): force large constants to be pushed via regs. */
294 #define ALWAYS_PUSH_CONSTS_USING_REGS_P 1
296 /* This now supports a natural alignment mode */
297 /* Darwin word-aligns FP doubles but doubleword-aligns 64-bit ints. */
298 #define ADJUST_FIELD_ALIGN(FIELD, COMPUTED) \
299 (TARGET_ALIGN_NATURAL ? (COMPUTED) : \
300 (TYPE_MODE (TREE_CODE (TREE_TYPE (FIELD)) == ARRAY_TYPE \
301 ? get_inner_array_type (FIELD) \
302 : TREE_TYPE (FIELD)) == DFmode \
303 ? MIN ((COMPUTED), 32) : (COMPUTED)))
305 /* Darwin increases natural record alignment to doubleword if the first
306 field is an FP double while the FP fields remain word aligned. */
307 #define ROUND_TYPE_ALIGN(STRUCT, COMPUTED, SPECIFIED) \
308 ((TREE_CODE (STRUCT) == RECORD_TYPE \
309 || TREE_CODE (STRUCT) == UNION_TYPE \
310 || TREE_CODE (STRUCT) == QUAL_UNION_TYPE) \
311 && TARGET_ALIGN_NATURAL == 0 \
312 ? rs6000_special_round_type_align (STRUCT, COMPUTED, SPECIFIED) \
313 : (TARGET_ALTIVEC && TREE_CODE (STRUCT) == VECTOR_TYPE) \
314 ? MAX (MAX ((COMPUTED), (SPECIFIED)), 128) \
315 : MAX ((COMPUTED), (SPECIFIED)))
317 /* XXX: Darwin supports neither .quad, or .llong, but it also doesn't
318 support 64 bit PowerPC either, so this just keeps things happy. */
319 #define DOUBLE_INT_ASM_OP "\t.quad\t"
321 /* For binary compatibility with 2.95; Darwin C APIs use bool from
322 stdbool.h, which was an int-sized enum in 2.95. */
323 #define BOOL_TYPE_SIZE INT_TYPE_SIZE
325 #undef REGISTER_TARGET_PRAGMAS
326 #define REGISTER_TARGET_PRAGMAS DARWIN_REGISTER_TARGET_PRAGMAS