2008-11-18 Kai Tietz <kai.tietz@onevision.com>
[official-gcc.git] / gcc / config / i386 / linux64.h
blob88c875a098065bfb8080e55134292df8bba19e8c
1 /* Definitions for AMD x86-64 running Linux-based GNU systems with ELF format.
2 Copyright (C) 2001, 2002, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
4 Contributed by Jan Hubicka <jh@suse.cz>, based on linux.h.
6 This file is part of GCC.
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.
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.
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/>. */
22 #if TARGET_64BIT_DEFAULT
23 #define TARGET_VERSION fprintf (stderr, " (x86-64 Linux/ELF)");
24 #else
25 #define TARGET_VERSION fprintf (stderr, " (i386 Linux/ELF)");
26 #endif
28 #define TARGET_OS_CPP_BUILTINS() \
29 do \
30 { \
31 LINUX_TARGET_OS_CPP_BUILTINS(); \
32 } \
33 while (0)
35 #undef CPP_SPEC
36 #define CPP_SPEC "%{posix:-D_POSIX_SOURCE} %{pthread:-D_REENTRANT}"
38 /* The svr4 ABI for the i386 says that records and unions are returned
39 in memory. In the 64bit compilation we will turn this flag off in
40 override_options, as we never do pcc_struct_return scheme on this target. */
41 #undef DEFAULT_PCC_STRUCT_RETURN
42 #define DEFAULT_PCC_STRUCT_RETURN 1
44 /* We arrange for the whole %fs segment to map the tls area. */
45 #undef TARGET_TLS_DIRECT_SEG_REFS_DEFAULT
46 #define TARGET_TLS_DIRECT_SEG_REFS_DEFAULT MASK_TLS_DIRECT_SEG_REFS
48 /* Provide a LINK_SPEC. Here we provide support for the special GCC
49 options -static and -shared, which allow us to link things in one
50 of these three modes by applying the appropriate combinations of
51 options at link-time.
53 When the -shared link option is used a final link is not being
54 done. */
56 #define GLIBC_DYNAMIC_LINKER32 "/lib/ld-linux.so.2"
57 #define GLIBC_DYNAMIC_LINKER64 "/lib64/ld-linux-x86-64.so.2"
59 #undef ASM_SPEC
60 #define ASM_SPEC "%{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} \
61 %{Wa,*:%*} %{m32:--32} %{m64:--64} \
62 %{!mno-sse2avx:%{mavx:-msse2avx}} %{msse2avx:%{!mavx:-msse2avx}}"
64 #if TARGET_64BIT_DEFAULT
65 #define SPEC_32 "m32"
66 #define SPEC_64 "!m32"
67 #else
68 #define SPEC_32 "!m64"
69 #define SPEC_64 "m64"
70 #endif
72 #undef LINK_SPEC
73 #define LINK_SPEC "%{" SPEC_64 ":-m elf_x86_64} %{" SPEC_32 ":-m elf_i386} \
74 %{shared:-shared} \
75 %{!shared: \
76 %{!static: \
77 %{rdynamic:-export-dynamic} \
78 %{" SPEC_32 ":%{!dynamic-linker:-dynamic-linker " LINUX_DYNAMIC_LINKER32 "}} \
79 %{" SPEC_64 ":%{!dynamic-linker:-dynamic-linker " LINUX_DYNAMIC_LINKER64 "}}} \
80 %{static:-static}}"
82 /* Similar to standard Linux, but adding -ffast-math support. */
83 #undef ENDFILE_SPEC
84 #define ENDFILE_SPEC \
85 "%{ffast-math|funsafe-math-optimizations:crtfastmath.o%s} \
86 %{mpc32:crtprec32.o%s} \
87 %{mpc64:crtprec64.o%s} \
88 %{mpc80:crtprec80.o%s} \
89 %{shared|pie:crtendS.o%s;:crtend.o%s} crtn.o%s"
91 #if TARGET_64BIT_DEFAULT
92 #define MULTILIB_DEFAULTS { "m64" }
93 #else
94 #define MULTILIB_DEFAULTS { "m32" }
95 #endif
97 /* Put all *tf routines in libgcc. */
98 #undef LIBGCC2_HAS_TF_MODE
99 #define LIBGCC2_HAS_TF_MODE 1
100 #define LIBGCC2_TF_CEXT q
101 #define TF_SIZE 113
103 #undef NEED_INDICATE_EXEC_STACK
104 #define NEED_INDICATE_EXEC_STACK 1
106 #define MD_UNWIND_SUPPORT "config/i386/linux-unwind.h"
108 /* This macro may be overridden in i386/k*bsd-gnu.h. */
109 #define REG_NAME(reg) reg
111 #ifdef TARGET_LIBC_PROVIDES_SSP
112 /* i386 glibc provides __stack_chk_guard in %gs:0x14,
113 x86_64 glibc provides it in %fs:0x28. */
114 #define TARGET_THREAD_SSP_OFFSET (TARGET_64BIT ? 0x28 : 0x14)
115 #endif