2003-02-18 06:05:07 +00:00
|
|
|
# This shell script emits a C file. -*- C -*-
|
2005-03-21 13:23:15 +00:00
|
|
|
# Copyright 2003, 2005 Free Software Foundation, Inc.
|
2003-02-18 06:05:07 +00:00
|
|
|
#
|
|
|
|
# This file is part of GLD, the Gnu Linker.
|
|
|
|
#
|
|
|
|
# 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 2 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
|
2005-05-12 07:32:09 +00:00
|
|
|
# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
|
2003-02-18 06:05:07 +00:00
|
|
|
#
|
|
|
|
|
2005-03-21 13:23:15 +00:00
|
|
|
# This file is sourced from elf32.em, and defines extra powerpc32-elf
|
2003-02-18 06:05:07 +00:00
|
|
|
# specific routines.
|
|
|
|
#
|
|
|
|
cat >>e${EMULATION_NAME}.c <<EOF
|
|
|
|
|
|
|
|
#include "libbfd.h"
|
|
|
|
#include "elf32-ppc.h"
|
|
|
|
|
2005-03-21 13:23:15 +00:00
|
|
|
extern const bfd_target bfd_elf32_powerpc_vec;
|
|
|
|
extern const bfd_target bfd_elf32_powerpcle_vec;
|
2005-05-07 Paul Brook <paul@codesourcery.com>
bfd/
* config.bfd: Add separate case for ppc-vxworks.
* configure: Regenerate.
* configure.in: Include elf-vxworks.lo on ppc targets.
* elf-vxworks.c (elf_vxworks_final_write_processing): Handle
.rela.plt.unloaded.
* elf32-ppc.c: Add VxWorks target vec. Include elf-vxworks.h.
(PLT_ENTRY_SIZE, PLT_INITIAL_ENTRY_SIZE, PLT_SLOT_SIZE): Remove.
(VXWORKS_PLT_ENTRY_SIZE, ppc_elf_vxworks_plt_entry,
ppc_elf_vxworks_pic_plt_entry, VXWORKS_PLT_INITIAL_ENTRY_SIZE,
ppc_elf_vxworks_plt0_entry, ppc_elf_vxworks_pic_plt0_entry,
VXWORKS_PLT_NON_JMP_SLOT_RELOCS, VXWORKS_PLTRESOLVE_RELOCS,
VXWORKS_PLTRESOLVE_RELOCS_SHLIB): New.
(ppc_elf_link_hash_table): Add srelplt2, sgotplt, hgot, hplt,
is_vxworks, plt_entry_size, plt_slot_size, plt_initial_entry_size.
(ppc_elf_link_hash_table_create): Initialize hadtab plt fields.
(ppc_elf_create_got): Create .got.plt for VxWorks.
(ppc_elf_create_dynamic_sections): Create unloaded plt relocation
section for VxWorks.
(ppc_elf_select_plt_layout): Handle VxWorks plt format.
(allocate_got): VxWorks does not need a got header.
(allocate_dynrelocs): Handle VxWorks plt format.
(ppc_elf_size_dynamic_sections): Save _G_O_T_ and _P_L_T_ symbols for
VxWorks. Handle VxWorks plt/got.
(ppc_elf_finish_dynamic_sections): Fill in VxWorks plt.
(ppc_elf_vxworks_special_sections): New.
(ppc_elf_vxworks_link_hash_table_create,
ppc_elf_vxworks_add_symbol_hook,
elf_i386_vxworks_link_output_symbol_hook,
ppc_elf_vxworks_final_write_processing): New functions.
* targets.c (bfd_elf32_powerpc_vxworks_vec): Declare.
(_bfd_target_vector): Use it.
gas/
* config/tc-ppc.c (ppc_target_format): Add VxWorks.
gas/testsuite/
* gas/ppc/altivec.d: Match all powerpc target vecs.
* gas/ppc/booke.d: Ditto.
* gas/ppc/e500.d: Ditto.
ld/
* Makefile.am (ALL_EMULATIONS): Add eelf32ppcvxworks.o.
(eelf32ppcvxworks.o): Add dependencies.
* Makefile.in: Regenerate.
* configure.tgt: Add entry for powerpc-vxworks.
* emulparams/elf32-ppc.c: Mention elf32ppcvxworks.sh in comment.
* emulparams/elf32ppcvxworks.sh: New file.
* emultempl/ppc32elf.em (bfd_elf32_powerpc_vxworks_vec): Declare.
(is_ppc_elf32_vec): New function.
(ppc_after_open, ppc_before_allocation,
gld${EMULATION_NAME}_after_allocation): Use it.
2005-07-05 13:25:56 +00:00
|
|
|
extern const bfd_target bfd_elf32_powerpc_vxworks_vec;
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
is_ppc_elf32_vec(const bfd_target * vec)
|
|
|
|
{
|
|
|
|
return (vec == &bfd_elf32_powerpc_vec
|
|
|
|
|| vec == &bfd_elf32_powerpc_vxworks_vec
|
|
|
|
|| vec == &bfd_elf32_powerpcle_vec);
|
|
|
|
}
|
2005-03-21 13:23:15 +00:00
|
|
|
|
2003-02-18 06:05:07 +00:00
|
|
|
/* Whether to run tls optimization. */
|
|
|
|
static int notlsopt = 0;
|
|
|
|
|
2005-05-11 14:10:10 +00:00
|
|
|
/* Chooses the correct place for .plt and .got. */
|
|
|
|
static int old_plt = 0;
|
|
|
|
static int old_got = 0;
|
|
|
|
|
|
|
|
static void
|
|
|
|
ppc_after_open (void)
|
|
|
|
{
|
2005-05-07 Paul Brook <paul@codesourcery.com>
bfd/
* config.bfd: Add separate case for ppc-vxworks.
* configure: Regenerate.
* configure.in: Include elf-vxworks.lo on ppc targets.
* elf-vxworks.c (elf_vxworks_final_write_processing): Handle
.rela.plt.unloaded.
* elf32-ppc.c: Add VxWorks target vec. Include elf-vxworks.h.
(PLT_ENTRY_SIZE, PLT_INITIAL_ENTRY_SIZE, PLT_SLOT_SIZE): Remove.
(VXWORKS_PLT_ENTRY_SIZE, ppc_elf_vxworks_plt_entry,
ppc_elf_vxworks_pic_plt_entry, VXWORKS_PLT_INITIAL_ENTRY_SIZE,
ppc_elf_vxworks_plt0_entry, ppc_elf_vxworks_pic_plt0_entry,
VXWORKS_PLT_NON_JMP_SLOT_RELOCS, VXWORKS_PLTRESOLVE_RELOCS,
VXWORKS_PLTRESOLVE_RELOCS_SHLIB): New.
(ppc_elf_link_hash_table): Add srelplt2, sgotplt, hgot, hplt,
is_vxworks, plt_entry_size, plt_slot_size, plt_initial_entry_size.
(ppc_elf_link_hash_table_create): Initialize hadtab plt fields.
(ppc_elf_create_got): Create .got.plt for VxWorks.
(ppc_elf_create_dynamic_sections): Create unloaded plt relocation
section for VxWorks.
(ppc_elf_select_plt_layout): Handle VxWorks plt format.
(allocate_got): VxWorks does not need a got header.
(allocate_dynrelocs): Handle VxWorks plt format.
(ppc_elf_size_dynamic_sections): Save _G_O_T_ and _P_L_T_ symbols for
VxWorks. Handle VxWorks plt/got.
(ppc_elf_finish_dynamic_sections): Fill in VxWorks plt.
(ppc_elf_vxworks_special_sections): New.
(ppc_elf_vxworks_link_hash_table_create,
ppc_elf_vxworks_add_symbol_hook,
elf_i386_vxworks_link_output_symbol_hook,
ppc_elf_vxworks_final_write_processing): New functions.
* targets.c (bfd_elf32_powerpc_vxworks_vec): Declare.
(_bfd_target_vector): Use it.
gas/
* config/tc-ppc.c (ppc_target_format): Add VxWorks.
gas/testsuite/
* gas/ppc/altivec.d: Match all powerpc target vecs.
* gas/ppc/booke.d: Ditto.
* gas/ppc/e500.d: Ditto.
ld/
* Makefile.am (ALL_EMULATIONS): Add eelf32ppcvxworks.o.
(eelf32ppcvxworks.o): Add dependencies.
* Makefile.in: Regenerate.
* configure.tgt: Add entry for powerpc-vxworks.
* emulparams/elf32-ppc.c: Mention elf32ppcvxworks.sh in comment.
* emulparams/elf32ppcvxworks.sh: New file.
* emultempl/ppc32elf.em (bfd_elf32_powerpc_vxworks_vec): Declare.
(is_ppc_elf32_vec): New function.
(ppc_after_open, ppc_before_allocation,
gld${EMULATION_NAME}_after_allocation): Use it.
2005-07-05 13:25:56 +00:00
|
|
|
if (is_ppc_elf32_vec (link_info.hash->creator))
|
2005-05-11 14:10:10 +00:00
|
|
|
{
|
|
|
|
int new_plt;
|
|
|
|
int keep_new;
|
|
|
|
unsigned int num_plt;
|
|
|
|
unsigned int num_got;
|
|
|
|
lang_output_section_statement_type *os;
|
|
|
|
lang_output_section_statement_type *plt_os[2];
|
|
|
|
lang_output_section_statement_type *got_os[2];
|
|
|
|
|
|
|
|
new_plt = ppc_elf_select_plt_layout (output_bfd, &link_info, old_plt);
|
|
|
|
if (new_plt < 0)
|
|
|
|
einfo ("%X%P: select_plt_layout problem %E\n");
|
|
|
|
|
|
|
|
num_got = 0;
|
|
|
|
num_plt = 0;
|
|
|
|
for (os = &lang_output_section_statement.head->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 ();
|
|
|
|
}
|
|
|
|
|
2003-02-18 06:05:07 +00:00
|
|
|
static void
|
2003-06-24 14:04:29 +00:00
|
|
|
ppc_before_allocation (void)
|
2003-02-18 06:05:07 +00:00
|
|
|
{
|
2005-05-07 Paul Brook <paul@codesourcery.com>
bfd/
* config.bfd: Add separate case for ppc-vxworks.
* configure: Regenerate.
* configure.in: Include elf-vxworks.lo on ppc targets.
* elf-vxworks.c (elf_vxworks_final_write_processing): Handle
.rela.plt.unloaded.
* elf32-ppc.c: Add VxWorks target vec. Include elf-vxworks.h.
(PLT_ENTRY_SIZE, PLT_INITIAL_ENTRY_SIZE, PLT_SLOT_SIZE): Remove.
(VXWORKS_PLT_ENTRY_SIZE, ppc_elf_vxworks_plt_entry,
ppc_elf_vxworks_pic_plt_entry, VXWORKS_PLT_INITIAL_ENTRY_SIZE,
ppc_elf_vxworks_plt0_entry, ppc_elf_vxworks_pic_plt0_entry,
VXWORKS_PLT_NON_JMP_SLOT_RELOCS, VXWORKS_PLTRESOLVE_RELOCS,
VXWORKS_PLTRESOLVE_RELOCS_SHLIB): New.
(ppc_elf_link_hash_table): Add srelplt2, sgotplt, hgot, hplt,
is_vxworks, plt_entry_size, plt_slot_size, plt_initial_entry_size.
(ppc_elf_link_hash_table_create): Initialize hadtab plt fields.
(ppc_elf_create_got): Create .got.plt for VxWorks.
(ppc_elf_create_dynamic_sections): Create unloaded plt relocation
section for VxWorks.
(ppc_elf_select_plt_layout): Handle VxWorks plt format.
(allocate_got): VxWorks does not need a got header.
(allocate_dynrelocs): Handle VxWorks plt format.
(ppc_elf_size_dynamic_sections): Save _G_O_T_ and _P_L_T_ symbols for
VxWorks. Handle VxWorks plt/got.
(ppc_elf_finish_dynamic_sections): Fill in VxWorks plt.
(ppc_elf_vxworks_special_sections): New.
(ppc_elf_vxworks_link_hash_table_create,
ppc_elf_vxworks_add_symbol_hook,
elf_i386_vxworks_link_output_symbol_hook,
ppc_elf_vxworks_final_write_processing): New functions.
* targets.c (bfd_elf32_powerpc_vxworks_vec): Declare.
(_bfd_target_vector): Use it.
gas/
* config/tc-ppc.c (ppc_target_format): Add VxWorks.
gas/testsuite/
* gas/ppc/altivec.d: Match all powerpc target vecs.
* gas/ppc/booke.d: Ditto.
* gas/ppc/e500.d: Ditto.
ld/
* Makefile.am (ALL_EMULATIONS): Add eelf32ppcvxworks.o.
(eelf32ppcvxworks.o): Add dependencies.
* Makefile.in: Regenerate.
* configure.tgt: Add entry for powerpc-vxworks.
* emulparams/elf32-ppc.c: Mention elf32ppcvxworks.sh in comment.
* emulparams/elf32ppcvxworks.sh: New file.
* emultempl/ppc32elf.em (bfd_elf32_powerpc_vxworks_vec): Declare.
(is_ppc_elf32_vec): New function.
(ppc_after_open, ppc_before_allocation,
gld${EMULATION_NAME}_after_allocation): Use it.
2005-07-05 13:25:56 +00:00
|
|
|
if (is_ppc_elf32_vec (link_info.hash->creator))
|
2003-02-18 06:05:07 +00:00
|
|
|
{
|
|
|
|
if (ppc_elf_tls_setup (output_bfd, &link_info) && !notlsopt)
|
|
|
|
{
|
|
|
|
if (!ppc_elf_tls_optimize (output_bfd, &link_info))
|
|
|
|
{
|
|
|
|
einfo ("%X%P: TLS problem %E\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gld${EMULATION_NAME}_before_allocation ();
|
|
|
|
}
|
|
|
|
|
2005-03-21 13:23:15 +00:00
|
|
|
static void
|
|
|
|
gld${EMULATION_NAME}_after_allocation (void)
|
|
|
|
{
|
2005-05-07 Paul Brook <paul@codesourcery.com>
bfd/
* config.bfd: Add separate case for ppc-vxworks.
* configure: Regenerate.
* configure.in: Include elf-vxworks.lo on ppc targets.
* elf-vxworks.c (elf_vxworks_final_write_processing): Handle
.rela.plt.unloaded.
* elf32-ppc.c: Add VxWorks target vec. Include elf-vxworks.h.
(PLT_ENTRY_SIZE, PLT_INITIAL_ENTRY_SIZE, PLT_SLOT_SIZE): Remove.
(VXWORKS_PLT_ENTRY_SIZE, ppc_elf_vxworks_plt_entry,
ppc_elf_vxworks_pic_plt_entry, VXWORKS_PLT_INITIAL_ENTRY_SIZE,
ppc_elf_vxworks_plt0_entry, ppc_elf_vxworks_pic_plt0_entry,
VXWORKS_PLT_NON_JMP_SLOT_RELOCS, VXWORKS_PLTRESOLVE_RELOCS,
VXWORKS_PLTRESOLVE_RELOCS_SHLIB): New.
(ppc_elf_link_hash_table): Add srelplt2, sgotplt, hgot, hplt,
is_vxworks, plt_entry_size, plt_slot_size, plt_initial_entry_size.
(ppc_elf_link_hash_table_create): Initialize hadtab plt fields.
(ppc_elf_create_got): Create .got.plt for VxWorks.
(ppc_elf_create_dynamic_sections): Create unloaded plt relocation
section for VxWorks.
(ppc_elf_select_plt_layout): Handle VxWorks plt format.
(allocate_got): VxWorks does not need a got header.
(allocate_dynrelocs): Handle VxWorks plt format.
(ppc_elf_size_dynamic_sections): Save _G_O_T_ and _P_L_T_ symbols for
VxWorks. Handle VxWorks plt/got.
(ppc_elf_finish_dynamic_sections): Fill in VxWorks plt.
(ppc_elf_vxworks_special_sections): New.
(ppc_elf_vxworks_link_hash_table_create,
ppc_elf_vxworks_add_symbol_hook,
elf_i386_vxworks_link_output_symbol_hook,
ppc_elf_vxworks_final_write_processing): New functions.
* targets.c (bfd_elf32_powerpc_vxworks_vec): Declare.
(_bfd_target_vector): Use it.
gas/
* config/tc-ppc.c (ppc_target_format): Add VxWorks.
gas/testsuite/
* gas/ppc/altivec.d: Match all powerpc target vecs.
* gas/ppc/booke.d: Ditto.
* gas/ppc/e500.d: Ditto.
ld/
* Makefile.am (ALL_EMULATIONS): Add eelf32ppcvxworks.o.
(eelf32ppcvxworks.o): Add dependencies.
* Makefile.in: Regenerate.
* configure.tgt: Add entry for powerpc-vxworks.
* emulparams/elf32-ppc.c: Mention elf32ppcvxworks.sh in comment.
* emulparams/elf32ppcvxworks.sh: New file.
* emultempl/ppc32elf.em (bfd_elf32_powerpc_vxworks_vec): Declare.
(is_ppc_elf32_vec): New function.
(ppc_after_open, ppc_before_allocation,
gld${EMULATION_NAME}_after_allocation): Use it.
2005-07-05 13:25:56 +00:00
|
|
|
if (is_ppc_elf32_vec (link_info.hash->creator))
|
2005-03-21 13:23:15 +00:00
|
|
|
{
|
|
|
|
if (!ppc_elf_set_sdata_syms (output_bfd, &link_info))
|
|
|
|
einfo ("%X%P: cannot set sdata syms %E\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-02-18 06:05:07 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
# Define some shell vars to insert bits of code into the standard elf
|
|
|
|
# parse_args and list_options functions.
|
|
|
|
#
|
|
|
|
PARSE_AND_LIST_PROLOGUE='
|
|
|
|
#define OPTION_NO_TLS_OPT 301
|
2005-05-11 14:10:10 +00:00
|
|
|
#define OPTION_OLD_PLT 302
|
|
|
|
#define OPTION_OLD_GOT 303
|
2003-02-18 06:05:07 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
PARSE_AND_LIST_LONGOPTS='
|
|
|
|
{ "no-tls-optimize", no_argument, NULL, OPTION_NO_TLS_OPT },
|
2005-05-11 14:10:10 +00:00
|
|
|
{ "bss-plt", no_argument, NULL, OPTION_OLD_PLT },
|
|
|
|
{ "sdata-got", no_argument, NULL, OPTION_OLD_GOT },
|
2003-02-18 06:05:07 +00:00
|
|
|
'
|
|
|
|
|
|
|
|
PARSE_AND_LIST_OPTIONS='
|
|
|
|
fprintf (file, _("\
|
2005-05-11 14:10:10 +00:00
|
|
|
--no-tls-optimize Don'\''t try to optimize TLS accesses.\n\
|
|
|
|
--bss-plt Force old-style BSS PLT.\n\
|
|
|
|
--sdata-got Force GOT location just before .sdata.\n"
|
2003-02-18 06:05:07 +00:00
|
|
|
));
|
|
|
|
'
|
|
|
|
|
|
|
|
PARSE_AND_LIST_ARGS_CASES='
|
|
|
|
case OPTION_NO_TLS_OPT:
|
|
|
|
notlsopt = 1;
|
|
|
|
break;
|
2005-05-11 14:10:10 +00:00
|
|
|
|
|
|
|
case OPTION_OLD_PLT:
|
|
|
|
old_plt = 1;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_OLD_GOT:
|
|
|
|
old_got = 1;
|
|
|
|
break;
|
2003-02-18 06:05:07 +00:00
|
|
|
'
|
|
|
|
|
2005-03-21 13:23:15 +00:00
|
|
|
# Put these extra ppc32elf routines in ld_${EMULATION_NAME}_emulation
|
2003-02-18 06:05:07 +00:00
|
|
|
#
|
2005-05-11 14:10:10 +00:00
|
|
|
LDEMUL_AFTER_OPEN=ppc_after_open
|
2003-02-18 06:05:07 +00:00
|
|
|
LDEMUL_BEFORE_ALLOCATION=ppc_before_allocation
|
2005-03-21 13:23:15 +00:00
|
|
|
LDEMUL_AFTER_ALLOCATION=gld${EMULATION_NAME}_after_allocation
|