]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/config/sparc/sparc.h
Update copyright years.
[thirdparty/gcc.git] / gcc / config / sparc / sparc.h
CommitLineData
1bb87f28 1/* Definitions of target machine for GNU compiler, for Sun SPARC.
a5544970 2 Copyright (C) 1987-2019 Free Software Foundation, Inc.
1bb87f28 3 Contributed by Michael Tiemann (tiemann@cygnus.com).
3e2cc1d1 4 64-bit SPARC-V9 support by Michael Tiemann, Jim Wilson, and Doug Evans,
7a6cf439 5 at Cygnus Support.
1bb87f28 6
7ec022b2 7This file is part of GCC.
1bb87f28 8
7ec022b2 9GCC is free software; you can redistribute it and/or modify
1bb87f28 10it under the terms of the GNU General Public License as published by
2f83c7d6 11the Free Software Foundation; either version 3, or (at your option)
1bb87f28
JW
12any later version.
13
7ec022b2 14GCC is distributed in the hope that it will be useful,
1bb87f28
JW
15but WITHOUT ANY WARRANTY; without even the implied warranty of
16MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17GNU General Public License for more details.
18
19You should have received a copy of the GNU General Public License
2f83c7d6
NC
20along with GCC; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
1bb87f28 22
1910440e
RS
23#include "config/vxworks-dummy.h"
24
1bb87f28 25/* Note that some other tm.h files include this one and then override
a0a301fc
DE
26 whatever definitions are necessary. */
27
8d12174d 28#define TARGET_CPU_CPP_BUILTINS() sparc_target_macros ()
9b8466f4 29
b4c522fa
IB
30/* Target CPU versions for D. */
31#define TARGET_D_CPU_VERSIONS sparc_d_target_versions
32
a0a301fc
DE
33/* Specify this in a cover file to provide bi-architecture (32/64) support. */
34/* #define SPARC_BI_ARCH */
35
36/* Macro used later in this file to determine default architecture. */
37#define DEFAULT_ARCH32_P ((TARGET_DEFAULT & MASK_64BIT) == 0)
7a6cf439 38
a0a301fc
DE
39/* TARGET_ARCH{32,64} are the main macros to decide which of the two
40 architectures to compile for. We allow targets to choose compile time or
41 runtime selection. */
959eb758 42#ifdef IN_LIBGCC2
afdac905 43#if defined(__sparcv9) || defined(__arch64__)
959eb758
DM
44#define TARGET_ARCH32 0
45#else
46#define TARGET_ARCH32 1
afdac905 47#endif /* sparc64 */
959eb758 48#else
53f4a9f6 49#ifdef SPARC_BI_ARCH
7c7dae65 50#define TARGET_ARCH32 (!TARGET_64BIT)
a0a301fc
DE
51#else
52#define TARGET_ARCH32 (DEFAULT_ARCH32_P)
959eb758 53#endif /* SPARC_BI_ARCH */
53f4a9f6 54#endif /* IN_LIBGCC2 */
7c7dae65 55#define TARGET_ARCH64 (!TARGET_ARCH32)
a0a301fc 56
ed38d6fe
EB
57/* Code model selection in 64-bit environment.
58
59 The machine mode used for addresses is 32-bit wide:
60
61 TARGET_CM_32: 32-bit address space.
62 It is the code model used when generating 32-bit code.
63
64 The machine mode used for addresses is 64-bit wide:
65
66 TARGET_CM_MEDLOW: 32-bit address space.
67 The executable must be in the low 32 bits of memory.
68 This avoids generating %uhi and %ulo terms. Programs
69 can be statically or dynamically linked.
70
71 TARGET_CM_MEDMID: 44-bit address space.
72 The executable must be in the low 44 bits of memory,
73 and the %[hml]44 terms are used. The text and data
74 segments have a maximum size of 2GB (31-bit span).
75 The maximum offset from any instruction to the label
76 _GLOBAL_OFFSET_TABLE_ is 2GB (31-bit span).
77
78 TARGET_CM_MEDANY: 64-bit address space.
79 The text and data segments have a maximum size of 2GB
80 (31-bit span) and may be located anywhere in memory.
81 The maximum offset from any instruction to the label
82 _GLOBAL_OFFSET_TABLE_ is 2GB (31-bit span).
83
84 TARGET_CM_EMBMEDANY: 64-bit address space.
85 The text and data segments have a maximum size of 2GB
86 (31-bit span) and may be located anywhere in memory.
87 The global register %g4 contains the start address of
88 the data segment. Programs are statically linked and
89 PIC is not supported.
90
91 Different code models are not supported in 32-bit environment. */
a0a301fc
DE
92
93enum cmodel {
94 CM_32,
95 CM_MEDLOW,
96 CM_MEDMID,
97 CM_MEDANY,
98 CM_EMBMEDANY
99};
100
a0a301fc
DE
101/* One of CM_FOO. */
102extern enum cmodel sparc_cmodel;
103
104/* V9 code model selection. */
105#define TARGET_CM_MEDLOW (sparc_cmodel == CM_MEDLOW)
106#define TARGET_CM_MEDMID (sparc_cmodel == CM_MEDMID)
107#define TARGET_CM_MEDANY (sparc_cmodel == CM_MEDANY)
108#define TARGET_CM_EMBMEDANY (sparc_cmodel == CM_EMBMEDANY)
109
a330e73b 110#define SPARC_DEFAULT_CMODEL CM_32
6f64bf5f 111
5e77eb53
EB
112/* Do not use the .note.GNU-stack convention by default. */
113#define NEED_INDICATE_EXEC_STACK 0
114
a0a301fc
DE
115/* This is call-clobbered in the normal ABI, but is reserved in the
116 home grown (aka upward compatible) embedded ABI. */
117#define EMBMEDANY_BASE_REG "%g4"
118\f
119/* Values of TARGET_CPU_DEFAULT, set via -D in the Makefile,
120 and specified by the user via --with-cpu=foo.
121 This specifies the cpu implementation, not the architecture size. */
3aabf9a5 122/* Note that TARGET_CPU_v9 is assumed to start the list of 64-bit
8947065c 123 capable cpu's. */
2163f11b 124#define TARGET_CPU_sparc 0
07981468
KE
125#define TARGET_CPU_v7 0 /* alias */
126#define TARGET_CPU_cypress 0 /* alias */
127#define TARGET_CPU_v8 1 /* generic v8 implementation */
128#define TARGET_CPU_supersparc 2
129#define TARGET_CPU_hypersparc 3
130#define TARGET_CPU_leon 4
38ae58ca 131#define TARGET_CPU_leon3 5
d81230b5
DH
132#define TARGET_CPU_leon3v7 6
133#define TARGET_CPU_sparclite 7
134#define TARGET_CPU_f930 7 /* alias */
135#define TARGET_CPU_f934 7 /* alias */
136#define TARGET_CPU_sparclite86x 8
137#define TARGET_CPU_sparclet 9
138#define TARGET_CPU_tsc701 9 /* alias */
139#define TARGET_CPU_v9 10 /* generic v9 implementation */
140#define TARGET_CPU_sparcv9 10 /* alias */
141#define TARGET_CPU_sparc64 10 /* alias */
142#define TARGET_CPU_ultrasparc 11
143#define TARGET_CPU_ultrasparc3 12
144#define TARGET_CPU_niagara 13
145#define TARGET_CPU_niagara2 14
146#define TARGET_CPU_niagara3 15
147#define TARGET_CPU_niagara4 16
690f24b7 148#define TARGET_CPU_niagara7 19
bcc3c3f1 149#define TARGET_CPU_m8 20
bafb031b 150
8947065c 151#if TARGET_CPU_DEFAULT == TARGET_CPU_v9 \
fae15c93 152 || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc \
4c837a1e 153 || TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc3 \
9eeaed6e 154 || TARGET_CPU_DEFAULT == TARGET_CPU_niagara \
3e64c239
DM
155 || TARGET_CPU_DEFAULT == TARGET_CPU_niagara2 \
156 || TARGET_CPU_DEFAULT == TARGET_CPU_niagara3 \
690f24b7 157 || TARGET_CPU_DEFAULT == TARGET_CPU_niagara4 \
bcc3c3f1
JM
158 || TARGET_CPU_DEFAULT == TARGET_CPU_niagara7 \
159 || TARGET_CPU_DEFAULT == TARGET_CPU_m8
345a6161
DM
160
161#define CPP_CPU32_DEFAULT_SPEC ""
162#define ASM_CPU32_DEFAULT_SPEC ""
163
a0a301fc 164#if TARGET_CPU_DEFAULT == TARGET_CPU_v9
bafb031b 165/* ??? What does Sun's CC pass? */
345a6161 166#define CPP_CPU64_DEFAULT_SPEC "-D__sparc_v9__"
bafb031b
DE
167/* ??? It's not clear how other assemblers will handle this, so by default
168 use GAS. Sun's Solaris assembler recognizes -xarch=v8plus, but this case
169 is handled in sol2.h. */
345a6161 170#define ASM_CPU64_DEFAULT_SPEC "-Av9"
bafb031b 171#endif
a0a301fc 172#if TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc
345a6161
DM
173#define CPP_CPU64_DEFAULT_SPEC "-D__sparc_v9__"
174#define ASM_CPU64_DEFAULT_SPEC "-Av9a"
175#endif
fae15c93
VM
176#if TARGET_CPU_DEFAULT == TARGET_CPU_ultrasparc3
177#define CPP_CPU64_DEFAULT_SPEC "-D__sparc_v9__"
178#define ASM_CPU64_DEFAULT_SPEC "-Av9b"
179#endif
4c837a1e
DM
180#if TARGET_CPU_DEFAULT == TARGET_CPU_niagara
181#define CPP_CPU64_DEFAULT_SPEC "-D__sparc_v9__"
182#define ASM_CPU64_DEFAULT_SPEC "-Av9b"
183#endif
9eeaed6e
DM
184#if TARGET_CPU_DEFAULT == TARGET_CPU_niagara2
185#define CPP_CPU64_DEFAULT_SPEC "-D__sparc_v9__"
186#define ASM_CPU64_DEFAULT_SPEC "-Av9b"
187#endif
3e64c239
DM
188#if TARGET_CPU_DEFAULT == TARGET_CPU_niagara3
189#define CPP_CPU64_DEFAULT_SPEC "-D__sparc_v9__"
e8b141b5 190#define ASM_CPU64_DEFAULT_SPEC "-Av9" AS_NIAGARA3_FLAG
3e64c239
DM
191#endif
192#if TARGET_CPU_DEFAULT == TARGET_CPU_niagara4
193#define CPP_CPU64_DEFAULT_SPEC "-D__sparc_v9__"
8b98b5fd 194#define ASM_CPU64_DEFAULT_SPEC AS_NIAGARA4_FLAG
3e64c239 195#endif
690f24b7
JM
196#if TARGET_CPU_DEFAULT == TARGET_CPU_niagara7
197#define CPP_CPU64_DEFAULT_SPEC "-D__sparc_v9__"
198#define ASM_CPU64_DEFAULT_SPEC AS_NIAGARA7_FLAG
199#endif
bcc3c3f1
JM
200#if TARGET_CPU_DEFAULT == TARGET_CPU_m8
201#define CPP_CPU64_DEFAULT_SPEC "-D__sparc_v9__"
202#define ASM_CPU64_DEFAULT_SPEC AS_M8_FLAG
203#endif
345a6161
DM
204
205#else
206
207#define CPP_CPU64_DEFAULT_SPEC ""
208#define ASM_CPU64_DEFAULT_SPEC ""
209
8947065c
RH
210#if TARGET_CPU_DEFAULT == TARGET_CPU_sparc \
211 || TARGET_CPU_DEFAULT == TARGET_CPU_v8
345a6161
DM
212#define CPP_CPU32_DEFAULT_SPEC ""
213#define ASM_CPU32_DEFAULT_SPEC ""
214#endif
8947065c 215
345a6161
DM
216#if TARGET_CPU_DEFAULT == TARGET_CPU_sparclet
217#define CPP_CPU32_DEFAULT_SPEC "-D__sparclet__"
218#define ASM_CPU32_DEFAULT_SPEC "-Asparclet"
bafb031b 219#endif
8947065c 220
345a6161
DM
221#if TARGET_CPU_DEFAULT == TARGET_CPU_sparclite
222#define CPP_CPU32_DEFAULT_SPEC "-D__sparclite__"
223#define ASM_CPU32_DEFAULT_SPEC "-Asparclite"
224#endif
225
07981468
KE
226#if TARGET_CPU_DEFAULT == TARGET_CPU_sparclite86x
227#define CPP_CPU32_DEFAULT_SPEC "-D__sparclite86x__"
228#define ASM_CPU32_DEFAULT_SPEC "-Asparclite"
229#endif
230
8947065c
RH
231#if TARGET_CPU_DEFAULT == TARGET_CPU_supersparc
232#define CPP_CPU32_DEFAULT_SPEC "-D__supersparc__ -D__sparc_v8__"
233#define ASM_CPU32_DEFAULT_SPEC ""
234#endif
235
236#if TARGET_CPU_DEFAULT == TARGET_CPU_hypersparc
237#define CPP_CPU32_DEFAULT_SPEC "-D__hypersparc__ -D__sparc_v8__"
238#define ASM_CPU32_DEFAULT_SPEC ""
239#endif
240
38ae58ca
EB
241#if TARGET_CPU_DEFAULT == TARGET_CPU_leon \
242 || TARGET_CPU_DEFAULT == TARGET_CPU_leon3
07981468 243#define CPP_CPU32_DEFAULT_SPEC "-D__leon__ -D__sparc_v8__"
1f65ae7a 244#define ASM_CPU32_DEFAULT_SPEC AS_LEON_FLAG
8947065c
RH
245#endif
246
d81230b5
DH
247#if TARGET_CPU_DEFAULT == TARGET_CPU_leon3v7
248#define CPP_CPU32_DEFAULT_SPEC "-D__leon__"
249#define ASM_CPU32_DEFAULT_SPEC AS_LEONV7_FLAG
250#endif
251
345a6161
DM
252#endif
253
254#if !defined(CPP_CPU32_DEFAULT_SPEC) || !defined(CPP_CPU64_DEFAULT_SPEC)
3aabf9a5 255 #error Unrecognized value in TARGET_CPU_DEFAULT.
bafb031b
DE
256#endif
257
345a6161
DM
258#ifdef SPARC_BI_ARCH
259
260#define CPP_CPU_DEFAULT_SPEC \
261(DEFAULT_ARCH32_P ? "\
262%{m64:" CPP_CPU64_DEFAULT_SPEC "} \
263%{!m64:" CPP_CPU32_DEFAULT_SPEC "} \
264" : "\
265%{m32:" CPP_CPU32_DEFAULT_SPEC "} \
266%{!m32:" CPP_CPU64_DEFAULT_SPEC "} \
267")
268#define ASM_CPU_DEFAULT_SPEC \
269(DEFAULT_ARCH32_P ? "\
270%{m64:" ASM_CPU64_DEFAULT_SPEC "} \
271%{!m64:" ASM_CPU32_DEFAULT_SPEC "} \
272" : "\
273%{m32:" ASM_CPU32_DEFAULT_SPEC "} \
274%{!m32:" ASM_CPU64_DEFAULT_SPEC "} \
275")
276
277#else /* !SPARC_BI_ARCH */
278
279#define CPP_CPU_DEFAULT_SPEC (DEFAULT_ARCH32_P ? CPP_CPU32_DEFAULT_SPEC : CPP_CPU64_DEFAULT_SPEC)
280#define ASM_CPU_DEFAULT_SPEC (DEFAULT_ARCH32_P ? ASM_CPU32_DEFAULT_SPEC : ASM_CPU64_DEFAULT_SPEC)
281
282#endif /* !SPARC_BI_ARCH */
283
885d8175 284/* Define macros to distinguish architectures. */
857458c4 285
bafb031b
DE
286/* Common CPP definitions used by CPP_SPEC amongst the various targets
287 for handling -mcpu=xxx switches. */
288#define CPP_CPU_SPEC "\
9b7c06d2 289%{mcpu=sparclet:-D__sparclet__} %{mcpu=tsc701:-D__sparclet__} \
bafb031b
DE
290%{mcpu=sparclite:-D__sparclite__} \
291%{mcpu=f930:-D__sparclite__} %{mcpu=f934:-D__sparclite__} \
07981468 292%{mcpu=sparclite86x:-D__sparclite86x__} \
bafb031b
DE
293%{mcpu=v8:-D__sparc_v8__} \
294%{mcpu=supersparc:-D__supersparc__ -D__sparc_v8__} \
8947065c 295%{mcpu=hypersparc:-D__hypersparc__ -D__sparc_v8__} \
07981468 296%{mcpu=leon:-D__leon__ -D__sparc_v8__} \
38ae58ca 297%{mcpu=leon3:-D__leon__ -D__sparc_v8__} \
d81230b5 298%{mcpu=leon3v7:-D__leon__} \
bafb031b
DE
299%{mcpu=v9:-D__sparc_v9__} \
300%{mcpu=ultrasparc:-D__sparc_v9__} \
fae15c93 301%{mcpu=ultrasparc3:-D__sparc_v9__} \
4c837a1e 302%{mcpu=niagara:-D__sparc_v9__} \
9eeaed6e 303%{mcpu=niagara2:-D__sparc_v9__} \
3e64c239
DM
304%{mcpu=niagara3:-D__sparc_v9__} \
305%{mcpu=niagara4:-D__sparc_v9__} \
690f24b7 306%{mcpu=niagara7:-D__sparc_v9__} \
bcc3c3f1 307%{mcpu=m8:-D__sparc_v9__} \
3a7b4385 308%{!mcpu*:%(cpp_cpu_default)} \
7a6cf439 309"
9b8466f4
NB
310#define CPP_ARCH32_SPEC ""
311#define CPP_ARCH64_SPEC "-D__arch64__"
345a6161 312
a0a301fc
DE
313#define CPP_ARCH_DEFAULT_SPEC \
314(DEFAULT_ARCH32_P ? CPP_ARCH32_SPEC : CPP_ARCH64_SPEC)
315
316#define CPP_ARCH_SPEC "\
317%{m32:%(cpp_arch32)} \
318%{m64:%(cpp_arch64)} \
319%{!m32:%{!m64:%(cpp_arch_default)}} \
320"
321
b11b0904
EB
322/* Macros to distinguish the endianness, window model and FP support. */
323#define CPP_OTHER_SPEC "\
b11b0904
EB
324%{mflat:-D_FLAT} \
325%{msoft-float:-D_SOFT_FLOAT} \
326"
a0a301fc
DE
327
328/* Macros to distinguish the particular subtarget. */
329#define CPP_SUBTARGET_SPEC ""
330
b11b0904
EB
331#define CPP_SPEC \
332 "%(cpp_cpu) %(cpp_arch) %(cpp_endian) %(cpp_other) %(cpp_subtarget)"
a0a301fc 333
b1fc14e5
RS
334/* This used to translate -dalign to -malign, but that is no good
335 because it can't turn off the usual meaning of making debugging dumps. */
bafb031b 336
f2060fbe 337#define CC1_SPEC ""
bafb031b 338
bafb031b
DE
339/* Override in target specific files. */
340#define ASM_CPU_SPEC "\
9b7c06d2 341%{mcpu=sparclet:-Asparclet} %{mcpu=tsc701:-Asparclet} \
bafb031b 342%{mcpu=sparclite:-Asparclite} \
8d72ec32 343%{mcpu=sparclite86x:-Asparclite} \
bafb031b 344%{mcpu=f930:-Asparclite} %{mcpu=f934:-Asparclite} \
a5c037e2 345%{mcpu=v8:-Av8} \
89deeb3b
DM
346%{mcpu=supersparc:-Av8} \
347%{mcpu=hypersparc:-Av8} \
1f65ae7a
EB
348%{mcpu=leon:" AS_LEON_FLAG "} \
349%{mcpu=leon3:" AS_LEON_FLAG "} \
d81230b5 350%{mcpu=leon3v7:" AS_LEONV7_FLAG "} \
284d86e9 351%{mv8plus:-Av8plus} \
bafb031b 352%{mcpu=v9:-Av9} \
284d86e9 353%{mcpu=ultrasparc:%{!mv8plus:-Av9a}} \
fae15c93 354%{mcpu=ultrasparc3:%{!mv8plus:-Av9b}} \
4c837a1e 355%{mcpu=niagara:%{!mv8plus:-Av9b}} \
9eeaed6e 356%{mcpu=niagara2:%{!mv8plus:-Av9b}} \
e8b141b5 357%{mcpu=niagara3:%{!mv8plus:-Av9" AS_NIAGARA3_FLAG "}} \
8b98b5fd 358%{mcpu=niagara4:%{!mv8plus:" AS_NIAGARA4_FLAG "}} \
690f24b7 359%{mcpu=niagara7:%{!mv8plus:" AS_NIAGARA7_FLAG "}} \
bcc3c3f1 360%{mcpu=m8:%{!mv8plus:" AS_M8_FLAG "}} \
3a7b4385 361%{!mcpu*:%(asm_cpu_default)} \
bafb031b
DE
362"
363
e632a26c
DE
364/* Word size selection, among other things.
365 This is what GAS uses. Add %(asm_arch) to ASM_SPEC to enable. */
366
a0a301fc 367#define ASM_ARCH32_SPEC "-32"
6149cebb 368#define ASM_ARCH64_SPEC "-64 -no-undeclared-regs"
a0a301fc 369#define ASM_ARCH_DEFAULT_SPEC \
e632a26c 370(DEFAULT_ARCH32_P ? ASM_ARCH32_SPEC : ASM_ARCH64_SPEC)
a0a301fc
DE
371
372#define ASM_ARCH_SPEC "\
373%{m32:%(asm_arch32)} \
374%{m64:%(asm_arch64)} \
375%{!m32:%{!m64:%(asm_arch_default)}} \
376"
377
e95b1e6a
JJ
378#ifdef HAVE_AS_RELAX_OPTION
379#define ASM_RELAX_SPEC "%{!mno-relax:-relax}"
380#else
381#define ASM_RELAX_SPEC ""
382#endif
383
a0a301fc
DE
384/* Special flags to the Sun-4 assembler when using pipe for input. */
385
386#define ASM_SPEC "\
428b3812 387%{!pg:%{!p:%{" FPIE_OR_FPIC_SPEC ":-k}}} %{keep-local-as-symbols:-L} \
e95b1e6a 388%(asm_cpu) %(asm_relax)"
a0a301fc 389
bafb031b
DE
390/* This macro defines names of additional specifications to put in the specs
391 that can be used in various specifications like CC1_SPEC. Its definition
392 is an initializer with a subgrouping for each command option.
393
394 Each subgrouping contains a string constant, that defines the
7ec022b2 395 specification name, and a string constant that used by the GCC driver
bafb031b
DE
396 program.
397
398 Do not define this macro if it does not need to do anything. */
1bb87f28 399
a0a301fc 400#define EXTRA_SPECS \
829245be
KG
401 { "cpp_cpu", CPP_CPU_SPEC }, \
402 { "cpp_cpu_default", CPP_CPU_DEFAULT_SPEC }, \
403 { "cpp_arch32", CPP_ARCH32_SPEC }, \
404 { "cpp_arch64", CPP_ARCH64_SPEC }, \
405 { "cpp_arch_default", CPP_ARCH_DEFAULT_SPEC },\
406 { "cpp_arch", CPP_ARCH_SPEC }, \
b11b0904 407 { "cpp_other", CPP_OTHER_SPEC }, \
829245be
KG
408 { "cpp_subtarget", CPP_SUBTARGET_SPEC }, \
409 { "asm_cpu", ASM_CPU_SPEC }, \
410 { "asm_cpu_default", ASM_CPU_DEFAULT_SPEC }, \
411 { "asm_arch32", ASM_ARCH32_SPEC }, \
412 { "asm_arch64", ASM_ARCH64_SPEC }, \
e95b1e6a 413 { "asm_relax", ASM_RELAX_SPEC }, \
829245be
KG
414 { "asm_arch_default", ASM_ARCH_DEFAULT_SPEC },\
415 { "asm_arch", ASM_ARCH_SPEC }, \
bafb031b 416 SUBTARGET_EXTRA_SPECS
1bb87f28 417
bafb031b 418#define SUBTARGET_EXTRA_SPECS
bbd7687d
DM
419
420/* Because libgcc can generate references back to libc (via .umul etc.) we have
421 to list libc again after the second libgcc. */
f37866e8 422#define LINK_GCC_C_SEQUENCE_SPEC "%G %{!nolibc:%L} %G %{!nolibc:%L}"
bbd7687d 423
bafb031b 424\f
82d6b402
RH
425#define PTRDIFF_TYPE (TARGET_ARCH64 ? "long int" : "int")
426#define SIZE_TYPE (TARGET_ARCH64 ? "long unsigned int" : "unsigned int")
7a6cf439
DE
427
428/* ??? This should be 32 bits for v9 but what can we do? */
1bb87f28
JW
429#define WCHAR_TYPE "short unsigned int"
430#define WCHAR_TYPE_SIZE 16
7a6cf439 431\f
bafb031b 432/* Mask of all CPU selection flags. */
938a807a
EB
433#define MASK_ISA \
434 (MASK_SPARCLITE + MASK_SPARCLET + MASK_LEON + MASK_LEON3 \
aa47faf0 435 + MASK_V8 + MASK_V9 + MASK_DEPRECATED_V8_INSNS)
6f64bf5f 436
938a807a
EB
437/* Mask of all CPU feature flags. */
438#define MASK_FEATURES \
439 (MASK_FPU + MASK_HARD_QUAD + MASK_VIS + MASK_VIS2 + MASK_VIS3 \
867ba4b9
SH
440 + MASK_VIS4 + MASK_CBCOND + MASK_FMAF + MASK_FSMULD \
441 + MASK_POPC + MASK_SUBXC)
938a807a 442
aa47faf0
EB
443/* TARGET_HARD_MUL: Use 32-bit hardware multiply instructions but not %y. */
444#define TARGET_HARD_MUL \
445 (TARGET_SPARCLITE || TARGET_SPARCLET \
446 || TARGET_V8 || TARGET_DEPRECATED_V8_INSNS)
bfd6bc60 447
aa47faf0
EB
448/* TARGET_HARD_MUL32: Use 32-bit hardware multiply instructions with %y
449 to get high 32 bits. False in 64-bit or V8+ because multiply stores
450 a 64-bit result in a register. */
451#define TARGET_HARD_MUL32 \
452 (TARGET_HARD_MUL && TARGET_ARCH32 && !TARGET_V8PLUS)
bfd6bc60 453
bafb031b
DE
454/* MASK_APP_REGS must always be the default because that's what
455 FIXED_REGISTERS is set to and -ffixed- is processed before
5efd84c5
NF
456 TARGET_CONDITIONAL_REGISTER_USAGE is called (where we process
457 -mno-app-regs). */
33074e5f 458#define TARGET_DEFAULT (MASK_APP_REGS + MASK_FPU)
84ab3bfb 459
6afca97d
DE
460/* Recast the cpu class to be the cpu attribute.
461 Every file includes us, but not every file includes insn-attr.h. */
462#define sparc_cpu_attr ((enum attr_cpu) sparc_cpu)
bafb031b 463
7816bea0
DJ
464/* Support for a compile-time default CPU, et cetera. The rules are:
465 --with-cpu is ignored if -mcpu is specified.
466 --with-tune is ignored if -mtune is specified.
467 --with-float is ignored if -mhard-float, -msoft-float, -mfpu, or -mno-fpu
468 are specified. */
469#define OPTION_DEFAULT_SPECS \
470 {"cpu", "%{!mcpu=*:-mcpu=%(VALUE)}" }, \
471 {"tune", "%{!mtune=*:-mtune=%(VALUE)}" }, \
c6869789 472 {"float", "%{!msoft-float:%{!mhard-float:%{!mfpu:%{!mno-fpu:-m%(VALUE)-float}}}}" }
7a6cf439
DE
473\f
474/* target machine storage layout */
475
1bb87f28
JW
476/* Define this if most significant bit is lowest numbered
477 in instructions that operate on numbered bit-fields. */
478#define BITS_BIG_ENDIAN 1
479
480/* Define this if most significant byte of a word is the lowest numbered. */
1bb87f28
JW
481#define BYTES_BIG_ENDIAN 1
482
483/* Define this if most significant word of a multiword number is the lowest
484 numbered. */
1bb87f28
JW
485#define WORDS_BIG_ENDIAN 1
486
7a6cf439 487#define MAX_BITS_PER_WORD 64
1bb87f28
JW
488
489/* Width of a word, in units (bytes). */
6f64bf5f 490#define UNITS_PER_WORD (TARGET_ARCH64 ? 8 : 4)
8b156b3e
JJ
491#ifdef IN_LIBGCC2
492#define MIN_UNITS_PER_WORD UNITS_PER_WORD
493#else
ef0e53ce 494#define MIN_UNITS_PER_WORD 4
8b156b3e 495#endif
7a6cf439
DE
496
497/* Now define the sizes of the C data types. */
7a6cf439 498#define SHORT_TYPE_SIZE 16
a0a301fc
DE
499#define INT_TYPE_SIZE 32
500#define LONG_TYPE_SIZE (TARGET_ARCH64 ? 64 : 32)
7a6cf439
DE
501#define LONG_LONG_TYPE_SIZE 64
502#define FLOAT_TYPE_SIZE 32
503#define DOUBLE_TYPE_SIZE 64
a2cd689a 504
9e1395f1
JM
505/* LONG_DOUBLE_TYPE_SIZE is defined per OS even though the
506 SPARC ABI says that it is 128-bit wide. */
507/* #define LONG_DOUBLE_TYPE_SIZE 128 */
1bb87f28 508
a2cd689a
EB
509/* The widest floating-point format really supported by the hardware. */
510#define WIDEST_HARDWARE_FP_SIZE 64
511
baa48dfa 512/* Width in bits of a pointer. This is the size of ptr_mode. */
7a6cf439 513#define POINTER_SIZE (TARGET_PTR64 ? 64 : 32)
1bb87f28 514
baa48dfa
PB
515/* This is the machine mode used for addresses. */
516#define Pmode (TARGET_ARCH64 ? DImode : SImode)
517
3276910d
RK
518/* If we have to extend pointers (only when TARGET_ARCH64 and not
519 TARGET_PTR64), we want to do it unsigned. This macro does nothing
520 if ptr_mode and Pmode are the same. */
521#define POINTERS_EXTEND_UNSIGNED 1
522
1bb87f28 523/* Allocation boundary (in *bits*) for storing arguments in argument list. */
6f64bf5f 524#define PARM_BOUNDARY (TARGET_ARCH64 ? 64 : 32)
1bb87f28
JW
525
526/* Boundary (in *bits*) on which stack pointer should be aligned. */
a594a19c 527/* FIXME, this is wrong when TARGET_ARCH64 and TARGET_STACK_BIAS, because
2358ff91 528 then %sp+2047 is 128-bit aligned so %sp is really only byte-aligned. */
6f64bf5f 529#define STACK_BOUNDARY (TARGET_ARCH64 ? 128 : 64)
eaac029f 530
2358ff91 531/* Temporary hack until the FIXME above is fixed. */
a594a19c 532#define SPARC_STACK_BOUNDARY_HACK (TARGET_ARCH64 && TARGET_STACK_BIAS)
1bb87f28 533
10d1b70f 534/* ALIGN FRAMES on double word boundaries */
63b8ef40 535#define SPARC_STACK_ALIGN(LOC) ROUND_UP ((LOC), UNITS_PER_WORD * 2)
10d1b70f 536
1bb87f28 537/* Allocation boundary (in *bits*) for the code of a function. */
efa3896a 538#define FUNCTION_BOUNDARY 32
1bb87f28
JW
539
540/* Alignment of field after `int : 0' in a structure. */
6f64bf5f 541#define EMPTY_FIELD_BOUNDARY (TARGET_ARCH64 ? 64 : 32)
1bb87f28
JW
542
543/* Every structure's size must be a multiple of this. */
544#define STRUCTURE_SIZE_BOUNDARY 8
545
43a88a8c 546/* A bit-field declared as `int' forces `int' alignment for the struct. */
1bb87f28
JW
547#define PCC_BITFIELD_TYPE_MATTERS 1
548
549/* No data type wants to be aligned rounder than this. */
6f64bf5f 550#define BIGGEST_ALIGNMENT (TARGET_ARCH64 ? 128 : 64)
1bb87f28 551
77a02b01
JW
552/* The best alignment to use in cases where we have a choice. */
553#define FASTEST_ALIGNMENT 64
554
c219ddf7
BK
555/* Define this macro as an expression for the alignment of a structure
556 (given by STRUCT as a tree node) if the alignment computed in the
557 usual way is COMPUTED and the alignment explicitly specified was
558 SPECIFIED.
559
560 The default is to use SPECIFIED if it is larger; otherwise, use
561 the smaller of COMPUTED and `BIGGEST_ALIGNMENT' */
562#define ROUND_TYPE_ALIGN(STRUCT, COMPUTED, SPECIFIED) \
563 (TARGET_FASTER_STRUCTS ? \
564 ((TREE_CODE (STRUCT) == RECORD_TYPE \
565 || TREE_CODE (STRUCT) == UNION_TYPE \
566 || TREE_CODE (STRUCT) == QUAL_UNION_TYPE) \
567 && TYPE_FIELDS (STRUCT) != 0 \
568 ? MAX (MAX ((COMPUTED), (SPECIFIED)), BIGGEST_ALIGNMENT) \
569 : MAX ((COMPUTED), (SPECIFIED))) \
570 : MAX ((COMPUTED), (SPECIFIED)))
571
59e08d4f
EB
572/* An integer expression for the size in bits of the largest integer machine
573 mode that should actually be used. We allow pairs of registers. */
574#define MAX_FIXED_MODE_SIZE GET_MODE_BITSIZE (TARGET_ARCH64 ? TImode : DImode)
575
0a222ba7
EB
576/* We need 2 words, so we can save the stack pointer and the return register
577 of the function containing a non-local goto target. */
578#define STACK_SAVEAREA_MODE(LEVEL) \
579 ((LEVEL) == SAVE_NONLOCAL ? (TARGET_ARCH64 ? TImode : DImode) : Pmode)
580
1bb87f28
JW
581/* Make arrays of chars word-aligned for the same reasons. */
582#define DATA_ALIGNMENT(TYPE, ALIGN) \
583 (TREE_CODE (TYPE) == ARRAY_TYPE \
584 && TYPE_MODE (TREE_TYPE (TYPE)) == QImode \
77a02b01 585 && (ALIGN) < FASTEST_ALIGNMENT ? FASTEST_ALIGNMENT : (ALIGN))
1bb87f28 586
9eb061d7
AL
587/* Make local arrays of chars word-aligned for the same reasons. */
588#define LOCAL_ALIGNMENT(TYPE, ALIGN) DATA_ALIGNMENT (TYPE, ALIGN)
589
b4ac57ab 590/* Set this nonzero if move instructions will actually fail to work
1bb87f28 591 when given unaligned data. */
b4ac57ab 592#define STRICT_ALIGNMENT 1
1bb87f28
JW
593
594/* Things that must be doubleword aligned cannot go in the text section,
595 because the linker fails to align the text section enough!
7a6cf439 596 Put them in the data section. This macro is only used in this file. */
1bb87f28 597#define MAX_TEXT_ALIGN 32
1bb87f28
JW
598\f
599/* Standard register usage. */
600
601/* Number of actual hardware registers.
602 The hardware registers are assigned numbers for the compiler
603 from 0 to just below FIRST_PSEUDO_REGISTER.
604 All registers that the compiler knows about must be given numbers,
605 even those that are not normally considered general registers.
606
7a6cf439 607 SPARC has 32 integer registers and 32 floating point registers.
a7b376ee 608 64-bit SPARC has 32 additional fp regs, but the odd numbered ones are not
7a6cf439 609 accessible. We still account for them to simplify register computations
112cdef5 610 (e.g.: in CLASS_MAX_NREGS). There are also 4 fp condition code registers, so
7a6cf439 611 32+32+32+4 == 100.
563c12b0 612 Register 100 is used as the integer condition code register.
490a6733
EB
613 Register 101 is used as the soft frame pointer register.
614 Register 102 is used as the general status register by VIS instructions. */
1bb87f28 615
10b859c0 616#define FIRST_PSEUDO_REGISTER 103
6afca97d 617
5a53588f
DM
618#define SPARC_FIRST_INT_REG 0
619#define SPARC_LAST_INT_REG 31
4fb4e4b8 620#define SPARC_FIRST_FP_REG 32
6afca97d 621/* Additional V9 fp regs. */
4fb4e4b8
DE
622#define SPARC_FIRST_V9_FP_REG 64
623#define SPARC_LAST_V9_FP_REG 95
c4ce6853
DE
624/* V9 %fcc[0123]. V8 uses (figuratively) %fcc0. */
625#define SPARC_FIRST_V9_FCC_REG 96
626#define SPARC_LAST_V9_FCC_REG 99
627/* V8 fcc reg. */
628#define SPARC_FCC_REG 96
629/* Integer CC reg. We don't distinguish %icc from %xcc. */
630#define SPARC_ICC_REG 100
10b859c0 631#define SPARC_GSR_REG 102
1bb87f28 632
4fb4e4b8
DE
633/* Nonzero if REGNO is an fp reg. */
634#define SPARC_FP_REG_P(REGNO) \
635((REGNO) >= SPARC_FIRST_FP_REG && (REGNO) <= SPARC_LAST_V9_FP_REG)
636
5a53588f
DM
637/* Nonzero if REGNO is an int reg. */
638#define SPARC_INT_REG_P(REGNO) \
639(((unsigned) (REGNO)) <= SPARC_LAST_INT_REG)
640
4fb4e4b8
DE
641/* Argument passing regs. */
642#define SPARC_OUTGOING_INT_ARG_FIRST 8
b11b0904 643#define SPARC_INCOMING_INT_ARG_FIRST (TARGET_FLAT ? 8 : 24)
4fb4e4b8
DE
644#define SPARC_FP_ARG_FIRST 32
645
1bb87f28
JW
646/* 1 for registers that have pervasive standard uses
647 and are not available for the register allocator.
4fb4e4b8 648
7a6cf439 649 On non-v9 systems:
34ad7aaf
JW
650 g1 is free to use as temporary.
651 g2-g4 are reserved for applications. Gcc normally uses them as
652 temporaries, but this can be disabled via the -mno-app-regs option.
7a6cf439 653 g5 through g7 are reserved for the operating system.
4fb4e4b8 654
7a6cf439 655 On v9 systems:
a0a301fc
DE
656 g1,g5 are free to use as temporaries, and are free to use between calls
657 if the call is to an external function via the PLT.
658 g4 is free to use as a temporary in the non-embedded case.
659 g4 is reserved in the embedded case.
4fb4e4b8 660 g2-g3 are reserved for applications. Gcc normally uses them as
bafb031b 661 temporaries, but this can be disabled via the -mno-app-regs option.
a0a301fc
DE
662 g6-g7 are reserved for the operating system (or application in
663 embedded case).
7a6cf439
DE
664 ??? Register 1 is used as a temporary by the 64 bit sethi pattern, so must
665 currently be a fixed register until this pattern is rewritten.
666 Register 1 is also used when restoring call-preserved registers in large
6afca97d
DE
667 stack frames.
668
669 Registers fixed in arch32 and not arch64 (or vice-versa) are marked in
5efd84c5 670 TARGET_CONDITIONAL_REGISTER_USAGE in order to properly handle -ffixed-.
6afca97d 671*/
7a6cf439 672
7a6cf439 673#define FIXED_REGISTERS \
e48addee 674 {1, 0, 2, 2, 2, 2, 1, 1, \
7a6cf439
DE
675 0, 0, 0, 0, 0, 0, 1, 0, \
676 0, 0, 0, 0, 0, 0, 0, 0, \
b11b0904 677 0, 0, 0, 0, 0, 0, 0, 1, \
7a6cf439
DE
678 \
679 0, 0, 0, 0, 0, 0, 0, 0, \
680 0, 0, 0, 0, 0, 0, 0, 0, \
681 0, 0, 0, 0, 0, 0, 0, 0, \
682 0, 0, 0, 0, 0, 0, 0, 0, \
683 \
684 0, 0, 0, 0, 0, 0, 0, 0, \
685 0, 0, 0, 0, 0, 0, 0, 0, \
686 0, 0, 0, 0, 0, 0, 0, 0, \
687 0, 0, 0, 0, 0, 0, 0, 0, \
688 \
490a6733 689 0, 0, 0, 0, 1, 1, 1}
1bb87f28
JW
690
691/* 1 for registers not available across function calls.
692 These must include the FIXED_REGISTERS and also any
693 registers that can be used without being saved.
694 The latter must include the registers where values are returned
695 and the register where structure-value addresses are passed.
696 Aside from that, you can include as many other registers as you like. */
7a6cf439 697
bafb031b
DE
698#define CALL_USED_REGISTERS \
699 {1, 1, 1, 1, 1, 1, 1, 1, \
700 1, 1, 1, 1, 1, 1, 1, 1, \
701 0, 0, 0, 0, 0, 0, 0, 0, \
b11b0904 702 0, 0, 0, 0, 0, 0, 0, 1, \
bafb031b
DE
703 \
704 1, 1, 1, 1, 1, 1, 1, 1, \
705 1, 1, 1, 1, 1, 1, 1, 1, \
706 1, 1, 1, 1, 1, 1, 1, 1, \
707 1, 1, 1, 1, 1, 1, 1, 1, \
708 \
709 1, 1, 1, 1, 1, 1, 1, 1, \
710 1, 1, 1, 1, 1, 1, 1, 1, \
711 1, 1, 1, 1, 1, 1, 1, 1, \
9250444b
EB
712 1, 1, 1, 1, 1, 1, 1, 1, \
713 \
714 1, 1, 1, 1, 1, 1, 1}
715
716/* 1 for registers not available across function calls.
717 Unlike the above, this need not include the FIXED_REGISTERS, but any
718 registers that can be used without being saved.
719 The latter must include the registers where values are returned
720 and the register where structure-value addresses are passed.
721 Aside from that, you can include as many other registers as you like. */
722
723#define CALL_REALLY_USED_REGISTERS \
724 {1, 1, 1, 1, 1, 1, 1, 1, \
725 1, 1, 1, 1, 1, 1, 1, 1, \
726 0, 0, 0, 0, 0, 0, 0, 0, \
727 0, 0, 0, 0, 0, 0, 0, 0, \
728 \
729 1, 1, 1, 1, 1, 1, 1, 1, \
730 1, 1, 1, 1, 1, 1, 1, 1, \
731 1, 1, 1, 1, 1, 1, 1, 1, \
732 1, 1, 1, 1, 1, 1, 1, 1, \
733 \
734 1, 1, 1, 1, 1, 1, 1, 1, \
735 1, 1, 1, 1, 1, 1, 1, 1, \
736 1, 1, 1, 1, 1, 1, 1, 1, \
bafb031b
DE
737 1, 1, 1, 1, 1, 1, 1, 1, \
738 \
10b859c0 739 1, 1, 1, 1, 1, 1, 1}
1bb87f28 740
fae778eb 741/* Due to the ARCH64 discrepancy above we must override this next
ec8e621d 742 macro too. */
98ccb32d 743#define REGMODE_NATURAL_SIZE(MODE) sparc_regmode_natural_size (MODE)
284d86e9 744
e31a1967
EB
745/* Value is 1 if it is OK to rename a hard register FROM to another hard
746 register TO. We cannot rename %g1 as it may be used before the save
747 register window instruction in the prologue. */
748#define HARD_REGNO_RENAME_OK(FROM, TO) ((FROM) != 1)
749
1bb87f28
JW
750/* Specify the registers used for certain standard purposes.
751 The values of these macros are register numbers. */
752
1bb87f28
JW
753/* Register to use for pushing function arguments. */
754#define STACK_POINTER_REGNUM 14
755
563c12b0
RH
756/* The stack bias (amount by which the hardware register is offset by). */
757#define SPARC_STACK_BIAS ((TARGET_ARCH64 && TARGET_STACK_BIAS) ? 2047 : 0)
758
4fb4e4b8 759/* Actual top-of-stack address is 92/176 greater than the contents of the
7a6cf439
DE
760 stack pointer register for !v9/v9. That is:
761 - !v9: 64 bytes for the in and local registers, 4 bytes for structure return
4fb4e4b8
DE
762 address, and 6*4 bytes for the 6 register parameters.
763 - v9: 128 bytes for the in and local registers + 6*8 bytes for the integer
764 parameter regs. */
563c12b0 765#define STACK_POINTER_OFFSET (FIRST_PARM_OFFSET(0) + SPARC_STACK_BIAS)
1ccfa253 766
1bb87f28 767/* Base register for access to local variables of the function. */
563c12b0
RH
768#define HARD_FRAME_POINTER_REGNUM 30
769
770/* The soft frame pointer does not have the stack bias applied. */
771#define FRAME_POINTER_REGNUM 101
772
563c12b0
RH
773#define INIT_EXPANDERS \
774 do { \
b9f92c0b 775 if (crtl->emit.regno_pointer_align) \
563c12b0 776 { \
b9f92c0b
EB
777 /* The biased stack pointer is only aligned on BITS_PER_UNIT. */\
778 if (SPARC_STACK_BIAS) \
779 { \
780 REGNO_POINTER_ALIGN (STACK_POINTER_REGNUM) \
781 = BITS_PER_UNIT; \
782 REGNO_POINTER_ALIGN (HARD_FRAME_POINTER_REGNUM) \
783 = BITS_PER_UNIT; \
784 } \
785 \
786 /* In 32-bit mode, not everything is double-word aligned. */ \
787 if (TARGET_ARCH32) \
788 { \
789 REGNO_POINTER_ALIGN (VIRTUAL_INCOMING_ARGS_REGNUM) \
790 = BITS_PER_WORD; \
791 REGNO_POINTER_ALIGN (VIRTUAL_STACK_DYNAMIC_REGNUM) \
792 = BITS_PER_WORD; \
793 REGNO_POINTER_ALIGN (VIRTUAL_OUTGOING_ARGS_REGNUM) \
794 = BITS_PER_WORD; \
795 } \
563c12b0
RH
796 } \
797 } while (0)
1bb87f28 798
1bb87f28 799/* Base register for access to arguments of the function. */
5c56efde 800#define ARG_POINTER_REGNUM FRAME_POINTER_REGNUM
1bb87f28 801
6098b63e 802/* Register in which static-chain is passed to a function. This must
c8392688 803 not be a register used by the prologue. */
6f64bf5f 804#define STATIC_CHAIN_REGNUM (TARGET_ARCH64 ? 5 : 2)
1bb87f28 805
a6fed83f
EB
806/* Register which holds the global offset table, if any. */
807
808#define GLOBAL_OFFSET_TABLE_REGNUM 23
809
46336a0e
EB
810/* Register which holds offset table for position-independent data references.
811 The original SPARC ABI imposes no requirement on the choice of the register
812 so we use a pseudo-register to make sure it is properly saved and restored
813 around calls to setjmp. Now the ABI of VxWorks RTP makes it live on entry
814 to PLT entries so we use the canonical GOT register in this case. */
1bb87f28 815
a6fed83f 816#define PIC_OFFSET_TABLE_REGNUM \
46336a0e 817 (TARGET_VXWORKS_RTP && flag_pic ? GLOBAL_OFFSET_TABLE_REGNUM : INVALID_REGNUM)
1bb87f28 818
82d6b402
RH
819/* Pick a default value we can notice from override_options:
820 !v9: Default is on.
7a946186
AT
821 v9: Default is off.
822 Originally it was -1, but later on the container of options changed to
823 unsigned byte, so we decided to pick 127 as default value, which does
824 reflect an undefined default value in case of 0/1. */
82d6b402 825
7a946186 826#define DEFAULT_PCC_STRUCT_RETURN 127
82d6b402 827
1bb87f28
JW
828/* Functions which return large structures get the address
829 to place the wanted value at offset 64 from the frame.
7a6cf439
DE
830 Must reserve 64 bytes for the in and local registers.
831 v9: Functions which return large structures get the address to place the
832 wanted value from an invisible first argument. */
1bb87f28 833#define STRUCT_VALUE_OFFSET 64
1bb87f28
JW
834\f
835/* Define the classes of registers for register constraints in the
836 machine description. Also define ranges of constants.
837
838 One of the classes must always be named ALL_REGS and include all hard regs.
839 If there is more than one class, another class must be named NO_REGS
840 and contain no registers.
841
842 The name GENERAL_REGS must be the name of a class (or an alias for
843 another name such as ALL_REGS). This is the class of registers
844 that is allowed by "g" or "r" in a register constraint.
845 Also, registers outside this class are allocated only when
846 instructions express preferences for them.
847
848 The classes must be numbered in nondecreasing order; that is,
849 a larger-numbered class must never be contained completely
850 in a smaller-numbered class.
851
852 For any two classes, it is very desirable that there be another
853 class that represents their union. */
854
4fb4e4b8
DE
855/* The SPARC has various kinds of registers: general, floating point,
856 and condition codes [well, it has others as well, but none that we
857 care directly about].
24b63396
JW
858
859 For v9 we must distinguish between the upper and lower floating point
860 registers because the upper ones can't hold SFmode values.
f939c3e6
RS
861 TARGET_HARD_REGNO_MODE_OK won't help here because reload assumes that
862 register(s) satisfying a group need for a class will also satisfy a
863 single need for that class. EXTRA_FP_REGS is a bit of a misnomer as
864 it covers all 64 fp regs.
24b63396
JW
865
866 It is important that one class contains all the general and all the standard
867 fp regs. Otherwise find_reg() won't properly allocate int regs for moves,
868 because reg_class_record() will bias the selection in favor of fp regs,
869 because reg_class_subunion[GENERAL_REGS][FP_REGS] will yield FP_REGS,
870 because FP_REGS > GENERAL_REGS.
871
107a4b41
NS
872 It is also important that one class contain all the general and all
873 the fp regs. Otherwise when spilling a DFmode reg, it may be from
874 EXTRA_FP_REGS but find_reloads() may use class
875 GENERAL_OR_FP_REGS. This will cause allocate_reload_reg() to die
876 because the compiler thinks it doesn't have a spill reg when in
877 fact it does.
24b63396 878
7a6cf439
DE
879 v9 also has 4 floating point condition code registers. Since we don't
880 have a class that is the union of FPCC_REGS with either of the others,
881 it is important that it appear first. Otherwise the compiler will die
882 trying to compile _fixunsdfsi because fix_truncdfsi2 won't match its
490a6733 883 constraints. */
7a6cf439 884
284d86e9
JC
885enum reg_class { NO_REGS, FPCC_REGS, I64_REGS, GENERAL_REGS, FP_REGS,
886 EXTRA_FP_REGS, GENERAL_OR_FP_REGS, GENERAL_OR_EXTRA_FP_REGS,
7a6cf439 887 ALL_REGS, LIM_REG_CLASSES };
1bb87f28
JW
888
889#define N_REG_CLASSES (int) LIM_REG_CLASSES
890
80ffc95e 891/* Give names of register classes as strings for dump file. */
1bb87f28
JW
892
893#define REG_CLASS_NAMES \
284d86e9
JC
894 { "NO_REGS", "FPCC_REGS", "I64_REGS", "GENERAL_REGS", "FP_REGS", \
895 "EXTRA_FP_REGS", "GENERAL_OR_FP_REGS", "GENERAL_OR_EXTRA_FP_REGS", \
896 "ALL_REGS" }
1bb87f28
JW
897
898/* Define which registers fit in which classes.
899 This is an initializer for a vector of HARD_REG_SET
900 of length N_REG_CLASSES. */
901
563c12b0
RH
902#define REG_CLASS_CONTENTS \
903 {{0, 0, 0, 0}, /* NO_REGS */ \
904 {0, 0, 0, 0xf}, /* FPCC_REGS */ \
905 {0xffff, 0, 0, 0}, /* I64_REGS */ \
906 {-1, 0, 0, 0x20}, /* GENERAL_REGS */ \
907 {0, -1, 0, 0}, /* FP_REGS */ \
908 {0, -1, -1, 0}, /* EXTRA_FP_REGS */ \
909 {-1, -1, 0, 0x20}, /* GENERAL_OR_FP_REGS */ \
910 {-1, -1, -1, 0x20}, /* GENERAL_OR_EXTRA_FP_REGS */ \
10b859c0 911 {-1, -1, -1, 0x7f}} /* ALL_REGS */
1bb87f28 912
948bf106
EB
913/* The same information, inverted:
914 Return the class number of the smallest class containing
915 reg number REGNO. This could be a conditional expression
916 or could index an array. */
917
918extern enum reg_class sparc_regno_reg_class[FIRST_PSEUDO_REGISTER];
919
920#define REGNO_REG_CLASS(REGNO) sparc_regno_reg_class[(REGNO)]
921
3aabf9a5
EC
922/* This is the order in which to allocate registers normally.
923
af54350e 924 We put %f0-%f7 last among the float registers, so as to make it more
6a4bb1fa 925 likely that a pseudo-register which dies in the float return register
af54350e
DM
926 area will get allocated to the float return register, thus saving a move
927 instruction at the end of the function.
928
929 Similarly for integer return value registers.
930
931 We know in this case that we will not end up with a leaf function.
932
fae778eb 933 The register allocator is given the global and out registers first
af54350e
DM
934 because these registers are call clobbered and thus less useful to
935 global register allocation.
936
937 Next we list the local and in registers. They are not call clobbered
938 and thus very useful for global register allocation. We list the input
939 registers before the locals so that it is more likely the incoming
940 arguments received in those registers can just stay there and not be
941 reloaded. */
6afca97d 942
7a6cf439 943#define REG_ALLOC_ORDER \
af54350e
DM
944{ 1, 2, 3, 4, 5, 6, 7, /* %g1-%g7 */ \
945 13, 12, 11, 10, 9, 8, /* %o5-%o0 */ \
946 15, /* %o7 */ \
947 16, 17, 18, 19, 20, 21, 22, 23, /* %l0-%l7 */ \
948 29, 28, 27, 26, 25, 24, 31, /* %i5-%i0,%i7 */\
7a6cf439 949 40, 41, 42, 43, 44, 45, 46, 47, /* %f8-%f15 */ \
7a6cf439
DE
950 48, 49, 50, 51, 52, 53, 54, 55, /* %f16-%f23 */ \
951 56, 57, 58, 59, 60, 61, 62, 63, /* %f24-%f31 */ \
952 64, 65, 66, 67, 68, 69, 70, 71, /* %f32-%f39 */ \
953 72, 73, 74, 75, 76, 77, 78, 79, /* %f40-%f47 */ \
4fb4e4b8
DE
954 80, 81, 82, 83, 84, 85, 86, 87, /* %f48-%f55 */ \
955 88, 89, 90, 91, 92, 93, 94, 95, /* %f56-%f63 */ \
af54350e
DM
956 39, 38, 37, 36, 35, 34, 33, 32, /* %f7-%f0 */ \
957 96, 97, 98, 99, /* %fcc0-3 */ \
10b859c0 958 100, 0, 14, 30, 101, 102 } /* %icc, %g0, %o6, %i6, %sfp, %gsr */
1bb87f28
JW
959
960/* This is the order in which to allocate registers for
af54350e
DM
961 leaf functions. If all registers can fit in the global and
962 output registers, then we have the possibility of having a leaf
963 function.
964
965 The macro actually mentioned the input registers first,
966 because they get renumbered into the output registers once
967 we know really do have a leaf function.
968
969 To be more precise, this register allocation order is used
970 when %o7 is found to not be clobbered right before register
971 allocation. Normally, the reason %o7 would be clobbered is
972 due to a call which could not be transformed into a sibling
973 call.
974
975 As a consequence, it is possible to use the leaf register
976 allocation order and not end up with a leaf function. We will
977 not get suboptimal register allocation in that case because by
978 definition of being potentially leaf, there were no function
979 calls. Therefore, allocation order within the local register
980 window is not critical like it is when we do have function calls. */
6afca97d 981
7a6cf439 982#define REG_LEAF_ALLOC_ORDER \
af54350e
DM
983{ 1, 2, 3, 4, 5, 6, 7, /* %g1-%g7 */ \
984 29, 28, 27, 26, 25, 24, /* %i5-%i0 */ \
985 15, /* %o7 */ \
986 13, 12, 11, 10, 9, 8, /* %o5-%o0 */ \
987 16, 17, 18, 19, 20, 21, 22, 23, /* %l0-%l7 */ \
988 40, 41, 42, 43, 44, 45, 46, 47, /* %f8-%f15 */ \
989 48, 49, 50, 51, 52, 53, 54, 55, /* %f16-%f23 */ \
990 56, 57, 58, 59, 60, 61, 62, 63, /* %f24-%f31 */ \
991 64, 65, 66, 67, 68, 69, 70, 71, /* %f32-%f39 */ \
992 72, 73, 74, 75, 76, 77, 78, 79, /* %f40-%f47 */ \
993 80, 81, 82, 83, 84, 85, 86, 87, /* %f48-%f55 */ \
994 88, 89, 90, 91, 92, 93, 94, 95, /* %f56-%f63 */ \
995 39, 38, 37, 36, 35, 34, 33, 32, /* %f7-%f0 */ \
996 96, 97, 98, 99, /* %fcc0-3 */ \
10b859c0 997 100, 0, 14, 30, 31, 101, 102 } /* %icc, %g0, %o6, %i6, %i7, %sfp, %gsr */
3aabf9a5 998
5a733826 999#define ADJUST_REG_ALLOC_ORDER order_regs_for_local_alloc ()
1bb87f28 1000
7d167afd
JJ
1001extern char sparc_leaf_regs[];
1002#define LEAF_REGISTERS sparc_leaf_regs
1bb87f28 1003
d70e94ec 1004extern char leaf_reg_remap[];
1bb87f28 1005#define LEAF_REG_REMAP(REGNO) (leaf_reg_remap[REGNO])
1bb87f28 1006
1bb87f28
JW
1007/* The class value for index registers, and the one for base regs. */
1008#define INDEX_REG_CLASS GENERAL_REGS
1009#define BASE_REG_CLASS GENERAL_REGS
1010
24b63396 1011/* Local macro to handle the two v9 classes of FP regs. */
24b63396 1012#define FP_REG_CLASS_P(CLASS) ((CLASS) == FP_REGS || (CLASS) == EXTRA_FP_REGS)
24b63396 1013
bcc3c3f1
JM
1014/* Predicate for 2-bit and 5-bit unsigned constants. */
1015#define SPARC_IMM2_P(X) (((unsigned HOST_WIDE_INT) (X) & ~0x3) == 0)
1016#define SPARC_IMM5_P(X) (((unsigned HOST_WIDE_INT) (X) & ~0x1F) == 0)
1017
8b98b5fd
DM
1018/* Predicates for 5-bit, 10-bit, 11-bit and 13-bit signed constants. */
1019#define SPARC_SIMM5_P(X) ((unsigned HOST_WIDE_INT) (X) + 0x10 < 0x20)
1ccfa253
DE
1020#define SPARC_SIMM10_P(X) ((unsigned HOST_WIDE_INT) (X) + 0x200 < 0x400)
1021#define SPARC_SIMM11_P(X) ((unsigned HOST_WIDE_INT) (X) + 0x400 < 0x800)
1022#define SPARC_SIMM13_P(X) ((unsigned HOST_WIDE_INT) (X) + 0x1000 < 0x2000)
0e5d569c
EB
1023
1024/* 10- and 11-bit immediates are only used for a few specific insns.
18c5947f
DE
1025 SMALL_INT is used throughout the port so we continue to use it. */
1026#define SMALL_INT(X) (SPARC_SIMM13_P (INTVAL (X)))
0e5d569c
EB
1027
1028/* Predicate for constants that can be loaded with a sethi instruction.
1029 This is the general, 64-bit aware, bitwise version that ensures that
1030 only constants whose representation fits in the mask
1031
1032 0x00000000fffffc00
1033
1034 are accepted. It will reject, for example, negative SImode constants
1035 on 64-bit hosts, so correct handling is to mask the value beforehand
1036 according to the mode of the instruction. */
1ccfa253 1037#define SPARC_SETHI_P(X) \
7d6040e8
AO
1038 (((unsigned HOST_WIDE_INT) (X) \
1039 & ((unsigned HOST_WIDE_INT) 0x3ff - GET_MODE_MASK (SImode) - 1)) == 0)
0e5d569c
EB
1040
1041/* Version of the above predicate for SImode constants and below. */
7d6040e8
AO
1042#define SPARC_SETHI32_P(X) \
1043 (SPARC_SETHI_P ((unsigned HOST_WIDE_INT) (X) & GET_MODE_MASK (SImode)))
1bb87f28 1044
1bb87f28
JW
1045/* Return the maximum number of consecutive registers
1046 needed to represent mode MODE in a register of class CLASS. */
1047/* On SPARC, this is the size of MODE in words. */
1048#define CLASS_MAX_NREGS(CLASS, MODE) \
24b63396 1049 (FP_REG_CLASS_P (CLASS) ? (GET_MODE_SIZE (MODE) + 3) / 4 \
7a6cf439 1050 : (GET_MODE_SIZE (MODE) + UNITS_PER_WORD - 1) / UNITS_PER_WORD)
1bb87f28
JW
1051\f
1052/* Stack layout; function entry, exit and calling. */
1053
1bb87f28
JW
1054/* Define this if pushing a word on the stack
1055 makes the stack pointer a smaller address. */
62f9f30b 1056#define STACK_GROWS_DOWNWARD 1
1bb87f28 1057
a4d05547 1058/* Define this to nonzero if the nominal address of the stack frame
1bb87f28
JW
1059 is at the high-address end of the local variables;
1060 that is, each additional local variable allocated
1061 goes at a more negative offset in the frame. */
f62c8a5c 1062#define FRAME_GROWS_DOWNWARD 1
1bb87f28 1063
1bb87f28 1064/* Offset of first parameter from the argument pointer register value.
7a6cf439
DE
1065 !v9: This is 64 for the ins and locals, plus 4 for the struct-return reg
1066 even if this function isn't going to use it.
4fb4e4b8 1067 v9: This is 128 for the ins and locals. */
7a6cf439 1068#define FIRST_PARM_OFFSET(FNDECL) \
563c12b0 1069 (TARGET_ARCH64 ? 16 * UNITS_PER_WORD : STRUCT_VALUE_OFFSET + UNITS_PER_WORD)
1bb87f28 1070
2c849145
JM
1071/* Offset from the argument pointer register value to the CFA.
1072 This is different from FIRST_PARM_OFFSET because the register window
1073 comes between the CFA and the arguments. */
c2c9f6c9 1074#define ARG_POINTER_CFA_OFFSET(FNDECL) 0
71038426 1075
1bb87f28 1076/* When a parameter is passed in a register, stack space is still
82d6b402
RH
1077 allocated for it.
1078 !v9: All 6 possible integer registers have backing store allocated.
80ffc95e 1079 v9: Only space for the arguments passed is allocated. */
82d6b402
RH
1080/* ??? Ideally, we'd use zero here (as the minimum), but zero has special
1081 meaning to the backend. Further, we need to be able to detect if a
1082 varargs/unprototyped function is called, as they may want to spill more
1083 registers than we've provided space. Ugly, ugly. So for now we retain
1084 all 6 slots even for v9. */
4fb4e4b8 1085#define REG_PARM_STACK_SPACE(DECL) (6 * UNITS_PER_WORD)
1bb87f28 1086
563c12b0 1087/* Definitions for register elimination. */
3aabf9a5 1088
563c12b0 1089#define ELIMINABLE_REGS \
e387e99b
JJ
1090 {{ FRAME_POINTER_REGNUM, STACK_POINTER_REGNUM}, \
1091 { FRAME_POINTER_REGNUM, HARD_FRAME_POINTER_REGNUM} }
563c12b0 1092
9e6a4b77
SB
1093#define INITIAL_ELIMINATION_OFFSET(FROM, TO, OFFSET) \
1094 do \
1095 { \
1096 (OFFSET) = sparc_initial_elimination_offset ((TO)); \
1097 } \
1098 while (0)
563c12b0 1099
1bb87f28 1100/* Keep the stack pointer constant throughout the function.
b4ac57ab 1101 This is both an optimization and a necessity: longjmp
1bb87f28
JW
1102 doesn't behave itself when the stack pointer moves within
1103 the function! */
f73ad30e 1104#define ACCUMULATE_OUTGOING_ARGS 1
1bb87f28 1105
92ea370b
TW
1106/* Define this macro if the target machine has "register windows". This
1107 C expression returns the register number as seen by the called function
1108 corresponding to register number OUT as seen by the calling function.
1109 Return OUT if register number OUT is not an outbound register. */
1110
1111#define INCOMING_REGNO(OUT) \
b11b0904 1112 ((TARGET_FLAT || (OUT) < 8 || (OUT) > 15) ? (OUT) : (OUT) + 16)
92ea370b
TW
1113
1114/* Define this macro if the target machine has "register windows". This
1115 C expression returns the register number as seen by the calling function
1116 corresponding to register number IN as seen by the called function.
1117 Return IN if register number IN is not an inbound register. */
1118
1119#define OUTGOING_REGNO(IN) \
b11b0904 1120 ((TARGET_FLAT || (IN) < 24 || (IN) > 31) ? (IN) : (IN) - 16)
92ea370b 1121
2a3e384f
RH
1122/* Define this macro if the target machine has register windows. This
1123 C expression returns true if the register is call-saved but is in the
1124 register window. */
1125
1126#define LOCAL_REGNO(REGNO) \
b11b0904 1127 (!TARGET_FLAT && (REGNO) >= 16 && (REGNO) <= 31)
2a3e384f 1128
34aaacec
JW
1129/* Define the size of space to allocate for the return value of an
1130 untyped_call. */
1131
d24088cc 1132#define APPLY_RESULT_SIZE (TARGET_ARCH64 ? 24 : 16)
34aaacec 1133
1bb87f28 1134/* 1 if N is a possible register number for function argument passing.
4fb4e4b8 1135 On SPARC, these are the "output" registers. v9 also uses %f0-%f31. */
1bb87f28 1136
7a6cf439 1137#define FUNCTION_ARG_REGNO_P(N) \
9e3b2fe3
EB
1138 (((N) >= 8 && (N) <= 13) \
1139 || (TARGET_ARCH64 && TARGET_FPU && (N) >= 32 && (N) <= 63))
1bb87f28
JW
1140\f
1141/* Define a data type for recording info about an argument list
1142 during the scan of that argument list. This data type should
1143 hold all necessary information about the function itself
1144 and about the args processed so far, enough to enable macros
1145 such as FUNCTION_ARG to determine where the next arg should go.
1146
7a6cf439 1147 On SPARC (!v9), this is a single integer, which is a number of words
1bb87f28
JW
1148 of arguments scanned so far (including the invisible argument,
1149 if any, which holds the structure-value-address).
7a6cf439
DE
1150 Thus 7 or more means all following args should go on the stack.
1151
4fb4e4b8 1152 For v9, we also need to know whether a prototype is present. */
7a6cf439 1153
7a6cf439 1154struct sparc_args {
4fb4e4b8 1155 int words; /* number of words passed so far */
5e7a8ee0
KH
1156 int prototype_p; /* nonzero if a prototype is present */
1157 int libcall_p; /* nonzero if a library call */
7a6cf439
DE
1158};
1159#define CUMULATIVE_ARGS struct sparc_args
1160
1bb87f28
JW
1161/* Initialize a variable CUM of type CUMULATIVE_ARGS
1162 for a call to a function whose data type is FNTYPE.
4fb4e4b8 1163 For a library call, FNTYPE is 0. */
1bb87f28 1164
0f6937fe 1165#define INIT_CUMULATIVE_ARGS(CUM, FNTYPE, LIBNAME, FNDECL, N_NAMED_ARGS) \
563a317a 1166init_cumulative_args (& (CUM), (FNTYPE), (LIBNAME), (FNDECL));
1bb87f28 1167
1bb87f28 1168\f
4b69d2a3
RS
1169/* Generate the special assembly code needed to tell the assembler whatever
1170 it might need to know about the return value of a function.
1171
56149abc 1172 For SPARC assemblers, we need to output a .proc pseudo-op which conveys
4b69d2a3
RS
1173 information to the assembler relating to peephole optimization (done in
1174 the assembler). */
1175
1176#define ASM_DECLARE_RESULT(FILE, RESULT) \
4f70758f 1177 fprintf ((FILE), "\t.proc\t0%lo\n", sparc_type_code (TREE_TYPE (RESULT)))
4b69d2a3 1178
1cb36a98 1179/* Output the special assembly code needed to tell the assembler some
3aabf9a5 1180 register is used as global register variable.
730f0207
JJ
1181
1182 SPARC 64bit psABI declares registers %g2 and %g3 as application
1183 registers and %g6 and %g7 as OS registers. Any object using them
1184 should declare (for %g2/%g3 has to, for %g6/%g7 can) that it uses them
1185 and how they are used (scratch or some global variable).
1186 Linker will then refuse to link together objects which use those
1187 registers incompatibly.
1188
1189 Unless the registers are used for scratch, two different global
1190 registers cannot be declared to the same name, so in the unlikely
1191 case of a global register variable occupying more than one register
1192 we prefix the second and following registers with .gnu.part1. etc. */
1193
94fcbf65 1194extern GTY(()) char sparc_hard_reg_printed[8];
1cb36a98 1195
1cb36a98
RH
1196#define ASM_DECLARE_REGISTER_GLOBAL(FILE, DECL, REGNO, NAME) \
1197do { \
1198 if (TARGET_ARCH64) \
1199 { \
4edd6298 1200 int end = end_hard_regno (DECL_MODE (decl), REGNO); \
730f0207
JJ
1201 int reg; \
1202 for (reg = (REGNO); reg < 8 && reg < end; reg++) \
1203 if ((reg & ~1) == 2 || (reg & ~1) == 6) \
1cb36a98 1204 { \
730f0207
JJ
1205 if (reg == (REGNO)) \
1206 fprintf ((FILE), "\t.register\t%%g%d, %s\n", reg, (NAME)); \
1cb36a98
RH
1207 else \
1208 fprintf ((FILE), "\t.register\t%%g%d, .gnu.part%d.%s\n", \
730f0207
JJ
1209 reg, reg - (REGNO), (NAME)); \
1210 sparc_hard_reg_printed[reg] = 1; \
1cb36a98
RH
1211 } \
1212 } \
1213} while (0)
c4ce6853 1214\f
89a8b315
RH
1215/* Emit rtl for profiling. */
1216#define PROFILE_HOOK(LABEL) sparc_profile_hook (LABEL)
6f334f44 1217
89a8b315
RH
1218/* All the work done in PROFILE_HOOK, but still required. */
1219#define FUNCTION_PROFILER(FILE, LABELNO) do { } while (0)
1bb87f28 1220
2be15d0f 1221/* Set the name of the mcount function for the system. */
2be15d0f 1222#define MCOUNT_FUNCTION "*mcount"
c4ce6853 1223\f
1bb87f28
JW
1224/* EXIT_IGNORE_STACK should be nonzero if, when returning from a function,
1225 the stack pointer does not matter. The value is tested only in
b11b0904
EB
1226 functions that have frame pointers. */
1227#define EXIT_IGNORE_STACK 1
1bb87f28 1228
1bb87f28 1229/* Length in units of the trampoline for entering a nested function. */
c6b0465b
JC
1230#define TRAMPOLINE_SIZE (TARGET_ARCH64 ? 32 : 16)
1231
bc6d3f91 1232/* Alignment required for trampolines, in bits. */
bc6d3f91 1233#define TRAMPOLINE_ALIGNMENT 128
6a4bb1fa 1234\f
953fe179
JW
1235/* Generate RTL to flush the register windows so as to make arbitrary frames
1236 available. */
b11b0904
EB
1237#define SETUP_FRAME_ADDRESSES() \
1238 do { \
1239 if (!TARGET_FLAT) \
1240 emit_insn (gen_flush_register_windows ());\
1241 } while (0)
953fe179
JW
1242
1243/* Given an rtx for the address of a frame,
1244 return an rtx for the address of the word in the frame
60b85c4c 1245 that holds the dynamic chain--the previous frame's address. */
8773135d 1246#define DYNAMIC_CHAIN_ADDRESS(frame) \
0a81f074 1247 plus_constant (Pmode, frame, 14 * UNITS_PER_WORD + SPARC_STACK_BIAS)
953fe179 1248
224869d9
EB
1249/* Given an rtx for the frame pointer,
1250 return an rtx for the address of the frame. */
0a81f074 1251#define FRAME_ADDR_RTX(frame) plus_constant (Pmode, frame, SPARC_STACK_BIAS)
224869d9 1252
953fe179
JW
1253/* The return address isn't on the stack, it is in a register, so we can't
1254 access it from the current frame pointer. We can access it from the
1255 previous frame pointer though by reading a value from the register window
1256 save area. */
2e612c47 1257#define RETURN_ADDR_IN_PREVIOUS_FRAME 1
953fe179 1258
5b6faa70 1259/* This is the offset of the return address to the true next instruction to be
80ffc95e 1260 executed for the current function. */
6f64bf5f 1261#define RETURN_ADDR_OFFSET \
e3b5732b 1262 (8 + 4 * (! TARGET_ARCH64 && cfun->returns_struct))
5b6faa70 1263
953fe179
JW
1264/* The current return address is in %i7. The return address of anything
1265 farther back is in the register window save area at [%fp+60]. */
1266/* ??? This ignores the fact that the actual return address is +8 for normal
1267 returns, and +12 for structure returns. */
b11b0904 1268#define RETURN_ADDR_REGNUM 31
953fe179
JW
1269#define RETURN_ADDR_RTX(count, frame) \
1270 ((count == -1) \
b11b0904 1271 ? gen_rtx_REG (Pmode, RETURN_ADDR_REGNUM) \
284d86e9 1272 : gen_rtx_MEM (Pmode, \
0a81f074 1273 memory_address (Pmode, plus_constant (Pmode, frame, \
cd49f073
AM
1274 15 * UNITS_PER_WORD \
1275 + SPARC_STACK_BIAS))))
9704efe6 1276
d60bee3a
DE
1277/* Before the prologue, the return address is %o7 + 8. OK, sometimes it's
1278 +12, but always using +8 is close enough for frame unwind purposes.
1279 Actually, just using %o7 is close enough for unwinding, but %o7+8
1280 is something you can return to. */
b11b0904 1281#define INCOMING_RETURN_ADDR_REGNUM 15
d60bee3a 1282#define INCOMING_RETURN_ADDR_RTX \
0a81f074
RS
1283 plus_constant (word_mode, \
1284 gen_rtx_REG (word_mode, INCOMING_RETURN_ADDR_REGNUM), 8)
b11b0904
EB
1285#define DWARF_FRAME_RETURN_COLUMN \
1286 DWARF_FRAME_REGNUM (INCOMING_RETURN_ADDR_REGNUM)
d60bee3a
DE
1287
1288/* The offset from the incoming value of %sp to the top of the stack frame
1289 for the current function. On sparc64, we have to account for the stack
1290 bias if present. */
1291#define INCOMING_FRAME_SP_OFFSET SPARC_STACK_BIAS
1292
1150a841 1293/* Describe how we implement __builtin_eh_return. */
b11b0904 1294#define EH_RETURN_REGNUM 1
1150a841 1295#define EH_RETURN_DATA_REGNO(N) ((N) < 4 ? (N) + 24 : INVALID_REGNUM)
b11b0904
EB
1296#define EH_RETURN_STACKADJ_RTX gen_rtx_REG (Pmode, EH_RETURN_REGNUM)
1297
1298/* Define registers used by the epilogue and return instruction. */
1299#define EPILOGUE_USES(REGNO) \
1300 ((REGNO) == RETURN_ADDR_REGNUM \
1301 || (TARGET_FLAT \
1302 && epilogue_completed \
1303 && (REGNO) == INCOMING_RETURN_ADDR_REGNUM) \
1304 || (crtl->calls_eh_return && (REGNO) == EH_RETURN_REGNUM))
17e9e88c
JJ
1305
1306/* Select a format to encode pointers in exception handling data. CODE
1307 is 0 for data, 1 for code labels, 2 for function pointers. GLOBAL is
1308 true if the symbol may be affected by dynamic relocations.
1309
1310 If assembler and linker properly support .uaword %r_disp32(foo),
1311 then use PC relative 32-bit relocations instead of absolute relocs
1312 for shared libraries. On sparc64, use pc relative 32-bit relocs even
cf7b8b0d
JJ
1313 for binaries, to save memory.
1314
1315 binutils 2.12 would emit a R_SPARC_DISP32 dynamic relocation if the
1316 symbol %r_disp32() is against was not local, but .hidden. In that
1317 case, we have to use DW_EH_PE_absptr for pic personality. */
17e9e88c 1318#ifdef HAVE_AS_SPARC_UA_PCREL
cf7b8b0d 1319#ifdef HAVE_AS_SPARC_UA_PCREL_HIDDEN
17e9e88c
JJ
1320#define ASM_PREFERRED_EH_DATA_FORMAT(CODE,GLOBAL) \
1321 (flag_pic \
1322 ? (GLOBAL ? DW_EH_PE_indirect : 0) | DW_EH_PE_pcrel | DW_EH_PE_sdata4\
1323 : ((TARGET_ARCH64 && ! GLOBAL) \
1324 ? (DW_EH_PE_pcrel | DW_EH_PE_sdata4) \
1325 : DW_EH_PE_absptr))
cf7b8b0d
JJ
1326#else
1327#define ASM_PREFERRED_EH_DATA_FORMAT(CODE,GLOBAL) \
1328 (flag_pic \
1329 ? (GLOBAL ? DW_EH_PE_absptr : (DW_EH_PE_pcrel | DW_EH_PE_sdata4)) \
1330 : ((TARGET_ARCH64 && ! GLOBAL) \
1331 ? (DW_EH_PE_pcrel | DW_EH_PE_sdata4) \
1332 : DW_EH_PE_absptr))
1333#endif
17e9e88c
JJ
1334
1335/* Emit a PC-relative relocation. */
1336#define ASM_OUTPUT_DWARF_PCREL(FILE, SIZE, LABEL) \
1337 do { \
1338 fputs (integer_asm_op (SIZE, FALSE), FILE); \
1339 fprintf (FILE, "%%r_disp%d(", SIZE * 8); \
1340 assemble_name (FILE, LABEL); \
1341 fputc (')', FILE); \
1342 } while (0)
1343#endif
1bb87f28
JW
1344\f
1345/* Addressing modes, and classification of registers for them. */
1346
1bb87f28
JW
1347/* Macros to check register numbers against specific register classes. */
1348
1349/* These assume that REGNO is a hard or pseudo reg number.
1350 They give nonzero only if REGNO is a hard reg of the suitable class
1351 or a pseudo reg currently allocated to a suitable hard reg.
1352 Since they use reg_renumber, they are safe only once reg_renumber
aeb9f7cf
SB
1353 has been allocated, which happens in reginfo.c during register
1354 allocation. */
1bb87f28
JW
1355
1356#define REGNO_OK_FOR_INDEX_P(REGNO) \
5a53588f
DM
1357(SPARC_INT_REG_P (REGNO) || SPARC_INT_REG_P (reg_renumber[REGNO]) \
1358 || (REGNO) == FRAME_POINTER_REGNUM \
563c12b0
RH
1359 || reg_renumber[REGNO] == FRAME_POINTER_REGNUM)
1360
1361#define REGNO_OK_FOR_BASE_P(REGNO) REGNO_OK_FOR_INDEX_P (REGNO)
1362
1bb87f28 1363#define REGNO_OK_FOR_FP_P(REGNO) \
4f70758f
KG
1364 (((unsigned) (REGNO) - 32 < (TARGET_V9 ? (unsigned)64 : (unsigned)32)) \
1365 || ((unsigned) reg_renumber[REGNO] - 32 < (TARGET_V9 ? (unsigned)64 : (unsigned)32)))
0a222ba7 1366
7a6cf439
DE
1367#define REGNO_OK_FOR_CCFP_P(REGNO) \
1368 (TARGET_V9 \
4f70758f
KG
1369 && (((unsigned) (REGNO) - 96 < (unsigned)4) \
1370 || ((unsigned) reg_renumber[REGNO] - 96 < (unsigned)4)))
1bb87f28
JW
1371\f
1372/* Maximum number of registers that can appear in a valid memory address. */
1373
1374#define MAX_REGS_PER_ADDRESS 2
1375
7aca9b9c
JW
1376/* Recognize any constant value that is a valid address.
1377 When PIC, we do not accept an address that would require a scratch reg
1378 to load into a register. */
1bb87f28 1379
5751a10b 1380#define CONSTANT_ADDRESS_P(X) constant_address_p (X)
7aca9b9c
JW
1381
1382/* Define this, so that when PIC, reload won't try to reload invalid
1383 addresses which require two reload registers. */
1384
5751a10b 1385#define LEGITIMATE_PIC_OPERAND_P(X) legitimate_pic_operand_p (X)
1bb87f28 1386\f
1cb36a98
RH
1387/* Should gcc use [%reg+%lo(xx)+offset] addresses? */
1388
1389#ifdef HAVE_AS_OFFSETABLE_LO10
1390#define USE_AS_OFFSETABLE_LO10 1
1391#else
1392#define USE_AS_OFFSETABLE_LO10 0
1393#endif
1bb87f28 1394\f
8947065c
RH
1395/* Try a machine-dependent way of reloading an illegitimate address
1396 operand. If we find one, push the reload and jump to WIN. This
58e6223e
EB
1397 macro is used in only one place: `find_reloads_address' in reload.c. */
1398#define LEGITIMIZE_RELOAD_ADDRESS(X,MODE,OPNUM,TYPE,IND_LEVELS,WIN) \
1399do { \
1400 int win; \
1401 (X) = sparc_legitimize_reload_address ((X), (MODE), (OPNUM), \
1402 (int)(TYPE), (IND_LEVELS), &win); \
1403 if (win) \
1404 goto WIN; \
8947065c 1405} while (0)
1bb87f28
JW
1406\f
1407/* Specify the machine mode that this machine uses
1408 for the index in the tablejump instruction. */
67cb8900
JJ
1409/* If we ever implement any of the full models (such as CM_FULLANY),
1410 this has to be DImode in that case */
d1accaa3 1411#ifdef HAVE_GAS_SUBSECTION_ORDERING
67cb8900
JJ
1412#define CASE_VECTOR_MODE \
1413(! TARGET_PTR64 ? SImode : flag_pic ? SImode : TARGET_CM_MEDLOW ? SImode : DImode)
d1accaa3
JJ
1414#else
1415/* If assembler does not have working .subsection -1, we use DImode for pic, as otherwise
80ffc95e 1416 we have to sign extend which slows things down. */
d1accaa3
JJ
1417#define CASE_VECTOR_MODE \
1418(! TARGET_PTR64 ? SImode : flag_pic ? DImode : TARGET_CM_MEDLOW ? SImode : DImode)
1419#endif
1bb87f28 1420
1bb87f28
JW
1421/* Define this as 1 if `char' should by default be signed; else as 0. */
1422#define DEFAULT_SIGNED_CHAR 1
1423
1424/* Max number of bytes we can move from memory to memory
1425 in one reasonably fast instruction. */
2eef2ef1 1426#define MOVE_MAX 8
1bb87f28 1427
5162e02a 1428/* If a memory-to-memory move would take MOVE_RATIO or more simple
70128ad9 1429 move-instruction pairs, we will do a movmem or libcall instead. */
5162e02a 1430
e04ad03d 1431#define MOVE_RATIO(speed) ((speed) ? 8 : 3)
5162e02a 1432
9a63901f
RK
1433/* Define if operations between registers always perform the operation
1434 on the full register even if a narrower mode is specified. */
9e11bfef 1435#define WORD_REGISTER_OPERATIONS 1
9a63901f
RK
1436
1437/* Define if loading in MODE, an integral mode narrower than BITS_PER_WORD
1438 will either zero-extend or sign-extend. The value of this macro should
1439 be the code that says which one of the two operations is implicitly
f822d252 1440 done, UNKNOWN if none. */
9a63901f 1441#define LOAD_EXTEND_OP(MODE) ZERO_EXTEND
1bb87f28
JW
1442
1443/* Nonzero if access to memory by bytes is slow and undesirable.
1444 For RISC chips, it means that access to memory by bytes is no
1445 better than access by words when possible, so grab a whole word
1446 and maybe make use of that. */
1447#define SLOW_BYTE_ACCESS 1
1448
d969caf8 1449/* Define this to be nonzero if shift instructions ignore all but the low-order
80ffc95e 1450 few bits. */
d969caf8 1451#define SHIFT_COUNT_TRUNCATED 1
1bb87f28 1452
dc78280f
DM
1453/* For SImode, we make sure the top 32-bits of the register are clear and
1454 then we subtract 32 from the lzd instruction result. */
1455#define CLZ_DEFINED_VALUE_AT_ZERO(MODE, VALUE) \
1456 ((VALUE) = ((MODE) == SImode ? 32 : 64), 1)
1457
1bb87f28 1458/* Given a comparison code (EQ, NE, etc.) and the first operand of a COMPARE,
4d449554 1459 return the mode to be used for the comparison. For floating-point,
ff7e7ee0 1460 CCFP[E]mode is used. CCNZmode should be used when the first operand
7913f3d0 1461 is a PLUS, MINUS, NEG, or ASHIFT. CCmode should be used when no special
922bd191 1462 processing is needed. */
e267e177 1463#define SELECT_CC_MODE(OP,X,Y) select_cc_mode ((OP), (X), (Y))
1bb87f28 1464
5e7a8ee0 1465/* Return nonzero if MODE implies a floating point inequality can be
56149abc 1466 reversed. For SPARC this is always true because we have a full
46238b7d
JJ
1467 compliment of ordered and unordered comparisons, but until generic
1468 code knows how to reverse it correctly we keep the old definition. */
1469#define REVERSIBLE_CC_MODE(MODE) ((MODE) != CCFPEmode && (MODE) != CCFPmode)
b331b745 1470
3276910d
RK
1471/* A function address in a call instruction for indexing purposes. */
1472#define FUNCTION_MODE Pmode
1bb87f28
JW
1473
1474/* Define this if addresses of constant functions
1475 shouldn't be put through pseudo regs where they can be cse'd.
1476 Desirable on machines where ordinary constants are expensive
1477 but a CALL with constant address is cheap. */
1e8552c2 1478#define NO_FUNCTION_CSE 1
1bb87f28 1479
c15c90bb
ZW
1480/* The _Q_* comparison libcalls return booleans. */
1481#define FLOAT_LIB_COMPARE_RETURNS_BOOL(MODE, COMPARISON) ((MODE) == TFmode)
8248e2bc 1482
4e7d5d27
DM
1483/* Assume by default that the _Qp_* 64-bit libcalls are implemented such
1484 that the inputs are fully consumed before the output memory is clobbered. */
1485
1486#define TARGET_BUGGY_QP_LIB 0
1487
c15c90bb
ZW
1488/* Assume by default that we do not have the Solaris-specific conversion
1489 routines nor 64-bit integer multiply and divide routines. */
78e9b5df 1490
45dcc026
JJ
1491#define SUN_CONVERSION_LIBFUNCS 0
1492#define DITF_CONVERSION_LIBFUNCS 0
1493#define SUN_INTEGER_MULTIPLY_64 0
c5c60e15 1494
227efe87
EB
1495/* A C expression for the cost of a branch instruction. A value of 1
1496 is the default; other values are interpreted relative to that. */
1497#define BRANCH_COST(SPEED_P, PREDICTABLE_P) \
1498 (sparc_branch_cost (SPEED_P, PREDICTABLE_P))
1bb87f28
JW
1499\f
1500/* Control the assembler format that we output. */
1501
1ccfa253
DE
1502/* A C string constant describing how to begin a comment in the target
1503 assembler language. The compiler assumes that the comment will end at
1504 the end of the line. */
1505
1506#define ASM_COMMENT_START "!"
1507
1bb87f28
JW
1508/* Output to assembler file text saying following lines
1509 may contain character constants, extra white space, comments, etc. */
1510
1511#define ASM_APP_ON ""
1512
1513/* Output to assembler file text saying following lines
1514 no longer contain unusual constructs. */
1515
1516#define ASM_APP_OFF ""
1517
1bb87f28
JW
1518/* How to refer to registers in assembler output.
1519 This sequence is indexed by compiler's hard-register-number (see above). */
1520
7a6cf439
DE
1521#define REGISTER_NAMES \
1522{"%g0", "%g1", "%g2", "%g3", "%g4", "%g5", "%g6", "%g7", \
1523 "%o0", "%o1", "%o2", "%o3", "%o4", "%o5", "%sp", "%o7", \
1524 "%l0", "%l1", "%l2", "%l3", "%l4", "%l5", "%l6", "%l7", \
1525 "%i0", "%i1", "%i2", "%i3", "%i4", "%i5", "%fp", "%i7", \
1526 "%f0", "%f1", "%f2", "%f3", "%f4", "%f5", "%f6", "%f7", \
1527 "%f8", "%f9", "%f10", "%f11", "%f12", "%f13", "%f14", "%f15", \
1528 "%f16", "%f17", "%f18", "%f19", "%f20", "%f21", "%f22", "%f23", \
1529 "%f24", "%f25", "%f26", "%f27", "%f28", "%f29", "%f30", "%f31", \
1530 "%f32", "%f33", "%f34", "%f35", "%f36", "%f37", "%f38", "%f39", \
1531 "%f40", "%f41", "%f42", "%f43", "%f44", "%f45", "%f46", "%f47", \
1532 "%f48", "%f49", "%f50", "%f51", "%f52", "%f53", "%f54", "%f55", \
1533 "%f56", "%f57", "%f58", "%f59", "%f60", "%f61", "%f62", "%f63", \
10b859c0 1534 "%fcc0", "%fcc1", "%fcc2", "%fcc3", "%icc", "%sfp", "%gsr" }
ea3fa5f7 1535
c4ce6853 1536/* Define additional names for use in asm clobbers and asm declarations. */
ea3fa5f7 1537
c4ce6853
DE
1538#define ADDITIONAL_REGISTER_NAMES \
1539{{"ccr", SPARC_ICC_REG}, {"cc", SPARC_ICC_REG}}
ea3fa5f7 1540
5bcb3f13
JM
1541/* On Sun 4, this limit is 2048. We use 1000 to be safe, since the length
1542 can run past this up to a continuation point. Once we used 1500, but
1543 a single entry in C++ can run more than 500 bytes, due to the length of
1544 mangled symbol names. dbxout.c should really be fixed to do
1545 continuations when they are actually needed instead of trying to
1546 guess... */
1547#define DBX_CONTIN_LENGTH 1000
1bb87f28 1548
1bb87f28
JW
1549/* This is how to output a command to make the user-level label named NAME
1550 defined for reference from other files. */
1551
506a61b1
KG
1552/* Globalizing directive for a label. */
1553#define GLOBAL_ASM_OP "\t.global "
1bb87f28 1554
80ffc95e 1555/* The prefix to add to user-visible assembler symbols. */
1bb87f28 1556
4e0c8ad2 1557#define USER_LABEL_PREFIX "_"
1bb87f28 1558
1bb87f28
JW
1559/* This is how to store into the string LABEL
1560 the symbol_ref name of an internal numbered label where
1561 PREFIX is the class of label and NUM is the number within the class.
1562 This is suitable for output with `assemble_name'. */
1563
1564#define ASM_GENERATE_INTERNAL_LABEL(LABEL,PREFIX,NUM) \
4f70758f 1565 sprintf ((LABEL), "*%s%ld", (PREFIX), (long)(NUM))
1bb87f28 1566
e0d80184
DM
1567/* This is how we hook in and defer the case-vector until the end of
1568 the function. */
e0d80184
DM
1569#define ASM_OUTPUT_ADDR_VEC(LAB,VEC) \
1570 sparc_defer_case_vector ((LAB),(VEC), 0)
1571
1572#define ASM_OUTPUT_ADDR_DIFF_VEC(LAB,VEC) \
1573 sparc_defer_case_vector ((LAB),(VEC), 1)
1574
1bb87f28
JW
1575/* This is how to output an element of a case-vector that is absolute. */
1576
1577#define ASM_OUTPUT_ADDR_VEC_ELT(FILE, VALUE) \
4b69d2a3
RS
1578do { \
1579 char label[30]; \
1580 ASM_GENERATE_INTERNAL_LABEL (label, "L", VALUE); \
67cb8900 1581 if (CASE_VECTOR_MODE == SImode) \
7a6cf439 1582 fprintf (FILE, "\t.word\t"); \
7a6cf439
DE
1583 else \
1584 fprintf (FILE, "\t.xword\t"); \
4b69d2a3 1585 assemble_name (FILE, label); \
e0d80184 1586 fputc ('\n', FILE); \
4b69d2a3 1587} while (0)
1bb87f28
JW
1588
1589/* This is how to output an element of a case-vector that is relative.
1590 (SPARC uses such vectors only when generating PIC.) */
1591
33f7f353 1592#define ASM_OUTPUT_ADDR_DIFF_ELT(FILE, BODY, VALUE, REL) \
4b69d2a3
RS
1593do { \
1594 char label[30]; \
e0d80184 1595 ASM_GENERATE_INTERNAL_LABEL (label, "L", (VALUE)); \
67cb8900 1596 if (CASE_VECTOR_MODE == SImode) \
7a6cf439 1597 fprintf (FILE, "\t.word\t"); \
7a6cf439
DE
1598 else \
1599 fprintf (FILE, "\t.xword\t"); \
4b69d2a3 1600 assemble_name (FILE, label); \
e0d80184
DM
1601 ASM_GENERATE_INTERNAL_LABEL (label, "L", (REL)); \
1602 fputc ('-', FILE); \
1603 assemble_name (FILE, label); \
1604 fputc ('\n', FILE); \
4b69d2a3 1605} while (0)
1bb87f28 1606
d1accaa3
JJ
1607/* This is what to output before and after case-vector (both
1608 relative and absolute). If .subsection -1 works, we put case-vectors
1609 at the beginning of the current section. */
1610
1611#ifdef HAVE_GAS_SUBSECTION_ORDERING
1612
1613#define ASM_OUTPUT_ADDR_VEC_START(FILE) \
1614 fprintf(FILE, "\t.subsection\t-1\n")
1615
1616#define ASM_OUTPUT_ADDR_VEC_END(FILE) \
1617 fprintf(FILE, "\t.previous\n")
1618
1619#endif
1620
1bb87f28
JW
1621/* This is how to output an assembler line
1622 that says to advance the location counter
1623 to a multiple of 2**LOG bytes. */
1624
1625#define ASM_OUTPUT_ALIGN(FILE,LOG) \
1626 if ((LOG) != 0) \
3f1a2e57 1627 fprintf (FILE, "\t.align %d\n", (1 << (LOG)))
1bb87f28
JW
1628
1629#define ASM_OUTPUT_SKIP(FILE,SIZE) \
16998094 1630 fprintf (FILE, "\t.skip " HOST_WIDE_INT_PRINT_UNSIGNED"\n", (SIZE))
1bb87f28
JW
1631
1632/* This says how to output an assembler line
1633 to define a global common symbol. */
1634
1635#define ASM_OUTPUT_COMMON(FILE, NAME, SIZE, ROUNDED) \
b277ceaf 1636( fputs ("\t.common ", (FILE)), \
1bb87f28 1637 assemble_name ((FILE), (NAME)), \
16998094 1638 fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED",\"bss\"\n", (SIZE)))
1bb87f28 1639
b277ceaf
JW
1640/* This says how to output an assembler line to define a local common
1641 symbol. */
1bb87f28 1642
b277ceaf
JW
1643#define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGNED) \
1644( fputs ("\t.reserve ", (FILE)), \
1645 assemble_name ((FILE), (NAME)), \
16998094 1646 fprintf ((FILE), "," HOST_WIDE_INT_PRINT_UNSIGNED",\"bss\",%u\n", \
b277ceaf 1647 (SIZE), ((ALIGNED) / BITS_PER_UNIT)))
1bb87f28 1648
101d9529
JM
1649/* A C statement (sans semicolon) to output to the stdio stream
1650 FILE the assembler definition of uninitialized global DECL named
1651 NAME whose size is SIZE bytes and alignment is ALIGN bytes.
1652 Try to use asm_output_aligned_bss to implement this macro. */
1653
1654#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
1655 do { \
101d9529
JM
1656 ASM_OUTPUT_ALIGNED_LOCAL (FILE, NAME, SIZE, ALIGN); \
1657 } while (0)
1658
c14f2655
RS
1659/* Output #ident as a .ident. */
1660
a8781821
SB
1661#undef TARGET_ASM_OUTPUT_IDENT
1662#define TARGET_ASM_OUTPUT_IDENT default_asm_output_ident_directive
c14f2655 1663
4e5b002b
EB
1664/* Prettify the assembly. */
1665
1666extern int sparc_indent_opcode;
1667
1668#define ASM_OUTPUT_OPCODE(FILE, PTR) \
1669 do { \
1670 if (sparc_indent_opcode) \
1671 { \
1672 putc (' ', FILE); \
1673 sparc_indent_opcode = 0; \
1674 } \
1675 } while (0)
1676
fdbe66f2
EB
1677/* TLS support defaulting to original Sun flavor. GNU extensions
1678 must be activated in separate configuration files. */
5751a10b
JJ
1679#ifdef HAVE_AS_TLS
1680#define TARGET_TLS 1
1681#else
1682#define TARGET_TLS 0
1683#endif
fdbe66f2 1684
5751a10b
JJ
1685#define TARGET_SUN_TLS TARGET_TLS
1686#define TARGET_GNU_TLS 0
1687
5b1efcb7 1688#ifdef HAVE_AS_FMAF_HPC_VIS3
e8b141b5 1689#define AS_NIAGARA3_FLAG "d"
5b1efcb7
EB
1690#else
1691#define AS_NIAGARA3_FLAG "b"
e8b141b5
DM
1692#endif
1693
8b98b5fd
DM
1694#ifdef HAVE_AS_SPARC4
1695#define AS_NIAGARA4_FLAG "-xarch=sparc4"
1696#else
1697#define AS_NIAGARA4_FLAG "-Av9" AS_NIAGARA3_FLAG
1698#endif
1699
690f24b7
JM
1700#ifdef HAVE_AS_SPARC5_VIS4
1701#define AS_NIAGARA7_FLAG "-xarch=sparc5"
1702#else
1703#define AS_NIAGARA7_FLAG AS_NIAGARA4_FLAG
1704#endif
1705
bcc3c3f1
JM
1706#ifdef HAVE_AS_SPARC6
1707#define AS_M8_FLAG "-xarch=sparc6"
1708#else
1709#define AS_M8_FLAG AS_NIAGARA7_FLAG
1710#endif
1711
1f65ae7a
EB
1712#ifdef HAVE_AS_LEON
1713#define AS_LEON_FLAG "-Aleon"
d81230b5 1714#define AS_LEONV7_FLAG "-Aleon"
1f65ae7a
EB
1715#else
1716#define AS_LEON_FLAG "-Av8"
d81230b5 1717#define AS_LEONV7_FLAG "-Av7"
1f65ae7a
EB
1718#endif
1719
c5fcd670
AT
1720/* We use gcc _mcount for profiling. */
1721#define NO_PROFILE_COUNTERS 0
a0bd60d1
DM
1722
1723/* Debug support */
1724#define MASK_DEBUG_OPTIONS 0x01 /* debug option handling */
1725#define MASK_DEBUG_ALL MASK_DEBUG_OPTIONS
1726
1727#define TARGET_DEBUG_OPTIONS (sparc_debug & MASK_DEBUG_OPTIONS)
6cc7fb90
RH
1728
1729/* By default, use the weakest memory model for the cpu. */
1730#ifndef SUBTARGET_DEFAULT_MEMORY_MODEL
1731#define SUBTARGET_DEFAULT_MEMORY_MODEL SMM_DEFAULT
1732#endif
fde66fde
EB
1733
1734/* Define this to 1 if the FE_EXCEPT values defined in fenv.h start at 1. */
1735#define SPARC_LOW_FE_EXCEPT_VALUES 0
eaac029f
EB
1736
1737#define TARGET_SUPPORTS_WIDE_INT 1