OSDN Git Service

2001-11-12 David O'Brien <obrien@FreeBSD.org>
[pf3gnuchains/gcc-fork.git] / gcc / config / sparc / sp64-elf.h
1 /* Definitions of target machine for GNU compiler, for SPARC64, ELF.
2    Copyright (C) 1994, 1995, 1996, 1997, 1998, 2000
3    Free Software Foundation, Inc.
4    Contributed by Doug Evans, dje@cygnus.com.
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23 /* ??? We're taking the scheme of including another file and then overriding
24    the values we don't like a bit too far here.  The alternative is to more or
25    less duplicate all of svr4.h, sparc/sysv4.h, and sparc/sol2.h here
26    (suitably cleaned up).  */
27
28 #undef TARGET_VERSION
29 #define TARGET_VERSION fprintf (stderr, " (sparc64-elf)")
30
31 /* A 64 bit v9 compiler in a Medium/Anywhere code model environment.  */
32
33 #undef TARGET_DEFAULT
34 #define TARGET_DEFAULT \
35 (MASK_V9 + MASK_PTR64 + MASK_64BIT + MASK_HARD_QUAD \
36  + MASK_APP_REGS + MASK_EPILOGUE + MASK_FPU + MASK_STACK_BIAS + MASK_LONG_DOUBLE_128)
37
38 #undef SPARC_DEFAULT_CMODEL
39 #define SPARC_DEFAULT_CMODEL CM_EMBMEDANY
40
41 #undef CPP_PREDEFINES
42 #define CPP_PREDEFINES "-Dsparc -D__ELF__ -Acpu=sparc -Amachine=sparc"
43
44 /* __svr4__ is used by the C library (FIXME) */
45 #undef CPP_SUBTARGET_SPEC
46 #define CPP_SUBTARGET_SPEC "-D__svr4__"
47
48 #undef MD_EXEC_PREFIX
49 #undef MD_STARTFILE_PREFIX
50
51 #undef ASM_SPEC
52 #define ASM_SPEC "\
53 %{v:-V} -s %{fpic:-K PIC} %{fPIC:-K PIC} \
54 %{mlittle-endian:-EL} \
55 %(asm_cpu) %(asm_arch) \
56 "
57
58 /* This is taken from sol2.h.  */
59 #undef LINK_SPEC
60 #define LINK_SPEC "\
61 %{v:-V} \
62 %{mlittle-endian:-EL} \
63 "
64
65 /* We need something a little simpler for the embedded environment.
66    Profiling doesn't really work yet so we just copy the default.  */
67 #undef STARTFILE_SPEC
68 #define STARTFILE_SPEC "\
69 %{!shared:%{pg:gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt0.o%s}}} \
70 crtbegin.o%s \
71 "
72
73 #undef ENDFILE_SPEC
74 #define ENDFILE_SPEC "crtend.o%s"
75
76 /* Use the default (for now).  */
77 #undef LIB_SPEC
78
79 /* V9 chips can handle either endianness.  */
80 #undef SUBTARGET_SWITCHES
81 #define SUBTARGET_SWITCHES \
82 {"big-endian", -MASK_LITTLE_ENDIAN, N_("Generate code for big endian") }, \
83 {"little-endian", MASK_LITTLE_ENDIAN, N_("Generate code for little endian") },
84
85 #undef BYTES_BIG_ENDIAN
86 #define BYTES_BIG_ENDIAN (! TARGET_LITTLE_ENDIAN)
87
88 #undef WORDS_BIG_ENDIAN
89 #define WORDS_BIG_ENDIAN (! TARGET_LITTLE_ENDIAN)
90
91 /* ??? This should be 32 bits for v9 but what can we do?  */
92 #undef WCHAR_TYPE
93 #define WCHAR_TYPE "short unsigned int"
94
95 #undef WCHAR_TYPE_SIZE
96 #define WCHAR_TYPE_SIZE 16
97
98 #undef LONG_DOUBLE_TYPE_SIZE
99 #define LONG_DOUBLE_TYPE_SIZE 128
100
101 /* The medium/anywhere code model practically requires us to put jump tables
102    in the text section as gcc is unable to distinguish LABEL_REF's of jump
103    tables from other label refs (when we need to).  */
104 /* But we now defer the tables to the end of the function, so we make
105    this 0 to not confuse the branch shortening code.  */
106 #undef JUMP_TABLES_IN_TEXT_SECTION
107 #define JUMP_TABLES_IN_TEXT_SECTION 0
108
109 /* System V Release 4 uses DWARF debugging info.
110    GDB doesn't support 64 bit stabs yet and the desired debug format is DWARF
111    anyway so it is the default.  */
112
113 #define DWARF_DEBUGGING_INFO
114 #define DWARF2_DEBUGGING_INFO
115 #define DBX_DEBUGGING_INFO
116
117 #undef PREFERRED_DEBUGGING_TYPE
118 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
119
120 /* Define the names of various pseudo-ops used by the Sparc/svr4 assembler.  */
121
122 #define UNALIGNED_DOUBLE_INT_ASM_OP     "\t.uaxword\t"