2014-12-19 Andrew MacLeod <amacleod@redhat.com>
[official-gcc.git] / gcc / config / sol2.h
blob43e081e39e153433fb091bb70b40dbbe0e9b81b2
1 /* Operating system specific defines to be used when targeting GCC for any
2 Solaris 2 system.
3 Copyright (C) 2002-2014 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3, or (at your option)
10 any later version.
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* We are compiling for Solaris 2 now. */
22 #define TARGET_SOLARIS 1
24 /* wchar_t is called differently in <wchar.h> for 32 and 64-bit
25 compilations. This is called for by SCD 2.4.1, p. 6-83, Figure 6-65
26 (32-bit) and p. 6P-10, Figure 6.38 (64-bit). */
28 #undef WCHAR_TYPE
29 #define WCHAR_TYPE (TARGET_64BIT ? "int" : "long int")
31 #undef WCHAR_TYPE_SIZE
32 #define WCHAR_TYPE_SIZE 32
34 /* Same for wint_t. See SCD 2.4.1, p. 6-83, Figure 6-66 (32-bit). There's
35 no corresponding 64-bit definition, but this is what Solaris 8
36 <iso/wchar_iso.h> uses. */
38 #undef WINT_TYPE
39 #define WINT_TYPE (TARGET_64BIT ? "int" : "long int")
41 #undef WINT_TYPE_SIZE
42 #define WINT_TYPE_SIZE 32
44 #define SIG_ATOMIC_TYPE "int"
46 /* ??? This definition of int8_t follows the system header but does
47 not conform to C99. Likewise int_fast8_t, int_least8_t. */
48 #define INT8_TYPE "char"
49 #define INT16_TYPE "short int"
50 #define INT32_TYPE "int"
51 #define INT64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
52 #define UINT8_TYPE "unsigned char"
53 #define UINT16_TYPE "short unsigned int"
54 #define UINT32_TYPE "unsigned int"
55 #define UINT64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
57 #define INT_LEAST8_TYPE "char"
58 #define INT_LEAST16_TYPE "short int"
59 #define INT_LEAST32_TYPE "int"
60 #define INT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
61 #define UINT_LEAST8_TYPE "unsigned char"
62 #define UINT_LEAST16_TYPE "short unsigned int"
63 #define UINT_LEAST32_TYPE "unsigned int"
64 #define UINT_LEAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
66 #define INT_FAST8_TYPE "char"
67 #define INT_FAST16_TYPE "int"
68 #define INT_FAST32_TYPE "int"
69 #define INT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "long long int")
70 #define UINT_FAST8_TYPE "unsigned char"
71 #define UINT_FAST16_TYPE "unsigned int"
72 #define UINT_FAST32_TYPE "unsigned int"
73 #define UINT_FAST64_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "long long unsigned int")
75 #define INTPTR_TYPE (LONG_TYPE_SIZE == 64 ? "long int" : "int")
76 #define UINTPTR_TYPE (LONG_TYPE_SIZE == 64 ? "long unsigned int" : "unsigned int")
78 #undef CPP_SUBTARGET_SPEC
79 #define CPP_SUBTARGET_SPEC "\
80 %{pthreads|pthread:-D_REENTRANT -D_PTHREADS}"
82 /* Names to predefine in the preprocessor for this target machine. */
83 #define TARGET_SUB_OS_CPP_BUILTINS()
84 #define TARGET_OS_CPP_BUILTINS() \
85 do { \
86 builtin_define_std ("unix"); \
87 builtin_define_std ("sun"); \
88 builtin_define ("__svr4__"); \
89 builtin_define ("__SVR4"); \
90 builtin_assert ("system=unix"); \
91 builtin_assert ("system=svr4"); \
92 /* For C++ we need to add some additional macro \
93 definitions required by the C++ standard \
94 library. */ \
95 if (c_dialect_cxx ()) \
96 { \
97 builtin_define ("__STDC_VERSION__=199901L");\
98 builtin_define ("_XOPEN_SOURCE=600"); \
99 builtin_define ("_LARGEFILE_SOURCE=1"); \
100 builtin_define ("_LARGEFILE64_SOURCE=1"); \
101 builtin_define ("__EXTENSIONS__"); \
103 TARGET_SUB_OS_CPP_BUILTINS(); \
104 } while (0)
106 #define SUBTARGET_OVERRIDE_OPTIONS \
107 do { \
108 solaris_override_options (); \
109 } while (0)
111 #if DEFAULT_ARCH32_P
112 #define MULTILIB_DEFAULTS { "m32" }
113 #else
114 #define MULTILIB_DEFAULTS { "m64" }
115 #endif
117 #if DEFAULT_ARCH32_P
118 #define DEF_ARCH32_SPEC(__str) "%{!m64:" __str "}"
119 #define DEF_ARCH64_SPEC(__str) "%{m64:" __str "}"
120 #else
121 #define DEF_ARCH32_SPEC(__str) "%{m32:" __str "}"
122 #define DEF_ARCH64_SPEC(__str) "%{!m32:" __str "}"
123 #endif
125 /* It's safe to pass -s always, even if -g is not used. Those options are
126 handled by both Sun as and GNU as. */
127 #define ASM_SPEC_BASE \
128 "%{v:-V} %{Qy:} %{!Qn:-Qy} %{Ym,*} -s %(asm_cpu)"
130 #define ASM_PIC_SPEC " %{fpic|fpie|fPIC|fPIE:-K PIC}"
132 #undef ASM_CPU_DEFAULT_SPEC
133 #define ASM_CPU_DEFAULT_SPEC \
134 (DEFAULT_ARCH32_P ? "\
135 %{m64:" ASM_CPU64_DEFAULT_SPEC "} \
136 %{!m64:" ASM_CPU32_DEFAULT_SPEC "} \
137 " : "\
138 %{m32:" ASM_CPU32_DEFAULT_SPEC "} \
139 %{!m32:" ASM_CPU64_DEFAULT_SPEC "} \
142 #undef LIB_SPEC
143 #define LIB_SPEC \
144 "%{!symbolic:\
145 %{pthreads|pthread:-lpthread} \
146 %{p|pg:-ldl} -lc}"
148 #ifndef CROSS_DIRECTORY_STRUCTURE
149 #undef MD_EXEC_PREFIX
150 #define MD_EXEC_PREFIX "/usr/ccs/bin/"
151 #endif
153 #undef STARTFILE_ARCH_SPEC
154 #define STARTFILE_ARCH_SPEC "%{ansi:values-Xc.o%s} \
155 %{!ansi:values-Xa.o%s}"
157 /* We don't use the standard svr4 STARTFILE_SPEC because it's wrong for us. */
158 #undef STARTFILE_SPEC
159 #define STARTFILE_SPEC "%{!shared: \
160 %{!symbolic: \
161 %{p:mcrt1.o%s} \
162 %{!p: \
163 %{pg:gcrt1.o%s gmon.o%s} \
164 %{!pg:crt1.o%s}}}} \
165 crti.o%s %(startfile_arch) \
166 crtbegin.o%s"
168 #undef ENDFILE_SPEC
169 #define ENDFILE_SPEC \
170 "%{Ofast|ffast-math|funsafe-math-optimizations:crtfastmath.o%s} \
171 crtend.o%s crtn.o%s"
173 #undef LINK_ARCH32_SPEC_BASE
174 #define LINK_ARCH32_SPEC_BASE \
175 "%{G:-G} \
176 %{YP,*} \
177 %{R*} \
178 %{!YP,*:%{p|pg:-Y P,%R/usr/lib/libp%R/lib:%R/usr/lib} \
179 %{!p:%{!pg:-Y P,%R/lib:%R/usr/lib}}}"
181 #undef LINK_ARCH32_SPEC
182 #define LINK_ARCH32_SPEC LINK_ARCH32_SPEC_BASE
184 /* This should be the same as LINK_ARCH32_SPEC_BASE, except with
185 ARCH64_SUBDIR appended to the paths. */
186 #undef LINK_ARCH64_SPEC_BASE
187 #define LINK_ARCH64_SPEC_BASE \
188 "%{G:-G} \
189 %{YP,*} \
190 %{R*} \
191 %{!YP,*:%{p|pg:-Y P,%R/usr/lib/libp/" ARCH64_SUBDIR ":%R/lib/" ARCH64_SUBDIR ":%R/usr/lib/" ARCH64_SUBDIR "} \
192 %{!p:%{!pg:-Y P,%R/lib/" ARCH64_SUBDIR ":%R/usr/lib/" ARCH64_SUBDIR "}}}"
194 #undef LINK_ARCH64_SPEC
195 #ifndef USE_GLD
196 /* FIXME: Used to be SPARC-only. Not SPARC-specfic but for the model name! */
197 #define LINK_ARCH64_SPEC \
198 "%{mcmodel=medlow:-M /usr/lib/ld/" ARCH64_SUBDIR "/map.below4G} " \
199 LINK_ARCH64_SPEC_BASE
200 #else
201 #define LINK_ARCH64_SPEC LINK_ARCH64_SPEC_BASE
202 #endif
204 #ifdef USE_GLD
205 #if DEFAULT_ARCH32_P
206 #define ARCH_DEFAULT_EMULATION ARCH32_EMULATION
207 #else
208 #define ARCH_DEFAULT_EMULATION ARCH64_EMULATION
209 #endif
210 #define TARGET_LD_EMULATION "%{m32:-m " ARCH32_EMULATION "}" \
211 "%{m64:-m " ARCH64_EMULATION "}" \
212 "%{!m32:%{!m64:-m " ARCH_DEFAULT_EMULATION "}} "
213 #else
214 #define TARGET_LD_EMULATION ""
215 #endif
217 #undef LINK_ARCH_SPEC
218 #if DISABLE_MULTILIB
219 #if DEFAULT_ARCH32_P
220 #define LINK_ARCH_SPEC TARGET_LD_EMULATION " \
221 %{m32:%(link_arch32)} \
222 %{m64:%edoes not support multilib} \
223 %{!m32:%{!m64:%(link_arch_default)}} \
225 #else
226 #define LINK_ARCH_SPEC TARGET_LD_EMULATION " \
227 %{m32:%edoes not support multilib} \
228 %{m64:%(link_arch64)} \
229 %{!m32:%{!m64:%(link_arch_default)}} \
231 #endif
232 #else
233 #define LINK_ARCH_SPEC TARGET_LD_EMULATION " \
234 %{m32:%(link_arch32)} \
235 %{m64:%(link_arch64)} \
236 %{!m32:%{!m64:%(link_arch_default)}}"
237 #endif
239 #define LINK_ARCH_DEFAULT_SPEC \
240 (DEFAULT_ARCH32_P ? LINK_ARCH32_SPEC : LINK_ARCH64_SPEC)
242 #undef SUBTARGET_EXTRA_SPECS
243 #define SUBTARGET_EXTRA_SPECS \
244 { "startfile_arch", STARTFILE_ARCH_SPEC }, \
245 { "link_arch32", LINK_ARCH32_SPEC }, \
246 { "link_arch64", LINK_ARCH64_SPEC }, \
247 { "link_arch_default", LINK_ARCH_DEFAULT_SPEC }, \
248 { "link_arch", LINK_ARCH_SPEC }, \
249 SUBTARGET_CPU_EXTRA_SPECS
251 /* C++11 programs need -lrt for nanosleep. */
252 #define TIME_LIBRARY "rt"
254 #ifndef USE_GLD
255 /* With Sun ld, -rdynamic is a no-op. */
256 #define RDYNAMIC_SPEC ""
257 #else
258 /* GNU ld needs --export-dynamic to implement -rdynamic. */
259 #define RDYNAMIC_SPEC "--export-dynamic"
260 #endif
262 #ifndef USE_GLD
263 /* With Sun ld, use mapfile to enforce direct binding to libgcc_s unwinder. */
264 #define LINK_LIBGCC_MAPFILE_SPEC \
265 "%{shared|shared-libgcc:-M %slibgcc-unwind.map}"
266 #else
267 /* GNU ld doesn't support direct binding. */
268 #define LINK_LIBGCC_MAPFILE_SPEC ""
269 #endif
271 /* Clear hardware capabilities, either explicitly or with OpenMP:
272 #pragma openmp declare simd creates clones for SSE2, AVX, and AVX2. */
273 #ifdef HAVE_LD_CLEARCAP
274 #define LINK_CLEARCAP_SPEC " %{mclear-hwcap|fopenmp*:-M %sclearcap.map}"
275 #else
276 #define LINK_CLEARCAP_SPEC ""
277 #endif
279 #undef LINK_SPEC
280 #define LINK_SPEC \
281 "%{h*} %{v:-V} \
282 %{!shared:%{!static:%{rdynamic: " RDYNAMIC_SPEC "}}} \
283 %{static:-dn -Bstatic} \
284 %{shared:-G -dy %{!mimpure-text:-z text}} " \
285 LINK_LIBGCC_MAPFILE_SPEC LINK_CLEARCAP_SPEC " \
286 %{symbolic:-Bsymbolic -G -dy -z text} \
287 %(link_arch) \
288 %{Qy:} %{!Qn:-Qy}"
290 /* Use --as-needed/-z ignore -lgcc_s for eh support. */
291 #ifdef HAVE_LD_AS_NEEDED
292 #define USE_LD_AS_NEEDED 1
293 #endif
295 #ifdef USE_GLD
296 /* Solaris 11 build 135+ implements dl_iterate_phdr. GNU ld needs
297 --eh-frame-hdr to create the required .eh_frame_hdr sections. */
298 #if defined(HAVE_LD_EH_FRAME_HDR) && defined(TARGET_DL_ITERATE_PHDR)
299 #define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
300 #endif /* HAVE_LD_EH_FRAME && TARGET_DL_ITERATE_PHDR */
301 #endif
303 /* collect2.c can only parse GNU nm -n output. Solaris nm needs -png to
304 produce the same format. */
305 #define NM_FLAGS "-png"
307 /* The system headers under Solaris 2 are C++-aware since 2.0. */
308 #define NO_IMPLICIT_EXTERN_C
310 #define STDC_0_IN_SYSTEM_HEADERS 1
312 /* Support Solaris-specific format checking for cmn_err. */
313 #define TARGET_N_FORMAT_TYPES 1
314 #define TARGET_FORMAT_TYPES solaris_format_types
316 /* #pragma init and #pragma fini are implemented on top of init and
317 fini attributes. */
318 #define SOLARIS_ATTRIBUTE_TABLE \
319 { "init", 0, 0, true, false, false, NULL, NULL, false }, \
320 { "fini", 0, 0, true, false, false, NULL, NULL, false }
322 /* Solaris-specific #pragmas are implemented on top of attributes. Hook in
323 the bits from config/sol2.c. */
324 #define SUBTARGET_INSERT_ATTRIBUTES solaris_insert_attributes
325 #define SUBTARGET_ATTRIBUTE_TABLE SOLARIS_ATTRIBUTE_TABLE
327 /* Allow macro expansion in #pragma pack. */
328 #define HANDLE_PRAGMA_PACK_WITH_EXPANSION
330 #define TARGET_CXX_DECL_MANGLING_CONTEXT solaris_cxx_decl_mangling_context
332 /* Solaris/x86 as and gas support unquoted section names. */
333 #ifndef SECTION_NAME_FORMAT
334 #define SECTION_NAME_FORMAT "%s"
335 #endif
337 /* This is how to declare the size of a function. For Solaris, we output
338 any .init or .fini entries here. */
339 #undef ASM_DECLARE_FUNCTION_SIZE
340 #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL) \
341 do \
343 if (!flag_inhibit_size_directive) \
344 ASM_OUTPUT_MEASURED_SIZE (FILE, FNAME); \
345 solaris_output_init_fini (FILE, DECL); \
347 while (0)
349 #ifndef USE_GAS
350 #undef TARGET_ASM_ASSEMBLE_VISIBILITY
351 #define TARGET_ASM_ASSEMBLE_VISIBILITY solaris_assemble_visibility
353 #define AS_NEEDS_DASH_FOR_PIPED_INPUT
355 /* The Solaris assembler cannot grok .stabd directives. */
356 #undef NO_DBX_BNSYM_ENSYM
357 #define NO_DBX_BNSYM_ENSYM 1
358 #endif
360 #ifndef USE_GLD
361 /* The Solaris linker doesn't understand constructor priorities. */
362 #undef SUPPORTS_INIT_PRIORITY
363 #define SUPPORTS_INIT_PRIORITY 0
364 #endif
366 /* Solaris has an implementation of __enable_execute_stack. */
367 #define HAVE_ENABLE_EXECUTE_STACK
369 /* Static stack checking is supported by means of probes. */
370 #define STACK_CHECK_STATIC_BUILTIN 1
372 #define TARGET_POSIX_IO
374 /* Solaris 10 has the float and long double forms of math functions.
375 We redefine this hook so the version from elfos.h header won't be used. */
376 #undef TARGET_LIBC_HAS_FUNCTION
377 #define TARGET_LIBC_HAS_FUNCTION default_libc_has_function
379 extern GTY(()) tree solaris_pending_aligns;
380 extern GTY(()) tree solaris_pending_inits;
381 extern GTY(()) tree solaris_pending_finis;