# This shell script emits a C file. -*- C -*- # Copyright 2003, 2005, 2007, 2008, 2009 Free Software Foundation, Inc. # # This file is part of the GNU Binutils. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, # MA 02110-1301, USA. # # This file is sourced from elf32.em, and defines extra powerpc32-elf # specific routines. # fragment <output_section_statement; os != NULL; os = os->next) { if (os->constraint == SPECIAL && strcmp (os->name, ".plt") == 0) { if (num_plt < 2) plt_os[num_plt] = os; ++num_plt; } if (os->constraint == SPECIAL && strcmp (os->name, ".got") == 0) { if (num_got < 2) got_os[num_got] = os; ++num_got; } } keep_new = new_plt == 1 ? 0 : -1; if (num_plt == 2) { plt_os[0]->constraint = keep_new; plt_os[1]->constraint = ~keep_new; } if (num_got == 2) { if (old_got) keep_new = -1; got_os[0]->constraint = keep_new; got_os[1]->constraint = ~keep_new; } } gld${EMULATION_NAME}_after_open (); } static void ppc_before_allocation (void) { if (is_ppc_elf (link_info.output_bfd)) { if (ppc_elf_tls_setup (link_info.output_bfd, &link_info, no_tls_get_addr_opt) && !notlsopt) { if (!ppc_elf_tls_optimize (link_info.output_bfd, &link_info)) { einfo ("%X%P: TLS problem %E\n"); return; } } } gld${EMULATION_NAME}_before_allocation (); /* Turn on relaxation if executable sections have addresses that might make branches overflow. */ if (!command_line.relax) { bfd_vma low = (bfd_vma) -1; bfd_vma high = 0; asection *o; /* Run lang_size_sections (if not already done). */ if (expld.phase != lang_mark_phase_enum) { expld.phase = lang_mark_phase_enum; expld.dataseg.phase = exp_dataseg_none; one_lang_size_sections_pass (NULL, FALSE); lang_reset_memory_regions (); } for (o = link_info.output_bfd->sections; o != NULL; o = o->next) { if ((o->flags & (SEC_ALLOC | SEC_CODE)) != (SEC_ALLOC | SEC_CODE)) continue; if (o->rawsize == 0) continue; if (low > o->vma) low = o->vma; if (high < o->vma + o->rawsize - 1) high = o->vma + o->rawsize - 1; } if (high > low && high - low > (1 << 25) - 1) command_line.relax = TRUE; } } EOF if grep -q 'ld_elf32_spu_emulation' ldemul-list.h; then fragment <