1 | /* Definitions of target machine for GNU compiler, for ELF on NetBSD/sparc
|
---|
2 | and NetBSD/sparc64.
|
---|
3 | Copyright (C) 2002 Free Software Foundation, Inc.
|
---|
4 | Contributed by Matthew Green (mrg@eterna.com.au).
|
---|
5 |
|
---|
6 | This file is part of GNU CC.
|
---|
7 |
|
---|
8 | GNU CC is free software; you can redistribute it and/or modify
|
---|
9 | it under the terms of the GNU General Public License as published by
|
---|
10 | the Free Software Foundation; either version 2, or (at your option)
|
---|
11 | any later version.
|
---|
12 |
|
---|
13 | GNU CC is distributed in the hope that it will be useful,
|
---|
14 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
16 | GNU General Public License for more details.
|
---|
17 |
|
---|
18 | You should have received a copy of the GNU General Public License
|
---|
19 | along with GNU CC; see the file COPYING. If not, write to
|
---|
20 | the Free Software Foundation, 59 Temple Place - Suite 330,
|
---|
21 | Boston, MA 02111-1307, USA. */
|
---|
22 |
|
---|
23 | /* Make sure these are undefined. */
|
---|
24 | #undef MD_EXEC_PREFIX
|
---|
25 | #undef MD_STARTFILE_PREFIX
|
---|
26 |
|
---|
27 | #undef CPP_PREDEFINES
|
---|
28 | #define CPP_PREDEFINES "-D__sparc__ -D__NetBSD__ -D__ELF__ \
|
---|
29 | -Asystem=unix -Asystem=NetBSD"
|
---|
30 |
|
---|
31 | /* CPP defines used for 64 bit code. */
|
---|
32 | #undef CPP_SUBTARGET_SPEC64
|
---|
33 | #define CPP_SUBTARGET_SPEC64 \
|
---|
34 | "-D__sparc64__ -D__sparc_v9__ -D_LP64 %{posix:-D_POSIX_SOURCE}"
|
---|
35 |
|
---|
36 | /* CPP defines used for 32 bit code. */
|
---|
37 | #undef CPP_SUBTARGET_SPEC32
|
---|
38 | #define CPP_SUBTARGET_SPEC32 "-D__sparc %{posix:-D_POSIX_SOURCE}"
|
---|
39 |
|
---|
40 | /* CPP_ARCH32_SPEC and CPP_ARCH64_SPEC are wrong from sparc/sparc.h; we
|
---|
41 | always want the non-SPARC_BI_ARCH versions, since the SPARC_BI_ARCH
|
---|
42 | versions define __SIZE_TYPE__ and __PTRDIFF_TYPE__ incorrectly for
|
---|
43 | NetBSD. */
|
---|
44 | #undef CPP_ARCH32_SPEC
|
---|
45 | #define CPP_ARCH32_SPEC "-D__GCC_NEW_VARARGS__ -Acpu=sparc -Amachine=sparc"
|
---|
46 |
|
---|
47 | #undef CPP_ARCH64_SPEC
|
---|
48 | #define CPP_ARCH64_SPEC "-D__arch64__ -Acpu=sparc64 -Amachine=sparc64"
|
---|
49 |
|
---|
50 | /* sparc/sparc.h defines NO_BUILTIN_SIZE_TYPE and NO_BUILTIN_PTRDIFF_TYPE
|
---|
51 | if SPARC_BI_ARCH is defined. This is wrong for NetBSD; size_t and
|
---|
52 | ptrdiff_t do not change for 32-bit vs. 64-bit. */
|
---|
53 | #undef NO_BUILTIN_PTRDIFF_TYPE
|
---|
54 | #undef NO_BUILTIN_SIZE_TYPE
|
---|
55 |
|
---|
56 | /* SIZE_TYPE and PTRDIFF_TYPE are wrong from sparc/sparc.h. */
|
---|
57 | #undef SIZE_TYPE
|
---|
58 | #define SIZE_TYPE "long unsigned int"
|
---|
59 |
|
---|
60 | #undef PTRDIFF_TYPE
|
---|
61 | #define PTRDIFF_TYPE "long int"
|
---|
62 |
|
---|
63 | #undef PREFERRED_DEBUGGING_TYPE
|
---|
64 | #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
|
---|
65 |
|
---|
66 | /* This is the char to use for continuation (in case we need to turn
|
---|
67 | continuation back on). */
|
---|
68 | #undef DBX_CONTIN_CHAR
|
---|
69 | #define DBX_CONTIN_CHAR '?'
|
---|
70 |
|
---|
71 | #undef DBX_REGISTER_NUMBER
|
---|
72 | #define DBX_REGISTER_NUMBER(REGNO) \
|
---|
73 | (TARGET_FLAT && REGNO == HARD_FRAME_POINTER_REGNUM ? 31 : REGNO)
|
---|
74 |
|
---|
75 | #undef LOCAL_LABEL_PREFIX
|
---|
76 | #define LOCAL_LABEL_PREFIX "."
|
---|
77 |
|
---|
78 | /* This is how to output a definition of an internal numbered label where
|
---|
79 | PREFIX is the class of label and NUM is the number within the class. */
|
---|
80 |
|
---|
81 | #undef ASM_OUTPUT_INTERNAL_LABEL
|
---|
82 | #define ASM_OUTPUT_INTERNAL_LABEL(FILE,PREFIX,NUM) \
|
---|
83 | fprintf (FILE, ".L%s%d:\n", PREFIX, NUM)
|
---|
84 |
|
---|
85 | /* This is how to output a reference to an internal numbered label where
|
---|
86 | PREFIX is the class of label and NUM is the number within the class. */
|
---|
87 |
|
---|
88 | #undef ASM_OUTPUT_INTERNAL_LABELREF
|
---|
89 | #define ASM_OUTPUT_INTERNAL_LABELREF(FILE,PREFIX,NUM) \
|
---|
90 | fprintf (FILE, ".L%s%d", PREFIX, NUM)
|
---|
91 |
|
---|
92 | /* This is how to store into the string LABEL
|
---|
93 | the symbol_ref name of an internal numbered label where
|
---|
94 | PREFIX is the class of label and NUM is the number within the class.
|
---|
95 | This is suitable for output with `assemble_name'. */
|
---|
96 |
|
---|
97 | #undef ASM_GENERATE_INTERNAL_LABEL
|
---|
98 | #define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \
|
---|
99 | sprintf ((LABEL), "*.L%s%ld", (PREFIX), (long)(NUM))
|
---|
100 |
|
---|
101 | #undef USER_LABEL_PREFIX
|
---|
102 | #define USER_LABEL_PREFIX ""
|
---|
103 |
|
---|
104 | #undef ASM_SPEC
|
---|
105 | #define ASM_SPEC "%{fpic:-K PIC} %{fPIC:-K PIC} %{V} %{v:%{!V:-V}} \
|
---|
106 | %{mlittle-endian:-EL} \
|
---|
107 | %(asm_cpu) %(asm_arch) %(asm_relax)"
|
---|
108 |
|
---|
109 | #undef STDC_0_IN_SYSTEM_HEADERS
|
---|
110 |
|
---|
111 | #undef TARGET_VERSION
|
---|
112 | #define TARGET_VERSION fprintf (stderr, " (%s)", TARGET_NAME);
|
---|
113 |
|
---|
114 | /*
|
---|
115 | * Clean up afterwards generic SPARC ELF configuration.
|
---|
116 | */
|
---|
117 |
|
---|
118 | /* FIXME: Aren't these supposed to be available for SPARC ELF? */
|
---|
119 | #undef MULDI3_LIBCALL
|
---|
120 | #undef DIVDI3_LIBCALL
|
---|
121 | #undef UDIVDI3_LIBCALL
|
---|
122 | #undef MODDI3_LIBCALL
|
---|
123 | #undef UMODDI3_LIBCALL
|
---|
124 | #undef INIT_SUBTARGET_OPTABS
|
---|
125 | #define INIT_SUBTARGET_OPTABS
|
---|
126 |
|
---|
127 | /* Below here exists the merged NetBSD/sparc & NetBSD/sparc64 compiler
|
---|
128 | description, allowing one to build 32 bit or 64 bit applications
|
---|
129 | on either. We define the sparc & sparc64 versions of things,
|
---|
130 | occasionally a neutral version (should be the same as "netbsd-elf.h")
|
---|
131 | and then based on SPARC_BI_ARCH, DEFAULT_ARCH32_P, and TARGET_CPU_DEFAULT,
|
---|
132 | we choose the correct version. */
|
---|
133 |
|
---|
134 | /* We use the default NetBSD ELF STARTFILE_SPEC and ENDFILE_SPEC
|
---|
135 | definitions, even for the SPARC_BI_ARCH compiler, because NetBSD does
|
---|
136 | not have a default place to find these libraries.. */
|
---|
137 |
|
---|
138 | /* Name the port(s). */
|
---|
139 | #define TARGET_NAME64 "NetBSD/sparc64 ELF"
|
---|
140 | #define TARGET_NAME32 "NetBSD/sparc ELF"
|
---|
141 |
|
---|
142 | /* TARGET_CPU_DEFAULT is set in Makefile.in. We test for 64-bit default
|
---|
143 | platform here. */
|
---|
144 |
|
---|
145 | #if TARGET_CPU_DEFAULT == TARGET_CPU_v9 \
|
---|
146 | || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc
|
---|
147 | /* A 64 bit v9 compiler with stack-bias,
|
---|
148 | in a Medium/Low code model environment. */
|
---|
149 |
|
---|
150 | #undef TARGET_DEFAULT
|
---|
151 | #define TARGET_DEFAULT \
|
---|
152 | (MASK_V9 + MASK_PTR64 + MASK_64BIT /* + MASK_HARD_QUAD */ \
|
---|
153 | + MASK_STACK_BIAS + MASK_APP_REGS + MASK_FPU + MASK_LONG_DOUBLE_128)
|
---|
154 |
|
---|
155 | #undef SPARC_DEFAULT_CMODEL
|
---|
156 | #define SPARC_DEFAULT_CMODEL CM_MEDANY
|
---|
157 |
|
---|
158 | #endif
|
---|
159 |
|
---|
160 | /* CC1_SPEC for NetBSD/sparc. */
|
---|
161 | #define CC1_SPEC32 \
|
---|
162 | "%{sun4:} %{target:} \
|
---|
163 | %{mcypress:-mcpu=cypress} \
|
---|
164 | %{msparclite:-mcpu=sparclite} %{mf930:-mcpu=f930} %{mf934:-mcpu=f934} \
|
---|
165 | %{mv8:-mcpu=v8} %{msupersparc:-mcpu=supersparc} \
|
---|
166 | %{m32:%{m64:%emay not use both -m32 and -m64}} \
|
---|
167 | %{m64: \
|
---|
168 | -mptr64 -mstack-bias -mno-v8plus -mlong-double-128 \
|
---|
169 | %{!mcpu*: \
|
---|
170 | %{!mcypress: \
|
---|
171 | %{!msparclite: \
|
---|
172 | %{!mf930: \
|
---|
173 | %{!mf934: \
|
---|
174 | %{!mv8*: \
|
---|
175 | %{!msupersparc:-mcpu=ultrasparc}}}}}}} \
|
---|
176 | %{!mno-vis:%{!mcpu=v9:-mvis}} \
|
---|
177 | %{p:-mcmodel=medlow} \
|
---|
178 | %{pg:-mcmodel=medlow}}"
|
---|
179 |
|
---|
180 | #define CC1_SPEC64 \
|
---|
181 | "%{sun4:} %{target:} \
|
---|
182 | %{mcypress:-mcpu=cypress} \
|
---|
183 | %{msparclite:-mcpu=sparclite} %{mf930:-mcpu=f930} %{mf934:-mcpu=f934} \
|
---|
184 | %{mv8:-mcpu=v8} %{msupersparc:-mcpu=supersparc} \
|
---|
185 | %{m32:%{m64:%emay not use both -m32 and -m64}} \
|
---|
186 | %{m32: \
|
---|
187 | -mptr32 -mno-stack-bias \
|
---|
188 | %{!mlong-double-128:-mlong-double-64} \
|
---|
189 | %{!mcpu*: \
|
---|
190 | %{!mcypress: \
|
---|
191 | %{!msparclite: \
|
---|
192 | %{!mf930: \
|
---|
193 | %{!mf934: \
|
---|
194 | %{!mv8*: \
|
---|
195 | %{!msupersparc:-mcpu=cypress}}}}}}}} \
|
---|
196 | %{!m32: \
|
---|
197 | %{p:-mcmodel=medlow} \
|
---|
198 | %{pg:-mcmodel=medlow}}"
|
---|
199 |
|
---|
200 | /* Make sure we use the right output format. Pick a default and then
|
---|
201 | make sure -m32/-m64 switch to the right one. */
|
---|
202 |
|
---|
203 | #define LINK_ARCH32_SPEC \
|
---|
204 | "%-m elf32_sparc \
|
---|
205 | %{assert*} %{R*} %{V} %{v:%{!V:-V}} \
|
---|
206 | %{shared:-shared} \
|
---|
207 | %{!shared: \
|
---|
208 | -dp \
|
---|
209 | %{!nostdlib:%{!r*:%{!e*:-e __start}}} \
|
---|
210 | %{!static: \
|
---|
211 | -dy %{rdynamic:-export-dynamic} \
|
---|
212 | %{!dynamic-linker:-dynamic-linker /usr/libexec/ld.elf_so}} \
|
---|
213 | %{static:-static}}"
|
---|
214 |
|
---|
215 | #define LINK_ARCH64_SPEC \
|
---|
216 | "%-m elf64_sparc \
|
---|
217 | %{assert*} %{R*} %{V} %{v:%{!V:-V}} \
|
---|
218 | %{shared:-shared} \
|
---|
219 | %{!shared: \
|
---|
220 | -dp \
|
---|
221 | %{!nostdlib:%{!r*:%{!e*:-e __start}}} \
|
---|
222 | %{!static: \
|
---|
223 | -dy %{rdynamic:-export-dynamic} \
|
---|
224 | %{!dynamic-linker:-dynamic-linker /usr/libexec/ld.elf_so}} \
|
---|
225 | %{static:-static}}"
|
---|
226 |
|
---|
227 | #define LINK_ARCH_SPEC "\
|
---|
228 | %{m32:%(link_arch32)} \
|
---|
229 | %{m64:%(link_arch64)} \
|
---|
230 | %{!m32:%{!m64:%(link_arch_default)}} \
|
---|
231 | "
|
---|
232 |
|
---|
233 | #if DEFAULT_ARCH32_P
|
---|
234 | #define LINK_ARCH_DEFAULT_SPEC LINK_ARCH32_SPEC
|
---|
235 | #else
|
---|
236 | #define LINK_ARCH_DEFAULT_SPEC LINK_ARCH64_SPEC
|
---|
237 | #endif
|
---|
238 |
|
---|
239 | /* What extra spec entries do we need? */
|
---|
240 | #undef SUBTARGET_EXTRA_SPECS
|
---|
241 | #define SUBTARGET_EXTRA_SPECS \
|
---|
242 | { "link_arch32", LINK_ARCH32_SPEC }, \
|
---|
243 | { "link_arch64", LINK_ARCH64_SPEC }, \
|
---|
244 | { "link_arch_default", LINK_ARCH_DEFAULT_SPEC }, \
|
---|
245 | { "link_arch", LINK_ARCH_SPEC }, \
|
---|
246 | { "cpp_subtarget_spec32", CPP_SUBTARGET_SPEC32 }, \
|
---|
247 | { "cpp_subtarget_spec64", CPP_SUBTARGET_SPEC64 },
|
---|
248 |
|
---|
249 |
|
---|
250 | /* What extra switches do we need? */
|
---|
251 | #undef SUBTARGET_SWITCHES
|
---|
252 | #define SUBTARGET_SWITCHES \
|
---|
253 | {"long-double-64", -MASK_LONG_DOUBLE_128, N_("Use 64 bit long doubles") }, \
|
---|
254 | {"long-double-128", MASK_LONG_DOUBLE_128, N_("Use 128 bit long doubles") },
|
---|
255 |
|
---|
256 |
|
---|
257 | /* Build a compiler that supports -m32 and -m64? */
|
---|
258 |
|
---|
259 | #ifdef SPARC_BI_ARCH
|
---|
260 |
|
---|
261 | #undef LONG_DOUBLE_TYPE_SIZE
|
---|
262 | #define LONG_DOUBLE_TYPE_SIZE (TARGET_LONG_DOUBLE_128 ? 128 : 64)
|
---|
263 |
|
---|
264 | #undef MAX_LONG_DOUBLE_TYPE_SIZE
|
---|
265 | #define MAX_LONG_DOUBLE_TYPE_SIZE 128
|
---|
266 |
|
---|
267 | #if defined(__arch64__) || defined(__LONG_DOUBLE_128__)
|
---|
268 | #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 128
|
---|
269 | #else
|
---|
270 | #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64
|
---|
271 | #endif
|
---|
272 |
|
---|
273 | #undef CC1_SPEC
|
---|
274 | #if DEFAULT_ARCH32_P
|
---|
275 | #define CC1_SPEC CC1_SPEC32
|
---|
276 | #else
|
---|
277 | #define CC1_SPEC CC1_SPEC64
|
---|
278 | #endif
|
---|
279 |
|
---|
280 | #if DEFAULT_ARCH32_P
|
---|
281 | #define MULTILIB_DEFAULTS { "m32" }
|
---|
282 | #else
|
---|
283 | #define MULTILIB_DEFAULTS { "m64" }
|
---|
284 | #endif
|
---|
285 |
|
---|
286 | #undef CPP_SUBTARGET_SPEC
|
---|
287 | #if DEFAULT_ARCH32_P
|
---|
288 | #define CPP_SUBTARGET_SPEC \
|
---|
289 | "%{m64:%(cpp_subtarget_spec64)}%{!m64:%(cpp_subtarget_spec32)}"
|
---|
290 | #else
|
---|
291 | #define CPP_SUBTARGET_SPEC \
|
---|
292 | "%{!m32:%(cpp_subtarget_spec64)}%{m32:%(cpp_subtarget_spec32)}"
|
---|
293 | #endif
|
---|
294 |
|
---|
295 | /* Restore this from sparc/sparc.h, netbsd.h changes it. */
|
---|
296 | #undef CPP_SPEC
|
---|
297 | #define CPP_SPEC "%(cpp_cpu) %(cpp_arch) %(cpp_endian) %(cpp_subtarget)"
|
---|
298 |
|
---|
299 | /* Name the port. */
|
---|
300 | #undef TARGET_NAME
|
---|
301 | #define TARGET_NAME (DEFAULT_ARCH32_P ? TARGET_NAME32 : TARGET_NAME64)
|
---|
302 |
|
---|
303 | #else /* SPARC_BI_ARCH */
|
---|
304 |
|
---|
305 | #if TARGET_CPU_DEFAULT == TARGET_CPU_v9 \
|
---|
306 | || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc
|
---|
307 |
|
---|
308 | #undef LONG_DOUBLE_TYPE_SIZE
|
---|
309 | #define LONG_DOUBLE_TYPE_SIZE 128
|
---|
310 |
|
---|
311 | #undef MAX_LONG_DOUBLE_TYPE_SIZE
|
---|
312 | #define MAX_LONG_DOUBLE_TYPE_SIZE 128
|
---|
313 |
|
---|
314 | #undef LIBGCC2_LONG_DOUBLE_TYPE_SIZE
|
---|
315 | #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 128
|
---|
316 |
|
---|
317 | #undef CC1_SPEC
|
---|
318 | #define CC1_SPEC CC1_SPEC64
|
---|
319 |
|
---|
320 | #undef CPP_SUBTARGET_SPEC
|
---|
321 | #define CPP_SUBTARGET_SPEC CPP_SUBTARGET_SPEC64
|
---|
322 |
|
---|
323 | #undef TARGET_NAME
|
---|
324 | #define TARGET_NAME TARGET_NAME64
|
---|
325 |
|
---|
326 | #else /* TARGET_CPU_DEFAULT == TARGET_CPU_v9 \
|
---|
327 | || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc */
|
---|
328 |
|
---|
329 | /* A 32-bit only compiler. NetBSD don't support 128 bit `long double'
|
---|
330 | for 32-bit code, unlike Solaris. */
|
---|
331 |
|
---|
332 | #undef LONG_DOUBLE_TYPE_SIZE
|
---|
333 | #define LONG_DOUBLE_TYPE_SIZE 64
|
---|
334 |
|
---|
335 | #undef MAX_LONG_DOUBLE_TYPE_SIZE
|
---|
336 | #define MAX_LONG_DOUBLE_TYPE_SIZE 64
|
---|
337 |
|
---|
338 | #undef LIBGCC2_LONG_DOUBLE_TYPE_SIZE
|
---|
339 | #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE 64
|
---|
340 |
|
---|
341 | #undef CPP_SUBTARGET_SPEC
|
---|
342 | #define CPP_SUBTARGET_SPEC CPP_SUBTARGET_SPEC32
|
---|
343 |
|
---|
344 | #undef CC1_SPEC
|
---|
345 | #define CC1_SPEC CC1_SPEC32
|
---|
346 |
|
---|
347 | #undef TARGET_NAME
|
---|
348 | #define TARGET_NAME TARGET_NAME32
|
---|
349 |
|
---|
350 | #endif /* TARGET_CPU_DEFAULT == TARGET_CPU_v9 \
|
---|
351 | || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc */
|
---|
352 |
|
---|
353 | #endif /* SPARC_BI_ARCH */
|
---|
354 |
|
---|
355 | /* We use GNU ld so undefine this so that attribute((init_priority)) works. */
|
---|
356 | #undef CTORS_SECTION_ASM_OP
|
---|
357 | #undef DTORS_SECTION_ASM_OP
|
---|