1 # This shell script emits a C file. -*- C -*-
2 # Copyright 2003, 2005, 2007, 2008 Free Software Foundation, Inc.
4 # This file is part of the GNU Binutils.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
22 # This file is sourced from elf32.em, and defines extra powerpc32-elf
28 #include "elf32-ppc.h"
30 #define is_ppc_elf(bfd) \
31 (bfd_get_flavour (bfd) == bfd_target_elf_flavour \
32 && elf_object_id (bfd) == PPC32_ELF_TDATA)
34 /* Whether to run tls optimization. */
35 static int notlsopt = 0;
37 /* Whether to emit symbols for stubs. */
38 static int emit_stub_syms = 0;
40 /* Chooses the correct place for .plt and .got. */
41 static enum ppc_elf_plt_type plt_style = PLT_UNSET;
42 static int old_got = 0;
47 if (is_ppc_elf (link_info.output_bfd))
53 lang_output_section_statement_type *os;
54 lang_output_section_statement_type *plt_os[2];
55 lang_output_section_statement_type *got_os[2];
57 emit_stub_syms |= link_info.emitrelocations;
58 new_plt = ppc_elf_select_plt_layout (link_info.output_bfd, &link_info,
59 plt_style, emit_stub_syms);
61 einfo ("%X%P: select_plt_layout problem %E\n");
65 for (os = &lang_output_section_statement.head->output_section_statement;
69 if (os->constraint == SPECIAL && strcmp (os->name, ".plt") == 0)
75 if (os->constraint == SPECIAL && strcmp (os->name, ".got") == 0)
83 keep_new = new_plt == 1 ? 0 : -1;
86 plt_os[0]->constraint = keep_new;
87 plt_os[1]->constraint = ~keep_new;
93 got_os[0]->constraint = keep_new;
94 got_os[1]->constraint = ~keep_new;
98 gld${EMULATION_NAME}_after_open ();
102 ppc_before_allocation (void)
104 if (is_ppc_elf (link_info.output_bfd))
106 if (ppc_elf_tls_setup (link_info.output_bfd, &link_info) && !notlsopt)
108 if (!ppc_elf_tls_optimize (link_info.output_bfd, &link_info))
110 einfo ("%X%P: TLS problem %E\n");
115 gld${EMULATION_NAME}_before_allocation ();
120 if grep -q 'ld_elf32_spu_emulation' ldemul-list.h; then
122 /* Special handling for embedded SPU executables. */
123 extern bfd_boolean embedded_spu_file (lang_input_statement_type *, const char *);
124 static bfd_boolean gld${EMULATION_NAME}_load_symbols (lang_input_statement_type *);
127 ppc_recognized_file (lang_input_statement_type *entry)
129 if (embedded_spu_file (entry, "-m32"))
132 return gld${EMULATION_NAME}_load_symbols (entry);
136 LDEMUL_RECOGNIZED_FILE=ppc_recognized_file
139 # Define some shell vars to insert bits of code into the standard elf
140 # parse_args and list_options functions.
142 PARSE_AND_LIST_PROLOGUE='
143 #define OPTION_NO_TLS_OPT 301
144 #define OPTION_NEW_PLT 302
145 #define OPTION_OLD_PLT 303
146 #define OPTION_OLD_GOT 304
147 #define OPTION_STUBSYMS 305
150 PARSE_AND_LIST_LONGOPTS='
151 { "emit-stub-syms", no_argument, NULL, OPTION_STUBSYMS },
152 { "no-tls-optimize", no_argument, NULL, OPTION_NO_TLS_OPT },
153 { "secure-plt", no_argument, NULL, OPTION_NEW_PLT },
154 { "bss-plt", no_argument, NULL, OPTION_OLD_PLT },
155 { "sdata-got", no_argument, NULL, OPTION_OLD_GOT },
158 PARSE_AND_LIST_OPTIONS='
160 --emit-stub-syms Label linker stubs with a symbol.\n\
161 --no-tls-optimize Don'\''t try to optimize TLS accesses.\n\
162 --secure-plt Use new-style PLT if possible.\n\
163 --bss-plt Force old-style BSS PLT.\n\
164 --sdata-got Force GOT location just before .sdata.\n"
168 PARSE_AND_LIST_ARGS_CASES='
169 case OPTION_STUBSYMS:
173 case OPTION_NO_TLS_OPT:
190 # Put these extra ppc32elf routines in ld_${EMULATION_NAME}_emulation
192 LDEMUL_AFTER_OPEN=ppc_after_open
193 LDEMUL_BEFORE_ALLOCATION=ppc_before_allocation