Index: bfd/coff-sh.c |
diff --git a/bfd/coff-sh.c b/bfd/coff-sh.c |
index e707add2abb8c2ff825342d51201530e84469384..f5e07a57b00c3093ea9aebd580b6cfe9f5eeb32f 100644 |
--- a/bfd/coff-sh.c |
+++ b/bfd/coff-sh.c |
@@ -1,6 +1,6 @@ |
/* BFD back-end for Renesas Super-H COFF binaries. |
Copyright 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, |
- 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011 |
+ 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2012 |
Free Software Foundation, Inc. |
Contributed by Cygnus Support. |
Written by Steve Chamberlain, <sac@cygnus.com>. |
@@ -38,9 +38,9 @@ |
#ifndef COFF_IMAGE_WITH_PE |
static bfd_boolean sh_align_load_span |
- PARAMS ((bfd *, asection *, bfd_byte *, |
- bfd_boolean (*) (bfd *, asection *, PTR, bfd_byte *, bfd_vma), |
- PTR, bfd_vma **, bfd_vma *, bfd_vma, bfd_vma, bfd_boolean *)); |
+ (bfd *, asection *, bfd_byte *, |
+ bfd_boolean (*) (bfd *, asection *, void *, bfd_byte *, bfd_vma), |
+ void *, bfd_vma **, bfd_vma *, bfd_vma, bfd_vma, bfd_boolean *); |
#define _bfd_sh_align_load_span sh_align_load_span |
#endif |
@@ -56,28 +56,6 @@ static bfd_boolean sh_align_load_span |
#include "libcoff.h" |
/* Internal functions. */ |
-static bfd_reloc_status_type sh_reloc |
- PARAMS ((bfd *, arelent *, asymbol *, PTR, asection *, bfd *, char **)); |
-static long get_symbol_value PARAMS ((asymbol *)); |
-static bfd_boolean sh_relax_section |
- PARAMS ((bfd *, asection *, struct bfd_link_info *, bfd_boolean *)); |
-static bfd_boolean sh_relax_delete_bytes |
- PARAMS ((bfd *, asection *, bfd_vma, int)); |
-#ifndef COFF_IMAGE_WITH_PE |
-static const struct sh_opcode *sh_insn_info PARAMS ((unsigned int)); |
-#endif |
-static bfd_boolean sh_align_loads |
- PARAMS ((bfd *, asection *, struct internal_reloc *, bfd_byte *, |
- bfd_boolean *)); |
-static bfd_boolean sh_swap_insns |
- PARAMS ((bfd *, asection *, PTR, bfd_byte *, bfd_vma)); |
-static bfd_boolean sh_relocate_section |
- PARAMS ((bfd *, struct bfd_link_info *, bfd *, asection *, bfd_byte *, |
- struct internal_reloc *, struct internal_syment *, asection **)); |
-static bfd_byte *sh_coff_get_relocated_section_contents |
- PARAMS ((bfd *, struct bfd_link_info *, struct bfd_link_order *, |
- bfd_byte *, bfd_boolean, asymbol **)); |
-static reloc_howto_type * sh_coff_reloc_type_lookup PARAMS ((bfd *, bfd_reloc_code_real_type)); |
#ifdef COFF_WITH_PE |
/* Can't build import tables with 2**4 alignment. */ |
@@ -96,17 +74,27 @@ static reloc_howto_type * sh_coff_reloc_type_lookup PARAMS ((bfd *, bfd_reloc_co |
#define COFF_LONG_FILENAMES |
#ifdef COFF_WITH_PE |
-static bfd_boolean in_reloc_p PARAMS ((bfd *, reloc_howto_type *)); |
/* Return TRUE if this relocation should |
appear in the output .reloc section. */ |
-static bfd_boolean in_reloc_p (abfd, howto) |
- bfd * abfd ATTRIBUTE_UNUSED; |
- reloc_howto_type * howto; |
+ |
+static bfd_boolean |
+in_reloc_p (bfd * abfd ATTRIBUTE_UNUSED, |
+ reloc_howto_type * howto) |
{ |
return ! howto->pc_relative && howto->type != R_SH_IMAGEBASE; |
} |
#endif |
+static bfd_reloc_status_type |
+sh_reloc (bfd *, arelent *, asymbol *, void *, asection *, bfd *, char **); |
+static bfd_boolean |
+sh_relocate_section (bfd *, struct bfd_link_info *, bfd *, asection *, |
+ bfd_byte *, struct internal_reloc *, |
+ struct internal_syment *, asection **); |
+static bfd_boolean |
+sh_align_loads (bfd *, asection *, struct internal_reloc *, |
+ bfd_byte *, bfd_boolean *); |
+ |
/* The supported relocations. There are a lot of relocations defined |
in coff/internal.h which we do not expect to ever see. */ |
static reloc_howto_type sh_coff_howtos[] = |
@@ -407,8 +395,7 @@ static reloc_howto_type sh_coff_howtos[] = |
/* Get the value of a symbol, when performing a relocation. */ |
static long |
-get_symbol_value (symbol) |
- asymbol *symbol; |
+get_symbol_value (asymbol *symbol) |
{ |
bfd_vma relocation; |
@@ -426,16 +413,15 @@ get_symbol_value (symbol) |
/* Convert an rtype to howto for the COFF backend linker. |
Copied from coff-i386. */ |
#define coff_rtype_to_howto coff_sh_rtype_to_howto |
-static reloc_howto_type * coff_sh_rtype_to_howto PARAMS ((bfd *, asection *, struct internal_reloc *, struct coff_link_hash_entry *, struct internal_syment *, bfd_vma *)); |
+ |
static reloc_howto_type * |
-coff_sh_rtype_to_howto (abfd, sec, rel, h, sym, addendp) |
- bfd * abfd ATTRIBUTE_UNUSED; |
- asection * sec; |
- struct internal_reloc * rel; |
- struct coff_link_hash_entry * h; |
- struct internal_syment * sym; |
- bfd_vma * addendp; |
+coff_sh_rtype_to_howto (bfd * abfd ATTRIBUTE_UNUSED, |
+ asection * sec, |
+ struct internal_reloc * rel, |
+ struct coff_link_hash_entry * h, |
+ struct internal_syment * sym, |
+ bfd_vma * addendp) |
{ |
reloc_howto_type * howto; |
@@ -508,9 +494,8 @@ static const struct shcoff_reloc_map sh_reloc_map[] = |
#define coff_bfd_reloc_name_lookup sh_coff_reloc_name_lookup |
static reloc_howto_type * |
-sh_coff_reloc_type_lookup (abfd, code) |
- bfd * abfd ATTRIBUTE_UNUSED; |
- bfd_reloc_code_real_type code; |
+sh_coff_reloc_type_lookup (bfd * abfd ATTRIBUTE_UNUSED, |
+ bfd_reloc_code_real_type code) |
{ |
unsigned int i; |
@@ -575,15 +560,13 @@ sh_coff_reloc_name_lookup (bfd *abfd ATTRIBUTE_UNUSED, |
/* This is the howto function for the SH relocations. */ |
static bfd_reloc_status_type |
-sh_reloc (abfd, reloc_entry, symbol_in, data, input_section, output_bfd, |
- error_message) |
- bfd *abfd; |
- arelent *reloc_entry; |
- asymbol *symbol_in; |
- PTR data; |
- asection *input_section; |
- bfd *output_bfd; |
- char **error_message ATTRIBUTE_UNUSED; |
+sh_reloc (bfd * abfd, |
+ arelent * reloc_entry, |
+ asymbol * symbol_in, |
+ void * data, |
+ asection * input_section, |
+ bfd * output_bfd, |
+ char ** error_message ATTRIBUTE_UNUSED) |
{ |
unsigned long insn; |
bfd_vma sym_value; |
@@ -673,6 +656,9 @@ sh_reloc (abfd, reloc_entry, symbol_in, data, input_section, output_bfd, |
#include "coffcode.h" |
+static bfd_boolean |
+sh_relax_delete_bytes (bfd *, asection *, bfd_vma, int); |
+ |
/* This function handles relaxing on the SH. |
Function calls on the SH look like this: |
@@ -717,11 +703,10 @@ sh_reloc (abfd, reloc_entry, symbol_in, data, input_section, output_bfd, |
can, by swapping them with one of the adjacent instructions. */ |
static bfd_boolean |
-sh_relax_section (abfd, sec, link_info, again) |
- bfd *abfd; |
- asection *sec; |
- struct bfd_link_info *link_info; |
- bfd_boolean *again; |
+sh_relax_section (bfd *abfd, |
+ asection *sec, |
+ struct bfd_link_info *link_info, |
+ bfd_boolean *again) |
{ |
struct internal_reloc *internal_relocs; |
bfd_boolean have_code; |
@@ -738,7 +723,7 @@ sh_relax_section (abfd, sec, link_info, again) |
if (coff_section_data (abfd, sec) == NULL) |
{ |
bfd_size_type amt = sizeof (struct coff_section_tdata); |
- sec->used_by_bfd = (PTR) bfd_zalloc (abfd, amt); |
+ sec->used_by_bfd = bfd_zalloc (abfd, amt); |
if (sec->used_by_bfd == NULL) |
return FALSE; |
} |
@@ -1074,11 +1059,10 @@ sh_relax_section (abfd, sec, link_info, again) |
/* Delete some bytes from a section while relaxing. */ |
static bfd_boolean |
-sh_relax_delete_bytes (abfd, sec, addr, count) |
- bfd *abfd; |
- asection *sec; |
- bfd_vma addr; |
- int count; |
+sh_relax_delete_bytes (bfd *abfd, |
+ asection *sec, |
+ bfd_vma addr, |
+ int count) |
{ |
bfd_byte *contents; |
struct internal_reloc *irel, *irelend; |
@@ -1470,7 +1454,7 @@ sh_relax_delete_bytes (abfd, sec, addr, count) |
{ |
struct internal_syment isym; |
- bfd_coff_swap_sym_in (abfd, (PTR) esym, (PTR) &isym); |
+ bfd_coff_swap_sym_in (abfd, esym, &isym); |
if (isym.n_scnum == sec->target_index |
&& (bfd_vma) isym.n_value > addr |
@@ -1478,7 +1462,7 @@ sh_relax_delete_bytes (abfd, sec, addr, count) |
{ |
isym.n_value -= count; |
- bfd_coff_swap_sym_out (abfd, (PTR) &isym, (PTR) esym); |
+ bfd_coff_swap_sym_out (abfd, &isym, esym); |
if (*sym_hash != NULL) |
{ |
@@ -1628,24 +1612,6 @@ struct sh_opcode |
#define MAP(a) a, sizeof a / sizeof a[0] |
#ifndef COFF_IMAGE_WITH_PE |
-static bfd_boolean sh_insn_uses_reg |
- PARAMS ((unsigned int, const struct sh_opcode *, unsigned int)); |
-static bfd_boolean sh_insn_sets_reg |
- PARAMS ((unsigned int, const struct sh_opcode *, unsigned int)); |
-static bfd_boolean sh_insn_uses_or_sets_reg |
- PARAMS ((unsigned int, const struct sh_opcode *, unsigned int)); |
-static bfd_boolean sh_insn_uses_freg |
- PARAMS ((unsigned int, const struct sh_opcode *, unsigned int)); |
-static bfd_boolean sh_insn_sets_freg |
- PARAMS ((unsigned int, const struct sh_opcode *, unsigned int)); |
-static bfd_boolean sh_insn_uses_or_sets_freg |
- PARAMS ((unsigned int, const struct sh_opcode *, unsigned int)); |
-static bfd_boolean sh_insns_conflict |
- PARAMS ((unsigned int, const struct sh_opcode *, unsigned int, |
- const struct sh_opcode *)); |
-static bfd_boolean sh_load_use |
- PARAMS ((unsigned int, const struct sh_opcode *, unsigned int, |
- const struct sh_opcode *)); |
/* The opcode maps. */ |
@@ -2054,8 +2020,7 @@ static const struct sh_minor_opcode sh_dsp_opcodef[] = |
recognized. */ |
static const struct sh_opcode * |
-sh_insn_info (insn) |
- unsigned int insn; |
+sh_insn_info (unsigned int insn) |
{ |
const struct sh_major_opcode *maj; |
const struct sh_minor_opcode *min, *minend; |
@@ -2082,27 +2047,12 @@ sh_insn_info (insn) |
return NULL; |
} |
-/* See whether an instruction uses or sets a general purpose register */ |
- |
-static bfd_boolean |
-sh_insn_uses_or_sets_reg (insn, op, reg) |
- unsigned int insn; |
- const struct sh_opcode *op; |
- unsigned int reg; |
-{ |
- if (sh_insn_uses_reg (insn, op, reg)) |
- return TRUE; |
- |
- return sh_insn_sets_reg (insn, op, reg); |
-} |
- |
/* See whether an instruction uses a general purpose register. */ |
static bfd_boolean |
-sh_insn_uses_reg (insn, op, reg) |
- unsigned int insn; |
- const struct sh_opcode *op; |
- unsigned int reg; |
+sh_insn_uses_reg (unsigned int insn, |
+ const struct sh_opcode *op, |
+ unsigned int reg) |
{ |
unsigned int f; |
@@ -2128,10 +2078,9 @@ sh_insn_uses_reg (insn, op, reg) |
/* See whether an instruction sets a general purpose register. */ |
static bfd_boolean |
-sh_insn_sets_reg (insn, op, reg) |
- unsigned int insn; |
- const struct sh_opcode *op; |
- unsigned int reg; |
+sh_insn_sets_reg (unsigned int insn, |
+ const struct sh_opcode *op, |
+ unsigned int reg) |
{ |
unsigned int f; |
@@ -2152,27 +2101,25 @@ sh_insn_sets_reg (insn, op, reg) |
return FALSE; |
} |
-/* See whether an instruction uses or sets a floating point register */ |
+/* See whether an instruction uses or sets a general purpose register */ |
static bfd_boolean |
-sh_insn_uses_or_sets_freg (insn, op, reg) |
- unsigned int insn; |
- const struct sh_opcode *op; |
- unsigned int reg; |
+sh_insn_uses_or_sets_reg (unsigned int insn, |
+ const struct sh_opcode *op, |
+ unsigned int reg) |
{ |
- if (sh_insn_uses_freg (insn, op, reg)) |
+ if (sh_insn_uses_reg (insn, op, reg)) |
return TRUE; |
- return sh_insn_sets_freg (insn, op, reg); |
+ return sh_insn_sets_reg (insn, op, reg); |
} |
/* See whether an instruction uses a floating point register. */ |
static bfd_boolean |
-sh_insn_uses_freg (insn, op, freg) |
- unsigned int insn; |
- const struct sh_opcode *op; |
- unsigned int freg; |
+sh_insn_uses_freg (unsigned int insn, |
+ const struct sh_opcode *op, |
+ unsigned int freg) |
{ |
unsigned int f; |
@@ -2203,10 +2150,9 @@ sh_insn_uses_freg (insn, op, freg) |
/* See whether an instruction sets a floating point register. */ |
static bfd_boolean |
-sh_insn_sets_freg (insn, op, freg) |
- unsigned int insn; |
- const struct sh_opcode *op; |
- unsigned int freg; |
+sh_insn_sets_freg (unsigned int insn, |
+ const struct sh_opcode *op, |
+ unsigned int freg) |
{ |
unsigned int f; |
@@ -2228,17 +2174,29 @@ sh_insn_sets_freg (insn, op, freg) |
return FALSE; |
} |
+/* See whether an instruction uses or sets a floating point register */ |
+ |
+static bfd_boolean |
+sh_insn_uses_or_sets_freg (unsigned int insn, |
+ const struct sh_opcode *op, |
+ unsigned int reg) |
+{ |
+ if (sh_insn_uses_freg (insn, op, reg)) |
+ return TRUE; |
+ |
+ return sh_insn_sets_freg (insn, op, reg); |
+} |
+ |
/* See whether instructions I1 and I2 conflict, assuming I1 comes |
before I2. OP1 and OP2 are the corresponding sh_opcode structures. |
This should return TRUE if there is a conflict, or FALSE if the |
instructions can be swapped safely. */ |
static bfd_boolean |
-sh_insns_conflict (i1, op1, i2, op2) |
- unsigned int i1; |
- const struct sh_opcode *op1; |
- unsigned int i2; |
- const struct sh_opcode *op2; |
+sh_insns_conflict (unsigned int i1, |
+ const struct sh_opcode *op1, |
+ unsigned int i2, |
+ const struct sh_opcode *op2) |
{ |
unsigned int f1, f2; |
@@ -2300,11 +2258,10 @@ sh_insns_conflict (i1, op1, i2, op2) |
TRUE if I1 loads a register which I2 uses. */ |
static bfd_boolean |
-sh_load_use (i1, op1, i2, op2) |
- unsigned int i1; |
- const struct sh_opcode *op1; |
- unsigned int i2; |
- const struct sh_opcode *op2; |
+sh_load_use (unsigned int i1, |
+ const struct sh_opcode *op1, |
+ unsigned int i2, |
+ const struct sh_opcode *op2) |
{ |
unsigned int f1; |
@@ -2346,18 +2303,16 @@ sh_load_use (i1, op1, i2, op2) |
static |
#endif |
bfd_boolean |
-_bfd_sh_align_load_span (abfd, sec, contents, swap, relocs, |
- plabel, label_end, start, stop, pswapped) |
- bfd *abfd; |
- asection *sec; |
- bfd_byte *contents; |
- bfd_boolean (*swap) PARAMS ((bfd *, asection *, PTR, bfd_byte *, bfd_vma)); |
- PTR relocs; |
- bfd_vma **plabel; |
- bfd_vma *label_end; |
- bfd_vma start; |
- bfd_vma stop; |
- bfd_boolean *pswapped; |
+_bfd_sh_align_load_span (bfd *abfd, |
+ asection *sec, |
+ bfd_byte *contents, |
+ bfd_boolean (*swap) (bfd *, asection *, void *, bfd_byte *, bfd_vma), |
+ void * relocs, |
+ bfd_vma **plabel, |
+ bfd_vma *label_end, |
+ bfd_vma start, |
+ bfd_vma stop, |
+ bfd_boolean *pswapped) |
{ |
int dsp = (abfd->arch_info->mach == bfd_mach_sh_dsp |
|| abfd->arch_info->mach == bfd_mach_sh3_dsp); |
@@ -2557,91 +2512,14 @@ _bfd_sh_align_load_span (abfd, sec, contents, swap, relocs, |
} |
#endif /* not COFF_IMAGE_WITH_PE */ |
-/* Look for loads and stores which we can align to four byte |
- boundaries. See the longer comment above sh_relax_section for why |
- this is desirable. This sets *PSWAPPED if some instruction was |
- swapped. */ |
- |
-static bfd_boolean |
-sh_align_loads (abfd, sec, internal_relocs, contents, pswapped) |
- bfd *abfd; |
- asection *sec; |
- struct internal_reloc *internal_relocs; |
- bfd_byte *contents; |
- bfd_boolean *pswapped; |
-{ |
- struct internal_reloc *irel, *irelend; |
- bfd_vma *labels = NULL; |
- bfd_vma *label, *label_end; |
- bfd_size_type amt; |
- |
- *pswapped = FALSE; |
- |
- irelend = internal_relocs + sec->reloc_count; |
- |
- /* Get all the addresses with labels on them. */ |
- amt = (bfd_size_type) sec->reloc_count * sizeof (bfd_vma); |
- labels = (bfd_vma *) bfd_malloc (amt); |
- if (labels == NULL) |
- goto error_return; |
- label_end = labels; |
- for (irel = internal_relocs; irel < irelend; irel++) |
- { |
- if (irel->r_type == R_SH_LABEL) |
- { |
- *label_end = irel->r_vaddr - sec->vma; |
- ++label_end; |
- } |
- } |
- |
- /* Note that the assembler currently always outputs relocs in |
- address order. If that ever changes, this code will need to sort |
- the label values and the relocs. */ |
- |
- label = labels; |
- |
- for (irel = internal_relocs; irel < irelend; irel++) |
- { |
- bfd_vma start, stop; |
- |
- if (irel->r_type != R_SH_CODE) |
- continue; |
- |
- start = irel->r_vaddr - sec->vma; |
- |
- for (irel++; irel < irelend; irel++) |
- if (irel->r_type == R_SH_DATA) |
- break; |
- if (irel < irelend) |
- stop = irel->r_vaddr - sec->vma; |
- else |
- stop = sec->size; |
- |
- if (! _bfd_sh_align_load_span (abfd, sec, contents, sh_swap_insns, |
- (PTR) internal_relocs, &label, |
- label_end, start, stop, pswapped)) |
- goto error_return; |
- } |
- |
- free (labels); |
- |
- return TRUE; |
- |
- error_return: |
- if (labels != NULL) |
- free (labels); |
- return FALSE; |
-} |
- |
/* Swap two SH instructions. */ |
static bfd_boolean |
-sh_swap_insns (abfd, sec, relocs, contents, addr) |
- bfd *abfd; |
- asection *sec; |
- PTR relocs; |
- bfd_byte *contents; |
- bfd_vma addr; |
+sh_swap_insns (bfd * abfd, |
+ asection * sec, |
+ void * relocs, |
+ bfd_byte * contents, |
+ bfd_vma addr) |
{ |
struct internal_reloc *internal_relocs = (struct internal_reloc *) relocs; |
unsigned short i1, i2; |
@@ -2764,21 +2642,94 @@ sh_swap_insns (abfd, sec, relocs, contents, addr) |
return TRUE; |
} |
+ |
+/* Look for loads and stores which we can align to four byte |
+ boundaries. See the longer comment above sh_relax_section for why |
+ this is desirable. This sets *PSWAPPED if some instruction was |
+ swapped. */ |
+ |
+static bfd_boolean |
+sh_align_loads (bfd *abfd, |
+ asection *sec, |
+ struct internal_reloc *internal_relocs, |
+ bfd_byte *contents, |
+ bfd_boolean *pswapped) |
+{ |
+ struct internal_reloc *irel, *irelend; |
+ bfd_vma *labels = NULL; |
+ bfd_vma *label, *label_end; |
+ bfd_size_type amt; |
+ |
+ *pswapped = FALSE; |
+ |
+ irelend = internal_relocs + sec->reloc_count; |
+ |
+ /* Get all the addresses with labels on them. */ |
+ amt = (bfd_size_type) sec->reloc_count * sizeof (bfd_vma); |
+ labels = (bfd_vma *) bfd_malloc (amt); |
+ if (labels == NULL) |
+ goto error_return; |
+ label_end = labels; |
+ for (irel = internal_relocs; irel < irelend; irel++) |
+ { |
+ if (irel->r_type == R_SH_LABEL) |
+ { |
+ *label_end = irel->r_vaddr - sec->vma; |
+ ++label_end; |
+ } |
+ } |
+ |
+ /* Note that the assembler currently always outputs relocs in |
+ address order. If that ever changes, this code will need to sort |
+ the label values and the relocs. */ |
+ |
+ label = labels; |
+ |
+ for (irel = internal_relocs; irel < irelend; irel++) |
+ { |
+ bfd_vma start, stop; |
+ |
+ if (irel->r_type != R_SH_CODE) |
+ continue; |
+ |
+ start = irel->r_vaddr - sec->vma; |
+ |
+ for (irel++; irel < irelend; irel++) |
+ if (irel->r_type == R_SH_DATA) |
+ break; |
+ if (irel < irelend) |
+ stop = irel->r_vaddr - sec->vma; |
+ else |
+ stop = sec->size; |
+ |
+ if (! _bfd_sh_align_load_span (abfd, sec, contents, sh_swap_insns, |
+ internal_relocs, &label, |
+ label_end, start, stop, pswapped)) |
+ goto error_return; |
+ } |
+ |
+ free (labels); |
+ |
+ return TRUE; |
+ |
+ error_return: |
+ if (labels != NULL) |
+ free (labels); |
+ return FALSE; |
+} |
/* This is a modification of _bfd_coff_generic_relocate_section, which |
will handle SH relaxing. */ |
static bfd_boolean |
-sh_relocate_section (output_bfd, info, input_bfd, input_section, contents, |
- relocs, syms, sections) |
- bfd *output_bfd ATTRIBUTE_UNUSED; |
- struct bfd_link_info *info; |
- bfd *input_bfd; |
- asection *input_section; |
- bfd_byte *contents; |
- struct internal_reloc *relocs; |
- struct internal_syment *syms; |
- asection **sections; |
+sh_relocate_section (bfd *output_bfd ATTRIBUTE_UNUSED, |
+ struct bfd_link_info *info, |
+ bfd *input_bfd, |
+ asection *input_section, |
+ bfd_byte *contents, |
+ struct internal_reloc *relocs, |
+ struct internal_syment *syms, |
+ asection **sections) |
{ |
struct internal_reloc *rel; |
struct internal_reloc *relend; |
@@ -2942,14 +2893,12 @@ sh_relocate_section (output_bfd, info, input_bfd, input_section, contents, |
which uses sh_relocate_section. */ |
static bfd_byte * |
-sh_coff_get_relocated_section_contents (output_bfd, link_info, link_order, |
- data, relocatable, symbols) |
- bfd *output_bfd; |
- struct bfd_link_info *link_info; |
- struct bfd_link_order *link_order; |
- bfd_byte *data; |
- bfd_boolean relocatable; |
- asymbol **symbols; |
+sh_coff_get_relocated_section_contents (bfd *output_bfd, |
+ struct bfd_link_info *link_info, |
+ struct bfd_link_order *link_order, |
+ bfd_byte *data, |
+ bfd_boolean relocatable, |
+ asymbol **symbols) |
{ |
asection *input_section = link_order->u.indirect.section; |
bfd *input_bfd = input_section->owner; |
@@ -3006,7 +2955,7 @@ sh_coff_get_relocated_section_contents (output_bfd, link_info, link_order, |
esymend = esym + obj_raw_syment_count (input_bfd) * symesz; |
while (esym < esymend) |
{ |
- bfd_coff_swap_sym_in (input_bfd, (PTR) esym, (PTR) isymp); |
+ bfd_coff_swap_sym_in (input_bfd, esym, isymp); |
if (isymp->n_scnum != 0) |
*secpp = coff_section_from_bfd_index (input_bfd, isymp->n_scnum); |
@@ -3073,8 +3022,7 @@ CREATE_LITTLE_COFF_TARGET_VEC (TARGET_SYM, TARGET_SHL_NAME, BFD_IS_RELAXABLE, |
#endif |
#ifndef TARGET_SHL_SYM |
-static const bfd_target * coff_small_object_p PARAMS ((bfd *)); |
-static bfd_boolean coff_small_new_section_hook PARAMS ((bfd *, asection *)); |
+ |
/* Some people want versions of the SH COFF target which do not align |
to 16 byte boundaries. We implement that by adding a couple of new |
target vectors. These are just like the ones above, but they |
@@ -3090,8 +3038,7 @@ static bfd_boolean coff_small_new_section_hook PARAMS ((bfd *, asection *)); |
Otherwise we won't recognize the non default endianness. */ |
static const bfd_target * |
-coff_small_object_p (abfd) |
- bfd *abfd; |
+coff_small_object_p (bfd *abfd) |
{ |
if (abfd->target_defaulted) |
{ |
@@ -3104,9 +3051,7 @@ coff_small_object_p (abfd) |
/* Set the section alignment for the small versions. */ |
static bfd_boolean |
-coff_small_new_section_hook (abfd, section) |
- bfd *abfd; |
- asection *section; |
+coff_small_new_section_hook (bfd *abfd, asection *section) |
{ |
if (! coff_new_section_hook (abfd, section)) |
return FALSE; |
@@ -3212,7 +3157,7 @@ const bfd_target shcoff_small_vec = |
& shlcoff_small_vec, |
- (PTR) &bfd_coff_small_swap_table |
+ & bfd_coff_small_swap_table |
}; |
const bfd_target shlcoff_small_vec = |
@@ -3257,6 +3202,6 @@ const bfd_target shlcoff_small_vec = |
& shcoff_small_vec, |
- (PTR) &bfd_coff_small_swap_table |
+ & bfd_coff_small_swap_table |
}; |
#endif |