2016-08-24 Michael Collison <michael.collison@linaro.org>
[official-gcc.git] / gcc / config / sol2.h
blob50f2b383a1b7007c1d7654fbcbea56c1395a7d0d
1 /* Operating system specific defines to be used when targeting GCC for any
2 Solaris 2 system.
3 Copyright (C) 2002-2016 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 " %{" FPIE_OR_FPIC_SPEC ":-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 /* Enable constructor priorities if the configured linker supports it. */
154 #undef SUPPORTS_INIT_PRIORITY
155 #define SUPPORTS_INIT_PRIORITY HAVE_INITFINI_ARRAY_SUPPORT
157 #undef STARTFILE_ARCH_SPEC
158 #define STARTFILE_ARCH_SPEC "%{ansi:values-Xc.o%s} \
159 %{!ansi:values-Xa.o%s}"
161 #if defined(HAVE_LD_PIE) && defined(HAVE_SOLARIS_CRTS)
162 #define STARTFILE_CRTBEGIN_SPEC "%{shared:crtbeginS.o%s} \
163 %{" PIE_SPEC ":crtbeginS.o%s} \
164 %{" NO_PIE_SPEC ":crtbegin.o%s}"
165 #else
166 #define STARTFILE_CRTBEGIN_SPEC "crtbegin.o%s"
167 #endif
169 #if ENABLE_VTABLE_VERIFY
170 #if SUPPORTS_INIT_PRIORITY
171 #define STARTFILE_VTV_SPEC \
172 "%{fvtable-verify=none:%s; \
173 fvtable-verify=preinit:vtv_start_preinit.o%s; \
174 fvtable-verify=std:vtv_start.o%s}"
175 #define ENDFILE_VTV_SPEC \
176 "%{fvtable-verify=none:%s; \
177 fvtable-verify=preinit:vtv_end_preinit.o%s; \
178 fvtable-verify=std:vtv_end.o%s}"
179 #else /* !SUPPORTS_INIT_PRIORITY */
180 #define STARTFILE_VTV_SPEC \
181 "%{fvtable-verify=*: \
182 %e-fvtable-verify=%* is not supported in this configuration}"
183 #define ENDFILE_VTV_SPEC ""
184 #endif /* !SUPPORTS_INIT_PRIORITY */
185 #else /* !ENABLE_VTABLE_VERIFY */
186 #define STARTFILE_VTV_SPEC ""
187 #define ENDFILE_VTV_SPEC ""
188 #endif /* !ENABLE_VTABLE_VERIFY */
190 /* We don't use the standard svr4 STARTFILE_SPEC because it's wrong for us. */
191 #undef STARTFILE_SPEC
192 #ifdef HAVE_SOLARIS_CRTS
193 /* Since Solaris 11.x and Solaris 12, the OS delivers crt1.o, crti.o, and
194 crtn.o, with a hook for compiler-dependent stuff like profile handling. */
195 #define STARTFILE_SPEC "%{!shared:%{!symbolic: \
196 crt1.o%s \
197 %{p:%e-p is not supported; \
198 pg:crtpg.o%s gmon.o%s; \
199 :crtp.o%s}}} \
200 crti.o%s %(startfile_arch) %(startfile_crtbegin) \
201 %(startfile_vtv)"
202 #else
203 #define STARTFILE_SPEC "%{!shared:%{!symbolic: \
204 %{p:mcrt1.o%s; \
205 pg:gcrt1.o%s gmon.o%s; \
206 :crt1.o%s}}} \
207 crti.o%s %(startfile_arch) %(startfile_crtbegin) \
208 %(startfile_vtv)"
209 #endif
211 #if defined(HAVE_LD_PIE) && defined(HAVE_SOLARIS_CRTS)
212 #define ENDFILE_CRTEND_SPEC "%{shared:crtendS.o%s;: \
213 %{" PIE_SPEC ":crtendS.o%s} \
214 %{" NO_PIE_SPEC ":crtend.o%s}}"
215 #else
216 #define ENDFILE_CRTEND_SPEC "crtend.o%s"
217 #endif
219 #undef ENDFILE_SPEC
220 #define ENDFILE_SPEC \
221 "%{Ofast|ffast-math|funsafe-math-optimizations:crtfastmath.o%s} \
222 %(endfile_arch) %(endfile_vtv) %(endfile_crtend) crtn.o%s"
224 #undef LINK_ARCH32_SPEC_BASE
225 #define LINK_ARCH32_SPEC_BASE \
226 "%{G:-G} \
227 %{YP,*} \
228 %{R*} \
229 %{!YP,*:%{p|pg:-Y P,%R/usr/lib/libp%R/lib:%R/usr/lib} \
230 %{!p:%{!pg:-Y P,%R/lib:%R/usr/lib}}}"
232 #undef LINK_ARCH32_SPEC
233 #define LINK_ARCH32_SPEC LINK_ARCH32_SPEC_BASE
235 /* This should be the same as LINK_ARCH32_SPEC_BASE, except with
236 ARCH64_SUBDIR appended to the paths. */
237 #undef LINK_ARCH64_SPEC_BASE
238 #define LINK_ARCH64_SPEC_BASE \
239 "%{G:-G} \
240 %{YP,*} \
241 %{R*} \
242 %{!YP,*:%{p|pg:-Y P,%R/usr/lib/libp/" ARCH64_SUBDIR ":%R/lib/" ARCH64_SUBDIR ":%R/usr/lib/" ARCH64_SUBDIR "} \
243 %{!p:%{!pg:-Y P,%R/lib/" ARCH64_SUBDIR ":%R/usr/lib/" ARCH64_SUBDIR "}}}"
245 #undef LINK_ARCH64_SPEC
246 #ifndef USE_GLD
247 /* FIXME: Used to be SPARC-only. Not SPARC-specfic but for the model name! */
248 #define LINK_ARCH64_SPEC \
249 "%{mcmodel=medlow:-M /usr/lib/ld/" ARCH64_SUBDIR "/map.below4G} " \
250 LINK_ARCH64_SPEC_BASE
251 #else
252 #define LINK_ARCH64_SPEC LINK_ARCH64_SPEC_BASE
253 #endif
255 #ifdef USE_GLD
256 #if DEFAULT_ARCH32_P
257 #define ARCH_DEFAULT_EMULATION ARCH32_EMULATION
258 #else
259 #define ARCH_DEFAULT_EMULATION ARCH64_EMULATION
260 #endif
261 #define TARGET_LD_EMULATION "%{m32:-m " ARCH32_EMULATION "}" \
262 "%{m64:-m " ARCH64_EMULATION "}" \
263 "%{!m32:%{!m64:-m " ARCH_DEFAULT_EMULATION "}} "
264 #else
265 #define TARGET_LD_EMULATION ""
266 #endif
268 #undef LINK_ARCH_SPEC
269 #if DISABLE_MULTILIB
270 #if DEFAULT_ARCH32_P
271 #define LINK_ARCH_SPEC TARGET_LD_EMULATION " \
272 %{m32:%(link_arch32)} \
273 %{m64:%edoes not support multilib} \
274 %{!m32:%{!m64:%(link_arch_default)}} \
276 #else
277 #define LINK_ARCH_SPEC TARGET_LD_EMULATION " \
278 %{m32:%edoes not support multilib} \
279 %{m64:%(link_arch64)} \
280 %{!m32:%{!m64:%(link_arch_default)}} \
282 #endif
283 #else
284 #define LINK_ARCH_SPEC TARGET_LD_EMULATION " \
285 %{m32:%(link_arch32)} \
286 %{m64:%(link_arch64)} \
287 %{!m32:%{!m64:%(link_arch_default)}}"
288 #endif
290 #define LINK_ARCH_DEFAULT_SPEC \
291 (DEFAULT_ARCH32_P ? LINK_ARCH32_SPEC : LINK_ARCH64_SPEC)
293 #undef SUBTARGET_EXTRA_SPECS
294 #define SUBTARGET_EXTRA_SPECS \
295 { "startfile_arch", STARTFILE_ARCH_SPEC }, \
296 { "startfile_crtbegin", STARTFILE_CRTBEGIN_SPEC }, \
297 { "startfile_vtv", STARTFILE_VTV_SPEC }, \
298 { "link_arch32", LINK_ARCH32_SPEC }, \
299 { "link_arch64", LINK_ARCH64_SPEC }, \
300 { "link_arch_default", LINK_ARCH_DEFAULT_SPEC }, \
301 { "link_arch", LINK_ARCH_SPEC }, \
302 { "endfile_arch", ENDFILE_ARCH_SPEC }, \
303 { "endfile_crtend", ENDFILE_CRTEND_SPEC }, \
304 { "endfile_vtv", ENDFILE_VTV_SPEC }, \
305 SUBTARGET_CPU_EXTRA_SPECS
307 /* C++11 programs need -lrt for nanosleep. */
308 #define TIME_LIBRARY "rt"
310 #ifndef USE_GLD
311 /* With Sun ld, -rdynamic is a no-op. */
312 #define RDYNAMIC_SPEC ""
313 #else
314 /* GNU ld needs --export-dynamic to implement -rdynamic. */
315 #define RDYNAMIC_SPEC "--export-dynamic"
316 #endif
318 #ifndef USE_GLD
319 /* With Sun ld, use mapfile to enforce direct binding to libgcc_s unwinder. */
320 #define LINK_LIBGCC_MAPFILE_SPEC \
321 "%{shared|shared-libgcc:-M %slibgcc-unwind.map}"
322 #else
323 /* GNU ld doesn't support direct binding. */
324 #define LINK_LIBGCC_MAPFILE_SPEC ""
325 #endif
327 /* Clear hardware capabilities, either explicitly or with OpenMP:
328 #pragma openmp declare simd creates clones for SSE2, AVX, and AVX2. */
329 #ifdef HAVE_LD_CLEARCAP
330 #define LINK_CLEARCAP_SPEC " %{mclear-hwcap|fopenmp*:-M %sclearcap.map}"
331 #else
332 #define LINK_CLEARCAP_SPEC ""
333 #endif
335 #undef LINK_SPEC
336 #define LINK_SPEC \
337 "%{h*} %{v:-V} \
338 %{!shared:%{!static:%{rdynamic: " RDYNAMIC_SPEC "}}} \
339 %{static:-dn -Bstatic} \
340 %{shared:-G -dy %{!mimpure-text:-z text}} " \
341 LINK_LIBGCC_MAPFILE_SPEC LINK_CLEARCAP_SPEC " \
342 %{symbolic:-Bsymbolic -G -dy -z text} \
343 %(link_arch) \
344 %{Qy:} %{!Qn:-Qy}"
346 /* Use --as-needed/-z ignore -lgcc_s for eh support. */
347 #ifdef HAVE_LD_AS_NEEDED
348 #define USE_LD_AS_NEEDED 1
349 #endif
351 #ifdef USE_GLD
352 /* Solaris 11 build 135+ implements dl_iterate_phdr. GNU ld needs
353 --eh-frame-hdr to create the required .eh_frame_hdr sections. */
354 #if defined(HAVE_LD_EH_FRAME_HDR) && defined(TARGET_DL_ITERATE_PHDR)
355 #define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
356 #endif /* HAVE_LD_EH_FRAME && TARGET_DL_ITERATE_PHDR */
357 #endif
359 #if defined(HAVE_LD_PIE) && defined(HAVE_SOLARIS_CRTS)
360 #ifdef USE_GLD
361 /* Assert -z text by default to match Solaris ld. */
362 #define LD_PIE_SPEC "-pie %{!mimpure-text:-z text}"
363 #else
364 /* Solaris ld needs -z type=pie instead of -pie. */
365 #define LD_PIE_SPEC "-z type=pie %{mimpure-text:-z textoff}"
366 #endif
367 #else
368 /* Error out if some part of PIE support is missing. */
369 #define LINK_PIE_SPEC \
370 "%{no-pie:} %{pie:%e-pie is not supported in this configuration} "
371 #endif
373 /* collect2.c can only parse GNU nm -n output. Solaris nm needs -png to
374 produce the same format. */
375 #define NM_FLAGS "-png"
377 /* The system headers under Solaris 2 are C++-aware since 2.0. */
378 #define NO_IMPLICIT_EXTERN_C
380 #define STDC_0_IN_SYSTEM_HEADERS 1
382 /* Support Solaris-specific format checking for cmn_err. */
383 #define TARGET_N_FORMAT_TYPES 1
384 #define TARGET_FORMAT_TYPES solaris_format_types
386 /* #pragma init and #pragma fini are implemented on top of init and
387 fini attributes. */
388 #define SOLARIS_ATTRIBUTE_TABLE \
389 { "init", 0, 0, true, false, false, NULL, false }, \
390 { "fini", 0, 0, true, false, false, NULL, false }
392 /* Solaris-specific #pragmas are implemented on top of attributes. Hook in
393 the bits from config/sol2.c. */
394 #define SUBTARGET_INSERT_ATTRIBUTES solaris_insert_attributes
395 #define SUBTARGET_ATTRIBUTE_TABLE SOLARIS_ATTRIBUTE_TABLE
397 /* Allow macro expansion in #pragma pack. */
398 #define HANDLE_PRAGMA_PACK_WITH_EXPANSION
400 #define TARGET_CXX_DECL_MANGLING_CONTEXT solaris_cxx_decl_mangling_context
402 /* Solaris/x86 as and gas support unquoted section names. */
403 #ifndef SECTION_NAME_FORMAT
404 #define SECTION_NAME_FORMAT "%s"
405 #endif
407 /* This is how to declare the size of a function. For Solaris, we output
408 any .init or .fini entries here. */
409 #undef ASM_DECLARE_FUNCTION_SIZE
410 #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL) \
411 do \
413 if (!flag_inhibit_size_directive) \
414 ASM_OUTPUT_MEASURED_SIZE (FILE, FNAME); \
415 solaris_output_init_fini (FILE, DECL); \
417 while (0)
419 #ifndef USE_GAS
420 #undef TARGET_ASM_ASSEMBLE_VISIBILITY
421 #define TARGET_ASM_ASSEMBLE_VISIBILITY solaris_assemble_visibility
423 #define AS_NEEDS_DASH_FOR_PIPED_INPUT
425 /* The Solaris assembler cannot grok .stabd directives. */
426 #undef NO_DBX_BNSYM_ENSYM
427 #define NO_DBX_BNSYM_ENSYM 1
428 #endif
430 /* Solaris has an implementation of __enable_execute_stack. */
431 #define HAVE_ENABLE_EXECUTE_STACK
433 /* Static stack checking is supported by means of probes. */
434 #define STACK_CHECK_STATIC_BUILTIN 1
436 #define TARGET_POSIX_IO
438 /* Solaris 10 has the float and long double forms of math functions.
439 We redefine this hook so the version from elfos.h header won't be used. */
440 #undef TARGET_LIBC_HAS_FUNCTION
441 #define TARGET_LIBC_HAS_FUNCTION default_libc_has_function
443 extern GTY(()) tree solaris_pending_aligns;
444 extern GTY(()) tree solaris_pending_inits;
445 extern GTY(()) tree solaris_pending_finis;