* include/bits/stl_iterator.h (make_reverse_iterator): LWG DR 2285.
[official-gcc.git] / gcc / config / m68k / netbsd-elf.h
blobeade5b4192142cca71e59711055f71b5a1fe3cdd
1 /* Definitions of target machine for GNU compiler,
2 for m68k (including m68010) NetBSD platforms using the
3 ELF object format.
4 Copyright (C) 2002-2014 Free Software Foundation, Inc.
5 Contributed by Wasabi Systems. Inc.
7 This file is derived from <m68k/m68kv4.h>, <m68k/m68kelf.h>,
8 and <m68k/linux.h>.
10 This file is part of GCC.
12 GCC is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 3, or (at your option)
15 any later version.
17 GCC is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
22 You should have received a copy of the GNU General Public License
23 along with GCC; see the file COPYING3. If not see
24 <http://www.gnu.org/licenses/>. */
26 #define TARGET_OS_CPP_BUILTINS() \
27 do \
28 { \
29 NETBSD_OS_CPP_BUILTINS_ELF(); \
30 builtin_define ("__m68k__"); \
31 builtin_define ("__SVR4_ABI__"); \
32 builtin_define ("__motorola__"); \
33 if (TARGET_HARD_FLOAT) \
34 builtin_define ("__HAVE_FPU__"); \
35 } \
36 while (0)
38 /* Don't try using XFmode on the 68010. */
39 #undef LONG_DOUBLE_TYPE_SIZE
40 #define LONG_DOUBLE_TYPE_SIZE (TARGET_68020 ? 80 : 64)
42 #undef SUBTARGET_EXTRA_SPECS
43 #define SUBTARGET_EXTRA_SPECS \
44 { "netbsd_entry_point", NETBSD_ENTRY_POINT },
47 /* Provide a CPP_SPEC appropriate for NetBSD m68k targets. Currently we
48 deal with the GCC option '-posix', as well as an indication as to
49 whether or not use of the FPU is allowed. */
51 #undef CPP_SPEC
52 #define CPP_SPEC NETBSD_CPP_SPEC
55 /* Provide an ASM_SPEC appropriate for NetBSD m68k ELF targets. We need
56 to pass PIC code generation options. */
58 #undef ASM_SPEC
59 #define ASM_SPEC "%(asm_cpu_spec) %{fpic|fpie:-k} %{fPIC|fPIE:-k -K}"
61 /* Provide a LINK_SPEC appropriate for a NetBSD/m68k ELF target. */
63 #undef LINK_SPEC
64 #define LINK_SPEC NETBSD_LINK_SPEC_ELF
66 #define NETBSD_ENTRY_POINT "_start"
68 /* Output assembler code to FILE to increment profiler label # LABELNO
69 for profiling a function only. */
71 #undef FUNCTION_PROFILER
72 #define FUNCTION_PROFILER(FILE, LABELNO) \
73 do \
74 { \
75 asm_fprintf (FILE, "\tlea (%LLP%d,%Rpc),%Ra1\n", (LABELNO)); \
76 if (flag_pic) \
77 fprintf (FILE, "\tbsr.l __mcount@PLTPC\n"); \
78 else \
79 fprintf (FILE, "\tjbsr __mcount\n"); \
80 } \
81 while (0)
84 /* Make gcc agree with <machine/ansi.h> */
86 #undef SIZE_TYPE
87 #define SIZE_TYPE "unsigned int"
89 #undef PTRDIFF_TYPE
90 #define PTRDIFF_TYPE "int"
93 /* XXX
94 Here is a bunch of stuff lifted from m68kelf.h. We don't use that
95 file directly, because it has a lot of baggage we don't want. */
98 /* The prefix for register names. Note that REGISTER_NAMES
99 is supposed to include this prefix. Also note that this is NOT an
100 fprintf format string, it is a literal string. */
102 #undef REGISTER_PREFIX
103 #define REGISTER_PREFIX "%"
106 /* The prefix for local (compiler generated) lables.
107 These labels will not appear in the symbol table. */
109 #undef LOCAL_LABEL_PREFIX
110 #define LOCAL_LABEL_PREFIX "."
113 /* The prefix to add to user-visible assembler symbols. */
115 #undef USER_LABEL_PREFIX
116 #define USER_LABEL_PREFIX ""
119 #undef ASM_COMMENT_START
120 #define ASM_COMMENT_START "|"
123 /* Currently, JUMP_TABLES_IN_TEXT_SECTION must be defined in order to
124 keep switch tables in the text section. */
126 #undef JUMP_TABLES_IN_TEXT_SECTION
127 #define JUMP_TABLES_IN_TEXT_SECTION 1
130 /* Use the default action for outputting the case label. */
131 #undef ASM_OUTPUT_CASE_LABEL
132 #define ASM_RETURN_CASE_JUMP \
133 do { \
134 if (TARGET_COLDFIRE) \
136 if (ADDRESS_REG_P (operands[0])) \
137 return "jmp %%pc@(2,%0:l)"; \
138 else \
139 return "ext%.l %0\n\tjmp %%pc@(2,%0:l)"; \
141 else \
142 return "jmp %%pc@(2,%0:w)"; \
143 } while (0)
146 /* This is how to output an assembler line that says to advance the
147 location counter to a multiple of 2**LOG bytes. */
149 #undef ASM_OUTPUT_ALIGN
150 #define ASM_OUTPUT_ALIGN(FILE,LOG) \
151 do \
153 if ((LOG) > 0) \
154 fprintf ((FILE), "%s%u\n", ALIGN_ASM_OP, 1 << (LOG)); \
156 while (0)
159 /* If defined, a C expression whose value is a string containing the
160 assembler operation to identify the following data as uninitialized global
161 data. */
163 #define BSS_SECTION_ASM_OP ".section\t.bss"
166 #undef ASM_OUTPUT_ALIGNED_BSS
167 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
168 asm_output_aligned_bss (FILE, DECL, NAME, SIZE, ALIGN)
171 #undef ASM_OUTPUT_COMMON
172 #define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
173 ( fputs (".comm ", (FILE)), \
174 assemble_name ((FILE), (NAME)), \
175 fprintf ((FILE), ",%u\n", (int)(SIZE)))
177 #undef ASM_OUTPUT_LOCAL
178 #define ASM_OUTPUT_LOCAL(FILE, NAME, SIZE, ROUNDED) \
179 ( fputs (".lcomm ", (FILE)), \
180 assemble_name ((FILE), (NAME)), \
181 fprintf ((FILE), ",%u\n", (int)(SIZE)))
184 /* XXX
185 This is the end of the chunk lifted from m68kelf.h */
188 /* XXX
189 The following chunk is more or less lifted from m68kv4.h.
190 We'd like to just #include that file, but it has not yet
191 been converted to the new include style.
193 Should there be a m68kv4-abi.h ?? */
196 /* Register in which address to store a structure value is passed to a
197 function. The default in m68k.h is a1. For m68k/SVR4 it is a0. */
199 #undef M68K_STRUCT_VALUE_REGNUM
200 #define M68K_STRUCT_VALUE_REGNUM A0_REG
203 /* Register in which static-chain is passed to a function. The
204 default isn m68k.h is a0, but that is already the struct value
205 regnum. Make it a1 instead. */
207 #undef STATIC_CHAIN_REGNUM
208 #define STATIC_CHAIN_REGNUM A1_REG
209 #undef M68K_STATIC_CHAIN_REG_NAME
210 #define M68K_STATIC_CHAIN_REG_NAME REGISTER_PREFIX "a1"
213 /* Now to renumber registers for dbx and gdb.
214 We use the Sun-3 convention, which is:
215 floating point registers have numbers 18 to 25, not
216 16 to 23 as they do in the compiler. */
218 #undef DBX_REGISTER_NUMBER
219 #define DBX_REGISTER_NUMBER(REGNO) ((REGNO) < 16 ? (REGNO) : (REGNO) + 2)
222 /* 1 if N is a possible register number for a function value. For
223 m68k/SVR4 allow d0, a0, or fp0 as return registers, for integral,
224 pointer, or floating types, respectively. Reject fp0 if not using
225 a 68881 coprocessor. */
227 #undef FUNCTION_VALUE_REGNO_P
228 #define FUNCTION_VALUE_REGNO_P(N) \
229 ((N) == D0_REG || (N) == A0_REG || (TARGET_68881 && (N) == FP0_REG))
232 /* Define this to be true when FUNCTION_VALUE_REGNO_P is true for
233 more than one register. */
235 #undef NEEDS_UNTYPED_CALL
236 #define NEEDS_UNTYPED_CALL 1
239 /* Define how to generate (in the callee) the output value of a
240 function and how to find (in the caller) the value returned by a
241 function. VALTYPE is the data type of the value (as a tree). If
242 the precise function being called is known, FUNC is its
243 FUNCTION_DECL; otherwise, FUNC is 0. For m68k/SVR4 generate the
244 result in d0, a0, or fp0 as appropriate. */
246 #undef FUNCTION_VALUE
247 #define FUNCTION_VALUE(VALTYPE, FUNC) \
248 m68k_function_value (VALTYPE, FUNC)
251 /* Define how to find the value returned by a library function
252 assuming the value has mode MODE.
253 For m68k/SVR4 look for integer values in d0, pointer values in d0
254 (returned in both d0 and a0), and floating values in fp0. */
256 #undef LIBCALL_VALUE
257 #define LIBCALL_VALUE(MODE) \
258 m68k_libcall_value (MODE)
261 /* Boundary (in *bits*) on which stack pointer should be aligned.
262 The m68k/SVR4 convention is to keep the stack pointer longword aligned. */
264 #undef STACK_BOUNDARY
265 #define STACK_BOUNDARY 32
268 /* Alignment of field after `int : 0' in a structure.
269 For m68k/SVR4, this is the next longword boundary. */
271 #undef EMPTY_FIELD_BOUNDARY
272 #define EMPTY_FIELD_BOUNDARY 32
275 /* No data type wants to be aligned rounder than this.
276 For m68k/SVR4, some types (doubles for example) are aligned on 8 byte
277 boundaries */
279 #undef BIGGEST_ALIGNMENT
280 #define BIGGEST_ALIGNMENT 64
283 /* The svr4 ABI for the m68k says that records and unions are returned
284 in memory. */
286 #undef DEFAULT_PCC_STRUCT_RETURN
287 #define DEFAULT_PCC_STRUCT_RETURN 1
289 /* XXX
290 This is the end of the chunk lifted from m68kv4.h */