1 /* Definitions of target machine for GNU compiler,
2 for m68k (including m68010) NetBSD platforms using the
4 Copyright (C) 2002, 2003, 2004, 2006, 2007, 2009, 2010
5 Free Software Foundation, Inc.
6 Contributed by Wasabi Systems. Inc.
8 This file is derived from <m68k/m68kv4.h>, <m68k/m68kelf.h>,
11 This file is part of GCC.
13 GCC is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 3, or (at your option)
18 GCC is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with GCC; see the file COPYING3. If not see
25 <http://www.gnu.org/licenses/>. */
27 #define TARGET_OS_CPP_BUILTINS() \
30 NETBSD_OS_CPP_BUILTINS_ELF(); \
31 builtin_define ("__m68k__"); \
32 builtin_define ("__SVR4_ABI__"); \
33 builtin_define ("__motorola__"); \
34 if (TARGET_HARD_FLOAT) \
35 builtin_define ("__HAVE_FPU__"); \
39 /* Don't try using XFmode on the 68010. */
40 #undef LONG_DOUBLE_TYPE_SIZE
41 #define LONG_DOUBLE_TYPE_SIZE (TARGET_68020 ? 80 : 64)
43 #undef LIBGCC2_LONG_DOUBLE_TYPE_SIZE
45 #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64
47 #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 80
50 #undef SUBTARGET_EXTRA_SPECS
51 #define SUBTARGET_EXTRA_SPECS \
52 { "netbsd_entry_point", NETBSD_ENTRY_POINT },
56 #define TARGET_VERSION \
59 ? " (NetBSD/68010 ELF)" \
60 : " (NetBSD/m68k ELF)");
63 /* Provide a CPP_SPEC appropriate for NetBSD m68k targets. Currently we
64 deal with the GCC option '-posix', as well as an indication as to
65 whether or not use of the FPU is allowed. */
68 #define CPP_SPEC NETBSD_CPP_SPEC
71 /* Provide an ASM_SPEC appropriate for NetBSD m68k ELF targets. We need
72 to pass PIC code generation options. */
75 #define ASM_SPEC "%(asm_cpu_spec) %{fpic|fpie:-k} %{fPIC|fPIE:-k -K}"
77 /* Provide a LINK_SPEC appropriate for a NetBSD/m68k ELF target. */
80 #define LINK_SPEC NETBSD_LINK_SPEC_ELF
82 #define NETBSD_ENTRY_POINT "_start"
84 /* Output assembler code to FILE to increment profiler label # LABELNO
85 for profiling a function only. */
87 #undef FUNCTION_PROFILER
88 #define FUNCTION_PROFILER(FILE, LABELNO) \
91 asm_fprintf (FILE, "\tlea (%LLP%d,%Rpc),%Ra1\n", (LABELNO)); \
93 fprintf (FILE, "\tbsr.l __mcount@PLTPC\n"); \
95 fprintf (FILE, "\tjbsr __mcount\n"); \
100 /* Make gcc agree with <machine/ansi.h> */
103 #define SIZE_TYPE "unsigned int"
106 #define PTRDIFF_TYPE "int"
110 Here is a bunch of stuff lifted from m68kelf.h. We don't use that
111 file directly, because it has a lot of baggage we don't want. */
114 /* The prefix for register names. Note that REGISTER_NAMES
115 is supposed to include this prefix. Also note that this is NOT an
116 fprintf format string, it is a literal string. */
118 #undef REGISTER_PREFIX
119 #define REGISTER_PREFIX "%"
122 /* The prefix for local (compiler generated) lables.
123 These labels will not appear in the symbol table. */
125 #undef LOCAL_LABEL_PREFIX
126 #define LOCAL_LABEL_PREFIX "."
129 /* The prefix to add to user-visible assembler symbols. */
131 #undef USER_LABEL_PREFIX
132 #define USER_LABEL_PREFIX ""
135 #undef ASM_COMMENT_START
136 #define ASM_COMMENT_START "|"
139 /* Currently, JUMP_TABLES_IN_TEXT_SECTION must be defined in order to
140 keep switch tables in the text section. */
142 #undef JUMP_TABLES_IN_TEXT_SECTION
143 #define JUMP_TABLES_IN_TEXT_SECTION 1
146 /* Use the default action for outputting the case label. */
147 #undef ASM_OUTPUT_CASE_LABEL
148 #define ASM_RETURN_CASE_JUMP \
150 if (TARGET_COLDFIRE) \
152 if (ADDRESS_REG_P (operands[0])) \
153 return "jmp %%pc@(2,%0:l)"; \
155 return "ext%.l %0\n\tjmp %%pc@(2,%0:l)"; \
158 return "jmp %%pc@(2,%0:w)"; \
162 /* This is how to output an assembler line that says to advance the
163 location counter to a multiple of 2**LOG bytes. */
165 #undef ASM_OUTPUT_ALIGN
166 #define ASM_OUTPUT_ALIGN(FILE,LOG) \
170 fprintf ((FILE), "%s%u\n", ALIGN_ASM_OP, 1 << (LOG)); \
175 /* If defined, a C expression whose value is a string containing the
176 assembler operation to identify the following data as uninitialized global
179 #define BSS_SECTION_ASM_OP ".section\t.bss"
182 /* Like `ASM_OUTPUT_BSS' except takes the required alignment as a
183 separate, explicit argument. If you define this macro, it is used
184 in place of `ASM_OUTPUT_BSS', and gives you more flexibility in
185 handling the required alignment of the variable. The alignment is
186 specified as the number of bits.
188 Try to use function `asm_output_aligned_bss' defined in file
189 `varasm.c' when defining this macro. */
191 #undef ASM_OUTPUT_ALIGNED_BSS
192 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
193 asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
196 #undef ASM_OUTPUT_COMMON
197 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
198 ( fputs (".comm ", (FILE)), \
199 assemble_name ((FILE), (NAME)), \
200 fprintf ((FILE), ",%u\n", (int)(SIZE)))
202 #undef ASM_OUTPUT_LOCAL
203 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \
204 ( fputs (".lcomm ", (FILE)), \
205 assemble_name ((FILE), (NAME)), \
206 fprintf ((FILE), ",%u\n", (int)(SIZE)))
210 This is the end of the chunk lifted from m68kelf.h */
214 The following chunk is more or less lifted from m68kv4.h.
215 We'd like to just #include that file, but it has not yet
216 been converted to the new include style.
218 Should there be a m68kv4-abi.h ?? */
221 /* Register in which address to store a structure value is passed to a
222 function. The default in m68k.h is a1. For m68k/SVR4 it is a0. */
224 #undef M68K_STRUCT_VALUE_REGNUM
225 #define M68K_STRUCT_VALUE_REGNUM A0_REG
228 /* Register in which static-chain is passed to a function. The
229 default isn m68k.h is a0, but that is already the struct value
230 regnum. Make it a1 instead. */
232 #undef STATIC_CHAIN_REGNUM
233 #define STATIC_CHAIN_REGNUM A1_REG
234 #undef M68K_STATIC_CHAIN_REG_NAME
235 #define M68K_STATIC_CHAIN_REG_NAME REGISTER_PREFIX "a1"
238 /* Now to renumber registers for dbx and gdb.
239 We use the Sun-3 convention, which is:
240 floating point registers have numbers 18 to 25, not
241 16 to 23 as they do in the compiler. */
243 #undef DBX_REGISTER_NUMBER
244 #define DBX_REGISTER_NUMBER(REGNO) ((REGNO) < 16 ? (REGNO) : (REGNO) + 2)
247 /* 1 if N is a possible register number for a function value. For
248 m68k/SVR4 allow d0, a0, or fp0 as return registers, for integral,
249 pointer, or floating types, respectively. Reject fp0 if not using
250 a 68881 coprocessor. */
252 #undef FUNCTION_VALUE_REGNO_P
253 #define FUNCTION_VALUE_REGNO_P(N) \
254 ((N) == D0_REG || (N) == A0_REG || (TARGET_68881 && (N) == FP0_REG))
257 /* Define this to be true when FUNCTION_VALUE_REGNO_P is true for
258 more than one register. */
260 #undef NEEDS_UNTYPED_CALL
261 #define NEEDS_UNTYPED_CALL 1
264 /* Define how to generate (in the callee) the output value of a
265 function and how to find (in the caller) the value returned by a
266 function. VALTYPE is the data type of the value (as a tree). If
267 the precise function being called is known, FUNC is its
268 FUNCTION_DECL; otherwise, FUNC is 0. For m68k/SVR4 generate the
269 result in d0, a0, or fp0 as appropriate. */
271 #undef FUNCTION_VALUE
272 #define FUNCTION_VALUE(VALTYPE, FUNC) \
273 m68k_function_value (VALTYPE, FUNC)
276 /* Define how to find the value returned by a library function
277 assuming the value has mode MODE.
278 For m68k/SVR4 look for integer values in d0, pointer values in d0
279 (returned in both d0 and a0), and floating values in fp0. */
282 #define LIBCALL_VALUE(MODE) \
283 m68k_libcall_value (MODE)
286 /* Boundary (in *bits*) on which stack pointer should be aligned.
287 The m68k/SVR4 convention is to keep the stack pointer longword aligned. */
289 #undef STACK_BOUNDARY
290 #define STACK_BOUNDARY 32
293 /* Alignment of field after `int : 0' in a structure.
294 For m68k/SVR4, this is the next longword boundary. */
296 #undef EMPTY_FIELD_BOUNDARY
297 #define EMPTY_FIELD_BOUNDARY 32
300 /* No data type wants to be aligned rounder than this.
301 For m68k/SVR4, some types (doubles for example) are aligned on 8 byte
304 #undef BIGGEST_ALIGNMENT
305 #define BIGGEST_ALIGNMENT 64
308 /* The svr4 ABI for the m68k says that records and unions are returned
311 #undef DEFAULT_PCC_STRUCT_RETURN
312 #define DEFAULT_PCC_STRUCT_RETURN 1
315 This is the end of the chunk lifted from m68kv4.h */