OSDN Git Service

gcc/testsuite:
[pf3gnuchains/gcc-fork.git] / gcc / config / i386 / sol2-10.h
1 /* Solaris 10 configuration.
2    Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010
3    Free Software Foundation, Inc.
4    Contributed by CodeSourcery, LLC.
5
6 This file is part of GCC.
7
8 GCC 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 3, or (at your option)
11 any later version.
12
13 GCC 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 GCC; see the file COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 #undef ASM_COMMENT_START
23 #define ASM_COMMENT_START "/"
24
25 /* binutils' GNU as understands --32 and --64, but the native Solaris
26    assembler requires -xarch=generic or -xarch=generic64 instead.  */
27 #undef ASM_SPEC
28 #ifdef USE_GAS
29 #define ASM_SPEC "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} " \
30                  "%{Wa,*:%*} %{m32:--32} %{m64:--64} -s %(asm_cpu)"
31 #else
32 #define ASM_SPEC "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} " \
33                  "%{Wa,*:%*} %{m32:-xarch=generic} %{m64:-xarch=generic64} " \
34                  "-s %(asm_cpu)"
35 #endif
36
37 /* The native Solaris assembler can't calculate the difference between
38    symbols in different sections, which causes problems for -fPIC jump
39    tables in .rodata.  */
40 #ifndef HAVE_AS_IX86_DIFF_SECT_DELTA
41 #undef JUMP_TABLES_IN_TEXT_SECTION
42 #define JUMP_TABLES_IN_TEXT_SECTION 1
43
44 /* The native Solaris assembler cannot handle the SYMBOL-. syntax, but
45    requires SYMBOL@rel/@rel64 instead.  */
46 #define ASM_OUTPUT_DWARF_PCREL(FILE, SIZE, LABEL)       \
47   do {                                                  \
48     fputs (integer_asm_op (SIZE, FALSE), FILE);         \
49     assemble_name (FILE, LABEL);                        \
50     fputs (SIZE == 8 ? "@rel64" : "@rel", FILE);        \
51   } while (0)
52 #endif
53
54 /* As in sol2.h, override the default from i386/x86-64.h to work around
55    Sun as TLS bug.  */
56 #undef  ASM_OUTPUT_ALIGNED_COMMON
57 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN)              \
58   do                                                                    \
59     {                                                                   \
60       if (TARGET_SUN_TLS                                                \
61           && in_section                                                 \
62           && ((in_section->common.flags & (SECTION_TLS | SECTION_BSS))  \
63               == (SECTION_TLS | SECTION_BSS)))                          \
64         switch_to_section (bss_section);                                \
65       x86_elf_aligned_common (FILE, NAME, SIZE, ALIGN);                 \
66     }                                                                   \
67   while  (0)
68
69 #undef NO_PROFILE_COUNTERS
70
71 #undef MCOUNT_NAME
72 #define MCOUNT_NAME "_mcount"
73
74 #undef WCHAR_TYPE
75 #define WCHAR_TYPE (TARGET_64BIT ? "int" : "long int")
76 #undef WCHAR_TYPE_SIZE
77 #define WCHAR_TYPE_SIZE 32
78
79 #undef WINT_TYPE
80 #define WINT_TYPE (TARGET_64BIT ? "int" : "long int")
81 #undef WINT_TYPE_SIZE
82 #define WINT_TYPE_SIZE 32
83
84 #define SUBTARGET_OVERRIDE_OPTIONS                              \
85   do                                                            \
86     {                                                           \
87       if (flag_omit_frame_pointer == 2)                         \
88         flag_omit_frame_pointer = 0;                            \
89     }                                                           \
90   while (0)
91
92 /* Override i386/sol2.h version: return 8-byte vectors in MMX registers if
93    possible, matching Sun Studio 12 Update 1+ compilers and other x86
94    targets.  */
95 #undef TARGET_SUBTARGET_DEFAULT
96 #define TARGET_SUBTARGET_DEFAULT \
97         (MASK_80387 | MASK_IEEE_FP | MASK_FLOAT_RETURNS)
98
99 #define SUBTARGET_OPTIMIZATION_OPTIONS                  \
100   do                                                    \
101     {                                                   \
102       if (optimize >= 1)                                \
103         target_flags |= MASK_OMIT_LEAF_FRAME_POINTER;   \
104     }                                                   \
105   while (0)
106
107 #define MULTILIB_DEFAULTS { "m32" }
108
109 #undef LINK_ARCH64_SPEC_BASE
110 #define LINK_ARCH64_SPEC_BASE \
111   "%{G:-G} \
112    %{YP,*} \
113    %{R*} \
114    %{compat-bsd: \
115      %{!YP,*:%{p|pg:-Y P,/usr/ucblib/64:/usr/lib/libp/64:/lib/64:/usr/lib/64} \
116              %{!p:%{!pg:-Y P,/usr/ucblib/64:/lib:/usr/lib/64}}} \
117              -R /usr/ucblib/64} \
118    %{!compat-bsd: \
119      %{!YP,*:%{p|pg:-Y P,/usr/lib/libp/64:/lib/64:/usr/lib/64} \
120              %{!p:%{!pg:-Y P,/lib/64:/usr/lib/64}}}}"
121
122 #undef LINK_ARCH64_SPEC
123 #define LINK_ARCH64_SPEC LINK_ARCH64_SPEC_BASE
124
125 #ifdef TARGET_GNU_LD
126 /* Since binutils 2.21, GNU ld supports new *_sol2 emulations to strictly
127    follow the Solaris 2 ABI.  Prefer them if present.  */
128 #ifdef HAVE_LD_SOL2_EMULATION
129 #define I386_EMULATION "elf_i386_sol2"
130 #define X86_64_EMULATION "elf_x86_64_sol2"
131 #else
132 #define I386_EMULATION "elf_i386"
133 #define X86_64_EMULATION "elf_x86_64"
134 #endif
135
136 #define TARGET_LD_EMULATION "%{m64:-m " X86_64_EMULATION "}" \
137                             "%{!m64:-m " I386_EMULATION "} "
138 #else
139 #define TARGET_LD_EMULATION ""
140 #endif
141
142 #undef LINK_ARCH_SPEC
143 #define LINK_ARCH_SPEC TARGET_LD_EMULATION \
144                        "%{m64:" LINK_ARCH64_SPEC "}%{!m64:" LINK_ARCH32_SPEC "}"
145
146 /* We do not need to search a special directory for startup files.  */
147 #undef MD_STARTFILE_PREFIX
148
149 #undef TARGET_ASM_NAMED_SECTION
150 #define TARGET_ASM_NAMED_SECTION i386_solaris_elf_named_section