OSDN Git Service

3867c7dd2453e6f6709b7acc879f90d37e7ce3de
[pf3gnuchains/gcc-fork.git] / gcc / config / sol2.h
1 /* Operating system specific defines to be used when targeting GCC for any
2    Solaris 2 system.
3    Copyright 2002, 2003, 2004, 2007, 2008, 2009, 2010, 2011
4    Free Software Foundation, Inc.
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 /* We are compiling for Solaris 2 now.  */
23 #define TARGET_SOLARIS 1
24
25 /* Solaris 2 (at least as of 2.5.1) uses a 32-bit wchar_t.  */
26 #undef WCHAR_TYPE
27 #define WCHAR_TYPE "long int"
28
29 #undef WCHAR_TYPE_SIZE
30 #define WCHAR_TYPE_SIZE BITS_PER_WORD
31
32 /* Solaris 2 uses a wint_t different from the default. This is required
33    by the SCD 2.4.1, p. 6-83, Figure 6-66.  */
34 #undef  WINT_TYPE
35 #define WINT_TYPE "long int"
36
37 #undef  WINT_TYPE_SIZE
38 #define WINT_TYPE_SIZE BITS_PER_WORD
39
40 #define SIG_ATOMIC_TYPE "int"
41
42 /* ??? This definition of int8_t follows the system header but does
43    not conform to C99.  Likewise int_fast8_t, int_least8_t.  */
44 #define INT8_TYPE "char"
45 #define INT16_TYPE "short int"
46 #define INT32_TYPE "int"
47 #define INT64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
48 #define UINT8_TYPE "unsigned char"
49 #define UINT16_TYPE "short unsigned int"
50 #define UINT32_TYPE "unsigned int"
51 #define UINT64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
52
53 #define INT_LEAST8_TYPE "char"
54 #define INT_LEAST16_TYPE "short int"
55 #define INT_LEAST32_TYPE "int"
56 #define INT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
57 #define UINT_LEAST8_TYPE "unsigned char"
58 #define UINT_LEAST16_TYPE "short unsigned int"
59 #define UINT_LEAST32_TYPE "unsigned int"
60 #define UINT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
61
62 #define INT_FAST8_TYPE "char"
63 #define INT_FAST16_TYPE "int"
64 #define INT_FAST32_TYPE "int"
65 #define INT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
66 #define UINT_FAST8_TYPE "unsigned char"
67 #define UINT_FAST16_TYPE "unsigned int"
68 #define UINT_FAST32_TYPE "unsigned int"
69 #define UINT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
70
71 #define INTPTR_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "int")
72 #define UINTPTR_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "unsigned int")
73
74 #undef CPP_SUBTARGET_SPEC
75 #define CPP_SUBTARGET_SPEC "\
76 %{pthreads|pthread:-D_REENTRANT -D_PTHREADS}"
77
78 /* Names to predefine in the preprocessor for this target machine.  */
79 #define TARGET_SUB_OS_CPP_BUILTINS()
80 #define TARGET_OS_CPP_BUILTINS()                        \
81     do {                                                \
82         builtin_define_std ("unix");                    \
83         builtin_define_std ("sun");                     \
84         builtin_define ("__svr4__");                    \
85         builtin_define ("__SVR4");                      \
86         builtin_assert ("system=unix");                 \
87         builtin_assert ("system=svr4");                 \
88         /* For C++ we need to add some additional macro \
89            definitions required by the C++ standard     \
90            library.  */                                 \
91         if (c_dialect_cxx ())                           \
92           {                                             \
93             builtin_define ("__STDC_VERSION__=199901L");\
94             builtin_define ("_XOPEN_SOURCE=600");       \
95             builtin_define ("_LARGEFILE_SOURCE=1");     \
96             builtin_define ("_LARGEFILE64_SOURCE=1");   \
97             builtin_define ("__EXTENSIONS__");          \
98           }                                             \
99         TARGET_SUB_OS_CPP_BUILTINS();                   \
100     } while (0)
101
102 /* It's safe to pass -s always, even if -g is not used.  Those options are
103    handled by both Sun as and GNU as.  */
104 #define ASM_SPEC_BASE \
105 "%{v:-V} %{Qy:} %{!Qn:-Qy} %{Ym,*} -s %(asm_cpu)"
106
107 #define ASM_PIC_SPEC " %{fpic|fpie|fPIC|fPIE:-K PIC}"
108
109 #undef LIB_SPEC
110 #define LIB_SPEC \
111   "%{!symbolic:\
112      %{pthreads|pthread:" \
113         LIB_THREAD_LDFLAGS_SPEC " -lpthread " LIB_TLS_SPEC "} \
114      %{fprofile-generate*:" \
115         LIB_THREAD_LDFLAGS_SPEC " " LIB_TLS_SPEC "} \
116      %{p|pg:-ldl} -lc}"
117
118 #ifndef CROSS_DIRECTORY_STRUCTURE
119 #undef MD_EXEC_PREFIX
120 #define MD_EXEC_PREFIX "/usr/ccs/bin/"
121
122 #undef MD_STARTFILE_PREFIX
123 #define MD_STARTFILE_PREFIX "/usr/ccs/lib/"
124 #endif
125
126 #undef STARTFILE_ARCH32_SPEC
127 #define STARTFILE_ARCH32_SPEC "%{ansi:values-Xc.o%s} \
128                             %{!ansi:values-Xa.o%s}"
129
130 #undef STARTFILE_ARCH_SPEC
131 #define STARTFILE_ARCH_SPEC STARTFILE_ARCH32_SPEC
132
133 /* We don't use the standard svr4 STARTFILE_SPEC because it's wrong for us.  */
134 #undef STARTFILE_SPEC
135 #define STARTFILE_SPEC "%{!shared: \
136                          %{!symbolic: \
137                           %{p:mcrt1.o%s} \
138                           %{!p: \
139                             %{pg:gcrt1.o%s gmon.o%s} \
140                             %{!pg:crt1.o%s}}}} \
141                         crti.o%s %(startfile_arch) \
142                         crtbegin.o%s"
143
144 #undef  ENDFILE_SPEC
145 #define ENDFILE_SPEC \
146   "%{Ofast|ffast-math|funsafe-math-optimizations:crtfastmath.o%s} \
147    crtend.o%s crtn.o%s"
148
149 #undef LINK_ARCH32_SPEC_BASE
150 #define LINK_ARCH32_SPEC_BASE \
151   "%{G:-G} \
152    %{YP,*} \
153    %{R*} \
154    %{!YP,*:%{p|pg:-Y P,%R/usr/ccs/lib/libp:%R/usr/lib/libp:%R/usr/ccs/lib:%R/lib:%R/usr/lib} \
155            %{!p:%{!pg:-Y P,%R/usr/ccs/lib:%R/lib:%R/usr/lib}}}"
156
157 #undef LINK_ARCH32_SPEC
158 #define LINK_ARCH32_SPEC LINK_ARCH32_SPEC_BASE
159
160 #undef LINK_ARCH_SPEC
161 #define LINK_ARCH_SPEC LINK_ARCH32_SPEC
162
163 #ifndef USE_GLD
164 /* With Sun ld, -rdynamic is a no-op.  */
165 #define RDYNAMIC_SPEC ""
166 #else
167 /* GNU ld needs --export-dynamic to implement -rdynamic.  */
168 #define RDYNAMIC_SPEC "--export-dynamic"
169 #endif
170
171 #undef  LINK_SPEC
172 #define LINK_SPEC \
173   "%{h*} %{v:-V} \
174    %{!shared:%{!static:%{rdynamic: " RDYNAMIC_SPEC "}}} \
175    %{static:-dn -Bstatic} \
176    %{shared:-G -dy %{!mimpure-text:-z text}} \
177    %{symbolic:-Bsymbolic -G -dy -z text} \
178    %(link_arch) \
179    %{Qy:} %{!Qn:-Qy}"
180
181 #ifdef USE_GLD
182 /* Solaris 11 build 135+ implements dl_iterate_phdr.  GNU ld needs
183    --eh-frame-hdr to create the required .eh_frame_hdr sections.  */
184 #if defined(HAVE_LD_EH_FRAME_HDR) && defined(TARGET_DL_ITERATE_PHDR)
185 #define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
186 #endif /* HAVE_LD_EH_FRAME && TARGET_DL_ITERATE_PHDR */
187 #endif
188
189 #ifndef USE_GLD
190 /* The default MFLIB_SPEC is GNU ld specific.  */
191 #define MFLIB_SPEC ""
192 #endif
193
194 /* collect2.c can only parse GNU nm -n output.  Solaris nm needs -png to
195    produce the same format.  */
196 #define NM_FLAGS "-png"
197 \f
198 /* The system headers under Solaris 2 are C++-aware since 2.0.  */
199 #define NO_IMPLICIT_EXTERN_C
200
201 #define STDC_0_IN_SYSTEM_HEADERS 1
202
203 /* Support Solaris-specific format checking for cmn_err.  */
204 #define TARGET_N_FORMAT_TYPES 1
205 #define TARGET_FORMAT_TYPES solaris_format_types
206
207 /* #pragma init and #pragma fini are implemented on top of init and
208    fini attributes.  */
209 #define SOLARIS_ATTRIBUTE_TABLE                                         \
210   { "init",      0, 0, true,  false,  false, NULL, false },             \
211   { "fini",      0, 0, true,  false,  false, NULL, false }
212
213 /* Solaris-specific #pragmas are implemented on top of attributes.  Hook in
214    the bits from config/sol2.c.  */
215 #define SUBTARGET_INSERT_ATTRIBUTES solaris_insert_attributes
216 #define SUBTARGET_ATTRIBUTE_TABLE SOLARIS_ATTRIBUTE_TABLE
217
218 /* Allow macro expansion in #pragma pack.  */
219 #define HANDLE_PRAGMA_PACK_WITH_EXPANSION
220
221 /* Solaris/x86 as and gas support unquoted section names.  */
222 #define SECTION_NAME_FORMAT     "%s"
223
224 /* This is how to declare the size of a function.  For Solaris, we output
225    any .init or .fini entries here.  */
226 #undef ASM_DECLARE_FUNCTION_SIZE
227 #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL)            \
228   do                                                            \
229     {                                                           \
230       if (!flag_inhibit_size_directive)                         \
231         ASM_OUTPUT_MEASURED_SIZE (FILE, FNAME);                 \
232       solaris_output_init_fini (FILE, DECL);                    \
233     }                                                           \
234   while (0)
235
236 /* Solaris as has a bug: a .common directive in .tbss or .tdata section
237    behaves as .tls_common rather than normal non-TLS .common.  */
238 #undef  ASM_OUTPUT_ALIGNED_COMMON
239 #define ASM_OUTPUT_ALIGNED_COMMON(FILE, NAME, SIZE, ALIGN)              \
240   do                                                                    \
241     {                                                                   \
242       if (TARGET_SUN_TLS                                                \
243           && in_section                                                 \
244           && ((in_section->common.flags & SECTION_TLS) == SECTION_TLS)) \
245         switch_to_section (bss_section);                                \
246       fprintf ((FILE), "%s", COMMON_ASM_OP);                            \
247       assemble_name ((FILE), (NAME));                                   \
248       fprintf ((FILE), ","HOST_WIDE_INT_PRINT_UNSIGNED",%u\n",          \
249                (SIZE), (ALIGN) / BITS_PER_UNIT);                        \
250     }                                                                   \
251   while (0)
252
253 #ifndef USE_GAS
254 #undef TARGET_ASM_ASSEMBLE_VISIBILITY
255 #define TARGET_ASM_ASSEMBLE_VISIBILITY solaris_assemble_visibility
256
257 #define AS_NEEDS_DASH_FOR_PIPED_INPUT
258
259 /* The Solaris assembler cannot grok .stabd directives.  */
260 #undef NO_DBX_BNSYM_ENSYM
261 #define NO_DBX_BNSYM_ENSYM 1
262 #endif
263
264 #ifndef USE_GLD
265 /* The Solaris linker doesn't understand constructor priorities.  */
266 #undef SUPPORTS_INIT_PRIORITY
267 #define SUPPORTS_INIT_PRIORITY 0
268 #endif
269
270 /* Solaris has an implementation of __enable_execute_stack.  */
271 #define HAVE_ENABLE_EXECUTE_STACK
272
273 /* Static stack checking is supported by means of probes.  */
274 #define STACK_CHECK_STATIC_BUILTIN 1
275
276 #define TARGET_POSIX_IO
277
278 extern GTY(()) tree solaris_pending_aligns;
279 extern GTY(()) tree solaris_pending_inits;
280 extern GTY(()) tree solaris_pending_finis;