OSDN Git Service

* system.h (SELECT_RTX_SECTION): Poison.
[pf3gnuchains/gcc-fork.git] / gcc / config / rs6000 / sysv4.h
1 /* Target definitions for GNU compiler for PowerPC running System V.4
2    Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
3    Free Software Foundation, Inc.
4    Contributed by Cygnus Support.
5
6 This file is part of GNU CC.
7
8 GNU CC 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 2, or (at your option)
11 any later version.
12
13 GNU CC 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.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING.  If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA.  */
22
23
24 /* Yes!  We are ELF.  */
25 #define TARGET_OBJECT_FORMAT OBJECT_ELF
26
27 /* Default ABI to compile code for.  */
28 #define DEFAULT_ABI rs6000_current_abi
29
30 /* Default ABI to use.  */
31 #define RS6000_ABI_NAME "sysv"
32
33 /* Override rs6000.h definition.  */
34 #undef  ASM_DEFAULT_SPEC
35 #define ASM_DEFAULT_SPEC "-mppc"
36
37 /* Override rs6000.h definition.  */
38 #undef  CPP_DEFAULT_SPEC
39 #define CPP_DEFAULT_SPEC "-D_ARCH_PPC"
40
41 /* Small data support types.  */
42 enum rs6000_sdata_type {
43   SDATA_NONE,                   /* No small data support.  */
44   SDATA_DATA,                   /* Just put data in .sbss/.sdata, don't use relocs.  */
45   SDATA_SYSV,                   /* Use r13 to point to .sdata/.sbss.  */
46   SDATA_EABI                    /* Use r13 like above, r2 points to .sdata2/.sbss2.  */
47 };
48
49 extern enum rs6000_sdata_type rs6000_sdata;
50
51 /* V.4/eabi switches.  */
52 #define MASK_NO_BITFIELD_TYPE   0x40000000      /* Set PCC_BITFIELD_TYPE_MATTERS to 0.  */
53 #define MASK_STRICT_ALIGN       0x20000000      /* Set STRICT_ALIGNMENT to 1.  */
54 #define MASK_RELOCATABLE        0x10000000      /* GOT pointers are PC relative.  */
55 #define MASK_EABI               0x08000000      /* Adhere to eabi, not System V spec.  */
56 #define MASK_LITTLE_ENDIAN      0x04000000      /* Target is little endian.  */
57 #define MASK_REGNAMES           0x02000000      /* Use alternate register names.  */
58 #define MASK_PROTOTYPE          0x01000000      /* Only prototyped fcns pass variable args.  */
59 #define MASK_NO_BITFIELD_WORD   0x00800000      /* Bitfields cannot cross word boundaries */
60
61 #define TARGET_NO_BITFIELD_TYPE (target_flags & MASK_NO_BITFIELD_TYPE)
62 #define TARGET_STRICT_ALIGN     (target_flags & MASK_STRICT_ALIGN)
63 #define TARGET_RELOCATABLE      (target_flags & MASK_RELOCATABLE)
64 #define TARGET_EABI             (target_flags & MASK_EABI)
65 #define TARGET_LITTLE_ENDIAN    (target_flags & MASK_LITTLE_ENDIAN)
66 #define TARGET_REGNAMES         (target_flags & MASK_REGNAMES)
67 #define TARGET_PROTOTYPE        (target_flags & MASK_PROTOTYPE)
68 #define TARGET_NO_BITFIELD_WORD (target_flags & MASK_NO_BITFIELD_WORD)
69 #define TARGET_TOC              ((target_flags & MASK_64BIT)            \
70                                  || ((target_flags & (MASK_RELOCATABLE  \
71                                                       | MASK_MINIMAL_TOC)) \
72                                      && flag_pic > 1)                   \
73                                  || DEFAULT_ABI == ABI_AIX)
74
75 #define TARGET_BITFIELD_TYPE    (! TARGET_NO_BITFIELD_TYPE)
76 #define TARGET_BIG_ENDIAN       (! TARGET_LITTLE_ENDIAN)
77 #define TARGET_NO_PROTOTYPE     (! TARGET_PROTOTYPE)
78 #define TARGET_NO_TOC           (! TARGET_TOC)
79 #define TARGET_NO_EABI          (! TARGET_EABI)
80
81 /* Strings provided by SUBTARGET_OPTIONS */
82 extern const char *rs6000_abi_name;
83 extern const char *rs6000_sdata_name;
84
85 /* Override rs6000.h definition.  */
86 #undef  SUBTARGET_OPTIONS
87 #define SUBTARGET_OPTIONS                                               \
88   { "call-",  &rs6000_abi_name, N_("Select ABI calling convention") },  \
89   { "sdata=", &rs6000_sdata_name, N_("Select method for sdata handling") }
90
91 /* Max # of bytes for variables to automatically be put into the .sdata
92    or .sdata2 sections.  */
93 extern int g_switch_value;              /* Value of the -G xx switch.  */
94 extern int g_switch_set;                /* Whether -G xx was passed.  */
95
96 #define SDATA_DEFAULT_SIZE 8
97
98 /* Note, V.4 no longer uses a normal TOC, so make -mfull-toc, be just
99    the same as -mminimal-toc.  */
100 /* Override rs6000.h definition.  */
101 #undef  SUBTARGET_SWITCHES
102 #define SUBTARGET_SWITCHES                                              \
103   { "bit-align",        -MASK_NO_BITFIELD_TYPE,                         \
104     N_("Align to the base type of the bit-field") },                    \
105   { "no-bit-align",      MASK_NO_BITFIELD_TYPE,                         \
106     N_("Don't align to the base type of the bit-field") },              \
107   { "strict-align",      MASK_STRICT_ALIGN,                             \
108     N_("Don't assume that unaligned accesses are handled by the system") }, \
109   { "no-strict-align",  -MASK_STRICT_ALIGN,                             \
110     N_("Assume that unaligned accesses are handled by the system") },   \
111   { "relocatable",       MASK_RELOCATABLE | MASK_MINIMAL_TOC | MASK_NO_FP_IN_TOC, \
112     N_("Produce code relocatable at runtime") },                        \
113   { "no-relocatable",   -MASK_RELOCATABLE,                              \
114     N_("Don't produce code relocatable at runtime") },                  \
115   { "relocatable-lib",   MASK_RELOCATABLE | MASK_MINIMAL_TOC | MASK_NO_FP_IN_TOC, \
116     N_("Produce code relocatable at runtime") },                        \
117   { "no-relocatable-lib", -MASK_RELOCATABLE,                            \
118     N_("Don't produce code relocatable at runtime") },                  \
119   { "little-endian",     MASK_LITTLE_ENDIAN,                            \
120     N_("Produce little endian code") },                                 \
121   { "little",            MASK_LITTLE_ENDIAN,                            \
122     N_("Produce little endian code") },                                 \
123   { "big-endian",       -MASK_LITTLE_ENDIAN,                            \
124     N_("Produce big endian code") },                                    \
125   { "big",              -MASK_LITTLE_ENDIAN,                            \
126     N_("Produce big endian code") },                                    \
127   { "no-toc",            0, N_("no description yet") },                 \
128   { "toc",               MASK_MINIMAL_TOC, N_("no description yet") },  \
129   { "full-toc",          MASK_MINIMAL_TOC, N_("no description yet") },  \
130   { "prototype",         MASK_PROTOTYPE, N_("no description yet") },    \
131   { "no-prototype",     -MASK_PROTOTYPE, N_("no description yet") },    \
132   { "no-traceback",      0, N_("no description yet") },                 \
133   { "eabi",              MASK_EABI, N_("Use EABI") },                   \
134   { "no-eabi",          -MASK_EABI, N_("Don't use EABI") },             \
135   { "bit-word",         -MASK_NO_BITFIELD_WORD, "" },                   \
136   { "no-bit-word",       MASK_NO_BITFIELD_WORD,                         \
137     N_("Do not allow bit-fields to cross word boundaries") },           \
138   { "regnames",           MASK_REGNAMES,                                \
139     N_("Use alternate register names") },                               \
140   { "no-regnames",       -MASK_REGNAMES,                                \
141     N_("Don't use alternate register names") },                         \
142   { "sdata",             0, N_("no description yet") },                 \
143   { "no-sdata",          0, N_("no description yet") },                 \
144   { "sim",               0,                                             \
145     N_("Link with libsim.a, libc.a and sim-crt0.o") },                  \
146   { "ads",               0,                                             \
147     N_("Link with libads.a, libc.a and crt0.o") },                      \
148   { "yellowknife",       0,                                             \
149     N_("Link with libyk.a, libc.a and crt0.o") },                       \
150   { "mvme",              0,                                             \
151     N_("Link with libmvme.a, libc.a and crt0.o") },                     \
152   { "emb",               0,                                             \
153     N_("Set the PPC_EMB bit in the ELF flags header") },                \
154   { "vxworks",           0, N_("no description yet") },                 \
155   { "windiss",           0, N_("Use the WindISS simulator") },          \
156   { "shlib",             0, N_("no description yet") },                 \
157   EXTRA_SUBTARGET_SWITCHES                                              \
158   { "newlib",            0, N_("no description yet") },
159
160 /* This is meant to be redefined in the host dependent files.  */
161 #define EXTRA_SUBTARGET_SWITCHES
162
163 /* Sometimes certain combinations of command options do not make sense
164    on a particular target machine.  You can define a macro
165    `OVERRIDE_OPTIONS' to take account of this.  This macro, if
166    defined, is executed once just after all the command options have
167    been parsed.
168
169    The macro SUBTARGET_OVERRIDE_OPTIONS is provided for subtargets, to
170    get control.  */
171
172 #define SUBTARGET_OVERRIDE_OPTIONS                                      \
173 do {                                                                    \
174   if (!g_switch_set)                                                    \
175     g_switch_value = SDATA_DEFAULT_SIZE;                                \
176                                                                         \
177   if (!strcmp (rs6000_abi_name, "sysv"))                                \
178     rs6000_current_abi = ABI_V4;                                        \
179   else if (!strcmp (rs6000_abi_name, "sysv-noeabi"))                    \
180     {                                                                   \
181       rs6000_current_abi = ABI_V4;                                      \
182       target_flags &= ~ MASK_EABI;                                      \
183     }                                                                   \
184   else if (!strcmp (rs6000_abi_name, "sysv-eabi")                       \
185            || !strcmp (rs6000_abi_name, "eabi"))                        \
186     {                                                                   \
187       rs6000_current_abi = ABI_V4;                                      \
188       target_flags |= MASK_EABI;                                        \
189     }                                                                   \
190   else if (!strcmp (rs6000_abi_name, "aix"))                            \
191     {                                                                   \
192       rs6000_current_abi = ABI_AIX_NODESC;                              \
193       target_flags |= MASK_EABI;                                        \
194     }                                                                   \
195   else if (!strcmp (rs6000_abi_name, "aixdesc"))                        \
196     rs6000_current_abi = ABI_AIX;                                       \
197   else if (!strcmp (rs6000_abi_name, "freebsd"))                        \
198     rs6000_current_abi = ABI_V4;                                        \
199   else if (!strcmp (rs6000_abi_name, "linux"))                          \
200     rs6000_current_abi = ABI_V4;                                        \
201   else if (!strcmp (rs6000_abi_name, "gnu"))                            \
202     rs6000_current_abi = ABI_V4;                                        \
203   else if (!strcmp (rs6000_abi_name, "netbsd"))                         \
204     rs6000_current_abi = ABI_V4;                                        \
205   else if (!strcmp (rs6000_abi_name, "i960-old"))                       \
206     {                                                                   \
207       rs6000_current_abi = ABI_V4;                                      \
208       target_flags |= (MASK_LITTLE_ENDIAN | MASK_EABI                   \
209                        | MASK_NO_BITFIELD_WORD);                        \
210       target_flags &= ~MASK_STRICT_ALIGN;                               \
211     }                                                                   \
212   else                                                                  \
213     {                                                                   \
214       rs6000_current_abi = ABI_V4;                                      \
215       error ("bad value for -mcall-%s", rs6000_abi_name);               \
216     }                                                                   \
217                                                                         \
218   if (rs6000_sdata_name)                                                \
219     {                                                                   \
220       if (!strcmp (rs6000_sdata_name, "none"))                          \
221         rs6000_sdata = SDATA_NONE;                                      \
222       else if (!strcmp (rs6000_sdata_name, "data"))                     \
223         rs6000_sdata = SDATA_DATA;                                      \
224       else if (!strcmp (rs6000_sdata_name, "default"))                  \
225         rs6000_sdata = (TARGET_EABI) ? SDATA_EABI : SDATA_SYSV;         \
226       else if (!strcmp (rs6000_sdata_name, "sysv"))                     \
227         rs6000_sdata = SDATA_SYSV;                                      \
228       else if (!strcmp (rs6000_sdata_name, "eabi"))                     \
229         rs6000_sdata = SDATA_EABI;                                      \
230       else                                                              \
231         error ("bad value for -msdata=%s", rs6000_sdata_name);          \
232     }                                                                   \
233   else if (DEFAULT_ABI == ABI_V4)                                       \
234     {                                                                   \
235       rs6000_sdata = SDATA_DATA;                                        \
236       rs6000_sdata_name = "data";                                       \
237     }                                                                   \
238   else                                                                  \
239     {                                                                   \
240       rs6000_sdata = SDATA_NONE;                                        \
241       rs6000_sdata_name = "none";                                       \
242     }                                                                   \
243                                                                         \
244   if (TARGET_RELOCATABLE &&                                             \
245       (rs6000_sdata == SDATA_EABI || rs6000_sdata == SDATA_SYSV))       \
246     {                                                                   \
247       rs6000_sdata = SDATA_DATA;                                        \
248       error ("-mrelocatable and -msdata=%s are incompatible",           \
249              rs6000_sdata_name);                                        \
250     }                                                                   \
251                                                                         \
252   else if (flag_pic &&                                                  \
253            (rs6000_sdata == SDATA_EABI || rs6000_sdata == SDATA_SYSV))  \
254     {                                                                   \
255       rs6000_sdata = SDATA_DATA;                                        \
256       error ("-f%s and -msdata=%s are incompatible",                    \
257              (flag_pic > 1) ? "PIC" : "pic",                            \
258              rs6000_sdata_name);                                        \
259     }                                                                   \
260                                                                         \
261   if (rs6000_sdata != SDATA_NONE && DEFAULT_ABI != ABI_V4)              \
262     {                                                                   \
263       rs6000_sdata = SDATA_NONE;                                        \
264       error ("-msdata=%s and -mcall-%s are incompatible",               \
265              rs6000_sdata_name, rs6000_abi_name);                       \
266     }                                                                   \
267                                                                         \
268   if (TARGET_RELOCATABLE && !TARGET_MINIMAL_TOC)                        \
269     {                                                                   \
270       target_flags |= MASK_MINIMAL_TOC;                                 \
271       error ("-mrelocatable and -mno-minimal-toc are incompatible");    \
272     }                                                                   \
273                                                                         \
274   if (TARGET_RELOCATABLE && rs6000_current_abi == ABI_AIX)              \
275     {                                                                   \
276       target_flags &= ~MASK_RELOCATABLE;                                \
277       error ("-mrelocatable and -mcall-%s are incompatible",            \
278              rs6000_abi_name);                                          \
279     }                                                                   \
280                                                                         \
281   if (flag_pic > 1 && rs6000_current_abi == ABI_AIX)                    \
282     {                                                                   \
283       flag_pic = 0;                                                     \
284       error ("-fPIC and -mcall-%s are incompatible",                    \
285              rs6000_abi_name);                                          \
286     }                                                                   \
287                                                                         \
288   if (rs6000_current_abi == ABI_AIX && TARGET_LITTLE_ENDIAN)            \
289     {                                                                   \
290       target_flags &= ~MASK_LITTLE_ENDIAN;                              \
291       error ("-mcall-aixdesc must be big endian");                      \
292     }                                                                   \
293                                                                         \
294   /* Treat -fPIC the same as -mrelocatable.  */                         \
295   if (flag_pic > 1)                                                     \
296     target_flags |= MASK_RELOCATABLE | MASK_MINIMAL_TOC | MASK_NO_FP_IN_TOC; \
297                                                                         \
298   else if (TARGET_RELOCATABLE)                                          \
299     flag_pic = 2;                                                       \
300                                                                         \
301 } while (0)
302
303
304 /* Override rs6000.h definition.  */
305 #undef  TARGET_DEFAULT
306 #define TARGET_DEFAULT (MASK_POWERPC | MASK_NEW_MNEMONICS)
307
308 /* Override rs6000.h definition.  */
309 #undef  PROCESSOR_DEFAULT
310 #define PROCESSOR_DEFAULT PROCESSOR_PPC750
311
312 #define FIXED_R2 1
313 /* System V.4 uses register 13 as a pointer to the small data area,
314    so it is not available to the normal user.  */
315 #define FIXED_R13 1
316
317 /* Size of the V.4 varargs area if needed.  */
318 /* Override rs6000.h definition.  */
319 #undef  RS6000_VARARGS_AREA
320 #define RS6000_VARARGS_AREA ((cfun->machine->sysv_varargs_p) ? RS6000_VARARGS_SIZE : 0)
321
322 /* Override default big endianism definitions in rs6000.h.  */
323 #undef  BYTES_BIG_ENDIAN
324 #undef  WORDS_BIG_ENDIAN
325 #define BYTES_BIG_ENDIAN (TARGET_BIG_ENDIAN)
326 #define WORDS_BIG_ENDIAN (TARGET_BIG_ENDIAN)
327
328 /* Define this to set the endianness to use in libgcc2.c, which can
329    not depend on target_flags.  */
330 #if !defined(_LITTLE_ENDIAN) && !defined(__sun__)
331 #define LIBGCC2_WORDS_BIG_ENDIAN 1
332 #else
333 #define LIBGCC2_WORDS_BIG_ENDIAN 0
334 #endif
335
336 /* Define cutoff for using external functions to save floating point.
337    Currently on V.4, always use inline stores.  */
338 #define FP_SAVE_INLINE(FIRST_REG) ((FIRST_REG) < 64)
339
340 /* Put jump tables in read-only memory, rather than in .text.  */
341 #define JUMP_TABLES_IN_TEXT_SECTION 0
342
343 /* Prefix and suffix to use to saving floating point.  */
344 #define SAVE_FP_PREFIX "_savefpr_"
345 #define SAVE_FP_SUFFIX "_l"
346
347 /* Prefix and suffix to use to restoring floating point.  */
348 #define RESTORE_FP_PREFIX "_restfpr_"
349 #define RESTORE_FP_SUFFIX "_l"
350
351 /* Type used for ptrdiff_t, as a string used in a declaration.  */
352 #define PTRDIFF_TYPE "int"
353
354 /* Type used for wchar_t, as a string used in a declaration.  */
355 /* Override svr4.h definition.  */
356 #undef  WCHAR_TYPE
357 #define WCHAR_TYPE "long int"
358
359 /* Width of wchar_t in bits.  */
360 /* Override svr4.h definition.  */
361 #undef  WCHAR_TYPE_SIZE
362 #define WCHAR_TYPE_SIZE 32
363
364 /* Make int foo : 8 not cause structures to be aligned to an int boundary.  */
365 /* Override elfos.h definition.  */
366 #undef  PCC_BITFIELD_TYPE_MATTERS
367 #define PCC_BITFIELD_TYPE_MATTERS (TARGET_BITFIELD_TYPE)
368
369 #undef  BITFIELD_NBYTES_LIMITED
370 #define BITFIELD_NBYTES_LIMITED (TARGET_NO_BITFIELD_WORD)
371
372 /* Define this macro to be the value 1 if instructions will fail to
373    work if given data not on the nominal alignment.  If instructions
374    will merely go slower in that case, define this macro as 0.  */
375 #undef  STRICT_ALIGNMENT
376 #define STRICT_ALIGNMENT (TARGET_STRICT_ALIGN)
377
378 /* Alignment in bits of the stack boundary.  Note, in order to allow building
379    one set of libraries with -mno-eabi instead of eabi libraries and non-eabi
380    versions, just use 64 as the stack boundary.  */
381 #undef  STACK_BOUNDARY
382 #define STACK_BOUNDARY  (TARGET_ALTIVEC_ABI ? 128 : 64)
383
384 /* Real stack boundary as mandated by the appropriate ABI.  */
385 #define ABI_STACK_BOUNDARY ((TARGET_EABI && !TARGET_ALTIVEC_ABI) ? 64 : 128)
386
387 /* An expression for the alignment of a structure field FIELD if the
388    alignment computed in the usual way is COMPUTED.  */
389 #define ADJUST_FIELD_ALIGN(FIELD, COMPUTED)                                   \
390         ((TARGET_ALTIVEC && TREE_CODE (TREE_TYPE (FIELD)) == VECTOR_TYPE)     \
391          ? 128 : COMPUTED)
392
393 /* Define this macro as an expression for the alignment of a type
394    (given by TYPE as a tree node) if the alignment computed in the
395    usual way is COMPUTED and the alignment explicitly specified was
396    SPECIFIED.  */
397 #define ROUND_TYPE_ALIGN(TYPE, COMPUTED, SPECIFIED)                     \
398         ((TARGET_ALTIVEC  && TREE_CODE (TYPE) == VECTOR_TYPE)           \
399          ? MAX (MAX ((COMPUTED), (SPECIFIED)), 128)                     \
400          : MAX (COMPUTED, SPECIFIED))
401
402 #undef  BIGGEST_FIELD_ALIGNMENT
403 #undef  ADJUST_FIELD_ALIGN
404
405 /* Use ELF style section commands.  */
406
407 #define TEXT_SECTION_ASM_OP     "\t.section\t\".text\""
408
409 #define DATA_SECTION_ASM_OP     "\t.section\t\".data\""
410
411 #define BSS_SECTION_ASM_OP      "\t.section\t\".bss\""
412
413 /* Override elfos.h definition.  */
414 #undef  INIT_SECTION_ASM_OP
415 #define INIT_SECTION_ASM_OP "\t.section\t\".init\",\"ax\""
416
417 /* Override elfos.h definition.  */
418 #undef  FINI_SECTION_ASM_OP
419 #define FINI_SECTION_ASM_OP "\t.section\t\".fini\",\"ax\""
420
421 #define TOC_SECTION_ASM_OP "\t.section\t\".got\",\"aw\""
422
423 /* Put PC relative got entries in .got2.  */
424 #define MINIMAL_TOC_SECTION_ASM_OP \
425   ((TARGET_RELOCATABLE || flag_pic) ? "\t.section\t\".got2\",\"aw\"" : "\t.section\t\".got1\",\"aw\"")
426
427 #define SDATA_SECTION_ASM_OP "\t.section\t\".sdata\",\"aw\""
428 #define SDATA2_SECTION_ASM_OP "\t.section\t\".sdata2\",\"a\""
429 #define SBSS_SECTION_ASM_OP "\t.section\t\".sbss\",\"aw\",@nobits"
430
431 /* Besides the usual ELF sections, we need a toc section.  */
432 /* Override elfos.h definition.  */
433 #undef  EXTRA_SECTIONS
434 #define EXTRA_SECTIONS in_toc, in_sdata, in_sdata2, in_sbss, in_init, in_fini
435
436 /* Override elfos.h definition.  */
437 #undef  EXTRA_SECTION_FUNCTIONS
438 #define EXTRA_SECTION_FUNCTIONS                                         \
439   TOC_SECTION_FUNCTION                                                  \
440   SDATA_SECTION_FUNCTION                                                \
441   SDATA2_SECTION_FUNCTION                                               \
442   SBSS_SECTION_FUNCTION                                                 \
443   INIT_SECTION_FUNCTION                                                 \
444   FINI_SECTION_FUNCTION
445
446 #define TOC_SECTION_FUNCTION                                            \
447 void                                                                    \
448 toc_section ()                                                          \
449 {                                                                       \
450   if (in_section != in_toc)                                             \
451     {                                                                   \
452       in_section = in_toc;                                              \
453       if (DEFAULT_ABI == ABI_AIX                                        \
454           && TARGET_MINIMAL_TOC                                         \
455           && !TARGET_RELOCATABLE)                                       \
456         {                                                               \
457           if (! toc_initialized)                                        \
458             {                                                           \
459               toc_initialized = 1;                                      \
460               fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);       \
461               ASM_OUTPUT_INTERNAL_LABEL (asm_out_file, "LCTOC", 0);     \
462               fprintf (asm_out_file, "\t.tc ");                         \
463               ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1[TC],"); \
464               ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1"); \
465               fprintf (asm_out_file, "\n");                             \
466                                                                         \
467               fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP); \
468               ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1"); \
469               fprintf (asm_out_file, " = .+32768\n");                   \
470             }                                                           \
471           else                                                          \
472             fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP); \
473         }                                                               \
474       else if (DEFAULT_ABI == ABI_AIX && !TARGET_RELOCATABLE)           \
475         fprintf (asm_out_file, "%s\n", TOC_SECTION_ASM_OP);             \
476       else                                                              \
477         {                                                               \
478           fprintf (asm_out_file, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);   \
479           if (! toc_initialized)                                        \
480             {                                                           \
481               ASM_OUTPUT_INTERNAL_LABEL_PREFIX (asm_out_file, "LCTOC1"); \
482               fprintf (asm_out_file, " = .+32768\n");                   \
483               toc_initialized = 1;                                      \
484             }                                                           \
485         }                                                               \
486     }                                                                   \
487 }                                                                       \
488                                                                         \
489 extern int in_toc_section PARAMS ((void));                              \
490 int in_toc_section ()                                                   \
491 {                                                                       \
492   return in_section == in_toc;                                          \
493 }
494
495 #define SDATA_SECTION_FUNCTION                                          \
496 void                                                                    \
497 sdata_section ()                                                        \
498 {                                                                       \
499   if (in_section != in_sdata)                                           \
500     {                                                                   \
501       in_section = in_sdata;                                            \
502       fprintf (asm_out_file, "%s\n", SDATA_SECTION_ASM_OP);             \
503     }                                                                   \
504 }
505
506 #define SDATA2_SECTION_FUNCTION                                         \
507 void                                                                    \
508 sdata2_section ()                                                       \
509 {                                                                       \
510   if (in_section != in_sdata2)                                          \
511     {                                                                   \
512       in_section = in_sdata2;                                           \
513       fprintf (asm_out_file, "%s\n", SDATA2_SECTION_ASM_OP);            \
514     }                                                                   \
515 }
516
517 #define SBSS_SECTION_FUNCTION                                           \
518 void                                                                    \
519 sbss_section ()                                                         \
520 {                                                                       \
521   if (in_section != in_sbss)                                            \
522     {                                                                   \
523       in_section = in_sbss;                                             \
524       fprintf (asm_out_file, "%s\n", SBSS_SECTION_ASM_OP);              \
525     }                                                                   \
526 }
527
528 #define INIT_SECTION_FUNCTION                                           \
529 void                                                                    \
530 init_section ()                                                         \
531 {                                                                       \
532   if (in_section != in_init)                                            \
533     {                                                                   \
534       in_section = in_init;                                             \
535       fprintf (asm_out_file, "%s\n", INIT_SECTION_ASM_OP);              \
536     }                                                                   \
537 }
538
539 #define FINI_SECTION_FUNCTION                                           \
540 void                                                                    \
541 fini_section ()                                                         \
542 {                                                                       \
543   if (in_section != in_fini)                                            \
544     {                                                                   \
545       in_section = in_fini;                                             \
546       fprintf (asm_out_file, "%s\n", FINI_SECTION_ASM_OP);              \
547     }                                                                   \
548 }
549
550 /* Override default elf definitions.  */
551 #undef  TARGET_ASM_SELECT_RTX_SECTION
552 #define TARGET_ASM_SELECT_RTX_SECTION rs6000_elf_select_rtx_section
553 #undef  TARGET_ASM_SELECT_SECTION
554 #define TARGET_ASM_SELECT_SECTION  rs6000_elf_select_section
555 #define TARGET_ASM_UNIQUE_SECTION  rs6000_elf_unique_section
556
557 /* Return non-zero if this entry is to be written into the constant pool
558    in a special way.  We do so if this is a SYMBOL_REF, LABEL_REF or a CONST
559    containing one of them.  If -mfp-in-toc (the default), we also do
560    this for floating-point constants.  We actually can only do this
561    if the FP formats of the target and host machines are the same, but
562    we can't check that since not every file that uses
563    GO_IF_LEGITIMATE_ADDRESS_P includes real.h.
564
565    Unlike AIX, we don't key off of -mminimal-toc, but instead do not
566    allow floating point constants in the TOC if -mrelocatable.  */
567
568 #undef  ASM_OUTPUT_SPECIAL_POOL_ENTRY_P
569 #define ASM_OUTPUT_SPECIAL_POOL_ENTRY_P(X, MODE)                        \
570   (TARGET_TOC                                                           \
571    && (GET_CODE (X) == SYMBOL_REF                                       \
572        || (GET_CODE (X) == CONST && GET_CODE (XEXP (X, 0)) == PLUS      \
573            && GET_CODE (XEXP (XEXP (X, 0), 0)) == SYMBOL_REF)           \
574        || GET_CODE (X) == LABEL_REF                                     \
575        || (GET_CODE (X) == CONST_INT                                    \
576            && GET_MODE_BITSIZE (MODE) <= GET_MODE_BITSIZE (Pmode))      \
577        || (!TARGET_NO_FP_IN_TOC                                         \
578            && !TARGET_RELOCATABLE                                       \
579            && GET_CODE (X) == CONST_DOUBLE                              \
580            && GET_MODE_CLASS (GET_MODE (X)) == MODE_FLOAT               \
581            && BITS_PER_WORD == HOST_BITS_PER_INT)))
582
583 /* These macros generate the special .type and .size directives which
584    are used to set the corresponding fields of the linker symbol table
585    entries in an ELF object file under SVR4.  These macros also output
586    the starting labels for the relevant functions/objects.  */
587
588 /* Write the extra assembler code needed to declare a function properly.
589    Some svr4 assemblers need to also have something extra said about the
590    function's return value.  We allow for that here.  */
591
592 extern int rs6000_pic_labelno;
593
594 /* Override elfos.h definition.  */
595 #undef  ASM_DECLARE_FUNCTION_NAME
596 #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL)                     \
597   do {                                                                  \
598     const char *const init_ptr = (TARGET_64BIT) ? ".quad" : ".long";    \
599                                                                         \
600     if (TARGET_RELOCATABLE                                              \
601         && (get_pool_size () != 0 || current_function_profile)          \
602         && uses_TOC())                                                  \
603       {                                                                 \
604         char buf[256];                                                  \
605                                                                         \
606         ASM_OUTPUT_INTERNAL_LABEL (FILE, "LCL", rs6000_pic_labelno);    \
607                                                                         \
608         ASM_GENERATE_INTERNAL_LABEL (buf, "LCTOC", 1);                  \
609         fprintf (FILE, "\t%s ", init_ptr);                              \
610         assemble_name (FILE, buf);                                      \
611         putc ('-', FILE);                                               \
612         ASM_GENERATE_INTERNAL_LABEL (buf, "LCF", rs6000_pic_labelno);   \
613         assemble_name (FILE, buf);                                      \
614         putc ('\n', FILE);                                              \
615       }                                                                 \
616                                                                         \
617     fprintf (FILE, "%s", TYPE_ASM_OP);                                  \
618     assemble_name (FILE, NAME);                                         \
619     putc (',', FILE);                                                   \
620     fprintf (FILE, TYPE_OPERAND_FMT, "function");                       \
621     putc ('\n', FILE);                                                  \
622     ASM_DECLARE_RESULT (FILE, DECL_RESULT (DECL));                      \
623                                                                         \
624     if (DEFAULT_ABI == ABI_AIX)                                         \
625       {                                                                 \
626         const char *desc_name, *orig_name;                              \
627                                                                         \
628         STRIP_NAME_ENCODING (orig_name, NAME);                          \
629         desc_name = orig_name;                                          \
630         while (*desc_name == '.')                                       \
631           desc_name++;                                                  \
632                                                                         \
633         if (TREE_PUBLIC (DECL))                                         \
634           fprintf (FILE, "\t.globl %s\n", desc_name);                   \
635                                                                         \
636         fprintf (FILE, "%s\n", MINIMAL_TOC_SECTION_ASM_OP);             \
637         fprintf (FILE, "%s:\n", desc_name);                             \
638         fprintf (FILE, "\t%s %s\n", init_ptr, orig_name);               \
639         fprintf (FILE, "\t%s _GLOBAL_OFFSET_TABLE_\n", init_ptr);       \
640         if (DEFAULT_ABI == ABI_AIX)                                     \
641           fprintf (FILE, "\t%s 0\n", init_ptr);                         \
642         fprintf (FILE, "\t.previous\n");                                \
643       }                                                                 \
644     ASM_OUTPUT_LABEL (FILE, NAME);                                      \
645   } while (0)
646
647 /* A C compound statement that outputs the assembler code for a thunk function,
648     used to implement C++ virtual function calls with multiple inheritance.  The
649     thunk acts as a wrapper around a virtual function, adjusting the implicit
650     object parameter before handing control off to the real function.
651
652     First, emit code to add the integer DELTA to the location that contains the
653     incoming first argument.  Assume that this argument contains a pointer, and
654     is the one used to pass the this' pointer in C++.  This is the incoming
655     argument *before* the function prologue, e.g. %o0' on a sparc.  The
656     addition must preserve the values of all other incoming arguments.
657
658     After the addition, emit code to jump to FUNCTION, which is a
659     FUNCTION_DECL'.  This is a direct pure jump, not a call, and does not touch
660     the return address.  Hence returning from FUNCTION will return to whoever
661     called the current thunk'.
662
663     The effect must be as if FUNCTION had been called directly with the adjusted
664     first argument.  This macro is responsible for emitting all of the code for
665     a thunk function; FUNCTION_PROLOGUE' and FUNCTION_EPILOGUE' are not
666     invoked.
667
668     The THUNK_FNDECL is redundant.  (DELTA and FUNCTION have already been
669     extracted from it.)  It might possibly be useful on some targets, but
670     probably not.
671
672     If you do not define this macro, the target-independent code in the C++
673     frontend will generate a less efficient heavyweight thunk that calls
674     FUNCTION instead of jumping to it.  The generic approach does not support
675     varargs.  */
676
677 #define ASM_OUTPUT_MI_THUNK(FILE, THUNK_FNDECL, DELTA, FUNCTION) \
678   output_mi_thunk (FILE, THUNK_FNDECL, DELTA, FUNCTION)
679
680 /* The USER_LABEL_PREFIX stuff is affected by the -fleading-underscore
681    flag.  The LOCAL_LABEL_PREFIX variable is used by dbxelf.h.  */
682
683 #define LOCAL_LABEL_PREFIX "."
684 #define USER_LABEL_PREFIX ""
685
686 /* svr4.h overrides ASM_OUTPUT_INTERNAL_LABEL.  */
687
688 #define ASM_OUTPUT_INTERNAL_LABEL_PREFIX(FILE,PREFIX)   \
689   asm_fprintf (FILE, "%L%s", PREFIX)
690
691 #define ASM_OUTPUT_LABEL(FILE,NAME)     \
692   (assemble_name (FILE, NAME), fputs (":\n", FILE))
693
694 /* This is how to output a command to make the user-level label named NAME
695    defined for reference from other files.  */
696
697 #define ASM_GLOBALIZE_LABEL(FILE,NAME)  \
698   do { fputs ("\t.globl ", FILE);       \
699        assemble_name (FILE, NAME); putc ('\n', FILE);} while (0)
700
701 /* This says how to output assembler code to declare an
702    uninitialized internal linkage data object.  Under SVR4,
703    the linker seems to want the alignment of data objects
704    to depend on their types.  We do exactly that here.  */
705
706 #define LOCAL_ASM_OP    "\t.local\t"
707
708 #define LCOMM_ASM_OP    "\t.lcomm\t"
709
710 /* Override elfos.h definition.  */
711 #undef  ASM_OUTPUT_ALIGNED_LOCAL
712 #define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN)               \
713 do {                                                                    \
714   if (rs6000_sdata != SDATA_NONE && (SIZE) > 0                          \
715       && (SIZE) <= g_switch_value)                                      \
716     {                                                                   \
717       sbss_section ();                                                  \
718       ASM_OUTPUT_ALIGN (FILE, exact_log2 (ALIGN / BITS_PER_UNIT));      \
719       ASM_OUTPUT_LABEL (FILE, NAME);                                    \
720       ASM_OUTPUT_SKIP (FILE, SIZE);                                     \
721       if (!flag_inhibit_size_directive && (SIZE) > 0)                   \
722         {                                                               \
723           fprintf (FILE, "%s", SIZE_ASM_OP);                            \
724           assemble_name (FILE, NAME);                                   \
725           fprintf (FILE, ",%d\n",  SIZE);                               \
726         }                                                               \
727     }                                                                   \
728   else                                                                  \
729     {                                                                   \
730       fprintf (FILE, "%s", LCOMM_ASM_OP);                               \
731       assemble_name ((FILE), (NAME));                                   \
732       fprintf ((FILE), ",%u,%u\n", (SIZE), (ALIGN) / BITS_PER_UNIT);    \
733     }                                                                   \
734 } while (0)
735
736 /* Describe how to emit uninitialized external linkage items.  */
737 #define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN)           \
738 do {                                                                    \
739   ASM_GLOBALIZE_LABEL (FILE, NAME);                                     \
740   ASM_OUTPUT_ALIGNED_LOCAL (FILE, NAME, SIZE, ALIGN);                   \
741 } while (0)
742
743 /* Switch  Recognition by gcc.c.  Add -G xx support.  */
744
745 /* Override svr4.h definition.  */
746 #undef  SWITCH_TAKES_ARG
747 #define SWITCH_TAKES_ARG(CHAR)                                          \
748   ((CHAR) == 'D' || (CHAR) == 'U' || (CHAR) == 'o'                      \
749    || (CHAR) == 'e' || (CHAR) == 'T' || (CHAR) == 'u'                   \
750    || (CHAR) == 'I' || (CHAR) == 'm' || (CHAR) == 'x'                   \
751    || (CHAR) == 'L' || (CHAR) == 'A' || (CHAR) == 'V'                   \
752    || (CHAR) == 'B' || (CHAR) == 'b' || (CHAR) == 'G')
753
754 /* Output .file.  */
755 /* Override elfos.h definition.  */
756 #undef  ASM_FILE_START
757 #define ASM_FILE_START(FILE)                                            \
758 do {                                                                    \
759   output_file_directive ((FILE), main_input_filename);                  \
760   rs6000_file_start (FILE, TARGET_CPU_DEFAULT);                         \
761 } while (0)
762
763
764 extern int fixuplabelno;
765
766 /* Handle constructors specially for -mrelocatable.  */
767 #define TARGET_ASM_CONSTRUCTOR  rs6000_elf_asm_out_constructor
768 #define TARGET_ASM_DESTRUCTOR   rs6000_elf_asm_out_destructor
769
770 /* This is the end of what might become sysv4.h.  */
771
772 /* Use DWARF 2 debugging information by default.  */
773 #undef  PREFERRED_DEBUGGING_TYPE
774 #define PREFERRED_DEBUGGING_TYPE DWARF2_DEBUG
775
776 /* Historically we have also supported stabs debugging.  */
777 #define DBX_DEBUGGING_INFO
778
779 /* If we are referencing a function that is static or is known to be
780    in this file, make the SYMBOL_REF special.  We can use this to indicate
781    that we can branch to this function without emitting a no-op after the
782    call.  For real AIX calling sequences, we also replace the
783    function name with the real name (1 or 2 leading .'s), rather than
784    the function descriptor name.  This saves a lot of overriding code
785    to read the prefixes.  */
786
787 #undef  ENCODE_SECTION_INFO
788 #define ENCODE_SECTION_INFO(DECL, FIRST) \
789   rs6000_encode_section_info (DECL, FIRST)
790
791 /* The ELF version doesn't encode [DS] or whatever at the end of symbols.  */
792
793 #define RS6000_OUTPUT_BASENAME(FILE, NAME)      \
794     assemble_name (FILE, NAME)
795
796 /* This macro gets just the user-specified name
797    out of the string in a SYMBOL_REF.  Discard
798    a leading * or @.  */
799 #define STRIP_NAME_ENCODING(VAR,SYMBOL_NAME)                            \
800 do {                                                                    \
801   const char *_name = SYMBOL_NAME;                                      \
802   while (*_name == '*' || *_name == '@')                                \
803     _name++;                                                            \
804   (VAR) = _name;                                                        \
805 } while (0)
806
807 /* This is how to output a reference to a user-level label named NAME.
808    `assemble_name' uses this.  */
809
810 /* Override elfos.h definition.  */
811 #undef  ASM_OUTPUT_LABELREF
812 #define ASM_OUTPUT_LABELREF(FILE,NAME)          \
813 do {                                            \
814   const char *_name = NAME;                     \
815   if (*_name == '@')                            \
816     _name++;                                    \
817                                                 \
818   if (*_name == '*')                            \
819     fprintf (FILE, "%s", _name + 1);            \
820   else                                          \
821     asm_fprintf (FILE, "%U%s", _name);          \
822 } while (0)
823
824 /* But, to make this work, we have to output the stabs for the function
825    name *first*...  */
826
827 #define DBX_FUNCTION_FIRST
828
829 /* This is the end of what might become sysv4dbx.h.  */
830
831 #ifndef TARGET_VERSION
832 #define TARGET_VERSION fprintf (stderr, " (PowerPC System V.4)");
833 #endif
834 \f
835 #ifndef CPP_PREDEFINES
836 #define CPP_PREDEFINES \
837   "-DPPC -Dunix -D__svr4__ -Asystem=unix -Asystem=svr4 -Acpu=powerpc -Amachine=powerpc"
838 #endif
839
840 /* Pass various options to the assembler.  */
841 /* Override svr4.h definition.  */
842 #undef  ASM_SPEC
843 #define ASM_SPEC "%(asm_cpu) \
844 %{.s: %{mregnames} %{mno-regnames}} %{.S: %{mregnames} %{mno-regnames}} \
845 %{v:-V} %{Qy:} %{!Qn:-Qy} %{n} %{T} %{Ym,*} %{Yd,*} %{Wa,*:%*} \
846 %{mrelocatable} %{mrelocatable-lib} %{fpic:-K PIC} %{fPIC:-K PIC} \
847 %{memb} %{!memb: %{msdata: -memb} %{msdata=eabi: -memb}} \
848 %{mlittle} %{mlittle-endian} %{mbig} %{mbig-endian} \
849 %{!mlittle: %{!mlittle-endian: %{!mbig: %{!mbig-endian: \
850     %{mcall-freebsd: -mbig} \
851     %{mcall-i960-old: -mlittle} \
852     %{mcall-linux: -mbig} \
853     %{mcall-gnu: -mbig} \
854     %{mcall-netbsd: -mbig} \
855 }}}}"
856
857 #define CC1_ENDIAN_BIG_SPEC ""
858
859 #define CC1_ENDIAN_LITTLE_SPEC "\
860 %{!mstrict-align: %{!mno-strict-align: \
861     %{!mcall-i960-old: \
862         -mstrict-align \
863     } \
864 }}"
865
866 #define CC1_ENDIAN_DEFAULT_SPEC "%(cc1_endian_big)"
867
868 /* Pass -G xxx to the compiler and set correct endian mode.  */
869 #define CC1_SPEC "%{G*} \
870 %{mlittle: %(cc1_endian_little)} %{!mlittle: %{mlittle-endian: %(cc1_endian_little)}} \
871 %{mbig: %(cc1_endian_big)} %{!mbig: %{mbig-endian: %(cc1_endian_big)}} \
872 %{!mlittle: %{!mlittle-endian: %{!mbig: %{!mbig-endian: \
873     %{mcall-aixdesc: -mbig %(cc1_endian_big) } \
874     %{mcall-freebsd: -mbig %(cc1_endian_big) } \
875     %{mcall-i960-old: -mlittle %(cc1_endian_little) } \
876     %{mcall-linux: -mbig %(cc1_endian_big) } \
877     %{mcall-gnu: -mbig %(cc1_endian_big) } \
878     %{mcall-netbsd: -mbig %(cc1_endian_big) } \
879     %{!mcall-aixdesc: %{!mcall-freebsd: %{!mcall-i960-old: %{!mcall-linux: %{!mcall-gnu: %{!mcall-netbsd: \
880             %(cc1_endian_default) \
881     }}}}}} \
882 }}}} \
883 %{mno-sdata: -msdata=none } \
884 %{meabi: %{!mcall-*: -mcall-sysv }} \
885 %{!meabi: %{!mno-eabi: \
886     %{mrelocatable: -meabi } \
887     %{mcall-freebsd: -mno-eabi } \
888     %{mcall-i960-old: -meabi } \
889     %{mcall-linux: -mno-eabi } \
890     %{mcall-gnu: -mno-eabi } \
891     %{mcall-netbsd: -mno-eabi }}} \
892 %{msdata: -msdata=default} \
893 %{mno-sdata: -msdata=none} \
894 %{profile: -p}"
895
896 /* Don't put -Y P,<path> for cross compilers.  */
897 #ifndef CROSS_COMPILE
898 #define LINK_PATH_SPEC "\
899 %{!R*:%{L*:-R %*}} \
900 %{!nostdlib: %{!YP,*: \
901     %{compat-bsd: \
902         %{p:-Y P,/usr/ucblib:/usr/ccs/lib/libp:/usr/lib/libp:/usr/ccs/lib:/usr/lib} \
903         %{!p:-Y P,/usr/ucblib:/usr/ccs/lib:/usr/lib}} \
904         %{!R*: %{!L*: -R /usr/ucblib}} \
905     %{!compat-bsd: \
906         %{p:-Y P,/usr/ccs/lib/libp:/usr/lib/libp:/usr/ccs/lib:/usr/lib} \
907         %{!p:-Y P,/usr/ccs/lib:/usr/lib}}}}"
908
909 #else
910 #define LINK_PATH_SPEC ""
911 #endif
912
913 /* Default starting address if specified.  */
914 #define LINK_START_SPEC "\
915 %{mads: %(link_start_ads) } \
916 %{myellowknife: %(link_start_yellowknife) } \
917 %{mmvme: %(link_start_mvme) } \
918 %{msim: %(link_start_sim) } \
919 %{mwindiss: %(link_start_windiss) } \
920 %{mcall-freebsd: %(link_start_freebsd) } \
921 %{mcall-linux: %(link_start_linux) } \
922 %{mcall-gnu: %(link_start_gnu) } \
923 %{mcall-netbsd: %(link_start_netbsd) } \
924 %{!mads: %{!myellowknife: %{!mmvme: %{!msim: %{!mwindiss: \
925          %{!mcall-linux: %{!mcall-gnu: %{!mcall-netbsd:   \
926          %{!mcall-freebsd: %(link_start_default) }}}}}}}}}"
927
928 #define LINK_START_DEFAULT_SPEC ""
929
930 /* Override svr4.h definition.  */
931 #undef  LINK_SPEC
932 #define LINK_SPEC "\
933 %{h*} %{v:-V} %{!msdata=none:%{G*}} %{msdata=none:-G0} \
934 %{YP,*} %{R*} \
935 %{Qy:} %{!Qn:-Qy} \
936 %(link_shlib) \
937 %{!Wl,-T*: %{!T*: %(link_start) }} \
938 %(link_target) \
939 %(link_os)"
940
941 /* For now, turn off shared libraries by default.  */
942 #ifndef SHARED_LIB_SUPPORT
943 #define NO_SHARED_LIB_SUPPORT
944 #endif
945
946 #ifndef NO_SHARED_LIB_SUPPORT
947 /* Shared libraries are default.  */
948 #define LINK_SHLIB_SPEC "\
949 %{!static: %(link_path) %{!R*:%{L*:-R %*}}} \
950 %{mshlib: } \
951 %{static:-dn -Bstatic} \
952 %{shared:-G -dy -z text} \
953 %{symbolic:-Bsymbolic -G -dy -z text}"
954
955 #else
956 /* Shared libraries are not default.  */
957 #define LINK_SHLIB_SPEC "\
958 %{mshlib: %(link_path) } \
959 %{!mshlib: %{!shared: %{!symbolic: -dn -Bstatic}}} \
960 %{static: } \
961 %{shared:-G -dy -z text %(link_path) } \
962 %{symbolic:-Bsymbolic -G -dy -z text %(link_path) }"
963 #endif
964
965 /* Override the default target of the linker.  */
966 #define LINK_TARGET_SPEC "\
967 %{mlittle: --oformat elf32-powerpcle } %{mlittle-endian: --oformat elf32-powerpcle } \
968 %{!mlittle: %{!mlittle-endian: %{!mbig: %{!mbig-endian: \
969     %{mcall-i960-old: --oformat elf32-powerpcle} \
970   }}}}"
971
972 /* Any specific OS flags.  */
973 #define LINK_OS_SPEC "\
974 %{mads: %(link_os_ads) } \
975 %{myellowknife: %(link_os_yellowknife) } \
976 %{mmvme: %(link_os_mvme) } \
977 %{msim: %(link_os_sim) } \
978 %{mwindiss: %(link_os_windiss) } \
979 %{mcall-freebsd: %(link_os_freebsd) } \
980 %{mcall-linux: %(link_os_linux) } \
981 %{mcall-gnu: %(link_os_gnu) } \
982 %{mcall-netbsd: %(link_os_netbsd) } \
983 %{!mads: %{!myellowknife: %{!mmvme: %{!msim: %{!mwindiss: \
984          %{!mcall-freebsd: %{!mcall-linux: %{!mcall-gnu: \
985          %{!mcall-netbsd: %(link_os_default) }}}}}}}}}"
986
987 #define LINK_OS_DEFAULT_SPEC ""
988
989 #define CPP_SYSV_SPEC \
990 "%{mrelocatable*: -D_RELOCATABLE} \
991 %{fpic: -D__PIC__=1 -D__pic__=1} \
992 %{!fpic: %{fPIC: -D__PIC__=2 -D__pic__=2}} \
993 %{mlong-double-128: -D__LONG_DOUBLE_128__=1} \
994 %{!mlong-double-64: %(cpp_longdouble_default)} \
995 %{mcall-sysv: -D_CALL_SYSV} \
996 %{mcall-aix: -D_CALL_AIX} %{mcall-aixdesc: -D_CALL_AIX -D_CALL_AIXDESC} \
997 %{!mcall-sysv: %{!mcall-aix: %{!mcall-aixdesc: %(cpp_sysv_default) }}} \
998 %{msoft-float: -D_SOFT_FLOAT} \
999 %{!msoft-float: %{!mhard-float: \
1000     %{mcpu=401: -D_SOFT_FLOAT} \
1001     %{mcpu=403: -D_SOFT_FLOAT} \
1002     %{mcpu=405: -D_SOFT_FLOAT} \
1003     %{mcpu=ec603e: -D_SOFT_FLOAT} \
1004     %{mcpu=801: -D_SOFT_FLOAT} \
1005     %{mcpu=821: -D_SOFT_FLOAT} \
1006     %{mcpu=823: -D_SOFT_FLOAT} \
1007     %{mcpu=860: -D_SOFT_FLOAT} \
1008     %{!mcpu*: %(cpp_float_default) }}}"
1009
1010 /* Whether floating point is disabled by default.  */
1011 #define CPP_FLOAT_DEFAULT_SPEC ""
1012
1013 /* Whether 'long double' is 128 bits by default.  */
1014 #define CPP_LONGDOUBLE_DEFAULT_SPEC ""
1015
1016 #define CPP_SYSV_DEFAULT_SPEC "-D_CALL_SYSV"
1017
1018 #define CPP_ENDIAN_BIG_SPEC "-D_BIG_ENDIAN -D__BIG_ENDIAN__ -Amachine=bigendian"
1019
1020 #define CPP_ENDIAN_LITTLE_SPEC "-D_LITTLE_ENDIAN -D__LITTLE_ENDIAN__ -Amachine=littleendian"
1021
1022 #define CPP_ENDIAN_SPEC \
1023 "%{mlittle: %(cpp_endian_little) } \
1024 %{mlittle-endian: %(cpp_endian_little) } \
1025 %{mbig: %(cpp_endian_big) } \
1026 %{mbig-endian: %(cpp_endian_big) } \
1027 %{!mlittle: %{!mlittle-endian: %{!mbig: %{!mbig-endian: \
1028     %{mcall-freebsd: %(cpp_endian_big) } \
1029     %{mcall-linux: %(cpp_endian_big) } \
1030     %{mcall-gnu: %(cpp_endian_big) } \
1031     %{mcall-netbsd: %(cpp_endian_big) } \
1032     %{mcall-i960-old: %(cpp_endian_little) } \
1033     %{mcall-aixdesc:  %(cpp_endian_big) } \
1034     %{!mcall-linux: %{!mcall-gnu: %{!mcall-freebsd: %{!mcall-netbsd: %{!mcall-aixdesc: %(cpp_endian_default) }}}}}}}}}"
1035
1036 #define CPP_ENDIAN_DEFAULT_SPEC "%(cpp_endian_big)"
1037
1038 /* Override rs6000.h definition.  */
1039 #undef  CPP_SPEC
1040 #define CPP_SPEC "%{posix: -D_POSIX_SOURCE} %(cpp_sysv) %(cpp_endian) %(cpp_cpu) \
1041 %{mads: %(cpp_os_ads) } \
1042 %{myellowknife: %(cpp_os_yellowknife) } \
1043 %{mmvme: %(cpp_os_mvme) } \
1044 %{msim: %(cpp_os_sim) } \
1045 %{mwindiss: %(cpp_os_windiss) } \
1046 %{mcall-freebsd: %(cpp_os_freebsd) } \
1047 %{mcall-linux: %(cpp_os_linux) } \
1048 %{mcall-gnu: %(cpp_os_gnu) } \
1049 %{mcall-netbsd: %(cpp_os_netbsd) } \
1050 %{!mads: %{!myellowknife: %{!mmvme: %{!msim: %{!mwindiss: \
1051          %{!mcall-freebsd: %{!mcall-linux: %{!mcall-gnu: \
1052          %{!mcall-netbsd: %(cpp_os_default) }}}}}}}}}"
1053
1054 #define CPP_OS_DEFAULT_SPEC ""
1055
1056 /* Override svr4.h definition.  */
1057 #undef  STARTFILE_SPEC
1058 #define STARTFILE_SPEC "\
1059 %{mads: %(startfile_ads) } \
1060 %{myellowknife: %(startfile_yellowknife) } \
1061 %{mmvme: %(startfile_mvme) } \
1062 %{msim: %(startfile_sim) } \
1063 %{mwindiss: %(startfile_windiss) } \
1064 %{mcall-freebsd: %(startfile_freebsd) } \
1065 %{mcall-linux: %(startfile_linux) } \
1066 %{mcall-gnu: %(startfile_gnu) } \
1067 %{mcall-netbsd: %(startfile_netbsd) } \
1068 %{!mads: %{!myellowknife: %{!mmvme: %{!msim: %{!mwindiss: \
1069          %{!mcall-freebsd: %{!mcall-linux: %{!mcall-gnu: \
1070          %{!mcall-netbsd: %(startfile_default) }}}}}}}}}"
1071
1072 #define STARTFILE_DEFAULT_SPEC ""
1073
1074 /* Override svr4.h definition.  */
1075 #undef  LIB_SPEC
1076 #define LIB_SPEC "\
1077 %{mads: %(lib_ads) } \
1078 %{myellowknife: %(lib_yellowknife) } \
1079 %{mmvme: %(lib_mvme) } \
1080 %{msim: %(lib_sim) } \
1081 %{mwindiss: %(lib_windiss) } \
1082 %{mcall-freebsd: %(lib_freebsd) } \
1083 %{mcall-linux: %(lib_linux) } \
1084 %{mcall-gnu: %(lib_gnu) } \
1085 %{mcall-netbsd: %(lib_netbsd) } \
1086 %{!mads: %{!myellowknife: %{!mmvme: %{!msim: %{!mwindiss: \
1087          %{!mcall-freebsd: %{!mcall-linux: %{!mcall-gnu: \
1088          %{!mcall-netbsd: %(lib_default) }}}}}}}}}"
1089
1090 #define LIB_DEFAULT_SPEC ""
1091
1092 /* Override svr4.h definition.  */
1093 #undef  ENDFILE_SPEC
1094 #define ENDFILE_SPEC "\
1095 %{mads: crtsavres.o%s %(endfile_ads)} \
1096 %{myellowknife: crtsavres.o%s %(endfile_yellowknife)} \
1097 %{mmvme: crtsavres.o%s %(endfile_mvme)} \
1098 %{msim: crtsavres.o%s %(endfile_sim)} \
1099 %{mwindiss: %(endfile_windiss)} \
1100 %{mcall-freebsd: crtsavres.o%s %(endfile_freebsd) } \
1101 %{mcall-linux: crtsavres.o%s %(endfile_linux) } \
1102 %{mcall-gnu: crtsavres.o%s %(endfile_gnu) } \
1103 %{mcall-netbsd: crtsavres.o%s %(endfile_netbsd) } \
1104 %{mvxworks: crtsavres.o%s %(endfile_vxworks) } \
1105 %{!mads: %{!myellowknife: %{!mmvme: %{!msim: %{!mwindiss: \
1106          %{!mcall-freebsd: %{!mcall-linux: %{!mcall-gnu: \
1107          %{!mcall-netbsd: %{!mvxworks: %(crtsavres_default) \
1108                                        %(endfile_default) }}}}}}}}}}"
1109
1110 #define CRTSAVRES_DEFAULT_SPEC "crtsavres.o%s"
1111
1112 #define ENDFILE_DEFAULT_SPEC ""
1113
1114 /* Motorola ADS support.  */
1115 #define LIB_ADS_SPEC "--start-group -lads -lc --end-group"
1116
1117 #define STARTFILE_ADS_SPEC "ecrti.o%s crt0.o%s crtbegin.o%s"
1118
1119 #define ENDFILE_ADS_SPEC "crtend.o%s ecrtn.o%s"
1120
1121 #define LINK_START_ADS_SPEC "-T ads.ld%s"
1122
1123 #define LINK_OS_ADS_SPEC ""
1124
1125 #define CPP_OS_ADS_SPEC ""
1126
1127 /* Motorola Yellowknife support.  */
1128 #define LIB_YELLOWKNIFE_SPEC "--start-group -lyk -lc --end-group"
1129
1130 #define STARTFILE_YELLOWKNIFE_SPEC "ecrti.o%s crt0.o%s crtbegin.o%s"
1131
1132 #define ENDFILE_YELLOWKNIFE_SPEC "crtend.o%s ecrtn.o%s"
1133
1134 #define LINK_START_YELLOWKNIFE_SPEC "-T yellowknife.ld%s"
1135
1136 #define LINK_OS_YELLOWKNIFE_SPEC ""
1137
1138 #define CPP_OS_YELLOWKNIFE_SPEC ""
1139
1140 /* Motorola MVME support.  */
1141 #define LIB_MVME_SPEC "--start-group -lmvme -lc --end-group"
1142
1143 #define STARTFILE_MVME_SPEC "ecrti.o%s crt0.o%s crtbegin.o%s"
1144
1145 #define ENDFILE_MVME_SPEC "crtend.o%s ecrtn.o%s"
1146
1147 #define LINK_START_MVME_SPEC "-Ttext 0x40000"
1148
1149 #define LINK_OS_MVME_SPEC ""
1150
1151 #define CPP_OS_MVME_SPEC ""
1152
1153 /* PowerPC simulator based on netbsd system calls support.  */
1154 #define LIB_SIM_SPEC "--start-group -lsim -lc --end-group"
1155
1156 #define STARTFILE_SIM_SPEC "ecrti.o%s sim-crt0.o%s crtbegin.o%s"
1157
1158 #define ENDFILE_SIM_SPEC "crtend.o%s ecrtn.o%s"
1159
1160 #define LINK_START_SIM_SPEC ""
1161
1162 #define LINK_OS_SIM_SPEC "-m elf32ppcsim"
1163
1164 #define CPP_OS_SIM_SPEC ""
1165
1166 /* FreeBSD support.  */
1167
1168 #define CPP_OS_FREEBSD_SPEC     "\
1169   -D__PPC__ -D__ppc__ -D__PowerPC__ -D__powerpc__ \
1170   -Acpu=powerpc -Amachine=powerpc"
1171
1172 #define STARTFILE_FREEBSD_SPEC  FBSD_STARTFILE_SPEC
1173 #define ENDFILE_FREEBSD_SPEC    FBSD_ENDFILE_SPEC
1174 #define LIB_FREEBSD_SPEC        FBSD_LIB_SPEC
1175 #define LINK_START_FREEBSD_SPEC ""
1176
1177 #define LINK_OS_FREEBSD_SPEC "\
1178   %{symbolic:-Bsymbolic}"
1179
1180 /* GNU/Linux support.  */
1181 #ifdef USE_GNULIBC_1
1182 #define LIB_LINUX_SPEC "%{mnewlib: --start-group -llinux -lc --end-group } \
1183 %{!mnewlib: -lc }"
1184 #else
1185 #define LIB_LINUX_SPEC "%{mnewlib: --start-group -llinux -lc --end-group } \
1186 %{!mnewlib: %{shared:-lc} %{!shared: %{pthread:-lpthread } \
1187 %{profile:-lc_p} %{!profile:-lc}}}"
1188 #endif
1189
1190 #ifdef USE_GNULIBC_1
1191 #define STARTFILE_LINUX_SPEC "\
1192 %{!shared: %{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s} %{!p:crt1.o%s}}} \
1193 %{mnewlib: ecrti.o%s} %{!mnewlib: crti.o%s} \
1194 %{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}"
1195 #else
1196 #define STARTFILE_LINUX_SPEC "\
1197 %{!shared: %{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s} %{!p:crt1.o%s}}} \
1198 %{mnewlib: ecrti.o%s} %{!mnewlib: crti.o%s} \
1199 %{static:crtbeginT.o%s} \
1200 %{!static:%{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}}"
1201 #endif
1202
1203 #define ENDFILE_LINUX_SPEC "%{!shared:crtend.o%s} %{shared:crtendS.o%s} \
1204 %{mnewlib: ecrtn.o%s} %{!mnewlib: crtn.o%s}"
1205
1206 #define LINK_START_LINUX_SPEC ""
1207
1208 #define LINK_OS_LINUX_SPEC "-m elf32ppclinux %{!shared: %{!static: \
1209   %{rdynamic:-export-dynamic} \
1210   %{!dynamic-linker:-dynamic-linker /lib/ld.so.1}}}"
1211
1212 #if !defined(USE_GNULIBC_1) && defined(HAVE_LD_EH_FRAME_HDR)
1213 # define LINK_EH_SPEC "%{!static:--eh-frame-hdr} "
1214 #endif
1215
1216 #ifdef USE_GNULIBC_1
1217 #define CPP_OS_LINUX_SPEC "-D__unix__ -D__gnu_linux__ -D__linux__ \
1218 %{!undef:                                                         \
1219   %{!ansi:                                                        \
1220     %{!std=*:-Dunix -D__unix -Dlinux -D__linux}                   \
1221     %{std=gnu*:-Dunix -D__unix -Dlinux -D__linux}}}               \
1222 -Asystem=unix -Asystem=posix"
1223 #else
1224 #define CPP_OS_LINUX_SPEC "-D__unix__ -D__gnu_linux__ -D__linux__ \
1225 %{!undef:                                                         \
1226   %{!ansi:                                                        \
1227     %{!std=*:-Dunix -D__unix -Dlinux -D__linux}                   \
1228     %{std=gnu*:-Dunix -D__unix -Dlinux -D__linux}}}               \
1229 -Asystem=unix -Asystem=posix %{pthread:-D_REENTRANT}"
1230 #endif
1231
1232 /* GNU/Hurd support.  */
1233 #define LIB_GNU_SPEC "%{mnewlib: --start-group -lgnu -lc --end-group } \
1234 %{!mnewlib: %{shared:-lc} %{!shared: %{pthread:-lpthread } \
1235 %{profile:-lc_p} %{!profile:-lc}}}"
1236
1237 #define STARTFILE_GNU_SPEC "\
1238 %{!shared: %{!static: %{pg:gcrt1.o%s} %{!pg:%{p:gcrt1.o%s} %{!p:crt1.o%s}}}} \
1239 %{static: %{pg:gcrt0.o%s} %{!pg:%{p:gcrt0.o%s} %{!p:crt0.o%s}}} \
1240 %{mnewlib: ecrti.o%s} %{!mnewlib: crti.o%s} \
1241 %{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}"
1242
1243 #define ENDFILE_GNU_SPEC "%{!shared:crtend.o%s} %{shared:crtendS.o%s} \
1244 %{mnewlib: ecrtn.o%s} %{!mnewlib: crtn.o%s}"
1245
1246 #define LINK_START_GNU_SPEC ""
1247
1248 #define LINK_OS_GNU_SPEC "-m elf32ppclinux %{!shared: %{!static: \
1249   %{rdynamic:-export-dynamic} \
1250   %{!dynamic-linker:-dynamic-linker /lib/ld.so.1}}}"
1251
1252 #define CPP_OS_GNU_SPEC "-D__unix__ -D__gnu_hurd__ -D__GNU__    \
1253 %{!undef:                                                       \
1254   %{!ansi: -Dunix -D__unix}}                                    \
1255 -Asystem=gnu -Asystem=unix -Asystem=posix %{pthread:-D_REENTRANT}"
1256
1257 /* NetBSD support.  */
1258 #define LIB_NETBSD_SPEC "\
1259 %{profile:-lgmon -lc_p} %{!profile:-lc}"
1260
1261 #define STARTFILE_NETBSD_SPEC "\
1262 ncrti.o%s crt0.o%s \
1263 %{!shared:crtbegin.o%s} %{shared:crtbeginS.o%s}"
1264
1265 #define ENDFILE_NETBSD_SPEC "\
1266 %{!shared:crtend.o%s} %{shared:crtendS.o%s} \
1267 ncrtn.o%s"
1268
1269 #define LINK_START_NETBSD_SPEC "\
1270 "
1271
1272 #define LINK_OS_NETBSD_SPEC "\
1273 %{!shared: %{!static: \
1274   %{rdynamic:-export-dynamic} \
1275   %{!dynamic-linker:-dynamic-linker /usr/libexec/ld.elf_so}}}"
1276
1277 #define CPP_OS_NETBSD_SPEC "\
1278 -D__powerpc__ -D__NetBSD__ -D__ELF__ -D__KPRINTF_ATTRIBUTE__"
1279
1280 /* VxWorks support.  */
1281 /* VxWorks does all the library stuff itself.  */
1282 #define LIB_VXWORKS_SPEC ""
1283
1284 /* VxWorks provides the functionality of crt0.o and friends itself.  */
1285
1286 #define STARTFILE_VXWORKS_SPEC ""
1287
1288 #define ENDFILE_VXWORKS_SPEC ""
1289
1290 /* Because it uses ld -r, vxworks has no start/end files, nor starting
1291    address.  */
1292
1293 #define LINK_START_VXWORKS_SPEC ""
1294
1295 #define LINK_OS_VXWORKS_SPEC "-r"
1296
1297 #define CPP_OS_VXWORKS_SPEC "\
1298 -DCPU_FAMILY=PPC \
1299 %{!mcpu*: \
1300   %{mpowerpc*: -DCPU=PPC603} \
1301   %{!mno-powerpc: -DCPU=PPC603}} \
1302 %{mcpu=powerpc: -DCPU=PPC603} \
1303 %{mcpu=401: -DCPU=PPC403} \
1304 %{mcpu=403: -DCPU=PPC403} \
1305 %{mcpu=405: -DCPU=PPC405} \
1306 %{mcpu=601: -DCPU=PPC601} \
1307 %{mcpu=602: -DCPU=PPC603} \
1308 %{mcpu=603: -DCPU=PPC603} \
1309 %{mcpu=603e: -DCPU=PPC603} \
1310 %{mcpu=ec603e: -DCPU=PPC603} \
1311 %{mcpu=604: -DCPU=PPC604} \
1312 %{mcpu=604e: -DCPU=PPC604} \
1313 %{mcpu=620: -DCPU=PPC604} \
1314 %{mcpu=740: -DCPU=PPC603} \
1315 %{mcpu=7450: -DCPU=PPC603} \
1316 %{mcpu=750: -DCPU=PPC603} \
1317 %{mcpu=801: -DCPU=PPC603} \
1318 %{mcpu=821: -DCPU=PPC603} \
1319 %{mcpu=823: -DCPU=PPC603} \
1320 %{mcpu=860: -DCPU=PPC603}"
1321
1322 /* WindISS support.  */
1323
1324 #define LIB_WINDISS_SPEC "--start-group -li -lcfp -lwindiss -lram -limpl -limpfp --end-group"
1325
1326 #define CPP_OS_WINDISS_SPEC "\
1327 -D__rtasim \
1328 -D__EABI__ \
1329 -D__ppc \
1330 %{!msoft-float: -D__hardfp} \
1331 "
1332
1333 #define STARTFILE_WINDISS_SPEC "crt0.o%s crtbegin.o%s"
1334
1335 #define ENDFILE_WINDISS_SPEC "crtend.o%s"
1336
1337 #define LINK_START_WINDISS_SPEC ""
1338
1339 #define LINK_OS_WINDISS_SPEC ""
1340
1341 /* Define any extra SPECS that the compiler needs to generate.  */
1342 /* Override rs6000.h definition.  */
1343 #undef  SUBTARGET_EXTRA_SPECS
1344 #define SUBTARGET_EXTRA_SPECS                                           \
1345   { "cpp_sysv",                 CPP_SYSV_SPEC },                        \
1346   { "cpp_sysv_default",         CPP_SYSV_DEFAULT_SPEC },                \
1347   { "cpp_endian_default",       CPP_ENDIAN_DEFAULT_SPEC },              \
1348   { "cpp_endian",               CPP_ENDIAN_SPEC },                      \
1349   { "crtsavres_default",        CRTSAVRES_DEFAULT_SPEC },              \
1350   { "lib_ads",                  LIB_ADS_SPEC },                         \
1351   { "lib_yellowknife",          LIB_YELLOWKNIFE_SPEC },                 \
1352   { "lib_mvme",                 LIB_MVME_SPEC },                        \
1353   { "lib_sim",                  LIB_SIM_SPEC },                         \
1354   { "lib_freebsd",              LIB_FREEBSD_SPEC },                     \
1355   { "lib_gnu",                  LIB_GNU_SPEC },                         \
1356   { "lib_linux",                LIB_LINUX_SPEC },                       \
1357   { "lib_netbsd",               LIB_NETBSD_SPEC },                      \
1358   { "lib_vxworks",              LIB_VXWORKS_SPEC },                     \
1359   { "lib_windiss",              LIB_WINDISS_SPEC },                     \
1360   { "lib_default",              LIB_DEFAULT_SPEC },                     \
1361   { "startfile_ads",            STARTFILE_ADS_SPEC },                   \
1362   { "startfile_yellowknife",    STARTFILE_YELLOWKNIFE_SPEC },           \
1363   { "startfile_mvme",           STARTFILE_MVME_SPEC },                  \
1364   { "startfile_sim",            STARTFILE_SIM_SPEC },                   \
1365   { "startfile_freebsd",        STARTFILE_FREEBSD_SPEC },               \
1366   { "startfile_gnu",            STARTFILE_GNU_SPEC },                   \
1367   { "startfile_linux",          STARTFILE_LINUX_SPEC },                 \
1368   { "startfile_netbsd",         STARTFILE_NETBSD_SPEC },                \
1369   { "startfile_vxworks",        STARTFILE_VXWORKS_SPEC },               \
1370   { "startfile_windiss",        STARTFILE_WINDISS_SPEC },               \
1371   { "startfile_default",        STARTFILE_DEFAULT_SPEC },               \
1372   { "endfile_ads",              ENDFILE_ADS_SPEC },                     \
1373   { "endfile_yellowknife",      ENDFILE_YELLOWKNIFE_SPEC },             \
1374   { "endfile_mvme",             ENDFILE_MVME_SPEC },                    \
1375   { "endfile_sim",              ENDFILE_SIM_SPEC },                     \
1376   { "endfile_freebsd",          ENDFILE_FREEBSD_SPEC },                 \
1377   { "endfile_gnu",              ENDFILE_GNU_SPEC },                     \
1378   { "endfile_linux",            ENDFILE_LINUX_SPEC },                   \
1379   { "endfile_netbsd",           ENDFILE_NETBSD_SPEC },                  \
1380   { "endfile_vxworks",          ENDFILE_VXWORKS_SPEC },                 \
1381   { "endfile_windiss",          ENDFILE_WINDISS_SPEC },                 \
1382   { "endfile_default",          ENDFILE_DEFAULT_SPEC },                 \
1383   { "link_path",                LINK_PATH_SPEC },                       \
1384   { "link_shlib",               LINK_SHLIB_SPEC },                      \
1385   { "link_target",              LINK_TARGET_SPEC },                     \
1386   { "link_start",               LINK_START_SPEC },                      \
1387   { "link_start_ads",           LINK_START_ADS_SPEC },                  \
1388   { "link_start_yellowknife",   LINK_START_YELLOWKNIFE_SPEC },          \
1389   { "link_start_mvme",          LINK_START_MVME_SPEC },                 \
1390   { "link_start_sim",           LINK_START_SIM_SPEC },                  \
1391   { "link_start_freebsd",       LINK_START_FREEBSD_SPEC },              \
1392   { "link_start_gnu",           LINK_START_GNU_SPEC },                  \
1393   { "link_start_linux",         LINK_START_LINUX_SPEC },                \
1394   { "link_start_netbsd",        LINK_START_NETBSD_SPEC },               \
1395   { "link_start_vxworks",       LINK_START_VXWORKS_SPEC },              \
1396   { "link_start_windiss",       LINK_START_WINDISS_SPEC },              \
1397   { "link_start_default",       LINK_START_DEFAULT_SPEC },              \
1398   { "link_os",                  LINK_OS_SPEC },                         \
1399   { "link_os_ads",              LINK_OS_ADS_SPEC },                     \
1400   { "link_os_yellowknife",      LINK_OS_YELLOWKNIFE_SPEC },             \
1401   { "link_os_mvme",             LINK_OS_MVME_SPEC },                    \
1402   { "link_os_sim",              LINK_OS_SIM_SPEC },                     \
1403   { "link_os_freebsd",          LINK_OS_FREEBSD_SPEC },                 \
1404   { "link_os_linux",            LINK_OS_LINUX_SPEC },                   \
1405   { "link_os_gnu",              LINK_OS_GNU_SPEC },                     \
1406   { "link_os_netbsd",           LINK_OS_NETBSD_SPEC },                  \
1407   { "link_os_vxworks",          LINK_OS_VXWORKS_SPEC },                 \
1408   { "link_os_windiss",          LINK_OS_WINDISS_SPEC },                 \
1409   { "link_os_default",          LINK_OS_DEFAULT_SPEC },                 \
1410   { "cc1_endian_big",           CC1_ENDIAN_BIG_SPEC },                  \
1411   { "cc1_endian_little",        CC1_ENDIAN_LITTLE_SPEC },               \
1412   { "cc1_endian_default",       CC1_ENDIAN_DEFAULT_SPEC },              \
1413   { "cpp_endian_big",           CPP_ENDIAN_BIG_SPEC },                  \
1414   { "cpp_endian_little",        CPP_ENDIAN_LITTLE_SPEC },               \
1415   { "cpp_float_default",        CPP_FLOAT_DEFAULT_SPEC },               \
1416   { "cpp_longdouble_default",   CPP_LONGDOUBLE_DEFAULT_SPEC },          \
1417   { "cpp_os_ads",               CPP_OS_ADS_SPEC },                      \
1418   { "cpp_os_yellowknife",       CPP_OS_YELLOWKNIFE_SPEC },              \
1419   { "cpp_os_mvme",              CPP_OS_MVME_SPEC },                     \
1420   { "cpp_os_sim",               CPP_OS_SIM_SPEC },                      \
1421   { "cpp_os_freebsd",           CPP_OS_FREEBSD_SPEC },                  \
1422   { "cpp_os_gnu",               CPP_OS_GNU_SPEC },                      \
1423   { "cpp_os_linux",             CPP_OS_LINUX_SPEC },                    \
1424   { "cpp_os_netbsd",            CPP_OS_NETBSD_SPEC },                   \
1425   { "cpp_os_vxworks",           CPP_OS_VXWORKS_SPEC },                  \
1426   { "cpp_os_windiss",           CPP_OS_WINDISS_SPEC },                  \
1427   { "cpp_os_default",           CPP_OS_DEFAULT_SPEC },
1428
1429 /* Define this macro as a C expression for the initializer of an
1430    array of string to tell the driver program which options are
1431    defaults for this target and thus do not need to be handled
1432    specially when using `MULTILIB_OPTIONS'.
1433
1434    Do not define this macro if `MULTILIB_OPTIONS' is not defined in
1435    the target makefile fragment or if none of the options listed in
1436    `MULTILIB_OPTIONS' are set by default.  *Note Target Fragment::.  */
1437
1438 #define MULTILIB_DEFAULTS { "mbig", "mcall-sysv" }
1439
1440 /* Define this macro if the code for function profiling should come
1441    before the function prologue.  Normally, the profiling code comes
1442    after.  */
1443 #define PROFILE_BEFORE_PROLOGUE 1
1444
1445 /* Function name to call to do profiling.  */
1446 #define RS6000_MCOUNT "_mcount"
1447
1448 /* Define this macro (to a value of 1) if you want to support the
1449    Win32 style pragmas #pragma pack(push,<n>)' and #pragma
1450    pack(pop)'.  The pack(push,<n>) pragma specifies the maximum
1451    alignment (in bytes) of fields within a structure, in much the
1452    same way as the __aligned__' and __packed__' __attribute__'s
1453    do.  A pack value of zero resets the behaviour to the default.
1454    Successive invocations of this pragma cause the previous values to
1455    be stacked, so that invocations of #pragma pack(pop)' will return
1456    to the previous value.  */
1457
1458 #define HANDLE_PRAGMA_PACK_PUSH_POP 1
1459
1460 /* Define library calls for quad FP operations.  These are all part of the
1461    PowerPC 32bit ABI.  */
1462 #define ADDTF3_LIBCALL "_q_add"
1463 #define DIVTF3_LIBCALL "_q_div"
1464 #define EXTENDDFTF2_LIBCALL "_q_dtoq"
1465 #define EQTF2_LIBCALL "_q_feq"
1466 #define GETF2_LIBCALL "_q_fge"
1467 #define GTTF2_LIBCALL "_q_fgt"
1468 #define LETF2_LIBCALL "_q_fle"
1469 #define LTTF2_LIBCALL "_q_flt"
1470 #define NETF2_LIBCALL "_q_fne"
1471 #define FLOATSITF2_LIBCALL "_q_itoq"
1472 #define MULTF3_LIBCALL "_q_mul"
1473 #define NEGTF2_LIBCALL "_q_neg"
1474 #define TRUNCTFDF2_LIBCALL "_q_qtod"
1475 #define FIX_TRUNCTFSI2_LIBCALL "_q_qtoi"
1476 #define TRUNCTFSF2_LIBCALL "_q_qtos"
1477 #define FIXUNS_TRUNCTFSI2_LIBCALL "_q_qtou"
1478 #define SQRTTF_LIBCALL "_q_sqrt"
1479 #define EXTENDSFTF2_LIBCALL "_q_stoq"
1480 #define SUBTF3_LIBCALL "_q_sub"
1481 #define FLOATUNSSITF2_LIBCALL "_q_utoq"
1482
1483 #define INIT_TARGET_OPTABS                                              \
1484   do {                                                                  \
1485     if (TARGET_HARD_FLOAT)                                              \
1486       {                                                                 \
1487         add_optab->handlers[(int) TFmode].libfunc                       \
1488           = init_one_libfunc (ADDTF3_LIBCALL);                          \
1489         sub_optab->handlers[(int) TFmode].libfunc                       \
1490           = init_one_libfunc (SUBTF3_LIBCALL);                          \
1491         neg_optab->handlers[(int) TFmode].libfunc                       \
1492           = init_one_libfunc (NEGTF2_LIBCALL);                          \
1493         smul_optab->handlers[(int) TFmode].libfunc                      \
1494           = init_one_libfunc (MULTF3_LIBCALL);                          \
1495         sdiv_optab->handlers[(int) TFmode].libfunc                      \
1496           = init_one_libfunc (DIVTF3_LIBCALL);                          \
1497         eqtf2_libfunc = init_one_libfunc (EQTF2_LIBCALL);               \
1498         netf2_libfunc = init_one_libfunc (NETF2_LIBCALL);               \
1499         gttf2_libfunc = init_one_libfunc (GTTF2_LIBCALL);               \
1500         getf2_libfunc = init_one_libfunc (GETF2_LIBCALL);               \
1501         lttf2_libfunc = init_one_libfunc (LTTF2_LIBCALL);               \
1502         letf2_libfunc = init_one_libfunc (LETF2_LIBCALL);               \
1503         trunctfsf2_libfunc = init_one_libfunc (TRUNCTFSF2_LIBCALL);     \
1504         trunctfdf2_libfunc = init_one_libfunc (TRUNCTFDF2_LIBCALL);     \
1505         extendsftf2_libfunc = init_one_libfunc (EXTENDSFTF2_LIBCALL);   \
1506         extenddftf2_libfunc = init_one_libfunc (EXTENDDFTF2_LIBCALL);   \
1507         floatsitf_libfunc = init_one_libfunc (FLOATSITF2_LIBCALL);      \
1508         fixtfsi_libfunc = init_one_libfunc (FIX_TRUNCTFSI2_LIBCALL);    \
1509         fixunstfsi_libfunc                                              \
1510           = init_one_libfunc (FIXUNS_TRUNCTFSI2_LIBCALL);               \
1511         if (TARGET_PPC_GPOPT || TARGET_POWER2)                          \
1512           sqrt_optab->handlers[(int) TFmode].libfunc                    \
1513             = init_one_libfunc (SQRTTF_LIBCALL);                        \
1514       }                                                                 \
1515   } while (0)
1516
1517 /* Select a format to encode pointers in exception handling data.  CODE
1518    is 0 for data, 1 for code labels, 2 for function pointers.  GLOBAL is
1519    true if the symbol may be affected by dynamic relocations.  */
1520 #define ASM_PREFERRED_EH_DATA_FORMAT(CODE,GLOBAL)                            \
1521   ((flag_pic || TARGET_RELOCATABLE)                                          \
1522    ? (((GLOBAL) ? DW_EH_PE_indirect : 0) | DW_EH_PE_pcrel | DW_EH_PE_sdata4) \
1523    : DW_EH_PE_absptr)
1524
1525 #define TARGET_ASM_EXCEPTION_SECTION readonly_data_section
1526
1527 #define DOUBLE_INT_ASM_OP "\t.quad\t"
1528
1529 /* Generate entries in .fixup for relocatable addresses.  */
1530 #define RELOCATABLE_NEEDS_FIXUP