OSDN Git Service

2008-11-18 Kai Tietz <kai.tietz@onevision.com>
[pf3gnuchains/gcc-fork.git] / gcc / config / rs6000 / linux64.h
1 /* Definitions of target machine for GNU compiler,
2    for 64 bit PowerPC linux.
3    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
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 it
9    under the terms of the GNU General Public License as published
10    by the Free Software Foundation; either version 3, or (at your
11    option) any later version.
12
13    GCC is distributed in the hope that it will be useful, but WITHOUT
14    ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15    or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
16    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 #ifndef RS6000_BI_ARCH
23
24 #undef  DEFAULT_ABI
25 #define DEFAULT_ABI ABI_AIX
26
27 #undef  TARGET_64BIT
28 #define TARGET_64BIT 1
29
30 #define DEFAULT_ARCH64_P 1
31 #define RS6000_BI_ARCH_P 0
32
33 #else
34
35 #define DEFAULT_ARCH64_P (TARGET_DEFAULT & MASK_64BIT)
36 #define RS6000_BI_ARCH_P 1
37
38 #endif
39
40 #ifdef IN_LIBGCC2
41 #undef TARGET_64BIT
42 #ifdef __powerpc64__
43 #define TARGET_64BIT 1
44 #else
45 #define TARGET_64BIT 0
46 #endif
47 #endif
48
49 #undef  TARGET_AIX
50 #define TARGET_AIX TARGET_64BIT
51
52 #ifdef HAVE_LD_NO_DOT_SYMS
53 /* New ABI uses a local sym for the function entry point.  */
54 extern int dot_symbols;
55 #undef DOT_SYMBOLS
56 #define DOT_SYMBOLS dot_symbols
57 #endif
58
59 #undef  PROCESSOR_DEFAULT
60 #define PROCESSOR_DEFAULT PROCESSOR_POWER6
61 #undef  PROCESSOR_DEFAULT64
62 #define PROCESSOR_DEFAULT64 PROCESSOR_POWER6
63
64 /* We don't need to generate entries in .fixup, except when
65    -mrelocatable or -mrelocatable-lib is given.  */
66 #undef RELOCATABLE_NEEDS_FIXUP
67 #define RELOCATABLE_NEEDS_FIXUP \
68   (target_flags & target_flags_explicit & MASK_RELOCATABLE)
69
70 #undef  RS6000_ABI_NAME
71 #define RS6000_ABI_NAME "linux"
72
73 #define INVALID_64BIT "-m%s not supported in this configuration"
74 #define INVALID_32BIT INVALID_64BIT
75
76 #undef  SUBSUBTARGET_OVERRIDE_OPTIONS
77 #define SUBSUBTARGET_OVERRIDE_OPTIONS                           \
78   do                                                            \
79     {                                                           \
80       if (!rs6000_explicit_options.alignment)                   \
81         rs6000_alignment_flags = MASK_ALIGN_NATURAL;            \
82       if (TARGET_64BIT)                                         \
83         {                                                       \
84           if (DEFAULT_ABI != ABI_AIX)                           \
85             {                                                   \
86               rs6000_current_abi = ABI_AIX;                     \
87               error (INVALID_64BIT, "call");                    \
88             }                                                   \
89           dot_symbols = !strcmp (rs6000_abi_name, "aixdesc");   \
90           if (target_flags & MASK_RELOCATABLE)                  \
91             {                                                   \
92               target_flags &= ~MASK_RELOCATABLE;                \
93               error (INVALID_64BIT, "relocatable");             \
94             }                                                   \
95           if (target_flags & MASK_EABI)                         \
96             {                                                   \
97               target_flags &= ~MASK_EABI;                       \
98               error (INVALID_64BIT, "eabi");                    \
99             }                                                   \
100           if (TARGET_PROTOTYPE)                                 \
101             {                                                   \
102               TARGET_PROTOTYPE = 0;                             \
103               error (INVALID_64BIT, "prototype");               \
104             }                                                   \
105           if ((target_flags & MASK_POWERPC64) == 0)             \
106             {                                                   \
107               target_flags |= MASK_POWERPC64;                   \
108               error ("-m64 requires a PowerPC64 cpu");          \
109             }                                                   \
110         }                                                       \
111       else                                                      \
112         {                                                       \
113           if (!RS6000_BI_ARCH_P)                                \
114             error (INVALID_32BIT, "32");                        \
115           if (TARGET_PROFILE_KERNEL)                            \
116             {                                                   \
117               target_flags &= ~MASK_PROFILE_KERNEL;             \
118               error (INVALID_32BIT, "profile-kernel");          \
119             }                                                   \
120         }                                                       \
121     }                                                           \
122   while (0)
123
124 #ifdef  RS6000_BI_ARCH
125
126 #undef  OVERRIDE_OPTIONS
127 #define OVERRIDE_OPTIONS \
128   rs6000_override_options (((TARGET_DEFAULT ^ target_flags) & MASK_64BIT) \
129                            ? (char *) 0 : TARGET_CPU_DEFAULT)
130
131 #endif
132
133 #undef  ASM_DEFAULT_SPEC
134 #undef  ASM_SPEC
135 #undef  LINK_OS_LINUX_SPEC
136
137 #ifndef RS6000_BI_ARCH
138 #define ASM_DEFAULT_SPEC "-mppc64"
139 #define ASM_SPEC         "%(asm_spec64) %(asm_spec_common)"
140 #define LINK_OS_LINUX_SPEC "%(link_os_linux_spec64)"
141 #else
142 #if DEFAULT_ARCH64_P
143 #define ASM_DEFAULT_SPEC "-mppc%{!m32:64}"
144 #define ASM_SPEC         "%{m32:%(asm_spec32)}%{!m32:%(asm_spec64)} %(asm_spec_common)"
145 #define LINK_OS_LINUX_SPEC "%{m32:%(link_os_linux_spec32)}%{!m32:%(link_os_linux_spec64)}"
146 #else
147 #define ASM_DEFAULT_SPEC "-mppc%{m64:64}"
148 #define ASM_SPEC         "%{!m64:%(asm_spec32)}%{m64:%(asm_spec64)} %(asm_spec_common)"
149 #define LINK_OS_LINUX_SPEC "%{!m64:%(link_os_linux_spec32)}%{m64:%(link_os_linux_spec64)}"
150 #endif
151 #endif
152
153 #define ASM_SPEC32 "-a32 %{n} %{T} %{Ym,*} %{Yd,*} \
154 %{mrelocatable} %{mrelocatable-lib} %{fpic:-K PIC} %{fPIC:-K PIC} \
155 %{memb} %{!memb: %{msdata: -memb} %{msdata=eabi: -memb}} \
156 %{!mlittle: %{!mlittle-endian: %{!mbig: %{!mbig-endian: \
157     %{mcall-freebsd: -mbig} \
158     %{mcall-i960-old: -mlittle} \
159     %{mcall-linux: -mbig} \
160     %{mcall-gnu: -mbig} \
161     %{mcall-netbsd: -mbig} \
162 }}}}"
163
164 #define ASM_SPEC64 "-a64"
165
166 #define ASM_SPEC_COMMON "%(asm_cpu) \
167 %{,assembler|,assembler-with-cpp: %{mregnames} %{mno-regnames}} \
168 %{v:-V} %{Qy:} %{!Qn:-Qy} %{Wa,*:%*} \
169 %{mlittle} %{mlittle-endian} %{mbig} %{mbig-endian}"
170
171 #undef  SUBSUBTARGET_EXTRA_SPECS
172 #define SUBSUBTARGET_EXTRA_SPECS \
173   { "asm_spec_common",          ASM_SPEC_COMMON },                      \
174   { "asm_spec32",               ASM_SPEC32 },                           \
175   { "asm_spec64",               ASM_SPEC64 },                           \
176   { "link_os_linux_spec32",     LINK_OS_LINUX_SPEC32 },                 \
177   { "link_os_linux_spec64",     LINK_OS_LINUX_SPEC64 },
178
179 #undef  MULTILIB_DEFAULTS
180 #if DEFAULT_ARCH64_P
181 #define MULTILIB_DEFAULTS { "m64" }
182 #else
183 #define MULTILIB_DEFAULTS { "m32" }
184 #endif
185
186 #ifndef RS6000_BI_ARCH
187
188 /* 64-bit PowerPC Linux is always big-endian.  */
189 #undef  TARGET_LITTLE_ENDIAN
190 #define TARGET_LITTLE_ENDIAN    0
191
192 /* 64-bit PowerPC Linux always has a TOC.  */
193 #undef  TARGET_TOC
194 #define TARGET_TOC              1
195
196 /* Some things from sysv4.h we don't do when 64 bit.  */
197 #undef  TARGET_RELOCATABLE
198 #define TARGET_RELOCATABLE      0
199 #undef  TARGET_EABI
200 #define TARGET_EABI             0
201 #undef  TARGET_PROTOTYPE
202 #define TARGET_PROTOTYPE        0
203 #undef RELOCATABLE_NEEDS_FIXUP
204 #define RELOCATABLE_NEEDS_FIXUP 0
205
206 #endif
207
208 /* We use glibc _mcount for profiling.  */
209 #define NO_PROFILE_COUNTERS 1
210 #define PROFILE_HOOK(LABEL) \
211   do { if (TARGET_64BIT) output_profile_hook (LABEL); } while (0)
212
213 /* PowerPC64 Linux word-aligns FP doubles when -malign-power is given.  */
214 #undef  ADJUST_FIELD_ALIGN
215 #define ADJUST_FIELD_ALIGN(FIELD, COMPUTED) \
216   ((TARGET_ALTIVEC && TREE_CODE (TREE_TYPE (FIELD)) == VECTOR_TYPE)     \
217    ? 128                                                                \
218    : (TARGET_64BIT                                                      \
219       && TARGET_ALIGN_NATURAL == 0                                      \
220       && TYPE_MODE (strip_array_types (TREE_TYPE (FIELD))) == DFmode)   \
221    ? MIN ((COMPUTED), 32)                                               \
222    : (COMPUTED))
223
224 /* PowerPC64 Linux increases natural record alignment to doubleword if
225    the first field is an FP double, only if in power alignment mode.  */
226 #undef  ROUND_TYPE_ALIGN
227 #define ROUND_TYPE_ALIGN(STRUCT, COMPUTED, SPECIFIED)                   \
228   ((TARGET_64BIT                                                        \
229     && (TREE_CODE (STRUCT) == RECORD_TYPE                               \
230         || TREE_CODE (STRUCT) == UNION_TYPE                             \
231         || TREE_CODE (STRUCT) == QUAL_UNION_TYPE)                       \
232     && TARGET_ALIGN_NATURAL == 0)                                       \
233    ? rs6000_special_round_type_align (STRUCT, COMPUTED, SPECIFIED)      \
234    : MAX ((COMPUTED), (SPECIFIED)))
235
236 /* Use the default for compiling target libs.  */
237 #ifdef IN_TARGET_LIBS
238 #undef TARGET_ALIGN_NATURAL
239 #define TARGET_ALIGN_NATURAL 1
240 #endif
241
242 /* Indicate that jump tables go in the text section.  */
243 #undef  JUMP_TABLES_IN_TEXT_SECTION
244 #define JUMP_TABLES_IN_TEXT_SECTION TARGET_64BIT
245
246 /* The linux ppc64 ABI isn't explicit on whether aggregates smaller
247    than a doubleword should be padded upward or downward.  You could
248    reasonably assume that they follow the normal rules for structure
249    layout treating the parameter area as any other block of memory,
250    then map the reg param area to registers.  i.e. pad upward.
251    Setting both of the following defines results in this behavior.
252    Setting just the first one will result in aggregates that fit in a
253    doubleword being padded downward, and others being padded upward.
254    Not a bad idea as this results in struct { int x; } being passed
255    the same way as an int.  */
256 #define AGGREGATE_PADDING_FIXED TARGET_64BIT
257 #define AGGREGATES_PAD_UPWARD_ALWAYS 0
258
259 /* Specify padding for the last element of a block move between
260    registers and memory.  FIRST is nonzero if this is the only
261    element.  */
262 #define BLOCK_REG_PADDING(MODE, TYPE, FIRST) \
263   (!(FIRST) ? upward : FUNCTION_ARG_PADDING (MODE, TYPE))
264
265 /* __throw will restore its own return address to be the same as the
266    return address of the function that the throw is being made to.
267    This is unfortunate, because we want to check the original
268    return address to see if we need to restore the TOC.
269    So we have to squirrel it away with this.  */
270 #define SETUP_FRAME_ADDRESSES() \
271   do { if (TARGET_64BIT) rs6000_aix_emit_builtin_unwind_init (); } while (0)
272
273 /* Override svr4.h  */
274 #undef MD_EXEC_PREFIX
275 #undef MD_STARTFILE_PREFIX
276
277 /* Linux doesn't support saving and restoring 64-bit regs in a 32-bit
278    process.  */
279 #define OS_MISSING_POWERPC64 !TARGET_64BIT
280
281 /* glibc has float and long double forms of math functions.  */
282 #undef  TARGET_C99_FUNCTIONS
283 #define TARGET_C99_FUNCTIONS (OPTION_GLIBC)
284
285 /* Whether we have sincos that follows the GNU extension.  */
286 #undef  TARGET_HAS_SINCOS
287 #define TARGET_HAS_SINCOS (OPTION_GLIBC)
288
289 #undef  TARGET_OS_CPP_BUILTINS
290 #define TARGET_OS_CPP_BUILTINS()                        \
291   do                                                    \
292     {                                                   \
293       if (TARGET_64BIT)                                 \
294         {                                               \
295           builtin_define ("__PPC__");                   \
296           builtin_define ("__PPC64__");                 \
297           builtin_define ("__powerpc__");               \
298           builtin_define ("__powerpc64__");             \
299           builtin_assert ("cpu=powerpc64");             \
300           builtin_assert ("machine=powerpc64");         \
301         }                                               \
302       else                                              \
303         {                                               \
304           builtin_define_std ("PPC");                   \
305           builtin_define_std ("powerpc");               \
306           builtin_assert ("cpu=powerpc");               \
307           builtin_assert ("machine=powerpc");           \
308           TARGET_OS_SYSV_CPP_BUILTINS ();               \
309         }                                               \
310     }                                                   \
311   while (0)
312
313 #undef  CPP_OS_DEFAULT_SPEC
314 #define CPP_OS_DEFAULT_SPEC "%(cpp_os_linux)"
315
316 /* The GNU C++ standard library currently requires _GNU_SOURCE being
317    defined on glibc-based systems. This temporary hack accomplishes this,
318    it should go away as soon as libstdc++-v3 has a real fix.  */
319 #undef  CPLUSPLUS_CPP_SPEC
320 #define CPLUSPLUS_CPP_SPEC "-D_GNU_SOURCE %(cpp)"
321
322 #undef  LINK_SHLIB_SPEC
323 #define LINK_SHLIB_SPEC "%{shared:-shared} %{!shared: %{static:-static}}"
324
325 #undef  LIB_DEFAULT_SPEC
326 #define LIB_DEFAULT_SPEC "%(lib_linux)"
327
328 #undef  STARTFILE_DEFAULT_SPEC
329 #define STARTFILE_DEFAULT_SPEC "%(startfile_linux)"
330
331 #undef  ENDFILE_DEFAULT_SPEC
332 #define ENDFILE_DEFAULT_SPEC "%(endfile_linux)"
333
334 #undef  LINK_START_DEFAULT_SPEC
335 #define LINK_START_DEFAULT_SPEC "%(link_start_linux)"
336
337 #undef  LINK_OS_DEFAULT_SPEC
338 #define LINK_OS_DEFAULT_SPEC "%(link_os_linux)"
339
340 #define GLIBC_DYNAMIC_LINKER32 "/lib/ld.so.1"
341 #define GLIBC_DYNAMIC_LINKER64 "/lib64/ld64.so.1"
342 #define UCLIBC_DYNAMIC_LINKER32 "/lib/ld-uClibc.so.0"
343 #define UCLIBC_DYNAMIC_LINKER64 "/lib/ld64-uClibc.so.0"
344 #if UCLIBC_DEFAULT
345 #define CHOOSE_DYNAMIC_LINKER(G, U) "%{mglibc:%{muclibc:%e-mglibc and -muclibc used together}" G ";:" U "}"
346 #else
347 #define CHOOSE_DYNAMIC_LINKER(G, U) "%{muclibc:%{mglibc:%e-mglibc and -muclibc used together}" U ";:" G "}"
348 #endif
349 #define LINUX_DYNAMIC_LINKER32 \
350   CHOOSE_DYNAMIC_LINKER (GLIBC_DYNAMIC_LINKER32, UCLIBC_DYNAMIC_LINKER32)
351 #define LINUX_DYNAMIC_LINKER64 \
352   CHOOSE_DYNAMIC_LINKER (GLIBC_DYNAMIC_LINKER64, UCLIBC_DYNAMIC_LINKER64)
353
354
355 #define LINK_OS_LINUX_SPEC32 "-m elf32ppclinux %{!shared: %{!static: \
356   %{rdynamic:-export-dynamic} \
357   %{!dynamic-linker:-dynamic-linker " LINUX_DYNAMIC_LINKER32 "}}}"
358
359 #define LINK_OS_LINUX_SPEC64 "-m elf64ppc %{!shared: %{!static: \
360   %{rdynamic:-export-dynamic} \
361   %{!dynamic-linker:-dynamic-linker " LINUX_DYNAMIC_LINKER64 "}}}"
362
363 #undef  TOC_SECTION_ASM_OP
364 #define TOC_SECTION_ASM_OP \
365   (TARGET_64BIT                                         \
366    ? "\t.section\t\".toc\",\"aw\""                      \
367    : "\t.section\t\".got\",\"aw\"")
368
369 #undef  MINIMAL_TOC_SECTION_ASM_OP
370 #define MINIMAL_TOC_SECTION_ASM_OP \
371   (TARGET_64BIT                                         \
372    ? "\t.section\t\".toc1\",\"aw\""                     \
373    : ((TARGET_RELOCATABLE || flag_pic)                  \
374       ? "\t.section\t\".got2\",\"aw\""                  \
375       : "\t.section\t\".got1\",\"aw\""))
376
377 #undef  TARGET_VERSION
378 #define TARGET_VERSION fprintf (stderr, " (PowerPC64 GNU/Linux)");
379
380 /* Must be at least as big as our pointer type.  */
381 #undef  SIZE_TYPE
382 #define SIZE_TYPE (TARGET_64BIT ? "long unsigned int" : "unsigned int")
383
384 #undef  PTRDIFF_TYPE
385 #define PTRDIFF_TYPE (TARGET_64BIT ? "long int" : "int")
386
387 #undef  WCHAR_TYPE
388 #define WCHAR_TYPE (TARGET_64BIT ? "int" : "long int")
389 #undef  WCHAR_TYPE_SIZE
390 #define WCHAR_TYPE_SIZE 32
391
392 /* Override rs6000.h definition.  */
393 #undef  ASM_APP_ON
394 #define ASM_APP_ON "#APP\n"
395
396 /* Override rs6000.h definition.  */
397 #undef  ASM_APP_OFF
398 #define ASM_APP_OFF "#NO_APP\n"
399
400 /* PowerPC no-op instruction.  */
401 #undef  RS6000_CALL_GLUE
402 #define RS6000_CALL_GLUE (TARGET_64BIT ? "nop" : "cror 31,31,31")
403
404 #undef  RS6000_MCOUNT
405 #define RS6000_MCOUNT "_mcount"
406
407 #ifdef __powerpc64__
408 /* _init and _fini functions are built from bits spread across many
409    object files, each potentially with a different TOC pointer.  For
410    that reason, place a nop after the call so that the linker can
411    restore the TOC pointer if a TOC adjusting call stub is needed.  */
412 #if DOT_SYMBOLS
413 #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC)      \
414   asm (SECTION_OP "\n"                                  \
415 "       bl ." #FUNC "\n"                                \
416 "       nop\n"                                          \
417 "       .previous");
418 #else
419 #define CRT_CALL_STATIC_FUNCTION(SECTION_OP, FUNC)      \
420   asm (SECTION_OP "\n"                                  \
421 "       bl " #FUNC "\n"                                 \
422 "       nop\n"                                          \
423 "       .previous");
424 #endif
425 #endif
426
427 /* FP save and restore routines.  */
428 #undef  SAVE_FP_PREFIX
429 #define SAVE_FP_PREFIX (TARGET_64BIT ? "._savef" : "_savefpr_")
430 #undef  SAVE_FP_SUFFIX
431 #define SAVE_FP_SUFFIX (TARGET_64BIT ? "" : "_l")
432 #undef  RESTORE_FP_PREFIX
433 #define RESTORE_FP_PREFIX (TARGET_64BIT ? "._restf" : "_restfpr_")
434 #undef  RESTORE_FP_SUFFIX
435 #define RESTORE_FP_SUFFIX (TARGET_64BIT ? "" : "_l")
436
437 /* Dwarf2 debugging.  */
438 #undef  PREFERRED_DEBUGGING_TYPE
439 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
440
441 /* This is how to declare the size of a function.  */
442 #undef  ASM_DECLARE_FUNCTION_SIZE
443 #define ASM_DECLARE_FUNCTION_SIZE(FILE, FNAME, DECL)                    \
444   do                                                                    \
445     {                                                                   \
446       if (!flag_inhibit_size_directive)                                 \
447         {                                                               \
448           fputs ("\t.size\t", (FILE));                                  \
449           if (TARGET_64BIT && DOT_SYMBOLS)                              \
450             putc ('.', (FILE));                                         \
451           assemble_name ((FILE), (FNAME));                              \
452           fputs (",.-", (FILE));                                        \
453           rs6000_output_function_entry (FILE, FNAME);                   \
454           putc ('\n', (FILE));                                          \
455         }                                                               \
456     }                                                                   \
457   while (0)
458
459 /* Return nonzero if this entry is to be written into the constant
460    pool in a special way.  We do so if this is a SYMBOL_REF, LABEL_REF
461    or a CONST containing one of them.  If -mfp-in-toc (the default),
462    we also do this for floating-point constants.  We actually can only
463    do this if the FP formats of the target and host machines are the
464    same, but we can't check that since not every file that uses
465    GO_IF_LEGITIMATE_ADDRESS_P includes real.h.  We also do this when
466    we can write the entry into the TOC and the entry is not larger
467    than a TOC entry.  */
468
469 #undef  ASM_OUTPUT_SPECIAL_POOL_ENTRY_P
470 #define ASM_OUTPUT_SPECIAL_POOL_ENTRY_P(X, MODE)                        \
471   (TARGET_TOC                                                           \
472    && (GET_CODE (X) == SYMBOL_REF                                       \
473        || (GET_CODE (X) == CONST && GET_CODE (XEXP (X, 0)) == PLUS      \
474            && GET_CODE (XEXP (XEXP (X, 0), 0)) == SYMBOL_REF)           \
475        || GET_CODE (X) == LABEL_REF                                     \
476        || (GET_CODE (X) == CONST_INT                                    \
477            && GET_MODE_BITSIZE (MODE) <= GET_MODE_BITSIZE (Pmode))      \
478        || (GET_CODE (X) == CONST_DOUBLE                                 \
479            && ((TARGET_64BIT                                            \
480                 && (TARGET_MINIMAL_TOC                                  \
481                     || (SCALAR_FLOAT_MODE_P (GET_MODE (X))              \
482                         && ! TARGET_NO_FP_IN_TOC)))                     \
483                || (!TARGET_64BIT                                        \
484                    && !TARGET_NO_FP_IN_TOC                              \
485                    && !TARGET_RELOCATABLE                               \
486                    && SCALAR_FLOAT_MODE_P (GET_MODE (X))                \
487                    && BITS_PER_WORD == HOST_BITS_PER_INT)))))
488
489 /* Select a format to encode pointers in exception handling data.  CODE
490    is 0 for data, 1 for code labels, 2 for function pointers.  GLOBAL is
491    true if the symbol may be affected by dynamic relocations.  */
492 #undef  ASM_PREFERRED_EH_DATA_FORMAT
493 #define ASM_PREFERRED_EH_DATA_FORMAT(CODE, GLOBAL) \
494   ((TARGET_64BIT || flag_pic || TARGET_RELOCATABLE)                     \
495    ? (((GLOBAL) ? DW_EH_PE_indirect : 0) | DW_EH_PE_pcrel               \
496       | (TARGET_64BIT ? DW_EH_PE_udata8 : DW_EH_PE_sdata4))             \
497    : DW_EH_PE_absptr)
498
499 /* For backward compatibility, we must continue to use the AIX
500    structure return convention.  */
501 #undef DRAFT_V4_STRUCT_RET
502 #define DRAFT_V4_STRUCT_RET (!TARGET_64BIT)
503
504 #define TARGET_ASM_FILE_END rs6000_elf_end_indicate_exec_stack
505
506 #define TARGET_POSIX_IO
507
508 #define LINK_GCC_C_SEQUENCE_SPEC \
509   "%{static:--start-group} %G %L %{static:--end-group}%{!static:%G}"
510
511 /* Use --as-needed -lgcc_s for eh support.  */
512 #ifdef HAVE_LD_AS_NEEDED
513 #define USE_LD_AS_NEEDED 1
514 #endif
515
516 #define MD_UNWIND_SUPPORT "config/rs6000/linux-unwind.h"
517
518 #ifdef TARGET_LIBC_PROVIDES_SSP
519 /* ppc32 glibc provides __stack_chk_guard in -0x7008(2),
520    ppc64 glibc provides it at -0x7010(13).  */
521 #define TARGET_THREAD_SSP_OFFSET        (TARGET_64BIT ? -0x7010 : -0x7008)
522 #endif
523
524 #define POWERPC_LINUX
525
526 /* ppc{32,64} linux has 128-bit long double support in glibc 2.4 and later.  */
527 #ifdef TARGET_DEFAULT_LONG_DOUBLE_128
528 #define RS6000_DEFAULT_LONG_DOUBLE_SIZE 128
529 #endif