From 0a0a648ed65342e7bb71608894c308bfb6143a4d Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 17 Dec 2003 08:05:44 +0000 Subject: Patch from Paul Mundt : For sh64 we need implicit access to the symtab, primarily to get at the ->st_other value. This presently isn't possible, as PERFORM_BOOTSTRAP_RELOC() is invoked as such: PERFORM_BOOTSTRAP_RELOC(rpnt, reloc_addr, symbol_addr, load_addr); while we can easily get the symtab_index value from rpnt->r_info, this still doesn't buy us easy access to the actual table. As such, I've modified PERFORM_BOOTSTRAP_RELOC() to take an additional SYMTAB argument. Most architectures aren't going to care about this, but unfortunately we don't have any other options for sh64. The following patch fixes up the API for what we need for sh64, and updates the other architectures appropriately. --- ldso/ldso/cris/dl-sysdep.h | 2 +- ldso/ldso/cris/ld_sysdep.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'ldso/ldso/cris') diff --git a/ldso/ldso/cris/dl-sysdep.h b/ldso/ldso/cris/dl-sysdep.h index cf36752fb..c127076ff 100644 --- a/ldso/ldso/cris/dl-sysdep.h +++ b/ldso/ldso/cris/dl-sysdep.h @@ -24,7 +24,7 @@ * SYMBOL is the symbol involved in the relocation, and LOAD is the * load address. */ -#define PERFORM_BOOTSTRAP_RELOC(RELP, REL, SYMBOL, LOAD) \ +#define PERFORM_BOOTSTRAP_RELOC(RELP, REL, SYMBOL, LOAD, SYMTAB) \ switch (ELF32_R_TYPE((RELP)->r_info)) { \ case R_CRIS_GLOB_DAT: \ case R_CRIS_JUMP_SLOT: \ diff --git a/ldso/ldso/cris/ld_sysdep.h b/ldso/ldso/cris/ld_sysdep.h index cf36752fb..c127076ff 100644 --- a/ldso/ldso/cris/ld_sysdep.h +++ b/ldso/ldso/cris/ld_sysdep.h @@ -24,7 +24,7 @@ * SYMBOL is the symbol involved in the relocation, and LOAD is the * load address. */ -#define PERFORM_BOOTSTRAP_RELOC(RELP, REL, SYMBOL, LOAD) \ +#define PERFORM_BOOTSTRAP_RELOC(RELP, REL, SYMBOL, LOAD, SYMTAB) \ switch (ELF32_R_TYPE((RELP)->r_info)) { \ case R_CRIS_GLOB_DAT: \ case R_CRIS_JUMP_SLOT: \ -- cgit v1.2.3