OSDN Git Service

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