Revert ARM linker patch and apply similar patch to bfd instead
This commit is contained in:
parent
c2b8ed2c80
commit
88f7bcd5a7
4 changed files with 80 additions and 83 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2002-08-27 Adam Nemet <anemet@lnxw.com>
|
||||||
|
|
||||||
|
* elf32-arm.h (elf32_arm_finish_dynamic_sections): Set the last
|
||||||
|
bit of DT_INIT and DT_FINI for Thumb functions.
|
||||||
|
|
||||||
2002-08-26 Alan Modra <amodra@bigpond.net.au>
|
2002-08-26 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
* coffcode.h (coff_set_arch_mach_hook): Handle W65MAGIC.
|
* coffcode.h (coff_set_arch_mach_hook): Handle W65MAGIC.
|
||||||
|
|
|
@ -3546,6 +3546,31 @@ elf32_arm_finish_dynamic_sections (output_bfd, info)
|
||||||
}
|
}
|
||||||
bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
|
bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
/* Set the bottom bit of DT_INIT/FINI if the
|
||||||
|
corresponding function is Thumb. */
|
||||||
|
case DT_INIT:
|
||||||
|
name = info->init_function;
|
||||||
|
goto get_sym;
|
||||||
|
case DT_FINI:
|
||||||
|
name = info->fini_function;
|
||||||
|
get_sym:
|
||||||
|
/* If it wasn't set by elf_bfd_final_link
|
||||||
|
then there is nothing to ajdust. */
|
||||||
|
if (dyn.d_un.d_val != 0)
|
||||||
|
{
|
||||||
|
struct elf_link_hash_entry * eh;
|
||||||
|
|
||||||
|
eh = elf_link_hash_lookup (elf_hash_table (info), name,
|
||||||
|
false, false, true);
|
||||||
|
if (eh != (struct elf_link_hash_entry *) NULL
|
||||||
|
&& ELF_ST_TYPE (eh->type) == STT_ARM_TFUNC)
|
||||||
|
{
|
||||||
|
dyn.d_un.d_val |= 1;
|
||||||
|
bfd_elf32_swap_dyn_out (output_bfd, &dyn, dyncon);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
2002-08-27 Nick Clifton <nickc@redhat.com>
|
||||||
|
|
||||||
|
* emultempl/armelf.em: Revert this patch, it is not needed.
|
||||||
|
|
||||||
|
2002-08-22 Adam Nemet <anemet@lnxw.com>
|
||||||
|
|
||||||
2002-08-20 Dan Kegel <dank@kegel.com>
|
2002-08-20 Dan Kegel <dank@kegel.com>
|
||||||
|
|
||||||
* configure.in: added --with-lib-path argument to ld's configure
|
* configure.in: added --with-lib-path argument to ld's configure
|
||||||
|
|
|
@ -24,18 +24,9 @@
|
||||||
#
|
#
|
||||||
cat >>e${EMULATION_NAME}.c <<EOF
|
cat >>e${EMULATION_NAME}.c <<EOF
|
||||||
|
|
||||||
#include "elf-bfd.h"
|
static int no_pipeline_knowledge = 0;
|
||||||
#include "elf/arm.h"
|
static char *thumb_entry_symbol = NULL;
|
||||||
|
static bfd *bfd_for_interwork;
|
||||||
static int no_pipeline_knowledge = 0;
|
|
||||||
static char * thumb_entry_symbol = NULL;
|
|
||||||
static bfd * bfd_for_interwork;
|
|
||||||
|
|
||||||
static void arm_elf_after_open PARAMS ((void));
|
|
||||||
static void arm_elf_set_bfd_for_interworking PARAMS ((lang_statement_union_type *));
|
|
||||||
static void arm_elf_before_allocation PARAMS ((void));
|
|
||||||
static void arm_elf_stringify_thumb_address PARAMS ((struct bfd_link_hash_entry *, char *));
|
|
||||||
static void arm_elf_finish PARAMS ((void));
|
|
||||||
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -48,6 +39,8 @@ gld${EMULATION_NAME}_before_parse ()
|
||||||
config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo true ; else echo false ; fi`;
|
config.has_shared = `if test -n "$GENERATE_SHLIB_SCRIPT" ; then echo true ; else echo false ; fi`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void arm_elf_after_open PARAMS ((void));
|
||||||
|
|
||||||
static void
|
static void
|
||||||
arm_elf_after_open ()
|
arm_elf_after_open ()
|
||||||
{
|
{
|
||||||
|
@ -72,15 +65,18 @@ arm_elf_after_open ()
|
||||||
gld${EMULATION_NAME}_after_open ();
|
gld${EMULATION_NAME}_after_open ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void arm_elf_set_bfd_for_interworking
|
||||||
|
PARAMS ((lang_statement_union_type *));
|
||||||
|
|
||||||
static void
|
static void
|
||||||
arm_elf_set_bfd_for_interworking (statement)
|
arm_elf_set_bfd_for_interworking (statement)
|
||||||
lang_statement_union_type * statement;
|
lang_statement_union_type *statement;
|
||||||
{
|
{
|
||||||
if (statement->header.type == lang_input_section_enum
|
if (statement->header.type == lang_input_section_enum
|
||||||
&& statement->input_section.ifile->just_syms_flag == false)
|
&& statement->input_section.ifile->just_syms_flag == false)
|
||||||
{
|
{
|
||||||
asection * i = statement->input_section.section;
|
asection *i = statement->input_section.section;
|
||||||
asection * output_section = i->output_section;
|
asection *output_section = i->output_section;
|
||||||
|
|
||||||
ASSERT (output_section->owner == output_bfd);
|
ASSERT (output_section->owner == output_bfd);
|
||||||
|
|
||||||
|
@ -94,10 +90,12 @@ arm_elf_set_bfd_for_interworking (statement)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void arm_elf_before_allocation PARAMS ((void));
|
||||||
|
|
||||||
static void
|
static void
|
||||||
arm_elf_before_allocation ()
|
arm_elf_before_allocation ()
|
||||||
{
|
{
|
||||||
bfd * tem;
|
bfd *tem;
|
||||||
|
|
||||||
/* Call the standard elf routine. */
|
/* Call the standard elf routine. */
|
||||||
gld${EMULATION_NAME}_before_allocation ();
|
gld${EMULATION_NAME}_before_allocation ();
|
||||||
|
@ -136,27 +134,7 @@ arm_elf_before_allocation ()
|
||||||
bfd_elf32_arm_allocate_interworking_sections (& link_info);
|
bfd_elf32_arm_allocate_interworking_sections (& link_info);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
static void arm_elf_finish PARAMS ((void));
|
||||||
arm_elf_stringify_thumb_address (h, buffer)
|
|
||||||
struct bfd_link_hash_entry * h;
|
|
||||||
char * buffer;
|
|
||||||
{
|
|
||||||
bfd_vma val;
|
|
||||||
|
|
||||||
/* Get the address of the symbol. */
|
|
||||||
val = (h->u.def.value
|
|
||||||
+ bfd_get_section_vma (output_bfd,
|
|
||||||
h->u.def.section->output_section)
|
|
||||||
+ h->u.def.section->output_offset);
|
|
||||||
/* This is a thumb address, so the bottom bit of its address must be set. */
|
|
||||||
val |= 1;
|
|
||||||
|
|
||||||
/* Now convert this value into a string. */
|
|
||||||
buffer[0] = '0';
|
|
||||||
buffer[1] = 'x';
|
|
||||||
|
|
||||||
sprintf_vma (buffer + 2, val);
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
static void
|
||||||
arm_elf_finish ()
|
arm_elf_finish ()
|
||||||
|
@ -166,61 +144,44 @@ arm_elf_finish ()
|
||||||
/* Call the elf32.em routine. */
|
/* Call the elf32.em routine. */
|
||||||
gld${EMULATION_NAME}_finish ();
|
gld${EMULATION_NAME}_finish ();
|
||||||
|
|
||||||
if (thumb_entry_symbol != NULL)
|
if (thumb_entry_symbol == NULL)
|
||||||
{
|
return;
|
||||||
static char buffer[32];
|
|
||||||
|
|
||||||
h = bfd_link_hash_lookup (link_info.hash, thumb_entry_symbol,
|
h = bfd_link_hash_lookup (link_info.hash, thumb_entry_symbol,
|
||||||
false, false, true);
|
false, false, true);
|
||||||
|
|
||||||
if (h != (struct bfd_link_hash_entry *) NULL
|
|
||||||
&& (h->type == bfd_link_hash_defined
|
|
||||||
|| h->type == bfd_link_hash_defweak)
|
|
||||||
&& h->u.def.section->output_section != NULL)
|
|
||||||
{
|
|
||||||
if (entry_symbol.name != NULL && entry_from_cmdline)
|
|
||||||
einfo (_("%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"),
|
|
||||||
thumb_entry_symbol, entry_symbol.name);
|
|
||||||
|
|
||||||
arm_elf_stringify_thumb_address (h, buffer);
|
|
||||||
entry_symbol.name = buffer;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
einfo (_("%P: warning: cannot find thumb start symbol %s\n"),
|
|
||||||
thumb_entry_symbol);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* If init is a Thumb function set the LSB. */
|
|
||||||
h = bfd_link_hash_lookup (link_info.hash, link_info.init_function, false,
|
|
||||||
false, true);
|
|
||||||
|
|
||||||
if (h != (struct bfd_link_hash_entry *) NULL
|
if (h != (struct bfd_link_hash_entry *) NULL
|
||||||
&& (h->type == bfd_link_hash_defined
|
&& (h->type == bfd_link_hash_defined
|
||||||
|| h->type == bfd_link_hash_defweak)
|
|| h->type == bfd_link_hash_defweak)
|
||||||
&& ELF_ST_TYPE (((struct elf_link_hash_entry *)h)->type) == STT_ARM_TFUNC
|
|
||||||
&& h->u.def.section->output_section != NULL)
|
&& h->u.def.section->output_section != NULL)
|
||||||
{
|
{
|
||||||
static char buffer[32];
|
static char buffer[32];
|
||||||
|
bfd_vma val;
|
||||||
|
|
||||||
arm_elf_stringify_thumb_address (h, buffer);
|
/* Special procesing is required for a Thumb entry symbol. The
|
||||||
link_info.init_function = buffer;
|
bottom bit of its address must be set. */
|
||||||
}
|
val = (h->u.def.value
|
||||||
|
+ bfd_get_section_vma (output_bfd,
|
||||||
/* If fini is a Thumb function set the LSB. */
|
h->u.def.section->output_section)
|
||||||
h = bfd_link_hash_lookup (link_info.hash, link_info.fini_function, false,
|
+ h->u.def.section->output_offset);
|
||||||
false, true);
|
|
||||||
|
val |= 1;
|
||||||
if (h != (struct bfd_link_hash_entry *) NULL
|
|
||||||
&& (h->type == bfd_link_hash_defined
|
/* Now convert this value into a string and store it in entry_symbol
|
||||||
|| h->type == bfd_link_hash_defweak)
|
where the lang_finish() function will pick it up. */
|
||||||
&& ELF_ST_TYPE (((struct elf_link_hash_entry *)h)->type) == STT_ARM_TFUNC
|
buffer[0] = '0';
|
||||||
&& h->u.def.section->output_section != NULL)
|
buffer[1] = 'x';
|
||||||
{
|
|
||||||
static char buffer[32];
|
sprintf_vma (buffer + 2, val);
|
||||||
|
|
||||||
arm_elf_stringify_thumb_address (h, buffer);
|
if (entry_symbol.name != NULL && entry_from_cmdline)
|
||||||
link_info.fini_function = buffer;
|
einfo (_("%P: warning: '--thumb-entry %s' is overriding '-e %s'\n"),
|
||||||
|
thumb_entry_symbol, entry_symbol.name);
|
||||||
|
entry_symbol.name = buffer;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
einfo (_("%P: warning: connot find thumb start symbol %s\n"),
|
||||||
|
thumb_entry_symbol);
|
||||||
}
|
}
|
||||||
|
|
||||||
EOF
|
EOF
|
||||||
|
|
Loading…
Reference in a new issue