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