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